/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html,
body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
}
/*===============================
  Montserrat
  ===============================*/
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*===============================
  Bebas Neue
  ===============================*/
@font-face {
  font-display: swap;
  font-family: 'Bebas Neue';
  src: url('../fonts/subset-BebasNeueRegular.eot');
  src: url('../fonts/subset-BebasNeueRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/subset-BebasNeueRegular.woff2') format('woff2'), url('../fonts/subset-BebasNeueRegular.woff') format('woff'), url('../fonts/subset-BebasNeueRegular.ttf') format('truetype'), url('../fonts/subset-BebasNeueRegular.svg#BebasNeueRegular') format('svg');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/subset-BebasNeueBold.eot');
  src: url('../fonts/subset-BebasNeueBold.eot?#iefix') format('embedded-opentype'), url('../fonts/subset-BebasNeueBold.woff2') format('woff2'), url('../fonts/subset-BebasNeueBold.woff') format('woff'), url('../fonts/subset-BebasNeueBold.ttf') format('truetype'), url('../fonts/subset-BebasNeueBold.svg#BebasNeueBold') format('svg');
  font-weight: 700;
  font-style: normal;
}
/*===============================
  Bebas Neue
  ===============================*/
@font-face {
  font-display: swap;
  font-family: 'Bebas Neue';
  src: url('../fonts/subset-BebasNeueRegular.eot');
  src: url('../fonts/subset-BebasNeueRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/subset-BebasNeueRegular.woff2') format('woff2'), url('../fonts/subset-BebasNeueRegular.woff') format('woff'), url('../fonts/subset-BebasNeueRegular.ttf') format('truetype'), url('../fonts/subset-BebasNeueRegular.svg#BebasNeueRegular') format('svg');
  font-weight: 400;
  font-style: normal;
}
/*===============================
  General Styles
  ===============================*/
