/*Header start*/
body{
    background: #fff !important;
}

.head {
    background: #0A111D !important;
    min-height: 195px;
    margin-bottom: 48px
}

.head .title {
    margin: 0;
    padding: 16px 0
}

.head_sm {
    min-height: 130px
}

.breadcrumbs {
    display: flex;
    font-size: 14px;
    line-height: 24px;
    color: #737787;
    padding: 24px 0;
    margin: 0;
    list-style: none;
    white-space: nowrap
}

.breadcrumbs__item {
    display: flex;
    align-items: center
}

.breadcrumbs__item:after {
    content: "|";
    display: inline-block;
    margin: 0 15px
}

.breadcrumbs__item:last-child:after {
    display: none
}

.breadcrumbs a {
    color: #737787;
    text-decoration: none
}

.breadcrumbs__span {
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 14px;
    max-width: 300px;
    display: inline-block
}

/*новый */
.new-home-banner {
    position: relative;
    height: 700px;
    background: #567EA8;
}
.new-home-banner {
    position: relative;
    height: 700px;
    background: #567EA8;
    overflow: hidden; /* добавь это */
}



.new-home-banner__slide {
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
}

.swiper-wrapper {
    width: 100%;
}

.new-home-banner__content {
    position: absolute;
    top: 100px;
    left: calc((100% - 1238px) / 2);
    width: 1238px;
    max-width: 644px;
    height: 100%;
    z-index: 9;
}

.new-home-banner__title.title {
    margin: 0;
    color: #FFFFFF;
}

.new-home-banner__title {
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.new-home-banner__description {
    margin-top: 1rem;
    color: #FFFFFF;
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: 0;
}

.new-home-banner .btn, .new-home-banner .main-banners__slide .btn {
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
}

.new-home-banner .new-home-banner__content .btn.btn_red,
.new-home-banner .new-home-banner__content .btn.btn_dark {
    position: relative;
}

.banners_action {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.banners_action .btn,.new-home-banner .main-banners__slide .btn {
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 15px 24px;
}

.new-home-banner a.btn_dark {
    background: #20263B;
    color: #ffffff;
}

.new-home-banner__slide {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.slide-new-2 .banner-image {
    position: absolute;
    right: calc((100vw - 1238px) / 2 - 150px);
    height: auto;
    z-index: 1;
}

.slide-new-2.slide_1 .banner-image{
    bottom: -600px;
    width: 500px;

}
.slide-new-2.slide_2 .banner-image{
    bottom: -706px;
    width: 680px;

}

.slide-new-2 .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   СТИЛИ ДЛЯ ТУЛТИПОВ/ВЫНОСОК
   ======================================== */

.block-tooltips {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Контейнер для одной выноски */
.production-tooltip {
    /*position: absolute;*/
    pointer-events: all;
    z-index: 10;
}

/* Кружок с иконкой */
.production-tooltip__icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    z-index: 12;
}

.production-tooltip__icon:hover {
    transform: scale(1.1);
}

.production-tooltip__icon svg {
    width: 18px;
    height: 18px;
}

/* Карточка выноски */
.production-tooltip__card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 16px 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    max-width: 332px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 11;
}

/* Состояние: карточка видима */
.production-tooltip.is-open .production-tooltip__card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Заголовок выноски */
.production-tooltip_title {
    display: block;
    font-family: Roboto, serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #0A111D;
    margin-bottom: 8px;
}

/* Описание выноски */
.production-tooltip_text {
    display: block;
    font-family: Roboto, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #20263B;
}

/* Иконка закрытия внутри карточки */
.production-tooltip__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.production-tooltip__close:hover {
    opacity: 1;
}

.production-tooltip__close svg {
    width: 14px;
    height: 14px;
}


/* ========================================
   ПОЗИЦИИ ДЛЯ СЛАЙДА 1 (5 ВЫНОСОК)
   Примерное равномерное распределение
   ======================================== */

.tooltips_1 .production-tooltip:nth-child(1) .production-tooltip__icon {
    top: 6%;
    left: 50%;
}

.tooltips_1 .production-tooltip:nth-child(1) .production-tooltip__card {
    top: calc(6% + 30px);
    right: calc(44% + 30px);
}
.tooltips_1 .production-tooltip:nth-child(1).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}

.tooltips_1 .production-tooltip:nth-child(2) .production-tooltip__icon {
    top: 40%;
    right: 27%;
}

.tooltips_1 .production-tooltip:nth-child(2) .production-tooltip__card {
    top: calc(40% + 30px);
    right: calc(27% + 30px);
}
.tooltips_1 .production-tooltip:nth-child(2).is-open .production-tooltip__card {
    transform: translateY(0) translateY(0);
}

.tooltips_1 .production-tooltip:nth-child(3) .production-tooltip__icon {
    top: 80%;
    right: 45%;
}

.tooltips_1 .production-tooltip:nth-child(3) .production-tooltip__card {
    top: calc(80% + 30px);
    right: calc(45% + 30px);
}

.tooltips_1 .production-tooltip:nth-child(3).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}

