/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body{
    /*min-height: 5vh;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    background-color: #efefef;
}
.slide-container
{
    max-width: 1120px;
    width: 100%;
    padding: 50px 0;
}
.slide-content
{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}
.card
{
    border-radius: 25px;
    background-color: #fff;
}
.image-content, 
.card-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}
.card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #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;
    z-index: 1;
    text-align: center;
}
.description
{
    font-size: 14px;
    color: #707070;
    text-align: justify;
}
.image-content
{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}
.button
{
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: #4070f4;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover
{
    background: #1c48be;
}
.overlay
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
    border-radius: 25px 25px 0 25px;
}
.overlay::before, 
.overlay::after
{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070f4;
    
}
.overlay::after
{
    border-radius: 0 25px 0 0;
    background-color: #ffffff;
    
}
.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
{
    padding-left: 20px;
    right: 0;
}
.swiper-button-prev
{
    padding-right: 20px;
    right: 0;
}
.swiper-pagination-bullet
{
    margin-top: 20px;
    background-color: #6E93f7;
    opacity: 1;
}
.swiper-pagination-bullet-active
{
    margin-top: 100px;
    background-color: #4070F4;
}
@media screen and (max-width: 768px)
{
    .slide-content
    {
        margin: 0 10px;
    }
    #swiper-navBtn{
        display: none;
    }
}