/* 1. Box sizing */
html {
    box-sizing: border-box;
    font-size: 16px;
    /* базовый размер шрифта */

}

*, *::before, *::after {
    box-sizing: inherit;
}

/* 2. Сброс отступов, шрифт */
* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

/* 3. Базовые стили для body */
body {
    line-height: 1.5;
    color: #333;
    background-color: #F5F5F5;
}

/* 4. Адаптивные медиа */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 5. Списки без маркеров */
ul,
ol {
    list-style: none;
    color: #1A1A1A;
}

/* 6. Стили ссылок */
a {
    text-decoration: none;
    color: inherit;
}

/* 7. Сбрасываем кнопки */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* 8. Таблицы без отступов */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9. Удобный контейнер */
.container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 25px;
}

/* 10. Заголовки с отступами (пример) */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #191919;
}

p, span, li, div {
    color: #1A1A1A;
}


.header-lvl1 {
    background-color: #383232;
    padding-top: 16px;
    padding-bottom: 16px;
}

.header-lvl1-content {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.img-logo {
    max-height: 48px;
}

.url-img-logo {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;

}

.phone-header-block {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    gap: 8px;
}

.phone-header-block>span {
    margin-top: auto;
    margin-bottom: auto;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
}

.phone-header-block>img {
    height: 24px;
    width: 24px;
    margin-top: auto;
    margin-bottom: auto;
}

.header-lvl1-content-button {
    display: flex;
    gap: 12px;
    margin-top: auto;
    margin-bottom: auto;
}

.button-lv1 {
    padding: 15.5px 25px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    color: #E3E3E3;
    display: inline-flex;
    transition: 0.5s;
    justify-content: center;
    text-align: center;
}

.button-lv1:hover {
    background-color: #E3E3E3;
    color: #000000;
}

.button-lv2 {
    padding: 15.5px 25px;
    border: 1px solid #FFE100;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    color: #000000;
    background-color: #FFE100;
    display: inline-flex;
    transition: 0.5s;
    justify-content: center;
    text-align: center;
}

.button-lv2:hover {
    background-color: white;
    border: 1px solid white;
}

.header-lvl2 {
    padding-top: 18px;
    padding-bottom: 18px;
    background-color: white;
}

/* ========== Ваши базовые стили ========== */
.header-lvl2-sod {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.header-lvl2-sod>nav {
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    /* для корректного позиционирования подменю */
}

.header-lvl2-sod>button {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    border: 0;
    background-color: white;
    display: flex;
    cursor: pointer;
}

.header-lvl2-sod>nav>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-lvl2-sod>nav>ul>li>a {
    line-height: 22px;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    /* чтобы стрелка правильно позиционировалась */
}

/* ========== Новые стили для пунктов с подменю ========== */

/* Отступ для стрелки */
.header-lvl2-sod>nav>ul>li.menu-item-has-children>a {
    padding-right: 16px;
}

/* 1) Убираем rotate(45deg), оставляем только смещение по Y */
/* 2) Фиксируем transform-origin в центре, чтобы поворот вверх был ровным */
/* 3) При открытии делаем rotate(180deg) */
.header-lvl2-sod .arrow-icon {
    position: absolute;
    top: 52%;
    /* ← подкорректируйте по вкусу, чтобы стрелка была на одной линии с текстом */
    right: 0;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.header-lvl2-sod .menu-item-has-children.open>a.arrowed .arrow-icon {
    transform: translateY(-50%) rotate(180deg);
}


/* Скрытое подменю */
.header-lvl2-sod>nav>ul>li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 8px 0;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.11);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    width: 180px;
    z-index: 10;
    margin-top: 5px;
}

/* Видимое подменю */
.header-lvl2-sod>nav>ul>li.menu-item-has-children.open .sub-menu {
    max-height: 500px;
    /* достаточно для скрытых пунктов */
    opacity: 1;
}

/* Стили самих ссылок внутри выпадающего меню */
.header-lvl2-sod .sub-menu li a {
    display: block;
    padding: 6px 16px;
    color: #1A1A1A;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;

    line-height: 22px;
    font-weight: 500;
}

.header-lvl2-sod .sub-menu li a:hover {
    background: #f5f5f5;
}

main {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
}

.home-slide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 47px;
}

.home-slide {
    padding-top: 72px;
    padding-bottom: 94px;
}

