/*!
Theme Name: altyn
Theme URI: http://underscores.me/
Author: Ilya Beskaravainyi
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: altyn
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

altyn is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@charset "UTF-8";

:root {
  --content-width: 1820px;
  --content-fluid-width: 1700px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-fluid-width: calc(var(--content-fluid-width) + (var(--container-offset) * 2));
  --font-family: "Noto Sans", serif;
  --font-family-second: "Architectural";
  --gray: #D7E1E0;
  --bg-light: #D7E1E0;
  --main-color: #000;
  --black-light: #505050;
  --green: #239385;
  --green-light: #E7F0F0;
  --green-dark: #1B554E;
  --success: #27c340;
  --error: #e02828;
  --yellow: #FCE9AC;
  --yellow-2: #FDF0C5;
  --disabled: #c5cfdc;
}

/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable */

.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */

@font-face {
  font-family: Architectural;
  font-display: swap;
  src: url("assets/fonts/Architectural.woff2") format("woff2"), url("assets/fonts/Architectural.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

input[type=range] {
  -webkit-appearance: none;
  /* Скрывает слайдер, чтобы можно было создать свой */
  width: 100%;
  /* Указание параметра ширины требуется для Firefox. */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
  /* Убирает голубую границу у элемента. Хотя, возможно, и стоит создавать некоторое оформления для состояния фокуса в целях обеспечения доступности. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  /* Скрывает слайдер, чтобы можно было добавить собственные стили. */
  border-color: transparent;
  color: transparent;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

button,
input,
select,
textarea {
  font: inherit;
  outline: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

ul[class] {
  list-style: none;
}

ul,
ol {
  list-style: none;
}

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

a {
  list-style: none;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s linear, color 0.2s linear;
  -o-transition: opacity 0.2s linear, color 0.2s linear;
  transition: opacity 0.2s linear, color 0.2s linear;
}

a svg {
  -webkit-transition: fill 0.2s linear, stroke 0.2s linear;
  -o-transition: fill 0.2s linear, stroke 0.2s linear;
  transition: fill 0.2s linear, stroke 0.2s linear;
}

a:hover {
  opacity: 1;
  text-decoration: none;
}

button {
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  cursor: pointer;
}

button svg {
  -webkit-transition: fill 0.2s linear, stroke 0.2s linear;
  -o-transition: fill 0.2s linear, stroke 0.2s linear;
  transition: fill 0.2s linear, stroke 0.2s linear;
}

button:hover {
  opacity: 1;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background-color: transparent;
}

.btn-check:focus+.btn,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a {
  text-decoration: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-footer button:active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-close:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: var(--main-color);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}

html {
  scroll-behavior: smooth;
}

body.hidden {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  width: 100%;
}

section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.sect.pb-0 {
  padding-bottom: 0;
}

.sect.pt-0 {
  padding-top: 0;
}

.formInput {
  height: 55px;
  border-radius: 5px;
  border: 1px solid #838383;
  background-color: #ffffff;
  width: 100%;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 16px;
}

.formInput::-webkit-input-placeholder {
  color: #b0b0b0;
  font-size: 16px;
}

.formInput::-moz-placeholder {
  color: #b0b0b0;
  font-size: 16px;
}

.formInput:-ms-input-placeholder {
  color: #b0b0b0;
  font-size: 16px;
}

.formInput::-ms-input-placeholder {
  color: #b0b0b0;
  font-size: 16px;
}

.formInput::placeholder {
  color: #b0b0b0;
  font-size: 16px;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.sectHead {
  margin-bottom: 45px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  background-color: #fff;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.container {
  padding: 0 var(--container-offset);
}

.container {
  padding: 0 15px;
}

.container-fluid {
  max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-family);
  color: var(--main-color);
  font-weight: 500;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: 48px;
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 24px;
}

.underline {
  text-decoration: underline;
}

@-webkit-keyframes shows {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shows {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.text--green {
  color: var(--green);
}

.text--lg {
  font-size: 18px;
  line-height: 150%;
}

.content>p {
  margin-bottom: 15px;
}

.content>p a {
  display: inline;
  border-bottom: 1px solid #000;
}

.content>ul {
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-type: disc;
  padding-left: 20px;
}

.content>a {
  display: inline;
  border-bottom: 1px solid #000;
}

.content h2 {
  margin-bottom: 20px;
}

.navArrow {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #D1E5E3;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.navArrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.navArrow:hover {
  background-color: #1B554E;
}

.navArrowPrev {
  background-image: url("assets/img/icons/arrow-prev.svg");
}

.navArrowNext {
  background-image: url("assets/img/icons/arrow-next.svg");
}

.navArrow--absolute .navArrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.navArrow--absolute .navArrowPrev {
  left: -70px;
}

.navArrow--absolute .navArrowNext {
  right: -70px;
}

.pageHead {
  padding-top: 30px;
  padding-bottom: 50px;
}

.page-head-white {
  color: #fff;
}

.firstSect {
  padding-top: 80px;
}

@media(max-width: 767px) {
  .firstSect {
    padding-top: 68px;
  }
}

.loadmore {
  color: #1B554E;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.pageHeadNoTitle .aioseo-breadcrumbs {
  margin-bottom: 0;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  height: 50px;
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 100px;
}

.button--md {
  height: 60px;
}

.button--lg {
  height: 65px;
}

.button--white {
  background-color: #fff;
}

.button--yellow {
  background-color: var(--yellow);
}

.button--yellow:hover {
  background-color: #FDF0C5;
}

.button--green {
  background-color: #1B554E;
  color: #fff;
}

.button--green:hover {
  background-color: #123834;
}

.button svg {
  width: 16px;
  height: 16px;
  stroke: #000;
}

.introBtn {
  margin-top: 30px;
}

.productCardBtn {
  color: #239385;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.productCardBtn:hover .btn-arrow-round {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.productCardBtn .btn-arrow-round {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #239385;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.aboutVideoBtn {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 20px 0px #FCE9AC;
  box-shadow: 0px 0px 20px 0px #FCE9AC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.aboutActionBtn {
  position: relative;
}

.aboutActionBtn::before {
  content: "";
  position: absolute;
  bottom: -27px;
  right: 66px;
  width: 141px;
  height: 28px;
  background: url("assets/img/icons/arrow-big.svg") no-repeat center center/contain;
}

.aboutActionBtn span {
  font-weight: 500;
  line-height: 120%;
  color: #FDF0C5;
  max-width: 105px;
}

.aboutActionBtnIcon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(253, 240, 197, 0.3);
}

.aboutActionBtnIcon img {
  width: 15px;
}

.orderBtn {
  height: 55px;
}

.shopBtn {
  position: relative;
  z-index: 1;
}

.productBtn {
  padding-left: 35px;
  padding-right: 35px;
}

/* Hamburger Menu */

.hamburger {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 18px;
  height: 14px;
  min-width: 15px;
  margin-right: 0;
  cursor: pointer;
  position: relative;
  display: none;
}

.hamburger div {
  -ms-flex-item-align: start;
  align-self: flex-start;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
}

.hamburger .meat {
  width: 100%;
}

.top-bun.active,
.meat.active,
.bottom-bun.active {
  opacity: 0;
}

.aioseo-breadcrumbs {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 300;
  color: #505050;
  margin-bottom: 30px;
}

.aioseo-breadcrumbs a {
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  font-weight: 400;
  color: #000;
}

.aioseo-breadcrumbs a:hover {
  color: #505050;
}

.page-head-white .aioseo-breadcrumbs {
  font-weight: 300;
  color: #DFDFDF;
}

.page-head-white .aioseo-breadcrumbs a {
  color: #fff;
  font-weight: 400;
}

.page-head-white .h1 {
  font-weight: 800;
  color: #fff;
}

.modal {
  display: none;
  width: 700px;
  padding: 50px;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  left: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--green-dark);
  border-radius: 10px;
}

@media(max-width: 575px) {
  .modal {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.modalDescr {
  margin-top: 10px;
  margin-bottom: 10px;
}

.modal .f-button {
  right: 6px;
  top: 6px;
}

.modal .sectHead {
  margin-bottom: 30px;
}

.modal .formBtn {
  width: 100%;
}

.modal .formInput {
  border-radius: 100px;
}

.fancybox__backdrop {
  background: rgba(30, 30, 30, 0.62);
}

.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  padding: 4px;
  background-color: var(--background);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
}

.tabs__nav-btn {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  border-radius: 10px;
  padding-left: 36px;
  padding-right: 36px;
  background-color: #E7F0F0;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
}

.tabs__nav-btn:hover {
  background-color: #1B554E;
  color: #fff;
}

.tabs__nav-btn--active {
  background-color: #1B554E;
  color: #fff;
  pointer-events: none;
}

.tabs__panel {
  display: none;
}

.tabs__panel--active {
  display: block;
}

.header {
  background-color: #1B554E;
  padding-top: 15px;
  padding-bottom: 12px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.headerW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.header .logo img {
  width: 160px;
}

.headerPhone {
  text-align: end;
  margin-left: auto;
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.headerPhone:hover {
  border-color: #fff;
}

.headerAddress {
  text-align: end;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.header nav.active {
  display: block;
  -webkit-animation: shows 0.5s;
  animation: shows 0.5s;
}

.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.header nav ul li a {
  font-size: 18px;
  line-height: normal;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}

.header nav ul li a:hover {
  border-color: #fff;
}

.header--main {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.header.fixed {
  background: #1B554E;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.headerNavCloseBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mob-menu-overlay {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.75);
  -webkit-animation: hideOverlay 0.5s;
  animation: hideOverlay 0.5s;
}

.mob-menu-overlay.active {
  display: block;
  -webkit-animation: showsOverlay 0.5s;
  animation: showsOverlay 0.5s;
}

.headerNavCloseBtn {
  display: none;
}

.headerNavCloseBtn img {
  width: 20px;
}

.intro {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.intro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.introContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.introW {
  min-height: calc(100vh - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.introLogo {
  width: 470px;
  margin-bottom: 10px;
}

.introLogoTitle {
  font-family: var(--font-family-second);
  text-transform: uppercase;
  color: #FFF;
  font-size: 53px;
  line-height: 100%;
}

.introDescr {
  color: #FFF;
  font-size: 20px;
  font-weight: 300;
  line-height: 145%;
  max-width: 530px;
}

.about-page.intro {
  min-height: 700px;
}

.about-page.intro::before {
  content: "";
  position: absolute;
  background: rgba(27, 85, 78, 0.3);
}

.about-page.intro::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.about-page .container {
  position: relative;
  z-index: 1;
}

.productCard {
  padding: 30px;
  background-color: #fff;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.productCardContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productCardImg {
  margin-bottom: 30px;
  display: block;
}

.productCardImg:hover {
  opacity: 0.8;
}

.productCardImg img {
  width: 100%;
  height: 280px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.productCardParam {
  height: 26px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #FDF0C5;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.productCardParams {
  margin-bottom: 20px;
}

.productCardTitle {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.productCardTitle:hover {
  color: var(--green);
}

.productCardDescr {
  color: #505050;
  font-weight: 300;
  line-height: 145%;
  margin-bottom: 30px;
}

.productSliderW {
  position: relative;
}

.productSect {
  background-color: #F4F9F9;
}

.productSect .container {
  position: relative;
}

.productSect .productSectLogo {
  position: absolute;
  top: -80px;
  left: -130px;
}

.productSlide {
  height: auto;
}

.productSlide .productCard {
  height: 100%;
}

.catalogMainW {
  position: relative;
  overflow: hidden;
}

.no-webp .catalogMainW::before {
  background: url("assets/img/decor/milk.png") no-repeat center center/contain;
}

.catalogMainW::before {
  content: "";
  width: 1155px;
  height: 606px;
  position: absolute;
  top: 676px;
  left: -300px;
}

.shopGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.shopGrid .productCard {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.shopSect {
  background-color: #F4F9F9;
}

.productTitle {
  margin-bottom: 30px;
}

.productDescr {
  color: #505050;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}

.productTermin {
  position: relative;
  z-index: 1;
}

.productTerminItem {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 117px;
}

.productTerminItemT {
  padding: 14px 12px 10px 12px;
  border-radius: 20px 20px 0px 0px;
  background: #DEEEEC;
}

.productTerminItemB {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  border-radius: 0px 0px 20px 20px;
  background: #FDF7E3;
  padding: 6px 12px 14px 12px;
}

.productTerminItemTemp {
  font-size: 22px;
  line-height: 150%;
}

.productTerminItemSecond {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 3px;
}

.productPageSect {
  position: relative;
  background-color: #fff;
}

.productDecor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 368px;
}

.productMainSlide img {
  height: 670px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  background-color: #fff;
  border-radius: 8px;
}

.productContent {
  padding-left: 40px;
}

.productThumbSlider {
  height: 580px;
}

.productThumbSliderW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.productThumbSliderW .navArrow {
  background-image: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.productThumbSliderW .navArrowNext {
  background-size: 18px;
}

.productThumbSliderW .navArrowNext:hover {
  background-image: url("assets/img/icons/arrow-down-white.svg");
}

.productThumbSliderW .navArrowNext:hover img {
  display: none;
}

.productThumbSlide {
  cursor: pointer;
  border: 1px solid rgba(35, 147, 133, 0.1);
  border-radius: 8px;
  -webkit-transition: border-color 0.2s linear;
  -o-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
}

.productThumbSlide:hover {
  border-color: #1B554E;
}

.productThumbSlide.swiper-slide-thumb-active {
  border-color: #1B554E;
}

.productThumbSlide img {
  border-radius: 8px;
  width: 100px;
  height: 100%;
  object-fit: contain;
}

.video-product {
  position: relative;
}

.video-product .aboutVideo {
  position: unset;
}

.video-product .aboutVideoImg {
  height: 1000px;
  width: 100%;
  border-radius: 0;
}

.about {
  overflow: hidden;
  background-color: #F4F9F9;
}

.aboutW {
  position: relative;
}

.aboutVideo {
  position: absolute;
  top: 220px;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  cursor: pointer;
}

.aboutVideo:hover .aboutVideoBtn {
  background: rgba(0, 0, 0, 0.8);
}

.aboutVideoImg {
  height: 455px;
  width: 810px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.aboutContent {
  background-color: #1B554E;
  border-radius: 10px 0px 0px 0px;
  padding: 90px 0 90px 220px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
}

.aboutContent::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  background-color: #1B554E;
}

.aboutContent .h2 {
  color: #fff;
  margin-bottom: 30px;
  line-height: 150%;
}

.aboutDescr {
  color: #D7E1E0;
}

.aboutInner {
  max-width: 750px;
}

.aboutAction {
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  margin-top: 50px;
}

.aboutBtnGetPrice {
  padding-left: 36px;
  padding-right: 36px;
}

.about-default {
  background-color: #F4F9F9;
}

.about-default .container {
  position: relative;
}

.about-default .container .about-default-logo {
  position: absolute;
  left: -130px;
  top: -100px;
}

.about-default .aboutVideo {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  width: 50%;
}

.about-default-content {
  width: 50%;
  padding-left: 60px;
}

.about-default-content .h2 {
  margin-bottom: 30px;
}

.about-default-content .content {
  font-weight: 300;
  color: #505050;
  line-height: 145%;
}

.about-product {
  background-color: #DEEEEC;
  position: relative;
  padding-top: 160px;
  overflow: hidden;
}

.about-product .container {
  position: relative;
  z-index: 1;
}

.about-product-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-product-image {
  width: 950px;
  position: relative;
  left: 100px;
}

.about-product-image-wrapper {
  position: relative;
}

.about-product-content {
  padding-bottom: 40px;
}

.about-product-content .h2 {
  margin-bottom: 30px;
}

.about-product-content .content {
  max-width: 650px;
  color: #505050;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  overflow: hidden;
  -webkit-line-clamp: 11;
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
}

.about-product-content .content.show {
  -webkit-line-clamp: unset;
}

.about-product-item {
  /* display: none; */
}

.about-product-item-wrapper {
  position: absolute;
  z-index: 1;
}

.about-product-item-wrapper:nth-child(1) {
  right: 0;
  top: -100px;
}

.about-product-item-wrapper:nth-child(2) {
  top: 100px;
  right: 300px;
}

.about-product-item-wrapper:nth-child(3) {
  top: 300px;
  right: 61px;
}

.about-top-decor {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  width: 1900px;
}

@media(max-width: 575px) {
  .about-top-decor {
    width: 100%;
    /* top: -2px; */
  }
}

.about-product-item {
  border-radius: 8px;
  position: relative;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 340px;
  color: unset;
  margin-left: 40px;
}

.about-product-item::after {
  content: '';
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  left: -5px;
  top: -5px;
  border: 5px solid rgba(35, 147, 133, 1);
  opacity: .2;
  border-radius: 13px;
}

.about-product-item::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: -10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(27, 85, 78, 0.5);
}

.about-product-item .tippy-content {
  padding: 0;
}

.about-product-item strong {
  font-size: 20px;
  font-weight: 500;
}

.about-product-item span {
  display: block;
  font-weight: 300;
  font-size: 16px;
}

.about-decor-lg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-product-btn-info {
  max-width: 168px;
  position: absolute;
  top: 360px;
  left: 17px;
}

.about-product-btn-info::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 30px;
  width: 141px;
  height: 28px;
  background: url("assets/img/icons/about-big-arrow.svg") no-repeat center center/contain;
}

.about-decor-top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.about-adv {
  background-color: #1B554E;
}

.about-adv .container {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-adv .h2 img {
  width: 277px;
}

.about-adv-abstract {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 0;
}

@media(max-width: 1400px) {
  .about-adv-abstract {
    display: none;
  }
}

.about-adv-descr {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  max-width: 600px;
  margin-top: 20px;
}

.about-adv-item {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
  background: -o-linear-gradient(top, #FFF 0%, #FFF 100%);
  background: linear-gradient(180deg, #FFF 0%, #FFF 100%);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
}

.about-adv-item-w {
  border: 10px solid rgba(255, 255, 255, 0.5);
  border-radius: 19px;
  height: 100%;
}

.about-adv-item-descr {
  color: rgba(0, 0, 0, 0.7);
  margin-top: 10px;
}

.about-adv-item-title {
  margin-top: 20px;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
}

.aboutAdvGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-left: 40px;
}

.aboutAdvGrid .about-adv-item-w {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

.about-adv-item-icon {
  width: 54px;
}

.partnersAbout {
  background-color: #1B554E;
}

.partnersAboutDescr {
  color: #FFF;
  font-size: 24px;
  line-height: 145%;
  max-width: 400px;
}

.partnersAboutW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.partnersAboutItem {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  padding: 30px;
  position: relative;
}

.partnersAboutItemCount {
  color: #FCE9AC;
  font-size: 60px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.partnersAboutItemTitle {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
}

.partnersAboutItemDescr {
  color: #DFDFDF;
  font-weight: 300;
  line-height: 145%;
}

.partnersAboutItem::before {
  position: absolute;
  bottom: 10px;
  right: -50px;
  z-index: 1;
  content: "";
  width: 60px;
  height: 18px;
  background: url("assets/img/icons/arrow-orange-adv.svg") no-repeat center center/contain;
}

.partnersAboutItem:last-child::before {
  display: none;
}

.partnersAboutGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  position: relative;
  z-index: 1;
}

.partnersGetW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partnersGet {
  background-color: #1B554E;
  position: relative;
}

.partnersGet .h2 {
  color: #fff;
  margin-bottom: 30px;
}

.partnersGet .aboutVideo {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  margin-top: 100px;
  display: block;
}

.partnersGetContent .h2 {
  padding-left: 40px;
}

.partnersGetContent .content {
  padding-left: 40px;
  color: #D7E1E0;
}

.partnersGetContent .aboutAction {
  padding-left: 40px;
}

.partnersMilkW {
  position: relative;
}

.partnersMilDecor {
  position: absolute;
  left: -130px;
  top: 260px;
  width: 920px;
  height: 485px;
  z-index: 1;
}

.partners {
  background-color: #F4F9F9;
  overflow: hidden;
}

.partners .sectHead {
  margin-bottom: 30px;
}

.partnersDescr {
  font-weight: 300;
  color: #505050;
}

.partnersSlideLogo {
  height: 150px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 12px;
}

.partnersSlideLogo:not(:last-child) {
  margin-bottom: 20px;
}

.partnersSlideLogo img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 242px;
  width: 100%;
  height: 100%;
}

.partnersSliderW {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.partners-abstract {
  background: #F4F9F9 url("assets/img/partners/abstract.svg") no-repeat center center/contain;
}

.partners-about {
  background-color: #fff;
  position: relative;
}

/* .partners-about::before {
  content: "";
  position: absolute;
  width: 1900px;
  /* height: 118px; 
  left: 0;
  top: 0;
  background: url("assets/img/partners/abstract-top.svg") no-repeat center center/contain;
} */

.adv .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
}

.adv .tabs__nav-btn {
  min-width: 395px;
}

.advGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 60px;
  padding-left: 20px;
}

.advItem {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

.advItemIcon {
  border-radius: 10px;
  /* background: #FDF0C5; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  /* width: 90px;
  height: 90px; */
  margin-bottom: 20px;
}

.advItemIcon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.advItemTitle {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
}

.advItemDescr {
  color: #505050;
  font-weight: 300;
  line-height: 145%;
}

.advImage {
  width: 570px;
}

.adv-product {
  position: relative;
}

.adv-product .container {
  position: relative;
  z-index: 1;
}

.adv-product .advGrid {
  padding-left: 80px;
}

.adv-product .adv-product-abstract {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

@media(max-width: 767px) {
  .adv-product .adv-product-abstract {
    display: none;
  }
}

.adv-product .h2 {
  margin-left: 80px;
}

.adv-partners {
  position: relative;
  padding-top: 150px;
}

/* .adv-partners::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 133px;
  background: url("assets/img/decor/decor-green.svg") no-repeat top center/contain;
} */

.adv-partners .container {
  position: relative;
  z-index: 1;
}

.adv-partners .adv-product-abstract {
  position: absolute;
  top: 0;
  left: -73px;
  height: 100%;
}

@media(max-width: 767px) {
  .adv-partners .adv-product-abstract {
    display: none;
  }
}

.adv-partners .advImage {
  width: 100%;
}

.news {
  background-color: #F4F9F9;
  overflow: hidden;
}

.newsSlide {
  height: auto;
}

.newsSlide .newsCard {
  height: 100%;
}

.newsCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.newsCardImg {
  display: block;
  margin-bottom: 20px;
}

.newsCardImg:hover {
  opacity: 0.85;
}

.newsCardImg img {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.newsCardTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
  display: block;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.newsCardTitle:hover {
  color: var(--green);
}

.newsCardDate {
  color: #909090;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.newsCardContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsCardContentT {
  margin-bottom: 20px;
}

.news .buttonText .arrow-text {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.news .buttonText:hover .arrow-text {
  -webkit-transform: translateX(-2px);
  -ms-transform: translateX(-2px);
  transform: translateX(-2px);
}

.news .container {
  position: relative;
  padding-top: 80px;
}

.newsSliderW {
  position: relative;
}

.newsAbstract {
  position: absolute;
  top: 0;
  right: -50px;
}

.contactsContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 10px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#F4F9F9), to(#F4F9F9));
  background: -o-linear-gradient(bottom, #F4F9F9 0%, #F4F9F9 100%);
  background: linear-gradient(0deg, #F4F9F9 0%, #F4F9F9 100%);
}

.contactsContent--green {
  background: -webkit-gradient(linear, left bottom, left top, from(#DEEEEC), to(#DEEEEC));
  background: -o-linear-gradient(bottom, #DEEEEC 0%, #DEEEEC 100%);
  background: linear-gradient(0deg, #DEEEEC 0%, #DEEEEC 100%);
}

.contactsMap iframe,
.contactsMap {
  height: 600px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.contactsItem {
  font-size: 20px;
  font-weight: 300;
  line-height: 145%;
}

.contactsItem img {
  width: 28px;
}

.contactsItem:hover {
  color: var(--green);
}

.contactsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 30px;
}

.contactsPage {
  background-color: #DEEEEC;
}

.contactsPage .mapW iframe {
  width: 100%;
  height: 700px;
  border-radius: 10px;
}

.contactsPageItem {
  padding-right: 25px;
  min-height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contactsPageItem-b-l {
  padding-left: 30px;
  border-left: 1px solid #DEEEEC;
}

.contactsPageItem a {
  color: #000;
  font-size: 20px;
  font-weight: 300;
  line-height: 145%;
}

.contactsPageItem a:hover {
  color: var(--green);
}

.contactsPageItem div {
  color: #000;
  font-size: 20px;
  font-weight: 300;
  line-height: 145%;
}

.contactsPageW {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
}

.order {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1B554E;
  overflow: hidden;
}

.order .container {
  position: relative;
}

.order .h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

.orderW {
  max-width: 795px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.orderGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.orderGrid .inputW .formInput {
  width: 300px;
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  border-radius: 100px;
  color: #fff;
  font-weight: 300;
}

.orderGrid .inputW .formInput::-webkit-input-placeholder {
  color: #fff;
  font-weight: 300;
}

.orderGrid .inputW .formInput::-moz-placeholder {
  color: #fff;
  font-weight: 300;
}

.orderGrid .inputW .formInput:-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

.orderGrid .inputW .formInput::-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

.orderGrid .inputW .formInput::placeholder {
  color: #fff;
  font-weight: 300;
}

.order .abstractL {
  position: absolute;
  left: -200px;
  top: -270px;
}

.order .abstractR {
  position: absolute;
  right: -200px;
  top: -270px;
}

.buyerForm {
  background: -webkit-gradient(linear, left bottom, left top, from(#DEEEEC), to(#DEEEEC));
  background: -o-linear-gradient(bottom, #DEEEEC 0%, #DEEEEC 100%);
  background: linear-gradient(0deg, #DEEEEC 0%, #DEEEEC 100%);
  overflow: hidden;
}

.buyerForm .formInput {
  border-radius: 100px;
  border: 1px solid transparent;
  background: #FFF;
  padding-left: 24px;
  padding-right: 24px;
}

.buyerForm .formInput::-webkit-input-placeholder {
  font-weight: 300;
  color: #505050;
}

.buyerForm .formInput::-moz-placeholder {
  font-weight: 300;
  color: #505050;
}

.buyerForm .formInput:-ms-input-placeholder {
  font-weight: 300;
  color: #505050;
}

.buyerForm .formInput::-ms-input-placeholder {
  font-weight: 300;
  color: #505050;
}

.buyerForm .formInput::placeholder {
  font-weight: 300;
  color: #505050;
}

.buyerForm .formInput:focus {
  border-color: var(--green);
}

.buyerForm .formText {
  font-weight: 400;
  border-radius: 8px;
  background: #FFF;
  width: 100%;
  padding-top: 15px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  height: 120px;
  border: 1px solid transparent;
}

.buyerForm .formText:focus {
  border-color: var(--green);
}

.buyerForm .formText::-webkit-input-placeholder {
  color: #505050;
  font-weight: 300;
}

.buyerForm .formText::-moz-placeholder {
  color: #505050;
  font-weight: 300;
}

.buyerForm .formText:-ms-input-placeholder {
  color: #505050;
  font-weight: 300;
}

.buyerForm .formText::-ms-input-placeholder {
  color: #505050;
  font-weight: 300;
}

.buyerForm .formText::placeholder {
  color: #505050;
  font-weight: 300;
}

.buyerFormTitle {
  margin-bottom: 20px;
  color: #000;
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
}

.buyerFormDescr {
  margin-bottom: 30px;
}

.buyerFormW {
  position: relative;
}
.buyerForm {
  padding-bottom: 55px;
}
@media(max-width: 991px){
  .buyerForm {
    padding-bottom: 270px;
  }
}
.buyerFormImg {
  position: absolute;
  right: -146px;
  top: -93px;
  max-width: 854px;
  /* margin-left: auto; */
  width: 100%;
  height: 576px;
  object-fit: cover;
  object-position: left;

}
@media(max-width: 1400px){
  .buyerFormImg {
    height: 624px;
    right: -127px;
  }
}
@media(max-width: 991px) {
  .buyerFormImg {
    /* min-width: 605px; */
    object-fit: contain;
    /* top: -289px;
    left: unset;
    right: -352px; */
    height: unset;
  }
}
@media(max-width: 575px){
  .buyerFormImg {
    right: -13px;
    object-position: right;
    height: 400px;
  }
  .buyerForm {
    padding-bottom: 220px;
  }
}

.qualityAbout {
  background-color: #DEEEEC;
  overflow: hidden;
  padding-bottom: 111px;
}

.qualityAbout .container {
  position: relative;
}

.qualityItemVideo {
  position: relative;
}

.qualityItemVideo .aboutVideo {
  position: unset;
}

.qualityItemLineW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  position: relative;
}

.qualityItemLineW .rect {
  width: 14px;
  height: 14px;
  background-color: #1B554E;
  border-radius: 50%;
}

.qualityItemLine {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.qualityItemLine .line-full {
  height: 3px;
  width: 100vw;
  background-color: #0F8778;
  position: absolute;
  left: calc(100% + 20px);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.qualityItemLine--reverse {
  margin-left: auto;
}

.qualityItemLine--reverse .line-full {
  left: unset;
  right: calc(100% + 20px);
}

.qualityItemContent {
  padding-left: 50px;
}

.qualityItemContent .content {
  color: rgba(0, 0, 0, 0.7);
}

.qualityItemContent--second {
  padding-left: 0;
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.qualityItem:not(:last-child) {
  margin-bottom: 90px;
}

.quality-logo {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.buyerHow {
  background-color: #1B554E;
  position: relative;
}

.buyerHow .content {
  color: #fff;
  font-size: 20px;
  line-height: 145%;
  position: relative;
  z-index: 1;
}

.buyerHow .h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}

.buyerAbstract {
  position: absolute;
  left: 0;
  top: 0;
}

.steps {
  background: #DEEEEC url("assets/img/decor/cow.svg") center center;
  position: relative;
  padding-top: 150px;
}

/* .steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: -11px;
  width: 100%;
  height: 140px;
  background: url("assets/img/decor/how-abstract.svg") no-repeat top center/contain;
} */

.steps .sectHead {
  margin-bottom: 75px;
}

.stepsW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}

.stepsItem {
  background: #1B554E;
  padding: 30px;
  height: 100%;
  border-radius: 8px;
  position: relative;
}

.stepsItem::before {
  position: absolute;
  bottom: 10px;
  right: -50px;
  z-index: 1;
  content: "";
  width: 60px;
  height: 18px;
  background: url("assets/img/icons/arrow-orange-adv.svg") no-repeat center center/contain;
}

.stepsItemCount {
  color: #FCE9AC;
  font-size: 60px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.stepsItemDescr {
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 145%;
}

.stepsItemW {
  width: calc(33% - 10px);
  border: 10px solid rgba(27, 85, 78, 0.3);
  border-radius: 18px;
}

.stepsItemW:nth-child(3) .stepsItem::before,
.stepsItemW:nth-child(5) .stepsItem::before {
  display: none;
}

.stepsItemW:nth-child(3) .stepsItem::before {
  display: block;
}

.mapW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.mapNav {
  width: 400px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 600px;
  overflow-y: scroll;
  padding-right: 8px;
}

.mapNav label {
  background-color: #DEEEEC;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  line-height: 150%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, color 0.2s linear;
}

.mapNav label:hover {
  background-color: #1B554E;
  color: #fff;
}

.mapNav input {
  display: none;
}

.mapNav input:checked+label {
  background-color: #1B554E;
  color: #fff;
}

.mapIframe {
  width: 100%;
}

.mapIframe iframe {
  width: 100%;
  height: 600px;
}

/* полоса прокрутки (скроллбар) */

.mapNav::-webkit-scrollbar {
  width: 8px;
  /* ширина для вертикального скролла */
  height: 8px;
  /* высота для горизонтального скролла */
  background: #DEEEEC;
  border-radius: 8px;
}

/* ползунок скроллбара */

.mapNav::-webkit-scrollbar-thumb {
  background: #253861;
  border-radius: 8px;
  -webkit-box-shadow: inset 1px 1px 10px #1B554E;
  box-shadow: inset 1px 1px 10px #1B554E;
  -webkit-transition: nackground-color 0.2s linear;
  transition: nackground-color 0.2s linear;
}

.mapNav::-webkit-scrollbar-thumb:hover {
  background-color: #253861;
}

.footer {
  background-color: #112B27;
}

.footerT {
  border-bottom: 1px solid #123834;
  padding-top: 70px;
  padding-bottom: 50px;
}

.footerB {
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer .copyright,
.footer .politic,
.footer .develop {
  color: #8DAAA6;
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
}

.footer .politic:hover,
.footer .develop:hover {
  color: #fff;
}

.footerLogo {
  margin-bottom: 40px;
  display: block;
}

.footerLogo:hover {
  opacity: 0.85;
}

.footerLogoDescr {
  font-size: 15px;
  font-weight: 300;
  color: #8DAAA6;
  max-width: 315px;
}

.footerLogo img {
  width: 235px;
}

.footerTitle {
  color: #8DAAA6;
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 30px;
}

.footerPhone {
  color: #FFF;
  font-size: 24px;
  line-height: 145%;
  margin-bottom: 10px;
  display: block;
}

.footerPhone:hover {
  color: var(--yellow);
}

.footerSocialsLink {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  background: #1B554E;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.footerSocialsLink:hover {
  background-color: #123834;
}

.footerSocials {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footerAddress {
  color: #fff;
  line-height: 145%;
  max-width: 195px;
}

.footerNavW {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 50px;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.footerNav {
  width: 220px;
}

.footerNav ul li:not(:last-child) {
  margin-bottom: 15px;
}

.footerNav ul li a {
  color: #fff;
  line-height: 145%;
}

.footerNav ul li a:hover {
  color: var(--yellow);
}

.footerContacts {
  width: 235px;
  margin-left: auto;
  margin-right: 50px;
}

@media (min-width: 575.98px) {
  .container {
    max-width: 540px;
    margin: auto;
    padding: 0;
  }
}

@media (min-width: 767.98px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 991.98px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1199.98px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1370px;
  }
}

@media (min-width: 1700px) {
  .container {
    max-width: 1640px;
  }
}

@media (max-width: 1800px) {
  .navArrow--absolute .navArrowPrev {
    left: -30px;
  }

  .navArrow--absolute .navArrowNext {
    right: -30px;
  }

  .productDecor {
    width: 200px;
  }
}

@media (max-width: 1699px) {
  .headerAddress {
    font-size: 13px;
  }

  .aboutVideoImg {
    width: 700px;
  }

  .aboutInner {
    max-width: 600px;
  }

  .contactsPageItem a {
    font-size: 16px;
  }

  .contactsPageItem div {
    font-size: 16px;
  }

  .about-product-item-wrapper:nth-child(2) {
    top: 76px;
  }

  .about-product-item-wrapper:nth-child(3) {
    top: 273px;
  }
}

@media (max-width: 1550px) {
  .about-product-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}

@media (max-width: 1435px) {
  .navArrow--absolute .navArrowPrev {
    left: -15px;
  }

  .navArrow--absolute .navArrowNext {
    right: -15px;
  }
}

@media (max-width: 1400px) {
  .header nav ul {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .header nav ul li a {
    font-size: 15px;
  }

  .shopGrid .productCard {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }

  .video-product .aboutVideoImg {
    height: 650px;
  }

  .aboutVideo {
    top: unset;
    bottom: 45px;
  }

  .aboutVideoImg {
    width: 570px;
    height: 350px;
  }

  .aboutInner {
    max-width: 500px;
  }

  .about-adv-descr {
    font-size: 20px;
  }

  .aboutAdvGrid {
    row-gap: 10px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding-left: 0;
  }

  .aboutAdvGrid .about-adv-item-w {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }

  .partnersAboutDescr {
    font-size: 20px;
  }

  .partnersAboutW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }

  .partnersAboutItem {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .partnersMilDecor {
    top: 320px;
  }

  /* .partners-about::before {
    top: -17px;
    background: url("assets/img/partners/abstract-top.svg") no-repeat center center/cover;
    height: 80px;
  } */

  .adv .tabs__nav-btn {
    min-width: unset;
    width: 300px;
  }

  .advGrid {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding-left: 0;
  }

  .contactsMap iframe,
  .contactsMap {
    height: 500px;
  }

  .contactsPage .mapW iframe {
    height: 500px;
  }

  .contactsPageItem-b-l-xxl {
    border-left: 1px solid #DEEEEC;
    padding-left: 30px;
  }

  .qualityItemContent {
    padding-left: 20px;
  }

  .qualityItemContent--second {
    padding-right: 20px;
  }

  .footerNavW {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .formInput {
    padding-left: 20px;
  }

  h1,
  .h1 {
    font-size: 24px;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 16px;
  }

  .aboutActionBtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .aboutActionBtn::before {
    -webkit-transform: rotate(269deg);
    -ms-transform: rotate(269deg);
    transform: rotate(269deg);
    right: -92px;
    bottom: 50px;
  }

  .header .logo img {
    width: 120px;
  }

  .headerPhone {
    font-size: 20px;
  }

  .header nav ul {
    -webkit-column-gap: 11px;
    -moz-column-gap: 11px;
    column-gap: 11px;
  }

  .header nav ul li a {
    font-size: 14px;
  }

  .headerNavCloseBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .introLogo {
    width: 300px;
  }

  .introLogoTitle {
    font-size: 40px;
  }

  .productContent {
    padding-left: 0;
  }

  .aboutW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .aboutVideo {
    position: relative;
    bottom: unset;
    display: block;
  }

  .aboutContent {
    padding-left: 50px;
    padding-right: 50px;
    margin-left: unset;
    border-radius: 0;
  }

  .aboutContent::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    right: 100%;
    top: 0;
    background-color: #1B554E;
  }

  .about-default-content {
    padding-left: 30px;
  }

  .about-product-image {
    width: 500px;
  }

  .about-product-item-wrapper:nth-child(1) {
    right: unset;
    left: 210px;
    top: 40px;
  }


  .about-product-item-wrapper:nth-child(2) {
    top: 120px;
    right: unset;
    left: 120px;
  }

  .about-product-item-wrapper:nth-child(3) {
    right: unset;
    top: 120px;
    left: 229px;
  }

  .about-product-item-wrapper {
    position: unset;
    margin-bottom: 20px;
  }

  .about-product-image-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 50px;
  }

  .about-product-image {
    left: 0;
  }

  .about-product-item {
    width: 100%;
    max-width: 100%;
  }

  .about-product-item-btn {
    display: none;
  }

  .about-product-item::before {
    display: none;
  }

  .about-product-item {
    margin-left: 0;
  }

  .about-product-btn-info {
    bottom: 225px;
    top: unset;
    left: 0;
    order: 1;
    position: unset;
  }

  .aboutProductInfo {
    order: 2;
    margin-top: 20px;
  }

  .partnersGet .aboutVideo {
    margin-top: 50px;
  }

  .partnersMilDecor {
    top: 360px;
    width: 500px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .partnersSliderW {
    padding-left: 0;
    margin-top: 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .adv .tabs__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .advGrid {
    margin-top: 40px;
    row-gap: 30px;
  }

  .advImage {
    width: 300px;
  }

  .adv-product .advGrid {
    padding-left: 0;
  }

  .adv-product .h2 {
    margin-left: 0;
  }

  .adv-partners .advImage {
    width: 300px;
  }

  .contactsContent {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .contactsMap iframe,
  .contactsMap {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 500px;
  }

  .order .h2 {
    font-size: 20px;
  }

  .buyerHow .content {
    font-size: 16px;
  }

  .stepsItemW {
    width: calc(33% - 20px);
  }

  .mapNav {
    height: 500px;
  }

  .mapIframe iframe {
    height: 500px;
  }

  .contactsPageItem-b-l-xxl {
    padding-left: 0;
    border-left: none;
  }

  .contactsPageItem-b-l {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #DEEEEC;
  }

  .footerNavW {
    margin-top: 40px;
  }

  .footerContacts {
    margin-left: unset;
    margin-top: 40px;
  }
}

@media (max-width: 991px) {

  html,
  body {
    font-size: 16px;
    line-height: 24px;
  }

  section {
    padding-bottom: 35px;
    padding-top: 35px;
  }

  .sectHead {
    margin-bottom: 24px;
  }

  .pageHead {
    padding-bottom: 30px;
  }

  .button--lg {
    height: 50px;
  }

  .orderBtn {
    width: 300px;
  }

  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .tabs__nav-btn {
    font-size: 16px;
  }

  .header {
    color: var(--main);
  }

  .header nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    overflow-y: scroll;
    padding: 26px 15px 60px;
    z-index: 1;
    background-color: #fff;
    max-width: 320px;
    width: 100%;
    z-index: 2;
  }

  .header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
  }

  .intro {
    padding-top: 80px;
  }

  .introContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 20px;
  }

  .introDescr {
    font-size: 17px;
    max-width: 400px;
  }

  .about-page.intro {
    min-height: 500px;
  }

  .shopGrid .productCard {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }

  .about-default .aboutVideo {
    width: 100%;
  }

  .about-default-content {
    width: 100%;
    padding-left: 0;
  }

  .about-product {
    padding-top: 70px;
  }

  .about-adv .container {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .aboutAdvGrid {
    margin-top: 40px;
  }

  .partnersAboutItem {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .partnersAboutItemCount {
    font-size: 45px;
  }

  .partnersAboutItem::before {
    bottom: -10px;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .partnersAboutGrid {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 10px;
  }

  .adv-partners {
    padding-top: 50px;
  }

  .news .container {
    padding-top: 40px;
  }

  .contactsMap iframe,
  .contactsMap {
    height: 400px;
  }

  .contactsItem {
    font-size: 17px;
  }

  .contactsList {
    row-gap: 20px;
  }

  .contactsPage .mapW iframe {
    height: 400px;
  }

  .order {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .orderGrid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }

  .buyerForm {
    /* padding-bottom: 200px; */
  }

  .qualityAbout {
    padding-top: 40px;
  }

  .qualityAbout {
    padding-bottom: 40px;
  }

  .qualityItemVideo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .qualityItemLine {
    display: none;
  }

  .qualityItemContent {
    padding-left: 0;
  }

  .qualityItem:not(:last-child) {
    margin-bottom: 60px;
  }

  .buyerHow .h2 {
    margin-bottom: 20px;
  }

  .steps {
    padding-top: 50px;
  }

  /* .steps::before {
    height: 50px;
    background: url("assets/img/decor/how-abstract.svg") no-repeat top center/cover;
  } */

  .steps .sectHead {
    margin-bottom: 30px;
  }

  .stepsW {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }

  .stepsItem::before {
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: -27px;
  }

  .stepsItemW {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    width: 100%;
  }

  .mapW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }

  .mapNav {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .productCardImg img {
    height: 265px;
  }

  .aboutAction {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 50px;
  }

  .about-product-image {
    width: 300px;
    left: 0;
  }

  .about-product-item-wrapper:nth-child(1) {
    left: 0;
  }

  .about-product-item-wrapper:nth-child(2) {
    left: 30px;
  }

  .about-product-item-wrapper:nth-child(3) {
    left: 130px;
  }

  .about-product-btn-info {
    left: 300px;
    bottom: 80px;
    width: 100%;
  }

  .about-product-btn-info::before {
    -webkit-transform: rotate(352deg) scale(-1, 1);
    -ms-transform: rotate(352deg) scale(-1, 1);
    transform: rotate(352deg) scale(-1, 1);
    left: -4px;
    bottom: -38px;
  }

  .partnersGetContent .h2 {
    padding-left: 0;
  }

  .partnersGetContent .content {
    padding-left: 0;
  }

  .partnersGetContent .aboutAction {
    padding-left: 0;
  }

  .adv .tabs__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .advItem {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }

  .contactsPageW {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .stepsItemCount {
    font-size: 45px;
  }

  .stepsItemDescr {
    font-size: 16px;
  }

  .mapNav label {
    margin-bottom: 10px;
  }

  .mapIframe iframe {
    height: 350px;
  }

  .footerTitle {
    margin-bottom: 15px;
  }

  .footerNavW {
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 12px;
  }

  .navArrow {
    width: 50px;
    height: 50px;
  }

  .navArrow--absolute .navArrowPrev {
    left: 0;
  }

  .navArrow--absolute .navArrowNext {
    right: 0;
  }

  .aboutVideoBtn {
    width: 60px;
    height: 60px;
  }

  .aboutVideoBtn img {
    width: 15px;
  }

  .orderBtn {
    width: 100%;
  }

  .introLogo {
    width: 250px;
    margin-bottom: 20px;
  }

  .introLogoTitle {
    max-width: 260px;
  }

  .productCardTitle {
    font-size: 17px;
  }

  .productCardDescr {
    font-size: 15px;
  }

  .shopGrid .productCard {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .shopGrid .productCard .productCardImg img {
    height: 160px;
  }

  .productDecor {
    width: 150px;
  }

  .productMainSlide img {
    height: 380px;
  }

  .productThumbSlider {
    height: 300px;
  }

  .productThumbSlide img {
    width: 70px;
  }

  .video-product .aboutVideoImg {
    height: 80vw;
  }

  .aboutVideoImg {
    width: 100%;
    height: 55vw;
  }

  .aboutContent {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-product-item {
    margin-left: 0;
    margin-bottom: 0;
  }

  .about-product-item::before {
    display: none;
  }

  .about-product-btn-info {
    left: 235px;
    z-index: 1;
    font-size: 14px;
  }

  .aboutAdvGrid .about-adv-item-w {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .partnersGet {
    padding-top: 20px;
  }

  .partnersSlider {
    overflow: visible;
    width: 100%;
    /* padding-right: 40px; */
  }

  .partnersSlideLogo {
    height: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .partnersSlideLogo:not(:last-child) {
    margin-bottom: 10px;
  }

  .partnersSliderW .navArrow {
    display: none;
  }

  .partners-about {
    padding-top: 60px;
  }

  .adv .tabs__nav {
    width: 100%;
    row-gap: 10px;
  }

  .adv .tabs__nav-btn {
    width: 100%;
  }

  .advItemIcon {
    width: 50px;
    height: 50px;
  }

  .advItemIcon img {
    width: 50px;
  }

  .advItemTitle {
    font-size: 17px;
  }

  .advImage {
    width: 200px;
  }

  .adv-partners .advImage {
    width: 200px;
  }

  .news .navArrow {
    display: none;
  }

  .newsSlider {
    padding-right: 40px;
    overflow: visible;
  }

  .newsCardImg {
    margin-bottom: 10px;
  }

  .newsCardImg img {
    height: 55vw;
  }

  .newsCardTitle {
    font-size: 17px;
    line-height: 130%;
  }

  .orderGrid .inputW .formInput {
    width: 100%;
  }

  .footerT {
    padding-top: 50px;
  }

  .footerB {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footerLogoDescr {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footerLogo img {
    margin-left: auto;
    margin-right: auto;
  }

  .footerTitle {
    text-align: center;
  }

  .footerPhone {
    text-align: center;
  }

  .footerSocials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footerAddress {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footerNavW {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footerNav {
    margin-bottom: 40px;
  }

  .footerNav ul li {
    text-align: center;
  }

  .footerContacts {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 370px) {
  .advGrid {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
}

.webp .catalogMainW::before {
  background: url(assets/img/decor/milk.webp) no-repeat center center/contain;
}

#wpadminbar {
  z-index: 99999999;
}

.wpcf7-spinner {
  display: none;
}

.order .wpcf7 form .wpcf7-response-output,
.modal .wpcf7 form .wpcf7-response-output {
  color: #fff;
  border-radius: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
}

.buyerForm .wpcf7 form .wpcf7-response-output {
  border-radius: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

@media(max-width: 991px) {
  .order .wpcf7 form .wpcf7-response-output {
    max-width: 300px;
  }
}

@media(max-width: 575px) {
  .order .wpcf7 form .wpcf7-response-output {
    max-width: 100%;
  }
}

.aioseo-breadcrumb-separator {
  color: #239385;
  font-size: 34px;
  line-height: 34px;
  position: relative;
  bottom: 3px;
}

.newsGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.newsGrid .newsCard {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

@media(max-width: 1400px) {
  .newsGrid .newsCard {
    -ms-grid-column-span: 4;
    grid-column: 4 span;
  }
}

@media(max-width: 991px) {
  .newsGrid .newsCard {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}

@media(max-width: 575px) {
  .newsGrid .newsCard {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.agreement {
  margin-top: 15px;
  font-weight: 300;
  font-size: 14px;
  line-height: 145%;
}

.order .agreement span,
.modal .agreement span {
  opacity: .6;
  color: #fff;
}

.order .agreement a,
.modal .agreement a {
  opacity: .6;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.order .agreement a:hover,
.modal .agreement a:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 1);
}

.order .agreement {
  max-width: 795px;
  margin-left: auto;
  margin-right: auto;
}

.buyerForm .agreement span {
  opacity: .6;
  color: #000;
}

.buyerForm .agreement a {
  opacity: .6;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.buyerForm .agreement a:hover {
  opacity: 1;
  border-color: rgba(0, 0, 0, 1);
}

.contactsPage .contactsMap {
  border-radius: 10px;
}

.shopGrid .productCard {
  display: none;
}

.page-head-white .aioseo-breadcrumb-separator {
  color: #fff;
}

.how-top-decor {
  top: -1px;
}

.introVideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blagSlide img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  transition: opacity .2s linear;
}

.blagSlide img:hover {
  opacity: .85;
}

@media(max-width: 1699px) {
  .blagSlide img {
    height: 400px;
  }
}

.blagSect {
  overflow: hidden;
}

@media(max-width: 575px) {
  .blagSlide img {
    height: 100vw;
  }
}

.videoSliderNav {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.videoSliderNav .navArrow--flex {
  display: flex;
  display: flex;
  justify-content: space-between;
}

.videoSliderNav .container {
  /* pointer-events: none; */
}

.partnersSlider {
  width: 100%;
}

@media(max-width: 767px) {
  .intro.about-page {
    background-image: none !important;
  }
}

.aboutIntroImgSm {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 767px) {
  .aboutIntroImgSm {
    display: block;
  }
}

@media(max-width: 575px) {
  .advGrid {
    column-gap: 10px;
  }
}

.whatsapp-button {
  position: fixed;
  right: 13px;
  bottom: 60px;
  transform: translate(-50%, -50%);
  background: #43d854;
  /*цвет кнопки*/
  border-radius: 50%;
  width: 55px;
  /*ширина кнопки*/
  height: 55px;
  /*высота кнопки*/
  color: #fff;
  text-align: center;
  line-height: 53px;
  /*центровка иконки в кнопке*/
  font-size: 35px;
  /*размер иконки*/
  z-index: 10;
}

.whatsapp-button a {
  color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #43d854;
  /*цвет анимированных волн от кнопки*/
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.whatsapp-button:after {
  animation-delay: .5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width : 800px) {
  .whatsapp-button {
    bottom: 5px;
    /*отступ кнопки снизу от экрана*/
  }
}

figure.zoom {
  background-position: 50% 50%;
  position: relative;
  width: 500px;
  overflow: hidden;
  cursor: zoom-in;
}

figure.zoom img:hover {
  opacity: 0;
}

figure.zoom img {
  transition: opacity 0.5s;
  display: block;
  width: 100%;
}

.headerNav._mob .headerContacts a {
  margin: 0 0 5px 0;
}