@charset "UTF-8";
/* stylelint-disable */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  padding: 0;}

.page {
    display: flex;
    min-height: 100vh;
}

/* Фиксируем позицию body, которую меняет панель гугла*/

.page_fix {
    top: 0 !important;
    position: static !important;
}

/* Прячем панель гугла */

.skiptranslate {
    display: none !important;
}

/* language */

.language {
    position: relative;
    margin-top: 10px;
    display: flex;
    flex-direction: initial;
    align-items: center;
    justify-content: center;
}

.language__img {
    height: 18px;
    width: auto;
    cursor: pointer;
    opacity: .5;
    margin-right: 10px;
}

.language__img:last-child{
  margin-right: 0;
}

.language__img:hover,
.language__img_active {
    opacity: 1;
}

/* content */

.content {
    /*text-align: center;*/
    margin: auto;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }
  
.but-reset {
	padding: 0!important;
    border: none;
    background-color: transparent;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25px;
    height: 25px;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 40;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  min-width: 320px;
  max-height: 100vh;
  padding-top: 30px;
  padding-bottom: 30px;
  background: rgba(36, 37, 38, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
  background-blend-mode: multiply;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px); }

.modal--hidden {
  display: none; }

.modal__content {
  position: relative;
  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;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 90%;
  max-width: 608px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f4eed6;
  color: #242526;
  -webkit-box-shadow: 0 4px 30px 4px rgba(36, 37, 38, 0.2);
          box-shadow: 0 4px 30px 4px rgba(36, 37, 38, 0.2);
  border-radius: 30px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  text-align: center;  }
  @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
    .modal__content {
      background-size: 607px; } }

.modal__close {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  position: absolute;
  right: 30px;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px; }
  .modal__close:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .modal__close:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.5; }

@media (max-width: 768px) {
  .modal__content {
    padding: 30px; }
  .modal__close {
    right: 20px;
    top: 20px; } }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* 1024-1279 рх */
/* 768-1023 рх */
@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"); }

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

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

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

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

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  font-weight: 400;
  font-family: "Raleway", "Arial", sans-serif;
  color: #9798a0;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
  scroll-behavior: smooth; }

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

a {
  color: inherit; }

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

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 1.2; }
  
.button-holder {
  margin: 0 auto;
  text-align: center; }

.body--locked {
  overflow: hidden; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 107px; }

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

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

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

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 100vh; }

@media (max-width: 767px) {
  .wrapper {
    position: relative; } }

.page-aside {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  -ms-flex-item-align: start;
      align-self: flex-start;
  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: 100vh;
  min-width: 200px;
  background-color: #17192b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5a1d0d), to(rgba(147, 99, 100, 0)));
  background-image: linear-gradient(180deg, #5a1d0d 0%, rgba(147, 99, 100, 0) 100%); }

.page-aside__nav-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  display: none;
  width: 50px;
  height: 50px;
  background-image: url("../img/svg/icon-burger.svg");
  background-repeat: no-repeat;
  background-position: center; }

@media (max-width: 767px) {
  .page-aside {
    position: absolute;
    left: 0;
    top: 0;
    min-height: auto;
    min-width: auto;
    width: auto; }
    .page-aside.nav-opened {
      width: 100%; }
      .page-aside.nav-opened .nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .page-aside.nav-opened .page-aside__nav-toggle {
        background-image: url("../img/svg/icon-cross.svg"); }
  .page-aside__nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.page-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: calc(100% - 200px);
  width: 100%;
  margin-left: 200px; }

@media (max-width: 767px) {
  .page-content {
    max-width: 100%;
    margin-left: 0; } }

.page-footer {
  font-size: 14px;
  line-height: 16px;
  margin-top: auto;
  padding-bottom: 12px;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
  color: #17192b; }

.page-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1; }
  .page-footer__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .page-footer__list li:first-child {
      margin-right: 5%; }
  .page-footer__list a {
    margin-left: 15px;
    text-decoration: none; }
    .page-footer__list a:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .page-footer__list a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.7; }
  .page-footer__list p {
    margin: 0;
    margin-left: 15px; }

@media (max-width: 1300px) {
  .page-footer__list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .page-footer__list a {
    margin-left: 0; }
  .page-footer__list p {
    margin-left: 0; } }

@media (max-width: 1024px) {
  .page-footer {
    font-size: 13px;
    line-height: 15px; }
  .page-footer__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .page-footer__list li {
      max-width: 125px; }
      .page-footer__list li:first-child {
        margin-right: 0; } }

@media (max-width: 500px) {
  .page-footer {
    padding-bottom: 20px; }
  .page-footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .page-footer__list li {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      max-width: unset;
      margin-bottom: 20px; }
      .page-footer__list li:last-child {
        margin-bottom: 0; } }

.nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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%;
  padding: 44px 32px 75px;
  width: auto; }

.nav__logo {
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 85px; }

.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 19px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: auto;
  color: #ffffff; }
  .nav__list li {
    margin-bottom: 18px; }
    .nav__list li:last-child {
      margin-bottom: 0; }
  .nav__list a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0;
    text-decoration: none; }
    .nav__list a:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .nav__list a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      max-width: 100%;
      height: 1px;
      background-color: #fbfafa; }
      .nav__list a::after:not(:hover) {
        -webkit-transition: 0.3s;
        transition: 0.3s; }
    .nav__list a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
      .nav__list a:hover::after {
        outline: none;
        cursor: pointer;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        width: 50px; }
    .nav__list a.active::after {
      width: 50px; }

.nav__socials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px; }
  .nav__socials li {
    margin-right: 10px; }
    .nav__socials li:last-child {
      margin-right: 0; }
  .nav__socials a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .nav__socials a:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .nav__socials a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.5; }

@media (max-width: 1024px) {
  .nav__list a::after {
    display: none; } }

@media (max-width: 767px) {
  .nav {
    display: none;
    padding: 0 20px 40px; }
  .nav__logo {
    margin-bottom: 35px; }
    .nav__logo img {
      width: 80px; }
  .nav__list li {
    margin-bottom: 10px; }
  .nav__socials {
    margin-top: 40px; } }

.popup-catalog {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  min-height: 100vh;
  width: calc(100% - 200px);
  background-color: #fbfafa;
  z-index: 20;
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3); }
  .popup-catalog.hidden {
    display: none; }

.popup-catalog__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.popup-catalog__close {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  position: absolute;
  right: 13px;
  top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px; }
  .popup-catalog__close:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .popup-catalog__close:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.5; }

.popup-catalog__nav {
  width: 40.5%;
  padding: 58px 50px 68px 105px; }

