body{
    font-family: "Anek Latin", sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    scroll-behavior: smooth;
}
/*   в форме убирает контур  */
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    line-height: 1.2em;
    color: #000;
}
img{
    display: block;
    max-width: 100%;
}
ul,li{
    display: block;
    padding: 0;
    margin: 0;
}
a{
    color: #FF5C00;
}
.container{
    width: 1280px;
    margin: 0 auto ;
}

/* animation start*/
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Легкое смещение вниз */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Положение по умолчанию */
    }
}

.fade__animation {
    opacity: 0; /* Начальное состояние — невидимый элемент */
    animation: fadeIn 1s ease-out forwards; /* Запуск анимации */
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Легкое смещение снизу */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Переход на исходное место */
    }
}

/* Анимации по умолчанию для элементов */

.rect__animation,
.item__animation {
    opacity: 0; /* Начинаем с прозрачности */
    transform: translateY(30px); /* Сдвиг вниз */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Плавный переход */
}

.visible {
    animation: fadeInUp 0.6s ease-out forwards; /* Запуск анимации */
}

/* animation end*/
.offer{
    position: relative;
    overflow: hidden;
    height: 700px;
    background: url("../img/main.jpg") no-repeat center;
}
.offer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%; /* Задаем ширину блюра */
    height: 30%; /* Задаем высоту блюра */
    background: radial-gradient(circle at bottom right, rgba(255, 92, 0, 0.7), transparent 70%); /* Градиент, исходящий от правого нижнего угла */
    filter: blur(50px); /* Размытие для мягкости */
    transition: opacity 0.3s ease; /* Плавное появление */
    pointer-events: none;
}

.header{
    padding: 30px 0;
}
.header__set{
    display: flex;
    align-items: center;
}
.menu{
    margin-left: auto;
    display: flex;
    text-align: center;
    gap: 30px;
    align-items: center;
}
.menu__item_a{
    color: rgb(255, 255, 255,0.6);
    font-size: 18px;
}
.menu__item_a:hover{
    color: #FF5C00;
}
.line{
    width: 2px;
    height:30px;
    background-color: rgb(255, 255, 255,0.2);
    margin: 0 20px;
}
.language__set{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
 }
.language__en{
    color: rgb(255, 255, 255,0.6);
    font-size: 18px;
}
.popup__btn{
    width: 180px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(to right, #FE8C00, #FF5C00);

}
.popup__text{
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.3px;
}
.popup__btn:hover{
    background: #FE8C00;

}
.header__set_mob{
    display: none;
}
.header__menu{
    display: none;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #24130381;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup__content {
    position: relative;
    background: #282828;
    max-width: 600px;
    padding: 30px;

}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0.1px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to top right, #FE8C00, #FF5C00);
    clip-path: polygon(0 0, 0 100%, 350% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.close-icon {
    width: 22px;
    height: 23px;
}

.popup__open {
    visibility: visible;
    opacity: 1;
}

.title__form {
    font-weight: 500;
    font-size: 34px;
    letter-spacing: 0.02em;
    color: #fff;
}

.text__form {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    padding: 20px 0;
}

.popup__form {
    position: relative;
}

.popup__form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s;
}

.popup__form .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0s 0.3s;
}

.popup__form.submitting .popup__form-inner {
    pointer-events: none;
    opacity: 0.5;
}

.popup__form.submitting .spinner {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s;
}

.popup__form-error,
.popup__form-success {
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 400px;
}

.popup__form-error {
    color: #e93333;
}

.popup__form-success {
    color: #45b945;
}

.popup__form-error.visible,
.popup__form-success.visible {
    display: block;
}

.input {
    font-family: "Anek Latin", sans-serif;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
    font-size: 17px;
}

