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

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

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

.card{
    border-radius: 25px;
    background-color: #FFF;
}

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

.card-content{
  margin-bottom: 20px;
}

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

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #00000f 70%, #3d1365);
    border-radius: 25px 25px 0 25px;
}

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

.overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #FFF;
    padding: 3px;
}

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

.name{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.description{
    text-align: center;
}



.button:hover{
    background: #265DF2;

}

.swiper-navBtn{
    color: #6E93F7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover{
    color: #4070F4;
}

.swiper-navBtn::before, .swiper-navBtn::after{
    font-size: 40px;
}

.swiper-button-next{
    right: 0;

}

.swiper-button-next{
    left: 0;
    
}

.swiper-pagination-bullet{
    background-color: #6E93F7;
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background-color: #4070F4;
    opacity: 1;
}

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