/* ========================================
   ПОЗИЦИИ ДЛЯ СЛАЙДА 2 (3 ВЫНОСКИ)
   ======================================== */
.tooltips_2 .production-tooltip__card {
    max-width: 330px;
    width: auto;
}
/* Первая выноска - верх по центру */
.tooltips_2 .production-tooltip:nth-child(1) .production-tooltip__icon {
    top: 9%;
    right: 16%;
}

.tooltips_2 .production-tooltip:nth-child(1) .production-tooltip__card {
    top: calc(9% + 30px);
    right: calc(16% + 30px);
}

.tooltips_2 .production-tooltip:nth-child(1).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}

/* Вторая выноска - справа по центру */
.tooltips_2 .production-tooltip:nth-child(2) .production-tooltip__icon {
    top: 30%;
    right: 16%;
    max-width: 192px;
}

.tooltips_2 .production-tooltip:nth-child(2) .production-tooltip__card {
    top: calc(30% + 30px);
    right: calc(16% + 30px);
}

.tooltips_2 .production-tooltip:nth-child(2).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}

/* Третья выноска - внизу по центру */
.tooltips_2 .production-tooltip:nth-child(3) .production-tooltip__icon {
    top: 55%;
    right: 12%;
}

.tooltips_2 .production-tooltip:nth-child(3) .production-tooltip__card {
    top: calc(55% + 30px);
    right: calc(12% + 30px);
}

.tooltips_2 .production-tooltip:nth-child(3).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}


.tooltips_2 .production-tooltip:nth-child(4) .production-tooltip__icon {
    top: 68%;
    left: 18%;
}

.tooltips_2 .production-tooltip:nth-child(4) .production-tooltip__card {
    top: calc(68% + 30px);
    left: calc(18% + 30px);
}
.tooltips_2 .production-tooltip:nth-child(4).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}

.tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__icon {
    top: 38%;
    left: 9%;
}

.tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__card {
    top: calc(30% + 30px);
    left: calc(9% + 33px);
    max-width: 240px;
}
.tooltips_2 .production-tooltip:nth-child(5).is-open .production-tooltip__card {
    transform: translateX(0) translateY(0);
}
@media (max-width: 1680px) {
    .slide-new-2 .banner-image{
        right: 80px;
    }
    .slide-new-2.slide_2 .new-home-banner__content {
        max-width: 580px;
    }
}
@media (max-width: 1500px) {
    .slide-new-2.slide_2 .banner-image {
        right: 20px;
    }
}
@media (max-width: 1400px) {
    .slide-new-2.slide_2 .banner-image {

    }
    .slide-new-2.slide_2 .new-home-banner__content {
        max-width: 500px;
    }
}
@media (max-width: 1280px) {
    .new-home-banner__content {
        left: 24px;
        width: calc(100% - 48px);
    }

    .slide-new-2 .banner-image {
        /*right: 24px;
        width: 40vw;
        height: calc(40vw * 0.863);
        max-width: 667px;
        max-height: 576px;*/
    }
    .slide-new-2.slide_1 .banner-image{
        bottom: -700px;
        width: 600px;
    }
    .slide-new-2.slide_2 .banner-image{
        bottom: -807px;
        width: 680px;
    }
    .tooltips_2 .production-tooltip:nth-child(2) .production-tooltip__icon {
        top: 26%;
    }
    .tooltips_2 .production-tooltip:nth-child(2) .production-tooltip__card {
        top: calc(26% + 30px);
    }
    .tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__icon {
        top: 39%;
        left: 9%;
    }
    .tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__card {
        top: calc(39% + 30px);
        max-width: 340px;
    }
}

