*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}

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

a,
button {
    cursor: pointer;
}

.site-wrapper {
    overflow: hidden;
}

/* fonts */
@font-face {
    font-family: "RF Dewi";
    src: url("../fonts/RFDewi-Light.woff2") format("woff2"),
    url("../fonts/RFDewi-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "RF Dewi";
    src: url("../fonts/RFDewi-Regular.woff2") format("woff2"),
    url("../fonts/RFDewi-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "RF Dewi Expanded";
    src: url("../fonts/RFDewiExpanded-Regular.woff2") format("woff2"),
    url("../fonts/RFDewiExpanded-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "RF Dewi Expanded";
    src: url("../fonts/RFDewiExpanded-Semibold.woff2") format("woff2"),
    url("../fonts/RFDewiExpanded-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "RF Dewi Expanded";
    src: url("../fonts/RFDewiExpanded-Bold.woff2") format("woff2"),
    url("../fonts/RFDewiExpanded-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "RF Dewi Expanded";
    src: url("../fonts/RFDewiExpanded-Black.woff2") format("woff2"),
    url("../fonts/RFDewiExpanded-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}
/* ./fonts */

:root {
    --gap: calc(100vw * 1.0416 / 100);
    --half-gap: calc(var(--gap) / 2);

    --color-lines: #ffffff40;
    --color-decor: rgba(255, 255, 255, 0.25);
    --color-dark: #123453;
    --color-dark2: #1c4264;
    --color-dark3: #0e1c28;
    --color-light-blue: #dbe6ed;
    --color-white: #fff;
    --color-gray: #f0f5f8;
    --color-accent: #25a4dd;
    --font-body: "RF Dewi", sans-serif;
    --font-title: "RF Dewi Expanded", sans-serif;

    --body-fz: 1.8rem;
    /* --body-fz: calc(100vw / 1920 * 10 * 1.8); */
    --body-lh: 1.5;
    --body-fw: 300;

    --h1-fz: 5.4rem;
    /* --h1-fz: calc(100vw / 1920 * 10 * 5.4); */
    --h1-ff: var(--font-title);
    --h1-fw: 700;
    --h1-lh: 1.2;
    --h1-mb: 0.926em;

    --small-fz: 1.4rem;
    /* --small-fz: calc(100vw / 1920 * 10 * 1.4); */
    --small-lh: 1.21;

    --medium-fz: 1.6rem;
    --medium-lh: 1.1875;
}
/* typography */

html {
    /* font-size: 62.5%; */
    font-size: calc(100vw / 1920 * 10);
}
@media (max-width: 1440px) {
    html {
        font-size: calc(100vw / 1440 * 10);
    }
}
@media (max-width: 1024px) {
    html {
        font-size: calc(100vw / 1024 * 10);
    }
}
@media (max-width: 767px) {
    html {
        font-size: calc(100vw / 768 * 10);
    }
}
@media (max-width: 480px) {
    html {
        font-size: calc(100vw / 480 * 10);
    }
}
body {
    font-family: var(--font-body);
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    font-weight: 300;
    color: var(--color-dark);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;

    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.h1 {
    font-family: var(--h1-ff);
    font-size: var(--h1-fz);
    line-height: var(--h1-lh);
    font-weight: var(--h1-fw);
    margin: 0 0 var(--h1-mb);
    color: var(--color-white);
    text-transform: uppercase;
}
.h1 span {
    display: block;
}
/* ./typography */
/* buttons */
.btn {
    display: inline-block;
    padding: 1.388em 2.111em;
    font-size: var(--body-fz);
    text-transform: uppercase;
    color: var(--color-white);
    font-family: var(--font-title);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s linear;
}
.btn--small {
    padding: 15px 20px;
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    font-weight: 600;
}
button.btn {
    background-color: transparent;
    border: none;
}
.btn--fill {
    background-color: var(--color-dark);
}
.btn--fill:hover,
button.btn:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.btn--white,
button.btn--white {
    background-color: var(--color-white);
    color: var(--color-dark);
}
.btn--white:hover,
button.btn--white:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}
/* ./buttons */

/* grid */
.section__wrapper--full {
    margin: 0 calc(-1 * var(--half-gap));
    display: flex;
    flex-wrap: wrap;
    /* width: 100%; */
}
.section__wrapper-small {
    --el-w: calc(((100vw - (5 * var(--gap))) / 6) * 4 + var(--gap) * 3);
    width: 100%;
    max-width: calc(((100vw - (5 * var(--gap))) / 6) * 4 + var(--gap) * 3);
    margin-left: calc((100vw - var(--el-w)) / 2);
    /* margin: 0 auto; */
    /* outline: 1px solid blueviolet; */
}
.section__wrapper-small-inner {
    display: flex;
    margin: 0 calc(-1 * var(--half-gap));
}

.section__01-cols {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    margin: 0 calc(-1 * var(--half-gap));
    display: flex;
}
.section__01-cols .col {
    /* width: calc((100vw - (5 * 20px)) / 6); */
    width: calc((100vw - (5 * var(--gap))) / 6);
    /* margin: 0 10px; */
    margin: 0 var(--half-gap);
    height: 100%;
    background: yellow;
    flex-shrink: 0;
}
/* ./grid */

/* header */
.header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 60px; */
    /* outline: 1px solid red; */
    padding-top: 95px;
    padding-left: 144px;
}
/* burger */
.header__burger-wrapper {
    display: flex;
    align-items: center;
}

.header__burger {
    cursor: pointer;
}

.burger__text {
    flex-shrink: 0;
    margin-left: 1.3333em; /* 24px; */
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.5;
    font-family: var(--font-title);
    text-transform: uppercase;
}
.burger {
    width: 3.3333em; /* 60px; */
    height: 3.3333em; /* 60px; */
    background: var(--color-white);
    position: relative;
    z-index: 10;
}
.burger__line {
    content: "";
    background: var(--color-dark);
    position: absolute;
    height: 3px;
    width: 1.5em; /* 27px; */
    left: 0.9166em;
    pointer-events: none;
}
.burger__line:nth-child(1) {
    top: 30%;
}
.burger__line:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}
.burger__line:nth-child(3) {
    bottom: 30%;
    width: 0.75em;
    transition: all 0.3s linear;
}
.burger:hover .burger__line:nth-child(3) {
    width: 1.5em;
}

/* active  close*/
/* .burger.active{

}
.burger.active .burger__line:nth-child(2){
  width: 0;
}
.burger.active .burger__line:nth-child(3),
.burger.active .burger__line:nth-child(1){
  width: 1.5em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.burger.active .burger__line:nth-child(3){
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: left center;
}
.burger.active .burger__line:nth-child(1){
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: left center;
} */
/* ./burger */

/* header menu */
.menu-header-menu-container {
    height: auto;
}

.header__menu {
    display: flex;
    flex-direction: column;

    padding-top: 180px;
}
@media (max-width: 768px) {
    .header__menu {
        justify-content: flex-start;
    }
}

.main-nav__wrapper {
    display: flex;
    justify-content: space-between;
}
.main-nav {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    transition: transform 0.3s linear;
}
.main-nav.active {
    transform: translateX(0);
}
.main-nav::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 45%;
    background: url(../img/menu/bottle-img-1.svg) 100% 0 no-repeat;
    background-size: contain;
}
.main-nav::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -0px;
    right: 0;
    background: url(../img/menu/bottle-img-2.svg) 100% 100% no-repeat;
    background-size: contain;
    z-index: -1;
}

#menu-header-menu {
    position: relative;
    z-index: 2;
    list-style-type: none;
    padding: 0;
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin: 0 var(--half-gap);
    margin-left: calc(
            (((100vw - (5 * var(--gap))) / 6) * 1 + var(--gap) * 1) + var(--half-gap)
    );
    /* height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; */
}

#menu-header-menu .menu-item-has-children {
    position: relative;
}

#menu-header-menu .menu-item-has-children .sub-menu {
    display: none;
    padding-left: 3.3em;
    list-style: none;
    padding-top: 12px;
    padding-bottom: 30px;
}