.popup-catalog__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.popup-catalog__nav-item {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 26px;
  font-family: "Roboto", "Arial", sans-serif;
  color: #9798a0;
  letter-spacing: 0.02em; }
  .popup-catalog__nav-item:last-child {
    margin-bottom: 0; }
  .popup-catalog__nav-item a {
    position: relative;
    padding: 5px 0;
    text-decoration: none; }
    .popup-catalog__nav-item a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      max-width: 100%;
      width: 0;
      height: 2px;
      background-color: #9798a0; }
      .popup-catalog__nav-item a::after:not(:hover) {
        -webkit-transition: 0.3s;
        transition: 0.3s; }
    .popup-catalog__nav-item a:hover::after {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      width: 50px; }
  .popup-catalog__nav-item--new {
    margin: 18px 0 55px;
    color: #bf392c; }
    .popup-catalog__nav-item--new a::after {
      background-color: #bf392c; }

.popup-catalog__banner {
  width: 59.5%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center; }

.popup-catalog__brands {
  display: block;
  height: 100%;
  padding: 95px 84px 95px 66px;
  background-color: #ffffff; }
  .popup-catalog__brands.hidden {
    display: none; }

.popup-catalog__brands-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .popup-catalog__brands-list li {
    width: 20.5%;
    margin-right: 5.98%;
    margin-bottom: 35px; }
    .popup-catalog__brands-list li:nth-child(4n) {
      margin-right: 0; }
  .popup-catalog__brands-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

@media (max-width: 1300px) {
  .popup-catalog__nav {
    padding: 58px 50px 68px 40px; } }

@media (max-width: 1024px) {
  .popup-catalog__close {
    right: 10px;
    top: 10px; }
  .popup-catalog__nav {
    width: 45%;
    padding: 30px 30px 50px 30px; }
  .popup-catalog__nav-item {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 15px; }
    .popup-catalog__nav-item a::after {
      display: none; }
    .popup-catalog__nav-item--new {
      margin: 10px 0 20px; }
  .popup-catalog__banner {
    width: 55%; }
  .popup-catalog__brands {
    padding: 50px 30px; }
  .popup-catalog__brands-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .popup-catalog__brands-list li {
      width: 20.5%;
      margin-right: 5.98%;
      margin-bottom: 35px; } }
    @media (max-width: 1024px) and (min-width: 768px) {
      .popup-catalog__brands-list li:nth-child(4n) {
        margin-right: 0; } }

@media (max-width: 1024px) {
    .popup-catalog__brands-list a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

@media (max-width: 767px) {
  .popup-catalog {
    width: 100%; }
  .popup-catalog__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .popup-catalog__close {
    right: 10px;
    top: 10px; }
  .popup-catalog__banner {
    width: 100%; }
  .popup-catalog__nav {
    overflow: auto;
    width: 100%;
    padding: 30px 20px; }
  .popup-catalog__brands {
    padding: 30px 20px 20px; }
  .popup-catalog__brands-list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 35px; }
    .popup-catalog__brands-list li:nth-child(3n) {
      margin-right: 0; } }

.popup-contacts {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  min-height: 100vh;
  width: calc(100% - 200px);
  background-color: #fbfafa;
  z-index: 20;
  -webkit-box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3); }
  .popup-contacts.hidden {
    display: none; }

.popup-contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.popup-contacts__close {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  position: absolute;
  right: 13px;
  top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px; }
  .popup-contacts__close:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .popup-contacts__close:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.5; }

.popup-contacts__map {
  width: 40.5%; }
  .popup-contacts__map #map {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; }

.popup-contacts__content {
  width: 59.5%; }

.contacts {
  padding: 41px 46px 115px 24px; }

.contacts__head-office,
.contacts__region {
  margin-bottom: 35px; }
  .contacts__head-office h3,
  .contacts__region h3 {
    font-size: 25px;
    line-height: 50px;
    margin: 0;
    margin-bottom: 27px;
    font-family: "Roboto", "Arial", sans-serif;
    font-weight: 400;
    color: #936364;
    letter-spacing: 0.02em; }
  .contacts__head-office table,
  .contacts__region table {
    font-size: 16px;
    line-height: 19px;
    width: 100%;
    border-spacing: 0;
    border: none;
    color: #17192b;
    -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
            font-feature-settings: 'pnum' on, 'lnum' on; }
    .contacts__head-office table td,
    .contacts__region table td {
      padding: 0;
      padding-bottom: 48px;
      padding-right: 22px;
      vertical-align: baseline; }
      .contacts__head-office table td:nth-child(3n),
      .contacts__region table td:nth-child(3n) {
        padding-right: 0; }
    .contacts__head-office table h4,
    .contacts__region table h4 {
      margin: 0;
      margin-bottom: 10px;
      font-weight: 400;
      color: #9798a0; }
    .contacts__head-office table span,
    .contacts__region table span {
      text-decoration: underline;
      -webkit-text-decoration-skip-ink: none;
              text-decoration-skip-ink: none; }
	.contacts__head-office table img,
	.contacts__region table img::after{
      margin-right: 5px; }
    .contacts__head-office table a,
    .contacts__region table a {
      display: block;
      text-decoration: none; }
      .contacts__head-office table a:not(:hover),
      .contacts__region table a:not(:hover) {
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .contacts__head-office table a:hover,
      .contacts__region table a:hover {
        outline: none;
        cursor: pointer;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        opacity: 0.7; }
    .contacts__head-office table p,
    .contacts__region table p {
      margin: 0;
      max-width: 165px; }
    .contacts__head-office table button,
    .contacts__region table button {
      padding: 0;
      border: none;
      background-color: transparent;
      outline: none;
      text-decoration: underline;
      -webkit-text-decoration-skip-ink: none;
              text-decoration-skip-ink: none;
      text-align: left; }
      .contacts__head-office table button:not(:hover),
      .contacts__region table button:not(:hover) {
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .contacts__head-office table button:hover,
      .contacts__region table button:hover {
        outline: none;
        cursor: pointer;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        opacity: 0.7; }

.contacts__region {
  margin-bottom: 0; }
  .contacts__region td {
    padding: 0;
    padding-bottom: 48px;
    padding-right: 22px;
    vertical-align: baseline; }
    .contacts__region td:nth-child(2n) {
      padding-right: 0; }

@media (max-width: 1300px) {
  .contacts {
    padding: 41px 20px 115px; }
  .contacts__head-office table,
  .contacts__region table {
    font-size: 14px;
    line-height: 18px; } }

@media (max-width: 1024px) {
  .popup-contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .popup-contacts__map {
    width: 100%;
    height: 300px; }
  .popup-contacts__content {
    width: 100%; }
  .contacts {
    padding: 20px 30px 0 30px; }
  .contacts__head-office,
  .contacts__region {
    margin-bottom: 0; }
    .contacts__head-office h3,
    .contacts__region h3 {
      margin-bottom: 10px; }
    .contacts__head-office table,
    .contacts__region table {
      font-size: 14px;
      line-height: 18px; }
      .contacts__head-office table td,
      .contacts__region table td {
        padding-bottom: 40px;
        padding-right: 30px; } }

@media (max-width: 767px) {
  .popup-contacts {
    width: 100%; }
  .popup-contacts__close {
    right: 10px;
    top: 10px; }
  .contacts {
    padding: 30px 20px 0 20px; } }

@media (max-width: 600px) {
  .contacts__head-office,
  .contacts__region {
    margin-bottom: 10px; }
    .contacts__head-office h3,
    .contacts__region h3 {
      font-size: 24px;
      line-height: 28px;
      margin-bottom: 15px; }
    .contacts__head-office table tr,
    .contacts__region table tr {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .contacts__head-office table td,
    .contacts__region table td {
      padding-bottom: 20px;
      padding-right: 0; }
    .contacts__head-office table h4,
    .contacts__region table h4 {
      margin-bottom: 3px; }
    .contacts__head-office table p,
    .contacts__region table p {
      max-width: unset; } }

.popup-callback {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 25;
  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;
  width: 40.5%;
  min-height: 100vh;
  overflow: auto;
  padding: 40px;
  background-color: #ffffff; }
  .popup-callback.hidden {
    display: none; }
  .popup-callback form {
    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; }
    .popup-callback form input {
      font-size: 16px;
      line-height: 19px;
      width: 230px;
      margin-bottom: 25px;
      padding: 8px 19px 7px;
      border: 1px solid rgba(23, 25, 43, 0.1);
      background-color: transparent; }
      .popup-callback form input:not(:hover) {
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .popup-callback form input:last-of-type {
        margin-bottom: 50px; }
      .popup-callback form input::-webkit-input-placeholder {
        font-size: 16px;
        line-height: 19px; }
      .popup-callback form input::-moz-placeholder {
        font-size: 16px;
        line-height: 19px; }
      .popup-callback form input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 19px; }
      .popup-callback form input::-ms-input-placeholder {
        font-size: 16px;
        line-height: 19px; }
      .popup-callback form input::placeholder {
        font-size: 16px;
        line-height: 19px; }
      .popup-callback form input:hover, .popup-callback form input:focus {
        outline: none;
        cursor: pointer;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        border-color: #936364; }
    .popup-callback form button {
      margin-bottom: 20px; }
    .popup-callback form p {
      font-size: 10px;
      line-height: 12px;
      max-width: 340px;
      margin: 0;
      text-align: center; }
      .popup-callback form p a {
        -webkit-text-decoration-skip-ink: none;
                text-decoration-skip-ink: none; }

.popup-callback__close {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  position: absolute;
  right: 13px;
  top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px; }
  .popup-callback__close:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .popup-callback__close:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.5; }

.popup-callback__title {
  font-size: 25px;
  line-height: 50px;
  margin: 0;
  margin-bottom: 25px;
  font-family: "Orienta", "Arial", sans-serif;
  font-weight: 400;
  color: #936364; }

.popup-callback__text {
  font-size: 16px;
  line-height: 19px;
  max-width: 340px;
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on; }

@media (max-width: 1024px) {
  .popup-callback {
    width: 400px; } }

@media (max-width: 767px) {
  .popup-callback {
    width: 100%;
    padding: 20px; }
    .popup-callback form input {
      width: 100%; }
      .popup-callback form input:last-of-type {
        margin-bottom: 40px; }
  .popup-callback__close {
    right: 10px;
    top: 10px; }
  .popup-callback__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px; }
  .popup-callback__text {
    font-size: 14px;
    line-height: 18px;
    max-width: 280px;
    margin-bottom: 30px; } }

.section-title {
  font-size: 25px;
  line-height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-family: "Roboto", "Arial", sans-serif;
  font-weight: 400;
  color: #bf392c;
  text-align: center;
  letter-spacing: 0.02em; }
  .section-title span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #936364;
    font-family: "Raleway", "Arial", sans-serif;
    -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
            font-feature-settings: 'pnum' on, 'lnum' on;
    text-transform: lowercase;
    letter-spacing: 0; }

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    line-height: 28px; } }

.button {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  font-size: 20px;
  line-height: 26px;
  display: inline-block;
  padding: 5px 44px;
  font-family: "PTSans", "Times New Roman", sans-serif;
  text-transform: lowercase;
  color: #bf392c;
  background-color: rgba(255, 253, 246, 0.65);
  border: 1px solid #bf392c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 25px;
  text-decoration: none; }
  .button:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .button:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #bf392c;
    color: #ffffff; }

@media (max-width: 767px) {
  .button {
    font-size: 18px;
    line-height: 24px;
    padding: 4px 40px; } }

.slider-arrow-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .slider-arrow-btn:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .slider-arrow-btn--next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .slider-arrow-btn:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7; }

.breadcrumbs {
  padding-top: 14px;
  padding-bottom: 19px; }
  .breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    line-height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .breadcrumbs ul li {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: rgba(147, 99, 100, 0.75); }
      .breadcrumbs ul li::after {
        content: "-";
        margin-left: 3px;
        margin-right: 3px; }
      .breadcrumbs ul li:last-child::after {
        display: none; }
    .breadcrumbs ul a {
      color: rgba(147, 99, 100, 0.75);
      text-decoration: none;
      -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
              font-feature-settings: 'pnum' on, 'lnum' on; }
      .breadcrumbs ul a:not(:hover) {
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .breadcrumbs ul a:hover {
        outline: none;
        cursor: pointer;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        color: #936364; }

@media (max-width: 767px) {
  .breadcrumbs {
    min-height: 50px;
    padding-top: 11px;
    padding-bottom: 11px; }
    .breadcrumbs .container {
      padding-left: 65px; } }

.intro-slider {
  position: relative; }
  .intro-slider::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 450px;
    height: 450px;
    background: radial-gradient(50% 50% at 50% 50%, #FFFEFC 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.9;
    background-position: left 50px top -169px;
    background-repeat: no-repeat; }
    @media (max-width: 1200px) {
      .intro-slider::before {
        background-position: left 125px top -169px; } }
    @media (max-width: 1024px) {
      .intro-slider::before {
        width: 350px;
        height: 350px;
        background-position: left 105px top -169px; } }
  .intro-slider::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 117px;
    background-image: url("../img/milk-decor.png");
    background-size: contain;
    background-position: left bottom -2px;
    background-repeat: no-repeat; }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .intro-slider::after {
        background-image: url("../img/milk-decor@2x.png"); } }
    @media (min-width: 1600px) {
      .intro-slider::after {
        height: 200px; } }
    @media (min-width: 2600px) {
      .intro-slider::after {
        height: 250px; } }
    @media (min-width: 3200px) {
      .intro-slider::after {
        height: 270px; } }

.intro-slider__header-container {
  position: relative; }

.intro-slider__header {
  font-size: 16px;
  line-height: 21px;
  position: absolute;
  right: 105px;
  top: 15px;
  z-index: 2;
  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;
  font-family: "PTSans", "Arial", sans-serif;
  color: #5a1d0d; }
  .intro-slider__header a {
    margin-bottom: 6px;
    font-weight: 700;
    text-decoration: none; }
    .intro-slider__header a:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .intro-slider__header a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.7; }
  .intro-slider__header button {
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    padding: 5px 10px;
    border: 1px solid #5a1d0d;
    background-color: transparent;
    color: #5a1d0d; }
    .intro-slider__header button:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .intro-slider__header button:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.7; }

.intro-slider__container {
  position: relative;
  overflow: hidden; }

.intro-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.intro-slider__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 750px;
  width: 100%;
  color: #17192b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.intro-slider__slide-container {
  position: relative;
  height: 100%; }
  .intro-slider__slide-container::after {
    content: "";
    position: absolute;
    left: -145px;
    top: 0;
    width: 798px;
    height: 798px;
    background-image: radial-gradient(50% 50% at 50% 50%, rgba(255, 254, 252, 0.66) 0%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    opacity: 0.75; }

.intro-slider__slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 420px;
  padding-top: 278px; }
  .intro-slider__slide-content h2 {
    font-size: 65px;
    line-height: 50px;
    margin: 0;
    margin-bottom: 55px;
    font-weight: 400;
    font-family: "Roboto", "Arial", sans-serif;
    letter-spacing: 0.02em;
    color: #5a1d0d; }
  .intro-slider__slide-content a {
    padding: 9px 44px; }
    .intro-slider__slide-content a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      background-color: #fffdf6;
      color: #bf392c; }

.intro-slider__buttons {
  position: relative;
  z-index: 10; }
  .intro-slider__buttons .slider-arrow-btn {
    position: absolute;
    bottom: 114px; }
    .intro-slider__buttons .slider-arrow-btn--prev {
      left: 105px; }
    .intro-slider__buttons .slider-arrow-btn--next {
      right: 105px; }

@media (max-width: 1024px) {
  .intro-slider__header {
    right: 50px; }
  .intro-slider__slide {
    min-height: 600px; }
  .intro-slider__slide-container::after {
    left: -90px;
    width: 500px;
    height: 500px; }
  .intro-slider__slide-content {
    padding-top: 200px; }
    .intro-slider__slide-content h2 {
      font-size: 55px;
      line-height: 40px; }
  .intro-slider__buttons .slider-arrow-btn {
    bottom: 80px; }
    .intro-slider__buttons .slider-arrow-btn--prev {
      left: 50px; }
    .intro-slider__buttons .slider-arrow-btn--next {
      right: 50px; } }

@media (max-width: 767px) {
  .intro-slider::before {
    width: 280px;
    height: 280px; }
  .intro-slider::after {
    height: 80px; }
  .intro-slider__header {
    font-size: 14px;
    line-height: 18px;
    right: 20px;
    top: 10px; }
    .intro-slider__header button {
      padding: 3px 7px; }
  .intro-slider__slide {
    min-height: 450px; }
  .intro-slider__slide-container::after {
    left: -50px;
    width: 350px;
    height: 350px; }
  .intro-slider__slide-content {
    max-width: 406px;
    padding-top: 135px; }
    .intro-slider__slide-content h2 {
      font-size: 35px;
      line-height: 30px; }
    .intro-slider__slide-content a {
      padding: 6px 40px; }
  .intro-slider__buttons .slider-arrow-btn {
    bottom: 50px; }
    .intro-slider__buttons .slider-arrow-btn--prev {
      left: 20px; }
    .intro-slider__buttons .slider-arrow-btn--next {
      right: 20px; } }

@media (max-width: 500px) {
  .intro-slider::after {
    height: 50px; } }

.our-products {
  position: relative;
  padding-top: 50px;
  padding-bottom: 85px; }

.our-products__title {
  margin-bottom: 60px; }

.our-products__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px; }
  .our-products__list li {
    width: 18.2%;
    margin-right: 9%;
    margin-bottom: 43px; }
    @media (min-width: 601px) {
      .our-products__list li:nth-child(4n) {
        margin-right: 0; } }
  .our-products__list a {
    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;
    width: 100%;
    height: 100%;
    text-decoration: none; }
    .our-products__list a:hover h3 {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      color: #17192b; }
  .our-products__list img {
    height: 186px;
    margin-bottom: 5px;
    -o-object-fit: contain;
       object-fit: contain; }
  .our-products__list h3 {
    font-size: 16px;
    line-height: 19px;
    max-width: 120px;
    margin: 0;
    font-weight: 400;
    text-align: center; }
    .our-products__list h3:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }

@media (max-width: 1024px) {
  .our-products {
    padding-top: 40px;
    padding-bottom: 50px; }
  .our-products__list img {
    height: 130px; } }

@media (max-width: 767px) {
  .our-products {
    padding-top: 40px;
    padding-bottom: 50px; }
  .our-products__title {
    margin-bottom: 40px; } }

@media (max-width: 600px) {
  .our-products__list li {
    width: 30%;
    margin-right: 5%; } }
  @media (max-width: 600px) and (min-width: 401px) {
    .our-products__list li:nth-child(3n) {
      margin-right: 0; } }

@media (max-width: 400px) {
  .our-products__list li {
    width: 45%;
    margin-right: 10%; }
    .our-products__list li:nth-child(2n) {
      margin-right: 0; } }

.brands-slider__container {
  overflow: hidden; }

.brands-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .brands-slider__list li {
    -ms-flex-negative: 0;
        flex-shrink: 0; }

.about-section {
  position: relative;
  padding-top: 26px;
  padding-bottom: 90px;
  background-color: #fafafa;
  background-image: url("../img/about-section-bg-1.png"), url("../img/about-section-bg-2.png");
  background-repeat: no-repeat;
  background-position: right bottom 40px, left bottom 24px; }
  @media (max-width: 1440px) {
    .about-section {
      background-position: right bottom 40px, left calc(24% - 200px) bottom 24px; } }
  @media (max-width: 1200px) {
    .about-section {
      background-position: left calc(70% + 200px) bottom 0, left calc(12% - 200px) bottom 0; } }
  @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
    .about-section {
      background-image: url("../img/about-section-bg-1@2x.png"), url("../img/about-section-bg-2@2x.png");
      background-size: 401px, 400px; } }
  .about-section::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 44px;
    background-image: url("../img/grey-decor.png");
    background-size: cover;
    background-repeat: no-repeat; }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .about-section::before {
        background-image: url("../img/grey-decor@2x.png"); } }