@media (max-width: 1200px) {
    .new-home-banner__description {
        font-size: 18px;
        max-width: 85%;
    }
    .new-home-banner__description br {
        display: none;
    }
    .production-tooltip_title{
        margin-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .new-home-banner {
        height: 510px;
    }

    .new-home-banner__content {
        top: 10%;
        left: 20px;
        width: calc(100% - 40px);
    }

    .new-home-banner__title.title {
        font-size: 60px;
        line-height: 110%;
    }

    .new-home-banner__description {
        font-size: 16px;
        width: 50%;
        max-width: 100%;
    }

    .banners_action {
        margin-top: 30px;
    }


    .slide-new-2.slide_1 .banner-image {
        height: 332px;
        right: 24px;
        bottom: unset;
        top: 95px;
    }
    .slide-new-2.slide_2 .banner-image {
        width: auto;
        height: 500px;
        right: 0;
        bottom: -510px;
        top: unset;
    }
    .production-tooltip__card{
        padding: 8px 10px;
    }
    .tooltips_1 .production-tooltip__card{
        max-width: 280px;
    }
    .tooltips_1 .production-tooltip:nth-child(2) .production-tooltip__icon {
        right: 37%;
    }
    .tooltips_1 .production-tooltip:nth-child(2) .production-tooltip__card {
        top: calc(40% + 33px);
    }
    .tooltips_2 .production-tooltip:nth-child(3) .production-tooltip__icon {
        top: 43%;
    }
    .tooltips_2 .production-tooltip:nth-child(3) .production-tooltip__card {
        top: calc(43% + 30px);
        max-width: 200px;
    }
    .tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__icon {
        top: 40%;
        left: 7%;
    }
    .tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__card {
        top: calc(40% + 33px);
        max-width: 170px;
        left: 20px;
    }
    .tooltips_2 .production-tooltip:nth-child(4) .production-tooltip__icon {
        top: 74%;
    }
    .tooltips_2 .production-tooltip:nth-child(4) .production-tooltip__card {
        top: calc(74% + 30px);
    }
}

@media (max-width: 768px) {
    .new-home-banner__title.title {
        font-size: 40px;
    }
    .new-home-banner {
        height: auto;
        min-height: 680px;
    }

    .new-home-banner__title {
        font-size: 36px;
    }

    .slide-new-2 .new-home-banner__content {
        width: calc(100% - 20px);
        left: 0;
        top: 20px;
        position: relative;
        height: auto;
    }

    .new-home-banner__description {
        width: 100%;
    }

    .new-home-banner .btn, .new-home-banner .main-banners__slide .btn {
        font-size: 14px;
    }

    .banners_action .btn, .new-home-banner .main-banners__slide .btn {
        height: 41px;
        padding: 10px 20px;
    }

    .slide-new-2.new-home-banner__slide {
        flex-wrap: wrap;
    }

    .slide-new-2 .banner-image,.slide-new-2.slide_1 .banner-image,
    .slide-new-2.slide_2 .banner-image{
        position: relative;
        width: 335px;
        /*height: 400px;*/
        right: auto;
        top: 30px;
        bottom: auto;
        transform: none;
        margin: 0 auto;
        display: block;
        order: 2;
    }
    .slide-new-2.slide_1 .banner-image{
        width: 335px;
        top: 50px;
    }
    .slide-new-2.slide_2 .banner-image{
        width: auto;
        /*right: 20px;*/
        top: -30px;
        height: 380px;
    }

    /* Адаптация выносок для мобильных */
    .production-tooltip__card {
        max-width: 170px;
        padding: 8px 10px;
    }

    .production-tooltip_title {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .production-tooltip_text {
        font-size: 12px;
        line-height: 1.3;
    }



    .tooltips_1 .production-tooltip:nth-child(1) .production-tooltip__card {
        top: calc(6% + 33px);
        left: 10px;
    }
    .tooltips_1 .production-tooltip:nth-child(2) .production-tooltip__icon {
        right: 24%;
    }
    .tooltips_1 .production-tooltip:nth-child(2) .production-tooltip__card {
        top: calc(40% + 33px);
        right: 10px;
    }
    .tooltips_1 .production-tooltip:nth-child(3) .production-tooltip__icon {
        top: 70%;
        right: 58%;
    }
    .tooltips_1 .production-tooltip:nth-child(3) .production-tooltip__card {
        top: calc(71% + 33px);
        left: 10px;
    }
    .tooltips_2 .production-tooltip:nth-child(4) .production-tooltip__icon {
        top: 75%;
        left: 9%;
    }
    .tooltips_2 .production-tooltip:nth-child(4) .production-tooltip__card {
        top: calc(75% + 33px);
        left: 9%;
        max-width: 180px;
    }

    .tooltips_2 .production-tooltip:nth-child(3) .production-tooltip__icon {
        top: 60%;
        right: 10%;
    }
    .tooltips_2 .production-tooltip:nth-child(3) .production-tooltip__card {
        top: calc(60% + 33px);
        right: calc(1% + 30px);
        max-width: 190px;
    }
    .tooltips_2 .production-tooltip:nth-child(5) .production-tooltip__card {
        max-width: 240px;
    }

    .tooltips_2 .production-tooltip:nth-child(2) .production-tooltip__icon {
        top: 36%;
        right: 10%;

    }
    .tooltips_2 .production-tooltip:nth-child(2) .production-tooltip__card {
        top: calc(36% + 33px);
        right: 10%;
        max-width: 182px;
    }
    .tooltips_2 .production-tooltip:nth-child(1) .production-tooltip__icon {
        top: 10%;
        right: 10%;
    }
    .tooltips_2 .production-tooltip:nth-child(1) .production-tooltip__card {
        top: calc(10% + 33px);
        right: 10%;
    }
}
@media (max-width: 492px) {
    .slide-new-2.slide_1 .banner-image{
        top: 20px;
    }
    .tooltips_1 .production-tooltip__card {
        max-width: 170px;
    }
}

/* Скрываем/показываем изображения */
.desktop {
    display: block;
}

.mobile, .ipad {
    display: none;
}

@media (max-width: 1280px) {
    .new-home-banner__content {
        z-index: 2;
    }
}

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

    .mobile {
        display: block;
    }
}
/*
@media (max-width: 492px) {
    width: 40vw;
    left: 65.5%;
}

@media (max-width: 380px) {
    width: 38vw;
    left: 64.5%;
}*/

@media (max-width: 1500px) {
    .new-home-banner-nav {
        position: absolute;
        bottom: 1.5rem;
        right: 5%;
        justify-content: space-between;
        top: 0;
        width: 90%;
        display: none;
    }
}

.new-home-banner-nav__arrow {
    background: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='28' cy='28' r='28' fill='white' fill-opacity='0.11'/%3E%3Ccircle cx='28' cy='28' r='27.5' stroke='white' stroke-opacity='0.14'/%3E%3Cpath d='M19.9393 25.9393C19.3536 26.5251 19.3536 27.4749 19.9393 28.0607L29.4853 37.6066C30.0711 38.1924 31.0208 38.1924 31.6066 37.6066C32.1924 37.0208 32.1924 36.0711 31.6066 35.4853L23.1213 27L31.6066 18.5147C32.1924 17.9289 32.1924 16.9792 31.6066 16.3934C31.0208 15.8076 30.0711 15.8076 29.4853 16.3934L19.9393 25.9393ZM22 25.5H21V28.5H22V25.5Z' fill='white' fill-opacity='0.5'/%3E%3C/svg%3E%0A");
    border: 0;
    outline: 0;
    width: 56px;
    height: 56px;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 28px);
    z-index: 3;
    transition: opacity 0.3s;
}

