@charset "UTF-8";

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s ease-in-out;
    font-family: "Gilroy";
    transition: 0.2s ease-in-out;
}

body.noscroll {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

.wrapper {
    overflow-x: hidden;
}

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

.btn-reset {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.input-reset {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    transition: background 0.5s ease;
}

.header.scrolled {
    background: #202020;
}

.header__inner {
    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;
    padding: 24px 0;
}

@media (max-width: 768px) {
    .header__inner {
        padding: 12px 0;
    }
}

.header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .header__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header__list-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    /* 157.143% */
    text-transform: uppercase;
    position: relative;
}

.header__list-link::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: #e3792d;
}

.header__list-link:hover::before {
    width: 30%;
}

.header__list-link:hover {
    color: #e3792d;
}

.header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    background: #ed863d;
    gap: 10px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .header__btn {
        margin-top: 48px;
    }
}

@media (max-width: 440px) {
    .header__btn {
        width: 100%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 120px;
        padding: 12px 24px;
        font-weight: 300;
    }
}

.header__btn:hover {
    background: #e3792d;
}

@media (max-width: 768px) {
    .header__logo img {
        width: 62px;
    }
}

.header__menu {
    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: 67%;
}

@media (max-width: 1080px) {
    .header__menu {
        width: 73%;
    }
}

@media (max-width: 900px) {
    .header__menu {
        width: 77%;
    }
}

@media (max-width: 768px) {
    .header__menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: #202020;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 112px;
        visibility: none;
        pointer-events: none;
        opacity: 0;
    }

    .header__menu.active {
        visibility: 1;
        pointer-events: all;
        opacity: 1;
    }
}

@media (max-width: 440px) {
    .header__menu {
        padding-top: 96px;
    }
}

.btn__burger {
    display: none;
}

@media (max-width: 768px) {
    .btn__burger {
        display: block;
    }
}

.hero {
    position: relative;
    height: 1000px;
}

@media (max-width: 440px) {
    .hero {
        height: 800px;
    }
}

.hero__content {
    max-width: 800px;
    padding-top: 268px;
}

@media (max-width: 1500px) {
    .hero__content {
        position: relative;
        left: 6%;
    }
}

@media (max-width: 1280px) {
    .hero__content {
        max-width: 700px;
    }
}

@media (max-width: 1080px) {
    .hero__content {
        max-width: 620px;
        left: 8%;
    }
}

@media (max-width: 1080px) {
    .hero__content {
        max-width: 580px;
    }
}


@media (max-width: 840px) {
    .hero__content {
        max-width: 540px;
    }
}

@media (max-width: 768px) {
    .hero__content {
        left: 19.2%;
        padding-top: 318px;
    }
}

@media (max-width: 640px) {
    .hero__content {
        left: 18.2%;
        padding-top: 318px;
        max-width: 400px;
    }
}

@media (max-width: 500px) {
    .hero__content {
        left: 12.2%;
        max-width: 320px;
    }
}

@media (max-width: 440px) {
    .hero__content {
        left: 0;
        padding-top: 162px;
        max-width: auto;

    }
}

.hero__content-title {
    color: #fff;
    font-size: clamp(3rem, -0.188rem + 6.64vw, 5.125rem);
    font-weight: 700;
    line-height: 129.268%;
    /*  */
    text-transform: uppercase;
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 768px) {
    .hero__content-title {
        font-size: clamp(2.5rem, 1.829rem + 2.44vw, 3rem);
        line-height: 120%;
        max-width: 492px;
    }
}

.hero__content-title span {
    color: #ed863d;
}

.hero__content-subtitle {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    max-width: 660px;
    margin-top: 16px;
    margin-bottom: 60px;
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 768px) {
    .hero__content-subtitle {
        max-width: 500px;
        margin-bottom: 52px;
    }
}

@media (max-width: 440px) {
    .hero__content-subtitle {
        font-size: 16px;
        margin-top: 18px;
        max-width: 360px;
        line-height: 149%;
        margin-bottom: 48px;
    }
}

.hero__content-btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.56px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #fff;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.hero__content-btn:hover {
    background: #ed863d;
    border: 1px solid #ed863d;
}

@media (max-width: 768px) {
    .hero__content-btn {
        padding: 12px 18px;
    }
}

@media (max-width: 440px) {
    .hero__content-btn {
        font-weight: 500;
        padding: 12px 24px;
        width: 100%;
    }
}

.hero__list {
    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;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 4%;
}

