.companies__image {
    opacity: 100% !important;
}



/* Базовые стили секции */
.creative-approach {
    padding: 80px 0;

}

.creative-approach__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заголовок секции */
.creative-approach__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -3%;
    margin-bottom: 60px;
    color: #2C2C2C;
    /* или ваш цвет */
}


.approach__title-icon {
    height: 62px;
}


.ai-texnology {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ai-texnology-title-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.ai-texnology-title-text span {
    font-weight: 700;
    color: #4a5fe6;
}

.ai-texnology-text-descr {
    padding-left: 16px;
    position: relative;
}

.ai-texnology-text-descr::after {
    content: "";
    top: 0;
    position: absolute;
    display: block;
    width: 2px;
    left: 0;
    height: 100%;
    background-color: #4A5FE6;
}




/* Для экранов до 1240px */
@media (max-width: 1240px) {
    .creative-approach__title {
        font-size: 48px;
    }
}



/* Для экранов до 768px */
@media (max-width: 768px) {
    .creative-approach__title {
        font-size: 24px;
        line-height: 120%;
    }


}







/* Section what-ai */
.what-ai {
    padding: 120px 0;
}

.what-ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.what-ai__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.02em;
    white-space: pre-line;
}

.what-ai__item {
    background: linear-gradient(180deg, #6984E0 0%, #9E9FE2 100%);
    border-radius: 20px;
    padding: 40px 30px;
}

.what-ai__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #F7F7F7;
    margin-bottom: 40px;
}

.what-ai__item-content {
    color: #F7F7F7;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;

}








.stage-work {
    position: relative;
    background-color: #EDEEFF;
    padding: 100px 0 150px;
}

.stage-work::before {
    content: "";
    position: absolute;
    top: 67%;
    left: 31%;
    width: 100%;
    height: 59%;
    background-image: url(../img/creative-bg-image.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%) rotate(22deg);
    z-index: 0;
}

.stage-work>* {
    position: relative;
    z-index: 1;
}

.stage-and-cost-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    color: #2C2C2C;
}

.stage-and-cost-title span {
    color: #4a5fe6;
}

.stage-work-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stage-work-item {
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    min-height: 226px;
    border-radius: 20px;
    z-index: 0;
}

.stage-work-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #6984E0 0%, #9E9FE2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 1;
    border-radius: 20px;
}

.stage-work-item:hover::before {
    transform: scaleX(1);
}