@media (max-width: 1500px) {
    .new-home-banner-nav__arrow {
        position: relative;
    }
}

.new-home-banner-nav__arrow_next {
    right: 56px;
    transform: rotate(180deg);
}

@media (max-width: 1500px) {
    .new-home-banner-nav__arrow_next {
        right: unset;
        margin-left: 1rem;
    }
}

.new-home-banner-nav__arrow_prev {
    left: 56px;
}

@media (max-width: 1500px) {
    .new-home-banner-nav__arrow_prev {
        left: unset;
    }
}

.new-home-banner-nav__arrow:hover {
    opacity: 0.7;
}

.new-home-banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: 58px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.new-home-banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    background: #FFFFFF;
    margin: 0 8px;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.new-home-banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #C03A3A;
}

@media (max-width: 1500px) {
    .new-home-banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 1.5rem;
    }
}



/* Пульсация крестиков  */

.production-tooltip.is-open .production-tooltip__icon {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }
}



/* Плавная непрерывная пульсация волн на мобилке */
.production-tooltip:not(.is-open) .production-tooltip__icon::before,
.production-tooltip:not(.is-open) .production-tooltip__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: wave 2s linear infinite;
    animation-fill-mode: both;
}

.production-tooltip:not(.is-open) .production-tooltip__icon::after {
    animation-delay: 1s; /* половина периода */
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}


