:root {
  --gap-width: 24px;
  --gap-width-0: -webkit-calc(var(--gap-width) / 2);
  --gap-width-0: -moz-calc(var(--gap-width) / 2);
  --gap-width-0: calc(var(--gap-width) / 2);
  --gap-width-5: -webkit-calc(var(--gap-width) / 4 * 3);
  --gap-width-5: -moz-calc(var(--gap-width) / 4 * 3);
  --gap-width-5: calc(var(--gap-width) / 4 * 3);
  --gap-width-15: -webkit-calc(var(--gap-width) / 2 * 3);
  --gap-width-15: -moz-calc(var(--gap-width) / 2 * 3);
  --gap-width-15: calc(var(--gap-width) / 2 * 3);
  --gap-width-2: -webkit-calc(var(--gap-width) * 2);
  --gap-width-2: -moz-calc(var(--gap-width) * 2);
  --gap-width-2: calc(var(--gap-width) * 2);
  --fs-48: 48px;
  --fs-40: 40px;
  --fs-36: 36px;
  --fs-32: 32px;
  --fs-28: 28px;
  --fs-24: 24px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
}

body {
  color: #040404;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
}

section {
  margin-bottom: 100px;
}

a {
  -webkit-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  color: #007f60;
  cursor: pointer;
}
a:hover, a:active, a:focus {
  opacity: 0.8;
}

.row {
  row-gap: var(--gap-width);
}

h1 {
  font-size: var(--fs-40);
  font-weight: 700;
}

h2 {
  font-size: var(--fs-36);
  font-weight: 700;
}

h3 {
  font-size: var(--fs-32);
}

h4 {
  font-size: var(--fs-28);
}

h5 {
  font-size: var(--fs-24);
}

h6 {
  font-size: var(--fs-20);
}

[data-img] {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
  display: block;
}

.section__title {
  text-align: center;
  margin-bottom: 30px;
  display: block;
  text-decoration: none;
}
.section__title h2,
.section__title h3,
.section__title h4,
.section__title h5,
.section__title h6 {
  padding-bottom: 6px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.section__title h2:before,
.section__title h3:before,
.section__title h4:before,
.section__title h5:before,
.section__title h6:before {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: #007f60;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.btn {
  padding: 12px;
  -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
          border-radius: 12px;
  font-size: var(--fs-16);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  text-transform: uppercase;
}
.btn:hover, .btn:active, .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.btn__main {
  color: #ffffff;
  background-color: #007f60;
}
.btn__main:hover, .btn__main:active, .btn__main:focus {
  color: #ffffff;
  background-color: #007f60;
  opacity: 0.75;
}

.text > * {
  margin-bottom: var(--gap-width-5);
}
.text > *:last-child {
  margin-bottom: 0;
}

.form-control {
  outline: none;
  -webkit-border-radius: 12px;
     -moz-border-radius: 12px;
          border-radius: 12px;
  padding: 12px;
  border: 1px solid #007f60;
  font-size: inherit;
  background-color: #ECF1F5;
  font-size: 14px;
}
.form-control:hover, .form-control:focus, .form-control:active {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
}
.modal .btn-close {
  cursor: pointer;
}
.modal .form {
  background: #ffffff;
  color: #040404;
}

.form {
  margin: 0;
  padding: var(--gap-width-15);
  background: #393939;
  color: #ffffff;
  -webkit-border-radius: 16px;
     -moz-border-radius: 16px;
          border-radius: 16px;
  text-align: center;
}
.form .wpcf7-spinner {
  display: none;
}
.form p {
  margin: 0;
}
.form br {
  display: none;
}
.form .btn {
  width: 100%;
}
.form__title {
  margin-bottom: var(--gap-width-0);
  font-size: var(--fs-28);
  font-weight: 700;
}
.form__subtitle {
  margin-bottom: var(--gap-width);
  font-size: 14px;
  font-weight: 700;
}
.form__policy {
  margin-top: var(--gap-width-0);
  font-size: 14px;
}
.form__policy a {
  color: #007f60;
}

.logo {
  width: 200px;
}
.logo img {
  height: auto;
}

.mainMenu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainMenu > ul > li > a {
  color: #ffffff !important;
  padding: 8px;
  text-transform: uppercase;
}
.mainMenu ul {
  padding: 0;
  margin: 0;
}
.mainMenu ul li {
  display: block;
  position: relative;
}
.mainMenu ul li a {
  text-decoration: none;
  font-size: var(--fs-16);
  display: block;
}
.mainMenu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  max-width: 250px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9;
}
.mainMenu ul li ul li a {
  padding: 6px 12px;
  color: #040404;
  width: 100%;
}
.mainMenu ul li ul li a:hover {
  color: #007f60;
}