/* Текстовые элементы — выше псевдоэлемента */
.stage-work-item * {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.stage-work-number {
    font-weight: 500;
    font-size: 80px;
    line-height: 90%;
    color: rgba(0, 54, 246, 0.2);
    text-transform: uppercase;
}

.stage-work-item-content-title {
    white-space: pre-line;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.stage-work-item-content-descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(44, 44, 44, 0.6);
}

/* Цвета при наведении */
.stage-work-item:hover .stage-work-number,
.stage-work-item:hover .stage-work-item-content-title,
.stage-work-item:hover .stage-work-item-content-descr {
    color: #F7F7F7;
}

@media (max-width: 1240px) {
    .stage-and-cost-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .stage-work-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .stage-work-item-content-title {
        font-size: 24px;
    }

    .stage-work-item-content-descr {
        font-size: 15px;
    }

    .stage-work-number {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .stage-work {
        padding: 60px 0 80px;
    }

    .stage-and-cost-title {
        font-family: 'Hero New', sans-serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
        letter-spacing: -2%;
        margin-bottom: 60px;
    }

    .stage-work::before {
        top: 105%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(28deg);
        background-size: 114%;
        width: 134%;
    }

    .stage-work-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .stage-work-item {
        padding: 30px 15px;
        gap: 16px;
        min-height: auto;
    }

    .stage-work-number {
        font-weight: 500;
        font-size: 60px;
        line-height: 95%;
        letter-spacing: 0;
        vertical-align: middle;
        text-transform: uppercase;
    }

    .stage-work-item-content-title {
        font-weight: 600;
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0;
        margin-bottom: 30px;
    }

    .stage-work-item-content-descr {
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: -2%;
        vertical-align: middle;
    }

    .stage-work-item-null {
        display: none;
    }
}


.cost-big-section {
    background: linear-gradient(180deg, #EDEEFF 0.04%, #9E9FE2 39.41%, #4E70E4 100%);
}


.cost-desing {
    padding: 100px 0 250px;
}

.cost-desing-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.cost-desing-item svg {
    transition: transform 0.3s ease;
}

.cost-desing-item:hover svg {
    transform: rotate(45deg);
}

.cost-desing-item {
    background-color: #EDEEFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    padding: 50px 30px;
    transition: background-color 0.3s ease;
}

.cost-desing-item * {
    transition: color 0.3s ease;
}

.cost-desing-item:hover {
    background-color: #4A5FE6;
}

.cost-desing-item:hover .cost-desing-title,
.cost-desing-item:hover .cost-desing-description,
.cost-desing-item:hover .cost-desing-cost,
.cost-desing-item:hover svg path {
    color: #FFFFFF;
    fill: #FFFFFF;
    stroke: #FFFFFF;
}


.cost-desing-title {
    color: #2C2C2C;
    width: 35%;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
}

.cost-desing-description {
    max-width: 260px;
    color: rgba(44, 44, 44, 0.6);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.cost-desing-cost {
    color: #2C2C2C;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
}

.mob-svg-cost {
    display: none;
}

@media (max-width: 768px) {
    .cost-desing-item {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .cost-desing-title {
        width: 100%;
    }

    .cost-desing-cost {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .cost-desing-description {
        width: 80%;
    }

    .mob-svg-cost {
        display: inline;
    }

    .cost-svg {
        display: none;
    }
}





.result-section {
    padding: 100px 0;
}

.result-section__header {
    margin-bottom: 60px;
}

.new__main-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.result-section__content {
    display: flex;
}

.result-section__items {
    width: 100%;

}

.result-section__left-block {
    width: 55%;
    display: flex;
    align-items: center;

    gap: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -2%;
    vertical-align: middle;

}

.result-section__title-content {
    width: 70%;
}

.result-section__content-block {
    width: 45%;
}

.result-section__item {
    border-top: 1px solid rgba(4, 4, 4, 0.2);
    border-radius: 13px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.result-section-niches__icon {
    width: 60px;
    height: 51px;
    flex-shrink: 0;
    object-fit: contain;
}

.result-section__item:hover {
    transform: translateY(-5px);
}

.result-section__item-content {
    display: flex;
    align-items: flex-start;
}

.result-section__icon {
    width: 72px;
    height: 62px;
    margin-right: 20px;
    flex-shrink: 0;
}

.result-section__text {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .result-section__content {
        flex-direction: column;
    }

    .result-section__items {
        width: 100%;
    }

    .result-section__item {
        margin-bottom: 20px;
    }

    .result-section__left-block {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0px;
        font-weight: 500;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: -2%;
        vertical-align: middle;
        margin-bottom: 20px;
    }

    .result-section__content-block {
        width: 100%;
    }

    .result-section__item {
        padding: 20px 0;
    }

    .result-section__text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .result-section {
        padding: 60px 0;
    }

    .result-section__item-content {
        flex-direction: column;
    }

    .result-section__icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}





.search {
    width: 100%;
    padding: 60px 0px
}

.search__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px
}

.search__body-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px
}

.search__body-title img {
    width: 30px;
    height: 30px
}

.search__body-title span {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #2c2c2c
}

.search__body-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 29px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.search__body-block-start {

    min-width: 393px;
    height: 530px;
    position: relative;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.search__body-block-start-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.search__body-block-start-text span:nth-child(1) {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #fff
}

.search__body-block-start-text span:nth-child(2) {
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f7f7f7
}

.search__body-block-start img {
    position: absolute;
    width: 393px;
    height: 530px;
    top: 0;
    left: 0;
    z-index: -1
}

.search__body-block-start p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f7f7f7;
    max-width: 353px
}

.search__body-block-end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.search__body-block-end-item {
    width: 382px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    border-top: 2px solid rgba(4, 4, 4, .2)
}

.search__body-block-end-item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.search__body-block-end-item-title span {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c;
    max-width: 250px;
}

.search__body-block-end-item-title p {
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c;
    opacity: .5
}

.search__body-block-end-item-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c;
    opacity: .6
}

.search__top-title {
    color: #F7F7F7;
}


@media (max-width: 1440px) {
    .search {
        width: 100%;
        padding: 60px 0px
    }

    .search__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 60px
    }

    .search__body-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px
    }

    .search__body-title img {
        width: 30px;
        height: 30px
    }

    .search__body-title span {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        color: #2c2c2c
    }

    .search__body-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 29px;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .search__body-block-start {
        min-width: 393px;
        height: 530px;
        position: relative;
        border-radius: 11px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        flex-direction: column;

        padding: 20px;

    }

    .search__body-block-start-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .search__body-block-start-text span:nth-child(1) {
        font-size: 24px;
        font-weight: 700;
        line-height: 28.8px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #fff
    }

    .search__body-block-start-text span:nth-child(2) {
        font-size: 28px;
        font-weight: 400;
        line-height: 33.6px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #f7f7f7
    }

    .search__body-block-start img {
        position: absolute;
        width: 393px;
        height: 530px;
        top: 0;
        left: 0;
        z-index: -1
    }

    .search__body-block-start p {
        font-size: 16px;
        font-weight: 500;
        line-height: 19.2px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #f7f7f7;
        max-width: 353px
    }

    .search__body-block-end {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px
    }

    .search__body-block-end-item {
        width: 382px;
        height: 250px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 20px;
        border-top: 2px solid rgba(4, 4, 4, .2)
    }

    .search__body-block-end-item-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .search__body-block-end-item-title span {
        font-size: 24px;
        font-weight: 700;
        line-height: 28.8px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c;
        max-width: 275px;
    }

    .search__body-block-end-item-title p {
        font-size: 28px;
        font-weight: 400;
        line-height: 33.6px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c;
        opacity: .5
    }

    .search__body-block-end-item-desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.2px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c;
        opacity: .6
    }
}

@media (max-width: 640px) {
    .search {
        width: 100%;
        padding: 30px 0px
    }

    .search__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px
    }

    .search__body-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px
    }

    .search__body-title img {
        width: 15px;
        height: 15px
    }

    .search__body-title span {
        font-size: 12px;
        font-weight: 600;
        line-height: 14px;
        text-align: left;
        color: #2c2c2c
    }

    .search__body-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 29px;
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px
    }

    .search__body-block-start {
        min-width: 280px;
        height: 430px;
        position: relative;
        border-radius: 11px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;


        padding: 20px;

    }

    .search__body-block-start-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .search__body-block-start-text span:nth-child(1) {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #fff
    }

    .search__body-block-start-text span:nth-child(2) {
        font-size: 28px;
        font-weight: 400;
        line-height: 33.6px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #f7f7f7
    }

    .search__body-block-start img {
        position: absolute;
        width: 280px;
        height: 430px;
        top: 0;
        left: 0;
        z-index: -1
    }

    .search__body-block-start p {
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #f7f7f7;
        max-width: 280px
    }

    .search__body-block-end {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 15px
    }

    .search__body-block-end-item {
        width: 280px;
        height: 200px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 20px;
        border-top: 2px solid rgba(4, 4, 4, .2)
    }

    .search__body-block-end-item-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .search__body-block-end-item-title span {
        font-size: 16px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c
    }

    .search__body-block-end-item-title p {
        font-size: 28px;
        font-weight: 400;
        line-height: 33.6px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c;
        opacity: .5
    }

    .search__body-block-end-item-desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.2px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c;
        opacity: .6
    }
}