#menu-header-menu .menu-item-has-children.active .sub-menu {
    display: block;
}

#menu-header-menu .menu-item-has-children .sub-menu li:not(:last-child) {
    margin-bottom: 24px;
}

#menu-header-menu .menu-item-has-children .sub-menu a {
    font-size: 1.8em;
    line-height: 1.25;
    font-weight: 400;
}

#menu-header-menu .main-nav__link {
    color: var(--color-white);
    font-size: 2.2222em; /* 40px; */
    line-height: 2.6666em; /* 48px; */
    margin-bottom: 4em; /* 72px; */
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s linear;
}
#menu-header-menu .main-nav__link:hover {
    -webkit-text-stroke: 1px var(--color-white);
    text-stroke: 1px var(--color-white);
    color: transparent;
}
#menu-header-menu .main-nav__link:active {
    -webkit-text-stroke: 1px var(--color-white);
    text-stroke: 1px var(--color-white);
    color: rgba(217, 217, 217, 0.2);
}

.header__menu-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 10.4444em; /* 188px; */
    padding-left: 3.1111em; /* 56px; */
}
.header__menu-left::before {
    content: "";
    width: 5px;
    height: 100%;
    background-color: var(--color-dark2);
    position: absolute;
    left: 0;
    top: 0;
}
.main-nav__logo {
    max-width: 22.3888em;
}
/* header menu contacts */
.main-nav__contacts-item {
    margin-bottom: 1.8333em; /* 33px; */
}
.main-nav__contacts-item:last-child {
    margin-bottom: 0;
}
.main-nav__contacts-item address {
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    font-family: var(--font-body);
    font-weight: var(--body-fw);
    color: var(--color-white);
    font-style: normal;
}
.main-nav__contacts-item a {
    display: block;
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    font-family: var(--font-body);
    font-weight: var(--body-fw);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s linear;
}
.main-nav__contacts-item a:hover {
    text-decoration: underline;
}

/* ./header menu */

/* header-top */
.header__top {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 101;
    background: var(--color-white);
    transform: translateY(-100%);
    transition: transform 0.3s linear;
}
.header__top.sticky {
    transform: translateY(0%);
}
.header__top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1738px;
    padding: 0 15px;
    margin: 0 auto;
}

#menu-header-menu-1 {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#menu-header-menu-1 .menu-item-has-children {
    position: relative;
}

#menu-header-menu-1 .menu-item-has-children .sub-menu {
    position: absolute;
    z-index: 9999;
    top: 69px;
    display: none;
    list-style: none;
    background: white;
}

#menu-header-menu-1 .menu-item-has-children.active .sub-menu {
    display: block;
}

#menu-header-menu-1 .menu-item-has-children .sub-menu a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.6rem;
}

#menu-header-menu-1 .main-nav__link {
    text-decoration: none;
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    font-weight: 600;
    font-family: var(--font-title);
    color: var(--color-dark);
    display: block;
    padding: 1.6666em 1.5555em;
    transition: all 0.3s linear;
}
#menu-header-menu-1 .main-nav__link:hover {
    text-decoration: underline;
}

#menu-header-menu-1 .main-nav__link.active-link {
    color: var(--color-accent);
}
/* ./header-top */

/* hero slider */
.hero {
    position: relative;
}
.swiper-wrapper {
    height: 52vw;
}
.swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.slide {
    background-position: 0% 100%, 0 0;
    background-size: contain, cover;
    background-blend-mode: multiply;
}
.slider__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    width: calc(100% / 6);
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
}
.line::after {
    content: "";
    width: 1px;
    height: 100%;
    /* background:var(--color-lines); */
    background: #ccc;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
}
.line:last-child:after {
    display: none;
}
.line__1 {
    left: 0;
}
.line__2 {
    left: calc(100% / 6);
}
.line__3 {
    left: calc(100% / 6 * 2);
}
.line__4 {
    left: calc(100% / 6 * 3);
}
.line__5 {
    left: calc(100% / 6 * 4);
}
.line__6 {
    left: calc(100% / 6 * 5);
}

.ll {
    width: calc(100% * 6);
    height: 100%;
    content: "";
    position: absolute;
    left: 100%;
    top: 0;

    background-size: contain, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: 0% 100%, 0 0;
    background-blend-mode: multiply;
}