@media (max-width: 1500px) {
    .hero__list {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero__list {
        left: 22px;
        gap: 56px;
    }
}

@media (max-width: 440px) {
    .hero__list {
        display: none;
    }
}

.hero__list-link:hover {
    opacity: 0.4;
}

.hero__img {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30% 70%;
    grid-template-columns: 30% 70%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero__img {
        -ms-grid-columns: 34% 66%;
        grid-template-columns: 34% 66%;
    }
}

@media (max-width: 440px) {
    .hero__img {
        -ms-grid-columns: 0 100%;
        grid-template-columns: 0 100%;
    }
}

.hero__img-item {
    background: #202020;
}

.hero__img-active {
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    height: 100%;
}

@media (max-width: 440px) {
    .hero__img-active {
        background-position: left;
    }
}

.hero__list-item {
    -webkit-transition: none;
    transition: none;
}

.about {
    background: #e3e8eb;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .about {
        padding: 48px 0 120px 0;
    }
}

@media (max-width: 440px) {
    .about {
        padding: 48px 0;
    }
}

.about__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 100px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .about__blocks {
        gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 440px) {
    .about__blocks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 32px;
    }
}

.about__blocks-item {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    -webkit-transition: none;
    transition: none;
}

.about__blocks-subtitle {
    color: #202020;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 640px) {
    .about__blocks-subtitle {
        font-size: 14px;
    }

    .about__blocks {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 34px;
    }
}

@media (max-width: 440px) {
    .about__blocks {
        gap: 20px;
    }
}

.about__blocks-item.active .about__blocks-subtitle {
    color: #ed863d;
}

.devoted {
    position: relative;
    bottom: 40px;
}

.devoted * {
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 440px) {
    .devoted {
        bottom: 0;
        padding: 68px 0;
    }
}

.devoted__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 70px;
}

@media (max-width: 1280px) {
    .devoted__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .devoted__inner {
        gap: 56px;
    }
}

.devoted__inner .devoted-img {
    position: relative;
    right: 110px;
    bottom: 20px;
    -webkit-transition: none;
    transition: none;
    opacity: 0;
}

@media (max-width: 1280px) {
    .devoted__inner .devoted-img {
        right: 50px;
    }
}

@media (max-width: 1440px) {
    .devoted__inner .devoted-img {
        right: 0;
        bottom: 0;
    }
}


@media (max-width: 1280px) {
    .devoted__inner .devoted-img {
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }

    .devoted__content {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .devoted__inner .devoted-img {
        bottom: 32px;
    }
}

@media (max-width: 440px) {
    .devoted__inner .devoted-img {
        display: none;
    }
}

.devoted__content {
    margin-top: 174px;
}

@media (max-width: 1280px) {
    .devoted__content {
        margin-top: 82px;
    }
}

@media (max-width: 768px) {
    .devoted__content {
        margin-top: 0;
    }
}

.devoted__content_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 42px;
}

@media (max-width: 768px) {
    .devoted__content_list {
        gap: 28px;
    }
}

.devoted__content_list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -webkit-transition: none;
    transition: none;
    opacity: 0;
}

.devoted__content_list-item .sep {
    position: relative;
    top: 4px;
}

.devoted__content_list-item span {
    color: #111;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.devoted__content_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 260px;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .devoted__content_info {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        margin-top: 16px;
        margin-left: 30px;
    }
}

.devoted__content_info-item {
    color: #111;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}

.devoted__content_info-item:nth-child(2) {
    margin-left: 20px;
}

.devoted__content_info-item::before {
    position: absolute;
    content: "";
    left: -16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #111;
    border-radius: 100px;
}

.devoted__content-title {
    color: #111;
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 60px;
    opacity: 0;
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 768px) {
    .devoted__content-title {
        font-size: 32px;
        margin-bottom: 38px;
    }
}

@media (max-width: 440px) {
    .devoted__content-title {
        font-size: 28px;
        margin-bottom: 38px;
    }
}

.devoted__content-title span {
    color: #ed863d;
}

.provide {
    margin-top: 124px;
}

@media (max-width: 440px) {
    .provide {
        margin-top: 23px;
        gap: 64px;
    }
}

.provide__title {
    color: #111;
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    opacity: 0;
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 440px) {
    .provide__title {
        font-size: 28px;
    }
}

.provide__title span {
    color: #ed863d;
}

.provide__blosks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 94px;
    gap: 80px;
    padding-left: 32px;
}

@media (max-width: 1280px) {
    .provide__blosks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        padding-left: 0;
        align-items: center;
    }
}

@media (max-width: 440px) {
    .provide__blosks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 78px;
    }
}

