 
            .hero {
            padding-top: 200px;
            padding-bottom: 200px;
            background-image: url("<?php echo get_template_directory_uri(); ?>/img/qwerty.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }
           .hero__container {
              position: relative;
              display: flex;
              justify-content: center;
              align-items: center;
              flex-direction: column;
              gap: 40px;
            }

            .hero__title {
              margin: 0;
              text-align: center;
              font-weight: 500;
              font-size: 64px;
              line-height: 1;
              letter-spacing: -0.02em;
              color: var(--blue);
              white-space: pre-line;
            }

            .hero__title span {
              color: var(--black);
            }

            .hero__descr {
              font-weight: 400;
              font-size: 20px;
              line-height: 120%;
              letter-spacing: -0.02em;
              text-align: center;
              white-space: pre-line;
              color: #2c2c2c;
            }


            @media (max-width: 1240px) {
              .hero {
                padding-top: 120px;
                padding-bottom: 120px;
                background-position: center;
              }

              .hero__title {
                max-width: 100%;
                font-size: 52px;
              }

              .hero__descr {
                font-size: 18px;
              }

              .hero__container {
                flex-direction: column;
                align-items: flex-start;
                gap: 40px;
              }

              .hero__block-container {
                position: static;
                display: flex;
                gap: 20px;
                justify-content: flex-start;
                align-items: flex-start;
                grid-template-areas: none;
              }

              .hero-block:first-child,
              .hero-block:last-child {
                position: static;
              }
            }

            @media (max-width: 768px) {
              .hero {
                padding-top: 80px;
                padding-bottom: 80px;
                background-size: auto;
              }

              .hero__title {
                font-family: "Hero New", sans-serif;
                font-weight: 600;
                font-size: 40px;
                line-height: 100%;
                letter-spacing: -0.02em;
                max-width: 100%;
                text-align: left;
              }

              .hero__descr {
                font-size: 22px;
                line-height: 1.3;
                text-align: left;
              }

              .hero__container {
                flex-direction: column;
                gap: 30px;
              }

              .hero__block-container {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 35px;
                justify-content: flex-start;
              }

              .hero-block {
                width: calc(47% - 8px);
                padding: 20px 16px;
                backdrop-filter: blur(60px);
              }

              .hero-block img {
                width: 64px;
                height: 62px;
                margin-bottom: 50px;
              }

              .hero-block p {
                font-family: "Hero New", sans-serif;
                font-weight: 500;
                font-size: 14px;
                line-height: 120%;
                letter-spacing: 0;
              }

              .hero-block:last-child {
                rotate: 8deg;
              }
            }


            .splide__pagination {
              display: none;
            }


            .table__block {
              position: relative;
            }



/* New Stage Section */
.new__stage_body-block {
    padding-top: 100px;
    gap: 20px;
    padding-bottom: 60px;
}

.new__stage__btn-footer {
    display: flex;
    justify-content: center;
}
.new__stage-block {
    display: flex;
    height: 430px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px;
    position: relative;
    gap: 60px;
    min-width: 300px !important;
    min-height: min-content;
    border-radius: 15px;
       -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Стандартный синтаксис */
}

.new__stage-block:nth-child(1) {
    background-color: #EDEEFF;
}

.new__stage-block:nth-child(2) {
    background-color: #FFFFFF;
}

.new__stage-block:nth-child(3) {
    background-color: #B3B3B31A;
}

.new__stage-block:nth-child(4) {
    background-color: #FFFFFF;
}

.new__stage-block:nth-child(5) {
    background-color: #EDEEFF;
}

.new__stage-block:nth-child(6) {
    background-color: #B3B3B31A;
}

.new__stage-block:nth-child(7) {
    background-color: #EDEEFF;
}

.new__stage-block-img {
    width: auto;
    height: 100px !important;
    position: absolute;
    top: -46px;
    right: 20px;
    overflow: visible;
}

.new__stage-block-number {
    color: rgba(0, 54, 246, 0.2) !important;
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    background-color: transparent !important;
}

.new__stage-block-text {
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.new__line {
    height: 0px;
    background: #2C2C2C66;
    width: 50%;
}

.new__stage-block-text span {
    white-space: pre-wrap;
    color: var(--blue) !important;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: -0.2px;
    font-weight: 600;
    height: 80px;
    display: flex;
    align-items: flex-end;
}

.new__stage-block-text p {
    margin: 0;
    font-weight: 400;
    color: #2C2C2C99;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.2px;
    opacity: 0; /* Начальное состояние — невидим */
    transform: translateY(20px); /* Смещение вниз для плавного появления */
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s; /* Задержка 2 секунды */
}

/* Когда родительский блок видим — текст появляется */
.new__stage-block-text.is-visible p {
    opacity: 1;
    transform: translateY(0);
}


.new__main-title h2 {
    margin: 0;
    color: #2C2C2C;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.2px;
}

.new__main-title h2 > span {
    color: #5665f2;
}

.text-center {
    text-align: center;
}




/* Small Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {



    /*.cases__splide-item {*/
    /*    max-width: 85vw;*/
    /*}*/



    .new__main-title h2 {
        font-size: 24px;
    }

    .btn__tabs-container {
        width: 255px;
    }

    .new__stage__btn-footer {
        justify-content: flex-start;
        margin-bottom: 30px;
    }

}



   .goals {
              padding: 100px 0;
              position: relative;
            }

            .goals::before {
              content: "";
              position: absolute;
              top: 67%;
              left: 31%;
              width: 100%;
              height: 59%;
              background-image: url(../img/bg/creative-bg-image.png);
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center;
              transform: translate(-50%, -50%) rotate(22deg);
              z-index: 0;
            }

            .goals__container {
              display: grid;
              grid-template-columns: 40% 60%;
            }

            .goals__header {
              margin: 0;
              white-space: pre-line;
              font-weight: 600;
              font-size: 40px;
              line-height: 120%;
              letter-spacing: -0.02em;
            margin-bottom: 40px !important;
            }

            .goals__list {
              display: flex;
              flex-direction: column;
              gap: 10px;
            }

            .goals__item {
              display: flex;
              background-color: #EDEEFF;
              padding: 35px 30px;
              gap: 30px;
              border-radius: 20px;
              transition: all 0.6s ease;
              position: relative;
              overflow: hidden;
              z-index: 1;
              justify-content: space-between;
            }

            .goals__item::before {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(90deg, #6984E0 0%, #9E9FE2 100%);
              transition: all 0.6s ease;
              z-index: -1;
            }

            .goals__item:hover {
              color: #EDEEFF;
            }

            .goals__item:hover::before {
              left: 0;
            }

            .goals-info__block {
              display: flex;
              gap: 30px;
            }

            .goals-info__block-number {
              display: flex;
              width: 105px;
               white-space: nowrap;
            }

            .goals-info__block-number span {
              color: rgba(4, 4, 4, 0.2);
            }

                 .goals-info__block-title {
font-weight: 500;
font-size: 24px;
line-height: 120%;
letter-spacing: -2%;
margin-bottom: 20px;
            }

            .goals-info__block-description {
              white-space: normal;
            }

            .lightning {
              width: 30px;
              opacity: 40%;
              height: 30px;
            }




            /* Tablet styles (768px - 991px) */
            @media (max-width: 991px) {


              .goals {
                padding: 80px 0;
              }

              .goals__container {
                grid-template-columns: 1fr;
                gap: 40px;
              }

              .goals__header {
                font-size: 32px;
                white-space: normal;
                text-align: center;
              }

              .goals__item {
                padding: 25px;
                gap: 20px;

              }

              .goals-info__block {
                gap: 20px;
                width: 100%;
                display: flex;

                flex-direction: column;
              }

              .goals-info__block-number {
                width: 80px;
              }
            }

            /* Mobile styles (up to 767px) */
            @media (max-width: 767px) {

                
              .goals {
                padding: 60px 0;
              }

              .goals__header {
                font-size: 24px;
                line-height: 120%;
                letter-spacing: -2%;
                white-space: normal;
                margin-bottom: 20px;
                text-align: left;
              }

              .goals__list {
                gap: 20px;
              }

              .goals__item {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
              }

              .goals-info__block {
                width: 100%;
                gap: 80px;
              }

              .goals-info__block-number {
                width: auto;
                min-width: 60px;
                font-family: Hero New;
                font-size: 20px;
                line-height: 120%;
                letter-spacing: -2%;

              }

              .lightning {
                align-self: flex-end;
                margin-top: -10px;
              }

              /* Lightning icon positioning */
              .goals__item>.lightning {
                position: absolute;
                top: 20px;
                right: 20px;
              }

              .goals-info__block-description {
                margin-top: 10px;
                font-size: 20px;
                line-height: 120%;
                letter-spacing: -2%;

              }
            }
    .addition {
              padding: 60px 0;
            }


            .addition__container {

              border-radius: 20px;
              background-color: #D9E1FE;
            }

            .addition__body {
              padding: 60px 0;
              display: flex;
              align-items: center;
              flex-direction: column;
              justify-content: center;
            }

            .addition__text {
              white-space: pre-line;
            }

            .addition__body-title {
              font-weight: 600;
              font-size: 20px;
              line-height: 120%;
              letter-spacing: 0%;
              color: #4A5FE6;
              display: flex;
              gap: 10px;
              align-items: center;
              margin-bottom: 30px;
            }

            .addition__body-title img {
              width: 16px;
              height: 27px;
            }

            .addition__text span {
              color: #4A5FE6;
              font-weight: 500;
            }

            @media (max-width: 768px) {
              .addition__container {
                width: 90%;
                padding: 0 15px !important;
              }

              .addition__text {
                text-align: center !important;
                font-size: 16px !important;
                  white-space: normal;
              }

            }



            .optimization__main-body-block {
    position: relative;
}

.services__container {
    position: page;
}

.optimization__block {
    display: flex;
    position: relative;
    height: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    padding: 56px 20px 0;
    border-radius: 25px;
    gap: 20px;
    min-width: 520px !important;
    min-height: min-content;
    transition: background 0.3s ease, color 0.3s ease;
}

.optimization__block * {
    transition: color 0.3s ease;
}

.optimization__block:not(:first-child):before {
    position: absolute;
    content: "";
    height: 70%;
    width: 1px;
    left: -25px;
    background-color: #C4C4C4;
}

.optimization__block-number {
    color: #2C2C2C66 !important;
    font-weight: 500;
    font-size: 100px;
    line-height: 70%;
    background-color: transparent !important;
}

.optimization__block-text {
    gap: 30px;
    display: flex;
    flex-direction: column;
    user-select: none;
}

.optimization__line {
    height: 1px;
    background: #2C2C2C66;
    width: 50%;
}

.optimization__block-text span {
    white-space: pre-wrap;
    color: #2C2C2C66 !important;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: -0.2px;
    font-weight: 600;
    height: 80px;
    display: flex;
    align-items: flex-end;
}

.optimization__block-text p {
    margin: 0;
    font-weight: 400;
    color: #2C2C2C66;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.2px;
}

.optimization__main-title h2 {
    margin: 0;
    color: #2C2C2C;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.2px;
}

.optimization__main-title h2 > span {
    color: #5665f2;
}


.optimization__block:hover {
    background: white; /* Фон становится белым */
}

.optimization__block:hover .optimization__block-text span,
.optimization__block:hover .optimization__block-text p {
    color: #2C2C2C !important; /* Весь текст становится чёрным */
}

.optimization__block:hover .optimization__block-number {
    color: #4A5FE6 !important; /* Число становится синим (#4A5FE6) */
}

.optimization__block:hover .optimization__line {
    background: #2C2C2C; /* Линия тоже становится чёрной */
}


@media (max-width: 768px) {
  
    .mob-about__us-header {
        display: block;
    }

    .about__us-header-title-desk {
        display: none;
    }

    .us-header-title-desk {
        display: none;
    }


    .about__us-number-header {
        flex-direction: column;
        align-items: flex-start;
        grid-column: 1 / 5;
        grid-row: 1 / 2;

    }
    .about__us-header-title {
        grid-column: 1 / 5;
        grid-row: 2 / 3;
        font-size: 27px;
    }

    .about__us-number-header h2 {
        margin-bottom: 40px;
    }

    .us-number-stats-container-left {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        grid-column: 1 / 3;
        grid-row: 2 / 7;
    }

    .us-number-stats-container-right {
        margin-top: 65px;
        flex-direction: column-reverse;
        gap: 40px;
        grid-column: 3 / 5;
        grid-row: 4 / 7;
    }

    .us-number-stats-container-left::after {
        width: 200%;
        left: 0;
        bottom: 130px;
    }

    .about__us-number {
        margin: 60px 0;
    }

    .us-number-stats-container-right::before {
        content: "";
        display: block;
        position: absolute;
        width: 200%;
        height: 1px;
        bottom: 95px;
        background-color: #2c2c2c45;
    }
    .us-number-stats-container-right::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #2c2c2c45;
        margin: 20px 0;
        bottom: -50px;
        right: 0;
    }

    .us-number-stats-container-left::before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #2c2c2c45;
        top: -30px;
    }

    .number {
        display: flex;
        font-size: 56px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .description {
        font-size: 14px;
    }


}



.optimization__body-block > .splide__arrows {
    right: 0px !important;
    top: -65px !important;
}

.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: 230px;
        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;
        border-radius: 20px;

        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;
        height: 230px;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 20px;
    }

    .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: auto;
    }

    .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 {
        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-span span {
    color: #4A5FE6;
}

.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
    }
}