.line__1 .ll {
    clip-path: url(#myPath1);
}
.line__2 .ll {
    clip-path: url(#myPath2);
}
.line__3 .ll {
    clip-path: url(#myPath3);
}
.line__4 .ll {
    clip-path: url(#myPath4);
}
.line__5 .ll {
    clip-path: url(#myPath5);
}
.line__6 .ll {
    clip-path: url(#myPath6);
}

.main-slider__fraction {
    width: 70px;
    height: 70px;
    line-height: 70px;
    position: absolute;
    z-index: 14;
    top: 0;
    margin-top: 82px;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .main-slider__fraction {
        margin-top: 22px;
        right: 35px;
    }
}

.main-slider__fraction-data {
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-slider__fraction-current,
.main-slider__fraction-total {
    color: var(--color-white);
    font-size: 25px;
    line-height: 30px;
}
.main-slider__fraction-total,
.main-slider__fraction-separator {
    color: rgba(255, 255, 255, 0.5);
}
.main-slider__fraction-separator {
    margin: auto 2px;
}

/* button circle */
.progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}
.circle-origin {
    fill: transparent;
    stroke: var(--color-white);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 220.664px;
    stroke-dashoffset: 220.664px;
}

.main-slider__content {
    position: absolute;
    z-index: 13;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: rgba(0, 0, 0, 0.5);
}
.main-slider__content-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
}
.main-slider__buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}
.main-slider__buttons .btn {
    margin: 0 6px 6px;
}

#sliderSvg {
    opacity: 0;
    /* visibility: hidden; */
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    z-index: -100;
}

/* ./hero slider */

.section__header {
    margin: 0 var(--half-gap);
}
.section__header-num {
    font-size: 18rem;
    /* font-size: calc(100vw / 1920 * 10 * 18); */
    line-height: 1;
    font-family: var(--font-title);
    font-weight: 900;
    margin: 0 0 0.4444em;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
}
.section__header-title {
    font-size: 4rem;
    /* font-size: calc(100vw / 1920 * 10 * 4); */
    line-height: 1.2;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 1em;
    text-transform: uppercase;
}

/* section__01 */
.section__01 {
    position: relative;
    background: var(--color-dark);
    padding: 8.888em 0 8.3333em;
}
.section__01 .section__header {
    width: 100%;
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
}
.section__01 .section__content {
    margin: 0 0 8.888em;
}
.section__content-col {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin: 0 var(--half-gap) 0px;
}
.section__content-inner {
    /* max-width: 500px; */
    max-width: 81%;
    color: var(--color-white);
}

.section__slider {
    margin: 0 calc(-1 * var(--half-gap)) 0px;
    display: flex;
    align-items: flex-start;
}
.sl1 {
    margin: 0 var(--half-gap);
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    height: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    position: relative;
    overflow: hidden;
}
#left__slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.48, 0.04, 0.52, 0.96);
    height: 100%;
}
#left__slider .swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 0%;
}
.sl2 {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin: 0 var(--half-gap);
    margin-left: calc(
            (((100vw - (5 * var(--gap))) / 6) * 1 + var(--gap) * 1) + var(--half-gap)
    );
    position: relative;
    padding-bottom: 4.88em;
}
.column-slider__container {
    position: relative;
    width: calc((100vw - (5 * var(--gap))) / 6);
    height: calc((100vw - (5 * var(--gap))) / 6);
}
.column-slider {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.column-slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.48, 0.04, 0.52, 0.96);
    height: 100%;
}
.column-slider .swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
}
.column-slider__fraction {
    position: absolute;
    z-index: 11;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.column-slider__fraction-data {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.8rem;
    /* font-size: calc(100vw / 1920 * 10 * 12.8); */
    font-weight: 700;
    font-family: var(--font-title);
}
.column-slider__fraction-current,
.column-slider__fraction-separator {
    color: var(--color-white);
}
.column-slider__fraction-total {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
    top: auto;
    bottom: 0;
    height: 3px;
}
.swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--color-white);
}
/* ./section__01 */

/* section__02 */
.section__02 {
    position: relative;
}
.section__02-top {
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
    z-index: 2;
}
.section__02 .section__header {
    width: 100%;
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin-left: calc(
            (((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 2) + var(--half-gap)
    );
}
/* filter */
.filter {
    margin-bottom: 2.7777em; /* 50px */
}
.filter__title {
    font-weight: 400;
    font-family: var(--font-title);
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.8888em;
}
.filter__list {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 var(-1 * var(--half-gap));
}
.filter__item {
    padding: 1.1428em 1.5em;
    border: 2px solid var(--color-white);
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    color: var(--color-white);
    background: transparent;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3.9285em;
    transition: all 0.3s linear;
    margin: 0 var(--half-gap) var(--half-gap);
	cursor: pointer;
}
.filter__item:hover,
.filter__item.active {
    background-color: var(--color-white);
    color: #4e6677;
}

.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--half-gap));
    padding-top: 2.7777em; /* 50px; */
    padding-bottom: 2.7777em; /* 50px; */
}
.products__item {
    /* width: 304px; */
    width: calc(((100vw - (5 * var(--gap))) / 6) * 1);
    margin: 0 var(--half-gap) var(--gap);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-gray);
}
.products__item-top {
    flex-grow: 1;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.products__item-img {
	flex-grow: 1;
	display: flex;
    align-items: center;
    justify-content: center;
}

.products__item-img img {
    margin: 0 auto;
}
.products__item-title {
    color: var(--color-dark);
    font-size: var(--body-fz);
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--font-body);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.3888em; /* 25px; */
    //position: absolute;
    //bottom: 0;
   // left: 0;
    width: 100%;
    //z-index: 2;
}
.products__item-button {
    flex-shrink: 0;
    background-color: var(--color-light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.8333em; /* 15px; */
    padding-bottom: 0.8333em; /* 15px; */
    width: 100%;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s linear;
}
.products__item-button span {
    color: var(--color-dark);
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    font-weight: 600;
    font-family: var(--font-title);
    transition: color 0.3s linear;
    pointer-events: none;
}
.products__item-button svg {
    width: 1.1111em; /* 20px; */
    height: 1.1111em; /* 20px; */
    display: inline-block;
    margin-left: 0.5555em; /* 10px; */
    flex-shrink: 0;
    pointer-events: none;
}
.products__item-button svg path {
    fill: var(--color-dark);
    transition: fill 0.3s linear;
}

.products__item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.products__item:hover .products__item-button {
    background-color: var(--color-dark2);
}
.products__item:hover .products__item-button span {
    color: var(--color-white);
}
.products__item:hover .products__item-button svg path {
    fill: var(--color-white);
}

/* ./filter */

/* ./section__02 */

/* ===== section__glass-cleaning ===== */

.section__glass-cleaning{
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: 4.8333em;
}

.section__glass-cleaning .section__gc-num{
  display: flex;
  margin-bottom: 1.2rem;
}
.section__glass-cleaning .section__gc-num-left{
  flex: 0 0 50%;
}
.section__glass-cleaning .section__header-num{
  color: transparent;
  -webkit-text-stroke: 1px var(--color-light-blue);
  line-height: 1;
}

.section__glass-cleaning .section__gc-top{
  display: flex;
  align-items: flex-start;
  gap: var(--gap);
  margin-bottom: 3.5rem;
}
.section__glass-cleaning .section__gc-top-left,
.section__glass-cleaning .section__gc-top-right{
  flex: 1 1 0;
  min-width: 0;
}
.section__glass-cleaning .section__header{
  margin: 0 0 1.5rem;
}
.section__glass-cleaning .section__text{
  max-width: 62ch;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section__glass-cleaning .section__glass-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px){
  .section__glass-cleaning .section__gc-top{
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .section__glass-cleaning .section__glass-image{aspect-ratio: 3/2}
}




/* ===== end section__glass-cleaning ===== */


/* section__03 */
.section__03 {
    position: relative;
    color: var(--color-dark2);
    padding-top: 8.3333em; /* 150px */
    padding-bottom: 3rem; /* 54px */
}
.section__03 .section__header-num {
    -webkit-text-stroke: 1px var(--color-dark2);
}
.section__03 .section__header-title {
    color: var(--color-dark2);
}
.section__03 .section__content {
    margin-bottom: 8.3333em; /* 150px */
}
.section__03 .section__content-inner {
    color: var(--color-dark);
}

.app-fields {
    padding-top: 5.5555em; /* 100px */
}
.app-fields__title {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 0 0 3.375em;
    text-transform: uppercase;
}
.app-fields__list {
    margin: 0 calc(-1 * var(--half-gap));
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.app-fields__item {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 1);
    margin: 0 var(--half-gap) var(--gap);
}
.app-fields__item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 92px;
      height: 92px; */
    width: 5.1111em;
    height: 5.1111em;
    background-color: var(--color-gray);
    margin-bottom: 1.11em;
}
.app-fields__item-img img {
    width: 2.7777em;
}
.app-fields__item-title {
    /* font-size: calc(100vw / 1920 * 10 * 2.4); */
    font-size: 2.4rem;
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 700;
    font-family: var(--font-title);
    margin-bottom: 1em;
    max-width: 275px;
}
.app-fields__item-descr {
    max-width: 275px;
}

.promo {
    position: relative;

    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 122px 65px 122px;
    padding-left: 22em;
}

@media (max-width: 1440px) {
    .promo {
        padding-left: 24em;
    }
}

@media (max-width: 1024px) {
    .promo {
        padding-left: 16em;
    }
}

.promo__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.promo__item:not(:last-child) {
    margin-right: 70px;
}

@media (max-width: 1024px) {
    .promo__item:not(:last-child) {
        margin-right: 15px;
    }
}

.promo__img {
    position: absolute;
    left: 16%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .promo__img {
        transform: translate(0);
    }
}

.promo__img img {
    margin: 0 auto;
    height: 28em;
}

@media (max-width: 1024px) {
    .promo__img img {
        height: 31em;
    }
}

@media (max-width: 767px) {
    .promo__img img {
        margin-bottom: 36px;
    }
}

.promo__item-first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo__item-title {
    /* font-size: 21px; */
    /* font-size: calc(100vw / 1920 * 10 * 2.1); */
    font-size: 2.1rem;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--font-title);
    margin-bottom: 1em;
    text-transform: uppercase;
}
.promo-btn {
    color: var(--color-dark);
    display: flex;
    align-items: center;
    /* padding: 16px 20px; */
    padding: 1.1428em 1.4285em;
    background: var(--color-white);
    /* font-size: 14px; */
    /* font-size: calc(100vw / 1920 * 10 * 1.4); */
    font-size: 1.4rem;
    line-height: 1.2;
    font-family: var(--font-title);
    border: none;
    border-radius: 0;
}
.promo-btn svg {
    /* width: 20px;
    height: 20px; */
    width: 1.4285em;
    height: 1.4285em;
    display: inline-block;
    flex-shrink: 0;
    /* margin-left: 10px; */
    margin-left: 0.7143em;
}
.promo-btn svg path {
    fill: var(--color-dark);
}