/* волны */





@media (max-width: 768px) {
.new-home-banner__slider {
    overflow: hidden;
}

.new-home-banner__slide {
    flex-shrink: 0;
}
    .swiper-wrapper {
        width: 100%;
    }

    .new-home-banner__slide {
        width: 100%;
        min-width: 100%;
    }
}

    .running_string .slide-new-2 .banner-image{
        position: initial;
    }
    .running_string .slide-new-2.slide_1 .banner-image{
        width: 100%;
    }
    .running_string .slide-new-2.slide_1 .banner-image img{
        height: 800px;
        width: 100%;
        object-fit: cover;
    }
    .running_string .btn{
        background: #F15454;
    }
    .running_string .title{
        font-weight: 400;
        font-size: 62px;
        line-height: 100%;
        letter-spacing: 0;
        text-transform: uppercase;

    }
    .running_string .block-tooltips{
        display: flex;
        flex-direction: column;
        gap: 40px;
        left: unset;
        top: 10%;
        z-index: 9;
        max-width: 350px;
        right: calc(50% - 800px);
    }
    .tooltip-inner{
        display: flex;
        gap: 15px;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        will-change: opacity, transform;
    }
    .tooltip-icon{
        background: #F8F8FA;
        border-radius: 50%;
        border: 3px solid #C4C4C4;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .tooltip-icon img{
        width: 30px;
        height: 30px;
    }
    .tooltip-content{
        display: flex;
        flex-direction: column;
        background: #F8F8FA;

        width: 275px;
        border-radius: 4px;
        padding: 10px 20px;
        font-family: Roboto, serif;
        line-height: 145%;
        letter-spacing: 0;
    }
    .tooltip-title{
        font-weight: 600;
        font-size: 18px;
    }
    .tooltip-text{
        font-weight: 400;
        font-size: 14px;
    }

    .tooltip-inner.tooltip-visible {
        opacity: 1;
    }
    @media (max-width: 1920px){
        .running_string .block-tooltips{
            right: 5%;
        }
    }
    @media (max-width: 1280px){

    }
    @media (max-width: 1024px){
        .running_string .slide-new-2.slide_1 .banner-image{
            height: 510px;
        }
        .running_string .new-home-banner__content{
            width: 100%;
        }
        .running_string .title{
            font-size: 60px;

        }
        .running_string .new-home-banner__description{
            font-size: 16px;
            width: 95%;
        }
        .running_string .block-tooltips{
            width: 252px;
            gap: 20px;
            top: 7%;
        }
        .tooltip-inner{
            align-items: center;
        }
        .tooltip-content {
            padding: 8px 10px;
            width: 195px;
        }
        .tooltip-icon{
            width: 47px;
            height: 47px;
        }
        .tooltip-icon img {
            width: 24px;
            height: 24px;
        }
        .tooltip-title {
            font-size: 14px;
        }
        .tooltip-text {
            font-size: 12px;
        }

    }
    @media (max-width: 768px){

	.new-home-banner.section-production-slider.running_string{

	}

        .running_string .new-home-banner__content {
            width: 95%;
        }
        .new-home-banner.running_string,
        .running_string .slide-new-2.slide_1 .banner-image,
        .running_string .slide-new-2.slide_1 .banner-image img{
            height: 680px;
            min-height: 680px;
        }
        .running_string .title{
            font-size: 56px;
        }
        .running_string .slide-new-2 .new-home-banner__content{
            position: absolute;
            top: 10%;
            left: 20px;
        }
        .running_string .block-tooltips {
            width: calc(100% - 40px);
            left: 20px;
            bottom: 60px;
            height: auto;
            justify-content: flex-end;
        }
        .tooltip-content {
            padding: 8px 10px;
            width: calc(100% - 62px);
            min-width: 210px;
        }

    }

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

