.meet-team-slide {
    padding-top: var(--padding-top-desk);
    padding-bottom: var(--padding-bottom-desk);
    background: var(--section-bg);
}

.meet-team-slide .page-width {
    padding-right: 0;
    margin-right: 0;
}

.meet-team-slide-container {
    transition: all 0.5s;
    transform: translateY(100px);
}

.is-visible .meet-team-slide-container {
    transform: translateY(0);
}

.meet-team-slide-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.team__image-wrapper .member-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.meet-team-slide-wrapper .meet-team-details {
    flex: 0 0 35%;
    max-width: calc(35% - 30px);
}

.meet-team-slide-wrapper .meet-team-slider-details {
    flex: 0 0 65%;
    max-width: calc(65% - 30px);
}

.meet-team-details .main-detail-heading {
    color: var(--heading-color);
    font-size: var(--heading-font-desk);
    margin: 0 0 22px 0;
    line-height: 1.273;
    text-transform: capitalize;
}

.meet-team-details .main-detail-desc {
    font-size: 20px;
    color: #171717;
    line-height: 1.5;
    font-family: 'ANTA Sharp Grotesk Medium';
}

.team__slider-content .team__top-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 33px;
}

.team__top-content-wrapper .slide__heading {
    font-size: 28px;
    color: #000000;
    line-height: 1.286;
    text-transform: capitalize;
}

.team-slider-inner-wrapper .team-slider {
    background: #fff;
    border-radius: 10px;
}

.team-slider .team__slider-content {
    position: relative;
    overflow: hidden;
    padding: 25px 18px;
    font-size: 18px;
    font-family: 'ANTA Sharp Grotesk Medium';
}

.team__slider-content .overlay__content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #292929;
    color: #fff;
    padding: 150px 18px 25px 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
    display: flex;
    justify-content: center;
    text-align: left;
    font-size: 18px;
    border-radius: 10px;
}

.team__top-content-wrapper .circle-button svg {
    transition: all 0.5s;
}

.overlay-open .circle-button svg {
    transform: rotate(45deg);
}

.team__slider-content .overlay__content.active {
    opacity: 1;
    visibility: visible;
}

.team__slider-content .overlay__content.active,
.team__slider-content .overlay__content.active * {
    color: #fff;
}

.team-slider.overlay-open .slide__heading {
    color: #fff;
    position: relative;
    z-index: 10;
}

.team__top-content-wrapper .circle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.team-slider.overlay-open .circle-button {
    background: #fff;
}

.team-slider.overlay-open .circle-button svg .a {
    fill: #000;
}

.overlay-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    z-index: 11;
}

.detail-with-arrows .custom-arrows-product:after {
    content: unset;
}

.detail-with-arrows .custom-arrows-product {
    position: unset;
    margin: 0;
}

.meet-team-details .detail-with-arrows {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 28px;
}

.detail-with-arrows .swiper-button-next {
    transform: rotate(180deg);
}

.swiper-button-next.custom-arrows-product {
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.5s;
}

.detail-with-arrows .custom-arrows-product svg {
    width: 25px;
    height: 25px;
}

.detail-with-arrows .swiper-button-next:hover {
    background: #000;
}

.detail-with-arrows .swiper-button-next:hover svg path {
    fill: #fff;
}

@media (max-width:1024px) {
    .meet-team-slide-wrapper {
        gap: 30px;
    }

    .meet-team-details .main-detail-heading {
        font-size: 36px;
    }

    .meet-team-details .main-detail-desc {
        font-size: 18px;
    }
}

@media (max-width:768px) {
    .meet-team-slide {
        padding-top: var(--padding-top-mob);
        padding-bottom: var(--padding-bottom-mob);
    }

    .meet-team-slide-wrapper .meet-team-details {
        padding: 0 20px;
    }

    .meet-team-slide-wrapper .meet-team-details,
    .meet-team-slide-wrapper .meet-team-slider-details {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .meet-team-details .main-detail-heading {
        font-size: var(--heading-font-mob);
        margin: 0 0 12px 0;
        text-align: center;
    }

    .meet-team-details .main-detail-desc {
        font-size: 14px;
        text-align: center;
    }

    .meet-team-details .detail-with-arrows {
        padding-top: 10px;
        justify-content: center;
        gap: 12px;
    }

    .swiper-button-next.custom-arrows-product {
        width: 36px;
        height: 36px;
    }

    .meet-team-slide-wrapper {
        gap: 24px;
    }

    .detail-with-arrows .custom-arrows-product svg {
        width: 18px;
        height: 18px;
    }

    .team__top-content-wrapper .slide__heading {
        font-size: 18px;
    }

    .team__top-content-wrapper .circle-button {
        width: 24px;
        height: 24px;
    }

    .team__top-content-wrapper .circle-button svg {
        width: 14px;
        height: 14px;
    }

    .team__slider-content .team__top-content-wrapper {
        padding-bottom: 14px;
    }

    .team-slider .team__slider-content {
        padding: 20px;
    }
}

@media (max-width:420px) {
    .team__slider-content .overlay__content {
        font-size: 14px;
        padding-top: 100px;
    }
}