.about-section__container {
  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; }

.about-section__title {
  margin-bottom: 45px; }

.about-section__text {
  font-size: 16px;
  line-height: 19px;
  max-width: 515px;
  margin: 0;
  margin-bottom: 38px;
  color: rgba(23, 25, 43, 0.5);
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on;
  text-align: center; }

.about-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px; }
  .about-section__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 85px;
    color: rgba(23, 25, 43, 0.5);
    -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
            font-feature-settings: 'pnum' on, 'lnum' on; }
    .about-section__list li:last-child {
      margin-right: 0; }
    .about-section__list li span {
      font-size: 25px;
      line-height: 50px;
      margin-bottom: 5px;
      font-family: "Roboto", "Arial", sans-serif;
      color: #bf392c; }
    .about-section__list li p {
      font-size: 16px;
      line-height: 19px;
      margin: 0;
      width: 115px;
      text-align: center; }

@media (max-width: 1024px) {
  .about-section {
    background-position: calc(60% + 200px) bottom, left calc(12% - 200px) bottom -30px; }
  .about-section__list li {
    margin-right: 45px; } }

@media (max-width: 767px) {
  .about-section__title {
    margin-bottom: 25px; }
  .about-section__text {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 25px; }
  .about-section__list {
    margin-bottom: 35px; }
    .about-section__list li {
      margin-right: 5px; }
      .about-section__list li span {
        font-size: 23px;
        line-height: 40px; }
      .about-section__list li p {
        font-size: 13px;
        line-height: 16px;
        width: 90px; } }

@media (max-width: 500px) {
  .about-section {
    background-image: none; } }
  @media (max-width: 500px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 500px) and (min-resolution: 144dpi), (max-width: 500px) and (min-resolution: 1.5dppx) {
    .about-section {
      background-image: none; } }

.form-section {
  position: relative;
  padding-top: 35px;
  padding-bottom: 70px; }
  .form-section::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    height: 44px;
    background-image: url("../img/white-decor.png");
    background-size: cover;
    background-repeat: no-repeat; }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .form-section::before {
        background-image: url("../img/white-decor@2x.png"); } }
  .form-section form {
    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;
    max-width: 500px;
    margin: 0 auto; }
    .form-section form button {
      margin-bottom: 15px; }
    .form-section form p {
      font-size: 10px;
      line-height: 12px;
      z-index: 1;
      margin: 0;
      text-align: center; }
      .form-section form p a {
        -webkit-text-decoration-skip-ink: none;
                text-decoration-skip-ink: none; }
        .form-section form p a:not(:hover) {
          -webkit-transition: 0.3s;
          transition: 0.3s; }
        .form-section form p a:hover {
          outline: none;
          cursor: pointer;
          -webkit-transition: 0.3s;
          transition: 0.3s;
          opacity: 0.7; }
  .form-section--wide {
    padding-bottom: 85px;
    background-color: #fbfafa;}
    .form-section--wide::before {
      background-image: url("../img/grey-decor.png"); }
      @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
        .form-section--wide::before {
          background-image: url("../img/grey-decor@2x.png"); } }
    .form-section--wide .form-section__title {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-bottom: 30px;
      text-align: left; }
    .form-section--wide form {
      max-width: unset; }
      .form-section--wide form p {
        max-width: unset; }
    .form-section--wide .form-section__input-wrapper {
      max-width: unset; }
      .form-section--wide .form-section__input-wrapper input {
        background-color: transparent; }
    @media (min-width: 1300px) {
      .form-section--wide .form-section__input-wrapper {
        width: 100%; }
        .form-section--wide .form-section__input-wrapper input {
          width: 17.4%;
          margin-right: 2.46%; }
          .form-section--wide .form-section__input-wrapper input:nth-child(2) {
            margin-right: 2.46%; } }