.provide__blosks-item {
    position: relative;
    padding: 4px;
    background-color: #6f6f6f;
    min-height: 170px;
    max-width: 612px;
    -webkit-transition: none;
    transition: none;
    width: 100%;
    opacity: 0;
    position: relative;
}

.provide__blosks-item::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 32px;
    height: 32px;
    background-color: #ed863d;
}

@media (max-width: 1280px) {
    .provide__blosks-item {
        width: 100%;
        max-width: 100%;
    }
}

.provide__blosks-item .content {
    background-color: #fff;
    min-height: 166px;
    padding: 40px;
    position: relative;
    z-index: 10;
}

@media (max-width: 440px) {
    .provide__blosks-item .content {
        padding: 34px 40px 35px 32px;
        min-height: 245px;
    }
}

.provide__blosks-count {
    color: #ed863d;
    leading-trim: both;
    text-edge: cap;
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
    position: absolute;
    left: -60px;
    top: -60px;
    z-index: -1;
    background-color: #fff;
    padding: 20px;
}

@media (max-width: 440px) {
    .provide__blosks-count {
        font-size: 49.412px;
        left: -37px;
        top: -56px;
    }
}

.provide__blosks-title {
    color: #111;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.provide__blosks-subtitle {
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.provide .start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 64px;
}

@media (max-width: 1280px) {
    .provide .start {
        bottom: 0;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
}

.provide .end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 64px;
    position: relative;
    bottom: 60px;
}

@media (max-width: 1280px) {
    .provide .end {
        bottom: 0;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
}

.our {
    background: #202020;
    padding: 153px 0;
    margin-top: 240px;
    position: relative;
}

@media (max-width: 768px) {
    .our {
        padding: 80px 0;
    }
}

@media (max-width: 440px) {
    .our {
        padding: 64px 0;
        margin-top: 290px;
    }
}

.our__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 100px 1fr;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 100px;
}

@media (max-width: 940px) {
    .our__inner {
        gap: 200px;
    }
}

@media (max-width: 768px) {
    .our__inner {
        gap: 0;
        -ms-grid-columns: 1.3fr 0 1fr;
        grid-template-columns: 1.3fr 1fr;
    }
}

@media (max-width: 768px) {
    .our__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .our__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.our__content {
    max-width: 580px;
}

.our__content-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 36px;
    opacity: 0;
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 768px) {
    .our__content-title {
        font-size: 32px;
    }
}

@media (max-width: 440px) {
    .our__content-title {
        font-size: 28px;
    }
}

.our__content-title span {
    color: var(--Orange, #ed863d);
}

.our__content-subtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /*  */
    -webkit-transition: none;
    transition: none;
    opacity: 0;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .our__content-subtitle {
        margin-bottom: 10px;
    }
}

.our__content-subtitle:last-child {
    margin-bottom: 0;
}

.our__content-btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.56px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 12px 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .our__content-btn {
        margin-top: 22px;
        padding: 12px 24px;
    }
}

@media (max-width: 440px) {
    .our__content-btn {
        width: 100%;
        font-weight: 400;
    }
}

.our__content-btn:hover {
    border: 1px solid #e3792d;
    background: #e3792d;
}

.our__img {
    position: absolute;
    right: 0;
    top: -233px;
    width: 480px;
    height: 995px;
    background-color: gray;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
}


@media (max-width: 860px) {
    .our__img {
        width: 380px;
        height: 895px;
    }
}

@media (max-width: 768px) {
    .our__img {
        right: -20px;
        width: 294px;
        height: 678px;
    }
}

@media (max-width: 640px) {
    .our__img {
        display: none;
    }
}

.our__img-ph {
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 220px;
    left: 0;
    right: 0;
    top: -220px;
    position: absolute;
}

.our__img-ph::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 10px;
    width: 100%;
    height: 100px;
    z-index: -1;
    -webkit-box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
}

@media (max-width: 640px) {
    .our__img-ph {
        display: block;
    }
}

.carousel {
    padding: 160px 0 222px 0;
}

@media (max-width: 1280px) {
    .carousel {
        padding: 100px 0;
    }
}

@media (max-width: 440px) {
    .carousel {
        padding: 60px 0;
    }
}

.carousel__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 100px 1.5fr;
    grid-template-columns: 2fr 1.5fr;
    gap: 100px;
}

@media (max-width: 1080px) {
    .carousel__inner {
        -ms-grid-columns: 2fr 1.8fr;
        grid-template-columns: 2fr 1.8fr;
    }
}

@media (max-width: 940px) {
    .carousel__inner {
        -ms-grid-columns: 2fr 2.8fr;
        grid-template-columns: 2fr 2.8fr;
    }
}