.input::placeholder {
    font-family: "Anek Latin", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.btn__form {
    display: block;
    background: linear-gradient(to right, #FE8C00, #FF5C00);
    padding: 22px 108px;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.label{
    font-family: "Anek Latin", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    gap: 7px;
    cursor: pointer;
    margin-top: -20px;
}
.custom-checkbox{
    position: relative;
    z-index: -1;
    opacity: 0;

}
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}
.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #ffffff;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    cursor: pointer;
}
.custom-checkbox:checked+label::before {
    border-color: #FF5C00;
    background-color: #FF5C00;
    background-image: url("../img/box.png");
}
.btn__form:hover {
    background: #FE8C00;
}
.offer__set{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.offer__wrapp{
    width: 525px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.offer__title{
    font-size: 50px;
    color: #fff;
}
.offer__text{
    color: rgb(255, 255, 255,0.6);
    font-size: 18px;
}
.offer__btn{
    margin-left: 0;
}
.offer__rect{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 350% 100%);
}
.offer__rect_img{

    width: 26px;
    height: 26px;
}
.offer__rect:hover{
    background-color: #ffffff00;
}
.partners {
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
}

.partners__slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.partners__track {
    display: flex;
    width: max-content;
}

.partners__img {
    width: 100px;
    height: 35px;
    margin: 0 20px;
    flex-shrink: 0;
}
.video{
    position: relative;
    display: flex;
    width: 100%;
    height: 600px;
    cursor: pointer;
    background: #101820;
}
#fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.video__set {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    z-index: 1;
    color: #fff;
}

.video__title {
    text-align: center;
    font-size: 20px;
    color: #000;
    margin-bottom: 100px;
}

.video__wrapp {
    display: flex;
    align-items: center;
    cursor: pointer;
    /*margin-bottom: 70px;*/
    margin-right: auto;
}

.video__wrapp_img {
    width: 60px;
    height: 60px;
    margin-right: 30px;
}
.video__wrapp_text{
    font-size: 34px;
    text-transform: uppercase;
}
.video__mix {
    display: flex;
    text-align: center;
    justify-content: end;
    margin-bottom: 40px;
}

.video__mix_text {
    width: 350px;
    text-align: start;
    font-size: 16px;
    margin-right: 30px;

}

.video__mix_btn {
    color: #fff;
    text-transform: uppercase;
}
.video__rect{
    position: absolute;
    bottom: -0.5px;
    left: 0.1px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(100% 0, 100% 100%, -250% 100%)
}
.video__rect:hover{
    background-color: #101820;
}
.industrial{
    padding: 70px 0;
}
.industrial__title{
    width: 632px;
    font-size: 45px;
}
.industrial__set{
    padding: 70px 0;
    display: flex;
    justify-content: space-between;
}


/* Внешний прямоугольник с оранжевым фоном */
.industrial__rect-container {
    position: relative;
    width: 600px;
    height: 200px;
    background-color: #FF5C00; /* Оранжевый цвет */
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 85% 0); /* Срезаем угол */
}

/* Внутренний прямоугольник с белым фоном */
.industrial__rect-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px); /* Уменьшаем ширину на 2 пикселя с каждой стороны */
    height: calc(100% - 4px); /* Уменьшаем высоту на 2 пикселя с каждой стороны */
    background-color: #fff; /* Белый цвет */
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 85% 0); /* Срезаем угол аналогично внешнему */
}