.breadcrumbs__slider--led .breadcrumbs a {
	color:#FFFFFF;
}
.breadcrumbs__slider--led .breadcrumbs{
	color: #ffffff;
}
.new-home-banner__description--text{
	color:  rgba(255, 255, 255, 0.70);
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	margin-top: 20px;
}

.running_string .new-home-banner__content {
    max-width: 742px;
}


/*Header end*/

/**/

.section-production-slider.running_string{
	margin-bottom:90px;
}

.information__led--decription h2{
	color:#0A111D;
	font-family: "Bebas Neue";
	font-size: 52px;
	font-style: normal;
	line-height: 50px; /* 96.154% */
	letter-spacing: 0.4px;
	text-transform: uppercase;
	margin: 0;
}
.information__led--decription p{
    max-width: 703px;
    color:  rgba(10, 17, 29, 0.70);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; 
}
.information__led--decription{
	margin-bottom: 40px;
}

.section__block--rows{
    display: flex;
    gap: 32px;
	margin-bottom: 120px;
}
.section__block--item span{
    color:  #0A111D;
    font-family: "Bebas Neue";
    font-size: 26px;
    font-style: normal;
    line-height: normal;
	font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.section__block--item{
    position: relative;
}
.section__block--item::before{
    content: '';
    width: 30px;
    height: 30px;
    background-color: #F15454;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    left: -16px;
    top: -8px;
}


/**/


/*  */
.where__flexible h2{
    color:  #0A111D;
    font-family: "Bebas Neue";
    font-size: 52px;
    font-style: normal;
    line-height: 50px; 
    letter-spacing: 0.4px;
    text-transform: uppercase;
	max-width: 595px;
}
.where__flexible--box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 34px;
}
.where__flexible--item{
    display: flex;
    gap: 20px;
    align-items: center;
}
.where__flexible--item span{
    color: #222;
    font-family: "Bebas Neue";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 120% */
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.where__flexible__img img{
    min-width:150px;
}


/*  */
.advantages_flexible .moblie__header{
	display: none;
}
.advantages_flexible{
    background: #0A111D;
	margin-bottom: 120px;
}
.advantages_flexible--box{
    display: flex;
    gap: 32px;
    padding: 90px 0 40px 0;
}
.advantages_flexible--left h2{
    color: #FFF;
    font-family: "Bebas Neue";
    font-size: 42px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    max-width: 338px;
    margin: 0;
}
.advantages_flexible--left {
	width: 60%;
}
.advantages_flexible--right{
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2,1fr);
}
.advantages_flexible--item span{
    color: #FFF;
    font-family: "Bebas Neue";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    
}
.advantages_flexible--item span{
    position: relative;
     z-index: 0;
}

.advantages_flexible--item span::before{
    content: '';
    width: 30px;
    height: 30px;
    background-color: #F15454;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    left: -3%;
    top: -12%;
}


.advantages_flexible--description{
    color: #727786;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 20.3px */
}

/**/
.tech-specs--screen .tech-specs__title {
    color: #0A111D;
}

.tech-specs__inner .tech-specs__card {
    background: #ffffff;
    border: 1px solid  #0A111D;
}