@media (max-width: 840px) {
    .carousel__inner {
        -ms-grid-columns: 1.5fr 2.8fr;
        grid-template-columns: 1.5fr 2.8fr;
    }
}

@media (max-width: 640px) {
    .carousel__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.carousel__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 90px;
}

@media (max-width: 1080px) {
    .carousel__blocks {
        gap: 45px;
    }
}

@media (max-width: 940px) {
    .carousel__blocks {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

.carousel__blocks-item {
    -webkit-transition: none;
    transition: none;
    opacity: 0;
}

@media (max-width: 640px) {
    .carousel__blocks-item img {
        display: block;
        margin: 0 auto;
    }
}

.feedback {
    background: #e3e8eb;
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .feedback {
        padding-bottom: 100px;
    }
}

@media (max-width: 440px) {
    .feedback {
        padding: 64px 0;
    }
}

.feedback__title {
    color: #111;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 120px 0 40px 0;
}

@media (max-width: 768px) {
    .feedback__title {
        font-size: 32px;
        text-align: left;
        padding: 100px 0 32px 0;
    }
}

@media (max-width: 440px) {
    .feedback__title {
        padding-top: 0;
        padding-bottom: 32px;
    }
}

.feedback__title span {
    color: var(--Orange, #ed863d);
}

.feedback__blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1.34fr 40px 1fr;
    grid-template-columns: 1fr 1.34fr 1fr;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .feedback__blocks {
        display: none;
    }
}

.feedback__blocks-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-transition: none;
    transition: none;
}

.feedback__blocks-count {
    color: #111;
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
}

.feedback__blocks-name {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.feedback__blocks-subtitle {
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.feedback .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.feedback__blocks-item.active {
    border-radius: 2px;
    background: #ed863d;
    -webkit-box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .feedback__blocks-item.active {
        padding: 32px 20px;
    }
}

.feedback__blocks-item.active .feedback__blocks-subtitle {
    color: #fff;
}

.feedback__blocks-item.active .feedback__blocks-name {
    color: #fff;
}

.feedback__blocks-item.active .feedback__blocks-count {
    color: #fff;
}

.feedback__blocks-item.active .top path {
    fill: #fff;
}

.swiper-feedback {
    display: none;
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    .swiper-feedback {
        display: block;
    }
}

.swiper-feedback .swiper-slide {
    height: 288px;
}

.swiper-feedback .swiper-slide .feedback__blocks-item {
    padding: 32px 16px 32px 0;
}

.swiper-feedback .swiper-slide-prev {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    opacity: 0;
}

.swiper-feedback .feedback__blocks-item.active {
    padding: 32px 20px;
}

.swiper-feedback .buttons-swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 32px;
}

@media (max-width: 440px) {
    .swiper-feedback .buttons-swiper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.form {
    background: #202020;
    max-height: 700px;
    overflow: hidden;
}

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

.form__inner {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1.07fr;
    gap: 90px;
}

@media (max-width: 1280px) {
    .form__inner {
        -ms-grid-columns: 1.4fr 32px 2fr;
        grid-template-columns: 1.4fr 2fr;
        gap: 32px;
    }
}

@media (max-width: 840px) {
    .form__inner {
        -ms-grid-columns: 1.5fr 2fr;
        grid-template-columns: 1.5fr 2fr;
    }
}

@media (max-width: 640px) {
    .form__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.form__info {
    padding: 92px 0;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .form__info {
        padding-left: 0;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    .form__info {
        padding-left: 20px;
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

.form__info-title {
    color: var(--Orange, #ed863d);
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 16px;
}

@media (max-width: 840px) {
    .form__info-title {
        font-size: 32px;
    }
}

.form__info-title span {
    color: #fff;
}

.form__info-subtitle {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 40px;
    -webkit-transition: none;
    transition: none;
}

@media (max-width: 840px) {
    .form__info-subtitle {
        margin-bottom: 32px;
    }
}

.form__contact {
    max-width: 400px;
}

@media (max-width: 640px) {
    .form__contact {
        width: 100%;
        max-width: 100%;
    }
}

.form__contact label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form__contact-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    /* 157.143% */
    margin-bottom: 4px;
}

.form__contact-input {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
    background: transparent;
}

.form__contact-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-textarea {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px;
    height: 100px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
    resize: none;
    background: transparent;
}

.form__contact-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.form__contact-btn {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.56px;
    text-transform: uppercase;
    border-radius: 4px;
    background: #ed863d;
    border: 1px solid #ed863d;
    padding: 10px 24px;
    -webkit-transition: border 0.2s ease, background 0.2s ease;
    transition: border 0.2s ease, background 0.2s ease;
}

@media (max-width: 640px) {
    .form__contact-btn {
        width: 100%;
    }
}

.form__contact-btn:hover {
    border: 1px solid #fff;
    background: transparent;
}

.form__img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media (max-height: 768px) {
    .form__img {
        background-position: 36%;
    }
}

@media (max-width: 640px) {
    .form__img {
        display: none;
    }
}

.form__contact input {
    -webkit-transition: none;
    transition: none;
}

.form__contact textarea {
    -webkit-transition: none;
    transition: none;
}

.popup-aply-job {
    z-index: 1201;
    position: fixed;
    z-index: 30;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 40px 110px 60px 110px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    max-width: 563px;
}

@media (max-width: 768px) {
    .popup-aply-job {
        min-width: 563px;
    }
}

@media (max-width: 640px) {
    .popup-aply-job {
        width: 100%;
        bottom: 0;
        top: auto;
        min-width: auto;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        padding-left: 20px;
        padding-right: 20px;
        min-height: 400px;
    }
}

.popup-aply-job.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.wrapper {
    position: relative;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.wrapper.active::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 20;
}

.popup-aply-job-title {
    color: #111;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 40px;
}

@media (max-width: 640px) {
    .popup-aply-job-title {
        font-size: 28px;
        text-align: center;
    }
}

.popup-aply-job-title span {
    color: #ed863d;
}

.popup-aply-job-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (max-width: 440px) {
    .popup-aply-job-list {
        max-width: 340px;
        margin: 0 auto;
    }
}

.popup-aply-job-btn {
    color: #111;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 142.857%;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 318px;
    width: 100%;
    padding: 10px 24px;
    border-radius: 4px;
    border: 1px solid #111;
}

@media (max-width: 440px) {
    .popup-aply-job-btn {
        min-width: auto;
        max-width: 340px;
        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;
        text-align: center;
        font-weight: 500;
    }
}

.popup-aply-job-btn:hover {
    background-color: #ed863d;
    border: 1px solid #ed863d;
    color: #fff;
}

.btn-close-popup-apply-job {
    position: absolute;
    top: 16px;
    right: 16px;
}

.icon-right {
    display: none;
}

@media (max-width: 440px) {
    .icon-right {
        position: absolute;
        right: 12px;
        bottom: 12px;
        display: block;
    }
}

.popup-form-user {
    z-index: 1201;
    position: fixed;
    z-index: 31;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 60px 40px 40px 40px;
    -webkit-box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 6px 32px 0px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    max-height: 90%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .popup-form-user {
        min-width: 563px;
    }
}

@media (max-width: 640px) {
    .popup-form-user {
        width: 100%;
        bottom: 0;
        top: auto;
        min-width: auto;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

.popup-form-user.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.popup-form-user {
    /* твои стили... */
    scrollbar-width: thin;
    /* для Firefox */
    scrollbar-color: #ed863d rgba(0, 0, 0, 0.1);
    /* для Firefox */
}

@media (max-width: 640px) {
    .popup-form-user {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 56px;
    }
}

/* Chrome, Edge, Safari */
.popup-form-user::-webkit-scrollbar {
    width: 8px;
}

.popup-form-user::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.popup-form-user::-webkit-scrollbar-thumb {
    background-color: #ed863d;
    border-radius: 4px;
}

.popup-form-user-title {
    color: #111;
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}

@media (max-width: 640px) {
    .popup-form-user-title {
        font-size: 28px;
    }
}

.popup-form-user-subtitle {
    color: rgba(17, 17, 17, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* */
    margin-top: 8px;
    margin-bottom: 40px;
}

.popup-form-user-contact-title {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.popup-form-user-contact-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.popup-form-user-contact-action label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}

.popup-form-user-contact-label {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 157.143%;
    /*  */
}

.popup-form-user-contact-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    padding: 0px 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid rgba(17, 17, 17, 0.15);
}

.popup-form-user-contact-input::-webkit-input-placeholder {
    color: rgba(17, 17, 17, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
    /*  */
}

.popup-form-user-contact-input::-moz-placeholder {
    color: rgba(17, 17, 17, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
    /*  */
}

.popup-form-user-contact-input:-ms-input-placeholder {
    color: rgba(17, 17, 17, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
    /*  */
}

.popup-form-user-contact-input::-ms-input-placeholder {
    color: rgba(17, 17, 17, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
    /*  */
}

.popup-form-user-contact-input::placeholder {
    color: rgba(17, 17, 17, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
    /*  */
}

.choose-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 32px;
}

.choose-dot .radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

@media (max-width: 440px) {
    .choose-dot .radios {
        gap: 20px;
    }
}

.choose-dot .radio {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    cursor: pointer;
}

.choose-dot .user-verd {
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.popup-form-user-contact-action-radio-title {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.popup-form-user-contact-title-email {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 157.143%;
    /* */
    margin-top: 12px;
    margin-bottom: 12px;
}

.popup-form-user-contact-title-information {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
}

.user-actions-all-block-title {
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 157.143%;
    margin-bottom: 4px;
}

.user-actions-all {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.user-actions-all-dropdown {
    position: relative;
    cursor: pointer;
}

.user-actions-all-dropdown .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;
    border-radius: 4px;
    border: 1px solid rgba(17, 17, 17, 0.15);
    display: flex;
    height: 44px;
    padding: 0px 12px;
    justify-content: space-between;
    align-items: center;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.user-actions-all-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.user-actions-all-dropdown-list-item {
    color: rgba(17, 17, 17, 0.6);
    font-size: 14px;
    font-weight: 400;
    padding: 12px;
    line-height: 157.143%;
    cursor: pointer;
}

.user-actions-all-dropdown-list-item:hover {
    color: rgb(17, 17, 17);
    background-color: #e4e4e4;
}

.user-actions-all-block-subtitle {
    color: rgba(17, 17, 17, 0.6);
    font-size: 12px;
    font-weight: 400;
    line-height: 160%;
    margin-top: 4px;
}

.user-actions-all-dropdown-text.active {
    color: rgba(17, 17, 17, 0.4);
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
}

.user-actions-all-dropdown-text.selected {
    color: rgb(17, 17, 17);
    transition: none;
}

.user-actions-all-dropdown:hover .user-actions-all-dropdown-list {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.user-actions-all-dropdown:hover .icon svg {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.radio input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.user-radio {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(17, 17, 17, 0.15);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.user-radio::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    background-color: #ed863d;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* вот здесь была ошибка — теперь правильно */
.radio input[type="radio"]:checked+.user-radio {
    border: 1px solid #ed863d;
}

/* и точка внутри появляется */
.radio input[type="radio"]:checked+.user-radio::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.checkbox-wrapper {
    gap: 12px !important;
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 5% 12px 95%;
    grid-template-columns: 5% 95%;
    margin: 30px 0;
    cursor: pointer;
}

@media (max-width: 440px) {
    .checkbox-wrapper {
        -ms-grid-columns: 7% 93%;
        grid-template-columns: 7% 93%;
    }
}

.checkbox-wrapper input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.user-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(17, 17, 17, 0.15);
    border-radius: 4px;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Галочка появляется через ::after */
.user-checkbox::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 7.5px;
    /* height: auto; */
    border: solid #ed863d;
    border-width: 0 2px 2px 0;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    width: 4px;
    height: 10px;
    transform: rotate(45deg);
}

/* Показываем галочку, если выбран */
.checkbox-wrapper input[type="checkbox"]:checked+.user-checkbox::after {
    opacity: 1;
}

/* Можно подсветить рамку при активном */
.checkbox-wrapper input[type="checkbox"]:checked+.user-checkbox {
    border-color: #ed863d;
}

.checkbox-text {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
}

.checkbox-text a {
    color: #ed863d;
}

.btn-send-form {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 142.857%;
    /*  */
    letter-spacing: 0.56px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    padding: 10px 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    border-radius: 4px;
    background: #ed863d;
}

.btn-send-form:hover {
    background: #cf6d27;
}

.btn-close-contact {
    position: absolute;
    right: 16px;
    top: 16px;
}

.btn-close-contact:hover {
    opacity: 0.6;
}

.btn-close-prev {
    position: absolute;
    left: 16px;
    top: 16px;
}

.btn-close-prev:hover {
    opacity: 0.6;
}

@media (max-width: 640px) {
    .user-actions-all {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .choose-dot .radio {
        gap: 0;
    }
}

/* Style the button when it's disabled */
.btn-send-form:disabled {
    opacity: 0.7;
    /* Apply opacity when button is disabled */
    cursor: not-allowed;
    /* Change the cursor to indicate it's not clickable */
}

/* Style the button when it's active (not disabled) */
.btn-send-form:not(:disabled) {
    opacity: 1;
    /* Full opacity when button is active */
    cursor: pointer;
    /* Normal cursor */
}

.privacy {
    padding: 150px 0 120px 0;
    background: #e3e8eb;
}

.privacy a {
    color: #ed863d;
}

.privacy-content p {
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .privacy {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .privacy {
        padding-bottom: 64px;
    }
}

.privacy .date {
    color: #111;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    /* 31.2px */
    margin: 32px 0;
    display: block;
}

@media (max-width: 440px) {
    .privacy .date {
        margin: 24px 0;
        font-size: 18px;
    }
}

.privacy__title {
    color: #111;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    /* 57.6px */
    text-transform: capitalize;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .privacy__title {
        font-size: 32px;
    }
}

@media (max-width: 440px) {
    .privacy__title {
        font-size: 28px;
    }
}

.privacy__title span {
    color: var(--Orange, #ed863d);
}

.privacy__subtitle {
    margin-top: 40px;
    margin-bottom: 32px;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

@media (max-width: 768px) {
    .privacy__subtitle {
        margin: 32px 0 24px 0;
    }
}

@media (max-width: 440px) {
    .privacy__subtitle {
        margin: 24px 0 24px 0;
    }
}

.privacy__blocks-title {
    color: #111;
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
    /* 39px */
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .privacy__blocks-title {
        margin-bottom: 20px;
        font-size: 24px;
    }
}

@media (max-width: 440px) {
    .privacy__blocks-title {
        margin-bottom: 16px;
    }
}

.privacy__blocks-subtitle {
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-bottom: 16px;
}

.privacy__muted {
    color: #111;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    /* 31.2px */
}

@media (max-width: 440px) {
    .privacy__muted {
        margin: 24px 0;
        font-size: 18px;
        margin-bottom: 0;
    }
}

.footer {
    padding: 120px 0;
}

@media (max-width: 640px) {
    .footer {
        padding: 64px 0;
    }
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer__inner {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.footer__info {
    max-width: 236px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 60px;
}

@media (max-width: 640px) {
    .footer__info {
        margin-top: 0px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.footer__info-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    line-height: 157.143%;
}

.footer__info-link .icon img {
    min-width: 24px;
    min-height: 24px;
}

.footer__info-link:hover {
    opacity: 0.6;
}

#menu-menu-privacy {
    list-style: none;
}

#menu-menu-privacy,
.footer__list {
    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;
    margin-top: 32px;
}

@media (max-width: 440px) {
    .footer__list {
        margin-top: 24px;
    }
}

.footer__list-link {
    color: #111;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

#menu-menu-privacy .menu-item a {
    color: #111;
    font-size: 14px;
    font-weight: 400;
}

#menu-menu-privacy .menu-item a:hover {
    opacity: 0.6;
}

.footer__list-link:hover {
    opacity: 0.6;
}

.footer .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 120px;
}

@media (max-width: 1080px) {
    .footer .lists {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer .lists {
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer .lists {
        gap: 32px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 440px) {
    .footer .lists {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer__start {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer__end {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .footer__logo img {
        max-width: 64px;
    }
}


/* Для поля с ошибкой (красный бордер и placeholder) */
input.error,
textarea.error {
    border: 1px solid rgba(215, 55, 55, 0.756);
    transition: 0.2s ease;
}

/* Изменение placeholder при ошибке */
input.error::placeholder,
textarea.error::placeholder {
    color: rgba(215, 55, 55, 0.756);
    /* Красный цвет для плейсхолдера */
}

/* Для сброса ошибки (если поле исправлено, зелёный бордер и placeholder) */
/* input.valid, textarea.valid {
  border: 1px solid rgba(37, 237, 57, 0.607);
  transition: 0.2s ease;
} */

/* Изменение placeholder при исправлении ошибки (зелёный цвет) */
/* input.valid::placeholder, textarea.valid::placeholder {
  color: rgba(37, 237, 57, 0.607); /* Зелёный цвет для плейсхолдера */
}

*/

/* Для поля с ошибкой (красный бордер и placeholder) */
.popup-form-user-contact-input.error {
    border: 1px solid rgba(215, 55, 55, 0.756);
    transition: 0.2s ease;
}

/* Изменение placeholder при ошибке */
.popup-form-user-contact-input.error::placeholder {
    color: rgba(215, 55, 55, 0.756);
    /* Красный цвет для плейсхолдера */
}

/* Для сброса ошибки (если поле исправлено, зелёный бордер и placeholder) */
/* .popup-form-user-contact-input.valid {
  border: 1px solid rgba(37, 237, 57, 0.607);
  transition: 0.2s ease;
} */

/* Изменение placeholder при исправлении ошибки (зелёный цвет) */
/* .popup-form-user-contact-input.valid::placeholder {
  color: rgba(37, 237, 57, 0.607); /* Зелёный цвет для плейсхолдера */
}

*/ .radio-error {
    border: 1px solid rgba(215, 55, 55, 0.756);
    padding: 10px;
    border-radius: 6px;
}

.radio-error-title {
    color: rgba(215, 55, 55, 0.756);
}

.radios {
    border: 1px solid transparent;
}

.radio-error .radios {
    border: 1px solid red;
}


#loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader.active {
    visibility: visible;
}

.loading {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ed863d;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}


#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: none;
    border-radius: 50%;
    background-color: #ed863d;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn.visible {
    opacity: 1;
    pointer-events: auto;
}

#scrollToTopBtn svg {
    max-width: 100%;
    height: auto;
}




.popup {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    display: flex;
    justify-content: center;
    overflow-y: scroll;
    transition: all 0.3s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup.active {
    visibility: visible !important;
    opacity: 1;
}

.popup-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    background: #fff;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    z-index: 2;
}

.popup-close__icon {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2153_2134)"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9993 13.4141L17.6563 19.0711C17.8449 19.2533 18.0975 19.3541 18.3597 19.3518C18.6219 19.3495 18.8727 19.2444 19.0582 19.059C19.2436 18.8736 19.3487 18.6227 19.351 18.3606C19.3533 18.0984 19.2525 17.8458 19.0703 17.6571L13.4133 12.0001L19.0703 6.34315C19.2525 6.15455 19.3533 5.90194 19.351 5.63975C19.3487 5.37755 19.2436 5.12674 19.0582 4.94133C18.8727 4.75592 18.6219 4.65075 18.3597 4.64848C18.0975 4.6462 17.8449 4.74699 17.6563 4.92915L11.9993 10.5861L6.34233 4.92915C6.15288 4.75149 5.90175 4.65451 5.64207 4.65873C5.38238 4.66295 5.13453 4.76803 4.95094 4.95174C4.76736 5.13546 4.66245 5.38339 4.65842 5.64307C4.65439 5.90276 4.75155 6.15382 4.92933 6.34315L10.5853 12.0001L4.92833 17.6571C4.83282 17.7494 4.75664 17.8597 4.70423 17.9817C4.65182 18.1037 4.62424 18.235 4.62308 18.3677C4.62193 18.5005 4.64723 18.6322 4.69751 18.7551C4.74779 18.878 4.82205 18.9897 4.91594 19.0835C5.00983 19.1774 5.12148 19.2517 5.24438 19.302C5.36728 19.3523 5.49896 19.3776 5.63174 19.3764C5.76452 19.3752 5.89574 19.3477 6.01774 19.2953C6.13974 19.2428 6.25009 19.1667 6.34233 19.0711L11.9993 13.4141Z" fill="%23FFFFFF"/></g><defs><clipPath id="clip0_2153_2134"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.popup.active .popup-close__icon {
    transition: all 0.3s ease;
}

.popup-close:hover .popup-close__icon {
    transform: rotate(-90deg);
}

.popup-thank .popup-wrapper {
    width: 458px;
    padding-top: 220px;
    position: relative;
}

.popup-thank-img {
    height: 220px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.popup-content {
    padding: 32px 32px 48px;
    background-color: #fff;
}

.popup-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    max-width: 255px;
    margin-left: auto;
    margin-right: auto;
}

.popup-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 16px 0 32px;
}

.btn {
    display: inline-block;
    outline: none;
    text-decoration: none;
    padding: 17px 24px;
    line-height: 1;
    background-color: #ED863D;
    color: #FFF;
    font-family: "Gilroy", sans-serif;
    border: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.56px;
}

.btn:hover {
    background-color: #e3792d;
}

.btn-transparent-black {
    background-color: transparent;
    border: 1px solid #111;
    color: #111;
}

.btn-transparent-black:hover {
    background-color: transparent;
    background-color: #f6f6f6;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
}

.popup-buttons .btn {
    width: calc(50% - 8px);
}


@media screen and (max-width: 480px) {
    .popup-thank .popup-wrapper {
        width: 350px;
    }

    .popup-content {
        padding: 32px 20px 48px;
    }

    .popup-title {
        width: 100%;
        margin-left: 0;
    }

    .popup-title {
        font-size: 28px;
    }

    .popup-buttons {
        flex-direction: column-reverse;
    }

    .popup-buttons .btn {
        width: 100%;
    }

    .popup-buttons .btn:last-child {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 370px) {
    .popup-thank .popup-wrapper {
        width: 94%;
    }

    .popup-thank-img {
        height: 140px;
    }

    .popup-thank .popup-wrapper {
        padding-top: 140px;
    }
}