.industrial__wrapp{
    width: 100%;
    padding: 30px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.industrial__wrapp_title, .industrial__wrapp_title-1{
    font-size: 45px;
    color: #FF5C00;
}
.industrial__wrapp_kit{
    display: flex;
}
.industrial__wrapp_title-2{
    font-size: 18px;
    color: #FF5C00;
}
.industrial__wrapp_text{
    font-size: 16px;
    line-height: 20px;
}
.industrial__line{
    width: 100%;
    height: 2px;
    background-color: #00000038;
}
.industrial__mix{
    display: flex;
    justify-content: space-between;
    padding-top: 70px;
}
.industrial__item{
    display: flex;
    gap: 30px;
    align-items: center;
}
.industrial__item_text{
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.industrial__item_img{
    width: 60px;
    height: 61px;
}
.helps{
    position: relative;
    padding: 70px 0;
    background: #181818;
}
.help__title{
    width: 870px;
    font-size: 45px;
    color: #fff;
}
.help__set{
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.help__rect{
    width: 282px;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 85% 0);
    background: #282828;
}
.help__wrapp{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    padding-top: 0;
}
.help__wrapp_title{
    font-size: 80px;
}
.help__wrapp_title-orange{
    color: #FF5C00;
}
.help__wrapp_title-blue{
    color: #006FFF;
}
.help__wrapp_text{
    font-size: 16px;
    color: rgb(255, 255, 255,0.6);
}
.help__line{
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255,0.2);
}
.help__title_second{
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    padding: 50px 0;
    color: #fff;
}
.help__kit{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.help__item{
    display: flex;
    width: 410px;
    height: 80px;
    border-radius: 5px;
    background-color: #282828;
    padding: 20px;
    align-items: center; /* добавлено */
    justify-content: center; /* добавлено */
}
.help__text{
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.helps__rect{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    top: -0.5px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(100% 100%, 100% 0, -250% 0);
}
.helps__rect:hover{
    background-color: #181818;
}
.how{
    position: relative;
    padding: 70px 0;
}
.how__rect{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    top: -0.5px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #181818;
    clip-path: polygon(0 100%, 0 0, 350% 0);
}
.how__rect:hover{
    background-color: #fff;
}
.how__title{
    text-align: center;
    font-size: 45px;
    color: #101820;
}
.how__set{
    display: flex;
    justify-content: space-between;
    padding: 70px 0;
}
.how__wrapp{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 283px;
}
.how__wrapp_text{
    color: #101820;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
}

.how__btn{
    width: 214px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 auto;
}
.our{
    position: relative;
    padding-top: 70px;
    background: #181818;
}
.our__rect{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    top: -0.5px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(100% 100%, 100% 0, -250% 0);
}
.our__rect:hover{
    background-color: #181818;
}
.our__title{
    font-size: 45px;
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
}
.our__set{
    display: flex;
    justify-content: space-between;
}
.our__wrapp{
    padding: 20px 40px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}




.real{
    padding: 70px 0;
    background: #181818;
}
.real__set{
    background: #282828;
    padding: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}
.real__left{
    width: 540px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.real__left_title{
    font-weight: 500;
    width: 460px;
    font-size: 34px;
    color: #fff;
}
.real__wrapp{
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 25px;
    background: #353535;
    border-radius: 5px;
}
.real__wrapp_title{
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 16px;
    color: #fff;
}
.real__wrapp_line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255,0.2);
}
.real__person{
    display: flex;
    align-items: center;
    gap: 30px;
}
.real__person_set{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.real__person_title{
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
}
.real__person_text{
    color:rgb(255, 255, 255,0.6);
    font-size: 16px;
}
.real__btn{
    width: 180px;
    height: 60px;
    display: flex;
    color: #fff;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    letter-spacing: 0.2px;
    background: linear-gradient(to right, #FE8C00, #FF5C00);
}
.real__btn:hover{
    background: #FE8C00;
}
.real__right{
    width: 560px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

/* slider start*/

.real__slider{
    width: 540px;
}

.real-img{
    padding: 0 5px;
}
.slick-prev::before {
    content: none;
}
.slick-next::before {
    content: none;
}
.slick-next{
    content: '';
    background: url(../img/arrow_right.svg) no-repeat center !important;
    width: 41px;
    height: 41px;
    top: 50%;
    right: -20px;

}
.slick-prev{
    content: '';
    background: url(../img/arrow_left.svg) no-repeat center !important;
    width: 41px;
    height: 41px;
    left: -20px;
    top: 50%;
    z-index: 1;
}
.slick-next:hover {
    background-image: url(../img/arrow_right-h.svg) !important;
}

.slick-prev:hover {
    background-image: url(../img/arrow_left-h.svg) !important;
}
/* slider end*/

.less__set{

    display: flex;
    gap: 20px;
}


/* Внешний прямоугольник с оранжевым фоном */
.less__rect-container {
    position: relative;
    width: 256px;
    height: 127px;
    background-color: #FF5C00; /* Оранжевый цвет */
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 85% 0); /* Срезаем угол */
}

/* Внутренний прямоугольник с белым фоном */
.less__rect-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px); /* Уменьшаем ширину на 2 пикселя с каждой стороны */
    height: calc(100% - 4px); /* Уменьшаем высоту на 2 пикселя с каждой стороны */
    background-color: #282828; /* Белый цвет */
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 85% 0); /* Срезаем угол аналогично внешнему */
}

.less__wrapp{
    width: 100%;
    padding: 10px 30px 10px;

    gap: 20px;
    display: flex;
    flex-direction: column;
}
.less__wrapp_title{
    font-weight: 500;
    font-size: 45px;
    color: #FF5C00;
}

.less__wrapp_text{
    color: #fff;
    font-size: 16px;

}
.industries{
    position: relative;
    padding: 70px 0;
}
.industries__rect-mod{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #181818;
    clip-path: polygon(0 100%, 0 0, 350% 0);
}
.industries__rect-mod:hover{
    background-color: #fff;
}
.industries__title{
    text-align: center;
    font-size: 45px;
    color: #101820;
    padding-bottom: 50px;
}
.industries__set{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.industries__rect{
    width: 282px;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 85% 0);
    background: #282828;
}
.industries__wrapp{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    align-items: center;
}
.industries__wrapp_img{
    width: 60px;
    height: 60px;
}
.industries__wrapp_text{
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}
.footer{
    position: relative;
    padding: 100px 0 30px;
    background: #181818;
}
.footer__rect{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(100% 100%, 100% 0, -250% 0);
}
.footer__rect:hover{
    background-color: #181818;
}
.footer__set{
    display: flex;
    justify-content: space-between;
}
.footer__set_app{
    display: flex;
    gap: 20px;
    padding-top: 50px;
}
.footer__second{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer__text{
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.footer__text_social{
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.footer__text:hover{
    color: #FF5C00;
}
.footer__social_set{
    padding-top: 50px;
    display: flex;
    gap: 20px;
}
.footer__btn,.footer__btn_tablet,.footer__btn_mob{
    color: #fff;
    text-transform: uppercase;
    margin-left: 0;
}
.footer__set-teblet{
    display:none;
}
.footer__set-mob{
    display:none;
}
.footer__line{
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255,0.2);
    margin: 50px 0 30px;
}
.privacy{
    display: flex;
    justify-content: space-between;

}
.privacy__titel{
    font-weight: 500;
    font-size: 18px;
    color: rgb(255, 255, 255,0.6);
}
.privacy__titel_mod{
    font-weight: 500;
    font-size: 14px;
    color: rgb(255, 255, 255,0.6);
}
.privacy__titel:hover{
    color: #FF5C00;
}
.privacy__set{
    display: flex;
    gap: 5px;
    align-items: end;
}
.offer-about{
    position: relative;
    height: 600px;
    overflow: hidden;
    /*background: url("../img/photo_1.png") no-repeat center;*/
    background: url("../img/about-main.jpg") no-repeat center;
}
.offer-about::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%; /* Задаем ширину блюра */
    height: 30%; /* Задаем высоту блюра */
    background: radial-gradient(circle at bottom right, rgba(255, 92, 0, 0.7), transparent 70%); /* Градиент, исходящий от правого нижнего угла */
    filter: blur(50px); /* Размытие для мягкости */

    transition: opacity 0.3s ease; /* Плавное появление */
    pointer-events: none;
}


.offer-about__title{
    color: #fff;
    font-size: 80px;
    position: absolute;
    bottom: 0;
}
.header-second{
    padding: 30px 0;
    background: #101820;
}
.about{
    position: relative;
    padding: 70px 0;
}
.about__rect{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    bottom: -0.5px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #FF5C00;
    clip-path: polygon(0 0, 0 100%, 350% 100%);
}
.about__rect:hover{
    background-color: #fff;
}
.about__set{
    display: flex;
    justify-content: space-between;
}
.bread__set {
    display: flex;
    align-items: center; /* Вертикальное выравнивание по центру */
    height: 21px;
    justify-content: center;
    gap: 10px;
}

.bread__text {
    color: #101820;
    font-size: 16px;
}

.bread__text_mod {
    color: #FF5C00;
    font-size: 16px;
}

.bread__img {
    width: 10px;
    height: 10px;
    vertical-align: middle; /* Вертикальное выравнивание для изображения */
}

.about__wrapp{
    width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.about__wrapp_text{
    width: 666px;
    font-size: 20px;
    color: #101820;
}
.about__kit{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.about__slider{
    display: flex;
    align-items: center;
    margin-left: -20px;
}
.about__slider_img-1{
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin-right: -20px;
}
.about__slider_img-2{
    width: 947px;
    height: 532px;
}
.about__slider_img-3{
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin-left: -20px;
}
.about__slider_set{
    display: flex;
    flex-direction: column;
    width: 666px;
    gap: 15px;
}
.about__slider_title{
    text-transform: uppercase;
    font-weight: 500;
    font-size: 22px;
    color: #101820;
}
.about__slider_text{
    font-weight: 500;
    font-size: 16px;
    color: #101820;
}
.team{
    position: relative;
    padding: 70px 0;
    background: #FF5C00;
}
.team__rect{
    position: absolute; /* Абсолютное позиционирование для прижатия к углу */
    top: -0.5px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(100% 100%, 100% 0, -250% 0);
}
.team__rect:hover{
    background-color: #FF5C00;
}
.team__title{
    text-align: center;
    font-size: 50px;
    color: #fff;
}
.team__set{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 50px;
}
.team__wrapp{
    width: 413px;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 35%, 83% 0);
    padding: 30px;
}
.team__person{
    display: flex;
    align-items: center;
    gap: 15px;
}
.team__person_kit{
    width: 200px;
    display: flex;
    flex-direction: column;
}
.team__person_title{
    text-transform: uppercase;
    font-weight: 500;
    color: #101820;
    font-size: 22px;
}
.team__person_text{
    font-size: 16px;
}
.team__wrapp_line{
    width: 100%;
    height: 2px;
    background-color: #0000002d;
    margin: 20px 0;
}
.team__wrapp_info{
    font-size: 16px;
}
.team__social{
    display: flex;
    gap: 15px;
}
.team__social_item{
    width: 30px;
    height: 30px;
}
.footer__rect_mod{
    background: #FF5C00;
}
.policy{
    padding: 70px 0;
}
.policy-bread__set{
    justify-content: start;
}
.policy__set{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.policy__title{
    font-size: 45px;
    color: #101820;

}
.policy__wrapp{
    display: flex;
    flex-direction: column;

    gap: 20px;
}
.policy__wrapp_title{
    font-weight: 500;
    font-size: 30px;
    color: #101820;
}
.policy__wrapp_text{
    font-size: 16px;
    color: #101820;
}

.language__options {
    display: none; /* Скрываем по умолчанию */
}
.language__set {
    position: relative; /* Чтобы .language__options_menu позиционировался относительно этого элемента */
}
.language__options_menu {
    display: block; /* Показываем при добавлении класса */
    position: absolute; /* Абсолютное позиционирование */
    background: white; /* Фон */
    border-radius: 5px; /* Закругление */
    padding: 10px; /* Отступы */
    z-index: 100; /* Для обеспечения видимости */
    top:    90px; /* Размещаем меню сразу под .language__set */
    left: 71%; /* Отцентрируем по горизонтали */
    transform: translateX(-50%); /* Сместим на половину ширины для точного центрирования */
    text-align: center;
    width: 120px; /* Устанавливаем фиксированную ширину */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Добавляем тень */
}


.language__options a {
    display: block; /* Каждая ссылка занимает отдельную строку */
    margin-bottom: 10px; /* Отступ между ссылками */
    color: black; /* Цвет текста */
    text-decoration: none; /* Убираем подчеркивание */
}

.language__options a:hover {
    text-decoration: underline; /* Подчеркивание при наведении */
}
.arrow-icon {
    transition: transform 0.3s ease; /* Анимация поворота */
}

.arrow-icon.rotated {
    transform: rotate(180deg); /* Поворот на 180 градусов */
}
.logo__item,.footer__logo_img{
    width: 167px;
    height: 29.5px;
}
.how__wrapp_img{
    width: 283px;
    height: 574px;
}
.footer__app_img{
    width: 120px;
    height: 40px;
}
.our__img{
    width: 94px;
    height: 34px;
}
.privacy__img{
    width: 89.5px;
    height: 17.5px;
}
.footer__social_img{
    width: 40px;
    height: 40px;
}
.arrow-icon{
    width: 12px;
    height: 8px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: spinner-rotation 1s linear infinite;
}

@keyframes spinner-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* 1320-1440 */
@media screen and (max-width: 1440px) {
    .container {
        max-width: 1280px;
    }
    .language__options_menu {


        left: 81%; /* Отцентрируем по горизонтали */

    }
}
/* 992-1319 */
@media screen and (max-width: 1319px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }
    .rect__size{
        width: 50px;
        height: 50px;
    }
    .offer__set{
        margin-top: 27px;
    }
    .offer__wrapp{
        width: 500px;
    }

    .offer__img{
        width: 470px;
    }
    .offer{
        height: 550px;
        background-size: cover;
    }
    .real__set{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .real__btn{
        width: 100%;
    }
    .real__left{
        width: 100%;
    }
    .real__right{
        width: 100%;
    }
    .real__left_title{
        width: 100%;
    }
    .real__slider{
        width: 100%;
    }
    .less__set{
        justify-content: space-between;
    }
    .less__rect-container{
        width: 400px;
    }
    .real__right{
        gap: 50px;
    }
    .video{
        height: 500px;

    }
    .video__set{
        width: 100%;
        padding: 20px;
    }
    .industrial__set{
        flex-direction: column;
        gap: 40px;
    }
    .industrial__rect-container{
        width: 100%;
        height: 180px;
    }
    .help__set{
        flex-wrap: wrap;
        justify-content: center;

        gap: 70px;
    }
    .help__title {
        width: 100%;
    }
    .help__rect{
        width: 400px;
    }
    .help__kit{
        justify-content: center;
        gap: 50px;
    }
    .how__set {
        display: flex;
        overflow-x: auto; /* Горизонтальный скроллинг */
        gap: 25px; /* Интервал между блоками */
        padding: 70px 0 20px ;
        margin-bottom: 70px;
        scroll-snap-type: x mandatory; /* Плавная привязка прокрутки */
    }

    .how__wrapp {
        flex: 0 0 auto; /* Фиксированный размер для каждого элемента */
        width: 283px; /* Задайте нужную ширину блока */
        scroll-snap-align: start; /* Прокрутка будет позиционировать элемент в начале */
    }

    /* Кастомный скроллбар */
    .how__set::-webkit-scrollbar {
        height: 8px; /* Высота полосы прокрутки */
    }

    .how__set::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Цвет фона скроллбара */
        border-radius: 4px;
    }

    .how__set::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #FE8C00, #FF5C00); /* Цвет градиента */
        border-radius: 4px;
    }

    .how__set::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to right, #FF5C00, #FE8C00); /* Цвет при наведении */
    }
    .industries__set{
        flex-wrap: wrap;
        justify-content: center;

        gap: 70px;
    }
    .industries__rect{
        width: 400px;
    }
    .offer-about{
        height: 550px;
        background-size: cover;
    }
    .about__set{
        flex-direction: column;
        gap: 50px;
        align-items: start;
    }
    .about__wrapp{
        width: 100%;
    }
    .about__wrapp_text{
        width: 100%;
    }
    .about{
        padding-bottom: 100px;
    }
    .team__set{
        gap: 70px;
        justify-content: center;
    }
    .about__slider_set{
        width: 100%;
    }
    .language__options_menu {
        left: 74%; /* Отцентрируем по горизонтали */

    }
}
/* 768-991 */
@media screen and (max-width: 991px) {
    .line {
        margin: 0 10px;
    }
    .offer__set{
        flex-direction: column;
        position: absolute;
        margin-top: 0;
        bottom: 0;
    }
    .offer{
        height: 1050px;
    }
    .offer__img{
        width: auto;
    }
    .offer__wrapp {
        width: 100%;
        margin: 50px 0 ;
    }

    .industrial__rect-container{
        width: 100%;
    }
    .help__rect{
        width: 282px;
    }
    .help__set{
        gap: 50px;
    }
    .help__item{
        width: 350px;

    }
    .help__kit{
        gap: 20px;
    }
    .industries__set{
        gap: 50px;
    }
    .less__rect-container{
        width: 100%;
    }
    .industries__rect {
        width: 282px;
    }
    .industrial__item {
        gap: 15px;
    }
    .footer__set{
        display: none;
    }
    .footer__set-teblet{
        display: flex;

    }
    .footer__first{
        margin-right: 250px;
    }
    .footer__set_app{
        padding-top: 0;
    }
    .footer__social_set{
        padding-top: 0;
    }
    .footer__second{
        gap: 45px;
    }
    .footer__first{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .offer-about{
        height: 450px;

    }
    .about__slider_img-2{
        width: 100%;
        height: auto;
    }
    .about__kit{
        width: 90%;
        margin: 0 auto;
    }
    .team__set {
        gap: 50px;
        padding-top: 70px;
    }
    .our__set {
        display: flex;
        overflow-x: auto;
        gap: 25px;
        padding: 70px 0 20px;
        scroll-snap-type: x mandatory;
    }
    .our__wrapp{
        flex: 0 0 auto;

    }
    /* Кастомный скроллбар */
    .our__set::-webkit-scrollbar {
        height: 8px; /* Высота полосы прокрутки */
    }

    .our__set::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Цвет фона скроллбара */
        border-radius: 4px;
    }

    .our__set::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #FE8C00, #FF5C00); /* Цвет градиента */
        border-radius: 4px;
    }


    .our__set::-webkit-scrollbar-thumb {
        background-color: #FF5C00; /* Цвет ползунка */
        border-radius: 4px; /* Закругление ползунка */
    }

    .our__set::-webkit-scrollbar-track {
        background-color: #f0f0f0; /* Цвет трека */
    }
    .language__options_menu {
        left: 66%; /* Отцентрируем по горизонтали */

    }
}

