* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

@font-face {
  font-family:'Montserrat';
  src: url('fonts/Montserrat-Medium.otf');
  
}



body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #000;
}

.card {
    position: relative;
    width: 300px;
    height: 650px;
    border-radius: 10px;
    box-shadow: 2px 3px 5px rgba(73, 69, 52, 0.4);
    margin: 40px;
}

.card .content {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;  
    text-align: center;  
    padding: 50px;
    background: #fff;
}

.card .content .img1 {
    height: 40%;
    margin-bottom: 0px;
}

.card .content .img1 img {
    position: relative;
    width: 150px;
    height: 180px;
 
    object-fit: cover;
  
}


.card .content .img {
    height: 25%;
    margin-bottom: 0px;
}

.card .content .img img {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.card .content span {
    position: absolute;
    width: 350px;
    height: 200px;
  
    transform: rotate(-35deg);
    top: -50px;
    left: -100px;
}

.card .content h4 {
    font-family: 'Montserrat';
    font-size: 28px;
    color: #1a1919;
    margin-bottom: 5px;
}

.card .content h6 {
    font-family: 'Montserrat';
    font-size: 18px;
    color: #1a1919;
    margin-bottom: 6px;
}


.card .content social-body {
    font-size: 18px;
    color: #1a161f;
    margin-top: 30px;
}

.card .content p {
    font-size: 18px;
    color: #1a161f;
    margin-top: 30px;
}

.card .links {
    position: absolute;
   z-index: 90;
    width: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 2px 3px 5px rgba(73, 69, 52, 0.4);
    padding: 20px;
    align-items: center;
    right: -50px;
    top: 28px;
    transition: .5s;
}

.card:hover .links {
    /*right: -50px;*/
    border-radius: 0 10px 10px 0;
}


.card .links a {
    font-size: 20px;
    color: #646069;
}

.card .links a:nth-child(1):hover {
    color: #0158ca;
}

.card .links a:nth-child(2):hover {
    color: #E1306C;
}

.card .links a:nth-child(3):hover {
    color: #c4302b ;
}




/* social */
.social-body{
    
display: grid;
  place-content: center;
	top:78%
	left:0;
	margin-top:15px;
	z-index:999;
}
.social-body ul li{
	display:block;
}
.social-body ul li a{
	font-size:30px;
	color:#000;
	background:#fff;
	height: 40px;
    width: 40px;
	line-height:40px;
	text-align:center;
	display:block;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	
}






.social-body ul li a:hover{
	width:60px;
}
.social-body  ul li.facebook a{
	background:#425F9C;
}
.social-body .ul li.twitter a{
	background:#425F9C;
}
.social-body ul li.instagram a {
	background: #fff;
}
.social-body ul li.pinterest a{
	background:#fff;
}


