@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
*{
    margin:0;
    padding:0;
}
.container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:#A9ACAC;
}

.container::before{
    content:'';
    position:absolute;
    bottom:0;
    height:50%;
    width:100%;
    background-color:#E0E8E9;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    
}
.card{
    height:350px;
    width:320px;
    background-color:#fff;
    border-radius:10px;
    position:relative;
    overflow:hidden;
    font-family: 'Poppins', sans-serif;
    cursor:pointer;
    
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.overlay .fa-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
}
.overlay img {
    object-fit: cover;
    transition: all 2s;
    height: 100%;
    width: 100%
}
.d-none {
    display: none;
}
.upperborder{
    
    height:80px;
    width:100%;
    background-image: linear-gradient(to right,#9E213D,#9E213D);;
}
.fa-plus{
    position:absolute;
          color:white;
          top:-100px;
       right:10px;
     transition:all 0.5s;
}
.card:hover .fa-plus{
    position:absolute;
    top:10px;
      
}
.plusred{
    color:purple !important;
}


.image{
    position:relative;
}
.image span {
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #ccc;
    border: 5px solid #fff;
    position:absolute;
    top:-50px;
    left:115px;
}
.image span img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}
.text{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    margin-top:50px;
}
.text p{
    font-size:12px;
}
.bottom{
    height:50px;
    width:100%;
    background-color:#f4f5f5;
    position:absolute;
    bottom:0;
    
}
.social{
     margin-left:15px;
    color:purple;
    position:relative;
}
.social i:nth-child(1){
    position:absolute;
    top:19px;
   
    left:-100px;
    transition:all 0.5s;
    
}
.card:hover i:nth-child(1){
    position:absolute;
     left:30px;
     transition-delay:0.9s;
}
.social i:nth-child(2){
    position:absolute;
    top:19px;
    
    left:-100px;
    transition:all 0.5s;

}
.card:hover i:nth-child(2){
    position:absolute;
     left:100px;
     transition-delay:0.6s;
}
.social i:nth-child(3){
    position:absolute;
    top:19px;
    
    left:-100px;
    transition:all 0.5s;

}
.card:hover i:nth-child(3){
    position:absolute;
    left:175px;
    transition-delay:0.3s;
}
.social i:nth-child(4){
    position:absolute;
    top:19px;
  
    left:-100px;
    transition:all 0.5s;

}
.card:hover i:nth-child(4){
    position:absolute;
    left:245px;
    
}