/* === Google Font Import - Poppins === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


.card {
    border-radius: 20px;
    margin: 20px 0;
    /*position: relative;*/
    /*background: #fff;*/
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
}

    .card::before {
        content: "";
        position: absolute;
      /* height: 40%;*/
        /*width: 100%;*/
        /*background: #7d2ae8;*/
        /*border-radius: 20px 20px 0 0;*/
    }

    .card .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        position: relative;
        z-index: 100;
    }


section .card .image {
    height: 100%;
    /*width: 100%;*/
    /*border-radius: 50%;*/
    /*background: #7d2ae8;*/
    padding: 3px;
    max-height: 360px;
    max-width: 260px;
    align-items: center;
}

    section .card .image img {
        height: 260px;
        width: 100%;
        object-fit: cover;
        /*border-radius: 50%;*/
        /*border: 3px solid #fff;*/
        max-height: 360px;
        max-width: 260px;
    }

.card .media-icons {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .card .media-icons i {
        color: #fff;
        opacity: 0.6;
        margin-top: 10px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .card .media-icons i:hover {
            opacity: 1;
        }

.card .name-profession {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.name-profession .name {
    font-size: 20px;
    font-weight: 600;
}

.name-profession .profession {
    font-size: 15px;
    font-weight: 500;
}

.card .rating {
    display: flex;
    align-items: center;
    margin-top: 18px;
}

    .card .rating i {
        font-size: 18px;
        margin: 0 2px;
        color: #7d2ae8;
    }

.card .button {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

    .card .button button {
        background: #7d2ae8;
        outline: none;
        border: none;
        color: #fff;
        padding: 8px 22px;
        border-radius: 20px;
        font-size: 14px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

.button button:hover {
    background: #6616d0;
}

.swiper-pagination {
    position: absolute;
}

.swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    border-radius: 25px;
    background: #808080;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0.7;
    color: #7d2ae8;
    transition: all 0.3s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        opacity: 1;
        color: #7d2ae8;
    }

/* Responsive media query code for small screens */
@media (max-width: 768px) {
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