.home-slide-content-left {
    width: calc(55% - (47px * 1 / 2));
}

.home-slide-content-right {
    width: calc(45% - (47px * 1 / 2));
}

.home-slide-content-right>img {
    width: 100%;
    border-radius: 8px;
}

.home-slide-content-left>h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 38px;
}

.home-slide-content-left-ul {
    list-style: none;
    /* отключаем маркеры по умолчанию */
    margin: 0;
    padding: 0;
    margin-bottom: 32px;
}

.home-slide-content-left-ul>li {
    position: relative;
    /* чтобы ::before позиционировался относительно LI */
    padding-left: 20px;
    /* отступ под иконку (12px + небольшой запас) */
    line-height: 22px;
    font-size: 18px;
    font-weight: 500;
}

.home-slide-content-left-ul>li:not(:last-of-type) {
    margin-bottom: 5px;
}

.home-slide-content-left-ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('../img/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.home-title {
    text-align: center;
    margin-bottom: 36px;
    line-height: 44px;
    font-size: 36px;
    font-weight: 700;
}

.home-5block-sod-trio {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 999px;
}

.home-5block-sod-trio-sod {
    width: calc(100% / 3 - (12px * 2 / 3));
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.home-5block-sod-trio-sod>img {
    margin-top: auto;
    margin-bottom: auto;
    width: 32px;
    height: auto;
}

.home-5block-sod-trio-sod>span {
    width: calc(100% - 32px - 32px);
    margin-top: auto;
    margin-bottom: auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

/* У предпоследнего элемента делаем margin-left: auto */
.home-5block-sod-trio>.home-5block-sod-trio-sod:nth-last-child(2) {
    margin-left: auto;
}

/* У последнего — margin-right: auto */
.home-5block-sod-trio>.home-5block-sod-trio-sod:last-child {
    margin-right: auto;
    background-color: #292828;
}

.home-5block-sod-trio>.home-5block-sod-trio-sod:last-child>span {
    color: #FFFFFF;
}

.home-5block {
    margin-bottom: 100px;
}

.about-service h2 {
    margin-bottom: 36px;
    line-height: 44px;
    font-size: 36px;
    font-weight: 700;
}

.about-service-sod {
    display: flex;
    flex-wrap: wrap;
    gap: 71px;
}

.about-service-sod-right {
    width: calc(28% - (71px * 1 / 2));
    position: relative;
}

.about-service-sod-left {
    width: calc(72% - (71px * 1 / 2));
    display: flex;
    flex-wrap: wrap;
    gap: 46px;
}

.about-service-sod-left-sod-element {
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0 4px 20px #262C301A;
    width: calc(100% / 2 - (46px * 1 / 2));
    background-color: white;
}

.about-service-sod-left-sod-element-img {
    width: 100%;
    height: 220px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    margin-bottom: 16px;
}

.about-service-sod-left-sod-element>h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0px;
}

.about-service-sod-right>img {
    width: 100%;
    position: relative;
    z-index: 0;
}

.about-service-sod-right>div {
    background-color: #292828;
    padding: 32px 27px;
    z-index: 1;
    position: relative;
}

.about-service-sod-right>div>h3 {
    color: white;
    text-align: center;
    font-size: 26px;
    line-height: 34.5px;
    font-weight: bold;
    margin-bottom: 12px;
}

.about-service-sod-right>div>p {
    text-align: center;
    color: #BEBEBE;
    line-height: 21px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-service-sod-right>div>a {
    width: 100%;
    justify-content: center;
}

.about-service-sod-right>img:first-of-type {
    margin-bottom: -30%;
}

.about-service-sod-right>img:last-of-type {
    margin-top: -30%;
}

.about-service {
    margin-bottom: 90px;
}

.home-1slider-slider-content {
    position: relative;
    display: flex;
    align-items: center;
}

/* обходной контейнер, скрывает лишнее */
.home-1slider-slider-content__viewport {
    overflow: hidden;
    width: 100%;
}

/* собственно дорожка слайдов */
.home-1slider-slider-content__track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

/* каждый слайд */
.home-1slider-slider-content__slide {
    flex: 0 0 calc((100% - 4 * 30px) / 5);
    height: 338px;
    background: url('../img/Frame\ 125.png') center/cover no-repeat;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* кнопки навигации */
.home-1slider-slider-content__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border: none;
    font-size: 24px;
    padding: 18px;
    border-radius: 100%;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    display: flex;
    box-shadow: 0 4px 20px #262C301A;
}

.home-1slider-slider-content__nav>img {
    height: 21px;
    width: 21px;
    margin: auto;
}

.home-1slider-slider-content__nav--prev {
    left: 60px;
}

.home-1slider-slider-content__nav--next {
    right: 60px;
}

/* обёртка для отступа снизу */
.home-1slider-slider-wrapper {
    margin-bottom: 30px;
}

/* сам слайдер */
.home-1slider-slider-content {
    position: relative;
    display: flex;
    align-items: center;
    /* margin-bottom убрали, теперь на wrapper */
}

/* … ваши стили для .__viewport, .__track, .__slide, .__nav … */
/* + переход opacity на слайдах */
.home-1slider-slider-content__slide {
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* ===== Dots ===== */
.home-1slider-slider-content__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.home-1slider-slider-content__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.home-1slider-slider-content__dot.active,
.home-1slider-slider-content__dot:hover {
    background-color: #FFE100;
}

#home-1slider-slider-content-dots {
    margin-top: 30px;
}

.button-lv3 {
    padding: 15.5px 25px;
    border: 1px solid #E9E8E2;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    color: #000000;
    background-color: #E9E8E2;
    display: inline-flex;
    transition: 0.5s;
}

.button-lv3:hover {
    border: 1px solid #FFE100;
    background-color: #FFE100;
}

.home-1slider-button-line {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 25px 100px 25px;

}

.home-1slider-button-line>a {
    margin-left: auto;
    margin-right: auto;
}

/* ========== CSS ========== */
.home-polurl-slider {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 75px;
}

.home-polurl-slider__nav {
    width: 56px;
    display: flex;
    background: rgb(255, 255, 255);
    border: none;
    font-size: 24px;
    padding: 18px;
    border-radius: 100%;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px #262C301A;
}

.home-polurl-slider__nav button {
    margin: auto;
    cursor: pointer;
}

.home-polurl-slider__viewport {
    overflow: hidden;
    flex: 1;
}

.home-polurl-slider__track {
    display: flex;
    gap: 46px;
    transition: transform 0.4s ease;
}

/* Размер одного слайда: (100% – 2*gap) / 3 */
.home-polurl-slider-centerslider-sider-element {
    flex: 0 0 calc((100% - 2*46px) / 3);
    background-color: #fff;
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0px 5px 25px 0 #35321d0a;
}

.home-polurl-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.home-polurl-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.home-polurl-slider-dot.active,
.home-polurl-slider-dot:hover {
    background-color: #FFE100;
}

.home-polurl-slider-centerslider-sider-element-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
    margin-bottom: 16px;
    height: 220px;
}

.home-polurl-slider-centerslider-sider-element>p {
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0px;
}

.footer-contact-block {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact-block-content {
    padding: 32px 69px;
    background-color: #292828;
    z-index: 1;
}

.footer-contact-block-content>p {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-contact-block-content>p>span {
    color: #FFE100;

}

.footer-contact-block-content-form-block {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact-block-content-form-block>p:first-of-type {
    color: #BEBEBE;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}

.footer-contact-block-content-form-block>p:last-of-type {
    font-size: 9px;
    font-weight: 500;
    line-height: 11px;
    text-align: center;
    color: #BEBEBE;
}

.footer-contact-block-content-form-block>form {
    margin-bottom: 20px;
}

.footer-contact-block {
    position: relative;
    margin-bottom: -58px;
}

.footer-contact-block>* {
    position: relative;
}

.footer-contact-block>img {
    z-index: 0;
}

.footer-contact-block>img:first-of-type {
    margin-bottom: -95px;
}

.footer-contact-block>img:last-of-type {
    margin-top: -95px;
}

.footer-lvl1 {
    background-color: #464646;
    padding: 100px 0 57px 0;
}

.footer-lvl1-menu>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-lvl1-menu>ul>li {

    width: calc(100% / 4 - (32px * 3 / 4));
}

.footer-lvl1-menu>ul>li>a {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid #565656;
    display: inline-block;
    transition: 0.5s;
}

.footer-lvl1-menu>ul>li>a:hover {
    color: #FFE100;
}

.footer-lvl1-menu {
    margin-bottom: 70px;
}

.footer-lvl2 {
    background-color: #292828;
    padding: 14px 0;
}

.footer-lvl2 p {
    color: #BEBEBE;
    font-size: 10px;
    line-height: 12px;
    font-weight: 400;
    margin: 0px;
}

.footer-lvl1-dp-content>a>img {
    max-height: 24px;
    width: auto;
}

.footer-lvl1-dp-content>a {
    margin-bottom: 50px;
    display: inline-flex;
}

.footer-lvl1-dp-content-line {
    display: flex;
    flex-wrap: wrap;
    gap: 29px;
}

.footer-lvl1-dp-content-line-sod {
    width: calc(100% / 4 - (29px * 3 / 4));
}

.footer-lvl1-dp-content-line-sod-title {
    font-size: 16px;
    color: #FFF;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 20px;
}

.footer-lvl1-dp-content-line-sod-sod {
    color: #BEBEBE;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.footer-lvl1-dp-content>.footer-lvl1-dp-content-line:not(:last-of-type) {
    margin-bottom: 24px;
}

.footer-lvl1-dp-content-line-sod.button-lv2 {
    justify-content: center;
}

.seo-block {
    margin-top: 30px;
    margin-bottom: 30px;
}

.seo-block-content>* {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    margin: 0px;
}

.seo-block-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.seo-block-content>p {
    color: #BEBEBE;
}

.page-content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 60px;
}

.page-content-contact-page {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.page-content-contact-page-element {
    width: calc(100% / 3 - (60px * 2 / 3));
}

.page-content {
    margin-bottom: 120px;
}

.page-content-contact-page-element>h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: 32px;
}

.contact-home-5block-sod-trio-sod {
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 12px;
}

.contact-home-5block-sod-trio-sod>img {
    margin-top: auto;
    margin-bottom: auto;
    width: 32px;
    height: auto;
}

.contact-home-5block-sod-trio-sod>span {
    width: calc(100% - 32px - 32px);
    margin-top: auto;
    margin-bottom: auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.contact-home-5block-sod-trio-sod.url > span {
  color: #1E84F8;
}

.contacts-map-block {
    background-color: #FFFFFF;
    border-radius: 22px;
    padding: 16px;
}

.contacts-map-block > a {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

@media (max-width: 1120px) {
.page-content-contact-page-element {
  width: calc(100% / 2 - (60px * 1 / 2));
}
}

@media (max-width: 1020px) {
    .header-lvl2-sod>nav>ul {
        gap: 16px;
    }

    .home-1slider-slider-content__slide {
        height: 250px;
    }

    .home-polurl-slider__track {
        gap: 26px;
    }

    .home-polurl-slider {
        gap: 26px;
    }

    .home-polurl-slider-centerslider-sider-element {
        flex: 0 0 calc((100% - 2*26px) / 3);
    }

    .footer-lvl1-dp-content-line-sod {
        width: calc(100% / 3 - (29px * 3 / 4));
    }
}

@media (max-width: 927px) {
    .header-lvl1-content-button {
        display: none;
    }

    .about-service-sod-left {
        width: 100%;
    }

    .about-service-sod-right {
        width: 100%;
    }

    .home-5block-sod-trio-sod {
        width: calc(100% / 2 - (12px * 1 / 2));
    }

    .home-5block-sod-trio>.home-5block-sod-trio-sod:last-child {
        margin-left: auto;
    }

    .home-1slider-slider-content__slide {
        flex: 0 0 calc((100% - 2 * 30px) / 3);
    }

    .header-lvl2-sod>button {
        display: none;
    }
}

@media (min-width: 801px) {
    #mobil-menu-element {
        display: none;
    }

    #fullscreen-overlay {
        display: none;
    }
}

@media (max-width: 800px) {
    .header-lvl2 {
        display: none;
    }

    .phone-header-block>span {
        display: none;
    }

    .img-logo {
        max-height: 28px;
    }

    .header-lvl1-content {
        gap: 20px;
    }

    #mobil-menu-element {
        margin-top: auto;
        margin-bottom: auto;
    }

    .home-polurl-slider-centerslider-sider-element {
        flex: 0 0 calc((100% - 1*26px) / 2);
    }

    /* Стили для скрытого оверлея */
    #fullscreen-overlay {
        display: none;
        /* Скрыт по умолчанию */
        position: fixed;
        /* Фиксируется относительно окна */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Занимает весь экран */
        background: rgba(0, 0, 0, 0.8);
        /* Полупрозрачный фон */
        z-index: 9999;
        /* Поверх всего остального */
        overflow: auto;
        /* Прокрутка внутри слоя */
    }

    /* Кнопка закрытия */
    #close-overlay {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: transparent;
        border: none;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }

    /* Контейнер для содержимого */
    #fullscreen-overlay .overlay-content {
        color: white;
        min-height: 100vh;
        background-color: #383232;
    }

    /* Блокировка прокрутки body при активном оверлее */
    body.no-scroll {
        overflow: hidden;
    }

    #close-overlay-element>img {
        height: 32px;
        width: auto;
    }

    .mobil-menu__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobil-menu__list .menu-item>a {
        display: block;
        color: #fff;
        font-weight: 500;
        font-size: 22px;
        line-height: 22px;
        padding: 12px 0;
        text-decoration: none;
        position: relative;
    }

    /* Скрываем подменю */
    .sub-menu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0 0 0 20px;
    }

    /* Показываем подменю у открытого элемента */
    .menu-item.open>.sub-menu {
        display: block;
    }

    /* Стрелка вниз у элементов с подменю */
    .menu-item.has-children>a::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        border: solid #fff;
        border-width: 0 2px 2px 0;
        padding: 5px;
        transition: transform 0.3s ease;
    }

    /* Стрелка вверх для открытого подменю */
    .menu-item.has-children.open>a::after {
        transform: translateY(-50%) rotate(-135deg);
    }

    .mobil-menu {
        border-top: 1px solid #F5F5F53B;
    }

    .home-slide-content-left {
        width: 100%;
        order: 2;
    }

    .home-slide-content-right {
        width: 100%;
        order: 1;
    }

    .home-slide-content-left>h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .home-slide-content {
        gap: 16px;
    }

    .home-slide-content-right>img {
        object-fit: cover;
        max-height: 180px;
    }

    .home-slide {
        padding-top: 32px;
        padding-bottom: 74px;
    }

    .home-slide-content-left-ul>li {
        font-size: 16px;
        line-height: 20px;
    }

    .home-slide-content-left-ul {
        margin-bottom: 24px;
    }

    .home-slide-content-left>a {
        width: 100%;
    }

    .home-title, .about-service h2 {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 32px;
        text-align: center;
    }

    .home-5block-sod-trio-sod {
        width: 100%;
    }

    .about-service-sod-left-sod-element {
        width: 100%;
    }

    .home-1slider-slider-content__slide {
        flex: 0 0 calc((100% - 0 * 30px) / 1);
    }

    .home-1slider-slider-wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }

    .home-1slider-slider-content__nav--next {
        right: -20px;
    }

    .home-1slider-slider-content__nav--prev {
        left: -20px;
    }

    .home-1slider-button-line {
        padding: 0px 25px 60px 25px;
    }

    .home-polurl-slider-centerslider-sider-element {
        flex: 0 0 calc((100% - 0*26px) / 1);
    }

    .home-polurl-slider {
        position: relative;
    }

    #home-polurl-slider-prev {
        position: absolute;
        left: 10px;
    }

    #home-polurl-slider-next {
        position: absolute;
        right: 10px;
    }

    .footer-lvl1-menu>ul>li {
        width: 100%;
    }

    .footer-lvl1-dp-content-line-sod {
        width: 100%;
    }

    .footer-contact-block-content>p {
        font-size: 26px;
        line-height: 32px;
    }

    .footer-contact-block-content-form-block>p:first-of-type {
        font-size: 16px;

    }

    .page-content-contact-page-element {
        width: 100%;
    }

    .page-content h1 {
        font-size: 32px;
        margin-bottom: 42px;
        line-height: 39px;
    }
}

@media (max-width: 700px) {
    .footer-contact-block>img:first-of-type {
        margin-bottom: -60px;
    }

    .footer-contact-block>img:last-of-type {
        margin-top: -60px;
    }
}

@media (max-width: 500px) {
    .footer-contact-block>img:first-of-type {
        margin-bottom: -30px;
    }

    .footer-contact-block>img:last-of-type {
        margin-top: -30px;
    }
}