.form-section__title {
  margin-bottom: 60px; }

.form-section__input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 480px;
  margin-bottom: 16px; }
  .form-section__input-wrapper:last-child {
    margin-right: 0; }
  .form-section__input-wrapper input {
    font-size: 16px;
    line-height: 19px;
    width: 45.91%;
    margin-bottom: 17px;
    margin-right: 4.18%;
    padding: 8px 19px 7px;
    border: 1px solid rgba(23, 25, 43, 0.1);
    background-color: #ffffff; }
    .form-section__input-wrapper input:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .form-section__input-wrapper input:nth-child(2n) {
      margin-right: 2.46%; }
    .form-section__input-wrapper input::-webkit-input-placeholder {
      font-size: 16px;
      line-height: 19px; }
    .form-section__input-wrapper input::-moz-placeholder {
      font-size: 16px;
      line-height: 19px; }
    .form-section__input-wrapper input:-ms-input-placeholder {
      font-size: 16px;
      line-height: 19px; }
    .form-section__input-wrapper input::-ms-input-placeholder {
      font-size: 16px;
      line-height: 19px; }
    .form-section__input-wrapper input::placeholder {
      font-size: 16px;
      line-height: 19px; }
    .form-section__input-wrapper input:hover, .form-section__input-wrapper input:focus {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      border-color: #936364; }

@media (max-width: 1024px) {
  .form-section {
    padding-bottom: 60px; }
    .form-section--wide {
      padding-bottom: 60px; } }

@media (max-width: 767px) {
  .form-section {
    padding-top: 30px; }
    .form-section--wide {
      padding-bottom: 50px; }
  .form-section__title {
    margin-bottom: 30px; } }

@media (max-width: 500px) {
  .form-section {
    padding-top: 20px; }
    .form-section--wide {
      padding-bottom: 40px; }
  .form-section__input-wrapper {
    margin-bottom: 25px; }
    .form-section__input-wrapper input {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px; }
      .form-section__input-wrapper input:last-child {
        margin-bottom: 0; } }

.filter {
  position: fixed;
  z-index: 10;
  max-width: calc(100% - 200px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 42px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #f8f8f8;
  border-bottom: 1px solid rgba(151, 152, 160, 0.1);
  color: #17192b; }
  .filter form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 1025px) {
      .filter form input:hover + label {
        outline: none;
        cursor: pointer;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        background-color: rgba(151, 152, 160, 0.1); } }
    .filter form input:checked + label {
      background-color: rgba(151, 152, 160, 0.1); }

.filter__container {
  padding-left: 65px;
  padding-right: 44px; }

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

.filter__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto; }
  .filter__buttons button[type="submit"] {
    font-size: 14px;
    line-height: 16px;
    margin-right: 20px;
    padding: 4px 14px;
    font-family: "Raleway", "Arial", sans-serif;
    text-transform: unset; }
  .filter__buttons button[type="reset"] {
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 25px;
    height: 25px; }
    .filter__buttons button[type="reset"]:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .filter__buttons button[type="reset"]:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.7; }

.catalog-page .form-section {
  background-image: url("../img/milk-decor.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;}
  @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
    .catalog-page .form-section--wide {
      background-image: url("../img/milk-decor@2x.png"); } }

.catalog-filter {
  font-size: 16px;
  line-height: 19px;
  position: relative;
  min-width: 107px;
  max-width: 150px;
  margin-right: 10px; }
  .catalog-filter--opened .catalog-filter__header svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .catalog-filter--opened .catalog-filter__parameters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.catalog-filter__header {
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 9px 18px 5px;
  color: inherit; }
  .catalog-filter__header:not(:hover) {
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .catalog-filter__header:hover {
    outline: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7; }
  .catalog-filter__header svg {
    margin-left: 10px; }

.catalog-filter__parameters {
  display: none;
  position: absolute;
  top: 39px;
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 100%;
  width: auto;
  background-color: #ffffff;
  border: 1px solid rgba(151, 152, 160, 0.1);
  border-top: none; }
  .catalog-filter__parameters label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    text-transform: lowercase;
    text-align: center; }
  .catalog-filter__parameters img {
    margin: auto; }

@media (max-width: 1200px) {
  .filter__container {
    padding-left: 15px;
    padding-right: 20px; } }

@media (max-width: 1024px) {
  .catalog-filter {
    font-size: 13px;
    line-height: 15px;
    min-width: 70px; }
  .catalog-filter__header {
    padding: 9px 12px 5px; }
    .catalog-filter__header svg {
      width: 10px; }
  .filter__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto; }
    .filter__buttons button[type="submit"] {
      font-size: 13px;
      line-height: 15px;
      margin-right: 15px;
      padding: 4px 12px; } }

@media (max-width: 900px) {
  .filter {
    padding-bottom: 10px; }
    .filter form {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
  .filter__wrapper {
    margin-bottom: 20px; } }

@media (max-width: 767px) {
  .filter {
    width: 100%;
    max-width: 100%;
    padding-top: 10px; }
    .filter form {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
  .filter__container {
    padding-left: 20px;
    padding-right: 20px; }
  .filter__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0; }
  .catalog-filter__header {
    padding: 9px 10px 5px; }
    .catalog-filter__header svg {
      margin-left: 7px; }
  .filter__buttons {
    margin-top: 10px;
    margin-left: 0; }
    .filter__buttons button[type="submit"] {
      margin-right: 10px;
      padding: 4px 10px; }
    .filter__buttons button[type="reset"] {
      width: 20px;
      height: 20px; } }

.catalog {
  padding-bottom: 45px;
  padding-top: 38px; }

.catalog__title {
  margin-bottom: 60px; }

.catalog__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .catalog__list li {
    width: 18.2%;
    margin-right: 9%;
    margin-bottom: 30px; }
    @media (min-width: 1025px) {
      .catalog__list li:nth-child(4n) {
        margin-right: 0; } }
  .catalog__list a {
    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;
    width: 100%;
    height: 100%;
    text-decoration: none; }
    .catalog__list a:hover h3 {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      color: #17192b; }
  .catalog__list img {
    height: 186px;
    margin-bottom: 5px;
    -o-object-fit: contain;
       object-fit: contain; }
  .catalog__list h3 {
    font-size: 14px;
    line-height: 16px;
    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;
    max-width: 160px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    color: #9798a0;
    -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
            font-feature-settings: 'pnum' on, 'lnum' on; }
    .catalog__list h3:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }

@media (max-width: 1200px) {
  .catalog__list li {
    width: 20%;
    margin-right: 6.66%; } }

@media (max-width: 1024px) {
  .catalog__title {
    margin-bottom: 40px; }
  .catalog__list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 50px; } }
  @media (max-width: 1024px) and (min-width: 501px) {
    .catalog__list li:nth-child(3n) {
      margin-right: 0; } }

@media (max-width: 1024px) {
  .catalog__list h3 {
    font-size: 12px;
    line-height: 14px; }
  .catalog__list img {
    height: 150px; } }

@media (max-width: 767px) {
  .catalog {
    padding-top: 50px; }
  .catalog__list li {
    margin-bottom: 40px; }
  .catalog__title {
    margin-bottom: 30px; } }

@media (max-width: 500px) {
  .catalog__list li {
    width: 45%;
    margin-right: 10%; }
    .catalog__list li:nth-child(2n) {
      margin-right: 0; } }

.product-page .form-section {
  background-color: #fbfafa; }

.product {
  padding-bottom: 45px; }

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

.product-slider__container {
  overflow: hidden;
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  width: 48.8%;
  margin-right: 1.95%; }
  .product-slider__container .slider-arrow-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-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;
    width: 20px;
    height: 20px;
    color: #9798a0; }
    .product-slider__container .slider-arrow-btn--next {
      right: 0;
      -webkit-transform: translateY(-50%) rotate(180deg);
              transform: translateY(-50%) rotate(180deg); }
    .product-slider__container .slider-arrow-btn:hover {
      color: #5a1d0d;
      opacity: unset; }

.product-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.product-slider__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 49.25%; }

.product__brand-logo {
  margin-left: auto;
  margin-bottom: 50px; }
  .product__brand-logo--mobile {
    display: none; }

.product__title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  text-align: left; }
  .product__title span {
    text-transform: unset; }

