*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*Content*/

.content{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}



.slide-container{
    max-width: 1120px;
    width: 100%;
    
    padding: 40px 0;
}

.slide-content{
    
    margin: 0 40px;
   
    overflow: hidden;
    border-radius: 25px;
}

.swiper-pagination-bullet{
    color: rgb(136, 7, 7);
    opacity: 0.5;
}

.swiper-pagination-bullet-active{
    color: rgb(67, 5, 5);
    opacity: 1;
}

.card{
   
    border-radius: 25px;
    background-color:rgb(20, 20, 20) ;
}

.image-content,
.card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.card-content{
 height: 150px;
}

.image-content{
    row-gap: 5px;
    position: relative;
    padding: 25px 0;
    
}

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #700c0c;
    border-radius: 25px 25px 0 25px ;
}

.overlay::before,
.overlay::after{
    content:'';
    right: 0;
    bottom: -40px;
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #700c0c;
}

.overlay::after{
    border-radius: 0 25px 0 0;
    background-color: rgb(20, 20, 20) ;
}

.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
    padding: 3px;
}

.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #700c0c;
}

.name{
    font-size: 18px;
    font-weight: 500;
    color: rgb(112, 112, 112);
   }
   
.description{
       font-size: 14px;
       color: rgb(163, 166, 166);
       text-align: center;
   
   }

/*==================================RESPONSIVE LAYOUTS===============================================*/ 

@media screen and (max-width: 768px) {
    .slide-content{
        margin: 0 10px;
    }
}