.promo-option__title {
    /* margin-bottom: 10px; */
    margin-bottom: 0.625em;
    /* font-size: 16px; */
    /* font-size: calc(100vw / 1920 * 10 * 1.6); */
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-light-blue);
    font-family: var(--font-title);
}
.promo-option__values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* margin-bottom: 25px; */
    margin-bottom: 1.3833em;
}

.promo-option__values-item {
    color: var(--color-accent);
    /* font-size: 16px; */
    /* font-size: calc(100vw / 1920 * 10 * 1.6); */
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--font-title);
}
.promo-option__values-item:not(:last-child) {
    /* margin-right: 28px; */
    margin-right: 1.75em;
}
.promo-item__title {
    /* font-size: 16px; */
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--color-light-blue);
    font-family: var(--font-title);
    /* margin-bottom: 25px; */
    margin-bottom: 1.5625em;
}
/* ./section__03 */

/* section__04 */
.section__04 {
    position: relative;
    background: var(--color-dark);
    padding-top: 4.8333em; /* 87px */
}
.section__04-left {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin: 0 var(--half-gap);
}
.section__04-right {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin-left: calc(
            ((100vw - (5 * var(--gap))) / 6) * 1 + var(--gap) * 1 + var(--half-gap)
    );
    margin-right: var(--half-gap);
    padding-top: 230px;
}
.section__04 .section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 190px;
}
.section04__img {
    height: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
}

.te-accordion__item {
    border-bottom: 1px solid #4e6677;
    /* margin-bottom: 56px; */
    margin-bottom: 3.1111em;
}
.te-accordion__title {
    background-color: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: var(--body-fz);
    margin-bottom: 1.1111em; /* 20px; */
}
.te-accordion__title span {
    text-align: left;
    flex-grow: 1;
    font-size: 1.6666em; /* 30px; */
    line-height: 1.2;
    color: var(--color-light-blue);
    font-family: var(--font-title);
}
.te-accordion__title svg {
    /* width: 27px;
    height: 27px; */
    width: 1.5em;
    height: 1.5em;
    flex-shrink: 0;
    /* margin-left: 10px; */
    margin-left: 0.5555em;
    transition: transform 0.3s linear;
}
.te-accordion__title._active svg {
    transform: rotate(-90deg);
}
.te-accordion__content {
    line-height: 1.5;
    font-weight: 300;
    color: var(--color-white);
    font-family: var(--font-body);
    margin-bottom: 2.7777em; /* 50px */
}

.section__04-footer {
    width: 50%;
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin: 0 var(--half-gap);
    margin-left: calc(
            ((100vw - (5 * var(--gap))) / 6) * 3 + var(--gap) * 3 + var(--half-gap)
    );
    /* outline: 1px solid red;  */
    margin-bottom: 8.3333em; /* 150px */
}
.cform {
    margin-bottom: 2.1111em; /* 38px */
}
.cform__title {
    font-weight: 400;
    font-size: 3rem; /* 30px; */
    line-height: 1.2;
    text-transform: uppercase;
    color: #dbe6ed;
    font-family: var(--font-title);
    margin-bottom: 1.6666em; /* 50px; */
}
.cform__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--half-gap));
    margin-bottom: 2.5em; /* 45px; */
    /* width: 100%; */
}
.cform__row:last-child,
.cform__row--last {
    margin-bottom: 0;
}
.cform__row label {
    color: var(--color-gray);
    font-weight: 400;
    font-size: var(--small-fz); /* 14px */
    line-height: var(--small-lh);
    font-family: var(--font-title);
    margin: 0 var(--half-gap);
    width: calc(50% - var(--gap));
}
.cform__row input[type="text"],
.cform__row input[type="tel"] {
    width: 100%;
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #4e6677;
    font-size: var(--small-fz);
    line-height: var(--small-lh);
}
.cform__row input[type="submit"] {
    border: none;
    background-color: transparent;
    border-radius: 0;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    text-decoration-line: underline;
    color: #496a89;
    margin: 0 var(--half-gap);
}

.section_video {
    position: relative;
    width: 100%;
}
.section_video__innen {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.section_video__innen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 10px;
}
.section_video__innen svg {
    width: 150px;
    height: 150px;
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.section_video__title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-title);
    position: absolute;
    left: 2em; /* 80px; */
    top: 1.5em; /* 60px; */
    z-index: 5;
    text-transform: uppercase;
}
/* /.section__04 */

/* section__05 */
.section__05 {
    position: relative;
    padding-top: 8.3333em; /* 150px; */
    background-color: var(--color-dark);
}
.section__05-top {
    margin: 0 var(--half-gap);
    display: flex;
}
.section__05-top .section__05-top-left {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin: 0 var(--half-gap) 0
    calc(((100vw - (5 * var(--gap))) / 6) * 1 + var(--gap) * 1);
}
.section__05-top .section__05-top-right {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 2 + var(--gap) * 1);
    margin-left: calc(
            ((100vw - (5 * var(--gap))) / 6) * 1 + var(--gap) * 1 + var(--half-gap)
    );
    margin-right: var(--half-gap);
    margin-top: 350px;
}
.section__05-top .section__05-top-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__05-descr {
    color: var(--color-white);
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    font-weight: 300;
    font-family: var(--font-body);
    margin-bottom: 2.6666em; /* 48px; */
}