.review {
    width: 100%;
    padding: 60px 0px
}

.review__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.review__body-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px
}

.review__body-title img {
    width: 30px;
    height: 30px
}

.review__body-title span {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #2c2c2c
}

.review__body-span {
    font-size: 56px;
    font-weight: 600;
    line-height: 58.8px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000
}

.review__body .splide {
    margin: 20px 90px 0;
}

.review__body .splide .splide__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.review__body .splide .splide__arrow {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    border: 2px solid #2c2c2c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.review__body .splide .splide__arrow svg {
    fill: none;
    width: 20px;
    height: 15px
}

.review__body .splide .splide__arrow:hover {
    opacity: 1
}

.review__body .splide .splide__arrow--next {
    right: -90px
}

.review__body .splide .splide__arrow--prev {
    left: -90px
}

.review__body-slide {
    /* width: 540px !important; */
    border: 1px solid var(--grey-40, rgba(179, 179, 179, 0.4));
    background: rgba(255, 255, 255, .2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* margin-right: 20px !important; */
    padding: 24px 24px 48px;
}

.review__body-slide-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.review__body-slide-top-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px
}

.review__body-slide-top-info img {
    width: 86px;
    height: 86px
}

.review__body-slide-top-info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.review__body-slide-top-info-text span {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    color: #2c2c2c
}

.review__body-slide-top-info-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c
}

.review__body-slide-top-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.review__body-slide-top-rating span {
    font-size: 20px;
    font-weight: 600;
    line-height: 27.98px;
    text-align: center;
    color: #2c2c2c
}

.review__body-slide-top-rating-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.review__body-slide-top-rating-items img {
    width: 11px;
    height: 11px
}

