@charset "UTF-8";
:root {
  --wrapper: 10px;
  --font-size-product-cart: 28px;
}
@media (min-width: 768px) {
  :root {
    --wrapper: 30px;
    --font-size: 18px;
    --font-size-product-cart: 36px;
    --gap: 20px;
  }
}
@media (min-width: 1280px) {
  :root {
    --wrapper: 100px;
    --gap: 30px;
  }
}
blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
}
ol,
ul {
  padding: 0;
  list-style: none;
}
cite {
  display: block;
}
a {
  text-decoration: none;
}
button {
  border: none;
  outline: none;
}
html {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  font-style: normal;
  font-weight: 300;
}
.product-set__content,
.wrapper {
  padding-left: var(--wrapper);
  padding-right: var(--wrapper);
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  min-width: 320px;
}
html {
  min-width: 320px;
}
.picture,
.picture img {
  display: block;
}
.picture img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.price {
  display: grid;
  grid-template-columns: -webkit-min-content -webkit-max-content;
  grid-template-columns: min-content max-content;
  -webkit-column-gap: var(--price-gap, 30px);
  column-gap: var(--price-gap, 30px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var("--price", #333);
  line-height: 1em;
}
.price__item--new {
  font-size: 1.33em;
  color: var(--price-new);
}
.price__item--old {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--price-old);
}
.price__item--old:after {
  position: absolute;
  content: "";
  height: 0.05em;
  width: 110%;
  background-color: var(--price-line-del, var(--price-old));
  -webkit-transform: translate(10%, 0.5em) rotate(-25deg);
  -ms-transform: translate(10%, 0.5em) rotate(-25deg);
  transform: translate(10%, 0.5em) rotate(-25deg);
}
.btn {
  width: 100%;
  display: block;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  border: var(--btn-border, none);
  color: var(--btn-text, inherit);
  background: var(--btn-bg, inherit);
  border-radius: var(--btn-radius, 0);
  max-width: var(--btn-max-width, 430px);
  padding: var(--btn-padding, 1.25em);
  font-size: 14px;
}
.btn:hover {
  background: var(--btn-bg-hover, var(--btn-bg));
  -webkit-box-shadow: var(--btn-shadow-hover, none);
  box-shadow: var(--btn-shadow-hover, none);
}
.btn:active {
  background: var(--btn-bg-active, var(--btn-bg));
  -webkit-box-shadow: var(--btn-shadow-active, none);
  box-shadow: var(--btn-shadow-active, none);
}
.btn:focus-visible {
  background: var(--btn-bg-focus, var(--btn-bg));
  -webkit-box-shadow: var(--btn-shadow-focus, none);
  box-shadow: var(--btn-shadow-focus, none);
  outline: var(--btn-outline-focus, none);
  border: var(--btn-border-focus, none);
}
.btn__icon {
  width: 1em;
  height: 1em;
  padding: 0 0.8em;
  -webkit-box-sizing: initial;
  box-sizing: initial;
  fill: inherit;
}
.btn--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.icon {
  width: 2em;
  height: 2em;
}
.icon--size-sm {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.icon--size-xsm {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.icon--size-lg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.icon--hamburger,
.icon--hamburger-skew {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  position: relative;
}
.icon--hamburger-skew span,
.icon--hamburger span {
  display: block;
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: var(--hamburger, #333);
  -webkit-transition: background 0s 0.3s;
  -o-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}
.icon--hamburger-skew span:after,
.icon--hamburger-skew span:before,
.icon--hamburger span:after,
.icon--hamburger span:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 2em;
  left: 0;
  background-color: var(--hamburger, #333);
}
.icon--hamburger-skew span:before,
.icon--hamburger span:before {
  top: 0.5em;
  -webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  -o-transition: top 0.3s 0.3s, transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}
.icon--hamburger-skew span:after,
.icon--hamburger span:after {
  bottom: 0.5em;
  -webkit-transition: bottom 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: bottom 0.3s 0.3s, -webkit-transform 0.3s 0s;
  -o-transition: bottom 0.3s 0.3s, transform 0.3s 0s;
  transition: bottom 0.3s 0.3s, transform 0.3s 0s;
  transition: bottom 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}
.active.icon--hamburger-skew span,
.icon--hamburger.active span {
  background: none;
}
.active.icon--hamburger-skew span:before,
.icon--hamburger.active span:before {
  width: 1.5em;
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
  -o-transition: top 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.active.icon--hamburger-skew span:after,
.icon--hamburger.active span:after {
  width: 1.5em;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: bottom 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: bottom 0.3s 0s, -webkit-transform 0.3s 0.3s;
  -o-transition: bottom 0.3s 0s, transform 0.3s 0.3s;
  transition: bottom 0.3s 0s, transform 0.3s 0.3s;
  transition: bottom 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}
.icon--hamburger-skew span {
  width: 100%;
}
.icon--hamburger-skew span:before {
  top: 0.4em;
  width: 70%;
}
.icon--hamburger-skew span:after {
  bottom: 0.4em;
  width: 120%;
}
.icon--hamburger-skew.active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.icon--hamburger-steps {
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.icon--hamburger-steps .icon__hamburger-line {
  width: 1.1em;
  height: 2px;
  background-color: var(--hamburger, #333);
  border-radius: 10px;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.icon--hamburger-steps .icon__hamburger-line:nth-of-type(2) {
  width: 0.8em;
  -webkit-transform: translateY(0.25em);
  -ms-transform: translateY(0.25em);
  transform: translateY(0.25em);
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.icon--hamburger-steps .icon__hamburger-line:nth-of-type(3) {
  -webkit-transform: translateY(0.5em);
  -ms-transform: translateY(0.5em);
  transform: translateY(0.5em);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.icon--hamburger-steps .icon__hamburger-line:nth-of-type(4) {
  width: 0.8em;
  -webkit-transform: translateY(0.75em);
  -ms-transform: translateY(0.75em);
  transform: translateY(0.75em);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.icon--hamburger-steps.active .icon__hamburger-line:first-of-type {
  width: 0.5em;
  -webkit-transform: translateY(0.3em) rotate(-45deg);
  -ms-transform: translateY(0.3em) rotate(-45deg);
  transform: translateY(0.3em) rotate(-45deg);
}
.icon--hamburger-steps.active .icon__hamburger-line:nth-of-type(2) {
  width: 0.5em;
  -webkit-transform: translate(-0.3em, 0.6em) rotate(-45deg);
  -ms-transform: translate(-0.3em, 0.6em) rotate(-45deg);
  transform: translate(-0.3em, 0.6em) rotate(-45deg);
}
.icon--hamburger-steps.active .icon__hamburger-line:nth-of-type(3) {
  width: 0.5em;
  -webkit-transform: translate(-0.3em, 0.3em) rotate(45deg);
  -ms-transform: translate(-0.3em, 0.3em) rotate(45deg);
  transform: translate(-0.3em, 0.3em) rotate(45deg);
}
.icon--hamburger-steps.active .icon__hamburger-line:nth-of-type(4) {
  width: 0.5em;
  -webkit-transform: translateY(0.6em) rotate(45deg);
  -ms-transform: translateY(0.6em) rotate(45deg);
  transform: translateY(0.6em) rotate(45deg);
}
.icon--close {
  cursor: pointer;
}
.icon--close:after,
.icon--close:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 2px;
  top: 50%;
  right: 0;
  border-radius: 5px;
  background-color: #333;
}
.icon--close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.icon--close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .icon--hamburger-skew span,
  .icon--hamburger-skew span:after,
  .icon--hamburger-skew span:before,
  .icon--hamburger span,
  .icon--hamburger span:after,
  .icon--hamburger span:before {
    height: 3px;
  }
}
.timer {
  font-size: 18px;
  font-weight: 300;
}
.timer__text {
  font-size: 0.5em;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .timer > span {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.sale {
  display: inline-block;
  font-weight: 800;
  font-size: var(--sale-size, 24px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: var(--sale-bg);
  color: var(--sale-c, #fff);
  border-radius: var(--sale-radius);
}
.form {
  font-family: var(--font-family);
  color: var(--form-text, inherit);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
}
.form__btn {
  margin-top: 20px;
  width: 100%;
}
.form__input {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.form__input--icon .form__input-item {
  padding: 15px 15px 15px 42px;
}
.form__input-icon {
  position: absolute;
  left: 15px;
}
.form__input-icon--person,
.form__input-icon--phone {
  width: 12px;
  height: 12px;
}
.form__input-label {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 400;
}
.form__input-item,
.country_select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 18px;
  width: 100%;
  border: 1px solid var(--form-border);
  border-radius: var(--form-radius);
  padding: var(--input-padding, 18px);
  outline: none;
  background: hsla(0, 0%, 100%, 0.4);
  background-color: var(--form-bg);
}
.form__input-item ~ .form__input-icon {
  fill: var(--form-icon, var(--form-border));
}
.form__input-item ~ .form__input-label {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #fff;
  padding: 1px;
}
.form__input-item::-webkit-input-placeholder,
.form__input-item ~ .form__input-label {
  color: var(--form-placeholder);
}
.form__input-item:-ms-input-placeholder,
.form__input-item::-ms-input-placeholder,
.form__input-item ~ .form__input-label {
  color: var(--form-placeholder);
}
.form__input-item::placeholder,
.form__input-item ~ .form__input-label {
  color: var(--form-placeholder);
}
.form__input-item:hover {
  border-color: var(--form-border-hover);
  color: var(--form-text-active, inherit);
  background: hsla(0, 0%, 100%, 0.9);
}
.form__input-item:hover::-webkit-input-placeholder,
.form__input-item:hover ~ .form__input-label {
  color: var(--form-placeholder-hover);
}
.form__input-item:hover:-ms-input-placeholder,
.form__input-item:hover::-ms-input-placeholder,
.form__input-item:hover ~ .form__input-label {
  color: var(--form-placeholder-hover);
}
.form__input-item:hover::placeholder,
.form__input-item:hover ~ .form__input-label {
  color: var(--form-placeholder-hover);
}
.form__input-item:hover ~ .form__input-icon {
  fill: var(--form-icon-hover, var(--form-icon));
}
.form__input-item:active,
.form__input-item:focus {
  border-color: var(--form-border-active);
}
.form__input-item:active ~ .form__input-icon,
.form__input-item:focus ~ .form__input-icon {
  fill: var(--form-icon-active);
}
.form__input-item:active ~ .form__input-label,
.form__input-item:focus ~ .form__input-label {
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
}
.form__input-item:valid {
  border-color: var(--form-filled);
}
.form__input-item:valid ~ .form__input-icon {
  fill: var(--form-filled);
}
.form__input-item:valid ~ .form__input-label {
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--form-placeholder-active);
}
.form__input-item:not(:placeholder-shown):not(:focus):invalid {
  border-color: var(--form-error);
  color: var(--form-error);
}
.form__input-item:not(:placeholder-shown):not(
    :focus
  ):invalid::-webkit-input-placeholder {
  color: var(--form-error);
}
.form__input-item:not(:placeholder-shown):not(
    :focus
  ):invalid:-ms-input-placeholder {
  color: var(--form-error);
}
.form__input-item:not(:placeholder-shown):not(
    :focus
  ):invalid::-ms-input-placeholder {
  color: var(--form-error);
}
.form__input-item:not(:placeholder-shown):not(:focus):invalid::placeholder {
  color: var(--form-error);
}
.form__input-item:not(:placeholder-shown):not(:focus):invalid
  ~ .form__input-icon {
  fill: var(--form-error);
}
.form__input-item:not(:placeholder-shown):not(:focus):invalid
  ~ .form__input-label {
  top: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--form-error);
}
.modal {
  position: fixed;
  visibility: hidden;
  z-index: 10;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: z-index 0s linear;
  -o-transition: z-index 0s linear;
  transition: z-index 0s linear;
  padding: var(--wrapper);
}
.modal.active {
  visibility: initial;
}
.modal.active .modal__window {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: -webkit-transform 0.5s ease 0.1s;
  transition: -webkit-transform 0.5s ease 0.1s;
  -o-transition: transform 0.5s ease 0.1s;
  transition: transform 0.5s ease 0.1s;
  transition: transform 0.5s ease 0.1s, -webkit-transform 0.5s ease 0.1s;
}
.modal__window {
  position: relative;
  max-width: var(--w-modal, 770px);
  left: 0;
  top: 0;
  -webkit-transform: translateY(100vh);
  -ms-transform: translateY(100vh);
  transform: translateY(100vh);
  text-align: center;
  border-radius: var(--modal-radius);
  background-color: #fff;
  -webkit-filter: drop-shadow(20px 23px 52px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(20px 23px 52px rgba(0, 0, 0, 0.15));
  -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__close {
  font-size: var(--modal-close-w);
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (min-width: 768px) {
  .modal__window {
    top: 50%;
  }
  .modal.active .modal__window {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .modal__content {
    padding: 100px 70px 30px;
  }
  .modal__window {
    text-align: left;
    margin: 0 auto;
  }
}
.modal-notification {
  position: fixed;
  visibility: hidden;
  padding: 20px 34px 20px 17px;
  margin-top: 40px;
  top: 80px;
  right: 0;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  max-width: 360px;
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
  transform: translateX(120%);
  -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;
  z-index: 2;
}
.modal-notification.active {
  visibility: initial;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s ease-in 0.1s;
  transition: -webkit-transform 0.5s ease-in 0.1s;
  -o-transition: transform 0.5s ease-in 0.1s;
  transition: transform 0.5s ease-in 0.1s;
  transition: transform 0.5s ease-in 0.1s, -webkit-transform 0.5s ease-in 0.1s;
}
.modal-notification__close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.notification {
  font-size: 14px;
  position: relative;
  font-family: Roboto, Arial, sans-serif;
}
.notification--black {
  background-color: #fff;
  color: #fff;
  overflow: hidden;
}
.notification--black .notification__wrap {
  padding: 9px 20px;
  margin-top: -66px;
  -webkit-transition: margin-top 0.8s ease-in-out;
  -o-transition: margin-top 0.8s ease-in-out;
  transition: margin-top 0.8s ease-in-out;
}
.notification--black.active .notification__wrap {
  margin-top: 0;
}
.notification--black .notification__title span {
  color: #000;
}
.notification__close {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  font-size: 8px;
}
@media (min-width: 414px) {
  .notification__wrap {
    display: grid;
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    column-gap: 20px;
  }
}
.product-set {
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--bg);
  color: var(--text-color);
}
.product-set,
.product-set__list {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-set__list {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 30px;
}
.product-set__item {
  text-align: center;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: var(--card-shadow);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  border-radius: var(--card-radius);
  background: var(--card-bg);
}
.product-set__item-h {
  font-size: 27px;
  text-transform: uppercase;
  color: var(--header-color);
  position: relative;
  z-index: 2;
  margin-top: 10px;
}
.product-set__item-pic {
  height: 200px;
  width: 100%;
  margin-top: 40px;
}
.product-set__item-price {
  margin-top: 50px;
  font-size: 36px;
  font-weight: 400;
}
.product-set__item-price .price__item--new {
  color: var(--accent);
}
.product-set__item-price .price__item--old {
  color: var(--price-old);
}
.product-set__item-price .price__item--old:after {
  border-color: var(--accent);
}
.product-set__item-btn {
  font-weight: 900;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--btn-radius);
  border-color: var(--btn-border-color);
  color: var(--btn-color);
}
.product-set__item-btn .btn__icon {
  fill: var(--btn-color);
}
.product-set__item-btn:hover {
  background: var(--btn-hover);
  color: var(--btn-hover-color);
  border-color: transparent;
}
.product-set__item-btn:hover .btn__icon {
  fill: var(--btn-hover-icon);
  opacity: 0.5;
}
.product-set__item-coner {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}
.product-set__item-coner:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: var(--coner-bg);
  width: 300%;
  height: 300%;
  z-index: -1;
  -webkit-transform: rotate(45deg) translateY(-80%);
  -ms-transform: rotate(45deg) translateY(-80%);
  transform: rotate(45deg) translateY(-80%);
}
.product-set__item-coner svg {
  fill: #fff;
  width: 1.2em;
  height: 1.2em;
  padding: 1.2em;
}
.product-set__item--accent {
  background: var(--accent-card-bg);
  border: 2px solid var(--accent-border);
  -webkit-box-shadow: var(--accent-box-shadow);
  box-shadow: var(--accent-box-shadow);
}
.product-set__item--accent .product-set__item-btn {
  background: var(--accent-btn-bg);
  -webkit-box-shadow: var(--accent-btn-shadow);
  box-shadow: var(--accent-btn-shadow);
  color: var(--accent-btn-color);
}
.product-set__item--accent .product-set__item-btn .btn__icon {
  fill: var(--accent-btn-color);
}
.product-set__item--accent .product-set__item-h {
  color: var(--accent-header-color);
}
.product-set__item--accent .price__item--new {
  color: var(--accent-price);
}
.product-set__item--accent .price__item--old:after {
  border-color: var(--accent-price);
}
.product-set--slim4vit {
  --header-color: #72530d;
  --bg: #fbfbfb;
  --text-color: #222;
  --card-bg: #fff;
  --card-radius: 20px;
  --card-shadow: 0px 12.2122px 18.3184px hsla(0, 0%, 77%, 0.35);
  --accent: #eaa300;
  --accent-price: #eaa300;
  --accent-border: #eaa300;
  --accent-box-shadow: 0px 15px 30px rgba(209, 148, 8, 0.25);
  --accent-btn-bg: linear-gradient(180deg, #ffc849, #ffb60f);
  --accent-btn-shadow: 0px 4px 0px #d19408;
  --accent-card-bg: linear-gradient(180deg, #f8f8f6, #e6e6e6);
  --accent-btn-color: #72530d;
  --accent-header-color: #72530d;
  --coner-bg: linear-gradient(180deg, #ffcb53, #ffb50c);
  --price-old: #797979;
  --btn-radius: 20px;
  --btn-border-color: #d19408;
  --btn-color: #72530d;
  --btn-hover: linear-gradient(180deg, #ffcb53, #ffb50c);
  --btn-hover-color: #72530d;
  --btn-hover-icon: #72530d;
}
.product-set--prostatricum {
  --header-color: #222;
  --bg: #ececec;
  --text-color: #fff;
  --card-bg: #fff;
  --card-radius: 0;
  --accent: #70dd7f;
  --accent-price: #70dd7f;
  --accent-box-shadow: 0px 15px 30px rgba(54, 95, 112, 0.35);
  --accent-card-bg: #2f5063;
  --accent-btn-bg: #01a919;
  --accent-btn-color: #fff;
  --accent-btn-shadow: none;
  --accent-header-color: #fff;
  --coner-bg: #9b4150;
  --price-old: #9cb7c7;
  --btn-radius: 0;
  --btn-border-color: #01a919;
  --btn-color: #01a919;
  --btn-hover: #01a919;
  --btn-hover-color: #fff;
  --btn-hover-icon: #fff;
}
.product-set--eretron {
  --header-color: #fff;
  --bg: #222;
  --bg-img: url(../img/product-set/img/eretron/bg.jpg);
  --text-color: #fff;
  --card-bg: rgba(0, 0, 0, 0.5);
  --card-radius: 5px;
  --accent: #6293ff;
  --accent-price: #0039b9;
  --accent-box-shadow: none;
  --accent-card-bg: #fff;
  --accent-btn-bg: #0039b9;
  --accent-btn-color: #fff;
  --accent-btn-shadow: none;
  --accent-header-color: #0039b9;
  --coner-bg: #0039b9;
  --price-old: #797979;
  --btn-radius: 20px;
  --btn-border-color: #6293ff;
  --btn-color: #fff;
  --btn-hover: #0039b9;
  --btn-hover-color: #fff;
  --btn-hover-icon: #fff;
}
@media (min-width: 768px) {
  .product-set {
    padding-top: 70px;
    padding-bottom: 70px;
    font-size: 24px;
    background-image: var(--bg-img);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .product-set__item {
    padding: 50px 30px;
  }
  .product-set__item-h {
    font-size: 27px;
    font-size: 36px;
  }
  .product-set__item-pic {
    margin-top: 50px;
    height: 290px;
  }
  .product-set__item-price {
    margin-top: 55px;
    font-size: 48px;
  }
  .product-set__item-btn {
    margin-top: 40px;
  }
}
@media (min-width: 1280px) {
  .product-set {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .product-set__list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .product-set__item {
    padding: 30px;
  }
  .product-set__item-pic {
    margin-top: 60px;
    height: 330px;
  }
  .product-set__item-price {
    margin-top: 80px;
  }
}
@use "sass:map";
:root {
  --wrapper: 20px;
  --font-size: 16px;
  --font-size-h1: 24px;
  --font-size-h2: 18px;
  --font-size-small: 10px;
  --hamburger: #fff;
  --w-modal: 1010px;
  --modal-close-w: 12px;
  --text-accent: #1e5084;
  --text-del: #d2d2d2;
  --scroll-line: #fff;
  --scroll-bar: #333;
  --sale-bg: #f56538;
  --sale-radius: 0px 5px 5px 0px;
  --price-gap: 10px;
  --input-padding: 12px;
  --btn-bg: #f56538;
  --btn-text: #fff;
  --btn-radius: 5px;
  --btn-padding: 16px;
  --btn-bg-hover: #ff3d00;
  --btn-bg-active: #ff3d00;
  --btn-outline-focus: 2px solid #cd0000;
  --btn-max-width: 375px;
}
.form {
  --form-bg: #fff;
  --form-border: #d2d2d2;
  --form-border-hover: #6c6c6c;
  --form-border-active: #333;
  --form-filled: #02d663;
  --form-error: #ce1800;
  --form-radius: 6px;
  --form-placeholder: #6c6c6c;
  --form-placeholder-hover: #333;
  --form-placeholder-active: #02d663;
  --form-check-border-hover: #333;
  --form-check-border-checked: #333;
  --form-check-bg-checked: #333;
  --form-check-yes-checked: #fff;
}
.modal {
  --modal-radius: 0;
}
.price {
  --price-new: #333;
  --price-old: #d3d3d3;
}
@media (min-width: 414px) {
  :root {
    --wrapper: 20px;
    --input-padding: 18px;
    --btn-padding: 21px;
    --price-gap: 20px;
  }
}
@media (min-width: 768px) {
  :root {
    --wrapper: 30px;
  }
}
@media (min-width: 1920px) {
  :root {
    --font-size-h1: 36px;
    --font-size-h2: 24px;
    --wrapper: 195px;
  }
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  position: relative;
  scrollbar-color: var(--scroll-line, #fff) var(--scroll-bar, #333);
  scrollbar-width: thin;
  background: var(--bg, #fff);
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
a {
  color: inherit;
}
p {
  margin-top: 1.2em;
  line-height: 1.4em;
}
cite {
  font-style: normal;
}
.header {
  margin-bottom: 20px;
}
.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.nowrap-text,
.visually-hidden {
  white-space: nowrap;
}
.text-light {
  color: #fff;
}
.text-del {
  color: var(--text-del, #333);
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.btn {
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.geberich {
  position: fixed;
  z-index: 2;
  right: 0;
  top: 50%;
  background-color: #f74444;
  --fill-text: #fff;
  --display: none;
  width: 38px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.geberich-icon {
  display: block;
  width: 100px;
  height: 18px;
  margin: 10px 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
[data-modal-open] {
  cursor: pointer;
}
@-webkit-keyframes a {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes a {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 9em;
  -webkit-box-shadow: inset 1px 1px 10px #f3faf7;
  box-shadow: inset 1px 1px 10px #f3faf7;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-bar, #333);
}
::-webkit-scrollbar-button:vertical:end:increment,
::-webkit-scrollbar-button:vertical:start:decrement {
  background: none;
}
::-webkit-scrollbar-button:horizontal:end:increment,
::-webkit-scrollbar-button:horizontal:start:decrement {
  background: none;
}
@media (min-width: 768px) {
  .geberich {
    right: -50px;
    width: auto;
    --display: block;
  }
  .geberich-icon {
    width: 117px;
    height: 23px;
    margin: 14px;
  }
  ::-webkit-scrollbar {
    width: 10px;
    height: 9px;
  }
  .bg-leafs {
    position: relative;
  }
  .bg-leafs:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url(../img/problems/img/leaf-green.svg);
    background-position: 125% 90%;
    background-size: 290px 280px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}
@media (min-width: 1920px) {
  .bg-leafs:before {
    background-image: url(../img/problems/img/leaf-green.svg),
      url(../img/problems/img/leaf-blue-2.svg);
    background-position: 105% 90%, 0 30%;
    background-size: 290px 280px, 243px 455px;
  }
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
}
html {
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
}
.h1 {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: var(--font-size-h1);
  line-height: 1.3em;
  text-transform: uppercase;
}
.h1,
.h2 {
  letter-spacing: 0.01em;
}
.h2 {
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 700;
  font-size: var(--font-size-h2);
}
.btn {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
}
.small,
small {
  font-size: var(--font-size-small);
}
.text-accent {
  color: var(--text-accent);
}
.text-white {
  color: #fff;
}
.form-box {
  background-color: #fff;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding-bottom: 29px;
}
.form-box__offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 10px;
}
.form-box__date {
  font-family: Montserrat, Arial, sans-serif;
  text-align: center;
  background-color: #1e5084;
  color: #fff;
  padding-top: 27px;
  border-radius: 10px;
  margin-bottom: 27px;
  position: relative;
}
.form-box__date:after {
  content: "";
  position: absolute;
  width: 96%;
  height: 27px;
  left: 2%;
  bottom: 0;
  background-color: #1e5084;
  -webkit-transform: translateY(97%);
  -ms-transform: translateY(97%);
  transform: translateY(97%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.form-box__date-title {
  font-size: 18px;
  text-transform: uppercase;
}
.form-box__date-numbers {
  font-size: 24px;
}
.form-box__sale {
  padding: 16px 11px;
  margin-right: 27px;
}
.form-box__price {
  font-size: 36px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
}
.form-box__price .price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.form-box__price .price__item--new {
  font-weight: 700;
}
.form-box__item {
  margin-top: 13px;
  padding-left: var(--wrapper);
  padding-right: var(--wrapper);
  --input-padding: 17px;
  --btn-padding: 21px;
}
.form-box .form-box__checkbox {
  font-size: 10px;
}
.form-box .form-box__btn {
  margin-top: 30px;
}
@media (min-width: 414px) {
  .form-box {
    padding-bottom: 35px;
  }
  .form-box__sale {
    padding: 16px 27px;
    margin-right: 40px;
  }
  .form-box .form-box__btn {
    margin: 26px auto 0;
  }
}
@media (min-width: 768px) {
  .form-box__sale {
    padding: 20px 14px;
  }
  .form-box__item {
    margin-top: 17px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .form-box .form-box__btn {
    margin-top: 35px;
  }
}
@media (min-width: 1920px) {
  .form-box__item {
    margin-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.gallery__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.gallery__list::-webkit-scrollbar {
  height: 0;
}
.gallery__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  scroll-snap-align: center;
  position: relative;
  width: 100%;
}
.gallery__item-title {
  font-size: 24px;
  font-weight: 700;
}
.gallery__item-pic {
  width: 280px;
  height: 280px;
}
.gallery__toggle {
  text-align: center;
  margin-top: 20px;
}
.gallery__btn {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gallery-btn, #f8fbff);
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}
.gallery__btn:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: 2px solid var(--gallery-btn, #f8fbff);
  border-left: 2px solid var(--gallery-btn, #f8fbff);
  top: 50%;
  left: 50%;
}
.gallery__btn:hover {
  background-color: var(--gallery-btn-hover, #fff);
}
.gallery__btn:hover:after {
  border-color: var(--gallery-btn-hover, #1e5084);
}
.gallery__btn:active {
  background-color: var(--gallery-btn-bg-active, #f8fbff);
}
.gallery__btn:focus-visible {
  border-color: #f56538;
}
.gallery__btn--prev {
  margin-right: 20px;
}
.gallery__btn--prev:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.gallery__btn--next:after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  -ms-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.menu {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 3;
}
.menu__wrap {
  width: 100%;
  max-width: none;
  background-color: #1e5084;
  padding-top: 14px;
  padding-bottom: 14px;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: -webkit-min-content 1fr -webkit-min-content;
  grid-template-columns: min-content 1fr min-content;
  grid-template-areas: "a b c" "d d d";
}
.menu__nav {
  overflow-y: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  grid-area: d;
  align-self: flex-start;
  width: 100vw;
  position: relative;
  left: -20px;
}
.menu__logo {
  width: 130px;
  height: 21px;
  grid-area: a;
  --fill: #f8fbff;
}
.menu__hamburger {
  grid-area: b;
  margin-left: auto;
  margin-right: 45px;
  font-size: 18px;
}
.menu__hamburger:focus-visible {
  outline: 1px solid #f56538;
}
.menu__cart {
  padding: 6px;
  width: auto;
  grid-area: c;
}
.menu__cart-icon {
  display: block;
  width: 20px;
  height: 20px;
}
.menu__cart:focus-visible {
  background-color: #ff3d00;
}
.menu__links {
  margin-top: 10px;
  border-top: 1px solid #f8fbff;
  font-family: Montserrat, Arial, sans-serif;
}
.menu__links-item {
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 20px;
  color: #fff;
  border-bottom: 1px solid #f8fbff;
}
.menu__links-item.active {
  background-color: #fff;
  color: var(--text-accent);
}
.menu__btn {
  max-width: 280px;
  margin: 40px auto 25px;
}
.menu.active {
  background: rgba(51, 51, 51, 0.2);
  height: 100vh;
}
.menu.active .menu__nav {
  height: 460px;
  opacity: 1;
}
.menu.active .menu__cart {
  display: none;
}
.menu.active .menu__hamburger {
  margin-right: 45px;
}
@media (min-width: 768px) {
  .menu__logo {
    width: 160px;
    height: 26px;
  }
  .menu__nav {
    left: -30px;
  }
}
@media (min-width: 1920px) {
  .menu__wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 0 40px;
    grid-template-columns: -webkit-min-content 1fr -webkit-max-content;
    grid-template-columns: min-content 1fr max-content;
    grid-template-areas: "a e f";
  }
  .menu__links {
    grid-area: e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: 142px;
    margin-right: 120px;
    margin-top: 0;
    border: none;
  }
  .menu__links li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .menu__links-item {
    border: none;
    padding: 33px 10px;
  }
  .menu__btn {
    grid-area: f;
    min-width: 255px;
    margin: 0;
    padding: 12px;
  }
  .menu__logo {
    width: 230px;
    height: 36px;
  }
  .menu__nav {
    display: contents;
    height: auto;
    width: auto;
    left: auto;
  }
  .menu__cart,
  .menu__hamburger {
    display: none;
  }
  .menu.active {
    background: initial;
    height: auto;
  }
}
.about {
  background-color: #f8fbff;
}
.about__content {
  padding-top: 80px;
  background-color: #1e5084;
  color: #fff;
  padding-left: var(--wrapper);
  padding-right: var(--wrapper);
  margin-bottom: 86px;
}
.about__pic {
  height: 270px;
  -webkit-transform: translate(13px, 70px);
  -ms-transform: translate(13px, 70px);
  transform: translate(13px, 70px);
  margin-top: -27px;
}
.about__list {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}
.about__list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  line-height: 1.8;
}
.about__list li:before {
  content: "";
  position: relative;
  width: 16px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-right: 11px;
  margin-top: 7px;
}
.about__form {
  margin-bottom: 34px;
}
@media (min-width: 414px) {
  .about__header,
  .about__list {
    width: 66%;
  }
  .about__pic {
    height: 314px;
    margin-top: -190px;
    -webkit-transform: translate(var(--wrapper), 60px);
    -ms-transform: translate(var(--wrapper), 60px);
    transform: translate(var(--wrapper), 60px);
  }
  .about__pic img {
    -o-object-position: right;
    object-position: right;
  }
  .about__content {
    margin-bottom: 81px;
  }
  .about__form {
    margin-left: var(--wrapper);
    margin-right: var(--wrapper);
    margin-bottom: 52px;
  }
}
@media (min-width: 768px) {
  .about__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .about__content {
    padding-top: 107px;
    margin-bottom: 0;
    padding-bottom: 23px;
  }
  .about__form {
    margin: 126px 20px 57px;
  }
  .about__pic {
    height: 391px;
    margin-top: 0;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: none;
  }
  .about__pic img {
    -o-object-position: center;
    object-position: center;
  }
  .about__list {
    font-size: 16px;
  }
  .about__header,
  .about__list {
    width: auto;
  }
  .about__pic {
    margin-top: 50px;
  }
}
@media (min-width: 1920px) {
  .about {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(24%, #1e5084),
      color-stop(0, #f8fbff)
    );
    background: -webkit-linear-gradient(left, #1e5084 24%, #f8fbff 0);
    background: -o-linear-gradient(left, #1e5084 24%, #f8fbff 0);
    background: linear-gradient(90deg, #1e5084 24%, #f8fbff 0);
  }
  .about__content {
    margin-top: 110px;
  }
  .about__wrap {
    padding-left: var(--wrapper);
    padding-right: var(--wrapper);
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 2fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    min-height: 970px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about__form {
    margin: 90px 0 0;
    max-width: 360px;
  }
  .about__form-item {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 32px;
  }
  .about__content {
    padding: 38px 0 0 390px;
    margin-bottom: 0;
    background-color: initial;
    background-image: url(../img/about/img/happy-p-lg.png);
    background-size: 489px 732px;
    background-position: left 0;
    background-repeat: no-repeat;
    color: #333;
  }
  .about__list {
    font-size: 18px;
    margin-top: 30px;
  }
  .about__list li:before {
    border-color: #333;
  }
  .about__pic {
    height: 500px;
    margin-top: 10px;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  .about__pic img {
    -o-object-position: right;
    object-position: right;
  }
}
.problems__thinking {
  background-color: #f8fbff;
  padding-bottom: 42px;
}
.problems__thinking.is-active .problems__thinking-content,
.problems__thinking.is-active .problems__thinking-pic {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.problems__thinking-pic {
  height: 375px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 42px;
}
.problems__thinking-pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}
.problems__fix {
  padding-top: 40px;
  overflow: hidden;
}
.problems__fix.is-active .problems__fix-content,
.problems__fix.is-active .problems__fix-pic {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.problems__fix-pic {
  height: 410px;
  min-width: 385px;
  max-width: 510px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 18px;
}
.problems__fix-pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  margin-left: -60px;
}
.problems__fix-list {
  font-weight: 700;
  margin-top: 1em;
  line-height: 1.8;
  font-size: 18px;
}
.problems__fix-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.problems__fix-list li:before {
  content: "✖";
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .problems {
    background-image: url(../img/problems/img/leaf-green.svg);
    background-position: 106% 90%;
    background-size: 240px 250px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .problems__thinking {
    background-color: initial;
  }
  .problems__thinking-pic {
    height: 420px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 0;
  }
  .problems__thinking-content {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    padding: 56px 44px;
    background-color: #f8fbff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .problems__fix {
    padding-top: 34px;
  }
  .problems__fix-pic {
    height: 442px;
    margin: 70px auto 0;
  }
  .problems__fix-pic img {
    -o-object-fit: contain;
    object-fit: contain;
  }
  .problems__fix-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1920px) {
  .problems {
    padding-top: 1px;
    background-image: url(../img/problems/img/leaf-green.svg),
      url(../img/problems/img/leaf-blue.svg);
    background-position: 100% 90%, -3% 0;
    background-size: 302px 444px, 321px 362px;
  }
  .problems__thinking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .problems__thinking-content {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
    right: -130px;
    padding: 87px 65px;
    margin-top: 8px;
  }
  .problems__thinking-pic {
    width: 620px;
    height: 727px;
    margin-left: 0;
    margin-right: 0;
  }
  .problems__fix-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .problems__fix-pic {
    margin: 33px 0 0;
    height: 666px;
    width: 100%;
    max-width: none;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}
.composition.is-active .composition__bottom-content,
.composition.is-active .composition__pic,
.composition.is-active .composition__top-content {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.composition__top {
  background-color: #f8fbff;
  padding-top: 39px;
  padding-bottom: 160px;
}
.composition__bottom {
  background-color: #1e5084;
  color: #fff;
}
.composition__gallery {
  margin-bottom: 40px;
  margin-top: -130px;
}
.composition__gallery .gallery__item {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity ease-out 0.5s;
  transition: opacity 0.5s ease-out;
  display: grid;
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
}
.composition__gallery .gallery__item-pic {
  margin-left: auto;
  margin-right: auto;
}
.composition__gallery .gallery__item-text {
  margin-top: 10px;
}
.composition__gallery .gallery__item.hide {
  opacity: 0;
  position: absolute;
}
.composition__gallery .gallery__toggle {
  margin-top: 0;
}
.composition__gallery .gallery__list {
  min-height: 420px;
}
.composition__bottom {
  padding-top: 1px;
  padding-bottom: 40px;
}
.composition__pic {
  display: none;
}
.composition__btn {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 414px) {
  .composition__top {
    padding-top: 50px;
    padding-bottom: 135px;
  }
  .composition__gallery .gallery__list {
    min-height: 400px;
  }
}
@media (min-width: 768px) {
  .composition__top {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .composition__top .product-set__content,
  .composition__top .wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .composition__top-content {
    max-width: 750px;
  }
  .composition__bottom {
    padding-top: 26px;
    padding-bottom: 40px;
  }
  .composition__bottom .product-set__content,
  .composition__bottom .wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .composition__btn {
    margin-left: 270px;
    max-width: 250px;
  }
  .composition__gallery {
    margin-top: -80px;
  }
  .composition__gallery .gallery__item {
    display: grid;
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    -webkit-column-gap: 20px;
    column-gap: 20px;
  }
  .composition__gallery .gallery__item-content {
    padding-top: 86px;
  }
  .composition__gallery .gallery__item-pic {
    width: 253px;
    height: 253px;
  }
  .composition__gallery .gallery__list {
    min-height: 0;
  }
  .composition__gallery .gallery__toggle {
    margin-top: -50px;
    margin-left: 270px;
    text-align: left;
  }
}
@media (min-width: 1920px) {
  .composition__top {
    padding-top: 111px;
    padding-bottom: 121px;
  }
  .composition__bottom .product-set__content,
  .composition__bottom .wrapper,
  .composition__top .product-set__content,
  .composition__top .wrapper {
    max-width: 1920px;
    padding-left: calc(130px + var(--wrapper));
    margin-right: auto;
    margin-left: auto;
  }
  .composition__bottom .product-set__content,
  .composition__bottom .wrapper {
    padding-right: calc(130px + var(--wrapper));
    display: grid;
    grid-template-columns: 3fr 2fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }
  .composition__btn {
    max-width: 360px;
    margin-left: 390px;
    margin-top: 60px;
  }
  .composition__pic {
    display: block;
    width: 390px;
    margin-top: -290px;
    margin-left: 60px;
  }
  .composition__gallery .gallery__item {
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }
  .composition__gallery .gallery__item-content {
    padding-top: 110px;
  }
  .composition__gallery .gallery__item-pic {
    width: 358px;
    height: 358px;
  }
  .composition__gallery .gallery__toggle {
    margin-left: 390px;
    margin-top: -110px;
  }
}
.expert {
  padding-bottom: 85px;
}
.expert.is-active .expert__content,
.expert.is-active .expert__pic {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.expert__pic {
  margin-left: -20px;
  margin-right: -20px;
  height: 375px;
}
.expert__pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.expert__content {
  background-color: #f8fbff;
  padding: 33px 20px;
  margin-left: -20px;
  margin-right: -20px;
}
.expert__quote {
  position: relative;
}
.expert__quote-cite {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-style: normal;
}
@media (min-width: 414px) {
  .expert {
    padding-bottom: 78px;
  }
  .expert__content {
    padding-top: 48px;
  }
  .expert__quote-cite {
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  .expert {
    padding-bottom: 47px;
  }
  .expert__pic {
    margin-left: -30px;
    margin-right: -30px;
    height: 420px;
  }
  .expert__content {
    margin-top: -40px;
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .expert__content-list {
    margin-top: 30px;
  }
  .expert__quote-cite {
    margin-top: 27px;
  }
  .expert__quote-cite span {
    margin-top: 10px;
  }
}
@media (min-width: 1920px) {
  .expert {
    padding-bottom: 87px;
    padding-top: 87px;
  }
  .expert__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }
  .expert__content {
    margin-top: 0;
    padding: 95px 65px;
    width: 100%;
    position: relative;
    right: -130px;
  }
  .expert__pic {
    margin-left: 0;
    margin-right: 0;
    height: 727px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .expert__pic img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left center;
    object-position: left center;
  }
  .expert__quote {
    margin-top: 27px;
  }
  .expert__quote-cite {
    margin-top: 20px;
  }
}
.study {
  background-color: #f8fbff;
  padding-bottom: 50px;
}
.study.is-active .study__bottom,
.study.is-active .study__top {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.study__pic {
  margin-left: -20px;
  margin-right: -20px;
  height: 375px;
}
.study__pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.study__content {
  padding-top: 30px;
  padding-bottom: 50px;
}
.study__content .h2 {
  margin-top: 10px;
}
.study__content-list {
  width: 100vw;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}
.study__content-item {
  padding: 20px;
  margin-top: 20px;
  background-color: #f8fbff;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.study__content-item-icon {
  width: 24px;
  height: 24px;
}
.study__content-item p {
  margin-top: 0;
}
.study__bottom-pic {
  width: 100vw;
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
  max-height: 575px;
}
.study__bottom-pic img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
}
@media (min-width: 414px) {
  .study__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .study__content-list {
    width: auto;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: none;
  }
}
@media (min-width: 768px) {
  .study {
    padding-bottom: 40px;
  }
  .study__pic {
    margin-left: -30px;
    margin-right: -30px;
    height: 420px;
  }
  .study__bottom,
  .study__top {
    z-index: 1;
    position: relative;
  }
  .study__content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .study__content-item {
    display: grid;
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    -webkit-column-gap: 10px;
    column-gap: 10px;
    padding: 43px 48px;
  }
  .study__bottom-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .study__bottom-pic {
    height: 435px;
    width: auto;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: none;
  }
}
@media (min-width: 1920px) {
  .study {
    padding-top: 80px;
    padding-bottom: 58px;
  }
  .study__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .study__content-list {
    margin-top: 40px;
  }
  .study__pic {
    margin-left: 0;
    margin-right: 0;
    height: 727px;
  }
  .study__pic img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
  .study__bottom {
    padding-top: 28px;
    padding-bottom: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .study__bottom-pic {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    height: 575px;
  }
}
.review {
  background-color: #1e5084;
  padding-top: 40px;
  padding-bottom: 40px;
}
.review.is-active .review__wrap {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.review .h1 {
  color: #fff;
}
.review__gallery {
  background-color: #fff;
  margin-top: 26px;
  padding: 18px 20px 36px;
  --gallery-btn: #1e5084;
}
.review__gallery .gallery__item {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity ease-out 0.5s;
  transition: opacity 0.5s ease-out;
}
.review__gallery .gallery__item.hide {
  opacity: 0;
  position: absolute;
}
.review__gallery cite {
  margin-top: 20px;
}
.review__pic {
  margin-top: 40px;
}
.review__btn {
  margin-top: 20px;
}
@media (min-width: 414px) {
  .review__gallery {
    margin-top: 37px;
  }
  .review__btn {
    margin: 10px auto 0;
  }
}
@media (min-width: 768px) {
  .review__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    max-width: 900px;
  }
  .review .h1 {
    color: inherit;
    padding-right: 10px;
  }
  .review__btn {
    margin: -80px auto 20px;
    width: 90%;
    position: relative;
  }
  .review__content {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 40px 20px;
    margin-right: -100px;
  }
  .review__gallery {
    padding: 0;
    margin-top: 10px;
  }
  .review__pic {
    height: 600px;
    margin-top: 0;
  }
  .review__pic img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (min-width: 1920px) {
  .review {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url(../img/review/img/leaf-white.svg);
    background-position: -3% 20%;
    background-size: 334px 368px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .review__wrap {
    max-width: 1920px;
  }
  .review__content {
    margin-right: 0;
    -webkit-transform: translateX(130px);
    -ms-transform: translateX(130px);
    transform: translateX(130px);
    padding: 57px 65px 70px;
  }
  .review__pic {
    height: 727px;
    max-width: 620px;
  }
  .review__pic img {
    -o-object-position: left;
    object-position: left;
  }
  .review__gallery {
    margin-top: 24px;
  }
  .review__gallery .gallery__toggle {
    text-align: left;
    margin-top: 43px;
  }
  .review__btn {
    margin: -110px auto 50px 130px;
  }
}
.reasons {
  background: #f8fbff;
  padding-top: 33px;
  padding-bottom: 50px;
}
.reasons.is-active .reasons__wrap {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.reasons h2 {
  margin-top: 7px;
}
.reasons__list {
  background-color: #fff;
  padding: 20px 20px 60px;
  margin: 40px -20px 0;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  color: #1e5084;
  font-weight: 700;
  font-size: 18px;
}
.reasons__item {
  margin-top: 37px;
}
.reasons__item-icon {
  width: 50px;
  height: 50px;
  display: block;
  --stroke-color: #1e5084;
}
.reasons__item-text {
  display: block;
  margin-top: 20px;
}
@media (min-width: 414px) {
  .reasons__list {
    margin-top: 37px;
    padding-top: 1px;
    padding-bottom: 33px;
  }
}
@media (min-width: 768px) {
  .reasons__wrap {
    max-width: 900px;
  }
  .reasons__list {
    padding: 10px 40px 40px;
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
    column-gap: 20px;
  }
  .reasons__item {
    margin-top: 32px;
  }
  .reasons__item:first-child,
  .reasons__item:nth-of-type(4) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .reasons__item:last-child,
  .reasons__item:nth-of-type(3) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (min-width: 1920px) {
  .reasons__wrap {
    max-width: 1920px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .reasons header {
    margin-bottom: 40px;
  }
  .reasons__list {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 0;
    padding: 60px 80px 80px;
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }
  .reasons__item {
    margin-top: 50px;
  }
  .reasons__content {
    width: 490px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .reasons__content:after {
    position: absolute;
    content: "";
    width: 222px;
    height: 155px;
    background-image: url(../img/reasons/img/leaf.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    right: -170px;
    bottom: -70px;
  }
}
.to-take {
  padding-top: 40px;
}
.to-take.is-active .to-take__wrap {
  -webkit-animation: a 1s both;
  animation: a 1s both;
}
.to-take__list {
  background-color: #f8fbff;
  padding: 20px 20px 43px;
  margin: 30px -20px 12px;
  color: #1e5084;
  font-size: 18px;
  font-weight: 700;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  --stroke-color: #1e5084;
}
.to-take__item {
  margin-top: 18px;
  display: grid;
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}
.to-take__item-icon {
  width: 24px;
  height: 24px;
}
.to-take__pic {
  margin-left: -70px;
  margin-right: -20px;
}
.to-take__pic img {
  -o-object-position: bottom center;
  object-position: bottom center;
  height: 362px;
}
@media (min-width: 414px) {
  .to-take {
    padding-top: 40px;
  }
  .to-take__list {
    margin-bottom: 73px;
  }
}
@media (min-width: 768px) {
  .to-take {
    background-image: url(../img/problems/img/leaf-blue-2.svg);
    background-position: 110% 80%;
    background-size: 200px 455px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .to-take__wrap {
    max-width: 900px;
  }
  .to-take__list {
    margin: 20px 0 43px;
    padding-left: 45px;
  }
  .to-take__content-text {
    background-color: #fff;
  }
  .to-take__pic img {
    height: 512px;
  }
}
@media (min-width: 1920px) {
  .to-take {
    background-position: 104% 80%;
    padding-top: 77px;
  }
  .to-take__wrap {
    max-width: 1920px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .to-take__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 620px;
  }
  .to-take__content-text {
    margin-top: 30px;
  }
  .to-take__list {
    padding-top: 30px;
    margin-top: 40px;
  }
  .to-take__pic img {
    height: 800px;
  }
}
.purchase__top {
  background-color: #1e5084;
  color: #fff;
  text-align: center;
  padding-top: 141px;
  padding-bottom: 34px;
  background-image: url(../img/purchase/img/heart.png);
  background-position: center -260px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.purchase__order {
  padding: 40px 20px 10px;
}
.purchase__order-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.purchase__order-slogan {
  margin-top: 12px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: #1e5084;
}
.purchase__order-logo {
  width: 135px;
}
.purchase__order-pic {
  margin-top: 30px;
  position: relative;
}
.purchase__order-pic2 {
  display: none;
}
.purchase__order-img {
  height: 320px;
  margin-top: 14px;
  margin-left: 35px;
}
.purchase__order-form {
  margin: 26px -20px;
}
.purchase__order-sale {
  width: 130px;
  height: 130px;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  --sale-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 60px;
}
.purchase__order-sale__wrap {
  margin: auto;
  padding: 20px;
}
.purchase__order-sale-procent {
  display: block;
  font-size: 24px;
  margin-top: 5px;
}
@media (min-width: 414px) {
  .purchase__top {
    padding-top: 122px;
    padding-bottom: 44px;
    background-position: center -420px;
  }
  .purchase__order-img {
    height: 360px;
    margin-top: 14px;
    margin-left: 0;
    margin-right: 60px;
  }
  .purchase__order-sale {
    top: 40px;
  }
  .purchase__order-form {
    margin: 30px 0;
  }
}
@media (min-width: 768px) {
  .purchase__top {
    background-image: url(../img/purchase/img/heart.png),
      url(../img/purchase/img/heart.png);
    background-position: -70% bottom, 147%;
    background-size: 406px 496px, 317px 388px;
    padding: 66px 90px 58px;
  }
  .purchase__order {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  .purchase__order-content {
    background-color: #1e5084;
    padding: 40px 30px 50px;
  }
  .purchase__order-logo {
    --fill: #fff;
  }
  .purchase__order-slogan {
    color: #fff;
  }
  .purchase__order-form {
    margin-right: 30px;
  }
  .purchase__order-sale {
    top: 100px;
  }
  .purchase__order-img {
    height: 400px;
    margin-top: 14px 0 0;
  }
}
@media (min-width: 1920px) {
  .purchase {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(24%, #1e5084),
      color-stop(0, #f8fbff)
    );
    background: -webkit-linear-gradient(left, #1e5084 24%, #f8fbff 0);
    background: -o-linear-gradient(left, #1e5084 24%, #f8fbff 0);
    background: linear-gradient(90deg, #1e5084 24%, #f8fbff 0);
  }
  .purchase__top {
    background-position: -70px -280px, 100%;
    background-size: 542px 664px, 423px 518px;
    padding: 87px 295px;
  }
  .purchase__order {
    grid-template-columns: 2fr 1fr;
    -webkit-column-gap: 30px;
    column-gap: 30px;
    max-width: 1920px;
    padding-left: var(--wrapper);
    padding-right: var(--wrapper);
    margin-left: auto;
    margin-right: auto;
  }
  .purchase__order.is-active {
    -webkit-animation: a 1s both;
    animation: a 1s both;
  }
  .purchase__order-content {
    position: relative;
  }
  .purchase__order-sale {
    width: 188px;
    height: 188px;
    font-size: 18px;
    top: 60px;
    right: -10px;
  }
  .purchase__order-sale-procent {
    font-size: 36px;
  }
  .purchase__order-pic2 {
    display: block;
    margin: 85px 0 70px 110px;
    width: 490px;
    height: auto;
  }
  .purchase__order-logo,
  .purchase__order-pic,
  .purchase__order-slogan {
    position: absolute;
    z-index: 1;
    left: 520px;
  }
  .purchase__order-pic {
    bottom: 30px;
  }
  .purchase__order-img {
    height: 460px;
    margin-left: -10px;
  }
  .purchase__order-logo {
    --fill: #1e5084;
    margin-top: 225px;
    width: 135px;
    height: 57px;
  }
  .purchase__order-slogan {
    color: #333;
    margin-top: 295px;
  }
  .purchase__order-content {
    background-color: initial;
  }
  .purchase__order-form {
    max-width: 360px;
    margin-left: 20px;
  }
}
.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f8fbff;
  font-size: 14px;
}
.footer__logo {
  width: 76px;
  height: 32px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  --fill: #333;
}
@media (min-width: 414px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer__logo {
    margin-left: 0;
  }
}
@media (min-width: 1920px) {
  .footer__wrap {
    display: grid;
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    column-gap: 30px;
  }
  .footer__content {
    margin-top: -10px;
  }
  .footer__logo {
    width: 85px;
    height: 36px;
    margin-left: 140px;
  }
}
.modal--form .modal__header {
  text-align: left;
}
.modal--form .modal__content {
  padding: 20px;
}
.modal--form .modal__pic {
  min-height: 145px;
  height: 100%;
}
.modal--form .modal__img {
  height: 100%;
}
.modal--form .modal__img img {
  -o-object-fit: cover;
  object-fit: cover;
}
.modal--form .modal__header {
  margin-bottom: 8px;
}
.modal--form .modal__header .h1 {
  font-size: 18px;
}
.modal--form .modal__header .h2 {
  font-size: 14px;
  margin-top: 5px;
}
.modal--form .form__btn {
  margin-top: 12px;
}
.modal--geberich.active .modal__window {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal--geberich.active .modal__window,
.modal--geberich .modal__window {
  -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--geberich .modal__window {
  -webkit-transform: translate(100vw, -50%);
  -ms-transform: translate(100vw, -50%);
  transform: translate(100vw, -50%);
  top: 50%;
}
.modal--geberich .modal__wrap {
  padding: 36px 16px;
  text-align: left;
}
.modal--geberich .modal__header {
  display: grid;
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  word-break: break-word;
}
.modal--geberich .modal__header .h1 {
  font-size: 14px;
}
.modal--geberich .modal__header-icon {
  width: 20px;
  height: 20px;
  padding: 18px 15px;
  background: #ee3e07;
  border: 1px solid #ee3e07;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-right: 15px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
}
.modal--geberich .modal__header-icon:after,
.modal--geberich .modal__header-icon:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal--geberich .modal__header-icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.modal--comeback .modal__wrap {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(18%, #1e5084),
    color-stop(0, #f8fbff)
  );
  background: -webkit-linear-gradient(top, #1e5084 18%, #f8fbff 0);
  background: -o-linear-gradient(top, #1e5084 18%, #f8fbff 0);
  background: linear-gradient(180deg, #1e5084 18%, #f8fbff 0);
  padding: 20px;
}
.modal--comeback .modal__img {
  width: 100%;
}
.modal--comeback .modal__img img {
  max-height: 335px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.modal--comeback .modal__header {
  text-align: left;
  margin-top: 20px;
}
.modal--comeback .modal__header .h1 {
  font-size: 18px;
}
.modal--comeback .modal__header .h2 {
  font-size: 14px;
  margin-top: 8px;
}
.modal--comeback .modal__pic {
  position: relative;
}
.modal--comeback .modal__sale {
  position: absolute;
  top: 10px;
  left: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  padding: 4px;
  text-align: center;
  background-color: var(--sale-bg);
}
.modal--comeback .modal__form {
  margin-top: 10px;
}
.modal--comeback .modal__close {
  right: 30px;
  top: 30px;
}
@media (min-width: 414px) {
  .modal--form .modal__content {
    padding: 32px 20px;
  }
  .modal--form .modal__pic {
    min-height: 365px;
  }
  .modal--form .modal__header {
    margin-bottom: 30px;
  }
  .modal--form .modal__header .h1 {
    font-size: 24px;
  }
  .modal--form .modal__header .h2 {
    font-size: 18px;
  }
  .modal--form .modal__form,
  .modal--form .modal__form .btn {
    margin-top: 30px;
  }
  .modal--geberich {
    --w-modal: 526px;
  }
  .modal--geberich .modal__window {
    margin-right: auto;
    margin-left: auto;
  }
  .modal--geberich .modal__wrap {
    padding: 60px 20px;
  }
  .modal--geberich .modal__header .h1 {
    font-size: 20px;
  }
  .modal--comeback .modal__wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .modal--comeback .modal__header {
    margin-top: 34px;
  }
  .modal--comeback .modal__header .h1 {
    font-size: 24px;
  }
  .modal--comeback .modal__header .h2 {
    font-size: 18px;
  }
  .modal--comeback .modal__sale {
    font-size: 18px;
    top: 20px;
  }
  .modal--comeback .modal__form {
    margin-top: 27px;
  }
  .modal--comeback .modal__close {
    top: 40px;
  }
}
@media (min-width: 768px) {
  .modal--form .modal__window {
    display: grid;
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .modal--form .modal__header .h1 {
    font-size: 24px;
  }
  .modal--form .modal__pic {
    min-height: 609px;
    width: 344px;
  }
  .modal--geberich .modal__wrap {
    padding: 30px 20px 20px;
  }
  .modal--geberich .modal__header .h1 {
    font-size: 24px;
  }
  .modal--comeback .modal__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(39%, #1e5084),
      color-stop(0, #f8fbff)
    );
    background: -webkit-linear-gradient(left, #1e5084 39%, #f8fbff 0);
    background: -o-linear-gradient(left, #1e5084 39%, #f8fbff 0);
    background: linear-gradient(90deg, #1e5084 39%, #f8fbff 0);
    padding: 66px 20px 66px 40px;
  }
  .modal--comeback .modal__content {
    padding: 0;
  }
  .modal--comeback .modal__header {
    margin-top: 0;
  }
  .modal--comeback .modal__img img {
    max-height: 477px;
  }
  .modal--comeback .modal__sale {
    top: 47px;
  }
}
@media (min-width: 1920px) {
  .modal--form .modal__content {
    padding-left: 60px;
    padding-right: 100px;
  }
  .modal--form .modal__pic {
    width: 490px;
  }
  .modal--geberich {
    --w-modal: 490px;
  }
  .modal--geberich .modal__wrap {
    padding: 40px 20px;
  }
  .modal--comeback .modal__wrap {
    -webkit-column-gap: 30px;
    column-gap: 30px;
    padding-right: 100px;
  }
  .modal--comeback .modal__content {
    margin-left: 30px;
  }
  .modal--comeback .modal__img img {
    height: 477px;
    width: 450px;
  }
  .modal--comeback .modal__close {
    top: 20px;
    right: 20px;
  }
}

/*checkbox*/

.form-checkbox {
  align-items: center;
  display: grid;
  grid-template-columns: min-content auto;
  column-gap: 10px;
  padding: 0;
  margin-bottom: 16px;
  margin-top: 16px;
}

.form-checkbox-text,
.form-checkbox-link {
  color: #9c9c9c;
  font-size: 14px;
  font-weight: normal;
}

.form-checkbox-link {
  font-weight: 600;
  text-decoration: none;
}

.checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* TIMER */

.time-block {
  width: fit-content;
  margin: 0 auto;
  padding: 0 0 16px;
  color: #87ab5a;
  /* background: #383838; */
  text-align: center;
}

.time-title {
  margin: 0 auto;
  padding: 0 0 6px;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: inherit;
}

.time-remain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  font-weight: 300;
  font-size: 8px;
  line-height: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.time-remain-items {
  position: relative;
  /* width: 25%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 7px 14px;
  z-index: 1;
  /* box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); */
  /* background: #134328; */
  border-radius: 5px;
}

.hour,
.minutes,
.seconds {
  font-weight: bold;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.time-dots {
  font-weight: bold;
  font-size: 30px;
  line-height: 35px;
  color: inherit;
}

/*# sourceMappingURL=styles.min.css.map */
