  /* Переменные */
        :root {
            --teplo-main-color: #0260E8;
            --teplo-text-main-color: #333;
            --teplo-brad-regular: 10px;
            --teplo-max-width: 1600px;
        }

        /* Сброс стандартных стилей */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Общие стили */
        .teplo-page-container {
            color: var(--teplo-text-main-color);
            min-height: 100vh;
            position: relative;
        }

        .teplo-wrapper {
            position: relative;
            z-index: 2;
            max-width: var(--teplo-max-width);
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        /* Хедер */
        .teplo-header {
            padding: 0.129vw 1.129vw;
            background-color: rgb(255, 255, 255, 0.9);
            border-radius: var(--teplo-brad-regular);
            margin-bottom: 0;
            position: relative;
            z-index: 30;
            max-width: var(--teplo-max-width);
            margin-left: auto;
            margin-right: auto;
        }

        .teplo-header__top {
            width: 100%;
            max-width: var(--teplo-max-width);
            margin: 0 auto;
        }

        .teplo-header__top .teplo-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 0.0520833333vw solid rgba(28, 28, 28, 0.07);
            padding: 10px 0;
        }

        /* Логотип */
        .teplo-header__logo {
            animation: fadeInUp 0.6s ease-out;
        }

        .teplo-header__logo a {
            display: flex;
            align-items: center;
            color: var(--teplo-text-main-color);
        }

        .teplo-header__logo img,
        .teplo-header__logo svg {
            width: 8.365vw;
            height: auto;
            fill: var(--teplo-main-color);
        }

        .teplo-header__logo img path,
        .teplo-header__logo svg path {
            fill: var(--teplo-main-color);
        }

        /* Адрес */
        .teplo-header__address {
            display: flex;
            align-items: center;
            min-width: 150px;
            animation: fadeInUp 0.6s ease-out 0.2s backwards;
        }

        .teplo-header__address img,
        .teplo-header__address svg {
            width: 1.0416666667vw;
            height: 1.25vw;
            margin-right: 0.78125vw;
            fill: var(--teplo-main-color);
        }

        .teplo-header__address img path,
        .teplo-header__address svg path {
            fill: var(--teplo-main-color);
        }

        .teplo-header__address p {
            font-size: 0.625vw;
            line-height: 0.729vw;
            font-weight: 500;
        }

        .teplo-header__address p b {
            font-weight: 700;
        }

        /* Кнопка обратного звонка */
        .teplo-header__download {
            animation: fadeInUp 0.6s ease-out 0.3s backwards;
        }

        .teplo-header__download a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 3.125vw;
            padding: 0 1.5625vw;
            border-radius: 10px;
            background-color: #FFF2E6;
            cursor: pointer;
            transition: background-color 0.3s;
            min-width: 150px;
        }

        .teplo-header__download a img,
        .teplo-header__download a svg {
            width: 1.0416666667vw;
            height: 1.0416666667vw;
            fill: var(--teplo-main-color);
            transition: filter 0.3s;
        }

        .teplo-header__download a img path,
        .teplo-header__download a svg path {
            fill: var(--teplo-main-color);
        }

        .teplo-header__download a span {
            font-size: 0.521vw;
            text-transform: uppercase;
            color: var(--teplo-main-color);
            font-weight: 600;
            transition: color 0.3s;
        }

        .teplo-header__download a:hover {
            background-color: var(--teplo-main-color);
        }

        .teplo-header__download a:hover img,
        .teplo-header__download a:hover svg {
            filter: brightness(0) invert(1);
        }

        .teplo-header__download a:hover span {
            color: #fff;
        }

        /* Социальные сети */
        .teplo-header__social {
            display: flex;
            align-items: center;
            gap: 0.5vw;
            min-width: 150px;
            animation: fadeInUp 0.6s ease-out 0.4s backwards;
        }

        .teplo-header__social p {
            font-size: 0.625vw;
            line-height: 1.3;
            font-weight: 500;
            max-width: 5vw;
        }

        .teplo-header__social p b {
            font-weight: 600;
        }

        .teplo-social-links {
            display: flex;
            align-items: center;
        }

        .teplo-social-links a {
            width: 2.2916666667vw;
            height: 2.2916666667vw;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(230, 120, 23, 0.1);
            margin: 0 0.2604166667vw;
            transition: transform 0.3s;
        }

        .teplo-social-links a:hover {
            transform: scale(1.2);
        }

        .teplo-social-links a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Контакты */
        .teplo-header__contacts {
            display: flex;
            flex-direction: column;
            align-items: end;
            min-width: 150px;
            margin: 0 10px;
            animation: fadeInUp 0.6s ease-out 0.5s backwards;
        }

        .teplo-header__contacts p {
            font-size: 0.625vw;
            line-height: 1.3;
            font-weight: 500;
            margin-bottom: 0.5208333333vw;
        }

        .teplo-header__contacts p b {
            font-weight: 600;
        }

        .teplo-header__contacts a {
            font-size: 1.198vw;
            line-height: 1.3541666667vw;
            color: var(--teplo-text-main-color);
            font-weight: 600;
            margin-bottom: 0.15625vw;
            transition: color 0.3s;
        }

        .teplo-header__contacts a:hover {
            color: var(--teplo-main-color);
        }

        .teplo-header__contacts .teplo-call-back {
            color: var(--teplo-main-color);
            font-size: 0.8333333333vw;
            line-height: 0.9895833333vw;
            font-weight: 600;
        }

        /* Кнопка меню */
        .teplo-header__btn-wrap {
            display: none;
            animation: fadeInUp 0.6s ease-out 0.6s backwards;
        }

        .teplo-header__btn {
            width: 2.7vw;
            height: 1.5vw;
            position: relative;
            cursor: pointer;
            z-index: 1001;
        }

        .teplo-header__btn span {
            width: 100%;
            height: 0.2371428571vw;
            position: absolute;
            left: 0;
            background-color: var(--teplo-main-color);
            transition: all 0.3s ease;
        }

        .teplo-header__btn span:first-child {
            top: 0;
        }

        .teplo-header__btn span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .teplo-header__btn span:last-child {
            bottom: 0;
        }

        .teplo-header__btn.teplo-open span:first-child {
            top: 50%;
            transform: translateY(-50%) rotate(-45deg);
            width: 100%;
            opacity: 1;
        }

        .teplo-header__btn.teplo-open span:nth-child(2) {
            opacity: 0;
        }

        .teplo-header__btn.teplo-open span:last-child {
            bottom: 50%;
            transform: translateY(50%) rotate(45deg);
            width: 100%;
            opacity: 1;
        }

        /* Кнопка закрытия навигации */
        .teplo-nav__close-btn {
            display: none;
            width: 5vw;
            height: 3vw;
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            z-index: 1002;
        }

        .teplo-nav__close-btn span {
            width: 100%;
            height: 0.4vw;
            position: absolute;
            left: 0;
            background-color: var(--teplo-main-color);
            transition: all 0.3s;
        }

        .teplo-nav__close-btn span:first-child {
            top: 50%;
            transform: translateY(-50%) rotate(-45deg);
            width: 100%;
            opacity: 1;
        }

        .teplo-nav__close-btn span:last-child {
            bottom: 50%;
            transform: translateY(50%) rotate(45deg);
            width: 100%;
            opacity: 1;
        }

        /* Навигация */
        .teplo-header__nav {
            position: sticky;
            top: 0;
            /*background-color: #fff;*/
            z-index: 31;
            transition: background-color 0.3s;
            width: 100%;
            max-width: var(--teplo-max-width);
            margin: 0 auto;
        }

        .teplo-nav-wrap ul {
            list-style: none;
        }

        .teplo-nav-wrap .teplo-nav {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            padding: 0;
            gap: 0.5vw;
        }

        .teplo-nav-wrap .teplo-nav .teplo-nav-item {
            padding: 1vw 0.8vw;
            transition: color 0.3s;
            min-width: max-content;
            flex-shrink: 0;
            animation: fadeInUp 0.6s ease-out calc(0.1s * var(--index)) backwards;
        }

        .teplo-nav-wrap .teplo-nav .teplo-nav-item a {
            text-transform: uppercase;
            font-size: 1vw;
            color: var(--teplo-text-main-color);
            font-weight: 600;
            transition: color 0.3s;
        }

        .teplo-nav-wrap .teplo-nav .teplo-nav-item a:hover {
            color: var(--teplo-main-color);
        }

        /* Секция .teplo-first */
        .teplo-first {
            margin-top: -10vw;
            padding-top: 5vw;
            min-height: 100vh;
            position: relative;
            z-index: 10;
        }

        .teplo-first__bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            height: 100%;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .teplo-first__bg .teplo-main-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		 .teplo-first__bg .teplo-main-bg-mobi {
           display: none;
        }
		
		@media (max-width: 767px) {
    .teplo-main-bg {
        display: none;
    }

  .teplo-first__bg   .teplo-main-bg-mobi {
        display: block;
    }
}

        .teplo-first__content {
            padding: 10vw 15px;
            text-align: left;
            width: 100%;
        }

        .teplo-first__title {
            max-width: 60%;
            margin: 0 0 2vw 0;
            font-size: 2.5vw;
            line-height: 1.4;
            font-weight: 600;
			color: #fff;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .teplo-first__text {
            margin-bottom: 3vw;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .teplo-first__text p {
			color: #fff;
            max-width: 50%;
            margin: 0;
            font-size: 2.5vw;
            line-height: 1.2;
			font-weight: 700;
        }

        .teplo-first__buttons {
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            margin-bottom: 3vw;
            position: relative;
            top: 10px;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }
		
		  .teplo-first__buttons_mobi {
                display: none;
            }

        .teplo-first__buttons-btn {
            width: 20vw;
            padding: 1.8vw 3vw;
            background-color: var(--teplo-main-color);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1vw;
            line-height: 1;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s;
        }

        .teplo-first__buttons-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            animation: shine 2s infinite;
        }

        .teplo-first__buttons-btn:hover {
            background-color: #5199FF;
        }

        .teplo-first__bullets {
            position: relative;
            top: 30px;
            max-width: 100%;
            display: flex;
            justify-content: flex-start;
            flex-wrap: nowrap;
            gap: 1vw;
            margin: 0 0 2vw 0;
        }

        .teplo-first__bullets .teplo-bullets-item {
            max-width: 25%;
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5vw 1vw;
            border-radius: 10px;
            color: #fff;
            animation: fadeInUp 0.6s ease-out calc(0.8s + 0.2s * var(--index)) backwards;
        }

        .teplo-bullets-item > img {
            width: 2vw;
            height: 2vw;
            margin-right: 0.8vw;
        }

        .teplo-first__bullets .teplo-bullets-item p {
            font-size: 1vw;
            line-height: 1.5vw;
            max-width: 100%;
        }

        /* Медиа-запросы */
        @media (max-width: 1024px) {
            .teplo-header {
                padding: 10px 0;
            }

            .teplo-header__logo img,
            .teplo-header__logo svg {
                width: 15vw;
                height: auto;
            }

            .teplo-header__address p {
                font-size: 1vw;
                line-height: 1.2vw;
            }

            .teplo-header__download a {
                height: 4.5vw;
                padding: 0 2vw;
            }

            .teplo-header__download a span {
                font-size: 0.8vw;
            }

            .teplo-header__social p,
            .teplo-header__contacts p {
                font-size: 1vw;
            }

            .teplo-header__contacts a {
                font-size: 1.5vw;
                line-height: 1.8vw;
            }

            .teplo-nav-wrap .teplo-nav .teplo-nav-item a {
                font-size: 0.9vw;
            }

            .teplo-first__title {
                font-size: 4.5vw;
            }

            .teplo-first__text p {
                font-size: 3vw;
                line-height: 4vw;
            }

            .teplo-first__buttons-btn {
                width: 40vw;
                font-size: 2vw;
            }

            .teplo-first__bullets .teplo-bullets-item p {
                font-size: 1.5vw;
            }
        }

        @media (max-width: 768px) {
            .teplo-header {
                padding: 10px 0;
                position: relative;
				height: 50%;
            }

            .teplo-header__top .teplo-wrapper {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
                gap: 0;
            }

            .teplo-header__logo img,
            .teplo-header__logo svg {
                width: 20vw;
                height: auto;
            }

            .teplo-header__address,
            .teplo-header__download,
            .teplo-header__social p{
                display: none;
            }

            .teplo-header__contacts {
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .teplo-header__contacts p {
                font-size: 2.5vw;
                margin-bottom: 0.5vw;
            }

            .teplo-header__contacts a {
                font-size: 3vw;
                line-height: 3.5vw;
            }

            .teplo-header__contacts .teplo-call-back {
                font-size: 2vw;
            }

            .teplo-header__nav {
                display: none;
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
            }

            .teplo-header__nav .teplo-active {
                display: block;
                opacity: 1;
                position: fixed;
                top: 0;
                left: 0;
                width: 90%;
                height: 100%;
                background-color: #fff;
                padding: 20px;
                z-index: 1000;
                overflow-y: auto;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }

            .teplo-header__nav.teplo-active .teplo-nav__close-btn {
                display: block;
            }

            .teplo-nav-wrap .teplo-nav {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                margin-top: 40px;
                padding: 0;
            }

            .teplo-nav-wrap .teplo-nav .teplo-nav-item {
                padding: 10px 15px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                flex-shrink: 0;
                animation: none;
            }

            .teplo-nav-wrap .teplo-nav .teplo-nav-item:last-child {
                border-bottom: none;
            }

            .teplo-nav-wrap .teplo-nav .teplo-nav-item a {
                font-size: 4vw;
                color: var(--teplo-text-main-color);
                display: block;
            }

            .teplo-nav-wrap .teplo-nav .teplo-nav-item a:hover {
                color: var(--teplo-main-color);
            }

            .teplo-header__btn-wrap {
                display: flex;
                align-items: center;
                margin-right: 15px;
            }

            .teplo-header__btn {
                width: 5vw;
                height: 3vw;
                display: block;
            }

            .teplo-header__btn span {
                height: 0.4vw;
            }

            .teplo-first {
                padding-top: 5vw;
                padding-bottom: 2vw;
                min-height: auto;
                position: relative;
                z-index: 10;
            }

            .teplo-first__bg {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 100%;
                z-index: 1;
            }

            .teplo-first__bg .teplo-main-bg {
                object-fit: cover;
                height: 125%;
                width: 100%;
            }
			
            .teplo-first__content {
                padding: 5vw 15px;
                text-align: center;
                width: 100%;
            }

            .teplo-first__title {
				display: none;
              /*  max-width: 100%;
                margin: 0 auto 2vw;
                font-size: 4vw;
                line-height: 1.2;*/
            }

            .teplo-first__text p {
				display: none;
               /* max-width: 100%;
                margin: 0 auto;
                font-size: 3.5vw;
                line-height: 4.5vw;*/
            }

            .teplo-first__buttons {
				display: none;
              /*  display: flex;
                justify-content: center;
                flex-direction: column;
                margin-bottom: 3vw;
                align-items: center;*/
            }
			
			  .teplo-first__buttons_mobi {
                display: flex;
                justify-content: center;
                flex-direction: column;
				margin-top: 3vw;
                margin-bottom: 3vw;
                align-items: center;
            }

            .teplo-first__buttons-btn {
                width: 70vw;
                padding: 2vw 3vw;
                background-color: var(--teplo-main-color);
                color: #fff;
                border: none;
                border-radius: 5px;
                font-size: 3vw;
                line-height: 1;
                cursor: pointer;
                transition: background-color 0.3s;
            }

            .teplo-first__buttons-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 50%;
                height: 100%;
                background: linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.4),
                    transparent
                );
                animation: shine 2s infinite;
            }

            .teplo-first__buttons-btn:hover {
                background-color: #C65A00;
            }

            .teplo-first__bullets {
                display: grid;
                flex-wrap: wrap;
                justify-content: center;
                width: 100vh;
				height: 50vw;
                gap: 0;
                margin: 0 auto;
				margin-top: -16px;
				margin-left: -25px;
                padding: 0 5%;
				background-color: #101316;
            }

            .teplo-first__bullets .teplo-bullets-item {
				background: rgba(16, 19, 22);
            }

            .teplo-first__bullets .teplo-bullets-item img {
                width: 20px;
                height: 20px;
                margin-right: 8px;
            }

            .teplo-first__bullets .teplo-bullets-item p {
                font-size: 12px;
                line-height: 1.3;
            }
        }

        @media (max-width: 480px) {
            .teplo-header {
                padding: 10px 0;
            }

            .teplo-header__logo img,
            .teplo-header__logo svg {
				position: absolute;
                width: 30vw;
                height: auto;
            }

            .teplo-header__contacts p {
				display: none;
                /*font-size: 2vw;*/
            }

            .teplo-header__contacts a {
                font-size: 3vw;
                line-height: 4.5vw;
            }

            .teplo-header__contacts .teplo-call-back {
                font-size: 2.5vw;
            }

            .teplo-nav-wrap .teplo-nav .teplo-nav-item a {
                font-size: 5vw;
            }

            .teplo-header__btn {
                width: 7vw;
                height: 4vw;
            }

            .teplo-header__btn span {
                height: 0.5vw;
            }

            .teplo-nav__close-btn {
                width: 7vw;
                height: 4vw;
            }

            .teplo-nav__close-btn span {
                height: 0.8vw;
            }

            .teplo-first {
				margin-top: 0;
                padding-top: 5vw;
                padding-bottom: 2vw;
            }
            .teplo-first__content {
                padding: 5vw 10px;
            }

            .teplo-first__title {
                font-size: 6vw;
            }

            .teplo-first__text p {
                font-size: 4vw;
                line-height: 5vw;
            }

            .teplo-first__buttons-btn {
                width: 80vw;
                font-size: 3.5vw;
                padding: 5vw 3vw;
            }

            .teplo-first__bullets {
				position: absolute;
                top: 200px;
				height: 220px;
            }

            .teplo-first__bullets .teplo-bullets-item {
                max-width: 350px;
            }

            .teplo-bullets-item > img {
                width: 7vw;
                height: 7vw;
                margin-right: 1.5vw;
            }

            .teplo-first__bullets .teplo-bullets-item p {
                font-size: 13px;
                line-height: 1.2;
            }
			  .teplo-social-links a {
            width: 10vw;
            height: 10vw;
			margin: auto 5px;
			position: relative;
			left: 200px;
        }
		
		  .mobi a {
            width: 10vw;
            height: 10vw;
			margin: auto 5px;
			position: relative;
			left: 90px;
        }
    }
		