.review__body-slide-bot {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c
}

@media (max-width: 1440px) {
     .review {
        width: 100%;
        padding: 60px 0px
    }

    .review__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 60px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .review__body-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px
    }

    .review__body-title img {
        width: 30px;
        height: 30px
    }

    .review__body-title span {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        color: #2c2c2c
    }

    .review__body-span {
        font-size: 56px;
        font-weight: 600;
        line-height: 58.8px;
        letter-spacing: -0.02em;
        text-align: center;
        color: #000
    }

    .review__body .splide {
        margin: 20px 90px 0;
    }

    .review__body .splide .splide__arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .review__body .splide .splide__arrow {
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0);
        border-radius: 50%;
        border: 2px solid #2c2c2c;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        opacity: .5;
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }

    .review__body .splide .splide__arrow svg {
        fill: none;
        width: 20px;
        height: 15px
    }

    .review__body .splide .splide__arrow:hover {
        opacity: 1
    }

    .review__body .splide .splide__arrow--next {
        right: -90px
    }

    .review__body .splide .splide__arrow--prev {
        left: -90px
    }

    .review__body-slide {
        /* width: 540px !important; */
        border: 1px solid var(--grey-40, rgba(179, 179, 179, 0.4));
        background: rgba(255, 255, 255, .2);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        gap: 50px;
        /* margin-right: 20px !important; */
        padding: 24px 24px 48px;
    }

    .review__body-slide-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%
    }

    .review__body-slide-top-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px
    }

    .review__body-slide-top-info img {
        width: 86px;
        height: 86px
    }

    .review__body-slide-top-info-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px
    }

    .review__body-slide-top-info-text span {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        color: #2c2c2c
    }

    .review__body-slide-top-info-text p {
        font-size: 16px;
        font-weight: 500;
        line-height: 19.2px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c
    }

    .review__body-slide-top-rating {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px
    }

    .review__body-slide-top-rating span {
        font-size: 20px;
        font-weight: 600;
        line-height: 27.98px;
        text-align: center;
        color: #2c2c2c
    }

    .review__body-slide-top-rating-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px
    }

    .review__body-slide-top-rating-items img {
        width: 11px;
        height: 11px
    }

    .review__body-slide-bot {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.2px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c
    }
}


@media (max-width: 640px) {
      .review {
        width: 100%;
        padding: 60px 0px
    }

    .review__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .review__body-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px
    }

    .review__body-title img {
        width: 15px;
        height: 15px
    }

    .review__body-title span {
        font-size: 12px;
        font-weight: 600;
        line-height: 14px;
        text-align: left;
        color: #2c2c2c
    }

    .review__body-span {
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: -0.02em;
        text-align: center;
        color: #000
    }

    .review__body .splide {
        width: 100%;
        margin: 20px 90px 0;
    }

    .review__body .splide .splide__arrows {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: none;
    }

    .review__body .splide .splide__arrow {
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 0);
        border-radius: 50%;
        border: 2px solid #2c2c2c;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        opacity: .5;
        -webkit-transition: all .3s ease;
        transition: all .3s ease
    }

    .review__body .splide .splide__arrow svg {
        fill: none;
        width: 20px;
        height: 15px
    }

    .review__body .splide .splide__arrow:hover {
        opacity: 1
    }

    .review__body .splide .splide__arrow--next {
        right: -40px
    }

    .review__body .splide .splide__arrow--prev {
        left: -40px
    }

    .review__body-slide {
        border: 1px solid var(--grey-40, rgba(179, 179, 179, 0.4));
        background: rgba(255, 255, 255, .2);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 36px 24px;
    }

    .review__body-slide-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        display: flex;
        width: 100%
    }

    .review__body-slide-top-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
        flex-direction: column;
    }

    .review__body-slide-top-info img {
        width: 48px;
        height: 48px
    }

    .review__body-slide-top-info-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }

    .review__body-slide-top-info-text span {
        font-size: 16px;
        font-weight: 600;
        line-height: 18px;
        text-align: left;
        color: #2c2c2c
    }

    .review__body-slide-top-info-text p {
        font-size: 14px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c
    }

    .review__body-slide-top-rating {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px
    }

    .review__body-slide-top-rating span {
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        text-align: center;
        color: #2c2c2c
    }

    .review__body-slide-top-rating-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 5px
    }

    .review__body-slide-top-rating-items img {
        width: 11px;
        height: 11px
    }

    .review__body-slide-bot {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: -0.02em;
        text-align: center;
        color: #2c2c2c
    }
}