.product__features {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 53px;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on; }
  .product__features li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px; }
    .product__features li:last-child {
      margin-bottom: 0; }

.product__features-name {
  width: 42%;
  margin-right: 10%; }

.product__features-value {
  width: 48%; }

.product__where h2 {
  font-size: 14px;
  line-height: 16px;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 500;
  color: #936364; }

.product__where-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .product__where-list li {
    width: 19%;
    margin-right: 8%;
    margin-bottom: 5px; }
    .product__where-list li:nth-child(4n) {
      margin-right: 0; }
    .product__where-list li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      height: 100%; }

@media (max-width: 1024px) {
  .product-slider__container {
    width: 48%;
    margin-right: 2%; }
  .product__info {
    width: 50%; }
  .product__brand-logo {
    margin-bottom: 20px; }
  .product__title {
    margin-bottom: 15px; }
  .product__features {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 20px; }
    .product__features li {
      margin-bottom: 8px; }
  .product__features-name {
    width: 38.5%;
    margin-right: 5%; }
  .product__features-value {
    width: 56.5%; }
  .product__where h2 {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px; }
  .product__where-list li {
    width: 22%;
    margin-right: 4%; } }

@media (max-width: 767px) {
  .product {
    padding-top: 20px; }
  .product__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .product-slider__container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px; }
  .product__brand-logo {
    display: none; }
    .product__brand-logo--mobile {
      display: block; }
  .product__info {
    width: 100%; } }