.partners {
    padding: 2.5em 0; /* 45px; */
}
.partners__title {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--font-title);
    text-transform: uppercase;
    margin-bottom: 1.6666em; /* 40px; */
    width: 100%;
    max-width: 620px;
}

@media (min-width: 768px) {
    .partners__title {
        padding-top: 45px;
    }
}

.partners__list {
    border-bottom: 1px solid #4e6677;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.partners__item {
    /* width: 180px;
    height: 180px; */
    width: 10em;
    height: 10em;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-dark2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5em; /* 45px; */
    padding: 1.35em; /* 25px; */
}

.section__05-bottom__img {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 1);
    margin: 0 var(--half-gap);
    height: calc(((100vw - (5 * var(--gap))) / 6) * 1);
}
.section__05-bottom__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* ./section__05 */

/* section__06 */
.section__06 {
    position: relative;
    padding-bottom: 7.1111em; /* 128px; */
    background-color: var(--color-dark);
}
.section__06-top .section__header {
    margin: 0;
}
.section__06-contacts {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 5 + var(--gap) * 4);
    margin: 0 var(--half-gap) 0
    calc(
            ((100vw - (5 * var(--gap))) / 6) * 1 + var(--gap) * 1 + var(--half-gap)
    );
    display: flex;
}
.section__06-data {
    padding-right: 20px;
    flex-shrink: 0;
    /* max-width: 456px; */
    max-width: 22.4vw;
}
.section__06-contacts-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.section__06-contacts-top {
    flex-grow: 1;
}
.section__06-contacts-bottom {
    flex-shrink: 0;
}
.contacts__item {
    margin-bottom: 1.4444em; /* 26px; */
}
.contacts__item:last-child {
    margin-bottom: 0;
}
.contacts__item-title {
    margin-bottom: var(--half-gap); /* 10px; */
    font-size: var(--body-fz);
    line-height: var(--body-lh);
    color: var(--color-white);
    font-weight: 400;
    font-family: var(--font-body);
}
.contacts__item-values {
    display: flex;
    flex-direction: column;
}
.contacts__item-values-item {
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 1.2857em; /* 27px; */
    color: var(--color-white);
    font-family: var(--font-body);
    margin-bottom: var(--half-gap); /* 10px */
    text-decoration: none;
}
a.contacts__item-values-item {
    transition: color 0.3s linear;
}
a.contacts__item-values-item span {
    color: var(--color-white);
}
a.contacts__item-values-item:hover {
    color: var(--color-accent);
}
a.contacts__item-values-item:hover span {
    color: var(--color-white);
}
.contacts__item-values-item img {
    flex-shrink: 0;
    margin-left: 0.238em; /* 5px; */
    display: inline-block;
    vertical-align: middle;
}
.contacts__item-values-item span {
    font-size: 1.6rem; /* 16px; */
    line-height: 1.2;
    font-weight: 400;
    display: inline-block;
    margin-left: var(--half-gap);
    flex-shrink: 0;
}
.section__06-contacts-bottom {
    margin-top: 7.6666em; /* 138px; */
}
.section__06-contacts-bottom .contacts__item:first-child {
    margin-bottom: 2.6111em; /* 47px; */
}
.section__06-contacts-bottom .contacts__item:last-child {
    margin-bottom: 0;
}

.section__06-map {
    flex-grow: 1;
    position: relative;
}
.section__06-map-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.maptalks-control {
    display: none;
    visibility: hidden;
    opacity: 0;
}
/* ./section__06 */

/* footer */
footer {
    background: var(--color-dark3);
    color: var(--color-white);
    /* padding: 56px 0 42px; */
    padding: 3.1111em 0 2.3333em;
}
.footer__top {
    border-bottom: 1px solid var(--color-dark);
    /* padding-bottom: 49px; */
    padding-bottom: 2.7222em;
}
.footer__bottom {
    padding-top: 2em; /* 36px; */
}
.footer__bottom-left {
    /* width: calc(25% - 20px);
    margin: 0 10px; */
    width: calc(((100vw - (5 * var(--gap))) / 6) * 1);
    margin: 0 var(--half-gap);
}
.copyright,
.develop {
    font-size: var(--medium-fz);
    line-height: var(--medium-lh);
    color: var(--color-dark2);
}
.develop {
    padding: 0 0.5em;
}
.develop a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: var(--medium-fz);
    line-height: var(--medium-lh);
    font-weight: 700;
}
.footer__bottom-right {
    margin: 0 var(--half-gap);
}

.footer__top-logo {
    width: calc(((100vw - (5 * var(--gap))) / 6) * 1);
    margin: 0 var(--half-gap);
    flex-shrink: 0;
}
ul.footer__top-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin: 0 var(--half-gap);

    list-style: none;
    padding: 0;
}
ul.footer__top-menu li a {
    display: inline-block;
    font-size: var(--medium-fz);
    line-height: var(--medium-lh);
    font-weight: 400;
    color: var(--color-white);
    padding: 0.5em 1em;
    text-decoration: none;
    transition: all 0.3s linear;
}
ul.footer__top-menu li a:hover {
    color: var(--color-accent);
}

/* ./footer */

/* adaptive */
@media (max-width: 1440px) {
    :root {
        --body-fz: 1.6rem;
    }
    .section__wrapper-small {
        max-width: none;
        padding: 0 30px;
        margin: 0 auto;
    }
    .header {
        padding-left: 30px;
    }
    #menu-header-menu {
        margin-left: 90px;
    }
    .section__content-col {
        width: calc(50% - (2 * var(--half-gap)));
    }
    .section__02 .section__header {
        margin-left: 0;
    }
    .products__item {
        width: calc(25% - (2 * var(--half-gap)));
    }
    .app-fields__item {
        width: calc(25% - (2 * var(--half-gap)));
    }
    .section__04-left {
        width: calc(50% - var(--gap));
    }
    .section__04 .section__header {
        align-items: flex-start;
        padding-left: 30px;
    }
    .section__04-right {
        margin-left: 0;
        width: calc(50% - var(--gap));
        padding-right: 30px;
    }
    .section__05-top .section__05-top-left {
        margin-left: 0;
        padding-left: 30px;
        width: calc(50% - var(--gap));
    }
    .section__05-top .section__05-top-right {
        margin-right: 0;
        width: calc(50% - var(--gap));
    }
    .section__06-contacts {
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
    }
    .section__06-data {
        max-width: calc(50% - var(--gap));
    }
    ul.footer__top-menu {
        justify-content: flex-end;
    }
}