html {
  font-size: 1.04vw;
}
@media (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
body {
  background: #fff;
}
a {
  color: #2a9dff;
}
/*===============================
  Background Colors
  ===============================*/
/*===============================
  Text Colors
  ===============================*/
/*===============================
  Border Colors
  ===============================*/
/*===============================
  Fonts
  ===============================*/
/*===============================
  Path
  ===============================*/
/*===============================
  Sizes
  ===============================*/
/*===============================
  Responsive
  ===============================*/
/*===============================
  Visibility
  ===============================*/
.is-hidden {
  display: none !important;
}
@media (min-width: 1024px) {
  .is-hidden-on-desktop {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .is-hidden-up-to-desktop {
    display: none !important;
  }
}
/*===============================
  spacers
  ===============================*/
.spacer-bottom-xs {
  margin-bottom: 0.25rem !important;
}
.spacer-top-xs {
  margin-top: 0.25rem !important;
}
.spacer-bottom-s {
  margin-bottom: 0.5rem !important;
}
.spacer-top-s {
  margin-top: 0.5rem !important;
}
.spacer-bottom-m {
  margin-bottom: 1rem !important;
}
.spacer-top-m {
  margin-top: 1rem !important;
}
.spacer-bottom-l {
  margin-bottom: 1.5rem !important;
}
.spacer-top-l {
  margin-top: 1.5rem !important;
}
.spacer-bottom-xl {
  margin-bottom: 2rem !important;
}
.spacer-top-xl {
  margin-top: 2rem !important;
}
.spacer-bottom-2xl {
  margin-bottom: 4rem !important;
}
.spacer-top-2xl {
  margin-top: 4rem !important;
}
/*===============================
  Hidden
  ===============================*/
@media (max-width: 1023px) {
  .is-mobile-hidden {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .is-desktop-hidden {
    display: none !important;
  }
}
/*===============================
  Text color
  ===============================*/
.text-color-primary {
  color: #343235;
}
.text-color-secondary {
  color: rgba(52, 50, 53, 0.5);
}
.text-color-action {
  color: #2a9dff;
}
/*===============================
  General Typography
  ===============================*/
html,
body,
button,
input,
select,
textarea {
  color: #343235;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}
/*===============================
  Titles
  ===============================*/
.title {
  font-size: 5rem;
  line-height: 1.17;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1023px) {

  .title {
      font-size: 2rem;
      margin: 30px auto;
  }

}
/*===============================
  Text Base
  ===============================*/
.text-base {
  font-size: 1.25rem;
  line-height: 1.4;
}
.text-base--tiny {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.text-base p + p {
  margin-top: 1em;
}
.text-base > ol {
  list-style: none;
  counter-reset: item;
}
.text-base > ol > li {
  margin: 1em 0;
}
.text-base > ol > li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  font-weight: 700;
}
.text-base > ol > li > ol {
  list-style: none;
  counter-reset: item;
  margin-top: 0.5em;
}
.text-base > ol > li > ol > li {
  margin: 0.5em 0;
}
.text-base > ol > li > ol > li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}
/*===============================
  Text Loud
  ===============================*/
.text-loud {
  font-size: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
}
/*===============================
  Text Note
  ===============================*/
.text-note {
  font-size: 0.8rem;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 500;
}
/*===============================
  List
  ===============================*/
.fc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fc-list li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.fc-list li:before {
  content: '';
  display: block;
  width: 0.4em;
  height: 0.4em;
  background: #343235;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55em;
}
.fc-list li:not(:first-child) {
  margin-top: 0.25em;
}
.fc-list--accent li:before {
  background-color: #f86300;
}
/*===============================
  Caption
  ===============================*/
.caption {
  font-size: 0.6rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.06em;
}
/*===============================
  Lazysizes
  ===============================*/
.lazyload,
.lazyloading {
  opacity: 0 !important;
}
img.lazyload:not([src]) {
  visibility: hidden;
}
/*===============================
  Text link
  ===============================*/
.link {
    color: #00b7b6;
    text-decoration: none;
    border-bottom: solid 1px #00b7b6;
}

@media (hover: hover) {
  .link:hover {
    color: #f86300;
    border-bottom-color: transparent;
  }
}
/*===============================
  Button
  ===============================*/
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: none;
  padding: 0;
  background: #191919;
  color: #fff;
  min-height: 4rem;
  border-radius: calc(4rem / 2);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}
.button:before {
  content: '';
  display: block;
  background: #00b7b6;
  width: 100%;
  height: 300%;
  position: absolute;
  left: 0;
  top: 101%;
  border-radius: 100% 100% 0 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.button__text,
.button__text-hover {
  padding: 0.5rem 2rem;
  position: relative;
  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: 100%;
  height: 4rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.button__text-hover {
  position: absolute;
  left: 0;
  top: 100%;
}
.button--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (hover: hover) {
  .button:hover .button__text,
  .button:hover .button__text-hover {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .button:hover:before {
    -webkit-transform: translateY(-65%);
        -ms-transform: translateY(-65%);
            transform: translateY(-65%);
  }
}
/*===============================
  Button Close
  ===============================*/
.button-close {
  position: relative;
  overflow: hidden;
  text-indent: -1000px;
  background: none;
  width: 5rem;
  height: 5rem;
  border: none;
}
.button-close:before,
.button-close:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  height: 15%;
  background: #343235;
}
.button-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.button-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .button-close:hover:before,
  .button-close:hover:after {
    background-color: #f86300;
  }
}
/*===============================
  Up to desktop
  ===============================*/
.button-close {
  width: 4rem;
  height: 4rem;
}
/*===============================
  Field
  ===============================*/
.field {
  display: block;
  width: 100%;
  height: 4rem;
  border-radius: calc(4rem / 2);
  padding: 0 calc(4rem / 2);
  border: solid 2px #d6d6d6;
  color: #343235;
  font-size: 1rem;
  font-weight: 700;
  background: none;
}
.field::-webkit-input-placeholder {
  color: rgba(52, 50, 53, 0.5);
}
.field::-moz-placeholder {
  color: rgba(52, 50, 53, 0.5);
}
.field:-ms-input-placeholder {
  color: rgba(52, 50, 53, 0.5);
}
.field::-ms-input-placeholder {
  color: rgba(52, 50, 53, 0.5);
}
.field::placeholder {
  color: rgba(52, 50, 53, 0.5);
}
/*===============================
  Form label
  ===============================*/
.form-label {
  font-size: 0.6rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: block;
  padding-left: 1rem;
  text-align: left;
}
/*===============================
  Logo
  ===============================*/
.logo {
  display: block;
  height: 7rem;
}
/*===============================
  Price
  ===============================*/
.price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.8;
  white-space: nowrap;
}
.price__currency {
  vertical-align: super;
  font-size: 50%;
}
/*===============================
  Counter
  ===============================*/
.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.counter__input {
  width: 3rem;
  height: 3rem;
  border: solid 2px #d6d6d6;
  text-align: center;
  color: #343235;
  font-size: 1rem;
  font-weight: 700;
  -moz-appearance: textfield;
}
.counter__input::-webkit-outer-spin-button,
.counter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.counter__control {
  height: 50%;
  width: 3rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  color: #343235;
  padding: 0;
}
.counter__control[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.counter__caption {
    text-align: left;
    margin-bottom: 0;
}

@media (hover: hover) {
  .counter__control:hover {
    color: #f86300;
  }
}
/*===============================
  Stamp
  ===============================*/
.stamp {
    position: relative;
    width: 6.5rem;
    height: 6.5rem;
    background: url('../img/stamp-logo.svg') no-repeat 50% 50%;
    background-size: 70% 70%;
}

.stamp:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  background: url('../img/stamp-text.svg') no-repeat 50% 50%;
  background-size: 100% 100%;
  -webkit-animation: stamp-spinner 10s linear infinite;
          animation: stamp-spinner 10s linear infinite;
}
@-webkit-keyframes stamp-spinner {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes stamp-spinner {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/*===============================
  Modal
  ===============================*/
.modal {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #fafafa;
  z-index: 10;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.modal--opened {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
}
.modal__in {
  overflow: auto;
  height: 100%;
  padding: 5.4vh 4.16vw 3vh 4.16vw;
}
.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.modal__form__logo {
  margin: -0.5rem 0 1.5rem;
}
.modal__form__content {
  margin: auto 0;
}
/*===============================
  Desktop
  ===============================*/
@media (min-width: 1024px) {
  .modal__form__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1rem;
  }
  .modal__form__columns > div {
    width: 50%;
  }
}
/*===============================
  Up to desktop
  ===============================*/
@media (max-width: 1023px) {
  .modal {
    position: fixed;
    width: 100%;
  }
  .modal__in {
    padding: 4rem 1rem 1rem;
  }
  .modal__form {
    margin: 0 auto;
    max-width: 30rem;
  }
  .modal__form__info {
    margin-bottom: 1.5rem;
  }
  .modal__close {
    top: 0;
    right: 0;
  }
}
/*===============================
  Page
  ===============================*/
.page {
  position: relative;
}
/*===============================
  Container
  ===============================*/
.container {
  position: relative;
  min-height: 1px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    max-width: 70rem;
  }
}
/*===============================
   Contact Group
  ===============================*/
/*===============================
  Main Section
  ===============================*/
.section-main {
  position: relative;
  overflow: hidden;
}
.section-main__stamp {
  position: absolute;
  top: 2rem;
  left: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.section-main__slider,
.section-main__content {
  position: relative;
}
.section-main__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-main__logo {
  position: relative;
}
.section-main__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.section-main__tel {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.section-main__tel a {
  color: #343235;
}
.section-main__text {
  margin: 0;
}
.section-main__product-params,
.section-main__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-main__price,
.section-main__buy {
  margin-bottom: 0.75rem;
}
.section-main__buy {
  min-width: 14rem;
}
.section-main__copy {
  color: rgba(52, 50, 53, 0.5);
  font-weight: 700;
}
/*===============================
  Desktop
  ===============================*/
@media (min-width: 1024px) {
  .section-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 100vh;
    padding: 5.4vh 7.3vw 7.4vh 9.4vw;
  }
  .section-main__slider,
  .section-main__content {
    width: 38.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-main__logo {
    margin-top: -0.5rem;
  }
  .section-main__contacts {
    padding: 2rem 0 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
  .section-main__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  .section-main__product-params {
    min-width: 15rem;
  }
  .section-main__copy {
    width: 70vh;
    position: absolute;
    left: 3.5vw;
    bottom: 9.4vh;
    -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg) translateY(100%);
        -ms-transform: rotate(-90deg) translateY(100%);
            transform: rotate(-90deg) translateY(100%);
  }
}
/*===============================
  Up to desktop
  ===============================*/
@media (max-width: 1023px) {
  .section-main {
    text-align: center;
    padding: 1rem;
  }
  .section-main__contacts {
    margin-bottom: 1.75rem;
  }
  .section-main__logo {
    margin: 0 auto 1rem;
    width: auto;
    height: 4rem;
  }
  .section-main__stamp {
    width: 4rem;
    height: 4rem;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: -0.9rem;
    top: -0.75rem;
  }
  .section-main__slider {
    margin: 0 auto;
    max-width: 25rem;
  }
  .section-main__product-params,
  .section-main__action {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-main__product-params {
    margin-bottom: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
  .section-main__price {
    margin-bottom: 0;
  }
  .section-main__buy {
    margin-bottom: 1.5rem;
  }
  .section-main__copy {
    margin-top: 2rem;
    font-size: 0.7rem;
  }
}
/*===============================
  Delivery
  ===============================*/
.delivery-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 4rem 0 0;
}
.delivery-logos__img {
  width: 7.5rem;
}
@media (max-width: 1023px) {
  .delivery-logos {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .delivery-logos__img {
    width: 6rem;
  }
}
/*===============================
  Product Slider
  ===============================*/
.product-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.product-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #d6d6d6;
}

.section-main__text p {
    font-family: 'Montserrat';
    font-size: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 5rem;
}

.section-main__text p.title {
  font-size: 5rem;
}

.modal__form__content p.title {
  font-size: 2rem;
}

p.descr {
    font-weight: 500;
    text-transform: uppercase;
    line-height: 2.2rem;
    margin-bottom: 3rem !important;
    font-size: 2rem;
}

p.disclaimer {
    font-size: 12px;
    padding-left: 30px;
    position: relative;
    opacity: 0.8;
}

p.disclaimer:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url("/product/_asset/img/report.svg");
}

ul.variations {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    left: -40px;
    z-index: 2;
    top: calc(2rem + 150px);
}

ul.variations li {
    list-style: none;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: #FFF;
    background-size: contain;
    box-sizing: border-box;
    cursor: pointer;
    border: 3px solid;
}


ul.variations li:last-child {
  margin-bottom: 0;
}

video {
    width: 100%;
    height: 100%;
    background: #000;
}

/*===============================
  Big
  ===============================*/
.product-slider__big {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .product-slider__big {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 8rem;
  }
}
@media (max-width: 1023px) {
  .product-slider__big {
    aspect-ratio: 1 / 1;
  }
}
/*===============================
  Thumbs
  ===============================*/
.product-slider__thumbs {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 6rem;
  margin-top: 2rem;
}
.product-slider__thumbs__slide {
  position: relative;
}
.product-slider__thumbs__slide.swiper-slide-thumb-active:after {
  content: '';
  pointer-events: none;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: solid 3px #343235;
}
@media (max-width: 1023px) {
  .product-slider__thumbs {
    height: 3.5rem;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {

  h1 {
      font-size: 2rem;
      margin: 30px;
  }

  p {
    text-align: left;
  }

  p.descr {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2rem;
    margin-bottom: 2rem !important;
    font-size: 1rem;
  }

  p.title {
      font-size: 2rem !important;
      margin: 30px auto;
  }

  ul.variations {
    display: none;
  }

}