.calc-price__title {
  margin-bottom: 1.0416666667vw;
}
.md-main-title {
  font-weight: 600;
  font-size: 2.4vw;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: left;
}
  .md-main-title b {
  font-weight: 600;
  color:#5199FF;
}


 /* Секция услуг */
         .services {
            background: #2b2b2e;
            padding: 5vw 0;
            position: relative;
            overflow: hidden;
        }

        .services-wrapper {
            max-width: 1600px;
            margin: 100px auto;
            padding: 0 15px;
        }

        /* Заголовок */
        .services__title {
            color: #fff;
            font-size: 2.5vw;
            font-weight: 600;
            text-align: left;
            margin-bottom: 3vw;
        }

        .services__title b {
            font-weight: 600;
        }

        .title__descr {
            display: block;
            text-align: left;
            font-size: 1vw;
            color: #bbb;
            margin-top: 1vw;
        }

        /* Контейнер карточек */
        .services__container {
            width: 100%;
        }

        .container-flex {
            display: flex;
            flex-wrap: wrap;
            margin: -1.5vw;
        }

        /* Карточка услуги */
        .services__item {
            width: calc(25% - 3vw);
            min-height: 25vw;
            margin: 1.5vw;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background: #fff;
            transition: transform 0.3s;
            text-decoration: none;
            display: block;
        }

        .services__item:hover {
            transform: translateY(-5px);
        }

        .services__item:hover .item-img::after {
            opacity: 1;
            background-color: #fff;
        }

        .services__item:hover .item-title {
            color: #2b2b2e;
        }

        .services__item:hover .item-text {
            opacity: 1;
        }

        .item-img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .item-img::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #000;
            opacity: 0.4;
            transition: opacity 0.3s, background-color 0.3s;
            border-radius: 20px;
        }

        .item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .item-content {
            position: relative;
            z-index: 5;
            padding: 2vw;
            height: 100%;
            display: flex;
            flex-direction: column;
            color: #fff;
        }

        .item-title {
            font-size: 1.5vw;
            font-weight: 400;
            text-transform: uppercase;
            line-height: 1.8vw;
            margin-bottom: 1vw;
        }

        .item-text {
            font-size: 0.8vw;
            color: #808080;
            line-height: 1.4;
            padding: 0.8vw 0;
            flex-grow: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .item-bottom {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
        }

        .item-bottom__link {
            width: 50px;
            height: 50px;
            display: inline-flex;
            align-items: center;
            background: #0260E8;
            color: #fff;
            padding: 1.5vw;
            border-radius: 10px;
            font-size: 0.8vw;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s;
            position: relative;
            overflow: hidden;
        }

        .item-bottom__link:hover {
            background: #1771F1;
        }

        .item-bottom__link span::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            animation: shine 2s infinite;
            z-index: 1;
        }

        .item-bottom__link svg {
            margin-top: 0.5vw;
            margin-left: -0.5vw;
            width: 1vw;
            height: 1vw;
            position: relative;
            z-index: 2;
        }

        /* Анимация появления */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Анимация отблеска */
        @keyframes shine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .services {
				top: -350px;
                padding: 10vw 0;
            }

            .services-wrapper {
                width: 100vw;
            }

            .services__title {
                font-size: 6vw;
                margin-bottom: 6.25vw;
            }

            .title__descr {
                font-size: 3.5vw;
            }

            .container-flex {
                margin: -2.5vw;
            }

            .services__item {
                width: calc(50% - 3vw);
                margin: 1.5vw;
                min-height: 50vw;
                padding: 2vw;
            }

            .item-title {
                font-size: 3vw;
                line-height: 1.3;
                width: 100%;
				height: 40px;
				padding: 15px;
				background: rgba(0, 129, 235, 0.7);
				border-radius: 20px;
            }

            .item-text {
                font-size: 3.5vw;
                line-height: 4vw;
                padding: 3vw 0;
            }

            .item-bottom__link {
				display: none;
              /*  padding: 3vw;
                font-size: 3.5vw;
                width: 8vw;
                height: 8vw;*/
            }

            .item-bottom__link svg {
                width: 3vw;
                height: 3vw;
            }
        }
		
		
		 .outer-container {
            max-width: 1600px;
            margin: 0 auto 50px;
            position: relative;
        }

        .carousel-container {
            overflow: hidden;
            padding: 0 20px; 
            background-color: #fff; 
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            user-select: none;
            background-color: white; 
            touch-action: pan-y; /* Предотвращает вертикальную прокрутку при свайпе */
        }

        .carousel:hover {
            cursor: grab; 
        }

        .carousel:active {
            cursor: grabbing; 
        }

        .carousel-item {
            flex: 0 0 25%;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .carousel-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20px;
            bottom: 20px;
            width: 1px;
            background-color: #ccc; 
        }

        .carousel-item:last-child::after {
            display: none; 
        }

        .carousel-item img {
            width: 180px; 
            height: 120px; 
            object-fit: contain;
            transition: transform 0.3s ease;
            cursor: pointer; 
        }

        .carousel-item img:hover {
            transform: scale(1.1);
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background-color: #5199FF;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer; 
            font-size: 40px;
            padding: 0 0 8px 0;
            user-select: none;
            z-index: 10;
        }

        .prev {
            left: -70px; 
        }

        .next {
            right: -70px; 
        }

        @media (max-width: 768px) {
            .carousel-item {
                flex: 0 0 50%;
            }

            .carousel-item img {
                width: 140px; 
                height: 90px;
            }

            .carousel-container {
                padding: 0 40px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }

            .prev {
                left: 5px;
            }

            .next {
                right: 5px;
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                flex: 0 0 100%;
            }

            .carousel-item img {
                width: 120px; 
                height: 80px;
            }

            .carousel-container {
                padding: 0 30px;
            }

            .nav-arrow {
                width: 30px;
                height: 30px;
                font-size: 18px;
				padding: 0 0 4px 0;
            }

            .prev {
                left: 5px;
            }

            .next {
                right: 5px;
            }
        }
		
		
		
		
		