@media (max-width: 1024px) {
    :root {
        --body-fz: 1.8rem;
        --h1-fz: 3.2rem;
    }
    .swiper-wrapper {
        height: 100vh;
    }
    .header__menu-left {
        padding: 0 30px;
    }
    #menu-header-menu .main-nav__link {
        font-size: 1.2em;
    }
    #menu-header-menu .menu-item-has-children .sub-menu a {
        font-size: 1em;
    }

    .header {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    :root {
        --body-fz: 1.5rem;
        --h1-fz: 3.2rem;
    }
    .swiper-wrapper {
        height: 100vh;
    }
}

@media (max-width: 767px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
    :root {
        --body-fz: 1.4rem;
        --gap: 0.7142em;
        --half-gap: calc(var(--gap) / 2);
    }

    .section__01 {
        padding: 5.7142em 0;
    }
    .section__wrapper-small {
        padding: 0 20px;
    }
    .section__01 .section__header {
        width: 100%;
    }
    .section__header-num {
        font-size: calc(2.86 * var(--body-fz));
        margin-bottom: 0.25em;
    }
    .section__header-title {
        font-size: calc(1.7142 * var(--body-fz));
        margin-bottom: 1.2em;
    }
    .section__01 .section__content {
        margin-bottom: 1.9285em;
    }
    .section__content-col {
        width: 100%;
        margin: 0 0 1.9285em;
    }
    .section__wrapper-small-inner {
        flex-wrap: wrap;
    }
    .section__content-col:last-child {
        margin-bottom: 0;
    }
    .section__content-inner {
        max-width: none;
    }

    .section__slider {
        margin: 0;
        display: block;
    }
    .sl1 {
        width: calc(
                ((100vw - 40px - (3 * var(--gap))) / 4) * 3 + var(--gap) * 2 + 20px
        );
        height: calc(
                ((100vw - 40px - (3 * var(--gap))) / 4) * 3 + var(--gap) * 2 + 20px
        );
        margin: 0 0 2.8571em;
    }
    .sl2 {
        width: calc(
                ((100vw - 40px - (3 * var(--gap))) / 4) * 2 + var(--gap) * 1 + 20px
        );
        height: calc(
                ((100vw - 40px - (3 * var(--gap))) / 4) * 2 + var(--gap) * 1 + 20px
        );
        margin-left: calc(
                ((100vw - 40px - (3 * var(--gap))) / 4) * 2 + var(--gap) * 2 + 20px
        );
        padding-bottom: 0;
    }
    .sl2 .swiper-pagination-progressbar.swiper-pagination-horizontal {
        display: none;
    }
    .column-slider__container {
        width: 100%;
        height: 100%;
    }
    .column-slider__fraction {
        right: auto;
        left: 0;
        transform: translate(-50%, -50%);
    }
    .column-slider__fraction-data {
        font-size: 4.2857em;
    }
    .main-slider__buttons .btn {
        padding: 15px 18px;
    }
    .main-slider__buttons .btn:last-child {
        padding-left: 0;
    }

    .section__02 .section__header {
        width: 100%;
    }

    .filter {
        display: flex;
        flex-direction: column;
        gap: 15px;
       // align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
        padding-top: 10px;
        margin-bottom: 4.7777em;
    }
    .filter__list-wrapper {
    position: relative;
    }
    .filter__title {
        font-size: 1em;
        margin-bottom: 0;
    }
    .filter__list {
        position: absolute;
       top: 0;
       right: 0;
        display: block;
        height: 32px;
       width: 100%;
        border-radius: 16px;
        border: 1px solid #fff;
        overflow: hidden;
    }
    .filter__item {
        // height: 32px;
        /* font-size: 1em; */
        font-size: 0.8em;
        line-height: 1.5;
        font-weight: 700;
        color: var(--color-accent);
        padding: 8px 15px;
        background: #fff;
        border-radius: 0;
        border: none;
        margin-bottom: 0;
        display: none;

    }
     .filter__item:not(:last-child) {
         
     }
    .filter__item.active {
        background: transparent;
        color: #fff;
        font-weight: 600;
        font-size: 0.7142em;
        display: block;
    }

    .filter__list-arrow {
        position: absolute;
        right: 10px;
        top: 4px;
        width: 11px;
        height: 8px;
    }
    .filter__list-arrow svg {
        width: 11px;
        height: 8px;
    }
    .filter__list-arrow svg path {
        fill: #fff;
    }

    .filter__list.active {
        background: #fff;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    .filter__list.active .filter__item {
        display: block;
    }
    .filter__list.active .filter__item.active {
        color: var(--color-dark3);
    }
    .filter__list.active .filter__list-arrow {
        transform: rotate(180deg);
        top: 20px;
    }
    .filter__list.active .filter__list-arrow svg path {
        fill: var(--color-dark3);
    }
    /* .section__02-bottom{
      position: relative;
      z-index: -1;
    } */

    .products__item {
        width: calc(50% - (2 * var(--half-gap)));
    }
    .products__item-button span {
        font-size: 0.8571em;
    }

    .section__03 {
        padding: 2.7777em 0;
    }
    .section__03 .section__content {
        margin-bottom: 2.7777em;
    }
    .promo {
        padding: 2.7777em 20px;
        margin: 0 -20px;
    }
    .promo__inner {
        display: block;
    }
    .promo__item {
        width: 100%;
        min-height: auto;
    }
    .promo__img {
        position: relative;
        left: auto;
        top: auto;
        overflow: hidden;
        margin-top: -55px;
        margin-bottom: -70px;
    }
    .promo__item-pr {
        text-align: center;
        margin-bottom: 3.8571em;
    }
    .promo__item {
        margin-bottom: 2.8571em;
    }
    .promo__item:last-child {
        margin-bottom: 0;
    }
    .promo__item-title {
        font-size: 1em;
        max-width: 60%;
        margin: 0 auto 1em;
    }
    .promo-btn {
        display: inline-flex;
    }
    .promo-option {
        margin-bottom: 1.4285em;
    }
    .promo-option:last-child {
        margin-bottom: 0;
    }
    .promo-option:last-child .promo-option__values {
        margin-bottom: 0;
    }
    .promo-option--mobile-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .promo-option--mobile-flex .promo-option__title {
        margin-bottom: 0;
    }
    .promo-option--mobile-flex .promo-option__values {
        margin-bottom: 0;
    }
    .promo-option__title {
        font-size: 1em;
    }
    .promo-option__values-item {
        font-size: 1em;
    }
    .promo-item__title {
        font-size: 1em;
    }

    .app-fields {
        padding-top: 2.8571em;
    }
    .app-fields__title {
        font-size: 1.1428em;
        text-align: center;
    }
    .app-fields__list {
        flex-direction: column;
        margin: 0;
    }
    .app-fields__item {
        margin: 0 0 2.8571em;
        width: 100%;
        text-align: center;
    }
    .app-fields__item-img {
        margin: 0 auto 0.8571em;
    }
    .app-fields__item-title {
        text-align: center;
        font-size: 1.1428em;
        margin-bottom: 0.5em;
        max-width: none;
        padding: 0 10px;
    }
    .app-fields__item-descr {
        max-width: 85%;
        margin: 0 auto;
    }

    .section__04 {
        padding: 2.8571em 0 0;
    }
    .section__04-left {
        width: 100%;
        margin: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section__04 .section__header {
        margin-bottom: 0;
        padding-left: 0;
    }

    /* da */
    .section__04-left .spoller {
        margin-bottom: 2.8571em;
    }

    .section04__img {
        width: calc(
                ((100vw - 40px - (var(--gap) * 3)) / 4) * 3 + (var(--gap) * 2) + 20px
        );
        height: calc(
                ((100vw - 40px - (var(--gap) * 3)) / 4) * 3 + (var(--gap) * 2) + 20px
        );
        position: relative;
        left: -20px;
        margin-bottom: 2.8571em;
    }

    .section__04-right {
        padding-right: 0;
        padding-top: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
    .te-accordion__item {
        margin-bottom: 2.1428em;
    }
    .te-accordion__title {
        margin-bottom: 2.1428em;
    }
    .te-accordion__title._active {
        margin-bottom: 1.4285em;
    }
    .te-accordion__title span {
        font-size: 1.5em;
        text-transform: uppercase;
    }

    .section__04-footer {
        width: 100%;
        margin: 0 20px 5.7142em;
    }
    .cform {
        margin-bottom: 0;
    }
    .cform__title {
        font-size: 1.5em;
    }
    .cform__row {
        margin: 0;
    }
    .cform__row label {
        width: 100%;
        font-size: 0.8571em;
        margin: 0 0 2.5em;
    }

    .section_video__innen img {
        margin-left: 0;
    }
    .section_video__innen {
        height: 88vw;
    }
    .section_video__title {
        font-size: 1.7142em;
        left: 20px;
        top: 1.375em;
        max-width: calc(
                (((100vw - 40px - (var(--gap) * 3)) / 4) * 3) + (var(--gap) * 2)
        );
    }
    .section_video__innen svg {
        width: 60px;
        height: 60px;
    }

    .section__05 {
        padding: 2.8571em 0;
    }
    .section__05-top {
        flex-direction: column;
    }
    .section__05-top .section__05-top-left {
        margin: 0;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section__05-top-left .section__header {
        margin: 0;
    }
    .section__05-btn .btn--small {
        font-size: 0.8571em;
        text-transform: none;
    }
    .section__05-top .section__05-top-right {
        width: calc(
                ((100vw - 40px - (var(--gap) * 3)) / 4) * 3 + (var(--gap) * 2) + 20px
        );
        height: calc(
                ((100vw - 40px - (var(--gap) * 3)) / 4) * 3 + (var(--gap) * 2) + 20px
        );
        margin: 2.8571em 0;
        margin-left: calc(
                ((100vw - 40px - (var(--gap) * 3)) / 4) * 1 + (var(--gap) * 1) + 20px
        );
    }

    .partners__title {
        font-size: 1.1428em;
        margin-bottom: 2.5em;
    }
    .partners__list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: auto;
    }
    .partners__item {
        width: 7.1428em;
        height: 7.1428em;
        padding: 0.85em;
        flex-shrink: 0;
        margin-right: 50px;
        margin-bottom: 2.8571em;
    }
    .partners__item:last-child {
        margin-right: 0;
    }
    .section__05-bottom__img {
        display: none;
    }

    .section__06 {
        padding-bottom: 2.8571em;
    }
    .section__06-contacts {
        padding: 0 20px;
        flex-direction: column;
    }
    .section__06-data {
        max-width: 100%;
        margin-bottom: 2.8571em;
    }
    .contacts__item-title {
        font-size: 0.8571em;
    }
    .contacts__item-values-item {
        font-size: 1em;
    }
    .section__06-contacts-bottom {
        margin-top: 1.4285em;
    }
    .section__06-contacts-bottom .contacts__item:first-child {
        margin-bottom: 0;
    }

    .section__06-map {
        height: 60vw;
        margin: 0 -20px;
    }

    footer {
        padding: 2.8571em 0;
    }
    .footer__top-logo {
        width: calc(((100vw - 40px - (3 * var(--gap))) / 4) * 2 + var(--gap));
        margin-bottom: 2.3571em;
    }

    ul.footer__top-menu {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    ul.footer__top-menu li {
        width: calc(((100vw - 40px - (3 * var(--gap))) / 4) * 2 + var(--gap));
    }
    ul.footer__top-menu li a {
        font-size: 0.8571em;
        padding: 0.5em 0.4em;
    }
    .footer__bottom {
        padding-top: 1.5em;
    }
    .footer__bottom-left {
        width: 100%;
        text-align: center;
        margin-bottom: 0.75em;
    }
    .footer__bottom-right {
        width: 100%;
        text-align: center;
    }
    .copyright,
    .develop {
        font-size: 1em;
    }
    .develop a {
        font-size: 1em;
    }
}

/* ===========================  modals  ======================================= */
/* .site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.site-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
} */

/* .order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
} */

/* .order-modal.active {
  visibility: visible;
  opacity: 1;
  z-index: 1001;
} */

.order-product-form__wrapper,
.order-water-form__wrapper {
    display: flex;

    width: 100%;
    margin: 0 auto;

    background: #ffffff;
}

@media (max-width: 767px) {
    .order-product-form__wrapper,
    .order-water-form__wrapper {
        display: block;
    }
}

.cooperation-form__wrapper,
.help-form__wrapper {
    background: #ffffff;
    width: 100%;
    margin: 0 auto;
}

.order-form__img-wrapper {
    background: var(--color-dark);
    width: 39%;
}

@media (max-width: 767px) {
    .order-form__img {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        border: 0;
        padding: 0;

        white-space: nowrap;
        clip-path: inset(100%);
        clip: rect(0 0 0 0);
        overflow: hidden;
    }
}

.order-form__img {
    margin: 0 auto;
    object-fit: contain;
    height: 100% !important;
}

.order-form__data {
    flex-grow: 1;
    width: 61%;
    padding: 2em 2.7777em;
}

@media (max-width: 767px) {
    .order-form__data {
        width: 100%;
        padding: 1.2em;
    }
}

.order-form__top {
    margin-top: 9px;
    margin-bottom: 26px;
    font-family: var(--font-title);
}
.order-form__title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 7px;
}

.order-water-form__wrapper .order-form__title {
    margin-bottom: 25px;
}

.order-form__package {
    margin-bottom: 25px;
    color: #95a1a7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.order-form__qty {
    margin-bottom: 1.5555em;
    margin-left: -1em;
}
.order-form__qty input[type="radio"] {
    display: none;
}
.order-form__qty label span {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #d9d9d9;
    border-radius: 33px;
    overflow: hidden;
    padding: 0.7142em 1.0714em;
    font-weight: 400;
    font-family: var(--font-title);
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    color: var(--color-dark);
    font-family: var(--font-title);
    transition: color 0.3s linear, background-color 0.3s linear;
    margin: 0 0.5em 0 0;
}
.order-form__qty input[type="radio"]:checked + span {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.order-form-stepper {
    display: flex;
    align-items: center;

	margin-bottom: 1.5555em;

}

.order-form-stepper [data-name="number-of-packages"] input {
    width: 47px;
	border: 1px solid #d9d9d9;
    border-radius: 33px;
    padding: 0.7142em 0;
    font-weight: 400;
    font-family: var(--font-title);
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    color: var(--color-dark);
    font-family: var(--font-title);
    outline: none;
    text-align: center;
}

/* 1) Ховаємо спінери в Chrome/Edge/Safari (WebKit/Blink) */
.order-form-stepper input[type="number"]::-webkit-outer-spin-button,
.order-form-stepper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;            /* важливо — прибирає зарезервований простір */
}

/* 2) Скидаємо нативний вигляд поля */
.order-form-stepper input[type="number"] {
  appearance: textfield;   /* сучасний синонім */
  -moz-appearance: textfield; /* Firefox */
  padding-inline-end: 0;   /* якщо браузер ще тримає «хвіст» праворуч */
}

.order-form-stepper__minus,
.order-form-stepper__plus {
    display: flex;
    align-items: center;

    cursor: pointer;
}

.order-form-stepper__minus {
    padding: 12px 12px 12px 0;
}

.order-form-stepper__plus {
    padding: 12px 0 12px 12px;
}

.order-form-stepper__pieces {
    margin-left: 12px;
    color: #95a1a7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.order-form__row {
    width: 100%;
    margin-bottom: 1.4444em;
}
.order-form__row:last-child {
    margin-bottom: 0;
}
.order-form__row label {
    font-size: var(--small-fz);
    line-height: var(--small-lh);
    font-family: var(--font-title);
}
.order-form__row span {
    color: red;
}
.order-form__row input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-light-blue);
    transition: border-color 0.3s linear;
    font-weight: 400;
    font-family: var(--font-title);
    font-size: 1.2em;
}
.order-form__row input:focus {
    outline: none;
    border-radius: 0;
    border-color: var(--color-dark);
}
.order-form__row textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-light-blue);
    transition: border-color 0.3s linear;
    font-weight: 400;
    font-family: var(--font-title);
    font-size: 1.2em;
}
.order-form__row textarea:focus {
    outline: none;
    border-radius: 0;
    border-color: var(--color-dark);
}
.order-form__row input[type="submit"] {
    width: auto;
    background: transparent;
    border-bottom: none;
    font-family: var(--font-title);
    font-size: 0.7777em;
    text-decoration: underline;
    font-weight: 700;
    color: #496a89;
}
.order-form__errors {
    color: red;
    font-size: 0.7777em;
    width: 100%;
    margin-top: 1em;
}