.another-taste {
  padding-bottom: 62px; }

.another-taste__title {
  margin-bottom: 40px; }

.another-taste__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 745px;
  margin: 0 auto; }
  .another-taste__list li {
    width: 24.96%;
    margin-right: 12.56%; }
    @media (min-width: 501px) {
      .another-taste__list li:nth-child(3n) {
        margin-right: 0; } }
  .another-taste__list a {
    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;
    width: 100%;
    height: 100%;
    text-decoration: none; }
    .another-taste__list a:hover h3 {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      color: #17192b; }
  .another-taste__list img {
    height: 186px;
    margin-bottom: 5px;
    -o-object-fit: contain;
       object-fit: contain; }
  .another-taste__list h3 {
    font-size: 14px;
    line-height: 16px;
    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;
    max-width: 160px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    color: #9798a0;
    -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
            font-feature-settings: 'pnum' on, 'lnum' on; }
    .another-taste__list h3:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }

@media (max-width: 1024px) {
  .another-taste {
    padding-bottom: 50px; }
  .another-taste__title {
    margin-bottom: 20px; }
  .another-taste__list li {
    width: 26.66%;
    margin-right: 10%; }
  .another-taste__list img {
    height: 150px; }
  .another-taste__list h3 {
    font-size: 12px;
    line-height: 14px; } }

@media (max-width: 500px) {
  .another-taste__list li {
    width: 45%;
    margin-right: 10%; }
    .another-taste__list li:nth-child(2n) {
      margin-right: 0; } }

.promotions-page .form-section {
  padding-top: 0;
  background-color: #fbfafa;
  background-image: none; }
  .promotions-page .form-section::before {
    display: none; }

.promotions-page .page-footer {
  background-color: #fbfafa; }

@media (max-width: 1024px) {
  .promotions-page .form-section {
    padding-top: 15px; } }

.promotions-slider {
  position: relative;
  padding-bottom: 35px; }
  @media (max-width: 1100px) {
    .promotions-slider {
      padding-bottom: 20px; } }
  @media (max-width: 767px) {
    .promotions-slider {
      padding-bottom: 10px; } }
  .promotions-slider::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 450px;
    height: 450px;
    background: radial-gradient(50% 50% at 50% 50%, #FFFEFC 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.9;
    background-position: left 50px top -169px;
    background-repeat: no-repeat; }
    @media (max-width: 1200px) {
      .promotions-slider::before {
        background-position: left 125px top -169px; } }
    @media (max-width: 1024px) {
      .promotions-slider::before {
        width: 350px;
        height: 350px;
        background-position: left 105px top -169px; } }
  .promotions-slider::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 117px;
    background-image: url("../img/milk-decor-grey.png");
    background-size: contain;
    background-position: left bottom -2px;
    background-repeat: no-repeat; }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .promotions-slider::after {
        background-image: url("../img/milk-decor-grey@2x.png"); } }
    @media (min-width: 1400px) {
      .promotions-slider::after {
        height: 160px; } }
    @media (min-width: 1800px) {
      .promotions-slider::after {
        height: 175px; } }
    @media (min-width: 2000px) {
      .promotions-slider::after {
        background-size: cover;
        background-position: left top; } }

.promotions-slider__header-container {
  position: relative; }

.promotions-slider__header {
  font-size: 16px;
  line-height: 21px;
  position: absolute;
  right: 105px;
  top: 15px;
  z-index: 2;
  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;
  font-family: "PTSans", "Arial", sans-serif;
  color: #5a1d0d; }
  .promotions-slider__header a {
    margin-bottom: 6px;
    font-weight: 700;
    text-decoration: none; }
    .promotions-slider__header a:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .promotions-slider__header a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.7; }
  .promotions-slider__header button {
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    padding: 5px 10px;
    border: 1px solid #5a1d0d;
    background-color: transparent;
    color: #5a1d0d; }
    .promotions-slider__header button:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .promotions-slider__header button:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      opacity: 0.7; }

.promotions-slider__container {
  position: relative;
  overflow: hidden; }

.promotions-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.promotions-slider__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 705px;
  width: 100%;
  color: #17192b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.promotions-slider__slide-container {
  position: relative;
  height: 100%; }
  .promotions-slider__slide-container::after {
    content: "";
    position: absolute;
    left: -190px;
    top: -220px;
    width: 850px;
    height: 850px;
    background-image: radial-gradient(50% 50% at 50% 50%, rgba(255, 254, 252, 0.66) 0%, rgba(255, 255, 255, 0) 100%);
    background-repeat: no-repeat;
    opacity: 0.75; }

.promotions-slider__slide-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 475px;
  font-family: "Roboto", "Arial", sans-serif;
  letter-spacing: 0.02em;
  padding-top: 42px; }
  .promotions-slider__slide-content h2 {
    font-size: 65px;
    line-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    margin-bottom: 25px;
    font-weight: 400;
    color: #5a1d0d; }
    .promotions-slider__slide-content h2 span {
      font-size: 25px;
      line-height: 35px;
      color: #bf392c; }
  .promotions-slider__slide-content p {
    font-size: 30px;
    line-height: 40px;
    max-width: 380px;
    margin: 0;
    margin-bottom: 43px;
    color: #bf392c; }
  .promotions-slider__slide-content a {
    padding: 9px 44px; }
    .promotions-slider__slide-content a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      background-color: #fffdf6;
      color: #bf392c; }

.promotions-slider__term {
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 83px;
  font-family: "Raleway", "Arial", sans-serif;
  color: #5a1d0d;
  letter-spacing: 0; }

.promotions-slider__buttons {
  position: relative;
  z-index: 1; }
  .promotions-slider__buttons .slider-arrow-btn {
    position: absolute;
    bottom: 70px; }
    .promotions-slider__buttons .slider-arrow-btn--prev {
      left: 105px; }
    .promotions-slider__buttons .slider-arrow-btn--next {
      right: 105px; }

@media (max-width: 1200px) {
  .promotions-slider__buttons .slider-arrow-btn--prev {
    left: 50px; }
  .promotions-slider__buttons .slider-arrow-btn--next {
    right: 50px; } }

@media (max-width: 1024px) {
  .promotions-slider__header {
    right: 50px; }
  .promotions-slider__slide {
    min-height: 630px; }
  .promotions-slider__slide-container::after {
    left: -150px;
    top: -190px;
    width: 700px;
    height: 700px; }
  .promotions-slider__slide-content {
    max-width: 370px; }
    .promotions-slider__slide-content h2 {
      font-size: 50px;
      line-height: 45px; }
      .promotions-slider__slide-content h2 span {
        font-size: 25px;
        line-height: 35px; }
    .promotions-slider__slide-content p {
      font-size: 24px;
      line-height: 32px;
      max-width: 300px;
      margin-bottom: 30px; }
  .promotions-slider__buttons .slider-arrow-btn--prev {
    left: 35px; }
  .promotions-slider__buttons .slider-arrow-btn--next {
    right: 35px; } }

@media (max-width: 767px) {
  .promotions-slider::after {
    height: 80px; }
  .promotions-slider__header {
    font-size: 14px;
    line-height: 18px;
    right: 20px;
    top: 10px; }
    .promotions-slider__header button {
      padding: 3px 7px; }
  .promotions-slider__term {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 50px; }
  .promotions-slider__slide {
    min-height: 535px; }
  .promotions-slider__slide-container::after {
    left: -190px;
    top: -140px;
    width: 650px;
    height: 650px; }
  .promotions-slider__slide-content {
    max-width: 260px;
    padding-top: 70px; }
    .promotions-slider__slide-content h2 {
      font-size: 35px;
      line-height: 30px; }
      .promotions-slider__slide-content h2 span {
        font-size: 20px;
        line-height: 30px; }
    .promotions-slider__slide-content p {
      font-size: 20px;
      line-height: 26px;
      max-width: 250px;
      margin-bottom: 20px; }
    .promotions-slider__slide-content a {
      padding: 6px 40px; }
  .promotions-slider__buttons .slider-arrow-btn {
    bottom: 35px; }
    .promotions-slider__buttons .slider-arrow-btn--prev {
      left: 20px; }
    .promotions-slider__buttons .slider-arrow-btn--next {
      right: 20px; } }

@media (max-width: 500px) {
  .promotions-slider::after {
    height: 50px; } }

.about-page .form-section {
  background-image: url("../img/about-form-bg.png");
  background-position: calc(84.5% + 278px) bottom;
  background-repeat: no-repeat; }
  @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
    .about-page .form-section {
      background-image: url("../img/about-form-bg@2x.png");
      background-size: 557px; } }
  @media (max-width: 1200px) {
    .about-page .form-section {
      background-position: calc(100% + 278px) bottom; } }
  @media (max-width: 1100px) {
    .about-page .form-section {
      background-position: calc(115% + 278px) bottom; } }
  @media (max-width: 1024px) {
    .about-page .form-section {
      background-image: none; } }
  @media (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 1024px) and (min-resolution: 144dpi), (max-width: 1024px) and (min-resolution: 1.5dppx) {
    .about-page .form-section {
      background-image: none; } }

.about {
  position: relative;
  padding-top: 42px;
  background-image: url("../img/chocolate-decor.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 31.5%; }
  @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
    .about {
      background-image: url("../img/chocolate-decor@2x.png"); } }
  .about::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -190px;
    width: 341px;
    height: 329px;
    background-image: url("../img/about-decor-img.png");
    background-repeat: no-repeat;
    background-size: contain; }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .about::after {
        background-image: url("../img/about-decor-img@2x.png"); } }

.about__title {
  margin-bottom: 25px; }

.about__text {
  font-size: 16px;
  line-height: 19px;
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center; }

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto; }
  .about__list li {
    font-size: 14px;
    line-height: 16px;
    width: 44%;
    margin-right: 12%;
    margin-bottom: 64px; }
    .about__list li:nth-child(2n) {
      margin-right: 0; }
  .about__list h3 {
    margin: 0;
    margin-bottom: 24px;
    font-weight: 500;
    color: #bf392c;
    font-size: inherit; }
  .about__list p {
    margin: 0; }