/* 576-767 */
@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header__set{
        display: none;
    }
    .header__set_mob{
        display: flex;
    }
    .language__set{
        margin-left: auto;
        margin-right: 40px;
    }
    .popup__btn_mob{
        width: 180px;
        margin: 0 auto 20px auto;
    }
    /*  Burger start */

    .header__menu {
        display: flex;
    }

    .burger__img {
        width: 30px;
        height:30px;
    }

    .menu {
        position: absolute;
        z-index: 999;
        top: 90px;
        right: 0;
        width: 220px;

        height: auto;
        background: #101820;
        display: none;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* добавлен тень */
    }

    .active__menu {
        display: block;
        justify-content: center;
    }

    .menu__item {
        width: 100% !important;
        margin: 15px 0;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .menu__item_a {
        text-align: center;
        color: #fff;
        font-size: 22px;
        padding: 15px 20px;
        width: 100%;
    }
    /*  Burger end */
    .offer{
        height: 950px;
    }
    .offer__title,.video__title,.industrial__title,.help__title,.how__title,.our__title,.industries__title,.team__title  {
        font-size: 40px;
    }
    .video__mix_text{
        width: 300px;
        margin-right: 0;
    }

    .industrial__title {
        width: 100%;
    }
    .industrial__mix{
        flex-direction: column;
        align-items: center;
        gap: 70px;
    }
    .footer__first{
        justify-content: start;
    }
    .footer__first{
       margin-right: 100px;
    }


    .about__slider {
       margin-left: -35px;
    }
    .popup{
        width: 100%;
    }
    .popup__content{
        max-width: 85%;
        padding: 40px;
    }
    .input{
        width: 100%;
    }
    .btn__form{
        width: 100%;
        padding: 22px 0;
    }
    .language__options_menu {
        left: 80%; /* Отцентрируем по горизонтали */

    }


}