/* ============ help_in_hero and cooperation form ============== */

.cooperation-form__wrapper,
.help-form__wrapper {
    padding: 40px;
}

.cooperation-form__title,
.help-form__title {
    padding-bottom: 14px;

    font-family: var(--font-title);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #123453;

    text-transform: uppercase;
}

.cooperation-form__text,
.help-form__text {
    padding-bottom: 60px;

    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: #123453;
}

/* ============== повідомленн про успішну відправку ============= */

.success-message-form {
    position: fixed;
    z-index: 99999999;
    right: 0;
    bottom: 0;

    min-width: 40%;
    padding: 2.7em 0;

    background-color: #fff;
    -webkit-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 60%);

    transform: translate(110%, -13px);
    transition: transform 500ms;
}

.success-message-form h2 {
    padding-bottom: 12px;

    font-family: var(--font-title);
    font-weight: 400;
    text-transform: uppercase;
}
.success-message-form p {
    font-weight: 300;
}

.success-message-form h2,
.success-message-form p {
    font-size: 1.4em;
    text-align: center;
}

@media (max-width: 1440px) {
    .success-message-form {
        min-width: 50%;
    }
}

@media (max-width: 1024px) {
    .success-message-form {
        min-width: 45%;
        padding: 1.4em 0;
    }

    .success-message-form h2 {
        padding-bottom: 12px;
    }

    .success-message-form p,
    .success-message-form h2 {
        font-size: 0.85em;
    }
}