.header {
  padding: var(--gap-width-0);
  background-color: #393939;
}
.header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gap-width);
}
.header__search form {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.header__search form input[type=text] {
  padding-right: 44px;
  width: 200px;
}
.header__search form input[type=submit] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  border: 0;
  background: transparent;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M14.9536 14.9458L21 21M17 10C17 13.866 13.866 17 10 17C6.13401 17 3 13.866 3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10Z" stroke="%23007f60" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>');
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
  background-position: center center;
}

.title {
  padding: var(--gap-width-2);
  position: relative;
  color: #ffffff;
  border-bottom: 10px solid #007f60;
  background-image: url(../img/title__bg.webp);
  background-position: center left;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
     -moz-background-size: contain;
       -o-background-size: contain;
          background-size: contain;
}
.title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(15%, #007f60), color-stop(88%, rgba(99, 176, 158, 0.4431372549)));
  background-image: -webkit-linear-gradient(left, #007f60 15%, rgba(99, 176, 158, 0.4431372549) 88%);
  background-image: -moz-linear-gradient(left, #007f60 15%, rgba(99, 176, 158, 0.4431372549) 88%);
  background-image: -o-linear-gradient(left, #007f60 15%, rgba(99, 176, 158, 0.4431372549) 88%);
  background-image: linear-gradient(90deg, #007f60 15%, rgba(99, 176, 158, 0.4431372549) 88%);
  opacity: 0.75;
  z-index: 1;
}
.title .container {
  position: relative;
  z-index: 2;
}
.title .breadcrumbs {
  margin-bottom: var(--gap-width);
}
.title .breadcrumbs > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.title .breadcrumbs .breadcrumb_last {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  max-width: 350px;
}
.title .breadcrumbs a {
  color: #ffffff;
}
.title .breadcrumbs + h1 {
  margin-top: 0;
}
.title h1 {
  margin-bottom: 0;
  margin-top: -webkit-calc(24px + var(--gap-width));
  margin-top: -moz-calc(24px + var(--gap-width));
  margin-top: calc(24px + var(--gap-width));
}

.brands__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #63b09e;
}
.brands__block {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #63b09e;
  padding: var(--gap-width);
  text-decoration: none;
  text-align: center;
  color: #393939;
  font-size: var(--fs-20);
  font-weight: 700;
}
.brands__block:hover {
  color: #007f60;
  opacity: 1;
}
.brands__block [data-img] {
  padding-top: 50%;
  margin-bottom: var(--gap-width-0);
}

.categories__block {
  display: block;
  width: 100%;
  padding-top: 50.3%;
}

.products .filters {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}
.products__pagination {
  margin-top: var(--gap-width);
}
.products__pagination .navigation.pagination {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products__pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products__pagination .nav-links a,
.products__pagination .nav-links span {
  color: #040404;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 32px;
  text-decoration: none;
}
.products__pagination .nav-links a a:hover,
.products__pagination .nav-links span a:hover {
  background: #007f60;
  color: #ffffff;
}
.products__pagination .nav-links .current {
  background: #007f60;
  color: #ffffff;
}
.products__block {
  border: 2px solid #007f60;
  height: 100%;
}
.products__block [data-img] {
  padding-top: 50%;
}
.products__block__info {
  padding: var(--gap-width);
}
.products__block__info a {
  color: #040404;
  text-decoration: none;
  display: block;
}
.products__block__info a:hover {
  color: #007f60;
  opacity: 1;
}
.products__block__title {
  font-size: var(--fs-16);
  padding-bottom: var(--gap-width-0);
  margin-bottom: var(--gap-width-0);
  position: relative;
}
.products__block__title:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20%;
  height: 2px;
  background-color: #007f60;
}
.products__block__text p {
  margin: 0;
}

.filters .wpc-wrap-icons {
  font-weight: 700;
  color: #007f60;
}
.filters .wpc-filter-selected-values {
  display: none;
}
.filters ul {
  padding: 0;
}
.filters ul ul.children {
  margin-top: 7px !important;
}
.filters ul li.wpc-term-count-0 {
  display: none;
}
.filters ul li a {
  color: #040404;
}
.filters ul li a:hover {
  color: #007f60;
}
.filters .wpc-filter-collapsible.wpc-closed .wpc-filter-selected-values {
  display: block;
}
.filters .wpc-filters-reset-button {
  color: #040404;
  -webkit-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.filters .wpc-filters-reset-button:hover {
  border-color: #007f60;
  color: #007f60;
}
.filters__block {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px;
}
.filters__block:last-child {
  margin-bottom: 0;
}
.filters__block .btn__down {
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23040404" height="800px" width="800px" version="1.1" id="Layer_1" viewBox="0 0 330 330" xml:space="preserve"><path id="XMLID_225_" d="M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393 c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393 s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z"/></svg>');
  background-position: center center;
  -webkit-background-size: 14px 14px;
     -moz-background-size: 14px 14px;
       -o-background-size: 14px 14px;
          background-size: 14px 14px;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.filters__block__title {
  font-weight: 700;
  color: #007f60;
}
.filters__block ul {
  width: 100%;
  padding: 0;
  margin: 0;
}
.filters__block ul li {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px 12px;
  margin-bottom: 9px;
}
.filters__block ul li:last-child {
  margin-bottom: 0;
}
.filters__block ul li.hasChild > a {
  width: -webkit-calc(100% - 32px);
  width: -moz-calc(100% - 32px);
  width: calc(100% - 32px);
}
.filters__block ul li a {
  display: block;
  font-weight: 500;
  cursor: pointer;
  color: #040404;
  text-decoration: none;
}
.filters__block ul li a:hover {
  color: #007f60;
}
.filters__block ul li ul {
  width: 100%;
  padding-left: 12px;
  display: none;
}
.filters__block ul li ul li {
  margin-bottom: 3px;
}
.filters__block ul li ul li:last-child {
  margin-bottom: 0;
}
.filters__block ul li.active > .btn__down {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product__qrcode {
  margin: var(--gap-width) auto 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.map {
  width: 100%;
  height: 50vh;
}
.map iframe {
  height: 100%;
  width: 100%;
}

.contacts__img {
  height: 100%;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}
.contacts__map {
  width: 100%;
  height: 50vh;
}
.contacts__map iframe {
  height: 100%;
  width: 100%;
}

.footer {
  padding: var(--gap-width);
  background-color: #393939;
}
.footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--gap-width);
}
.footer .mainMenu ul li ul {
  top: auto;
  bottom: 100%;
}
.footer__bottom {
  margin-top: var(--gap-width);
  padding-top: var(--gap-width);
  border-top: 2px solid #ffffff;
  text-align: center;
  color: #ffffff;
}

.blog__left ul {
  margin: 0;
}
.blog__left ul li a {
  color: #040404;
  text-decoration: none;
}
.blog__left ul li a:hover {
  color: #007f60;
}

@media (min-width: 992px) {
  .mainMenu > ul > li:hover > a {
    background-color: #63b09e;
    opacity: 1;
  }
  .mainMenu > ul > li:hover ul {
    display: block;
  }
}
@media (max-width: 991px) {
  :root {
    --fs-48: 44px;
    --fs-40: 38px;
    --fs-36: 34px;
    --fs-32: 30px;
    --fs-28: 26px;
    --fs-24: 22px;
  }
  section {
    margin-bottom: 80px;
  }
  .mainMenu > ul {
    width: 100%;
  }
  .mainMenu > ul > li.menu-item-has-children > a {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 12px;
    padding-right: 32px;
  }
  .mainMenu > ul > li.menu-item-has-children > a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23ffffff" height="800px" width="800px" version="1.1" id="Layer_1" viewBox="0 0 330 330" xml:space="preserve"><path id="XMLID_225_" d="M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393 c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393 s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z"/></svg>');
    background-position: center center;
    -webkit-background-size: 14px 14px;
       -moz-background-size: 14px 14px;
         -o-background-size: 14px 14px;
            background-size: 14px 14px;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .mainMenu > ul > li.menu-item-has-children > a.active + ul {
    display: block;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    background: transparent;
    padding-left: 12px;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
  }
  .mainMenu > ul > li.menu-item-has-children > a.active + ul li a {
    color: #ffffff;
  }
  .header {
    padding: var(--gap-width) 0;
  }
  .header__wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .header__search {
    width: -webkit-calc(100% - 220px);
    width: -moz-calc(100% - 220px);
    width: calc(100% - 220px);
  }
  .header__search form {
    width: 100%;
  }
  .header__search form input[type=text] {
    width: 100%;
  }
  .header .mainMenu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: var(--gap-width);
  }
  .header .mainMenu__btn {
    width: 50px;
    height: 40px;
    background-color: #007f60;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    position: relative;
  }
  .header .mainMenu__btn span {
    width: 32px;
    height: 2px;
    -webkit-border-radius: 12px;
       -moz-border-radius: 12px;
            border-radius: 12px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
  }
  .header .mainMenu__btn span:nth-child(1) {
    top: 30%;
  }
  .header .mainMenu__btn span:nth-child(2) {
    top: 50%;
  }
  .header .mainMenu__btn span:nth-child(3) {
    top: 70%;
  }
  .header.active {
    position: relative;
    z-index: 100;
  }
  .header.active:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #393939;
    z-index: -1;
  }
  .header.active .mainMenu > ul {
    display: block;
  }
  .header.active .mainMenu__btn span:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
         -o-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .header.active .mainMenu__btn span:nth-child(2) {
    display: none;
  }
  .header.active .mainMenu__btn span:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -moz-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
         -o-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .brands__wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .brands__block {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 25%;
  }
  .footer__wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer .logo {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer .btn {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer .mainMenu {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
       -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .footer .mainMenu > ul {
    display: block;
  }
  .footer .mainMenu > ul li ul {
    position: relative;
    top: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
  }
  .footer .mainMenu > ul li ul li a {
    color: #ffffff;
  }
}
@media (max-width: 765px) {
  :root {
    --gap-width: 18px;
    --fs-48: 40px;
    --fs-40: 34px;
    --fs-36: 32px;
    --fs-32: 28px;
    --fs-28: 26px;
    --fs-24: 20px;
    --fs-20: 18px;
  }
  section {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  :root {
    --gap-width: 12px;
    --fs-48: 34px;
    --fs-40: 32px;
    --fs-36: 28px;
    --fs-32: 26px;
    --fs-28: 22px;
    --fs-24: 18px;
    --fs-20: 17px;
    --fs-18: 16px;
    --fs-16: 14px;
  }
  body {
    font-size: 16px;
  }
  section {
    margin-bottom: 50px;
  }
  .section__title {
    margin-bottom: 24px;
  }
  .row .col-6 {
    padding-right: 6px;
  }
  .row .col-6:nth-child(2n) {
    padding-left: 6px;
    padding-right: 12px;
  }
  .header__search {
    width: -webkit-calc(100% - 175px);
    width: -moz-calc(100% - 175px);
    width: calc(100% - 175px);
  }
  .brands__block {
    width: 33.3333333333%;
  }
}
@media (max-width: 419px) {
  :root {
    --fs-48: 32px;
    --fs-40: 30px;
    --fs-36: 26px;
    --fs-32: 24px;
  }
  section {
    margin-bottom: 40px;
  }
  .row .col-6 {
    width: 100%;
    padding-right: 12px;
  }
  .row .col-6:nth-child(2n) {
    padding-left: 12px;
  }
}
@media (max-width: 359px) {
  :root {
    --fs-48: 30px;
    --fs-40: 28px;
  }
  section {
    margin-bottom: 30px;
  }
  .section__title {
    margin-bottom: 18px;
  }
  .brands__block {
    width: 50%;
  }
}