/* 458-575 */
@media screen and (max-width: 575px) {
    .offer{
        height: 800px;
    }

    .offer__title,.video__title,.industrial__title,.help__title,.how__title,.our__title,.industries__title,.team__title  {
        font-size: 30px;
    }
    .offer__text {
        font-size: 14px;
    }
    .video{
        height: auto;
    }
    .video__set{
        display: flex;
        flex-direction: column;
        gap: 70px;
        justify-content: center;
        padding: 70px 20px;
    }
    .video__title{
        margin: 0;
    }
    .video__wrapp{
        margin: 0;
        justify-content: center;
    }
    .video__wrapp_text{
        font-size: 125px;
        color: #101820;
    }
    .video__mix{
        flex-direction: column;
        gap: 25px;
        align-items: center;
        margin: 0;
    }
    .video__mix_text{
        width: 100%;
        text-align: center;
    }
    .industrial__wrapp_title,.industrial__wrapp_title-1{
        font-size: 26px;
    }
    .industrial__wrapp_text{
        font-size: 14px;
    }
    .industrial__item_text{
        font-size: 16px;
    }
    .industrial__item {
        gap: 50px;
    }
    .help__wrapp_title{
        font-size: 55px;
    }
    .real__left_title{
        font-size: 24px;
    }
    .real__wrapp_title{
        font-size: 14px;
    }
    .real__person_title{
        font-size: 16px;
    }
    .real__person_text{
        font-size: 14px;
    }
    .less__set{
        flex-wrap: wrap;
    }
    .less__wrapp_title{
        font-size: 35px;
    }
    .less__wrapp_text{
        font-size: 14px;
    }
    .less__rect-container{
        height: 110px;
    }
    .industries__rect{
        width: 100%;
    }
    .help__rect{
        width: 100%;
    }
    .help__wrapp {
        padding: 20px;
        gap: 10px;
    }
    .industries__wrapp_text{
        font-size: 16px;
    }
    .footer__set-teblet{
        display: none;
    }
    .footer__set-mob{
        display: flex;
        gap: 40px;
    }
    .footer__set-mob{
        flex-direction: column;
    }
    .footer__first{
        margin: 0;
        flex-direction: row;
        justify-content: space-between;

    }
    .footer__second{
        gap: 35px;
    }
    .title__form{
        font-size: 20px;
    }
    .text__form{
        font-size: 14px;
    }
    .input{
        height: 40px;
        font-size: 14px;
    }
    .btn__form{
        font-size: 14px;
        padding: 15px 0;
    }
    .label {
        font-size: 14px;
    }
    .input::placeholder {
        font-size: 16px;
    }
    .close-btn{
        width: 30px;
        height: 30px;
        top: -30px;
    }
    .close-icon{
        width: 12px;
        height: 12px;
    }
    .about__kit{
        width: 80%;
    }
    .policy__title{
        font-size: 26px;
    }
    .policy__wrapp_title{
        font-size: 22px;
    }
    .policy__wrapp_text{
        font-size: 14px;
    }
    .bread__text{
        font-size: 14px;
    }
    .offer-about__title{
        font-size: 30px;
    }
    .privacy__titel{
        font-size: 14px;
    }
    .industrial__wrapp_title-2{
        font-size: 14px;
    }
    .our__set{
        gap: 30px;
    }
    .language__options_menu {
        left: 75%; /* Отцентрируем по горизонтали */

    }
    .menu {
        width: 180px;

    }
    .popup__text{
        font-size: 16px;
    }
    .menu__item_a {

        font-size: 16px;

    }
    .popup__content{
        padding: 20px;
    }
    .popup__btn_mob{
        width: 150px;
        font-size: 16px;
    }
    .help__wrapp{
        align-items: center;
    }
}

/* 375-457 */
@media screen and (max-width: 457px) {

    .offer__text{
        width: 300px;
    }
    .team__wrapp {
        padding: 10px;
    }

    .industrial__wrapp_kit{
        flex-direction: column;
        gap: 5px;
    }
    .language__options_menu {
        left: 71%; /* Отцентрируем по горизонтали */

    }
}

/* 320-374 */
@media screen and (max-width: 374px) {
    .language__set{
        margin-right: 10px;
    }
    .industrial__rect-container {
        height: 200px;
    }
    .real__person{
        flex-direction: column;
        align-items: start;
    }
}