@media (max-width: 767px) {
    .success-message-form {
        min-width: auto;
        padding: 1em 1em;
    }
}

/* ./modals */

@media (max-width: 767px) {
    .main-slider__fraction {
        display: none;
    }

    .header-slider .slide__2,
    .header-slider .slide__3 {
        display: none;
    }

    .header-slider .slide__1 .slider__inner .line__4,
    .header-slider .slide__1 .slider__inner .line__5,
    .header-slider .slide__1 .slider__inner .line__6 {
        display: none;
    }
    .header-slider .slide__1 .slider__inner .line__1 {
        width: 20px;
    }
    .header-slider .slide__1 .slider__inner .line__3 {
        width: 20px;
        left: auto;
        right: 0;
    }
    .header-slider .slide__1 .slider__inner .line__3::after {
        right: auto;
        left: 0;
    }
    .header-slider .slide__1 .slider__inner .line__2 {
        width: calc(50% - 20px);
        left: 20px;
    }

    .header {
        display: flex;
        justify-content: space-between;
        padding: 20px 20px 0 20px;
    }
    .header__top {
        display: none;
    }
    .mheader__logo {
        width: 10em;
        overflow: hidden;
        display: inline-block;
    }

    .burger__text {
        display: none;
    }

    .burger {
        width: 2.8571em;
        height: 2.8571em;
    }
    .burger__line {
        left: 0.6428em;
    }

    .main-nav.active {
        overflow-y: auto;
        padding: 4.5em 20px 60px 20px;
    }
    .main-nav__wrapper {
        flex-direction: column;
        justify-content: flex-start;
    }
    #menu-header-menu {
        margin-left: 0;
        margin-bottom: 2.8571em;
        width: 100%;
    }
    .header__menu-left {
        padding: 0;
    }
    .header__menu-left::before {
        display: none;
    }
    .main-nav__logo {
        max-width: 180px;
        margin-bottom: 1em;
    }
    .h1 {
        font-size: 2em;
    }
}

@media (min-width: 767px) {
    .mheader__logo {
        display: none;
    }
}

/* правка стилів cf7 для повідомлення після відправки форми (всі форми) */

.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
}

/* правка стилів cf7 для повідомлення після відправки форми (секція 4) */

.section__04-footer .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

.section__04-footer form.failed .wpcf7-response-output,
.section__04-footer form.aborted .wpcf7-response-output {
    color: #dc3232;
}

.section__04-footer form.spam .wpcf7-response-output {
    color: #f56e28;
}

.section__04-footer form.invalid .wpcf7-response-output,
.section__04-footer form.unaccepted .wpcf7-response-output,
.section__04-footer form.payment-required .wpcf7-response-output {
    color: #ffb900;
}

/* правка стилів cf7 для повідомлення після відправки форми (popup форми) */

.popmake-content .wpcf7 form.sent .wpcf7-response-output {
    color: transparent;
}

/* стилі для сторінок, посилання на які в футері */
.pages-from-footer__wrapper {
    min-height: calc(100vh - 15.52em);
}
.pages-from-footer__header {
    display: flex;
    align-items: center;

    padding: 30px 0;
}

.pages-from-footer__title {
    margin-left: 20px;

    font-family: var(--font-title);
    line-height: 1;
    color: var(--color-dark2);
}
.pages-from-footer__text {
    padding-bottom: 30px;
}