@media (max-width: 1200px) {
  .about::after {
    bottom: -210px; }
  .about__list li {
    width: 45%;
    margin-right: 10%; } }

@media (max-width: 1024px) {
  .about {
    background-size: 40%; }
    .about::after {
      display: none; }
  .about__text {
    font-size: 14px;
    line-height: 18px; }
  .about__list li {
    font-size: 13px;
    line-height: 15px; }
  .about__list h3 {
    margin-bottom: 15px; } }

@media (max-width: 767px) {
  .about {
    background-size: 50%;
    padding-top: 50px; }
  .about__text {
    margin-bottom: 35px; }
  .about__list li {
    margin-bottom: 25px; } }

@media (max-width: 500px) {
  .about__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .about__list li {
      width: 100%;
      margin-right: 0;
      text-align: center; }
    .about__list h3 {
      margin-bottom: 10px; } }

.selling-regions {
  min-height: 498px;
  padding-top: 36px;
  padding-bottom: 33px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top; }

.selling-regions__title {
  margin-bottom: 88px; }

.selling-regions__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .selling-regions__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 18%;
    margin-right: 2.5%;
    margin-bottom: 50px; }
    @media (min-width: 901px) {
      .selling-regions__list li:nth-child(5n) {
        margin-right: 0; } }
  .selling-regions__list img {
    margin-bottom: 10px; }
  .selling-regions__list p {
    font-size: 16px;
    line-height: 19px;
    margin: 0; }

@media (max-width: 1200px) {
  .selling-regions {
    min-height: auto;
    padding-bottom: 30px; } }

@media (max-width: 1024px) {
  .selling-regions__title {
    margin-bottom: 50px; }
  .selling-regions__list p {
    font-size: 14px;
    line-height: 16px; }
  .selling-regions__list li {
    width: 15%;
    margin-right: 6.25%; } }

@media (max-width: 900px) {
  .selling-regions__list p {
    font-size: 14px;
    line-height: 16px; }
  .selling-regions__list li {
    width: 19.75%;
    margin-right: 7%;
    margin-bottom: 35px; } }
  @media (max-width: 900px) and (min-width: 501px) {
    .selling-regions__list li:nth-child(4n) {
      margin-right: 0; } }

@media (max-width: 767px) {
  .selling-regions__title {
    margin-bottom: 40px; }
  .selling-regions__list li {
    margin-bottom: 30px; } }

@media (max-width: 500px) {
  .selling-regions__list li {
    width: 29%;
    margin-right: 6.5%;
    margin-bottom: 20px; } }
  @media (max-width: 500px) and (min-width: 401px) {
    .selling-regions__list li:nth-child(3n) {
      margin-right: 0; } }

@media (max-width: 500px) {
  .selling-regions__list img {
    margin-bottom: 5px; } }

@media (max-width: 400px) {
  .selling-regions__list li {
    width: 48%;
    margin-right: 2%; }
    .selling-regions__list li:nth-child(2n) {
      margin-right: 0; } }

.partners__title {
  margin-bottom: 60px; }
  .partners__title span {
    text-transform: none; }
    .partners__title span::first-letter {
      text-transform: lowercase; }

.partners__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .partners__list li {
    width: 17.63%;
    margin-right: 2.96%;
    margin-bottom: 28px; }
    @media (min-width: 1025px) {
      .partners__list li:nth-child(5n) {
        margin-right: 0; } }
  .partners__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%; }

@media (max-width: 1024px) {
  .partners__title {
    margin-bottom: 40px; }
  .partners__list li {
    width: 22%;
    margin-right: 4%; } }
  @media (max-width: 1024px) and (min-width: 501px) {
    .partners__list li:nth-child(4n) {
      margin-right: 0; } }

@media (max-width: 767px) {
  .partners__title {
    margin-bottom: 30px; } }

@media (max-width: 500px) {
  .partners__list li {
    width: 29%;
    margin-right: 6.5%;
    margin-bottom: 30px; } }
  @media (max-width: 500px) and (min-width: 320px) {
    .partners__list li:nth-child(3n) {
      margin-right: 0; } }

.partnership {
  padding-top: 42px;
  padding-bottom: 50px; }

.partnership__title {
  margin-bottom: 25px; }

.partnership__text {
  font-size: 16px;
  line-height: 19px;
  max-width: 840px;
  margin: 0 auto 50px;
  text-align: center;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
          font-feature-settings: 'pnum' on, 'lnum' on; }

.partnership__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .partnership__list li {
    font-size: 14px;
    line-height: 16px;
    width: 28%;
    margin-right: 8%; }
    .partnership__list li:last-child {
      margin-right: 0; }
  .partnership__list h3 {
    margin: 0;
    margin-bottom: 25px;
    font-weight: 500;
    color: #bf392c; }
  .partnership__list p {
    margin: 0; }

@media (max-width: 1024px) {
  .partnership__text {
    font-size: 14px;
    line-height: 18px; }
  .partnership__list li {
    font-size: 13px;
    line-height: 15px;
    width: 31%;
    margin-right: 3.5%; }
  .partnership__list h3 {
    margin-bottom: 15px; } }

@media (max-width: 767px) {
  .partnership {
    padding-top: 50px;
    padding-bottom: 30px; }
  .partnership__text {
    margin-bottom: 35px; } }

@media (max-width: 650px) {
  .partnership__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .partnership__list li {
      width: 100%;
      margin-right: 0;
      margin-bottom: 25px;
      text-align: center; }
    .partnership__list h3 {
      margin-bottom: 10px; } }

.our-brands {
  padding-bottom: 95px; }

.our-brands__title {
  margin-bottom: 60px; }

@media (max-width: 1024px) {
  .our-brands {
    padding-bottom: 70px; }
  .our-brands__title {
    margin-bottom: 40px; } }

@media (max-width: 767px) {
  .our-brands__title {
    margin-bottom: 30px; } }

.advertising {
  position: relative;
  padding-top: 58px;
  margin-bottom: 75px; }
  .advertising::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    height: 44px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/grey-decor.png"); }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .advertising::before {
        background-image: url("../img/grey-decor@2x.png"); } }