.reasons {
  padding-top: 3vw;
  padding-bottom: 4vw;
  position: relative;
}

.reasons .reasons-wrapper {
  width: 90.885vw;
  margin: 0;
  margin-left: auto !important;
}

.reasons__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.2vw;
}

.reasons__info {
  width: 34.896vw;
  position: sticky;
  top: 3.5vw;
}

.reasons__title {
  font-size: 2.344vw;
  font-weight: 600;
  line-height: 3.125vw;
  text-align: left;
  margin-bottom: 1.82vw;
  color: #fff;
}

.reasons__title span {
  font-weight: 700;
  margin-bottom: 1.82vw;
  color: #919191;
}

.reasons__sub-title {
  font-size: 1.458vw;
  line-height: 1.4;
  font-weight: 400;
  color: #B1B1B1;
}

.reasons__main {
  width: 62.5vw;
}

.reasons__block {
  width: 100%;
  height: 20.833vw;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 4vw;
}

.reasons__block-num {
  color: #5199FF;
  font-size: 2vw;
  font-weight: 700;
  position: absolute; /* Возвращаем абсолютное позиционирование */
  top: 1.3vw; /* Фиксируем вверху */
  left: 1.5vw; /* Фиксируем слева */
}

.reasons__block-img {
  width: 55%;
  height: 20.833vw;
  border-radius: 0 1.042vw 1.042vw 0;
  object-fit: cover;
}

.reasons__block-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Текст внизу */
  padding: 1.5vw;
  background: #F6F8FA;
  border-radius: 1.042vw 0 0 1.042vw;
  color: #1C1C1C;
  height: 20.833vw;
  width: 45%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.reasons__block-title {
  font-size: 1.25vw;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.78em;
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 25vw;
}

.reasons__block-text {
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 1.3;
  color: #959BAE;
  max-width: 25vw;
}