.keys__subtitle {
    display: flex;
    align-items: center;
}

.keys__subtitle h2 {
    margin: 0;
}

.choose__img {
    display: none !important;
}

.choose__body-block-start svg {
    display: none;
}

.choose__body-block-start {
    white-space: normal !important;
}









@media (max-width: 768px) {

    .catalog__body-block-projects .splide__arrows {
        top: -55px;
        right: 0;
    }

    .stage__body-block .splide__arrow {
        width: 32px;
        height: 32px;
    }
    .stage__body-block .splide__arrows {
        top: -35px;
        right: 0;
    }
    .optimization__line-title {
        width: 100%;
        height: 1px;
        background-color: #04040433;
        margin: 10px 0;
    }

    .optimization__small-title {
        text-align: left;
        font-size: 18px;
    }

    .optimization__body-block {
        padding-top: 0px;
        gap: 40px;
    }

    .optimization__block {
        height: 310px;
        padding: 20px 12px 19px 12px;
        gap: 10px;
        min-width: 300px !important;
        min-height: 400px;
        flex-direction: column;
    }

    .optimization__block * {
        transition: color 0.3s ease;
    }
    .about__us-container {
        display: block
;
        grid-template-rows: repeat(7, 100px);
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
    }

    

    .optimization__block-number {
        font-size: 64px;
        padding: 10px 0px !important;
    }

    .optimization__block-text {
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .optimization__block-text span {
        font-size: 24px;
        height: min-content;
    }

    .optimization__block-text p {
        font-size: 14px;
    }




}



/* 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__title span {
    color: #4A5FE6;
}

.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;

}


@media (max-width: 768px) {

    .what-ai-container {
        display: block;
}
}



/* Yandex-map styles */

/* Основная секция сертификации */
.sertification {
    padding: 100px 0;
}

/* Контейнер внутри секции */
.sertification-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Заголовочный блок с текстом */
.sertification-content {
    display: flex;
    gap: 60px;
    flex-direction: column;

}

/* Описание под заголовком */
.sertification-descr {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;

}

/* Спан внутри описания */
.sertification-descr span {
    background-color: #4A5FE6;
    color: #fff;
    border-radius: 20px;
    rotate: -2.5deg;
    padding: 7px 20px;
    font-size: 16px;
    display: inline-block;
    margin-left: 10px;
}

.sertification-block__image {
       display: flex;
    justify-content: center;
}

/* Изображение сертификации */
.sertification-block img {
        max-height: 505px;
}

@media  (max-width: 768px) {
    .sertification-block {
        display: flex;
        flex-direction: column;
    }

    .sertification-descr {
        font-size: 16px;
    }

    .sertification-content {
        gap: 10px;
    }

    .sertification-block__image {
        rotate: -6deg;
    }

    .sertification-btn {
        margin-top: 20px;
    }
}

.free {
    padding-top: 100px;
}


.free__body {
    position: relative;
    padding: 97px 75px;
    border-radius: 11px;
}

.free__body img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 11px;
}