.advertising__title {
  margin-bottom: 60px; }

.advertising-slider {
  position: relative; }

.advertising-slider__container {
  overflow: hidden; }
  .advertising-slider__container .slider-arrow-btn {
    position: absolute;
    top: 50%;
    left: -25px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    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: 20px;
    height: 20px;
    color: #9798a0; }
    .advertising-slider__container .slider-arrow-btn--next {
      right: -25px;
      left: unset;
      -webkit-transform: translateY(-100%) rotate(180deg);
              transform: translateY(-100%) rotate(180deg); }
    .advertising-slider__container .slider-arrow-btn:hover {
      color: #5a1d0d;
      opacity: unset; }

.advertising-slider__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.advertising-slider__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .advertising-slider__slide a {
    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;
    width: 100%;
    height: 100%;
    text-decoration: none; }
  .advertising-slider__slide img {
    margin-bottom: 15px;
    border-radius: 50%; }
  .advertising-slider__slide h3 {
    font-size: 16px;
    line-height: 19px;
    max-width: 140px;
    margin: 0;
    font-weight: 400;
    text-align: center;
    color: #bf392c; }

@media (max-width: 1024px) {
  .advertising-slider__slide h3 {
    font-size: 15px;
    line-height: 18px;
    max-width: 125px; } }

@media (max-width: 767px) {
  .advertising {
    padding-top: 30px; }
  .advertising__title {
    margin-bottom: 40px; }
  .advertising-slider__container .slider-arrow-btn {
    left: -20px; }
    .advertising-slider__container .slider-arrow-btn--next {
      right: -20px;
      left: unset; } }

.certificates__title {
  margin-bottom: 60px; }

.certificates__list {
  font-size: 16px;
  line-height: 19px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #17192b; }
  .certificates__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 17.5%;
    margin-right: 3.125%;
    margin-bottom: 30px; }
    @media (min-width: 1351px) {
      .certificates__list li:nth-child(5n) {
        margin-right: 0; } }
  .certificates__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 16px;
    margin-top: 10px;
    color: #9798a0; }
    .certificates__list ul li {
      width: 100%;
      margin-bottom: 5px; }
      .certificates__list ul li:last-child {
        margin-bottom: 0; }
  .certificates__list a {
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none; }
    .certificates__list a:not(:hover) {
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .certificates__list a:hover {
      outline: none;
      cursor: pointer;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      -webkit-text-decoration-color: transparent;
              text-decoration-color: transparent; }

@media (max-width: 1350px) {
  .certificates__list li {
    width: 22.5%;
    margin-right: 3.33%; } }
  @media (max-width: 1350px) and (min-width: 951px) {
    .certificates__list li:nth-child(4n) {
      margin-right: 0; } }

@media (max-width: 1024px) {
  .certificates__list {
    font-size: 14px;
    line-height: 17px; }
    .certificates__list li {
      margin-bottom: 20px; }
    .certificates__list ul {
      font-size: 12px;
      line-height: 14px;
      margin-top: 5px; } }

@media (max-width: 950px) {
  .certificates__list li {
    width: 30%;
    margin-right: 4.5%; } }
  @media (max-width: 950px) and (min-width: 551px) {
    .certificates__list li:nth-child(3n) {
      margin-right: 0; } }

@media (max-width: 767px) {
  .certificates {
    margin-bottom: 20px; }
  .certificates__title {
    margin-bottom: 30px; }
  .certificates__list {
    font-size: 13px;
    line-height: 16px; }
    .certificates__list ul {
      font-size: 11px;
      line-height: 13px; } }

@media (max-width: 550px) {
  .certificates__list li {
    width: 44%;
    margin-right: 6%; }
    .certificates__list li:nth-child(2n) {
      margin-right: 0; } }

.delivery {
  padding-top: 12px;
  padding-bottom: 50px; }

.delivery__title {
  margin-bottom: 60px; }

.delivery__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .delivery__list li {
    font-size: 14px;
    line-height: 16px;
    width: 28%;
    margin-right: 8%; }
    .delivery__list li:last-child {
      margin-right: 0; }
  .delivery__list h3 {
    margin: 0;
    margin-bottom: 25px;
    font-weight: 500;
    color: #bf392c; }
  .delivery__list p {
    margin: 0; }

@media (max-width: 1024px) {
  .delivery__list li {
    font-size: 13px;
    line-height: 15px;
    width: 31%;
    margin-right: 3.5%; }
  .delivery__list h3 {
    margin-bottom: 15px; } }

@media (max-width: 767px) {
  .delivery {
    padding-top: 20px;
    padding-bottom: 30px; }
  .delivery__title {
    margin-bottom: 30px; } }

@media (max-width: 650px) {
  .delivery__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .delivery__list li {
      font-size: 13px;
      line-height: 15px;
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
      text-align: center; }
    .delivery__list h3 {
      margin-bottom: 10px; } }

.where-page .form-section {
  padding-top: 22px;
  background-color: #fbfafa; }
  .where-page .form-section::before {
    top: -80px;
    width: 100%;
    height: 117px;
    background-image: url("../img/milk-decor-grey.png"); }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
      .where-page .form-section::before {
        background-image: url("../img/milk-decor-grey@2x.png"); } }

.where-page .page-footer {
  background-color: #fbfafa; }

@media (max-width: 1024px) {
  .where-page .form-section::before {
    top: -52px;
    background-size: contain; } }

@media (max-width: 767px) {
  .where-page .form-section::before {
    top: -45px; } }

@media (max-width: 500px) {
  .where-page .form-section::before {
    top: -28px; } }

.where {
  padding-top: 42px; }

.where__title {
  margin-bottom: 60px; }

.where__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 97px; }
  .where__list li {
    width: 17.63%;
    margin-right: 2.96%;
    margin-bottom: 40px; }
    @media (min-width: 1025px) {
      .where__list li:nth-child(5n) {
        margin-right: 0; } }
  .where__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%; }

@media (max-width: 1024px) {
  .where__title {
    margin-bottom: 40px; }
  .where__list {
    padding-bottom: 50px; }
    .where__list li {
      width: 22%;
      margin-right: 4%; } }
    @media (max-width: 1024px) and (min-width: 501px) {
      .where__list li:nth-child(4n) {
        margin-right: 0; } }

@media (max-width: 767px) {
  .where {
    padding-top: 50px; }
  .where__title {
    margin-bottom: 30px; }
  .where__list {
    padding-bottom: 30px; } }

@media (max-width: 500px) {
  .where__list li {
    width: 29%;
    margin-right: 6.5%;
    margin-bottom: 30px; } }
  @media (max-width: 500px) and (min-width: 320px) {
    .where__list li:nth-child(3n) {
      margin-right: 0; } }

.privacy-policy-page .page-footer {
  background-color: #fbfafa; }

.privacy-policy {
  padding-top: 14px;
  padding-bottom: 50px;
  background-color: #fbfafa; }
  .privacy-policy p {
    font-size: 16px;
    line-height: 19px;
    margin: 0;
    margin-bottom: 15px; }
  .privacy-policy a {
    text-decoration: none; }

.privacy-policy__title {
  margin-bottom: 25px; }

@media (max-width: 767px) {
  .privacy-policy {
    padding-top: 60px; }
    .privacy-policy p {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 10px; } }