.form--screen{
	margin-bottom: 120px;
}
.form--screen .form-contact {
    flex-wrap: wrap;
}
.tech-specs--screen .tech-specs__item {
    align-items: center;
}

/**/

.banner-image::after {  
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

@media(max-width:1024px){




.section__block--rows{
    margin-bottom: 90px;
}

    .section__block--rows{
        flex-wrap:wrap;
    }
	.advantages_flexible--box{
    flex-direction:column-reverse;
}

.where__flexible--box{
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
	.tech-specs--screen .tech-specs__main{
		flex-direction: column;
}

.advantages_flexible--left {
	width: unset;
	align-self: end;
	margin-bottom: 60px;
}
.advantages_flexible .moblie__header{
	display: block;
}
.advantages_flexible .moblie__header h2{
	color:  #FFF;
	font-family: "Bebas Neue";
	font-size: 50px;
	font-style: normal;
	font-weight: 400;
	line-height: 50px; /* 100% */
	letter-spacing: 0.4px;
	text-transform: uppercase;
	padding: 90px 0 50px 0;
}
.advantages_flexible--box{
	padding:0;
	gap:0;
}
.advantages_flexible--left h2{
	display: none;
}
.advantages_images{
	margin-top: -100px;
}
.form-contact-title, .form-contact-inner{
	flex-wrap: wrap;
    width: 100%;
}

 .form--screen .form-contact-title,
   .form--screen .form-contact-inner,
    .form--screen .w-50,
   .form--screen .form-contact input.w-50,
   .form--screen .form-contact button,
   .form--screen .form-contact label.w-50 {
        width: 100%;
    }

    .form-contact-title div,
    .form-contact-body {
        padding: 20px;
    }


}

@media(max-width:980px){
	.breadcrumbs__slider--led .breadcrumbs{
		display: flex;
}

}

@media(max-width:768px){

.information__led--decription h2{
	margin: 0;
}
.section__block--rows{
    margin-bottom: 70px;
}

	.section__block--item span{
		font-size: 24px;
		max-width: 315px;
		display: block;
}

	.tech-specs--screen .tech-specs__value {
		font-size: 14px;
}
	.tech-specs--screen .tech-specs__label{
		font-size: 12px;
}
.where__flexible h2{
    font-size: 50px;
    max-width: unset;
}
.advantages_flexible{
	margin-bottom: 90px;
}

.form--screen{
	margin-bottom: 90px;
}

}

@media(max-width:700px){
	.where__flexible--box{
    grid-template-columns: 1fr;
	}

	.where__flexible--item span{
    	font-size: 17px;
	}
	.advantages_images{
	margin-top:0px;
}

}

@media(max-width:575px){

.section-production-slider.running_string{
	margin-bottom:60px;
}
.information__led--decription{
	margin-bottom: 30px;
}

.breadcrumbs__slider--led .breadcrumbs__item:after {
    margin: 0 8px;
}

.information__led--decription h2{
	font-size: 30px;
	margin: 0;
}

.information__led--decription p{
	font-size: 16px;
	margin:0;
}

.section__block--item span{
	font-size: 18px;
	max-width: 100%;

	}

.where__flexible__img img{
    width: 90px;
    height: 90px;
	min-width: unset;
}

.advantages_flexible--right{
		  grid-template-columns: 1fr;
}

.advantages_flexible--left{
	align-self: start;
}

.advantages_flexible--item span{
	font-size: 18px;
}

.advantages_flexible--item span::before{
    width: 26px;
    height: 26px;
    top: -44%;
}

.where__flexible h2{
    font-size: 30px;
	line-height: normal;
}
.advantages_flexible--box{
	gap: 20px;
}

.advantages_flexible .moblie__header h2{
	font-size: 30px;
	line-height: normal;
}
.advantages_flexible--left {
	margin-bottom: 40px;
}

.advantages_flexible .moblie__header h2{
	padding: 60px 0 20px 0;
}

.advantages_flexible{
	margin-bottom: 60px;
}
.form--screen{
	margin-bottom: 60px;
}
.form--screen .form-contact-title h4{
        font-size: 26px;
    }

}