.free__body-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
}

.free__body-wrap h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f7f7f7
}

.free__body-wrap-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
}

.free__body-wrap p {
    white-space: pre-line;
    font-size: 20px;
}

.free__body-wrap a {
    width: fit-content;
}

.free__body-wrap-form-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.free__body-wrap-form-main input {
    width: 260px;
    height: 54px;
    background: #f7f7f7;
    border-radius: 24px;
    border: 1px solid rgba(44, 44, 44, .4);
    padding-left: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c
}

.free__body-wrap-form-main button {
    width: 260px;
    height: 54px;
    background: #ffc702;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #2c2c2c;
    border-radius: 24px
}

.free__body-wrap-form .checkbox {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.free__body-wrap-form .checkbox-label {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.free__body-wrap-form .checkbox-label p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f7f7f7
}

.free__body-wrap-form .checkbox-label p a {
    text-decoration: underline
}

.free__body-wrap-form .checkbox-view {
    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;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    -webkit-transition: .3s;
    transition: .3s
}

.free__body-wrap-form .checkbox-icon {
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s
}

.free__body-wrap-form .checkbox:checked + .checkbox-view {
    background-color: rgba(0, 0, 0, 0)
}

.free__body-wrap-form .checkbox:checked + .checkbox-view .checkbox-icon {
    opacity: 1
}


@media (max-width: 768px) {
    .free__body {
        position: relative;
        padding: 40px 20px;
        border-radius: 22.5px
    }

    .free__body img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 22.5px
    }

    .free__body-wrap {
        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
    }

    .free__body-wrap h2 {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #f7f7f7
    }

    .free__body-wrap-form {
        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
    }

    .free__body-wrap-form-main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .free__body-wrap-form-main input {
        width: 100%;
        height: 38px;
        background: #f7f7f7;
        border-radius: 12px;
        border: 1px solid rgba(44, 44, 44, .4);
        padding-left: 15px;
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c
    }

    .free__body-wrap-form-main button {
        width: 100%;
        height: 38px;
        background: #ffc702;
        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;
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #2c2c2c;
        border-radius: 12px
    }

    .free__body-wrap-form .checkbox {
        position: absolute;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }

    .free__body-wrap-form .checkbox-label {
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .free__body-wrap-form .checkbox-label p {
        font-size: 10px;
        font-weight: 400;
        line-height: 12px;
        letter-spacing: -0.02em;
        text-align: left;
        color: #f7f7f7
    }

    .free__body-wrap-form .checkbox-label p a {
        text-decoration: underline
    }

    .free__body-wrap-form .checkbox-view {
        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;
        min-width: 18px;
        min-height: 18px;
        width: 18px;
        height: 18px;
        margin-right: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: #fff;
        -webkit-transition: .3s;
        transition: .3s
    }

    .free__body-wrap-form .checkbox-icon {
        opacity: 0;
        -webkit-transition: .3s;
        transition: .3s
    }

    .free__body-wrap-form .checkbox:checked + .checkbox-view {
        background-color: rgba(0, 0, 0, 0)
    }

    .free__body-wrap-form .checkbox:checked + .checkbox-view .checkbox-icon {
        opacity: 1
    }

}