@media only screen and (max-width: 768px) {
  .reasons {
    padding-bottom: 10vw;
  }
  .reasons .reasons-wrapper {
    width: 80.25vw;
    margin: 0 auto;
  }
  .reasons__container {
    flex-direction: column;
  }
  .reasons__info {
    position: static;
    width: 100%;
  }
  .reasons__title {
    font-size: 6.25vw;
    margin-bottom: 2vw;
    line-height: 140%;
    text-align: left;
  }
  .reasons__sub-title {
    font-size: 5vw;
    margin-bottom: 4vw;
    line-height: 140%;
    text-align: left;
  }
  .reasons__main {
    width: 100%;
  }
  .reasons__block {
    height: auto;
    flex-direction: column;
    margin-bottom: 8vw;
  }
  .reasons__block-img {
    width: 100%;
    height: 50vw;
    border-radius: 0 0 10px 10px;
    object-fit: cover;
  }
  .reasons__block-num {
    font-size: 5vw;
    top: 3vw;
    left: 5vw;
  }
  .reasons__block-content {
    width: 100%;
    padding: 14vw 5vw 3vw;
    height: auto;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
    overflow: hidden;
    justify-content: flex-end;
  }
  .reasons__block-title {
    font-size: 4.395853vw;
    line-height: 138%;
    max-width: 100%;
    margin-top: 0;
  }
  .reasons__block-text {
    font-size: 3.25vw;
    line-height: 142%;
    max-width: 100%;
  }
}







  .u-get-cons {
            position: relative;
        }

        .u-get-cons .wrapper {
            max-width: 1600px;
        }

        .u-cont {
            width: 100%;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            border-radius: var(--brad-regular);
            color: #fff;
            padding: 5.208vw 0;
            max-height: 40vw;
        }

        .u-title {
            text-align: left;
            margin-bottom: 1.3020833333vw;
            max-width: 45.625vw;
        }

        .u-form {
            margin-bottom: 1.0416666667vw;
        }

        .u-form .u-f-btn {
            width: 24.479vw;
            justify-content: center;
            background: linear-gradient(90deg, #ff6200, #ff8c00);
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 700;
            padding: 10px 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .u-form .u-f-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: skewX(-30deg);
            animation: shine 2s infinite ease-in-out;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        .u-form .u-f-btn span {
            position: relative;
            z-index: 1;
        }

        .u-form .u-f-sel,
        .u-form .u-f-inp {
            width: 24.479vw;
            z-index: 1;
            border-radius: 5px;
            padding: 10px 20px;
        }

        .u-person {
            position: absolute;
            width: 49.219vw;
            height: 35vw;
            right: 0;
            bottom: 0;
        }

        .u-get__text {
            font-size: 0.85vw !important;
            margin-bottom: 1vw !important;
        }

        .u-person .u-p-info {
            width: 8.5520833333vw;
            position: absolute;
            top: 15vw;
            left: 5.8854166667vw;
            display: flex;
            flex-direction: column;
        }

        .u-person .u-p-info p {
            font-weight: 500;
            font-size: 1.25vw;
            text-transform: uppercase;
            line-height: 1.4583333333vw;
            text-align: right;
            letter-spacing: 0;
        }

        .u-person .u-p-info span {
            font-weight: 400;
            font-size: 0.8333333333vw;
            line-height: 1.9270833333vw;
            text-align: right;
            letter-spacing: 0;
        }

        .u-person .u-p-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .u-links {
            display: flex;
            align-items: center;
        }

        .u-links p {
            font-weight: 500;
            font-size: 1.5625vw;
            line-height: 1.9270833333vw;
            letter-spacing: 0;
            margin-right: 1.3020833333vw;
        }

        .u-links p b {
            font-weight: 700;
        }

        .u-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3.0208333333vw;
            height: 3.0208333333vw;
            border-radius: 50%;
            margin-right: 0.625vw;
            transition: 0.3s;
        }

        .u-links a:hover {
            transform: scale(1.2);
        }

        .u-links a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .u-get-cons.u-md-2 {
            margin-bottom: 0;
        }

        .u-get-cons.u-md-2 .u-cont {
            padding: 6.25vw 0;
        }

        .u-get-cons.u-md-2 .u-content {
            display: flex;
            height: 100%;
            align-items: stretch;
            justify-content: space-between;
        }

        .u-get-cons.u-md-2 .u-info {
            width: 29.427vw;
            height: 100%;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
        }

        .u-get-cons.u-md-2 .u-text {
            font-weight: 400;
            font-size: 1.458vw;
            line-height: 1.4;
            letter-spacing: 0;
            margin-bottom: 3.125vw;
            flex-grow: 1;
        }

        .u-get-cons.u-md-2 .u-form {
            width: 20.8333333333vw;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
        }

        .u-get-cons.u-md-2 .u-form .u-f-cont {
            flex-direction: column;
        }

        .u-get-cons.u-md-2 .u-form .u-f-text {
            font-weight: 400;
            text-transform: uppercase;
            font-size: 1.4vw;
            line-height: 1.5;
            letter-spacing: 0;
            margin-bottom: 1vw;
        }

        .u-get-cons.u-md-2 .u-form .u-f-list {
            list-style: disc;
            margin-bottom: 1.4583333333vw;
        }

        .u-v-num {
            font-size: 0.9vw;
            font-weight: 500;
        }

        .u-get-cons.u-md-2 .u-form .u-f-list li {
            font-weight: 500;
            font-size: 0.8333333333vw;
            line-height: 1.4583333333vw;
            letter-spacing: 0;
            position: relative;
        }

        .u-get-cons.u-md-2 .u-form .u-f-inp {
            width: 100%;
            margin-right: 0;
            margin-bottom: 1.0416666667vw;
        }

        .u-get-cons.u-md-2 .u-form .u-f-btn {
            width: 100%;
            justify-content: center;
            background: linear-gradient(90deg, #ff6200, #ff8c00);
            border: none;
            border-radius: 5px;
            color: #fff;
            font-weight: 700;
            padding: 10px 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .u-get-cons.u-md-2 .u-form .u-f-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: skewX(-30deg);
            animation: shine 2s infinite ease-in-out;
        }

        .u-get-cons.u-md-2 .u-form .u-f-btn span {
            position: relative;
            z-index: 1;
        }

        .u-get-cons.u-md-2 .u-person {
            width: 39.614583vw;
            height: 35vw;
            position: absolute;
            left: 35.791667vw;
            bottom: 0;
        }

        .u-get-cons.u-md-2 .u-person .u-p-info {
            top: 15vw;
            left: auto;
            right: 7vw;
            bottom: auto;
        }

        .u-get-cons.u-md-2 .u-person .u-p-info p,
        .u-get-cons.u-md-2 .u-person .u-p-info span {
            text-align: left;
        }

        .u-get-cons.u-md-2 .u-contacts {
            margin-bottom: 3.125vw;
        }

        .u-get-cons.u-md-2 .u-contacts p {
            font-weight: 600;
            font-size: 1.25vw;
            line-height: 2.6041666667vw;
            letter-spacing: 0;
        }

        .u-get-cons.u-md-2 .u-contacts a {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5625vw;
            line-height: 2.6041666667vw;
            letter-spacing: 0;
            color: #fff;
            white-space: nowrap;
            margin-right: 10px;
        }

        .u-get-cons.u-md-2 .u-contacts a:hover span {
            color: var(--main-color);
        }

        .u-get-cons.u-md-2 .u-contacts a span {
            transition: 0.3s;
        }

        .u-get-cons.u-md-2 .u-contacts a img,
        .u-get-cons.u-md-2 .u-contacts a svg {
            width: 1.09375vw;
            height: 1.09375vw;
            object-fit: cover;
            fill: var(--main-color);
            margin-right: 0.5208333333vw;
        }

        .u-get-cons.u-md-2 .u-contacts a img path,
        .u-get-cons.u-md-2 .u-contacts a svg path {
            fill: var(--main-color);
        }

        .u-get-cons.u-md-2 .u-links p {
            width: 9.8541666667vw;
            font-size: 1vw;
            line-height: 1.5625vw;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk .checked {
            position: relative;
            display: flex;
            align-items: center;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk .checked::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #ff6200;
            border-radius: 50%;
            z-index: 0;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk .checked img {
            position: relative;
            z-index: 1;
            width: 10px;
            height: 10px;
            left: 5px;
            right: 0;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk .checked input {
            display: none;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk p {
            margin: 10px 0 0 20px;
            font-size: 0.7vw;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk p span {
            color: #ff6200;
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .u-get-cons.u-md-2 .u-form .u-f-chk p span:hover {
            color: #ff8c00;
        }

        @media only screen and (max-width: 768px) {
            .u-cont {
                padding: 10vw 3.125vw 55vw;
                background-size: cover;
                background-position: center center;
                background-repeat: no-repeat;
                border-radius: var(--brad-regular);
                max-height: none;
            }

            .u-title {
                margin-bottom: 2.8125vw;
                max-width: 100%;
                text-align: center;
            }

            .u-cons__list {
                font-size: 3vw !important;
                line-height: 1;
                width: 100%;
                margin-top: 1vw;
            }

            .u-cons__list p {
                font-size: 3.458vw !important;
                margin-bottom: -1vw;
                text-transform: none;
                font-weight: 400;
            }

            .u-cons__list ul {
                padding-left: 13vw !important;
                font-weight: 400;
                text-transform: none;
                display: flex;
                text-align: left;
                align-items: baseline;
                flex-direction: column;
                width: 100%;
            }

            .u-person {
                position: relative;
                width: 100%;
                height: 45vw;
                margin-top: 20vw;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 10px;
            }

            .u-person .u-p-img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                display: block;
            }

            .u-person .u-p-info {
                position: static;
                 width: 50%;
                text-align: left;
                margin: 0;
            }

            .u-person .u-p-info p {
                font-size: 4.375vw;
                line-height: 1.4;
                margin: 0;
               margin-left: -100%;
            }

            .u-person .u-p-info span {
                font-size: 3.125vw;
                line-height: 6.875vw;
                margin: 0;
              margin-left: -100%;
            }

            .u-form {
                width: 100%;
                margin: 0 auto;
                margin-bottom: 8.875vw;
                padding: 0;
            }

            .u-form .u-f-text {
                text-align: center;
                font-size: 3.6vw !important;
                margin-bottom: 3vw !important;
            }

            .u-form .u-f-inp {
                margin: 0;
                width: 100%;
                margin-bottom: 3.125vw;
            }

            .u-form .u-f-btn {
                width: 100%;
                padding: 10px 20px;
                background: linear-gradient(90deg, #ff6200, #ff8c00);
                border: none;
                border-radius: 5px;
                color: #fff;
                font-weight: 600;
                position: relative;
                overflow: hidden;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .u-form .u-f-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 50%;
                height: 100%;
                background: rgba(255, 255, 255, 0.3);
                transform: skewX(-30deg);
                animation: shine 2s infinite ease-in-out;
            }

            .u-form .u-f-btn span {
                position: relative;
                z-index: 1;
            }

            .u-form .u-f-btn:hover {
                padding: 10px 20px;
            }

            .u-form .u-f-chk {
                justify-content: center;
            }

            .u-form .u-f-chk p {
                width: 100%;
            }

            .u-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .u-links p {
                width: 100%;
                margin: 0;
                margin-bottom: 3.125vw;
                font-size: 3.75vw;
                line-height: 6.25vw;
                text-align: center;
            }

            .u-links a {
                width: 14.0625vw;
                height: 14.0625vw;
                margin: 0 1.562vw;
            }

            .u-get-cons.u-md-2 {
                overflow: visible;
                background-position: center center !important;
                background-size: cover !important;
                background-repeat: no-repeat !important;
            }

            .u-get-cons.u-md-2 .u-cont {
                padding: 7.8125vw 7.8125vw 55vw;
            }

            .u-get-cons.u-md-2 .u-content {
                flex-direction: column;
            }

            .u-get-cons.u-md-2 .u-info {
                width: 100%;
            }

            .u-get-cons.u-md-2 .u-title {
                margin-bottom: 3.125vw;
                max-width: 100%;
				font-size: 20px; 
				font-weight: 600;
				text-align: center;
            }

            .u-get-cons.u-md-2 .u-text {
                width: 100%;
                text-align: center;
                font-size: 3.75vw;
                line-height: 4.6875vw;
                margin-bottom: 6.25vw;
            }

            .u-get-cons.u-md-2 .u-contacts {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-bottom: 6.25vw;
            }

            .u-get-cons.u-md-2 .u-contacts p {
                font-size: 4.375vw;
                line-height: 5.625vw;
                margin-bottom: 4.6875vw;
            }

            .u-get-cons.u-md-2 .u-contacts a img,
            .u-get-cons.u-md-2 .u-contacts a {
                width: 3.4375vw;
                height: 3.4375vw;
                margin-right: 2.1875vw;
            }

            .u-get-cons.u-md-2 .u-contacts a span {
                font-size: 4.375vw;
				position: relative;
				left: -60px;
            }

            .u-get-cons.u-md-2 .u-links {
                width: 100%;
                margin-bottom: 9.375vw;
            }

            .u-get-cons.u-md-2 .u-links p {
                width: 100%;
                font-size: 3.75vw;
                line-height: 4.375vw;
                margin-bottom: 3.125vw;
            }

            .u-get-cons.u-md-2 .u-form {
                width: 63.125vw;
                margin: 0 auto;
            }

            .u-get-cons.u-md-2 .u-form .u-f-text {
                font-size: 4vw;
                line-height: 1.4;
                margin-bottom: 4.6875vw;
                padding: 0;
            }

            .u-v-num {
                font-size: 4vw;
                text-align: center;
                font-weight: 500;
            }

            .u-get-cons.u-md-2 .u-form .u-f-list {
                margin-bottom: 5.625vw;
                text-align: center;
            }

            .u-get-cons.u-md-2 .u-form .u-f-list li {
                font-size: 3.125vw;
                line-height: 5.625vw;
            }

            .u-get-cons.u-md-2 .u-form .u-f-inp {
                margin-bottom: 3.125vw;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk .checked {
                position: relative;
                display: flex;
                align-items: center;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk .checked::before {
                content: '';
                position: absolute;
                width: 20px;
                height: 20px;
                background: #ff6200;
                border-radius: 50%;
                z-index: 0;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk .checked img {
                position: relative;
                z-index: 1;
                width: 10px;
                height: 10px;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk .checked input {
                display: none;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk p {
                font-size: 3vw;
				line-height: 1.2;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk p span {
                color: #ff6200;
                text-decoration: underline;
                cursor: pointer;
                transition: color 0.3s ease;
            }

            .u-get-cons.u-md-2 .u-form .u-f-chk p span:hover {
                color: #ff8c00;
            }
        }
		
		
		
		
		
		
 .warranty {
            position: relative;
            margin-bottom: 2.865vw;
        }

        .warranty .wrapper {
            max-width: 1600px;
        }
        
        .warranty__container {
            overflow: hidden;
            padding: 5.729vw 0;
            padding-right: 20.833vw;
            color: #fff;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .warranty__title {
            text-align: left;
            margin-bottom: 3.646vw;
        }

        .warranty__bullets {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding-right: 10vw;
        }

        .warranty__bullets .bullets-item {
            margin: 0;
            width: 13.5vw;
            margin-top: 2.6041666667vw;
            margin-right: 3.125vw;
        }

        .warranty__descr {
            font-weight: 1.563vw;
            color: #C6C6C6;
        }

        .warranty__bullets .bullets-item:nth-child(3n+3) {
            margin-right: 0;
        }

        .warranty__bullets .bullets-item:nth-child(1),
        .warranty__bullets .bullets-item:nth-child(2),
        .warranty__bullets .bullets-item:nth-child(3) {
            margin-top: 0;
        }

        .warranty__text {
            position: absolute;
            right: 6.3541666667vw;
            bottom: 32.96875vw;
            width: 19.9479166667vw;
            text-align: center;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .warranty__text p {
            font-weight: 700;
            font-size: 1.25vw;
            line-height: 1.8229166667vw;
            letter-spacing: 0;
            margin-bottom: 1.1979166667vw;
        }

        .warranty__text span {
            font-weight: 400;
            font-size: 0.8333333333vw;
            line-height: 1.25vw;
            letter-spacing: 0;
        }

        .warranty__text span b {
            font-weight: 600;
        }

        .warranty__img {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 41.760417vw;
            height: 38.520833vw;
            overflow: hidden;
        }

        .warranty__img img {
            width: 100%;
            height: 39.3229166667vw;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            -o-object-fit: cover;
            object-fit: cover;
            pointer-events: none;
        }

        @media only screen and (max-width: 768px) {
            .warranty {
                margin-bottom: 8.5vw;
            }

            .warranty__container {
                padding: 0;
                padding-top: 10vw;
                padding-bottom: 75.5vw;
                border-radius: var(--brad-regular);
            }

            .warranty__title {
				font-size: 18px;
				margin: 0 10px;
                text-align: center;
                margin-bottom: 7.8125vw;
            }
			 .warranty__title span {
                text-align: center;
            }

            .warranty__bullets {
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                margin-bottom: 6.25vw;
                padding: 0 3.125vw;
            }

            .warranty__bullets .bullets-item {
                width: 45%;
                max-width: 45%;
                margin: 0;
                margin-bottom: 4.6875vw;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .warranty__bullets .bullets-item > img {
                padding-right: 0;
                margin-bottom: 0.5vw;
                display: block;
                margin-left: auto;
                margin-right: auto;
            }

            .warranty__bullets .bullets-item span {
                width: 6.875vw;
                height: 6.875vw;
                margin-bottom: 2.8125vw;
            }

            .warranty__bullets .bullets-item span img,
            .warranty__bullets .bullets-item span svg {
                width: 2.1875vw;
                height: 1.5625vw;
            }

            .warranty__bullets .bullets-item p {
                font-size: 2.4875vw;
                line-height: 3.425vw;
                text-align: center;
            }

            .warranty__text {
                position: static;
                width: 100%;
                text-align: center;
            }

            .warranty__text p {
                font-size: 3.75vw;
                line-height: 5.625vw;
                margin-bottom: 3.125vw;
            }

            .warranty__text span {
                font-size: 3.125vw;
                line-height: 4.375vw;
            }

            .warranty__img {
                width: 75.125vw;
                height: 80.75vw;
                left: auto;
                right: 0;
                bottom: 0;
            }

            .warranty__img img {
                width: 100%;
                height: auto;
            }
        }
		
		
		
		
		
		
		
		/* здесь будет блок слйдер выполненных работ*/
		
		
		
		
		
		
		
		.report{
  padding-top: 4vw;
  padding-bottom: 2.865vw;
  position: relative;
}

.report .wrapper{
 max-width: 1600px;
}

.report__container{
  display: flex;
  align-items: center;
  gap: 2.604vw;
}

.report__img{
  width: 33.854vw;
  height: 43.281vw;
  border-radius: 20px;

  object-fit: cover;
}

.report__title{
  font-size: 2.5vw;
  font-weight: 600;
  margin-bottom: 2vw;
  line-height: 1.4;
  text-align: left;
  /* width: 36vw; */
}

.report__subtitle{
  font-size: 1.7vw;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4.74vw;
  width: 39.271vw;
}

.report__number{
  font-size: 1.667vw;
  font-weight: 700;
  color:#2A2A2D;
}

.report__list{
  display: flex;
  flex-wrap: wrap;
  gap: 1.563vw;
}

.report__list-item{
  background-color: #FBFBFB;
  width: 21.875vw;
  height: 6.51vw;
  border-radius: 20px;
  padding-left: 2vw;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25vw;
}

.report__list-item p:nth-child(1){
  color: #FF5431;
  font-size: 1.66667vw;
  font-weight: 600;
}

.report__list-item p:nth-child(2){
  font-size: 1.2vw;
  font-weight: 500;
  color: #2A2A2D;
  line-height: 1.2;
  width: 6.64583vw;
}

@media only screen and (max-width: 768px){
  .report{
    padding-bottom: 10vw;
	margin: 0 20px;
  }
  .report__container{
    flex-direction: column;
    gap: 3vw;
  }
  .report__img{
    width: 100%;
    margin: 0 auto;
    height: 75vw;
    margin-bottom: 4vw;
  }

  .report__number {
    font-size: 4.667vw;
    font-weight: 700;
    margin-bottom: 6vw;
    color: #2A2A2D;
    display: block;
}

  .report__title{
    font-size: 5vw;
    line-height: 140%;
    text-align: center;
    margin-bottom: 2vw;
    width: 100%;
  }

  .report__title-text br {
    content: "";
  }
  .report__title-text br:after {
    content: " ";
  }
  .report__subtitle{
    font-size: 4vw;
    line-height: 135%;
    width: 100%;
    text-align: center;
    margin-bottom: 3vw;
  }
  .report__list{
    justify-content: center;
    gap: 3vw;
  }
  .report__list-item{
    width: 45%;
    gap: 5vw;
    height: 10vw;
  }
  .report__list-item p:nth-child(1){
    font-size: 3vw;
  }
  .report__list-item p:nth-child(2){
    font-size: 2.5vw;
    line-height: 135%;
    width: 75%;
  }
}




.deadlines{
  padding-top: 2.865vw;
  padding-bottom: 7vw;
  position: relative;
}

.deadlines .wrapper{
 max-width: 1600px;
}

.deadlines__title{
  margin-bottom: 2vw;
  max-width: 45.313vw;
}

.deadlines__container{
  display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}

.deadlines__block{
  width: 19.27083vw;
  text-align: center;
  position: relative;
}

.deadlines__block-check{
  position: absolute;
  right: 1vw;
  top: 1vw;
  width: 2.08333vw;
  height: 2.08333vw;
}
.deadlines__block-check svg{
  width: 100%;
  height: 100%;
}

.deadlines__block-img{
  width: 100%;
  height: 12.5vw;
  border-radius: 20px;
  margin-bottom: 1.56vw;
  object-fit: cover;
}

.deadlines__block-title{
  font-size: 1vw;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.83vw;
}

.deadlines__block-text{
  font-size: 0.938vw;
  color:#959BAE;
  line-height: 1.4;
}

@media only screen and (max-width: 768px){
   .deadlines{
    padding-bottom: 10vw;
	margin: 0 20px;
  }
  .deadlines__container{
    flex-wrap: wrap;
    gap: 2vw 0;
  }
   .deadlines__title{
    font-size: 20px;
	max-width: 300px;
	text-align: center;
  }
  .deadlines__block{
    width: 48%;
  }
  .deadlines__block-img{
    height: 26vw;
	border-radius: 10px;
  }
  .deadlines__block-check{
    width: 5vw;
    height: 5vw;
  }
  .deadlines__block-title{
    font-size: 3.5vw;
    line-height: 135%;
    margin-bottom: 1vw;
  }
  .deadlines__block-text{
    font-size: 2.5vw;
    line-height: 135%;
  }
  .deadlines__block-text br {
    content: "";
  }
  .deadlines__block-text br:after {
    content: " ";
  }
  }
  
  
  
  
  
  
 .clients-choose {
            position: relative;
        }
        .clients-choose .wrapper {
            max-width: 1600px;
            margin: 0 auto;
        }
        .clients-choose__title {
            padding-bottom: 70.3125vw;
        }
        .clients-choose__container {
            position: relative;
        }
        .clients-choose__slider {
            display: none;
        }
        .clients-choose__bg {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 110%;
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            z-index: -1;
        }
        .clients-choose__bullets {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: stretch;
            color: #fff;
            margin: 0 -2.6041666667vw;
            overflow: hidden;
        }
        .clients-choose__bullets .bullets-item {
            width: 20%;
            flex-grow: 1;
            max-width: 20%;
            padding: 0 2.6041666667vw;
            padding-bottom: 3.125vw;
            margin: 0;
            display: flex;
            flex-direction: column;
            border-left: 0.0520833333vw solid rgba(255, 255, 255, 0.25);
            transform: translateY(25%);
            transition: 0.3s;
        }
        .clients-choose__bullets .bullets-item:hover {
            transform: translateY(0%);
        }
        .clients-choose__bullets .bullets-item:hover .bullets-item__text {
            opacity: 1;
        }
        .clients-choose__bullets .bullets-item:first-child {
            border-left: none;
        }
        .clients-choose__bullets .bullets-item__number {
            width: 2.0833333333vw;
            height: 2.0833333333vw;
            border-radius: 10px;
            background-color: var(--main-color, #FF5431);
            font-weight: 500;
            font-size: 0.8333333333vw;
            line-height: 1.7708333333vw;
            letter-spacing: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.0416666667vw;
            position: relative;
            z-index: 3;
        }
        .clients-choose__bullets .bullets-item__number::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 10px;
            background-color: var(--main-color, #FF5431);
            animation: pulse_2_small 2s linear infinite;
            z-index: -1;
        }
        .clients-choose__bullets .bullets-item__title {
            font-weight: 500;
            font-size: 1.406vw;
            text-transform: uppercase;
            line-height: 1.3;
            letter-spacing: 0;
        }
        .clients-choose__bullets .bullets-item__text {
            padding-top: 0.78125vw;
            font-weight: 300;
            font-size: 1.0416666667vw;
            line-height: 1.40625vw;
            letter-spacing: 0;
            transition-property: opacity;
            transition-duration: 0.3s;
            opacity: 0;
            flex-grow: 1;
        }

        @keyframes pulse_2_small {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.2;
            }
            100% {
                transform: scale(1);
                opacity: 0.5;
            }
        }

        @media only screen and (max-width: 768px) {
            .clients-choose {
                z-index: 1;
            }
            .clients-choose__bg {
                height: 110%;
                background-position: center top;
            }
            .clients-choose__bg::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.16%, rgba(0, 0, 0, 0.62) 108.39%);
            }
            .clients-choose__title {
                padding: 0 3.125vw;
                padding-bottom: 40vw;
				font-size: 20px;
	            max-width: 400px;
	            text-align: center;
            }
            .clients-choose__bullets {
                display: none;
            }
            .clients-choose__slider {
                display: block;
                margin: 0 -2.875vw;
                padding: 0 6.875vw;
                padding-bottom: 15.625vw;
                overflow: hidden;
                position: relative;
            }
            .clients-choose__slider .slider-hint {
                position: absolute;
                top: 1vw;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(0, 0, 0, 0.5);
                padding: 2vw 4vw;
                border-radius: 5px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                z-index: 10;
            }
            .clients-choose__slider .slider-hint span {
                color: #fff;
                font-size: 3.5vw;
                margin-right: 1.5vw;
            }
            .clients-choose__slider .swiper-container {
                overflow: visible;
                margin-top: 8vw;
            }
            .clients-choose__slider .slider-pagination {
                bottom: 7.8125vw;
            }
            .clients-choose__slider .slider-pagination .swiper-pagination-bullet {
                background-color: #fff;
            }
            .clients-choose__slider .swiper-slide {
                overflow: visible !important;
            }
            .clients-choose__slider .swiper-slide .bullets-item {
                max-width: 100%;
                color: #fff;
            }
            .clients-choose__slider .swiper-slide .bullets-item__number {
                width: 6.25vw;
                height: 6.25vw;
                border-radius: 50%;
                background-color: var(--main-color, #FF5431);
                font-weight: 500;
                font-size: 3.125vw;
                line-height: 10.625vw;
                display: flex;
                align-items: center;
                justify-content: center;
                letter-spacing: 0;
                margin-bottom: 2.5vw;
                position: relative;
            }
            .clients-choose__slider .swiper-slide .bullets-item__number::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                border-radius: 50%;
                background-color: var(--main-color, #FF5431);
                animation: pulse_2_small 2s linear infinite;
                z-index: -1;
            }
            .clients-choose__slider .swiper-slide .bullets-item__title {
                font-weight: 500;
                text-transform: uppercase;
                font-size: 3.75vw;
                line-height: 5vw;
                letter-spacing: 0;
                margin-bottom: 1.5625vw;
            }
            .clients-choose__slider .swiper-slide .bullets-item__text {
                font-weight: 300;
                font-size: 3.125vw;
                line-height: 4.0625vw;
                letter-spacing: 0;
                opacity: 1;
            }
        }
  
  
  
  
  
  
  
  
  .clear-talk {
            background-color: #2B2B2E;
            padding-bottom: 3.125vw;
            padding-top: 10.90625vw;
        }
        .clear-talk .wrapper {
            max-width: 1600px;
            margin: 0 auto;
        }
        .clear-talk__container {
            color: #2B2B2E;
            width: 100%;
            min-height: 40.052vw;
            padding: 4.167vw 2.865vw 4.167vw 35vw;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
            border-radius: 20px;
        }
        .clear-talk__container.md-black-style {
            color: #fff;
        }
        .clear-talk__img {
            width: 35vw;
            height: 46.979vw;
            position: absolute;
            left: 0;
            bottom: 0;
            overflow: hidden;
        }
        .clear-talk__img img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 46.979vw;
            -o-object-fit: cover;
            object-fit: cover;
            pointer-events: none;
        }
        .clear-talk__title {
            text-align: left;
            margin-bottom: 1vw;
        }
        .clear-talk__text {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }
        .clear-talk__text p {
            font-weight: 400;
            font-size: 1.458vw;
            line-height: 1.4;
            letter-spacing: 0;
            margin-bottom: 1vw;
        }
        .clear-talk__text span {
            font-weight: 400;
            font-size: 1vw;
            line-height: 1.4;
            letter-spacing: 0;
            margin-bottom: 2.6vw;
        }
        .clear-talk__link a {
            width: 22.344vw;
            justify-content: center;
            gap: 10px;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            padding: 0.8vw 1.5vw;
            border-radius: 10px;
            font-size: 1.2vw;
            font-weight: 500;
            color: #fff;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .clear-talk__link a img {
            width: 1.979vw;
            height: 1.979vw;
        }
        /* Стили для переливающегося отблеска */
        .whatsapp-btn {
            background: #3fbd7f !important; /* Зелёный фон кнопки */
        }
        .whatsapp-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transform: skewX(-20deg);
            animation: shine 2s infinite;
        }
        @keyframes shine {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }
        @media only screen and (max-width: 768px) {
            .clear-talk {
                padding-bottom: 10vw;
            }
            .clear-talk__container {
                padding: 9.375vw 4.6875vw 93.75vw 4.6875vw;
                border-radius: var(--brad-regular);
                background-position: center top;
            }
            .clear-talk__title {
                font-size: 18px;
                text-align: center;
                margin-bottom: 4.6875vw;
            }
            .clear-talk__text {
                text-align: center;
                margin-bottom: 4.6875vw;
            }
            .clear-talk__text p {
                font-size: 4.375vw;
                line-height: 6.25vw;
                margin-bottom: 6.25vw;
            }
            .clear-talk__text span {
                font-size: 3.125vw;
                line-height: 5vw;
                max-width: 75%;
                margin: 0 auto;
            }
            .clear-talk__link a {
                width: 76.875vw;
                height: 18.75vw;
                padding: 0 6.25vw 0 9.375vw;
                font-size: 4.375vw;
                border-radius: 5vw;
            }
            .clear-talk__link a img,
            .clear-talk__link a svg {
                width: 9.0625vw;
                height: 9.0625vw;
            }
            .clear-talk__link a:hover {
                padding: 0 6.25vw 0 9.375vw;
            }
            .clear-talk__img {
                width: 100%;
                height: 79.0625vw;
                left: 15vw;
                right: 14.6875vw;
                bottom: 0;
            }
            .clear-talk__img img {
                width: 62.5625vw;
                height: auto;
            }
            /* Адаптация блика для мобильной версии */
            .whatsapp-btn::before {
                animation: shine 2.5s infinite; /* Чуть медленнее для мобильных */
            }
        }
		
		
		
		
		
		
		
	   .questions {
            padding-bottom: 3.125vw;
            padding-top: 3.25vw;
            background: #2b2b2e;
        }
        .questions .wrapper {
            max-width: 1600px;
        }
        .questions__blocks {
            display: flex;
            gap: 4.167vw;
            align-items: flex-start;
        }
        .questions__block_left {
            max-width: 24.479vw;
        }
        .questions__title {
            font-size: 2.1vw;
            line-height: 1.4;
            margin-bottom: 2.8645833333vw;
            color: #fff;
        }
        .questions__container {
            display: flex;
            justify-content: space-between;
            color: #fff;
            gap: 1vw;
        }
        .questions__container .container-item {
            width: 26.55vw;
        }
        .questions__container .container-item:nth-child(1n+2) {
            display: block;
        }
        .questions__load-more {
            display: none;
        }
        .load-more-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 1.25vw 3.125vw;
            background: linear-gradient(90deg, #F28C38 0%, #E07B2E 100%);
            border-radius: 25px;
            color: #fff;
            font-weight: 600;
            font-size: 1.25vw;
            text-transform: uppercase;
            letter-spacing: 0.1vw;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(242, 140, 56, 0.3);
            transition: all 0.3s ease;
        }
        .load-more-btn:hover {
            background: linear-gradient(90deg, #E07B2E 0%, #F28C38 100%);
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(242, 140, 56, 0.4);
        }
        .load-more-btn span {
            white-space: nowrap;
        }
        .load-more-btn svg {
            width: 1.5vw;
            height: 1.5vw;
            transition: transform 0.3s ease;
        }
        .load-more-btn svg path {
            fill: #fff;
        }
        .load-more-btn:hover svg {
            transform: rotate(20deg);
        }
        .questions__link a {
            width: 22.344vw;
            height: 5.2083333333vw;
            border-radius: 10px;
            background-color: #3FBD7F;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 2.6041666667vw;
            font-weight: 600;
            font-size: 0.8vw;
            text-transform: uppercase;
            color: #fff;
            transition: background-color 0.3s;
            text-decoration: none;
        }
        .questions__link a svg {
            width: 1.9791666667vw;
            height: 1.9791666667vw;
            fill: #fff;
        }
        .questions__link a:hover {
            background-color: #32ac6f;
        }
        .questions__item {
            background: #F8FAFB;
            border-radius: 20px;
            width: 100%;
            padding: 1.3020833333vw 4.8541666667vw 0.3vw 2.8645833333vw;
            position: relative;
            margin-top: 1.3020833333vw;
        }
        .questions__item:first-child {
            margin-top: 0;
        }
        .questions__item .item-title {
            color: #000;
            font-weight: 600;
            font-size: 0.8vw;
            line-height: 1.4;
            cursor: pointer;
        }
        .questions__item .item-content {
            display: none;
            padding-top: 0;
            font-weight: 400;
            font-size: 0.8333333333vw;
            line-height: 1.3020833333vw;
            color: #939393;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding-top 0.3s ease;
        }
        .questions__item .item-content.open {
            display: block;
            max-height: 20vw;
            padding-top: 1.0416666667vw;
            margin-left: -1.5625vw;
            margin-right: -3.3333333333vw;
            padding-left: 0.5208333333vw;
            padding-right: 0.5208333333vw;
        }
        .questions__item .item-btn {
            position: absolute;
            z-index: 5;
            width: 1.6666666667vw;
            height: 1.6666666667vw;
            top: 1.13125vw;
            right: 1.7708333333vw;
            border-radius: 50%;
            background-color: #F28C38;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .questions__item .item-btn svg {
            width: 0.5208333333vw;
            height: 0.5208333333vw;
            fill: #fff;
        }
        .questions__item .item-btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background-color: #F28C38;
            animation: pulse_2_small 2s linear infinite;
            z-index: -1;
        }
        @keyframes pulse_2_small {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.3); opacity: 0.3; }
            100% { transform: scale(1.3); opacity: 0; }
        }
        .questions__item .item-btn.open {
            transform: rotate(45deg) scale(1.3);
            background-color: #fff;
            filter: drop-shadow(0 0 2.6041666667vw rgba(0, 0, 0, 0.05));
        }
        .questions__item .item-btn.open::after {
            display: none;
        }
        .questions__item .item-btn.open svg {
            fill: #D5DEE3;
        }
        @media only screen and (max-width: 768px) {
            .questions {
                padding-bottom: 12.5vw;
            }
            .questions__blocks {
                flex-direction: column;
            }
            .questions__block_left {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .questions__title {
                margin-bottom: 4.6875vw;
                font-size: 5vw;
                text-align: center;
            }
            .questions__link.ques__mobile {
                display: flex;
                justify-content: center;
                margin-top: 4.6875vw;
                margin-bottom: 10.9375vw;
            }
            .questions__link.ques__mobile a {
                width: 80%;
                height: 18.75vw;
                padding: 0 6.25vw;
                font-size: 3.75vw;
                line-height: 5vw;
            }
            .questions__link.ques__mobile a svg {
                width: 9.0625vw;
                height: 9.0625vw;
            }
            .questions__link.ques__desktop {
                display: none;
            }
            .questions.md-all-items-visible .questions__container .container-item {
                display: block !important;
            }
            .questions.md-all-items-visible .questions__load-more {
                display: none;
            }
            .questions__container {
                flex-direction: column;
                margin-bottom: 0;
            }
            .questions__container .container-item {
                width: 100%;
                padding-top: 4.6875vw;
            }
            .questions__container .container-item:first-child {
                padding-top: 0;
            }
            .questions__container .container-item:nth-child(1n+2) {
                display: none;
            }
            .questions__item {
                padding: 6.25vw 8.125vw;
                border-radius: 20px;
                margin-bottom: 4.6875vw;
            }
            .questions__item:last-child {
                margin-bottom: 0;
            }
            .questions__item .item-title {
                padding-right: 15.625vw;
                font-size: 3.75vw;
                line-height: 5.3125vw;
            }
            .questions__item .item-content {
                font-size: 3.125vw;
                line-height: 4.6875vw;
            }
            .questions__item .item-content.open {
                max-height: 100vw;
                padding-top: 4.6875vw;
                margin-left: -5.4166666667vw;
                margin-right: -5.4166666667vw;
                padding-left: 1.3020833333vw;
                padding-right: 1.3020833333vw;
            }
            .questions__item .item-btn {
                width: 7.8125vw;
                height: 7.8125vw;
                top: 6.25vw;
                right: 6.25vw;
            }
            .questions__item .item-btn svg {
                width: 3.125vw;
                height: 3.125vw;
            }
            .questions__load-more {
                display: flex;
                justify-content: center;
                padding-top: 4.6875vw;
            }
            .load-more-btn {
                padding: 5vw 7.5vw;
                font-size: 3.75vw;
                border-radius: 30px;
            }
            .load-more-btn svg {
                width: 4vw;
                height: 4vw;
            }
        }
        @media only screen and (min-width: 769px) {
            .questions__link.ques__mobile {
                display: none;
            }
            .questions__link.ques__desktop {
                display: flex;
                margin-bottom: 2.6041666667vw;
            }
        }
		
		
		
		
		
		
		
		

		
		
	.get-consultation {
      background-size: cover;
      background-position: center;
      padding: 60px 20px;
      color: #fff;
    }

    .wrapper {
      max-width: 1600px;
      margin: 0 auto;
    }

    .get-consultation__container {
      width: 1600px;
      margin-left: -17%;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
     /* background: rgba(0, 0, 0, 0.6);*/
      border-radius: 12px;
      padding: 30px;
      position: relative;
    }

    .get-consultation__person {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      order: 2;
      position: absolute;
      bottom: 0;
      right: -200px;
      min-height: auto;
    }

    .person-info {
      position: absolute;
      left: 15%;
      top: 40%;
    }

    .person-info p {
      font-size: 20px;
      font-weight: bold;
      margin: 0;
    }

    .person-info span {
      font-size: 16px;
      color: #ccc;
    }

    .person-img {
      max-width: 90%;
      height: auto;
	  position: relative;
      top: 60px;
      bottom: 0;
      display: block;
    }

    .get-consultation__content {
      flex: 2 1 500px;
      order: 1;
    }

    .get-consultation__title {
      font-size: 26px;
      font-weight: 300;
      margin-bottom: 50px;
      line-height: 1.4;
    }

    .get-consultation__title h2 {
      width: 60%;
      font-weight: 600;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .cons__list p {
	  text-transform: none;
      font-size: 22px;
	  font-weight: 500;
      margin-bottom: 50px;
    }

    .cons__list ul {
	  text-transform: none;
	  font-weight: 400;
      list-style: disc;
      padding-left: 20px;
      margin: 0;
    }

    .cons__list li {
      margin-bottom: 8px;
      font-size: 16px;
    }

    .get-consultation__form {
      margin-top: 25px;
    }

    .form-text {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .form-container {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
      align-items: center;
      max-width: 1200px; /* Ограничиваем ширину формы */
      justify-content: flex-start; /* Выравниваем по левому краю */
    }

    .form-select,
    .form-input,
    .nice-select {
      padding: 30px 10px;
      font-size: 16px;
      border-radius: 6px;
      border: none;
      flex: 1;
      min-width: 0;
    }

    .form-input {
      flex: 1;
    }

    .form-btn {
      position: relative;
      overflow: hidden;
      background-color: #5199FF;
      color: #fff;
      padding: 30px 10px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      display: flex;
	  text-transform: uppercase;
      align-items: center;
      justify-content: center; /* Центрируем текст в кнопке */
      gap: 10px;
      z-index: 0;
      flex: 1;
    }

    .form-btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
      z-index: 1;
      animation: shine 2.5s infinite;
    }

    @keyframes shine {
      0% {
        left: -75%;
      }
      100% {
        left: 125%;
      }
    }

    .form-btn span {
      position: relative;
      z-index: 2;
    }

    .form-btn img {
      position: relative;
      z-index: 2;
    }

    .form-checkbox {
      margin-top: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
    }

    .form-checkbox .check-icon-wrapper {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background-color: #5199FF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-checkbox img {
      width: 14px;
      height: 14px;
    }

    .form-checkbox p {
      margin: 0;
    }

    .nice-select {
      position: relative;
      background: white;
      border: 1px solid #ccc;
      padding: 30px 10px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #000;
    }

    .nice-select .current {
      display: inline-block;
      vertical-align: middle;
      flex-grow: 1;
      color: #000;
    }

    .nice-select .arrow-vybor {
      position: relative;
      font-size: 24px;
      color: #999;
    }

    .nice-select.open .arrow-vybor {
      transform: rotate(180deg);
    }

    .nice-select .list {
      position: absolute;
      top: calc(100% - 20px);
      left: -1px;
      width: 92%;
      max-width: 100%;
      background: white;
      border: 1px solid #ccc;
      border-top: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 10;
      display: none;
      border-radius: 0 0 6px 6px;
      overflow: hidden;
    }

    .nice-select.open .list {
      display: block;
    }

    .nice-select .option {
      padding: 10px 16px;
      cursor: pointer;
      color: #000;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .nice-select .option:hover {
      background-color: #f0f0f0;
    }

    @media (max-width: 768px) {
		.get-consultation {
        margin-top: -350px;
      }
		
      .get-consultation__container {
        flex-direction: column;
        padding: 20px;
        width: 100%;
        margin-left: 0;
      }
	  
	  .get-consultation__person {
     display: none;
    }

      .person-info {
        left: 18%;
        top: 80%;
      }

      .form-container {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%; /* На мобильных форма растягивается на всю ширину */
      }

      .form-select,
      .form-input,
      .form-btn,
      .nice-select {
        width: 95%;
        padding: 10px;
      }

      .form-checkbox .check-icon-wrapper {
        width: 30px;
        height: 20px;
      }

      .get-consultation__person {
        position: static;
        order: 2;
        align-self: auto;
        min-height: auto;
      }

      .person-img {
        max-width: 100%;
        left: 0;
        top: 33%;
      }
    }
	
	
	
	
	
	
	
	
	
	
	
	.contacts {
		margin: 0;
	padding-top: 4vw;
  padding-bottom: 1vw;
  position: relative;
  top: 0;
  color:#fff;
}
 .contacts .wrapper {
        max-width: 1600px;
        }

.contacts__title {
  margin-bottom: 4.531vw;
}

.contacts__descr{
  font-size: 1.358vw;
}

.contacts__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8.3333333333vw;
}
.contacts__container:last-child {
  margin-bottom: 0;
}
.contacts__container.md-container-with-form .contacts__images {
  width: 30.46875vw;
}
.contacts__container.md-container-with-form .contacts__images-item > div {
  height: 16.0416666667vw;
}
.contacts__container.md-container-with-form .contacts__images-item > div a {
  width: 9.1145833333vw;
  height: 7.6041666667vw;
}
.contacts__container.md-container-with-form .contacts__images-item > div a:first-child {
  width: 20.5729166667vw;
  height: 47.03125vw;
}
.contacts__info {
  width: 14.0625vw;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
          gap: 1.563vw;
}
.contacts__info-title {
  font-weight: 500;
  font-size: 2.0833333333vw;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 1.1979166667vw;
}
.contacts__info-container {
  margin-bottom: 1.1979166667vw;
}
.contacts__info-container > div {
  margin-bottom: 1.1979166667vw;
}
.contacts__info-container > div:last-child {
  margin-bottom: 0;
}
.contacts__info-address, .contacts__info-work-time, .contacts__info-phones, .contacts__info-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__info-address p, .contacts__info-work-time p, .contacts__info-phones p, .contacts__info-email p {
  font-weight: 400;
  font-size: 0.7291666667vw;
  line-height: 1.09375vw;
}
.contacts__info-address p a, .contacts__info-work-time p a, .contacts__info-phones p a, .contacts__info-email p a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contacts__info-address p a:hover, .contacts__info-work-time p a:hover, .contacts__info-phones p a:hover, .contacts__info-email p a:hover {
  color: #5199FF;
}
.contacts__info-address img,
.contacts__info-address svg, .contacts__info-work-time img,
.contacts__info-work-time svg, .contacts__info-phones img,
.contacts__info-phones svg, .contacts__info-email img,
.contacts__info-email svg {
  width: 1.0416666667vw;
  height: 1.25vw;
  margin-right: 0.8333333333vw;
  -o-object-fit: cover;
     object-fit: cover;
  fill: #5199FF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts__info-address img path,
.contacts__info-address svg path, .contacts__info-work-time img path,
.contacts__info-work-time svg path, .contacts__info-phones img path,
.contacts__info-phones svg path, .contacts__info-email img path,
.contacts__info-email svg path {
  fill: #5199FF;
}
.contacts__info-phones p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  /* font-size: 1.0416666667vw; */
  line-height: 1.25vw;
  letter-spacing: 0;
}
.contacts__info-phones p a {
  /* font-family: "Inter", Arial, sans-serif; */
  margin-bottom: 0.2604166667vw;
}
.contacts__info-phones p a:last-child {
  margin-bottom: 0;
}
.contacts__info-social {
  margin-bottom: 1.1979166667vw;
}
.contacts__info-social p {
  font-weight: 400;
  font-size: 1vw;
  text-transform: uppercase;
  line-height: 1.25vw;
  letter-spacing: 0;
  margin-bottom: 0.8333333333vw;
}
.contacts__info-social > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__info-social > div a {
  width: 2.1875vw;
  height: 2.1875vw;
border-radius: 10px;
  overflow: hidden;
  margin-right: 0.5208333333vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.contacts__info-social > div a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts__info-social > div a:last-child {
  margin-right: 0;
}
.contacts__info-social > div a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.contacts__info-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__info-links a {
  font-weight: 700;
  font-size: 0.8333333333vw;
  line-height: 1.25vw;
  letter-spacing: 0;
  color: #5199FF;
}
.contacts__images {
  width: 24.4791666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contacts__images-item {
  margin-bottom: 1.0416666667vw;
}
.contacts__images-item:last-child {
  margin-bottom: 0;
}
.contacts__images-item p {
  font-weight: 500;
  font-size: 1vw;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 1.0416666667vw;
  text-transform: uppercase;
}
.contacts__images-item > div {
  width: 100%;
  height: 12.9166666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contacts__images-item > div a {
  width: 7.34375vw;
  height: 6.09375vw;
border-radius: 20px;
  overflow: hidden;
}
.contacts__images-item > div a img {
  width: 100%;
  height: 100%;
border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts__images-item > div a:first-child {
  width: 16.5104166667vw;
  height: 12.9166666667vw;
  margin-right: 0.625vw;
}
.contacts__images-item > div a:nth-child(1n+4) {
  display: none;
}
.contacts__address {
  width: 37.6041666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contacts__address p {
  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;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1vw;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 0.8333333333vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts__address p b {
  font-weight: 700;
}
.contacts__address p a {
  font-weight: 500;
  font-size: 1vw;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #5199FF;
}
.contacts__address .map-container {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
border-radius: 20px;
}
.contacts__address .map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.contacts__form {
  width: 23.4375vw;
border-radius: var(--brad-regular);
  padding: 2.1875vw 2.2916666667vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.contacts__form .form-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contacts__form .form-container .form-input {
  margin: 0;
  margin-bottom: 0.8854166667vw;
  width: 100%;
  height: 3.90625vw;
  padding: 0 2.34375vw;
  font-size: 0.8333333333vw;
  line-height: 1.25vw;
}
.contacts__form .form-container .form-textarea {
  font-size: 0.8333333333vw;
}
.contacts__form .form-container .form-btn {
  width: 100%;
  padding: 0 3.90625vw;
}
.contacts__form .form-container .form-btn:hover {
  padding: 0 4.1666666667vw;
}
.contacts__form .form-checkbox {
  padding: 0 2.34375vw;
}
.contacts__form .form-title {
  font-weight: 700;
  font-size: 1.25vw;
  line-height: 1.5625vw;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1.0416666667vw;
}
.contacts__map-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 2.0833333333vw;
  line-height: 2.6041666667vw;
  letter-spacing: 0;
  margin-bottom: 1.5625vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts__map-title b {
  font-weight: 700;
}
.contacts__map-title a {
  font-weight: 700;
  font-size: 0.8333333333vw;
  line-height: 1.25vw;
  letter-spacing: 0;
  color: #5199FF;
}
.contacts__map .map-container {
  width: 100%;
  height: 36.4583333333vw;
border-radius: 20px;
  overflow: hidden;
}
.contacts__map .map-container iframe {
  width: 100%;
  height: 100%;
}

 @media (max-width: 768px) {
   .contacts {
    padding-bottom: 12.5vw;
    padding-top: 10vw;
   
  }
  .contacts__title {
text-align: center;
    /* display: none; */
  }

  .contacts__bg {
    display: none;
  }
  .contacts__container, .contacts__container.md-container-with-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts__container .contacts__images, .contacts__container.md-container-with-form .contacts__images {
    width: 100%;
    margin-bottom: 10vw;
  }
  .contacts__container .contacts__images-item, .contacts__container.md-container-with-form .contacts__images-item {
    margin-bottom: 9.375vw;
	margin-left: 20px;
  }
  .contacts__container .contacts__images-item:last-child, .contacts__container.md-container-with-form .contacts__images-item:last-child {
    margin-bottom: 0;
  }
  .contacts__container .contacts__images-item p, .contacts__container.md-container-with-form .contacts__images-item p {
    font-size: 5vw;
    line-height: 8.125vw;
    margin-bottom: 4.6875vw;
    text-align: center;
  }
  .contacts__container .contacts__images-item > div, .contacts__container.md-container-with-form .contacts__images-item > div {
    height: 45.3125vw;
  }
  .contacts__container .contacts__images-item > div a, .contacts__container.md-container-with-form .contacts__images-item > div a {
    width: 25.9375vw;
    height: 21.25vw;
border-radius: var(--brad-regular);
  }
  .contacts__container .contacts__images-item > div a:first-child, .contacts__container.md-container-with-form .contacts__images-item > div a:first-child {
    width: 58.125vw;
    height: 45.3125vw;
border-radius: 10px;
  }
  .contacts__info {
    width: 100%;
    margin-bottom: 9.375vw;
  }
  .contacts__info-title {
    width: 100%;
    font-size: 6.25vw;
    line-height: 11.25vw;
    margin-bottom: 7.8125vw;
    text-align: center;
  }
  .contacts__info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 7.8125vw;
  }
  .contacts__info-container > div {
    margin: 0;
    margin-top: 4.6875vw;
  }
  .contacts__info-container > div:first-child, .contacts__info-container > div:nth-child(2) {
    margin-top: 0;
  }
  .contacts__info-address, .contacts__info-work-time, .contacts__info-phones, .contacts__info-email, .contacts__info-social, .contacts__info-links {
    width: 40.625vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .contacts__info-address img,
.contacts__info-address svg, .contacts__info-work-time img,
.contacts__info-work-time svg, .contacts__info-phones img,
.contacts__info-phones svg, .contacts__info-email img,
.contacts__info-email svg, .contacts__info-social img,
.contacts__info-social svg, .contacts__info-links img,
.contacts__info-links svg {
    width: 4.6875vw;
    height: 4.6875vw;
    margin-right: 2.5vw;
  }
  .contacts__info-address p, .contacts__info-work-time p, .contacts__info-phones p, .contacts__info-email p, .contacts__info-social p, .contacts__info-links p {
    font-size: 2.5vw;
    line-height: 3.75vw;
  }
  .contacts__info-work-time, .contacts__info-email {
    width: 34.375vw;
  }
  .contacts__info-social, .contacts__info-links {
    width: 100%;
  }
  .contacts__info-social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 7.8125vw;
  }
  .contacts__info-social p {
    width: 100%;
    text-align: center;
    font-size: 4.375vw;
    line-height: 7.5vw;
    margin-bottom: 4.6875vw;
  }
  .contacts__info-social > div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contacts__info-social > div a {
    width: 13.125vw;
    height: 13.125vw;
    margin: 0 0.9375vw;
  }
  .contacts__info-links a {
    margin: 0 auto;
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .contacts__address {
    width: 100%;
    position: relative;
    padding-bottom: 14.0625vw;
  }
  .contacts__address p {
    font-size: 5vw;
    line-height: 8.125vw;
    margin-bottom: 1.5625vw;
  }
  .contacts__address p a {
    width: auto;
    position: absolute;
    white-space: nowrap;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .contacts__address .map-container {
    width: 100%;
    height: 71.875vw;
  }
  .contacts__address .map-container iframe {
border-radius: 10px;
  }
  .contacts__form {
    width: 100%;
    padding: 6.25vw 11.5625vw 12.5vw 11.5625vw;
border-radius: var(--brad-regular);
  }
  .contacts__form .form-title {
    font-size: 5vw;
    line-height: 7.5vw;
    margin-bottom: 4.6875vw;
  }
  .contacts__form .form-container .form-input {
    height: 18.75vw;
    font-size: 3.125vw;
    padding: 0 7.8125vw;
border-radius: var(--brad-regular);
    margin-bottom: 3.125vw;
  }
  .contacts__form .form-container .form-btn {
    padding: 0 12.5vw;
    margin-bottom: 3.125vw;
  }
  .contacts__form .form-container .form-btn:hover {
    padding: 0 12.5vw;
  }
  .contacts__form .form-checkbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contacts__form .form-checkbox p {
    width: 37.5vw;
  }
  .contacts__map {
    padding-top: 15vw;
    padding-bottom: 14.375vw;
    position: relative;
  }
  .contacts__map-title p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 7.5vw;
    line-height: 10vw;
  }
  .contacts__map-title a {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
    font-size: 5vw;
    line-height: 7.5vw;
  }
  .contacts__map .map-container {
    height: 71.5625vw;
  }
  .contacts__map .map-container iframe {
border-radius: 10px;
  }
 }
 
 
 
 
 
 
 
 
 .footer-new {
  background-color: #2A2A2D;
  color: #fff;
}

.footer-new .wrapper {
  max-width: 1600px;
}

.footer-new .md-bottom-only .footer__top {
  display: none;
}

.footer-new .md-bottom-only .footer__bottom {
  padding-bottom: 1.3020833333vw;
}

.footer__logo {
  width: 9.8958333333vw;
  padding-bottom: 3.90625vw;
  border-bottom: 0.0520833333vw solid rgba(255, 255, 255, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__logo a img,
.footer__logo a svg {
  width: 2.8645833333vw;
  height: 2.2114583333vw;
  -o-object-fit: cover;
     object-fit: cover;
  fill: var(--main-color);
}

.footer__logo a img path,
.footer__logo a svg path {
  fill: var(--main-color);
}

.footer__logo a p {
  font-size: 2.0833333333vw;
  font-weight: 400;
  letter-spacing: 0;
}

.footer__logo a p b {
  font-weight: 700;
}

.footer__social {
  padding-top: 3.8541666667vw;
}

.footer__social p {
  font-weight: 400;
  font-size: 1.0416666667vw;
  line-height: 1.25vw;
  letter-spacing: 0;
  margin-bottom: 0.8333333333vw;
}

.footer__social p b {
  font-weight: 700;
}

.footer__social > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__social > div a {
  width: 2.1354166667vw;
  height: 2.1354166667vw;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-right: 0.4166666667vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__social > div a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.footer__social > div a:last-child {
  margin-right: 0;
}

.footer__social > div a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__top {
  padding-top: 3.125vw;
  padding-bottom: 4.1666666667vw;
  border-bottom: 0.0520833333vw solid rgba(255, 255, 255, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__top-main {
  width: 19.1666666667vw;
  padding-right: 9.1145833333vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__top-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__top-item {
  width: 10.0520833333vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__top-item:nth-child(3) {
  width: 18.75vw;
}

.footer__top-item:last-child {
  width: 14.1666666667vw;
}

.footer-title {
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1.1979166667vw;
  letter-spacing: 0;
  margin-bottom: 0.7291666667vw;
}

.footer-text {
  color: #CACACA;
}

.footer-text p {
  font-weight: 500;
  font-size: 0.8333333333vw;
  line-height: 1.25vw;
  letter-spacing: 0;
  margin-bottom: 1.0416666667vw;
}

.footer-text p:last-child {
  margin-bottom: 0;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-list li img,
.footer-list li svg {
  width: 0.625vw;
  height: 0.46875vw;
  margin-top: 0.5729166667vw;
  margin-right: 0.5729166667vw;
  -o-object-fit: cover;
     object-fit: cover;
  fill: var(--main-color);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-list li img path,
.footer-list li svg path {
  fill: var(--main-color);
}

.footer-list li span {
  text-decoration: none !important;
}

.footer-list a,
.footer-list span {
  font-weight: 500;
  font-size: 0.8333333333vw;
  line-height: 1.5625vw;
  letter-spacing: 0;
  color: #CACACA;
}

.footer-list a:hover,
.footer-list span:hover {
  text-decoration: underline;
}

.footer__bottom {
  padding-top: 2vw;
  padding-bottom: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.footer__bottom-item {
  flex: 1;
  text-align: center;
}

.footer__bottom-item:first-child {
  text-align: left;
}

.footer__bottom-item:last-child {
  text-align: right;
}

.footer__bottom-item p {
  font-weight: 500;
  font-size: 0.7vw;
  line-height: 1.25vw;
  letter-spacing: 0;
  margin: 0;
}

.footer__bottom-item p a,
.footer__bottom-item p span {
  color: #fff;
  position: relative; /* Для псевдоэлемента */
  text-decoration: none; /* Убираем стандартное подчеркивание */
}

.footer__bottom-item p a::after,
.footer__bottom-item p span::after {
  content: '';
  position: absolute;
  bottom: -2px; /* Расположение подчеркивания */
  left: 0;
  width: 100%; /* Полная ширина подчеркивания */
  height: 1px; /* Толщина подчеркивания */
  background-color: #fff; /* Цвет подчеркивания */
  transition: width 0.3s ease; /* Анимация укорачивания */
}

.footer__bottom-item p a:hover::after,
.footer__bottom-item p span:hover::after {
  width: 50%; /* Укорачивание подчеркивания на половину при наведении */
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 3.75vw;
    line-height: 4.375vw;
    margin-bottom: 1.5625vw;
  }

  .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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer-list .menu-item a,
  .footer-list .nav-item a {
    font-size: 2.5vw;
    line-height: 5vw;
  }

  .footer-list li img,
  .footer-list li svg {
    width: 2.1875vw;
    height: 1.5625vw;
    margin-right: 2.1875vw;
  }

  .footer-list li span {
    font-size: 2.5vw;
    line-height: 5vw;
  }

  .footer-text p {
    font-size: 2.5vw;
    line-height: 5vw;
    margin-bottom: 4.6875vw;
    text-align: center;
  }

  .footer-text p:last-child {
    margin-bottom: 0;
  }

  .footer__top {
    padding: 37.5vw 9.375vw 0 9.375vw;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 12.1875vw;
    border-bottom: none;
  }

  .footer__top-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 6.25vw;
  }

  .footer__top-main {
    width: 100%;
    padding-right: 0;
  }

  .footer__top-item {
    width: 50%;
    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;
    margin-bottom: 6.25vw;
  }

  .footer__top-item:nth-child(1n+3) {
    width: 100%;
  }

  .footer__top-item:nth-child(1n+3) .footer-list {
    display: block;
  }

  .footer__top-item:last-child {
    margin-bottom: 0;
  }

  .footer__logo {
    position: absolute;
    top: 12.5vw;
    left: 0;
    right: 0;
    width: auto;
    padding-bottom: 0;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__logo a {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__logo a img,
  .footer__logo a svg {
    width: 42.5vw;
    height: 13.4375vw;
    margin-right: 4.6875vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .footer__logo a p {
    font-size: 10.9375vw;
    line-height: 13.4375vw;
  }

  .footer__social {
    padding-top: 0;
    width: 100%;
    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;
  }

  .footer__social p {
    font-size: 4.375vw;
    line-height: 7.5vw;
    margin-bottom: 4.6875vw;
  }

  .footer__social > div a {
    width: 12.8125vw;
    height: 12.8125vw;
    margin: 0 0.9375vw;
  }

  .footer__bottom {
    padding: 0;
    padding-bottom: 5vw;
    padding-top: 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__bottom-item {
    width: 100% !important;
    margin-bottom: 3.75vw;
  }

  .footer__bottom-item:last-child {
    margin-bottom: 0;
  }

  .footer__bottom-item p {
    width: 100%;
    font-size: 3.125vw;
    line-height: 5vw;
    text-align: center !important;
  }

  .footer__bottom-item p a,
  .footer__bottom-item p span {
    color: #fff;
    position: relative;
    text-decoration: none;
  }

  .footer__bottom-item p a::after,
  .footer__bottom-item p span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
  }

  .footer__bottom-item p a:hover::after,
  .footer__bottom-item p span:hover::after {
    width: 50%;
  }

  .footer.md-bottom-only {
    padding-top: 6.25vw;
    padding-bottom: 9.375vw;
  }
}



