.hero {
    padding-top: 2.25rem;
    overflow: hidden !important;
}

.who {
    overflow-y: hidden !important;
}

.hero__container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.decor {
    position: absolute;
    top: 0%;
    width: 41.4%;
    max-width: 25.875rem;

}

.hero__decor {
    top: 20%;
}

.hero__decor-left {
    left: 4.5rem;
    transform: translateX(-100%);
}

.section__decor {
    transform: translateX(-100%);
}

.hero__decor-right {
    right: 4.5rem;
    transform: translateX(100%);
}

.hero__text {
    color: var(--color-gray, #767676);
    text-align: center;
}

.hero__buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10.4375rem, max-content));
    justify-content: center;
    gap: 0.5rem;
}

.hero__buttons .btn {
    width: fit-content;
    white-space: nowrap;
}

.swiper-pagination {
    position: static;
    margin-top: 1.4rem;
    padding: 0 !important;
}

.swiper-pagination-bullet {
    width: .75rem;
    height: .75rem;
}

.marquee {
    white-space: nowrap;
    display: flex;
    width: 100%;
}

.marquee__inner {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee__row {
    display: flex;
    padding-right: 0.5rem;
    gap: 0.5rem;
    white-space: nowrap;
}

.toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.toggle__input {
    display: none;
}

.toggle__slider {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    background-color: var(--color-card-white);
    border-radius: 3.125rem;
    transition: background-color 0.3s ease;
    border: 1px solid #E0E0E0;
}

.toggle__slider::before {
    content: "";
    position: absolute;
    top: .1rem;
    left: .125rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--color-gradient);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle__input:checked ~ .toggle__slider::before {
    transform: translateX(1.2rem);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/****VIDEO****/
.hero__video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.hero__video .video-wrapper {
    border-radius: 2rem;
    border: 4px solid var(--color-white, #FFF);
}

.video-mp4 {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-wrapper:hover .video-poster {
    transform: scale(1.03);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0.4%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero__video-play {
    min-width: 1.6875rem;
    width: 5.545%;
    aspect-ratio: 1 / 1;
    background: var(--color-gradient);
    border-radius: 50%;
}

.video__decor {
    position: absolute;
    top: -4%;
    right: -13%;
    max-width: 32%;
    z-index: 5;

}

@media screen and (min-width: 1280px) {
    .hero__video .video-wrapper {
        max-width: 83%;
    }

    .hero {
        position: relative;
        /* overflow: visible; */
        z-index: 1;
    }

    .hero__content {
        position: relative;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .hero__video {
        position: relative;
        z-index: 3;
    }

    .hero__video .video-wrapper {
        transform-origin: center center;
        will-change: transform, width;
        transition: all 0.3s ease;
    }

    .video-wrapper.playing .video-overlay {
        opacity: 0;
        pointer-events: none;
    }
}

.marquee__row {
    padding-right: 1rem;
    gap: 1rem;
}

/****VIEDO END****/

/****HOW BLOCK****/
.how .section__head {
    position: relative;
}

.how__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.section__decor {
    top: 50%;
    transform: translate(-100%, -50%);
}

.how__item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--color-white, #FFF);
    border-radius: var(--card-border-radius);
    padding: 1rem;
    min-height: 14.8125rem;
}

.how__decription {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.how__decription p {
    color: var(--color-gray, #767676);
}

.how__bottom {
    margin-top: auto;
}

.how__item .peo {
    width: 11.25rem;
}

.how__item-blue {
    background: url(../images/how-item-blue.png) rgb(47, 121, 222) 98% 50% / contain no-repeat;

    color: var(--color-white, #FFF);
}

.how__item-blue .how__bottom {
    width: 65.404%
}

.how__item-blue .how__bottom p {
    color: var(--color-light-gray, #D9D9D9);
}

.how__item-gradient {
    background: var(--color-gradient);
    color: var(--color-white, #FFF);
}

.how__item-gradient .how__bottom p {
    color: #F1F2F5;
}

.how__btn {
    width: fit-content;
}

.how__decor {
    transform: translate(-50%, -50%);
}

/****HOW BLOCK END****/

@media screen and (min-width: 376px) {
    .hero {
        padding-top: 3.5rem;
    }

    .hero__container {
        gap: 5.9375rem;
    }
}

@media screen and (min-width: 376px) {
    .hero__decor {
        top: 37%;
    }
}

@media screen and (min-width: 460px) {
    .hero__decor {
        top: 27%;
    }
}

@media screen and (min-width: 500px) {
    .hero__decor {
        top: 10%;
    }

    .hero__decor-left {
        left: 2rem;
    }

    .hero__decor-right {
        right: 2rem;
    }

}

@media screen and (min-width: 580px) {
    .hero__buttons {
        grid-template-columns: repeat(2, minmax(16.375rem, max-content));
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .decor {
        width: 27.078%;
    }

    .hero__decor {
        top: 10%;
    }

    .hero__decor-left {
        left: 3rem;
    }

    .how__decor {
        left: 22%;
    }

    .hero__decor-right {
        right: 3rem;
    }

    .video__decor {
        top: -25%;
        right: -12%;
        max-width: 31%;
    }

    .how__cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 680px) {
    .hero__content {
        max-width: 75.568%;
        margin: 0 auto;
    }

    .hero__title {
        display: inline-block;
        padding: 0 1rem;
    }

    .hero__decor-left {
        left: 1rem;
    }

    .how__decor {
        left: 2%;

    }

    .section__decor {
        width: 20.5%;
    }

    .hero__decor-right {
        right: 1rem;
    }

    .video__decor {
        max-width: 12rem;
    }

    .how__cards {
        gap: 1rem;
    }
}

@media screen and (min-width: 769px) {
    .hero {
        padding-top: 4rem;
    }

    .hero__container {
        gap: 3rem;
    }

    .hero__content {
        max-width: 66.2121%;
        gap: 1.5rem;
    }

    .hero__title {
        padding: 0;
    }

    .video__decor {
        top: -20%;
        max-width: 25%;
    }

}

@media screen and (min-width: 1025px) {
    .hero__buttons {
        grid-template-columns: repeat(2, max-content );
        gap: 1rem;
    }

    .hero__buttons .btn {
        width: fit-content;
    }

    .how__cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .video__decor {
        top: -26%;
        right: -8%;
        max-width: 23%;
    }

    .how__decor {
        left: 34%;
        transform: translate(-100%, -58%);
    }

    .section__decor {
        top: 38%;
    }
}

@media screen and (min-width: 1281px) {
    .hero__decor {
        width: 36.037%;
    }

    .hero__buttons {
        gap: 2rem;
    }

    .video-wrapper {
        border: 6px solid var(--color-white)
    }

    .video__decor {
        top: -27%;
    }

    .how__item {
        padding: 1.5rem;
        min-height: 20.25rem;
    }

    .how__decor {
        left: 36%;
        transform: translate(-100%, -58%);
    }

    .section__decor {
        width: 23.8605%;
    }

    .swiper-pagination {
        margin-top: 2rem;
    }

    .swiper-pagination-bullet {
        width: 1rem;
        height: 1rem;
    }
}

@media screen and (min-width: 1601px) {
    .hero {
        padding-top: 10rem;
    }

    .hero__container {
        gap: 4rem;
    }

    .header__logo {
        max-width: 7.3125rem;
    }

    .hero__content {
        max-width: 66.515%;
        gap: 2rem;
    }

    .hero__decor-left {
        left: -2.5rem;
        transform: translateX(-100%);
    }

    .hero__decor-right {
        right: -2.5rem;
        transform: translateX(100%);
    }

    .video__decor {
        max-width: 20rem;
        top: -20%;
        right: calc(var(--space-container) * -1);
    }

    .how__item {
        padding: 2rem;
        min-height: 23.75rem;
    }

    .how__decor {
        top: 16%;
        width: 23.824%;
        left: 36%;
        transform: translate(-100%, -50%);
    }

    .section__decor {
        top: 16%;
        width: 23.824%;
        transform: translate(-100%, -50%);
    }
}


.drow-right,
.drow-left {
    will-change: clip-path;
}

/****WHO SECTION*****/
.who {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible !important;
    height: 100%;
    margin-bottom: calc(var(--space-section) - 3rem);
}

.who .container {
    overflow-y: visible;
}

.who__list {
    display: flex;
    flex-direction: column;
    max-width: 21.25rem;
    margin: 0 auto;
    position: relative;
    height: 100%;
    overflow-y: visible;
    padding-bottom: 3rem;
}

.who__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    height: 4rem;
    border-radius: 1rem;
    padding: .5rem 1rem .5rem .5rem;
    position: relative;
    z-index: 3;
    transition: var(--hover-transition);
}

.who__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    border-radius: 50%;
}

.who__item:first-child {
    background: var(--color-blue-20, #C0D6FF);
    transform: rotate(3.006deg);
}

.who__item:nth-child(2) {
    background: var(--color-violet-30, #B3A6FF);
    transform: rotate(-5.038deg);
}

.who__item:nth-child(3) {
    background: var(--color-blue-40, #7392FF);
    color: var(--color-white, #FFF);
    transform: rotate(4.828deg);
}

.who__item:nth-child(4) {
    background: var(--color-violet-40, #8F73FF);
    color: var(--color-white, #FFF);
    transform: rotate(-4.627deg);
}

.who__item:nth-child(5) {
    background: var(--color-blue-50, #526DFF);
    color: var(--color-white, #FFF);
    transform: rotate(1.596deg);
}

.who__item:nth-child(6) {
    background: var(--color-violet-50, #6D3BFF);
    color: var(--color-white, #FFF);
    transform: rotate(-4.857deg);
}

.who__item:nth-child(7) {
    background: var(--color-blue-50, #526DFF);
    color: var(--color-white, #FFF);
    transform: rotate(-1.45deg);
}

.who__item:first-child:hover {
    transform: rotate(calc(3.006deg - 3.5deg)) !important;
}

.who__item:nth-child(2):hover {
    transform: rotate(calc(-5.038deg + 3.5deg)) !important;
}

.who__item:nth-child(3):hover {
    transform: rotate(calc(4.828deg - 3.5deg)) !important;
}

.who__item:nth-child(4):hover {
    transform: rotate(calc(-4.627deg + 3.5deg)) !important;
}

.who__item:nth-child(5):hover {
    transform: rotate(calc(1.596deg - 3.5deg)) !important;
}

.who__item:nth-child(6):hover {
    transform: rotate(calc(-4.857deg + 3.5deg)) !important;
}

.who__item:nth-child(7):hover {
    transform: rotate(calc(-1.45deg + 3.5deg)) !important;
}

.who__decor {
    position: absolute;
    top: 0;
}

.who__line-left,
.who__line-right {
    display: none;
}

.who__doctor {
    left: -2%;
    width: 22%;
    top: 8%;
    z-index: 5;
}

.who__boy {
    right: -2%;
    width: 18%;
    top: 10%;
    z-index: 5;
}

@media screen and (min-width: 580px) {
    .who__doctor {
        left: 0;
    }

    .who__boy {
        right: 0;
    }
}

@media screen and (min-width: 700px) {
    .who__decor {
        top: 50%;
        transform: translateY(-50%);
    }

    .who__line-left,
    .who__line-right {
        position: absolute;
        display: block;
    }

    .who__line-left {
        left: -1rem;
        width: 60%;
        height: auto;
        z-index: 1;
        transform: translate(-100%, -50%);
    }

    .who__line-right {
        right: 0;
        width: 70%;
        height: auto;
        z-index: 1;
        transform: translate(104%, -50%);
    }

}

@media screen and (min-width: 769px) {
    .who__list {
        max-width: 26.5625rem;

    }

    .who__item {
        height: 4.5rem;
        gap: 1rem;
        padding: .75rem 1.5rem .75rem .75rem;
    }

}

@media screen and (min-width: 800px) {
    .who__doctor {
        width: 18%;
    }

    .who__boy {
        width: 14%;
    }
}

@media screen and (min-width: 1280px) {
    .how__item.card-img:hover .feature__hover {
        border: 3px solid var(--color-blue-60) !important;
    }

    .card-img.how-1 .feature__hover {
        top: 76%;
        left: 50%;
        transform: translateX(-50%) scale(0);
    }

    .card-img.how-1:hover .feature__hover {
        width: 108%;
        transform: translateX(-46%) rotate(-8.794deg) scale(1);
    }

    .card-img.how-2 .feature__hover {
        top: 76%;
        left: 50%;
        transform: translateX(-46%) scale(0);
    }

    .card-img.how-2:hover .feature__hover {
        width: 108%;
        transform: translateX(-46%) rotate(5.511deg) scale(1);
    }

    .card-img.how-2 .feature__hover {
        top: 60%;
        left: 50%;
        transform: translateX(-56%) scale(0);
    }

    .card-img.how-2:hover .feature__hover {
        width: 108%;
        transform: translateX(-56%) rotate(5.511deg) scale(1);
    }

    .card-img.how-3 .feature__hover {
        top: 60%;
        left: 50%;
        transform: translateX(-50%) scale(0);
    }

    .card-img.how-3:hover .feature__hover {
        width: 110%;
        transform: translateX(-50%) rotate(-4.328deg) scale(1);
    }
}

@media screen and (min-width: 1281px) {
    .who__doctor {
        width: 16%;
    }

    .who__boy {
        width: 13%;
    }

    .who__line-left {

        width: 70%;
    }
}

@media screen and (min-width: 1441px) {
    .who__list {
        max-width: 35.625rem;
    }

    .who__item {
        height: 5rem;
        gap: 1.5rem;
        padding: 1rem 2rem 1rem 1rem;
    }

    .card-img.how-1 .feature__hover {
        top: calc(100% - 3rem);
        left: 50%;
    }

    .card-img.how-1:hover .feature__hover {
        width: 118%;
    }

    .card-img.how-2 .feature__hover {
        top: 55%;
        left: 50%;
    }

    .card-img.how-2:hover .feature__hover {
        width: 124%;
        transform: translateX(-50%) rotate(5.511deg) scale(1);
    }

    .card-img.how-3 .feature__hover {
        top: 50%;
        left: 50%;
    }

    .card-img.how-3:hover .feature__hover {
        width: 125%;
    }
}

/****WHO SECTION END*****/

/****FEATURES SECTION*****/
.features__cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "f-1"
        "f-2"
        "f-3"
        "f-4"
        "f-5";
    gap: 0.5rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-white);
    border-radius: var(--card-border-radius);
    padding: 1rem;
    position: relative;
}

.feature__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature__info p {
    color: var(--color-gray);
}

.feature__img {
    height: auto;
    border-radius: 1.5rem;
    border: 3px solid var(--color-violet-30, #B3A6FF);
    margin-top: auto;
    overflow: hidden;
}

.feature__img img {
    object-fit: cover;
}

.feature__hover {
    display: none;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: var(--hover-transition);
}

.feature__hover-img {
    width: 100%;
    height: 100%;
}

.card-img .feature__hover {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0);
    width: 0;
    height: 0;
    inset: 0;
    overflow: hidden;
    position: absolute;
    transition: all 0.5s ease;
}

.feature-blue {
    background-color: var(--color-light-blue-60);
    color: var(--color-card-white);
}

.feature-blue .feature__info p {
    color: var(--color-card-white);
}

.feature-blue .feature__img {
    border: 3px solid var(--color-white, #fff);
}

.feature-lightblue {
    background-color: var(--color-blue-20);
}

.feature-gradient {
    background: var(--color-gradient);
    color: var(--color-white)
}

.feature-gradient .feature__info p {
    color: var(--color-light-gray);
}

.feature-small .feature__img {
    display: none;
}

.feature__decor {
    margin-top: .75rem;
}

.feature-1 {
    grid-area: f-1;
}

.feature-1 {
    grid-area: f-1;
}

.feature-2 {
    grid-area: f-2;
}

.feature-3 {
    grid-area: f-3;
}

.feature-4 {
    grid-area: f-4;
}

.feature-5 {
    grid-area: f-5;
}

@media screen and (min-width: 450px) {
    .feature__decor {
        max-width: 21.4375rem;
        margin: 1.25rem auto 0 auto;
    }
}

@media screen and (min-width: 580px) {
    .features__cards {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "f-1 f-2"
            "f-3 f-5"
            "f-4 f-5";
        gap: 1rem;
    }
}

@media screen and (min-width: 800px) {
    .feature {
        padding: 1.5rem 2rem;
        border-radius: 2rem;
        gap: 1.5rem;
    }

    .feature__img {
        border-radius: 1.5rem;
    }
}

@media screen and (min-width: 1280px) {
    .features {
        position: relative;
    }

    .features__cards {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-areas:
            "f-1 f-2 f-2 f-5"
            "f-1 f-3 f-4 f-5";
        gap: 1rem;
    }

    .feature {
        gap: 1rem;
        border-radius: 1rem;
        padding: 1.5rem;
    }

    .card-img {
        position: relative;
        z-index: 1;
    }

    .feature-2 {
        display: grid;
        grid-template-columns: 0.6154fr 0.3846fr;
        align-items: center;
    }

    .feature-2 .feature__info {
        justify-content: center;
        width: 100%;
    }

    .feature-2 .feature__img {
        margin-top: unset;
    }

    .feature-2 .feature__img img {
        height: 100%;
    }

    .feature__decor {
        height: var(--space-container);
        width: auto;
        position: absolute;
        top: 50%;
        left: calc(var(--space-container) * -1 + 0.5rem);
        transform: rotate(-90deg) translate(0%, -100%);
    }

    .feature__decor img {
        height: 100%;
        width: auto;
    }


    .card-img .feature__close {
        display: none;
    }

    .card-img:hover .feature__hover {
        width: 100%;
        height: 100%;
        transform: scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        height: fit-content;
        border-radius: 1.5rem;
        z-index: 9999;
        border: 3px solid var(--color-violet-30);
    }

    .card-img:hover {
        z-index: 2;
    }

    .feature-1 .feature__hover,
    .feature-5 .feature__hover {
        top: 50%;
        left: 50%;
        transform: translateX(-50%) scale(0);
    }

    .feature-1:hover .feature__hover,
    .feature-5:hover .feature__hover {
        width: 116.09%;
        transform: translateX(-50%) scale(1);
    }

    .feature-2 .feature__hover {
        top: 10.148%;
        left: unset;
        right: 0;
        transform: scale(0);
    }

    .feature-2:hover .feature__hover {
        width: 52%;
        transform: scale(1) translateX(10%) rotate(-10.148deg);
    }

    .feature-3 .feature__hover,
    .feature-4 .feature__hover {
        top: 65%;
        left: 0;
        transform: scale(0);
    }

    .feature-3:hover .feature__hover,
    .feature-4:hover .feature__hover {
        width: 110%;
        transform: translateX(2rem) scale(1) rotate(-3.092deg);
    }

}

@media screen and (min-width: 1440px) {
    .feature {
        padding: 1.5rem 2rem;
        border-radius: 2rem;
        gap: 1.5rem;
    }

    .feature__info {
        gap: 1rem;
    }
}

@media screen and (min-width: 1601px) {
    .feature {
        padding: 1.5rem 2rem;
        border-radius: 2.5rem;
        gap: 1.5rem;
    }

    .feature__decor {
        left: calc(var(--space-container) * -1 + 1.5rem);
    }

    .feature-2 .feature__hover {
        top: 0;
        left: unset;
        right: 0;
        transform: scale(0);
    }

    .feature-1:hover .feature__hover,
    .feature-5:hover .feature__hover {
        width: 121%;
    }

    .feature-2:hover .feature__hover {
        width: 52%;
        transform: scale(1) translateX(10%) rotate(-10.148deg);
    }

    .feature-3 .feature__hover,
    .feature-4 .feature__hover {
        top: calc(100% - 2.5rem);
        left: 31.3%;
        transform: scale(0);
    }

    .feature-3:hover .feature__hover,
    .feature-4:hover .feature__hover {
        width: 85%;
        transform: scale(1) rotate(-3.092deg);
    }
}

/****FEATURES SECTION END*****/

/****SIMULATION SECTION*****/
.simulation__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.simulation__decor {
    display: none;
}

.simulation__item {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    gap: 1.5rem;
    padding: 1rem;
    border-radius: var(--card-border-radius);
}

.simulation__item-blue {
    background-color: var(--color-blue-20);
}

.simulation__video .video-wrapper {
    width: 100%;
    border-radius: var(--card-border-radius);
    border: 4px solid var(--color-white, #FFF);
    aspect-ratio: 16.2 / 9.2;
    background-color: rgb(223, 242, 253);
}

.simulation__item p {
    color: var(--color-gray);
}

.simulation__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.simulation__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.simulation__info-top {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.simulation__item .btn {
    margin-top: auto;
    width: fit-content;
    height: auto;
}

.simulation .video-play {
    width: 2.0625rem;
    height: 1.5rem;
    border-radius: 1rem;
    background-color: #F00;
}

.simulation .video-play svg {
    width: .5625rem;
}

@media screen and (min-width: 768px) {
    .simulation__cards {
        flex-direction: row;
    }

    .simulation__item {
        flex-basis: calc(50% - 1rem);
    }
}

@media screen and (min-width: 1025px) {
    .simulation__cards {
        flex-direction: row;
    }

    .simulation__item {
        padding: 1.5rem;
    }

    .simulation__info {
        gap: 1.5rem;
    }

    .simulation__content {
        gap: 1rem;
    }

    .simulation .video-play {
        width: 4.125rem;
        height: 3rem;
    }

    .simulation .video-play svg {
        width: 1rem;
    }
}

@media screen and (min-width: 1281px) {
    .simulation__cards {
        position: relative;
    }

    .simulation .video-play {
        width: 4.375rem;
        height: 3.0625rem;
    }

    .simulation .video-play svg {
        width: 1.125rem;
    }

    .simulation__cards {
        max-width: 83.182%;
        margin: 0 auto;
    }

    .simulation__decor {
        display: block;
        width: auto;
        height: 79.23%;
        position: absolute;
        right: -12%;
        bottom: -3%;
        max-width: 255px;
        max-height: 568px;
    }

    .simulation__decor img {
        height: 100%;
        width: auto;
    }
}

@media screen and (min-width: 1601px) {
    .simulation__video .video-wrapper {
        border-radius: 2rem;
    }

}

/****SIMULATION SECTION END*****/

/****DEMO SECTION END*****/
.demo__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.demo__img {
    max-width: 21.25rem;
    margin: 0 auto;
}

.demo__slider {
    position: relative;
    width: calc(100% + (var(--space-container) * 2));
    top: -1rem;
    left: calc(var(--space-container) * -1);
    padding: 1rem var(--space-container);
}

.demo__item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo__label {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.demo__bottom p {
    color: var(--color-gray);
}

.demo__screen {
    aspect-ratio: 2 / 1;
    border-radius: 4px solid var(--color-white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 13px 27px -5px rgba(13, 31, 31, 0.25), 0 8px 16px -8px rgba(10, 46, 52, 0.17);
}

.demo__screen img {
    object-fit: cover;
}

.demo .btn {
    width: fit-content;
}

.demo__left {
    position: relative;
}

.demo__decor {
    top: unset;
    bottom: 0;
    left: 0;
    transform: unset;
    z-index: 0;
}

@media screen and (min-width: 580px) {
    .demo__decor {
        left: 20%;
    }
}

@media screen and (min-width: 1280px) {
    .demo {
        position: relative;
    }

    .demo__container {
        flex-direction: row;
    }

    .demo__left {
        position: static;
        max-width: 26.8125rem;
        padding-left: 8.43%;
    }

    .demo__right {
        width: 66.95%;
        flex-basis: 66.95%;
        flex-shrink: 0;
        flex-grow: 0;
        padding-right: 8.409%;
    }

    .demo__slider {
        width: calc(100% + 52px);
        top: -1rem;
        left: -26px;
        padding: 1rem 26px;
    }

    .demo__decor {
        left: 0;
        width: 18%;
        max-width: 19.625rem;
        bottom: 20%;
    }

    .demo__img {
        position: relative;
        top: -5%;
    }

    .demo__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1281px) {
    .demo__item {
        gap: 2rem;
    }

    .demo__decor {
        /* width: 15%; */
        max-width: 19.625rem;
    }
}

@media screen and (min-width: 1601px) {
    .demo__decor {
        width: 16%;
        max-width: 25.875rem;
        bottom: 25%;
    }

    .demo__container {
        gap: 3.75rem;
    }

    .demo__left {
        max-width: 33.25rem;
    }

}

/****DEMO SECTION END*****/

/****BENEFITS SECTION*****/
.benefits .section__head {
    position: relative;
}


.benefits__head_decor {
    display: none;
}

@media (max-width: 500px) {
    .benefits__head_decor {
        right: -1rem;
        display: flex;
        transform: unset;
        width: 142px;
        height: 49px;
    }
}

.benefits__decor {
    right: calc(var(--space-container) * -1);
    left: unset;
    width: 128px;
    top: 50%;
    bottom: 0;
    height: fit-content;
}

.benefits__cards {
    display: flex;
    gap: 16px;
    overflow: hidden;
    justify-content: center;
    position: relative;
}

.benefit {
    border-radius: 40px;
    padding: 2rem;
}

.benefit.benefit-light-blue {
    background: var(--color-light-blue-10);
}

.benefit.benefit-blue {
    background: var(--color-blue-10);
}

.benefit.benefit-violet {
    background: var(--color-violet-10);
}

.benefit__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit__image {
    width: 100%;
    margin-bottom: 2rem;
    height: 264px;
}

@media screen and (max-width: 1440px) {
    .benefit__image {
        height: 219px;
    }
}

.benefit h5 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-light-blue-20);
}

.benefit ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
    padding-left: 32px;
}

.benefit ul li:nth-last-child(1) {
    margin-bottom: 0;
}

.benefit ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13L8.52642 15.8211C9.35374 16.483 10.5536 16.3848 11.2624 15.5973L19 7' stroke='%236D3BFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media screen and (max-width: 1840px) {
    .benefits__decor {
        display: none;
    }
}


@media screen and (max-width: 1023px) {
    .benefits__cards {
        flex-wrap: wrap;
    }

    .benefit {
        flex-basis: calc(50% - 1rem);
    }
}

@media screen and (max-width: 780px) {
    .benefit {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .benefits__decor {
        display: none;
    }

    .benefit__image {
        height: 220px;
        margin-bottom: 1rem;
    }

    .benefit h5 {
        margin-bottom: 1rem;
        padding-bottom: .5rem;
    }
}

@media screen and (max-width: 580px) {
    .benefit {
        flex-basis: 100%;
    }
}

/****BENEFITS SECTION END*****/

/****TESTIMONIALS SECTION*****/
.testimonials .section__head {
    position: relative;
}

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-white);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    /* height: 100% !important; */
}

.testimonial__stars {
    display: flex;
    gap: 0.5rem;
}

.testimonial__text {
    color: var(--color-gray);
    height: 100%;
}

.testimonial__user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-violet-20);
    border-radius: 50%;
}

.testimonial__name {
    font-size: var(--fz-body-bold);
    font-weight: 500;
}

.testimonials__slider .swiper-wrapper {
    align-items: stretch;
}

.testimonials__slider {
    width: calc(100% + 16px);
    position: relative;
    top: -8px;
    left: -8px;
    padding: 8px 8px 0 8px;
}

@media screen and (min-width: 1281px) {
    .testimonial {
        padding: 1.5rem;
    }
}

@media screen and (min-width: 1601px) {
    .testimonial {
        padding: 2rem;
    }
}

/****TESTIMONIALS SECTION END*****/

/****TESTIMONIALS SECTION END*****/

/****PARTNERS SECTION*****/
.partners {
    overflow: hidden;
}

.partners__content {
    position: relative;
}

.partners__background {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__list {
    position: absolute;
}

.partners__man {
    width: 18.25rem;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.partners__decor {
    position: absolute;
    width: 60%;
    z-index: 0;
}

.partners__line-left {
    left: 0;
    transform: translate(-70%, -20%);
}

.partners__line-right {
    right: calc(var(--space-container) * -1);
    transform: translate(60%, -20%);
}

.partners__man img {
    display: block;
    margin: 0 auto;
}

.partners__list {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    z-index: 3;
}

.partner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 3.5862rem;
    background: var(--color-white);
    padding: 0.125rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
}

.partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (min-width: 500px) {
    .partners__decor {
        width: 50%;

    }

    .partners__line-left {
        transform: translate(-20%, -20%);
    }

    .partners__line-right {
        transform: translate(20%, -20%);
    }

    .partner {
        width: 13.75rem;
        height: 4.9375rem;
    }
}

@media screen and (min-width: 640px) {
    .partners__decor {
        width: 19.144%;
        position: static;
        transform: translate(0, -70%);
    }

    .partners__man {
        margin: 0;
    }
}

@media screen and (min-width: 1024px) {
    .partners__decor {
        width: 23.253%;
    }

    .partners__man {
        width: 41.2121%;
        max-width: 34rem;
    }

    .partners__list {
        gap: 1rem;
    }

    .partner {
        width: 17.5rem;
        height: 7.0625rem;
        border-radius: 1.5rem;
    }
}

@media screen and (min-width: 1281px) {
    .partners__man {
        max-width: 690%;
    }

    .partners__decor {
        width: 24.317%;
    }

    .partners__list {
        top: 62%;
    }
}

@media screen and (min-width: 1441px) {
    .partners__list {
        top: 64%;
    }
}

/****PARTNERS SECTION END*****/

/****PLANS SECTION*****/
.slider-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 2.75rem;
    background: var(--color-white);
    border-radius: 2.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #D8DBE3;
    position: relative;
    overflow: visible;
}

.slider-track {
    width: 100%;
    position: relative;
    height: .75rem;
    border-radius: .5rem;
    background: #D8DBE3;

}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 50px;
    background: var(--color-gradient);
    width: 0%;
    transition: width 0.2s ease-out;
}

.slider-thumb {
    width: 3.9375rem;
    height: 1.75rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    border-radius: 2.5rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: .75rem;
    font-weight: 600;
    gap: .125rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
    cursor: grab;
    transition: left 0.1s ease-out;
    user-select: none;
}

.slider-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.05);
}

.slider-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: .75rem;
    height: .75rem;
    color: var(--color-gray);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.slider-arrow:hover {
    color: var(--color-violet-50);
}

.plans__cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 81.6875rem;
    margin: 0 auto;
}

.plans__decor {
    display: none;
}

.plan {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--card-border-radius);
}

.plan-blue {
    background: var(--color-blue-20);
}

.plan-gradient {
    background: var(--color-gradient);
    color: var(--color-white);
}

.plan__top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan__head {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.plan__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan p,
.plan li,
.plan__price-title span {
    color: var(--color-gray);
}

.plan-gradient p,
.plan-gradient li,
.plan-gradient .plan__price-title span {
    color: var(--color-card-white);
}

.plan__price-title {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.plan__price-save-price {
    margin-top: -.5rem;
    color: var(--color-gray);
    font-size: 12px;
}

.plan__price-save-price span {
    color: var(--color-dark);
}

.plan-gradient .plan__price-save-price {
    color: #BFBFBF;
}

.plan-gradient .plan__price-save-price span {
    color: white;
}

.plan__price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D8DBE3;
}

.plan-blue .plan__price {
    border-bottom: 1px solid var(--color-gray);
}

.plan__price-old-price {
    text-decoration: line-through;
    color: var(--color-gray);
    margin-bottom: -.5rem;
}

.plan-gradient .plan__price-old-price {
    color: var(--color-white);
}

.plan__price-off {
    background: var(--color-violet-30);
    color: var(--color-dark) !important;
    padding: 4px 12px;
    border-radius: 4px;
}

.plan:not(.plan-sale) .plan__price-off,
.plan:not(.plan-sale) .plan__price-save-price,
.plan:not(.plan-sale) .plan__price-old-price,
.plan:not(.plan-sale) .plan__price-main-price--yearly,
.plan.plan-sale .plan__price-main-price--monthly {
    display: none !important;
}

.plan .btn {
    width: fit-content;
}

.plan__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan__list li {
    position: relative;
    padding-left: 28px;

}

.plan__list li:not(:last-child) {
    margin-bottom: .75rem;
}

.plan__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../images/li-icon.svg") center/contain no-repeat;
}

.plan-gradient .plan__list li::before {
    background: url("../images/li-icon-gradient.svg") center/contain no-repeat;
}

.plan__note {
    font-size: var(--fz-description);
}

.plan__bottom {
    margin-top: auto;
}

.list-accent {
    color: var(--color-violet-60);
    font-weight: 600;
}

@media screen and (min-width: 680px) {
    .plans__cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .plan {
        flex-basis: calc(50% - 1rem);
    }
}

@media screen and (min-width: 1024px) {
    .plan {
        flex-basis: calc((100% / 3) - 2rem);
    }
}

@media screen and (min-width: 1025px) {
    .plan {
        padding: 1.5rem;
        gap: 2.5rem;
    }
}

@media screen and (min-width: 1280px) {
}

@media screen and (min-width: 1601px) {
    .plan {
        padding: 2rem;
    }

    .plans__decor {
        left: -3%;
        display: block;
        width: 100%;
        max-width: 31.25rem;
        height: fit-content;
    }

    .plans__decor img {
        width: 100%;
        height: 100%;
    }

    .plans {
        position: relative;
    }
}


@media screen and (min-width: 1701px) {

    .plans__decor {
        left: 0;
    }
}

@media screen and (min-width: 1801px) {
    .plans__decor {
        left: 3%;
    }
}

/****PLANS SECTION END*****/

/****QUESTIONS SECTION*****/
.questions {
    position: relative;
}

.questions__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.questions__decor {
    top: unset;
    bottom: 1%;
    width: 37.8666%;
    right: var(--space-container);
    transform: unset;
}

.questions__img {
    max-width: 26rem;
    margin: 0 auto;
}

.questions__dropdowns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 10px;
}

.question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.questions__left {
    position: relative;
}

.question .dropdown__summary {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: var(--color-white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    z-index: 3;
}

.question.active .dropdown__summary {
    box-shadow: unset;
}

.question .dropdown__summary h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.question .dropdown__summary::after {
    content: url(../images/question-icon.svg);
    width: 3rem;
    height: 3rem;
    background-color: var(--color-blue-10);
    border-radius: 50%;
    flex-shrink: 0;
}

.question .dropdown__list {
    position: relative;
    margin-top: -1rem;
    background-color: var(--color-blue-10);
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: var(--card-shadow);
    z-index: 1;
}

.questions__dropdowns-slider-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    gap: 30px;
}

.questions__dropdowns-slider-control-prev,
.questions__dropdowns-slider-control-next {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-blue-10);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.questions__dropdowns-slider-control-prev {
    transform: rotate(90deg);
}

.questions__dropdowns-slider-control-next {
    transform: rotate(-90deg);
}

.questions__dropdowns-slider-control-prev.swiper-button-disabled,
.questions__dropdowns-slider-control-next.swiper-button-disabled {
    opacity: .5;
    cursor: no-drop;
}

@media screen and (min-width: 769px) {
    .questions__dropdowns {
        gap: 1rem;
    }

    .question .dropdown__summary {
        border-radius: 1.5rem;
        padding: 1rem 2rem;
    }

    .question .dropdown__list {
        width: 91.2418%;
        margin: 0 auto;
        border-radius: 0 0 1.5rem;
        padding: 1rem 2rem;
    }
}

@media screen and (min-width: 1280px) {
    .questions {
        position: relative;
    }

    .questions__decor {
        right: 0;
    }

    .questions__container {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .questions .section__head p,
    .questions .section__head h2 {
        text-align: left;
    }

    .questions__img {
        margin: 0 auto 0 0;
    }

    .questions__left {
        position: static;
        max-width: 26.8125rem;
    }

    .questions__right {
        width: 100%;
        max-width: 872px;
    }
}

@media screen and (min-width: 1601px) {
    .questions__container {
        justify-content: space-between;
        gap: 1rem;
    }

    .questions__left {
        max-width: 36rem;
        width: 100%;
    }
}

/****QUESTIONS SECTION END*****/

/****CTA SECTION*****/
.cta__container {
    background: var(--color-gradient);
    padding: 1rem;
    border-radius: var(--card-border-radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-white);
}

.cta p {
    color: var(--color-card-white);
}

.cta .section__head p,
.cta .section__head h2 {
    text-align: left;
}

.cta__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta__outline {
    border: 1px solid var(--color-white);
    background-color: transparent;
    color: var(--color-white);
}

.cta__outline:hover {
    border: 1px solid var(--color-light-blue-60);
    background-color: var(--color-light-blue-60);
}

.cta__outline:active {
    border: 1px solid var(--color-light-blue-60);
    background-color: var(--color-light-blue-60);
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.25) inset;
}

.cta__img {
    position: relative;
    bottom: -2.5rem;
    max-width: 31.25rem;
    margin: 0 auto;
}

.cta__decor {
    display: none;
}

@media screen and (min-width: 768px) {
    .cta__container {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem;
        position: relative;
    }

    .cta .section__head {
        margin-bottom: unset;
    }

    .cta__img {
        position: static;
        /* max-width: 20.25rem; */
        width: auto;
        height: 100%;
        margin: unset;
    }

    .cta__buttons {
        flex-direction: row;
    }

    .cta__left {
        gap: 1.5rem;
        flex-basis: 56%;
    }

    .cta__right {
        position: absolute;
        bottom: 1rem;
        right: 0;
        width: 46.164%;

    }
}

@media screen and (min-width: 769px) {
    .cta__left {
        flex-basis: 58%;
    }

    .cta__buttons {
        gap: 1rem;
    }
}

@media screen and (min-width: 900px) {
    .cta__left {
        flex-basis: 50%;
    }

    .cta__right {
        right: 2%;
    }

    .cta__buttons {
        gap: 1.5rem;
    }
}

@media screen and (min-width: 1025px) {
    .cta__container {
        min-height: 20rem;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .cta__left {
        flex-basis: 70%;
    }

    .cta__right {
        width: 36%;
    }
}

@media screen and (min-width: 1280px) {
    .cta {
        position: relative;
    }

    .cta__container {
        padding: 2rem 3rem;

    }

    .cta__buttons {
        gap: 1.5rem;
    }

    .cta__decor {
        display: inline-block;
        height: fit-content;
        top: unset;
        left: -2%;
        bottom: 5.6%;
        width: 13.23%;
        max-width: 15.875rem;
    }
}

@media screen and (min-width: 1601px) {
    .cta__container {
        padding: 5rem 9.25rem;
        gap: 2rem;
    }

    .cta__img {
        max-width: 34.9375rem;
    }

    .cta__right {
        bottom: 2rem;
    }

    .cta__decor {
        bottom: 9.75%;
        width: 13.23%;
    }


}

/****CTA SECTION END*****/