@charset "UTF-8";
@font-face {
  font-family: "Fixel";
  src: url("/fonts/FixelText-Light.woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Fixel";
  src: url("/fonts/FixelText-Regular.woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Fixel";
  src: url("/fonts/FixelText-Medium.woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Fixel";
  src: url("/fonts/FixelText-SemiBold.woff2");
  font-weight: 600;
  font-style: normal;
}
/*** загальні ***/
body {
  font-family: "Fixel", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  -webkit-font-feature-settings: "clig" off, "liga" off;
  font-feature-settings: "clig" off, "liga" off;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:focus,
:active {
  outline: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:focus,
a:active {
  text-decoration: none;
}

input,
button,
textarea {
  font-family: inherit;
  cursor: pointer;
  background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

svg,
img {
  display: block;
}

div,
a,
input,
textarea,
button,
path,
label,
section,
img,
p,
::after,
::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

*::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

*::-webkit-scrollbar-track {
  background: #eeeef0;
  border-radius: 2px;
}

*::-webkit-scrollbar-thumb {
  background-color: #8e8ea4;
  border-radius: 2px;
}

h1 {
  font-size: 90px;
  line-height: 100px;
  font-weight: 300;
}

h2 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 300;
}

h3 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 300;
}

@media (max-width: 550px) {
  h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
  }
}
h4 {
  font-size: 30px;
  line-height: 46px;
  font-weight: 400;
}

h5 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}

h6 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}

.block {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 70px;
}

@media (max-width: 768px) {
  .block {
    padding: 48px;
  }
}
@media (max-width: 550px) {
  .block {
    padding: 24px;
  }
}
/*** кнопки ***/
.btn {
  min-width: 168px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  text-align: center;
  padding: 17px;
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  z-index: 0;
  top: 0;
  left: -100%;
}
.btn:hover::before {
  left: 0;
}
.btn span,
.btn input {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.btn.white {
  color: #fff;
  border: 1px solid #fff;
}
.btn.white input {
  color: #fff;
}
.btn.white:hover {
  color: #0500be;
}
.btn.white:hover input {
  color: #0500be;
}
.btn.blue {
  color: #0500be;
  border: 1px solid #0500be;
}
.btn.blue input {
  color: #0500be;
}
.btn.blue::before {
  background-color: #0500be;
}
.btn.blue:hover {
  color: #fff;
}
.btn.blue:hover input {
  color: #fff;
}

@media (max-width: 550px) {
  .btn {
    padding: 7px 16px;
  }
}
.close12 {
  width: 24px;
  height: 24px;
  background: url("../img/x12_black.svg") no-repeat 50% 50%;
}
.close12:hover {
  background: url("../img/x12_white.svg") no-repeat 50% 50% #000;
}

label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
label:hover p {
  color: #0500be;
}
label input {
  display: none;
}
label input + p {
  font-size: 14px;
  line-height: 20px;
  padding-left: 24px;
  position: relative;
}
label input + p::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  position: absolute;
  top: 1px;
  left: 2px;
}
label input + p:hover::before {
  border: 1px solid #0500be;
}
label input:checked + p::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #0500be;
}

.slider.on .stickers-wrapper {
  display: none;
}

.stickers-wrapper {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stickers-wrapper .sticker {
  position: relative;
}

.sticker {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  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-color: #0500be;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 5px;
  color: #fff;
}

.card {
  border: 1px solid transparent;
  border-bottom: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card .favorite {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  display: none;
  background: url("../img/header/fav_black.svg") no-repeat 50%;
}
.card .favorite.on {
  background: url("../img/header/fav_blue.svg") no-repeat 50%;
}
.card .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 45/50;
}
.card .img .fond {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.card .img .good {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.card .info h6 {
  padding: 16px 12px 2px 12px;
  text-align: center;
}
.card .info h6:nth-child(3) {
  padding: 12px;
}
.card .info p {
  padding: 12px;
  text-align: center;
  color: #8e8ea4;
  font-size: 14px;
  line-height: 20px;
}
.card .to_cart {
  width: 100%;
  height: 48px;
  border-bottom: 1px solid #f5f5f9;
  background: url("../img/header/cart_black.svg") 50% 50% no-repeat;
}
.card .to_cart::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #0500be;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.card .to_cart.on {
  background: url("../img/header/cart_blue.svg") 50% 50% no-repeat;
}
.card .to_cart:hover::after {
  width: 100%;
}
.card:hover {
  border: 1px solid #f5f5f9;
  border-bottom: none;
}
.card:hover .favorite {
  display: block;
}
.card:hover .sticker {
  display: none;
}
.card:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.card:hover .img .good {
  opacity: 0;
}

/*****  загальні для Слайдер Slick *****/
.slick-list {
  overflow: hidden;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.slick-dots li {
  height: 24px;
  list-style: none;
}
.slick-dots li button {
  font-size: 0;
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}
.slick-dots li button::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  position: absolute;
  top: 6px;
  left: 6px;
}
.slick-dots li button:hover::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slick-dots li.slick-active button::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #0500be;
  background-color: #0500be;
}

.control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 0;
}

.prev,
.next {
  width: 24px;
  height: 24px;
  background: url("../img/arrow_black.svg") 50% 50% no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.prev:hover,
.next:hover {
  background: url("../img/arrow_white.svg") 50% 50% no-repeat #000;
}

.next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 650px) {
  .dots {
    width: calc(100% - 72px);
  }
  .slick-dots {
    gap: 12px;
  }
  .control {
    gap: 12px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.marker {
  padding-left: 28px;
  position: relative;
}
.marker::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #0500be;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 3px;
  left: 6px;
}
.marker.white::before {
  background-color: #fff;
}

.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-top: auto;
}
.counter .minus {
  width: 24px;
  height: 24px;
  background: url("../img/modal/minus12_black.svg") 50% 50% no-repeat;
}
.counter .minus:hover {
  background: url("../img/modal/minus12_white.svg") 50% 50% no-repeat #000;
}
.counter .plus {
  width: 24px;
  height: 24px;
  background: url("../img/modal/plus12_black.svg") 50% 50% no-repeat;
}
.counter .plus:hover {
  background: url("../img/modal/plus12_white.svg") 50% 50% no-repeat #000;
}
.counter input[type="number"] {
  width: 48px;
  height: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

/*** модал ***/
.modal_fond {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal_fond.on {
  z-index: 1011;
  opacity: 1;
}
.modal_fond .modal_window {
  position: absolute;
  top: 0;
  right: -600px;
  max-width: 600px;
  width: 100%;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: auto;
}
.modal_fond .modal_window.on {
  right: 0;
}
.modal_fond .modal_window .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid #eeeef0;
}
.modal_fond .modal_window .modal_cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100vh - 73px);
}
.modal_fond .modal_window .modal_cart h6 {
  padding: 12px;
  text-align: center;
}
.modal_fond .modal_window .modal_cart .free_delivery {
  padding: 12px;
}
.modal_fond .modal_window .modal_cart .free_delivery .text {
  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;
}
.modal_fond .modal_window .modal_cart .free_delivery .text p {
  font-size: 16px;
  font-weight: 600;
}
.modal_fond .modal_window .modal_cart .free_delivery .text p.sum {
  font-weight: 400;
  font-size: 18px;
}
.modal_fond .modal_window .modal_cart .free_delivery .bar {
  height: 24px;
  padding: 6px 28px 6px 0;
  margin-top: 4px;
  background: url("../img/modal/free_delivery.svg") no-repeat 100%;
}
.modal_fond .modal_window .modal_cart .free_delivery .bar .indicator {
  padding: 4px;
  background-color: #f5f5f9;
}
.modal_fond .modal_window .modal_cart .free_delivery .bar .indicator span {
  display: block;
  height: 4px;
  background-color: #000;
}
.modal_fond .modal_window .modal_cart .empty {
  font-size: 16px;
  left: 24px;
  font-weight: 600;
  margin: auto auto;
}
.modal_fond .modal_window .modal_cart .cont {
  width: calc(100% - 12px);
  padding-right: 12px;
  max-height: 450px;
  overflow: auto;
}
.modal_fond .modal_window .modal_cart .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid #eeeef0;
  position: relative;
}
.modal_fond .modal_window .modal_cart .item .img {
  width: 200px;
  height: 200px;
  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;
}
.modal_fond .modal_window .modal_cart .item .img img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: 100%;
}
.modal_fond .modal_window .modal_cart .item .inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 204px);
}
.modal_fond .modal_window .modal_cart .item .inf .name {
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  width: calc(100% - 32px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.modal_fond .modal_window .modal_cart .item .inf .close12 {
  position: absolute;
  top: 10px;
  right: 12px;
}
.modal_fond .modal_window .modal_cart .item .inf .price {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.modal_fond .modal_window .modal_cart .bottom {
  margin: 50px 0 180px;
}
.modal_fond .modal_window .modal_cart .bottom .total {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.modal_fond .modal_window .modal_cart .bottom .total div {
  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;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
}
.modal_fond .modal_window .modal_cart .bottom .total div p {
  font-size: 16px;
  font-weight: 600;
}
.modal_fond .modal_window .modal_cart .bottom .btn {
  display: block;
  width: 100%;
}
.modal_fond .modal_window .modal_cart .bottom .to_cart {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.5;
  text-align: center;
}
.modal_fond .modal_window .modal_cart .bottom .to_cart:hover {
  opacity: 1;
}
.modal_fond .modal_window .modal_reg {
  padding: 24px 24px 0;
  height: calc(100vh - 73px);
  overflow: auto;
}
.modal_fond .modal_window .modal_reg form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.modal_fond .modal_window .modal_reg form h5,
.modal_fond .modal_window .modal_reg form h5 + p {
  text-align: center;
}
.modal_fond .modal_window .modal_reg form .reset_password {
  width: 100%;
  padding: 4px;
  font-size: 11px;
  line-height: 16px;
  background-color: #f5f5f9;
}
.modal_fond .modal_window .modal_reg form .reset_password:hover {
  color: #fff;
  background-color: #000;
}
.modal_fond .modal_window .modal_reg form .bottom {
  margin: 50px 0 180px;
}
.modal_fond .modal_window .modal_reg form .bottom .btn {
  width: calc(100% + 48px);
  margin-left: -24px;
}
.modal_fond .modal_window .modal_reg form .bottom .enter {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
  padding: 16px 24px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.5;
  text-align: center;
}
.modal_fond .modal_window .modal_reg form .bottom .enter:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .modal_fond .modal_window .modal_reg {
    padding: 24px 24px 100px;
  }
}
@media (max-width: 550px) {
  .modal_fond .modal_window .modal_cart .item .img {
    width: 150px;
    height: 150px;
  }
}
/*** інпути ***/
.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.field p {
  color: #8e8ea4;
  font-size: 11px;
  line-height: 16px;
}
.field input,
.field textarea,
.field select {
  -webkit-appearance: initial;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-size: 14px;
  line-height: 20px;
  padding: 11px;
  border: 1px dashed #0500be;
  resize: none;
  font-variant-numeric: lining-nums tabular-nums;
  -webkit-font-feature-settings: "clig" off, "liga" off;
  font-feature-settings: "clig" off, "liga" off;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border: 1px solid #0500be;
}
.field input:focus + p,
.field textarea:focus + p,
.field select:focus + p {
  color: #0500be;
}
.field input:focus ~ .drop_list,
.field textarea:focus ~ .drop_list {
  height: 180px;
}
/*.field input:valid,*/
/*.field textarea:valid ,*/
/*.field select:valid {*/
/*  border: 1px solid #f5f5f9;*/
/*  background-color: #f5f5f9;*/
/*} */
.field input:valid + p,
.field textarea:valid + p,
.field select:valid + p {
  color: #0500be;
}
.field .drop_list {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  padding: 0;
  height: 0;
  overflow: auto;
  -webkit-box-shadow: 3px 3px 15px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 15px 1px rgba(0, 0, 0, 0.2);
}
.field .drop_list span {
  display: block;
  font-size: 14px;
  padding: 5px 10px;
  cursor: pointer;
  height: 34px;
}
.field .drop_list span:hover {
  background-color: #f5f5f9;
}

/*** заголовки ***/
.main_title {
  width: 100%;
  position: relative;
}
.main_title .fond {
  width: 100%;
  height: 210px;
  background: url("../img/catalog/catalog_fond.avif") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-animation: profile_bcg_anim 20s infinite;
  animation: profile_bcg_anim 20s infinite;
}
.main_title .filters {
  background-color: #f5f5f9;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.main_title .filters .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  margin: 0 auto;
  background-color: #fff;
}
.main_title .filters .btns a {
  padding: 16px 48px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  color: #8e8ea4;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.main_title .filters .btns a.on {
  color: #0500be;
  border-bottom: 1px solid #0500be;
}
.main_title .filters .btns:hover ~ p {
  background: url("../img/catalog/filters_hover.svg") no-repeat;
}
.main_title .filters p {
  padding-left: 32px;
  font-size: 14px;
  line-height: 24px;
  background: url("../img/catalog/filters.svg") no-repeat;
}
.main_title .text {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #f5f5f9;
}
.main_title .text .block {
  padding: 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.main_title .text h3 {
  width: 300px;
}
.main_title .text p {
  width: calc(100% - 324px);
}

@-webkit-keyframes profile_bcg_anim {
  0% {
    background: url("../img/catalog/catalog_fond.avif") no-repeat 0% 0%;
    background-size: cover;
  }
  50% {
    background: url("../img/catalog/catalog_fond.avif") no-repeat 100% 50%;
    background-size: cover;
  }
  100% {
    background: url("../img/catalog/catalog_fond.avif") no-repeat 0% 0%;
    background-size: cover;
  }
}

@keyframes profile_bcg_anim {
  0% {
    background: url("../img/catalog/catalog_fond.avif") no-repeat 0% 0%;
    background-size: cover;
  }
  50% {
    background: url("../img/catalog/catalog_fond.avif") no-repeat 100% 50%;
    background-size: cover;
  }
  100% {
    background: url("../img/catalog/catalog_fond.avif") no-repeat 0% 0%;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .main_title .text .block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 48px;
  }
  .main_title .text h3 {
    width: 100%;
  }
  .main_title .text p {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .main_title .text {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .main_title .text .block {
    gap: 12px;
    padding: 0 24px;
  }
  
  .field input,
  .field textarea,
  .field select {
      max-width: calc(100% - 20px);
  }
}
.pagination {
  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;
  gap: 12px;
  padding: 18px;
}
.pagination .page,
.pagination .ellipsis {
  width: 24px;
  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;
}
.pagination .page span,
.pagination .ellipsis span {
  display: block;
  padding: 6px 0 2px;
  font-size: 11px;
  line-height: 16px;
}
.pagination .page:hover,
.pagination .page.active {
  background-color: #f5f5f9;
}

/*** хедер ***/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1010;
}
header .action {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 8px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
}
header .block {
  padding: 10px 70px;
  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;
  height: 110px;
}
header .burger {
  width: 48px;
  height: 48px;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
header .burger::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 12px;
  top: 14px;
}
header .burger::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 12px;
  bottom: 14px;
}
header .burger span {
  width: 24px;
  height: 1px;
  background-color: #fff;
}
header .burger.on::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 23.5px;
}
header .burger.on::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 23.5px;
}
header .burger.on span {
  opacity: 0;
}
header .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
header .links > a {
  color: #fff;
  padding: 20px 0 16px;
  position: relative;
}
header .links > a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
header .links > a:hover::after {
  width: 100%;
}
header .links .lang {
  display: none;
  gap: 9px;
}
header .links .lang a {
  color: #000;
  opacity: 0.5;
}
header .links .lang a.active {
  opacity: 1;
}
header .logo {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 202px;
  height: 90px;
  background: url("../img/logo_white.svg") no-repeat 50%;
  background-size: cover;
}
header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
header .nav .profile_btn {
  width: 24px;
  height: 24px;
  background: url("../img/header/profile_white.svg");
}
header .nav .cart,
header .nav .profile_favourites,
header .nav .profile_orders {
  padding-left: 24px;
  position: relative;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
header .nav .cart span,
header .nav .profile_favourites span,
header .nav .profile_orders span {
  display: block;
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
header .nav .cart {
  background: url("../img/header/cart_white.svg") no-repeat;
}
header .nav .cart:hover {
  background: url("../img/header/cart_blue.svg") no-repeat;
}
header .nav .profile_favourites {
  background: url("../img/header/fav_white.svg") no-repeat;
}
header .nav .profile_favourites:hover {
  background: url("../img/header/fav_blue.svg") no-repeat;
}
header .nav .profile_orders {
  padding-left: 28px;
  background: url("../img/header/profile_white.svg") no-repeat;
}
header .nav .profile_orders:hover {
  background: url("../img/header/profile_white.svg") no-repeat;
}
header .nav .language {
  color: #fff;
  opacity: 0.5;
}
header .nav .language.active {
  opacity: 1;
}
header.promotional .logo {
  top: 30px;
}
header.black .burger::before,
header.black .burger::after,
header.black .burger span,
header.mobile .burger::before,
header.mobile .burger::after,
header.mobile .burger span {
  background-color: #000;
}
header.black .links a,
header.mobile .links a {
  color: #000;
}
header.black .links a::after,
header.mobile .links a::after {
  background-color: #000;
}
header.black .logo,
header.mobile .logo {
  background: url("../img/logo_blue.svg") no-repeat 50%;
  background-size: cover;
}
header.black .nav .cart span,
header.black .nav .profile_favourites span,
header.black .nav .profile_orders span,
header.mobile .nav .cart span,
header.mobile .nav .profile_favourites span,
header.mobile .nav .profile_orders span {
  color: #000;
}
header.black .nav .profile_btn,
header.mobile .nav .profile_btn {
  width: 24px;
  height: 24px;
  background: url("../img/header/profile_black.svg");
}
header.black .nav .cart,
header.mobile .nav .cart {
  background: url("../img/header/cart_black.svg") no-repeat;
}
header.black .nav .cart:hover,
header.mobile .nav .cart:hover {
  background: url("../img/header/cart_blue.svg") no-repeat;
}
header.black .nav .profile_favourites,
header.mobile .nav .profile_favourites {
  background: url("../img/header/fav_black.svg") no-repeat;
}
header.black .nav .profile_favourites:hover,
header.mobile .nav .profile_favourites:hover {
  background: url("../img/header/fav_blue.svg") no-repeat;
}
header.black .nav .profile_orders,
header.mobile .nav .profile_orders {
  background: url("../img/header/profile_black.svg") no-repeat;
}
header.black .nav .profile_orders:hover,
header.mobile .nav .profile_orders:hover {
  background: url("../img/header/profile_black.svg") no-repeat;
}
header.black .nav .language,
header.mobile .nav .language {
  color: #000;
}
header.black.v2 {
  background-color: #fff;
}

@media (max-width: 1350px) {
  header .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .links {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: calc(100vh - 110px);
    padding: 48px 70px;
    background-color: #fff;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  header .links > a {
    display: block;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    margin-bottom: 24px;
  }
  header .links .lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .nav .profile_favourites,
  header .nav .language {
    display: none;
  }
  header.promotional .links {
    top: 140px;
    height: calc(100vh - 140px);
  }
}
@media (max-width: 768px) {
  header .block {
    padding: 10px 48px;
  }
  header .links {
    padding: 48px;
  }
  header .nav .profile_orders span {
      display:none;
  }
}
@media (max-width: 550px) {
  header .block {
    padding: 10px 24px;
  }
  header .links {
    padding: 24px;
    top: 182px;
  }
  header .links > a {
    margin-bottom: 12px;
  }
  header .logo {
    position: absolute;
    top: 25px;
    bottom: 25px;
    width: 135px;
    height: 60px;
  }
  header .nav {
    gap: 9px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  header .nav.on {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 23px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background-color: #fff;
  }
  header.promotional .links {
    top: 212px;
  }
}
/*** hero ***/
.hero {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.hero .slider .item {
  position: relative;
  height: 100vh;
}
.hero .slider .item.temporary {
  background: url("/img/banner_big.png") no-repeat 50%;
  background-size: cover;
}
.hero video,
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.hero .banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero .banner.partner_banner {
  background: url("../img/about/partnership.webp") 50% no-repeat;
  background-size: cover;
}
.hero .banner.about_banner {
  background: url("../img/about/about_banner.webp") 78% 50% no-repeat;
  background-size: cover;
}
.hero .banner.collagen_banner {
  background: url("../img/collagen_page.webp") 63% 50% no-repeat;
  background-size: cover;
}
.hero .banner.brandLife_banner {
  background: url("../img/brandLife_page.webp") 50% no-repeat;
  background-size: cover;
}
.hero .block {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.hero .block h2 {
  max-width: 900px;
  width: 100%;
}
.hero .block p {
  max-width: 700px;
  width: 100%;
  margin-top: 12px;
}
.hero .block a {
  margin-top: 30px;
}
.hero .control {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .hero .banner.partner_banner {
    background: url("../img/about/partnership768.webp") 50% no-repeat;
    background-size: cover;
  }
}
@media (max-width: 950px) {
  .hero .slider .item.temporary {
    background: url("/img/banner_mid.png") no-repeat 50%;
    background-size: cover;
  }
}
@media (max-width: 900px) {
  .hero .banner.partner_banner {
    background: url("../img/about/partnership360.webp") 50% no-repeat;
    background-size: cover;
  }
  .hero .block {
    padding: 48px 48px 100px;
  }
  .hero .block h2 {
    font-size: 30px;
    line-height: 46px;
  }
  .hero .block p,
  .hero .block a {
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .hero .banner.brandLife_banner {
    background: url("../img/brandLife_pageT.webp") 50% no-repeat;
    background-size: cover;
  }
}
@media (max-width: 550px) {
  .hero .block {
    padding: 24px 24px 100px;
  }
}
@media (max-width: 480px) {
  .hero .slider .item.temporary {
    background: url("/img/banner_small.png") no-repeat 50%;
    background-size: cover;
  }
}
@media (max-width: 450px) {
  .hero .banner.brandLife_banner {
    background: url("../img/brandLife_pageM.webp") 50% no-repeat;
    background-size: cover;
  }
}
/*** collagen_action ***/
.collagen_action .cont {
  padding: 120px 70px 24px;
  background: url("../img/collagen_action.webp") 50% 50% no-repeat;
  background-size: cover;
  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: end;
}
.collagen_action .cont h3 {
  color: #fff;
}
.collagen_action .cont .btn {
  margin: 30px 0 96px;
}
.collagen_action .cont .anim {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px 120px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.collagen_action .cont .anim h5 {
  color: #fff;
  white-space: nowrap;
}
.collagen_action .cont .anim h5:nth-child(1) {
  -webkit-animation: 15s infinite change_color1;
  animation: 15s infinite change_color1;
}
.collagen_action .cont .anim h5:nth-child(2) {
  -webkit-animation: 15s infinite change_color2;
  animation: 15s infinite change_color2;
}
.collagen_action .cont .anim h5:nth-child(3) {
  -webkit-animation: 15s infinite change_color3;
  animation: 15s infinite change_color3;
}
.collagen_action .cont .anim h5:nth-child(4) {
  -webkit-animation: 15s infinite change_color4;
  animation: 15s infinite change_color4;
}
.collagen_action .cont .anim h5:nth-child(5) {
  -webkit-animation: 15s infinite change_color5;
  animation: 15s infinite change_color5;
}

@media (max-width: 768px) {
  .collagen_action .cont {
    padding: 48px 48px 24px;
  }
  .collagen_action .cont .btn {
    margin: 30px 0 48px;
  }
  .collagen_action .cont .anim {
    padding: 24px 48px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 48px;
  }
  .collagen_action .cont .anim h5 {
    width: calc(50% - 24px);
  }
}
@media (max-width: 550px) {
  .collagen_action .cont {
    padding: 24px;
  }
  .collagen_action .cont h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .collagen_action .cont .btn {
    margin: 30px 0 166px;
  }
  .collagen_action .cont .anim_wrapper {
    margin-left: -24px;
    width: calc(100% + 48px);
    overflow: auto;
  }
  .collagen_action .cont .anim {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    padding: 24px 48px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 48px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .collagen_action .cont .anim h5 {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    font-size: 20px;
    line-height: 24px;
  }
}
@-webkit-keyframes change_color1 {
  0% {
    color: #000;
  }
  18.4% {
    color: #000;
  }
  18.5% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes change_color1 {
  0% {
    color: #000;
  }
  18.4% {
    color: #000;
  }
  18.5% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes change_color2 {
  0% {
    color: #fff;
  }
  18.4% {
    color: #fff;
  }
  18.5% {
    color: #000;
  }
  36.8% {
    color: #000;
  }
  36.9% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes change_color2 {
  0% {
    color: #fff;
  }
  18.4% {
    color: #fff;
  }
  18.5% {
    color: #000;
  }
  36.8% {
    color: #000;
  }
  36.9% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes change_color3 {
  0% {
    color: #fff;
  }
  38.4% {
    color: #fff;
  }
  38.5% {
    color: #000;
  }
  58.4% {
    color: #000;
  }
  58.5% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes change_color3 {
  0% {
    color: #fff;
  }
  38.4% {
    color: #fff;
  }
  38.5% {
    color: #000;
  }
  58.4% {
    color: #000;
  }
  58.5% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes change_color4 {
  0% {
    color: #fff;
  }
  58.4% {
    color: #fff;
  }
  58.5% {
    color: #000;
  }
  78.4% {
    color: #000;
  }
  78.5% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes change_color4 {
  0% {
    color: #fff;
  }
  58.4% {
    color: #fff;
  }
  58.5% {
    color: #000;
  }
  78.4% {
    color: #000;
  }
  78.5% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@-webkit-keyframes change_color5 {
  0% {
    color: #fff;
  }
  78.4% {
    color: #fff;
  }
  78.5% {
    color: #000;
  }
  99.9% {
    color: #000;
  }
  100% {
    color: #fff;
  }
}
@keyframes change_color5 {
  0% {
    color: #fff;
  }
  78.4% {
    color: #fff;
  }
  78.5% {
    color: #000;
  }
  99.9% {
    color: #000;
  }
  100% {
    color: #fff;
  }
}
.choose_yours {
  max-width: 1540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 0;
}
.choose_yours .text {
  width: calc((100% - 48px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.choose_yours .text a {
  margin: 0 auto;
  width: 235px;
}
.choose_yours .card {
  width: calc((100% - 48px) / 3);
}

@media (max-width: 768px) {
  .choose_yours .text {
    width: 100%;
    padding: 48px 0;
  }
  .choose_yours .card {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 550px) {
  .choose_yours .text {
    padding: 24px 0;
  }
  .choose_yours .card {
    width: 100%;
  }
}
.about_main {
  width: 100%;
  margin: 70px auto 0;
  background: url("../img/about/about_img.webp") no-repeat 100% 0%;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #eeeef0;
}
.about_main .cont {
  max-width: 1920px;
  height: 100vh;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about_main .cont .text {
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  padding: 0 0 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about_main .cont .text p {
  margin-top: 12px;
  width: 50%;
}
.about_main .cont .text .btn {
  margin-top: 30px;
  width: 198px;
}
.about_main .cont .text .stroke {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  width: 50%;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  padding: 48px;
  margin-top: 160px;
  background-color: #f5f5f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about_main .cont .text .stroke h6 {
  white-space: nowrap;
  padding-left: 36px;
}
.about_main .cont .text .stroke h6:nth-child(1) {
  background: url("../img/about_main1.svg") no-repeat;
}
.about_main .cont .text .stroke h6:nth-child(2) {
  background: url("../img/about_main2.svg") no-repeat;
}
.about_main .cont .text .stroke h6:nth-child(3) {
  background: url("../img/about_main3.svg") no-repeat;
}

@media (max-width: 1600px) {
  .about_main {
    background-size: contain;
  }
  .about_main .cont {
    height: 900px;
  }
  .about_main .cont .text p {
    min-width: 400px;
    max-width: 768px;
    width: 100%;
  }
  .about_main .cont .text .stroke {
    max-width: 768px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about_main {
    margin: 48px auto 0;
  }
  .about_main .cont {
    height: 100%;
  }
  .about_main .cont .text {
    padding: 48px;
  }
  .about_main .cont .text p {
    min-width: initial;
    max-width: 400px;
  }
  .about_main .cont .text .btn {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 48px;
  }
  .about_main .cont .text .stroke {
    padding: 48px;
    gap: 48px;
    max-width: none;
    width: calc(100% + 96px);
    margin: 48px 0 48px -48px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
@media (max-width: 550px) {
  .about_main {
    margin: 24px auto 0;
  }
  .about_main .cont {
    height: 100%;
  }
  .about_main .cont .text {
    padding: 24px;
  }
  .about_main .cont .text h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 86px;
  }
  .about_main .cont .text .btn {
    width: 158px;
    margin-top: 24px;
  }
  .about_main .cont .text .stroke {
    padding: 24px;
    gap: 24px;
    width: calc(100% + 48px);
    margin: 24px 0 24px -24px;
  }
  .about_main .cont .text .stroke h6 {
    font-size: 14px;
    line-height: 20px;
  }
}
.ingr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.ingr .text {
  width: 50%;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  padding-right: 70px;
}
.ingr .text p {
  margin-top: 12px;
}
.ingr .img {
  width: 50%;
}
.ingr .img .slider .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  width: 100%;
  height: 540px;
  padding: 24px;
  position: relative;
}
.ingr .img .slider .item .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  z-index: 0;
}
.ingr .img .slider .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
.ingr .img .slider .item .info .pict {
  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: 24%;
  border: 2px solid #fff;
}
.ingr .img .slider .item .info .pict img {
  max-width: 70px;
  max-height: 70px;
}
.ingr .img .slider .item .info .disc {
  width: 76%;
  background-color: #fff;
  padding: 24px;
}
.ingr .img .slider .item .info .disc h5 {
  margin-bottom: 24px;
}
.ingr .img .slider .item .info .disc p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
}
.ingr .btn {
  position: absolute;
  bottom: 120px;
  left: 70px;
}

@media (max-width: 1100px) {
  .ingr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 48px;
  }
  .ingr .text {
    width: 100%;
    padding: 0;
  }
  .ingr .img {
    width: 100%;
  }
  .ingr .btn {
    position: relative;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 550px) {
  .ingr {
    gap: 30px;
  }
  .ingr .text h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .ingr .img .slider .item {
    height: 548px;
  }
  .ingr .img .slider .item .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ingr .img .slider .item .info .pict {
    width: 100%;
    height: 200px;
  }
  .ingr .img .slider .item .info .disc {
    width: 100%;
  }
  .ingr .img .slider .item .info .disc .cont {
    height: 252px;
    overflow: auto;
  }
  .ingr .img .slider .item .info .disc .cont h5,
  .ingr .img .slider .item .info .disc .cont p {
    width: calc(100% - 5px);
  }
}
.product {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product .fond {
  width: 100%;
  height: 140px;
  background: url("../img/ingr_img1.jpg") no-repeat center 69.2%;
  background-size: cover;
  background-attachment: fixed;
}
.product .disc {
  width: 31.25%;
  border-right: 1px solid #eeeef0;
}
.product .disc .text {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.product .disc .text .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.product .disc .text .rating p {
  font-size: 11px;
  line-height: 16px;
}
.product .disc .run_stroke {
  width: 100%;
  border-top: 1px solid #eeeef0;
  border-bottom: 1px solid #eeeef0;
  padding: 12px 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product .disc .run_stroke .marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scroll 5s linear infinite;
  animation: scroll 5s linear infinite;
}
.product .disc .run_stroke .marquee span {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  margin-right: 24px;
}
.product .slider {
  width: 37.5%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  position: relative;
}
.product .slider .imgs .item {
  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;
  height: 660px;
  position: relative;
}
.product .slider .imgs .item .sticker {
  top: 20px;
  right: 20px;
}
.product .slider .imgs .item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product .slider .control {
  border-top: 1px solid #eeeef0;
}
.product .slider .control .close12 {
  display: none;
}
.product .slider.on {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  width: 100%;
}
.product .slider.on .imgs {
  margin: auto;
  max-width: 800px;
  background-color: #fff;
}
.product .slider.on .imgs .item {
  height: 100vh;
}
.product .slider.on .imgs .item img {
  height: 100%;
}
.product .slider.on .control {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: 0 auto;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.product .slider.on .control .dots {
  display: none;
}
.product .slider.on .control .close12 {
  display: block;
}
.product .slider.on .control button {
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
}
.product .slider.on .control button.next {
  -webkit-transform: rotate(180deg) scale(2);
  -ms-transform: rotate(180deg) scale(2);
  transform: rotate(180deg) scale(2);
}
.product .info {
  width: 31.25%;
  border-left: 1px solid #eeeef0;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.product .info .item {
  border: 1px solid #eeeef0;
  margin-bottom: 12px;
  cursor: pointer;
}
.product .info .item .title {
  padding: 8px;
}
.product .info .item .drop {
  padding: 8px;
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.product .info .item .drop .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #eeeef0;
  padding: 8px 12px;
}
.product .info .item .drop .unit:last-child {
  border-bottom: 0;
}
.product .info .buy {
  margin-top: auto;
  width: 100%;
  padding: 24px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.product .info .buy .counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.product .info .buy .counter .minus {
  width: 48px;
  height: 48px;
  background: url("../img/modal/minus12_black.svg") 50% 50% no-repeat;
}
.product .info .buy .counter .minus:hover {
  background: url("../img/modal/minus12_white.svg") 50% 50% no-repeat #000;
}
.product .info .buy .counter .plus {
  width: 48px;
  height: 48px;
  background: url("../img/modal/plus12_black.svg") 50% 50% no-repeat;
}
.product .info .buy .counter .plus:hover {
  background: url("../img/modal/plus12_white.svg") 50% 50% no-repeat #000;
}
.product .info .buy .counter input {
  width: 72px;
  height: 48px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.product .info .buy .to_cart {
  width: 100%;
  height: 48px;
  background: url("../img/header/cart_white.svg") 50% 50% no-repeat #000;
}
.product .info .buy .to_cart:hover {
  background: url("../img/header/cart_white.svg") 50% 50% no-repeat #0500be;
}
.product .info .buy .pay {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 24px;
}
.product .changes {
  width: 100%;
  padding: 24px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.product .changes h4 {
  width: calc(25% - 12px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  padding: 23px 0;
}
.product .changes .icon_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  width: calc(75% - 12px);
}
.product .changes .icon {
  width: calc((100% - 48px) / 3);
}
.product .changes .icon img {
  display: block;
  margin: 0 auto;
}
.product .changes .icon p {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

@media (max-width: 1000px) {
  .product .slider {
    width: 100%;
    padding: 0 70px;
  }
  .product .disc {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .product .info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 24px 70px;
  }
  .product .changes {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 768px) {
  .product .fond {
    background: url("../img/ingr_img1.jpg") no-repeat center 44.4%;
    background-size: cover;
  }
  .product .slider {
    padding: 0 48px;
  }
  .product .info {
    padding: 24px 48px;
  }
  .product .changes {
    padding: 24px 48px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .product .changes h4 {
    width: 100%;
  }
  .product .changes .icon_block {
    width: 100%;
  }
  .product .changes .icon {
    width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 550px) {
  .product .fond {
    background: url("../img/ingr_img1.jpg") no-repeat center 42%;
    background-size: cover;
  }
  .product .slider {
    padding: 0 24px;
  }
  .product .slider .imgs .item {
    height: initial;
  }
  .product .disc h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .product .info {
    padding: 24px;
  }
  .product .info h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .product .changes {
    padding: 24px;
  }
  .product .changes h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.description_ingredients {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.description_ingredients .text {
  width: 50%;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-color: #f5f5f9;
}
.description_ingredients .text .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 140px;
  max-width: 400px;
  width: 100%;
}
.description_ingredients .text .img_slider {
  position: absolute;
  top: calc(50% - 150px);
  right: -150px;
  width: 300px;
  height: 300px;
  background-color: #fff;
}
.description_ingredients .text .img_slider .item {
  width: 300px;
  height: 300px;
}
.description_ingredients .text .img_slider .item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.description_ingredients .text .img_slider .item .element {
  padding: 24px;
  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;
  height: 100%;
}
.description_ingredients .text .img_slider .item .element .pict {
  width: 24px;
  height: 24px;
  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;
}
.description_ingredients .text .img_slider .item .element .pict img {
  max-width: 100%;
  max-height: 100%;
  width: initial;
  height: initial;
  -o-object-fit: contain;
  object-fit: contain;
}
.description_ingredients .text .img_slider .item .element h2 {
  font-size: 130px;
  line-height: 130px;
  color: #0500be;
  text-align: center;
}
.description_ingredients .text .text_slider {
  max-width: 400px;
  width: 100%;
}
.description_ingredients .text .text_slider .item {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.description_ingredients .text .text_slider .item h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.description_ingredients .text .text_slider .item p {
  margin-bottom: 12px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.description_ingredients .text .control {
  margin-top: 12px;
}
.description_ingredients .img {
  width: 50%;
  background: url("../img/product/pelt800x1200.webp") 50% 50% no-repeat;
  background-size: cover;
}

@media (max-width: 1290px) {
  .description_ingredients .text {
    padding: 24px;
  }
  .description_ingredients .text .top {
    padding-bottom: 0;
  }
  .description_ingredients .text .img_slider {
    position: relative;
    top: initial;
    right: initial;
    margin: 48px auto;
  }
  .description_ingredients.mobile {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .description_ingredients.mobile .text {
    width: 100%;
  }
  .description_ingredients.mobile .text .top {
    max-width: 100%;
  }
  .description_ingredients.mobile .text .text_slider {
    max-width: 100%;
  }
  .description_ingredients.mobile .img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 768px) {
  .description_ingredients {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .description_ingredients .text {
    width: 100%;
    padding: 48px;
  }
  .description_ingredients .text .top {
    max-width: 100%;
  }
  .description_ingredients .text .text_slider {
    max-width: 100%;
  }
  .description_ingredients .img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 550px) {
  .description_ingredients {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .description_ingredients .text {
    padding: 24px;
  }
}
.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews .title {
  width: 36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 24px 70px 24px 0;
}
.reviews .title .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.reviews .title .rating p {
  font-size: 14px;
  line-height: 20px;
}
.reviews .title .btn {
  width: 205px;
}
.reviews .cont {
  width: 64%;
}
.reviews .cont .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid #eeeef0;
}
.reviews .cont .item .person {
  width: 34%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.reviews .cont .item .person h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.reviews .cont .item .person p {
  font-size: 14px;
  line-height: 20px;
}
.reviews .cont .item .person p span {
  font-weight: 600;
}
.reviews .cont .item .text {
  width: 66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.reviews .cont .item .text div {
  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;
}
.reviews .cont .item .text div .recommend,
.reviews .cont .item .text div .not_recommend {
  padding-left: 28px;
  font-size: 14px;
  line-height: 24px;
  color: #0500be;
  position: relative;
}
.reviews .cont .item .text div .recommend::before,
.reviews .cont .item .text div .not_recommend::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -2px;
  left: 0;
  background: url("../img/product/checkmark_blue24x24.svg");
}
.reviews .cont .item .text div .not_recommend {
  color: #8e8ea4;
}
.reviews .cont .item .text div .not_recommend::before {
  background: url("../img/product/close_grey24x24.svg");
}
.reviews .cont .item .text div .date {
  opacity: 0.5;
  font-size: 11px;
  line-height: 16px;
}
.reviews .modal_reviews {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  z-index: -1;
}
.reviews .modal_reviews.on {
  opacity: 1;
  z-index: 1001;
}
.reviews .modal_reviews form {
  max-width: 540px;
  width: 100%;
  max-height: calc(100vh - 96px);
  background-color: #fff;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  overflow: auto;
  position: relative;
}
.reviews .modal_reviews form .close12 {
  position: absolute;
  top: 20px;
  right: 20px;
}
.reviews .modal_reviews form .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.reviews .modal_reviews form .head p {
  color: #8e8ea4;
  font-size: 14px;
  line-height: 20px;
}
.reviews .modal_reviews form .field {
  width: 100%;
}
.reviews .modal_reviews form .field.w50 {
  width: calc(50% - 12px);
}
.reviews .modal_reviews form .sex_choise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 12px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  width: calc(50% - 12px);
}
.reviews .modal_reviews form .sex_choise p {
  font-size: 11px;
  line-height: 16px;
  color: #8e8ea4;
  width: 100%;
  height: 16px;
}
.reviews .modal_reviews form .sex_choise label {
  height: 24px;
}
.reviews .modal_reviews form .sex_choise label input + p {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  padding-left: 24px;
}
.reviews .modal_reviews form .sex_choise label input + p::before {
  width: 24px;
  height: 24px;
  border: 0;
  background: url("../img/product/uncheck.svg");
  left: 0;
  top: -2px;
}
.reviews .modal_reviews form .sex_choise label input + p:hover::before {
  border: 0;
}
.reviews .modal_reviews form .sex_choise label input:checked + p::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  background-color: transparent;
  background: url("../img/product/checked.svg");
}
.reviews .modal_reviews form .verdict {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.reviews .modal_reviews form .verdict p {
  color: #8e8ea4;
  font-size: 11px;
  line-height: 16px;
  width: 100%;
}
.reviews .modal_reviews form .verdict label {
  width: calc(50% - 6px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  border: 1px solid #eeeef0;
  padding: 8px 4px 0;
}
.reviews .modal_reviews form .verdict label input + p {
  padding-left: 28px;
  text-align: center;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  margin: auto;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}
.reviews .modal_reviews form .verdict label input + p::before {
  border: 0;
  top: -2px;
  left: 0;
}
.reviews .modal_reviews form .verdict label input:checked + p::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.reviews .modal_reviews form .verdict label:nth-child(2) input + p::before {
  width: 24px;
  height: 24px;
  background: url("../img/product/checkmark_black24x24.svg");
}
.reviews .modal_reviews form .verdict label:nth-child(2) input:checked + p {
  color: #0500be;
}
.reviews
  .modal_reviews
  form
  .verdict
  label:nth-child(2)
  input:checked
  + p::before {
  background: url("../img/product/checkmark_blue24x24.svg");
}
.reviews .modal_reviews form .verdict label:nth-child(3) input + p {
  color: #8e8ea4;
}
.reviews .modal_reviews form .verdict label:nth-child(3) input + p::before {
  width: 24px;
  height: 24px;
  background: url("../img/product/close_grey24x24.svg");
}
.reviews .modal_reviews form .verdict label:nth-child(3) input:checked + p {
  color: #000;
}
.reviews
  .modal_reviews
  form
  .verdict
  label:nth-child(3)
  input:checked
  + p::before {
  background: url("../img/product/close_black24x24.svg");
}
.reviews .modal_reviews form .btn {
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  width: 167px;
  padding: 8px 17px;
}

@media (max-width: 1000px) {
  .reviews {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .reviews .title,
  .reviews .cont {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .reviews .cont .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 24px 0;
  }
  .reviews .cont .item .person,
  .reviews .cont .item .text {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .reviews .title {
    padding: 24px 0;
  }
  .reviews .title h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .reviews .title .btn {
    width: 166px;
  }
  .reviews .cont .item {
    gap: 12px;
  }
  .reviews .modal_reviews {
    padding: 24px;
  }
  .reviews .modal_reviews form {
    max-height: calc(100vh - 48px);
    padding: 24px;
  }
  .reviews .modal_reviews form .close12 {
    top: 8px;
    right: 8px;
  }
  .reviews .modal_reviews form .field.w50 {
    width: 100%;
  }
  .reviews .modal_reviews form .sex_choise {
    width: 100%;
  }
  .reviews .modal_reviews form .verdict {
    gap: 12px;
  }
  .reviews .modal_reviews form .verdict label {
    width: 100%;
  }
}
.catalog .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.catalog .products .half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  width: calc(50% - 12px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.catalog .products .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.catalog .products .item.small {
  width: calc(50% - 12px);
}
.catalog .products .item .favorite {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  display: none;
  background: url("../img/header/fav_black.svg") no-repeat 50%;
}
.catalog .products .item .favorite.on {
  background: url("../img/header/fav_blue.svg") no-repeat 50%;
}
.catalog .products .item .img {
  position: relative;
  overflow: hidden;
  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;
}
.catalog .products .item .img .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.catalog .products .item .img .main_img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
}
.catalog .products .item .text {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 10px;
}
.catalog .products .item .text .price {
  padding: 4px 12px;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.catalog .products .item .text .price p {
  white-space: nowrap;
}
.catalog .products .item .text .disc {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding: 8px 12px;
  color: #8e8ea4;
}
.catalog .products .item .to_cart {
  margin-top: auto;
  height: 40px;
  width: 100%;
  border-bottom: 1px solid #f5f5f9;
  background: url("../img/header/cart_black.svg") 50% 50% no-repeat #fff;
  position: relative;
}
.catalog .products .item .to_cart::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #0500be;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.catalog .products .item .to_cart.on {
  background: url("../img/header/cart_blue.svg") 50% 50% no-repeat #fff;
}
.catalog .products .item .to_cart:hover::after {
  width: 100%;
}
.catalog .products .item:hover .sticker {
  display: none;
}
.catalog .products .item:hover .favorite {
  display: block;
}
.catalog .products .item:hover .img .fond {
  opacity: 1;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.catalog .products .item:hover .img .main_img {
  opacity: 0;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.catalog .products .decoration {
  width: 100%;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}

@media (max-width: 1070px) {
  .catalog .products {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .catalog .products .half {
    width: 100%;
  }
  .catalog .products .half:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .catalog .products .item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 650px) {
  .catalog .products {
    gap: 12px;
  }
  .catalog .products .item {
    width: 100%;
    margin: 0;
  }
  .catalog .products .item.small {
    width: 100%;
  }
}
.ingredients_properties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ingredients_properties .text {
  width: calc((100% - 48px) / 2);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  border: 1px solid #eeeef0;
}
.ingredients_properties .text .item {
  padding: 24px;
  border-bottom: 1px solid #eeeef0;
  cursor: pointer;
}
.ingredients_properties .text .item:last-child {
  border: 0;
}
.ingredients_properties .text .item h6 {
  padding: 0 36px;
  position: relative;
}
.ingredients_properties .text .item h6::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  position: absolute;
  left: 7px;
  top: 5px;
}
.ingredients_properties .text .item h6::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/arrow_black.svg") 50% 50% no-repeat;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  right: 0;
}
.ingredients_properties .text .item div {
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.ingredients_properties .text .item div p {
  padding: 12px 36px 0;
}
.ingredients_properties .text .item.on h6::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #0500be;
  background: #0500be;
}
.ingredients_properties .text .item.on h6::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ingredients_properties .img {
  width: calc((100% - 48px) / 2);
}
.ingredients_properties .img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .ingredients_properties .text {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .ingredients_properties .img {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .ingredients_properties .text {
    width: 100%;
  }
  .ingredients_properties .text .item {
    padding: 12px;
  }
  .ingredients_properties .text .item p {
    padding: 12px 12px 0;
  }
}
.ingredients {
  background-color: #f5f5f9;
}
.ingredients .container {
  max-width: 1248px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.ingredients .container .item {
  position: relative;
  display: block;
  width: calc((100% - 48px) / 3);
}
.ingredients .container .item .fond {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.ingredients .container .item .content {
  background-color: #fff;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  padding-bottom: 36px;
}
.ingredients .container .item .content .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid #eeeef0;
}
.ingredients .container .item .content .title h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.ingredients .container .item .content .img {
  padding: 0 12px;
  margin: 12px auto;
  width: 100%;
  height: 376px;
  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;
}
.ingredients .container .item .content .img .extract {
  position: absolute;
  top: 24px;
  left: 36px;
}
.ingredients .container .item .content .img img:not(.extract) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ingredients .container .item .content .element {
  width: calc(100% - 24px);
  height: 376px;
  margin: 12px auto;
  padding: 24px;
  border: 1px solid #eeeef0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  font-variant-numeric: normal;
}
.ingredients .container .item .content .element div {
  width: 24px;
  height: 24px;
  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;
}
.ingredients .container .item .content .element h1 {
  font-size: clamp(150px, 15vw, 200px);
  line-height: clamp(150px, 15vw, 224px);
  color: #0500be;
  text-align: center;
}
.ingredients .container .item .content .element p {
  text-align: center;
}
.ingredients .container .item .content .element .p2 {
  font-size: 14px;
  line-height: 20px;
  color: #8e8ea4;
}
.ingredients .container .item .content .text {
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.ingredients .container .item .content span {
  font-size: 14px;
  line-height: 20px;
  color: #0500be;
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.ingredients .container .item:hover .content {
  opacity: 0;
}
.ingredients .container .item.big {
  width: calc((100% - 12px) / 3 * 2);
}

@media (max-width: 900px) {
  .ingredients .container .item {
    width: calc((100% - 24px) / 2);
  }
  .ingredients .container .item.big {
    width: 100%;
  }
  .ingredients .container .item .content .img,
  .ingredients .container .item .content .element {
    height: 341px;
  }
}
@media (max-width: 650px) {
  .ingredients .container .item {
    width: 100%;
    min-height: 644px;
  }
  .ingredients .container .item .content .img,
  .ingredients .container .item .content .element {
    height: initial;
  }
}
.what_is {
  position: relative;
}
.what_is .img {
  max-width: 1250px;
  width: 100%;
  height: 860px;
  overflow: hidden;
}
.what_is .fond {
  position: absolute;
  top: 140px;
  right: 70px;
  max-width: 730px;
  width: 100%;
}
.what_is .text {
  padding: 48px;
  background-color: #fff;
  border: 1px solid #eeeef0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.what_is .text h6 {
  padding: 48px;
  width: calc(100% + 96px);
  margin-left: -48px;
  background-color: #0500be;
  color: #fff;
}

@media (max-width: 870px) {
  .what_is .img {
    display: none;
  }
  .what_is .fond {
    position: inherit;
    top: initial;
    right: initial;
    padding: 48px;
    background: url("../img/ingredients/what_is1250x860.webp") no-repeat;
    background-size: cover;
  }
  .what_is .text {
    padding: 48px;
    border: 0;
  }
  .what_is .text h6 {
    width: calc(100% + 96px);
    margin-left: -48px;
  }
}
@media (max-width: 550px) {
  .what_is .fond {
    padding: 24px;
  }
  .what_is .text {
    padding: 24px;
  }
  .what_is .text h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
  }
  .what_is .text h6 {
    padding: 24px;
    width: calc(100% + 48px);
    margin-left: -24px;
  }
}
.we_offer .fond {
  width: 100%;
  height: 70px;
  background: url("../img/ingredients/we_offer1920x1280.webp") no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.we_offer .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 70px;
}
.we_offer .block h3 {
  width: calc(50% - 35px);
}
.we_offer .block .text {
  width: calc(50% - 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.we_offer .block .fuckts {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 0;
}
.we_offer .block .fuckts .item {
  width: 33.3333333333%;
  padding: 24px 24px 0;
  border-left: 1px solid #eeeef0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.we_offer .block .fuckts .item h1 {
  background: url("../img/collagen_action.webp");
  background-size: contain;
  font-size: 160px;
  line-height: 160px;
  font-variant-numeric: normal;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.we_offer .block .fuckts .item h2 {
  margin-top: 30px;
}
.we_offer .block .fuckts .item p {
  margin: 30px 0 0 24px;
}
.we_offer .block .fuckts .item:nth-child(2) h1 {
  background: url("../img/ingr_img1.webp");
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.we_offer .block .fuckts .item:nth-child(3) h1 {
  background: url("../img/ingredients/positive_changes800x800.webp");
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.we_offer .block .fuckts .item:last-child {
  border-right: 1px solid #eeeef0;
}

@media (max-width: 1300px) {
  .we_offer .block .fuckts .item {
    width: 50%;
  }
  .we_offer .block .fuckts .item:nth-child(2) {
    border-right: 1px solid #eeeef0;
  }
}
@media (max-width: 900px) {
  .we_offer .block h3,
  .we_offer .block .text {
    width: 100%;
  }
  .we_offer .block .fuckts .item {
    width: 100%;
    border: 0;
  }
  .we_offer .block .fuckts .item:nth-child(2),
  .we_offer .block .fuckts .item:last-child {
    border: 0;
  }
}
@media (max-width: 550px) {
  .we_offer .block h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
  }
  .we_offer .block .fuckts .item h1 {
    font-size: 80px;
    line-height: 80px;
  }
  .we_offer .block .fuckts .item h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 20px;
  }
  .we_offer .block .fuckts .item p {
    margin: 20px 0 0 24px;
  }
}
.positive_changes {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.positive_changes .left {
  width: calc(33.3333333333% - 10px);
  padding: 70px;
  background: url("../img/ingredients/positive_changes800x800.webp") no-repeat;
  background-size: cover;
  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;
}
.positive_changes .left h3 {
  color: #fff;
}
.positive_changes .left h6 {
  padding: 48px;
  background-color: #fff;
  color: #0500be;
}
.positive_changes .gif {
  width: 20px;
}
.positive_changes .gif img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.positive_changes .right {
  width: calc(66.6666666667% - 10px);
  padding: 70px;
  background: url("../img/ingredients/positive_changes800x800.webp") no-repeat;
  background-size: cover;
  position: relative;
}
.positive_changes .right .fond {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.positive_changes .right .list {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.positive_changes .right .list p {
  color: #fff;
  width: calc(50% - 12px);
}
.positive_changes .right .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 1250px) {
  .positive_changes .left {
    width: 100%;
  }
  .positive_changes .left h3 {
    margin-bottom: 70px;
  }
  .positive_changes .gif {
    width: 100%;
    height: 20px;
  }
  .positive_changes .right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .positive_changes .left {
    padding: 48px;
  }
  .positive_changes .left h3 {
    margin-bottom: 48px;
  }
  .positive_changes .right {
    padding: 48px;
  }
}
@media (max-width: 550px) {
  .positive_changes .left {
    padding: 24px;
  }
  .positive_changes .left h3 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
  }
  .positive_changes .left h6 {
    padding: 24px;
  }
  .positive_changes .right {
    padding: 24px;
  }
  .positive_changes .right .list {
    margin-bottom: 48px;
  }
  .positive_changes .right .list p {
    width: 100%;
  }
}
.effectOFcollagen {
  max-width: 1920px;
  width: 100%;
  height: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.effectOFcollagen.bcg1 {
  background: -o-radial-gradient(
    0% 50%,
    100% 100%,
    #fff 0%,
    #fff4e9 30.21%,
    #edf7ff 100%
  );
  background: radial-gradient(
    100% 100% at 0% 50%,
    #fff 0%,
    #fff4e9 30.21%,
    #edf7ff 100%
  );
}
.effectOFcollagen.bcg2 {
  background: -o-radial-gradient(
    0% 50%,
    100% 100%,
    #fff 0%,
    #efffed 30.21%,
    #edf7ff 100%
  );
  background: radial-gradient(
    100% 100% at 0% 50%,
    #fff 0%,
    #efffed 30.21%,
    #edf7ff 100%
  );
}
.effectOFcollagen.bcg3 {
  background: -o-radial-gradient(
    0% 50%,
    100% 100%,
    #fff 0%,
    #d9eaff 30.21%,
    #edf7ff 100%
  );
  background: radial-gradient(
    100% 100% at 0% 50%,
    #fff 0%,
    #d9eaff 30.21%,
    #edf7ff 100%
  );
}
.effectOFcollagen .anim {
  width: 800px;
  height: 800px;
  position: relative;
  overflow: hidden;
}
.effectOFcollagen .anim div {
  position: absolute;
  border: 2px solid #eeeef0;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
}
.effectOFcollagen .anim div h6 {
  position: absolute;
  top: calc(50% - 24px);
  right: 25px;
  width: 100px;
  color: #8e8ea4;
  text-align: center;
}
.effectOFcollagen .anim div.on h6 {
  right: 150px;
  color: #0500be;
}
.effectOFcollagen .anim div.on ~ div:hover h6 {
  right: 25px;
}
.effectOFcollagen .anim div:hover {
  border: 2px solid transparent;
}
.effectOFcollagen .anim div:hover h6 {
  color: #0500be;
  right: 150px;
}
.effectOFcollagen .anim div:hover ~ .on h6 {
  right: 25px;
}
.effectOFcollagen .anim .big {
  width: 1400px;
  height: 1400px;
  left: -700px;
  top: -300px;
  z-index: 1;
}
.effectOFcollagen .anim .big:hover {
  background: -o-radial-gradient(
    50% 50%,
    50% 50%,
    #fff 0%,
    #d9eaff 30.21%,
    #edf7ff 100%
  );
  background: radial-gradient(
    50% 50% at 50% 50%,
    #fff 0%,
    #d9eaff 30.21%,
    #edf7ff 100%
  );
}
.effectOFcollagen .anim .big:hover + .medium {
  width: 600px;
  height: 600px;
  left: -300px;
  top: 100px;
}
.effectOFcollagen .anim .big:hover + .medium + .small {
  width: 300px;
  height: 300px;
  left: -150px;
  top: 250px;
}
.effectOFcollagen .anim .big.on {
  border: 2px solid #0500be;
  background: #fff;
}
.effectOFcollagen .anim .big.on + .medium {
  width: 600px;
  height: 600px;
  left: -300px;
  top: 100px;
}
.effectOFcollagen .anim .big.on + .medium + .small {
  width: 300px;
  height: 300px;
  left: -150px;
  top: 250px;
}
.effectOFcollagen .anim .medium {
  width: 1100px;
  height: 1100px;
  left: -550px;
  top: -150px;
  z-index: 2;
}
.effectOFcollagen .anim .medium:hover {
  background: -o-radial-gradient(
    50% 50%,
    50% 50%,
    #fff 0%,
    #efffed 30.21%,
    #edf7ff 100%
  );
  background: radial-gradient(
    50% 50% at 50% 50%,
    #fff 0%,
    #efffed 30.21%,
    #edf7ff 100%
  );
}
.effectOFcollagen .anim .medium:hover + .small {
  width: 300px;
  height: 300px;
  left: -150px;
  top: 250px;
}
.effectOFcollagen .anim .medium.on {
  border: 2px solid #0500be;
  background: #fff;
}
.effectOFcollagen .anim .medium.on + .small {
  width: 300px;
  height: 300px;
  left: -150px;
  top: 250px;
}
.effectOFcollagen .anim .medium.on + .small:hover {
  width: 800px;
  height: 800px;
  left: -400px;
  top: 0;
}
.effectOFcollagen .anim .small {
  width: 800px;
  height: 800px;
  left: -400px;
  top: 0;
  z-index: 3;
}
.effectOFcollagen .anim .small:hover {
  background: -o-radial-gradient(
    50% 50%,
    50% 50%,
    #fff 0%,
    #fff4e9 30.21%,
    #edf7ff 100%
  );
  background: radial-gradient(
    50% 50% at 50% 50%,
    #fff 0%,
    #fff4e9 30.21%,
    #edf7ff 100%
  );
}
.effectOFcollagen .anim .small.on {
  border: 2px solid #0500be;
  background: #fff;
}
.effectOFcollagen .text {
  width: calc(100% - 800px);
  margin-left: auto;
  padding-right: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}
.effectOFcollagen .text .slider .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.effectOFcollagen .text .control {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  padding: 18px 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.effectOFcollagen .text .end {
  font-size: 14px;
  line-height: 20px;
  padding: 24px 0;
}

@media (max-width: 1250px) {
  .effectOFcollagen {
    -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;
    height: initial;
    overflow: hidden;
  }
  .effectOFcollagen .text {
    width: 100%;
    padding: 70px;
  }
  .effectOFcollagen .text .control {
    margin: 0 auto;
  }
  .effectOFcollagen .anim {
    width: 1400px;
    height: 450px;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
  .effectOFcollagen .anim div h6 {
    top: 51px;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    left: 0;
    right: 0;
    margin: auto;
  }
  .effectOFcollagen .anim div.on h6 {
    left: 0;
    right: 0;
    margin: auto;
    color: #0500be;
  }
  .effectOFcollagen .anim div.on ~ div:hover h6 {
    left: 0;
    right: 0;
    margin: auto;
  }
  .effectOFcollagen .anim div:hover h6 {
    left: 0;
    right: 0;
    margin: auto;
  }
  .effectOFcollagen .anim div:hover ~ .on h6 {
    left: 0;
    right: 0;
    margin: auto;
  }
  .effectOFcollagen .anim .big {
    top: 0;
    left: 0;
  }
  .effectOFcollagen .anim .big:hover + .medium,
  .effectOFcollagen .anim .big.on + .medium {
    width: 1100px;
    height: 1100px;
    left: 150px;
    top: 150px;
  }
  .effectOFcollagen .anim .big:hover + .medium + .small,
  .effectOFcollagen .anim .big.on + .medium + .small {
    width: 800px;
    height: 800px;
    left: 300px;
    top: 300px;
  }
  .effectOFcollagen .anim .medium {
    top: 150px;
    left: 150px;
  }
  .effectOFcollagen .anim .medium:hover + .small,
  .effectOFcollagen .anim .medium.on + .small {
    width: 800px;
    height: 800px;
    left: 300px;
    top: 300px;
  }
  .effectOFcollagen .anim .medium:hover + .small:hover,
  .effectOFcollagen .anim .medium.on + .small:hover {
    left: 300px;
    top: 300px;
  }
  .effectOFcollagen .anim .small {
    top: 300px;
    left: 300px;
  }
}
@media (max-width: 768px) {
  .effectOFcollagen .text {
    padding: 48px;
  }
}
@media (max-width: 550px) {
  .effectOFcollagen .text {
    padding: 24px;
  }
}
.optimal_compsumption {
  background-color: #f5f5f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
.optimal_compsumption .item {
  width: calc((100% - 96px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.optimal_compsumption .item img {
  width: 72px;
}
.optimal_compsumption .item .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.optimal_compsumption .item.white {
  background-color: #fff;
  gap: 48px;
  padding: 24px;
}
.optimal_compsumption .item.white .text {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1600px) {
  .optimal_compsumption .item {
    width: calc((100% - 48px) / 2);
  }
}
@media (max-width: 1100px) {
  .optimal_compsumption .item {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .item h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
  }
}
.green_investment {
  background: url("../img/ingredients/greet_investment.webp") no-repeat 50% 50%;
  background-size: cover;
  height: 700px;
  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;
}
.green_investment div {
  max-width: 400px;
  width: 100%;
  padding: 48px;
  background-color: #fff;
}
.green_investment div h6 {
  background: url("../img/ingredients/greet_investment.webp") no-repeat 50% 50%;
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 550px) {
  .green_investment {
    padding: 96px 24px;
    height: initial;
  }
  .green_investment div {
    padding: 24px;
  }
}
.order .main_title .fond {
  background: url("../img/order/title.webp") no-repeat;
  background-size: cover;
  -webkit-animation: 20s infinite order_bcg_anim;
  animation: 20s infinite order_bcg_anim;
}
.order .main_title .text {
  padding: 0 0 48px;
}
.order .main_title .text h3 {
  width: 100%;
}
.order form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px 70px;
  position: relative;
}
.order form h4 {
  text-align: center;
  padding: 48px 0 24px;
}
.order form .left {
  width: calc(50% - 24px);
}
.order form .left .contact_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.order form .left .contact_details .field {
  width: calc(50% - 12px);
}
.order form .left .delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #0500be;
}
.order form .left .delivery label {
  padding: 12px 0;
}
.order form .left .delivery .drop {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  display: none;
}
.order form .left .delivery .drop .field {
  margin-bottom: 12px;
}
.order form .left .delivery .drop .field:last-child {
  margin-bottom: 0;
}
.order form .left .delivery .drop > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.order form .left .delivery .drop > div .field {
  width: calc(50% - 12px);
}
.order form .left .pay {
  border-bottom: 1px solid #0500be;
}
.order form .left .pay label {
  padding: 24px 0;
}
.order form .left .pay label img:nth-child(3) {
  margin-left: auto;
}
.order form .left .comment {
  padding: 24px 0;
  border-bottom: 1px solid #0500be;
}
.order form .left .promo_code {
  padding: 24px 0;
  border-bottom: 1px solid #0500be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.order form .left .promo_code .field {
  width: calc(100% - 146px);
  gap: 0;
}
.order form .left .promo_code .field p {
  margin-bottom: 4px;
}
.order form .left .promo_code .field input:focus {
  border: 1px solid #eb5578;
}
.order form .left .promo_code .field span {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  color: #fff;
  padding: 10px 12px 6px;
  background: url("../img/order/error_fond.webp") no-repeat 50%;
  background-size: cover;
}
.order form .left .promo_code button {
  margin-top: 20px;
  padding: 12px;
  height: 44px;
  width: 136px;
  color: #fff;
  background-color: #000;
}
.order form .left .promo_code button:hover {
  background-color: #0500be;
}
.order form .left .promo_code h6 {
  margin-top: 2px;
  color: #0500be;
}
.order form .left .bottom {
  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;
  gap: 24px;
  padding-top: 70px;
}
.order form .left .bottom label {
  width: calc(100% - 295px);
}
.order form .left .bottom .btn {
  width: 271px;
}
.order form .right {
  position: sticky;
  top: 0;
  left: 0;
  width: calc(50% - 24px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.order form .right .item {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #eeeef0;
  position: relative;
}
.order form .right .item .img {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.order form .right .item .img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.order form .right .item .name {
  width: calc(100% - 340px);
  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;
  gap: 8px;
}
.order form .right .item .name p {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
}
.order form .right .item .name h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  width: 80px;
  text-align: center;
  flex-grow: 1;
}
.order form .right .item .counter {
  width: 96px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
}
.order form .right .item .sum {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  width: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  color: #0500be;
}
.order form .right .item .discount {
  position: absolute;
  left: 108px;
  top: 76px;
  width: calc(100% - 108px);
  font-size: 14px;
  line-height: 20px;
  color: #0500be;
  text-align: center;
  white-space: nowrap;
}
.order form .right .item .discount_promo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 12px;
  background: url("../img/order/error_fond.webp") no-repeat 50%;
  background-size: cover;
}
.order form .right .item .discount_promo p {
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: calc(100% - 34px);
}
.order form .right .item .discount_promo button {
  width: 24px;
  height: 24px;
  background: url("../img/x12_white.svg") no-repeat 50%;
}
.order form .right .item .discount_promo button:hover {
  background: url("../img/x12_black.svg") no-repeat 50%;
}
.order form .right .amount {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.order form .right .amount .stroke {
  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;
  gap: 8px;
}
.order form .right .amount .stroke p {
  font-size: 14px;
  line-height: 20px;
}
.order form .right .amount .stroke h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.order form .right .amount .stroke:last-child {
  padding: 12px 0;
  border-top: 1px solid #eeeef0;
}
.order form .right .amount .stroke:last-child h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
.order .thanks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px;
  gap: 48px;
  opacity: 0;
  z-index: -1;
}
.order .thanks.on {
  opacity: 1;
  z-index: 1001;
}
.order .thanks .cont {
  padding: 70px;
  background-color: #fff;
}
.order .thanks .cont h3 {
  background: url("../img/ingr_img1.webp");
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.order .thanks .close {
  width: 48px;
  height: 48px;
  background: url("../img/close_white16x16.svg") no-repeat 50% 50%;
}
.order .thanks .close:hover {
  background: url("../img/close_white16x16.svg") no-repeat 50% 50% #000;
}

@-webkit-keyframes order_bcg_anim {
  0% {
    background: url("../img/order/title.webp") no-repeat 0% 0%;
    background-size: cover;
  }
  50% {
    background: url("../img/order/title.webp") no-repeat 100% 50%;
    background-size: cover;
  }
  100% {
    background: url("../img/order/title.webp") no-repeat 0% 0%;
    background-size: cover;
  }
}

@keyframes order_bcg_anim {
  0% {
    background: url("../img/order/title.webp") no-repeat 0% 0%;
    background-size: cover;
  }
  50% {
    background: url("../img/order/title.webp") no-repeat 100% 50%;
    background-size: cover;
  }
  100% {
    background: url("../img/order/title.webp") no-repeat 0% 0%;
    background-size: cover;
  }
}
@media (max-width: 1100px) {
  .order form .left {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order form .right {
    width: 100%;
    position: relative;
  }
}
@media (max-width: 768px) {
  .order .main_title .text .block {
    padding: 0 48px;
  }
  .order form {
    padding: 0 48px 70px;
  }
  .order .thanks {
    padding: 48px;
  }
  .order .thanks .cont {
    padding: 48px;
  }
}
@media (max-width: 650px) {
  .order form .left .bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .order form .left .bottom label {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .order .main_title .text {
    padding: 0 0 24px;
  }
  .order .main_title .text .block {
    padding: 0 24px;
  }
  .order form {
    padding: 0 24px 48px;
    gap: 24px;
  }
  .order form h4 {
    padding: 24px 0;
    font-size: 20px;
    line-height: 24px;
  }
  .order form .left .contact_details {
    gap: 12px;
  }
  .order form .left .contact_details .field {
    width: 100%;
  }
  .order form .left .delivery .drop > div .field {
    width: 100%;
  }
  .order form .left .bottom {
    padding-top: 48px;
  }
  .order form .right .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 12px 4px;
    padding: 24px 0;
  }
  .order form .right .item .name {
    width: calc(100% - 104px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .order form .right .item .name h6 {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
  }
  .order form .right .item .discount {
    width: 100%;
    position: relative;
    top: initial;
    left: initial;
    text-align: left;
    white-space: wrap;
  }
  .order form .right .item .discount_promo {
    margin-bottom: 0;
  }
  .order .thanks {
    padding: 24px;
    gap: 24px;
  }
  .order .thanks .cont {
    padding: 48px 24px;
  }
}
@media (max-width: 510px) {
  .order .main_title .filters .btns {
    width: calc(100% - 16px);
    overflow: auto;
    margin: 0 0 0 auto;
  }
  .order .main_title .filters .btns::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
@media (max-width: 450px) {
  .order form .left .promo_code {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }
  .order form .left .promo_code .field {
    width: 100%;
  }
}
.ingridient_unit .main_title .fond {
  background: url("../img/order/title.webp") no-repeat;
  background-size: cover;
  -webkit-animation: 20s infinite ingridient_unit_bcg_anim;
  animation: 20s infinite ingridient_unit_bcg_anim;
}
.ingridient_unit .main_title .text h3 {
  width: 100%;
}
.ingridient_unit .cont {
  position: relative;
}
.ingridient_unit .cont .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.ingridient_unit .cont .text {
  position: relative;
  z-index: 1;
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 0;
}
.ingridient_unit .cont .text .var1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.ingridient_unit .cont .text .var2,
.ingridient_unit .cont .text .var3,
.ingridient_unit .cont .text .var4 {
  width: 50%;
  padding: 24px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.ingridient_unit .cont .text .var2 h1,
.ingridient_unit .cont .text .var3 h1,
.ingridient_unit .cont .text .var4 h1 {
  background: url("../img/collagen_action.webp");
  background-size: contain;
  font-size: 160px;
  line-height: 160px;
  font-variant-numeric: normal;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ingridient_unit .cont .text .var2 h2,
.ingridient_unit .cont .text .var3 h2,
.ingridient_unit .cont .text .var4 h2 {
  margin-bottom: 20px;
}
.ingridient_unit .cont .text .var2 p,
.ingridient_unit .cont .text .var3 p,
.ingridient_unit .cont .text .var4 p {
  margin: 0 0 35px 24px;
}
.ingridient_unit .cont .text .var3 h1 {
  background: url("../img/ingr_img1.webp");
  background-size: contain;
  font-size: 160px;
  line-height: 160px;
  font-variant-numeric: normal;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ingridient_unit .cont .text .var4 {
  width: 100%;
}
.ingridient_unit .cont .text .btn {
  width: 194px;
}

@-webkit-keyframes ingridient_unit_bcg_anim {
  0% {
    background: url("../img/order/title.webp") no-repeat 0% 50%;
    background-size: cover;
  }
  50% {
    background: url("../img/order/title.webp") no-repeat 100% 100%;
    background-size: cover;
  }
  100% {
    background: url("../img/order/title.webp") no-repeat 0% 50%;
    background-size: cover;
  }
}

@keyframes ingridient_unit_bcg_anim {
  0% {
    background: url("../img/order/title.webp") no-repeat 0% 50%;
    background-size: cover;
  }
  50% {
    background: url("../img/order/title.webp") no-repeat 100% 100%;
    background-size: cover;
  }
  100% {
    background: url("../img/order/title.webp") no-repeat 0% 50%;
    background-size: cover;
  }
}
@media (max-width: 950px) {
  .ingridient_unit .cont .text .var2,
  .ingridient_unit .cont .text .var3 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ingridient_unit .cont .text {
    padding: 48px;
  }
}
@media (max-width: 700px) {
  .ingridient_unit .cont .text .var2,
  .ingridient_unit .cont .text .var3,
  .ingridient_unit .cont .text .var4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ingridient_unit .cont .text .var2 p,
  .ingridient_unit .cont .text .var3 p,
  .ingridient_unit .cont .text .var4 p {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .ingridient_unit .cont .text {
    padding: 24px;
    gap: 24px 0;
  }
  .ingridient_unit .cont .text .var2 h1,
  .ingridient_unit .cont .text .var3 h1,
  .ingridient_unit .cont .text .var4 h1 {
    font-size: 100px;
    line-height: 100px;
  }
  .ingridient_unit .cont .text .var2 h2,
  .ingridient_unit .cont .text .var3 h2,
  .ingridient_unit .cont .text .var4 h2 {
    margin: 0 0 5px 0;
  }
}
.brand_life {
  padding-bottom: 48px;
}
.brand_life .title h3 {
  max-width: 1920px;
  width: 100%;
  padding: 24px 70px;
  margin: 0 auto;
}
.brand_life .slider_block {
  margin: 0 48px;
  padding: 0 0 48px;
  overflow: auto;
}
.brand_life .slider_block::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.brand_life .slider_block::-webkit-scrollbar-track {
  background: #eeeef0;
  border-radius: 4px;
}
.brand_life .slider_block::-webkit-scrollbar-thumb {
  background-color: #8e8ea4;
  border-radius: 4px;
}
.brand_life .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.brand_life .slider .item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 400px;
  height: 440px;
  margin-right: 1px;
}
.brand_life .slider .item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.brand_life .slider .item a .main {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.brand_life .slider .item a .text {
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 2;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.brand_life .slider .item a .text .top {
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background-color: #fff;
}
.brand_life .slider .item a .text .bottom {
  height: 40px;
  background: url("../img/arrow_white.svg") no-repeat 50% 50% #fff;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.brand_life .slider .item a:hover .main {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.brand_life .slider .item a:hover .text {
  bottom: 0;
}
.brand_life .slider .item a:hover .text .bottom {
  background: url("../img/arrow_white.svg") no-repeat 50% 50% #0500be;
}
.brand_life .slider .item.big {
  width: 800px;
  height: 880px;
}

@media (max-width: 900px) {
  .brand_life .title h3 {
    padding: 24px 48px;
  }
  .brand_life .slider_block {
    margin: 0 24px;
    padding: 0 0 24px;
  }
  .brand_life .slider_block .slider .item {
    width: 50%;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    aspect-ratio: 10/11;
  }
  .brand_life .slider_block .slider .item.big {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .brand_life .title h3 {
    padding: 24px;
  }
  .brand_life .slider_block .slider .item {
    width: 200%;
    aspect-ratio: 20/11;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .brand_life .slider_block .slider .item.big {
    width: 100%;
    aspect-ratio: 10/11;
  }
  .brand_life .slider_block .slider .item.big a {
    width: 100%;
  }
  .brand_life .slider_block .slider .item a {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50%;
  }
}
.join_us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #000;
}
.join_us h6 {
  text-align: center;
}
.join_us .stories {
  max-width: 1460px;
  width: 100%;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  overflow: auto;
}
.join_us .stories::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
}
.join_us .stories::-webkit-scrollbar-track {
  background: #eeeef0;
  border-radius: 4px;
}
.join_us .stories::-webkit-scrollbar-thumb {
  background-color: #8e8ea4;
  border-radius: 4px;
}
.join_us .stories a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 347px;
  height: 347px;
}
.join_us .stories a img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.event .main_title .fond {
  background: url("../img/order/title.webp") no-repeat;
  background-size: cover;
  -webkit-animation: 20s infinite ingridient_unit_bcg_anim;
  animation: 20s infinite ingridient_unit_bcg_anim;
}
.event .main_title .text h3 {
  width: 100%;
}
.event .cont {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.event .cont .left {
  width: 50%;
  padding: 70px;
}
.event .cont .left .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-height: 430px;
  padding-right: 24px;
  overflow: auto;
}
.event .cont .left .text .title,
.event .cont .left .text .disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.event .cont .left .text .title h6,
.event .cont .left .text .disc h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.event .cont .left .text .speakers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.event .cont .left .text .speakers .unit {
  padding: 8px;
}
.event .cont .left .text .speakers .unit span {
  margin: 8px 0 0 28px;
  font-size: 14px;
  line-height: 20px;
  color: #8e8ea4;
}
.event .cont .right {
  width: 50%;
}
.event .cont .right .slider {
  width: 100%;
  height: 500px;
}
.event .cont .right .slider .item img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.event .cont .right .control {
  padding: 23px 18px;
}

@media (max-width: 768px) {
  .event .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .event .cont .left {
    width: 100%;
    padding: 48px;
  }
  .event .cont .left .text {
    max-height: initial;
  }
  .event .cont .right {
    width: 100%;
    height: -moz-max-content;
    height: -webkit-max-content;
    height: max-content;
  }
}
@media (max-width: 550px) {
  .event .cont .left {
    padding: 24px;
  }
  .event .cont .right .slider {
    height: 220px;
  }
  .event .cont .right .slider .item img {
    height: 220px;
  }
}
.other_events {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.other_events .title {
  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;
  border-top: 1px solid #eeeef0;
  padding: 24px 70px;
}
.other_events .slider {
  width: 100%;
  overflow: auto;
  padding: 0 0 24px;
  margin: 0 0 24px;
}
.other_events .slider .item {
  display: block;
  width: 399px;
  height: 440px;
  position: relative;
  overflow: hidden;
}
.other_events .slider .item .main {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.other_events .slider .item .text {
  position: absolute;
  left: 0;
  z-index: 2;
  bottom: -40px;
  width: 100%;
}
.other_events .slider .item .text .top {
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background-color: #fff;
}
.other_events .slider .item .text .bottom {
  height: 40px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background: url("../img/arrow_white.svg") no-repeat 50% 50% #0500be;
}
.other_events .slider .item:hover .main {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.other_events .slider .item:hover .text {
  bottom: 0;
}
.other_events .crutch {
  display: none;
  margin: 0 24px 24px;
}

@media (max-width: 768px) {
  .other_events .title {
    padding: 24px 48px;
  }
}
@media (max-width: 550px) {
  .other_events .title {
    padding: 24px;
  }
  .other_events .title .btn {
    display: none;
  }
  .other_events .crutch {
    display: block;
  }
}
@media (max-width: 400px) {
  .other_events .slider .item {
    width: 360px;
    height: 396px;
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  position: relative;
}
.about .left {
  width: 400px;
  height: 664px;
  background: url("../img/about/about_fond.webp") no-repeat 50% 50%;
  background-size: cover;
}
.about .right {
  width: calc(100% - 424px);
  height: 664px;
  background: url("../img/about/about_skin2.webp") no-repeat 50% 50%;
  background-size: cover;
}
.about .text {
  position: absolute;
  left: 70px;
  top: 0;
  bottom: 0;
  margin: auto 70px;
  width: clamp(50%, 85% - 140px, 684px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  background-color: #fff;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about .left {
    width: 100%;
    height: 400px;
  }
  .about .right {
    width: 100%;
    height: 664px;
  }
  .about .text {
    top: 96px;
    left: 96px;
    bottom: initial;
    width: calc(100% - 192px);
    padding: 48px;
    margin: 0;
  }
}
@media (max-width: 550px) {
  .about .text {
    top: 48px;
    left: 48px;
    bottom: initial;
    width: calc(100% - 96px);
    padding: 24px;
    margin: 0;
  }
}
.about_products {
  border-top: 1px solid #eeeef0;
  border-bottom: 1px solid #eeeef0;
  padding-bottom: 20px;
}
.about_products h5 {
  margin: 24px 0 48px;
}
.about_products .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.about_products .cont .img {
  width: calc(50% - 24px);
  background-size: cover;
  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;
  overflow: hidden;
  position: relative;
}
.about_products .cont .img img {
  position: relative;
  z-index: 1;
  width: 100%;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 10s ease;
  -o-transition: all 10s ease;
  transition: all 10s ease;
}
.about_products .cont .img img.big {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.about_products .cont .text {
  width: calc(50% - 24px);
}
.about_products .cont .text p {
  margin-bottom: 12px;
}
.about_products .cont .text .btn {
  margin-top: 48px;
}

@media (max-width: 768px) {
  .about_products .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about_products .cont .img {
    width: 100%;
  }
  .about_products .cont .text {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .about_products h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
  }
  .about_products h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin: 24px 0;
  }
  .about_products .cont {
    gap: 24px;
  }
  .about_products .cont .img {
    height: 300px;
  }
  .about_products .cont .text .btn {
    margin-top: 24px;
  }
}
.brand_concept {
  max-width: 1920px;
  width: 100%;
  height: 1120px;
  margin: 0 auto;
  padding: 70px 0;
  position: relative;
}
.brand_concept .back_fond {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 840px;
  top: 140px;
  bottom: 140px;
  background: url("../img/about/brand_concept2.webp") 50% no-repeat;
  background-size: cover;
}
.brand_concept .cont {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  padding: 0 70px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.brand_concept .cont .square {
  position: relative;
  z-index: 1;
  width: 400px;
  min-height: 400px;
  padding: 48px;
}
.brand_concept .cont .square h5 {
  margin-bottom: 24px;
}
.brand_concept .cont .square:nth-child(1) {
  background: url("../img/about/square1.webp") no-repeat #fff;
  background-size: cover;
  margin: 0 auto auto 0;
}
.brand_concept .cont .square:nth-child(3) {
  background: url("../img/about/square2.webp") no-repeat #fff;
  background-size: cover;
  margin: auto 0 0 auto;
}
.brand_concept .cont .quote {
  width: 600px;
  height: 700px;
  padding: 48px;
  background: url("../img/about/quote.webp") no-repeat 50% 50%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  bottom: 70px;
  margin: auto;
  z-index: 0;
}
.brand_concept .cont .quote .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  width: 300px;
}
.brand_concept .cont .quote .text p:nth-child(1) {
  font-size: 14px;
  line-height: 20px;
}
.brand_concept .cont .quote .text h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.brand_concept .cont .quote .text:nth-child(1) {
  margin: 0 0 auto auto;
}
.brand_concept .cont .quote .text:nth-child(1) p,
.brand_concept .cont .quote .text:nth-child(1) h6 {
  text-align: right;
}
.brand_concept .cont .quote .text:nth-child(2) {
  margin: auto auto 0 0;
}

@media (max-width: 1050px) {
  .brand_concept {
    padding: 48px 0;
    height: initial;
  }
  .brand_concept .back_fond {
    height: calc(100% - 192px);
    top: 96px;
    bottom: 96px;
    background: url("../img/about/brand_concept3.webp") 50% no-repeat;
    background-size: cover;
  }
  .brand_concept .cont {
    padding: 0 48px;
    gap: 48px;
  }
  .brand_concept .cont .square {
    width: 100%;
    height: initial;
    margin: 0;
  }
  .brand_concept .cont .quote {
    position: relative;
    top: initial;
    right: initial;
    left: initial;
    bottom: initial;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    min-height: 700px;
    height: 100%;
    height: initial;
  }
}
@media (max-width: 550px) {
  .brand_concept {
    padding: 24px 0;
  }
  .brand_concept .back_fond {
    height: calc(100% - 96px);
    top: 48px;
    bottom: 48px;
  }
  .brand_concept .cont {
    padding: 0 24px;
    gap: 24px;
  }
  .brand_concept .cont .square {
    width: 100%;
    padding: 24px;
    min-height: 336px;
  }
  .brand_concept .cont .quote {
    padding: 24px;
    gap: 24px;
    min-height: initial;
  }
  .brand_concept .cont .quote .text {
    width: initial;
  }
}
.production {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-color: #0500be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1px;
}
.production .disc {
  width: calc((100% - 1px) / 2);
  background-color: #f5f5f9;
  padding: 70px;
}
.production .disc h3 {
  margin-bottom: 24px;
}
.production .disc p {
  margin-bottom: 12px;
}
.production .disc p:last-child {
  margin: 0;
}
.production .img_block {
  width: calc((100% - 1px) / 2);
  background-color: #f5f5f9;
  padding: 70px 70px 0;
}
.production .img_block .slider .item img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
  object-fit: cover;
}
.production .img_block .control {
  padding: 23px 18px;
}
.production .text {
  width: calc((100% - 2px) / 3);
  background-color: #fff;
  padding: 70px;
}
.production .text p {
  margin-bottom: 12px;
}
.production .text p:last-child {
  margin: 0;
}
.production .block {
  width: 100%;
  color: #fff;
  text-align: center;
}

@media (max-width: 1000px) {
  .production {
    background-color: #8e8ea4;
  }
  .production .disc {
    width: 100%;
    padding: 48px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .production .img_block {
    width: 100%;
    padding: 48px 48px 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .production .text {
    width: 100%;
    padding: 48px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .production .block {
    padding: 48px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    background-color: #0500be;
  }
}
@media (max-width: 550px) {
  .production {
    background-color: #f5f5f9;
  }
  .production .disc,
  .production .text {
    padding: 24px;
  }
  .production .img_block {
    padding: 0 24px;
  }
  .production .img_block .slider .item img {
    height: 218px;
  }
  .production .block {
    background-color: #0500be;
    padding: 24px;
  }
  .production .block h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
  }
}
.blog_top {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 0 0;
}
.blog_top .search {
  padding: 48px 70px;
}
.blog_top .search input {
  color: #8e8ea4;
  border: 1px solid #8e8ea4;
  padding: 12px 24px;
  width: 100%;
}
.blog_top .block {
  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;
  height: 100vh;
  background: url("../img/ingredients/what_is1250x860.webp") 50% 50% no-repeat;
  background-size: cover;
  color: #fff;
}
.blog_top .block .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.blog_top .block .bottom .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.blog_top .block .bottom .text .tag {
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}
.blog_top .block .bottom .text h4 {
  max-width: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .blog_top .search {
    padding: 24px 48px;
  }
}
@media (max-width: 550px) {
  .blog_top .search {
    padding: 12px 24px;
  }
  .blog_top .block {
    min-height: 460px;
    height: -moz-max-content;
    height: -webkit-max-content;
    height: max-content;
  }
  .blog_top .block h3 {
    font-size: 48px;
    font-weight: 300;
    line-height: 60px;
  }
}
.blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 70px;
}
.blog .division {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.blog .division .articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.blog .division .articles .img {
  width: calc(56.4% - 24px);
  height: 400px;
}
.blog .division .articles .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog .division .articles .text {
  width: calc(43.6% - 24px);
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.blog .division .articles .text a {
  display: block;
  padding: 24px 12px;
  border-bottom: 1px solid #000;
}
.blog .division .articles .text a:hover {
  background-color: #f5f5f9;
}
.blog .division .banner {
  padding: 70px;
  height: 500px;
  position: relative;
}
.blog .division .banner img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}
.blog .division .banner h1 {
  position: relative;
  z-index: 2;
  color: #fff;
}
.blog .division .slider {
  width: 100%;
}
.blog .division .slider a {
  display: block;
  width: 600px;
  height: 350px;
  position: relative;
  overflow: hidden;
  margin-right: 24px;
}
.blog .division .slider a .tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
}
.blog .division .slider a img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog .division .slider a .disc {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -40px;
}
.blog .division .slider a .disc .top {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  padding: 12px;
  background-color: #fff;
}
.blog .division .slider a .disc .bottom {
  height: 40px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background: url("../img/arrow_white.svg") no-repeat 50% 50% #0500be;
}
.blog .division .slider a:hover .disc {
  bottom: 0;
}

@media (max-width: 768px) {
  .blog {
    gap: 48px;
  }
  .blog .division .banner {
    padding: 48px;
  }
  .blog .division .articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
  .blog .division .articles .img {
    width: 100%;
    height: 336px;
  }
  .blog .division .articles .text {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 700px) {
  .blog .division .slider a {
    margin-right: 0;
  }
}
@media (max-width: 550px) {
  .blog {
    gap: 24px;
  }
  .blog .division .banner {
    padding: 24px;
    height: 312px;
  }
  .blog .division .banner h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 60px;
  }
  .blog .division .articles .img {
    width: 100%;
    height: 200px;
  }
}
.blog_article .main_title .fond {
  background: url("../img/order/title.webp") no-repeat;
  background-size: cover;
  -webkit-animation: 20s infinite ingridient_unit_bcg_anim;
  animation: 20s infinite ingridient_unit_bcg_anim;
}
.blog_article .main_title .text .block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blog_article .main_title .text h3 {
  width: 100%;
}
.blog_article .cont {
  max-width: 860px;
  width: 100%;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
.blog_article .cont .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.blog_article .cont img {
  width: 100%;
}
.blog_article .cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.blog_article .cont ul li {
  padding-left: 28px;
  position: relative;
  list-style: none;
}
.blog_article .cont ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #0500be;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: 6px;
}

@media (max-width: 768px) {
  .blog_article .cont {
    padding: 48px;
  }
}
@media (max-width: 550px) {
  .blog_article .cont {
    padding: 24px;
  }
}
.certificates .gallery.block {
  padding-right: 0;
}
.certificates .gallery.block .slider .item {
  width: 400px;
  margin-right: 24px;
}
.certificates .gallery.block .slider .item .img {
  height: 566px;
  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-color: #f5f5f9;
  margin-bottom: 12px;
  cursor: pointer;
}
.certificates .gallery.block .slider .item .img h6 {
  color: #8e8ea4;
}
.certificates .gallery.block .slider .item .img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.certificates .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px;
  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;
}
.certificates .modal.on {
  z-index: 1011;
  opacity: 1;
}
.certificates .modal .item {
  max-width: 565px;
  width: 100%;
  height: 100%;
  position: relative;
}
.certificates .modal .item .close {
  position: absolute;
  top: 24px;
  right: -24px;
  width: 24px;
  height: 24px;
  background: url("../img/x12_white.svg") no-repeat 50% 50%;
}
.certificates .modal .item .close:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.certificates .modal .item .title {
  padding: 12px 0;
  color: #fff;
}
.certificates .modal .item .img {
  width: 100%;
  height: calc(100% - 48px);
  background-color: #f5f5f9;
}
.certificates .modal .item .img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 768px) {
  .certificates .modal .item .close {
    top: 60px;
    right: 12px;
    background: url("../img/x12_black.svg") no-repeat 50% 50%;
  }
}
@media (max-width: 550px) {
  .certificates .gallery.block .slider .item {
    width: 300px;
  }
  .certificates .gallery.block .slider .item .img {
    height: 425px;
  }
}
.partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 70px;
}
.partners .text_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.partners .decor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  position: relative;
}
.partners .decor .img1 {
  width: calc(71.8% - 12px);
  height: 544px;
}
.partners .decor .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.partners .decor .img2 {
  width: calc(28.2% - 12px);
  height: 544px;
}
.partners .decor .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.partners .decor .text {
  position: absolute;
  top: 70px;
  right: 70px;
  max-width: 684px;
  width: 100%;
  padding: 70px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.partners .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
.partners .list .item {
  width: calc((100% - 48px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 48px 0;
  gap: 12px;
}
.partners .list .item h5 {
  padding-left: 46px;
  position: relative;
}
.partners .list .item h5::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url("../img/marker36x36.svg");
  position: absolute;
  top: -5px;
  left: 0;
}
.partners .list .item p {
  padding-left: 46px;
}
.partners .list .item.blue {
  background-color: #0500be;
  padding: 48px;
  color: #fff;
}
.partners .list .item.blue h3 {
  font-variant-numeric: normal;
}
.partners .list .item.blue p {
  padding: 0;
}

@media (max-width: 1050px) {
  .partners .list .item.blue h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
  }
}
@media (max-width: 1000px) {
  .partners .decor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .partners .decor .img1 {
    width: 100%;
    height: 664px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .partners .decor .img2 {
    width: 100%;
    height: 360px;
  }
  .partners .decor .text {
    max-width: calc(100% - 96px);
    padding: 48px;
    top: 48px;
    left: 48px;
  }
}
@media (max-width: 768px) {
  .partners {
    gap: 48px;
  }
  .partners .decor .img2 {
    height: 312px;
  }
  .partners .list {
    gap: 24px;
  }
  .partners .list .item {
    width: 100%;
    padding: 24px 0;
  }
}
@media (max-width: 550px) {
  .partners {
    gap: 24px;
  }
  .partners .decor .text {
    max-width: calc(100% - 48px);
    padding: 24px;
    top: 24px;
    left: 24px;
  }
  .partners .list {
    gap: 12px;
  }
  .partners .list .item {
    width: 100%;
    padding: 12px 0;
  }
  .partners .list .item.blue {
    padding: 24px;
  }
  .partners .list .item.blue h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
  }
}
.our_partners {
  padding: 70px 0;
  background-color: #f5f5f9;
}
.our_partners h3 {
  text-align: center;
  margin-bottom: 70px;
}
.our_partners .run_stroke {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.our_partners .run_stroke .marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-animation: run_img 10s linear infinite;
  animation: run_img 10s linear infinite;
}
.our_partners .run_stroke .marquee .item {
  width: 223px;
  height: 223px;
  background-color: #fff;
  padding: 24px;
  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;
}
.our_partners .run_stroke .marquee .item img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 768px) {
  .our_partners {
    padding: 48px 0;
  }
  .our_partners h3 {
    margin-bottom: 48px;
  }
}
@-webkit-keyframes run_img {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 24px));
    transform: translateX(calc(-100% - 24px));
  }
}
@keyframes run_img {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 24px));
    transform: translateX(calc(-100% - 24px));
  }
}
.profile .main_title .fond {
  -webkit-animation: profile_bcg_anim infinite 20s;
  animation: profile_bcg_anim infinite 20s;
}
.profile .main_title .text {
  padding: 24px 0 48px;
}
.profile .main_title .text .block h3 {
  width: 100%;
}
.profile .my_orders {
  max-width: 1140px;
  width: 100%;
  padding: 70px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}
.profile .my_orders .day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 24px;
  border-bottom: 1px solid #0500be;
  font-size: 14px;
  line-height: 20px;
}
.profile .my_orders .day .date {
  width: 100%;
  padding: 12px;
  color: #8e8ea4;
}
.profile .my_orders .day .item {
  width: calc((100% - 24px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
}
.profile .my_orders .day .item img {
  width: 48px;
  height: 48px;
}
.profile .my_orders .day .item .name {
  margin-right: auto;
}
.profile .my_orders .day .item .old_price {
  color: #8e8ea4;
  text-decoration: line-through;
}
.profile .my_orders .day .item .qty {
  width: 36px;
  text-align: center;
  color: #8e8ea4;
}
.profile .my_orders .day .item .total_price {
  color: #0500be;
}
.profile .my_orders .day .total {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 12px;
  padding: 12px;
}
.profile .my_orders .day .total p {
  color: #8e8ea4;
}
.profile .my_orders .day .total span {
  color: #0500be;
}
.profile .favourites {
  max-width: 1388px;
  width: 100%;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
}
.profile .favourites .item {
  width: clamp(312px, 33%, 400px);
  height: 440px;
  cursor: pointer;
}
.profile .favourites .item .cont {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.profile .favourites .item .cont .close12 {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
}
.profile .favourites .item .cont .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.profile .favourites .item .cont .fond img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.profile .favourites .item .cont .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #fff;
}
.profile .favourites .item .cont .img img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 48px auto 0;
}
.profile .favourites .item .cont .text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4px 8px;
}
.profile .favourites .item .cont .text .name {
  width: calc(100% - 88px);
}
.profile .favourites .item .cont .text p {
  font-size: 14px;
  line-height: 20px;
  color: #8e8ea4;
}
.profile .favourites .item .bottom {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #f5f5f9;
  background: url("../img/header/cart_black.svg") no-repeat 50% 50%;
}
.profile .favourites .item:hover .cont .fond img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.profile .favourites .item:hover .cont .img {
  opacity: 0;
}
.profile .favourites .item:hover .cont .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.profile .favourites .item:hover .cont .text {
  color: #fff;
}
.profile .favourites .item:hover .cont .text p {
  height: 0;
}
.profile .favourites .item:hover .bottom {
  background: url("../img/header/cart_blue.svg") no-repeat 50% 50%;
}
.profile form {
  max-width: 940px;
  width: 100%;
  padding: 70px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}
.profile form .stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.profile form .stack h6 {
  width: 100%;
  margin-bottom: 12px;
}
.profile form .stack p {
  width: 100%;
}
.profile form .stack .field {
  width: calc((100% - 24px) / 2);
  position: relative;
}
.profile form .stack .field .eye {
  position: absolute;
  top: 32px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: url("../img/eye.svg");
}
.profile form .btn {
  padding: 11px;
  width: 150px;
  margin: 0 auto 22px;
}
.profile form .exit {
  max-width: 400px;
  width: 100%;
  height: 28px;
  font-size: 14px;
  line-height: 20px;
  background-color: #f5f5f9;
  border: 1px solid #f5f5f9;
  margin: 0 auto;
}
.profile form .exit:hover {
  border: 1px solid #0500be;
  color: #0500be;
}

@media (max-width: 1100px) {
  .profile .my_orders .day .item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .profile .main_title .text {
    padding: 24px 0;
  }
  .profile .my_orders {
    padding: 48px;
    gap: 24px;
  }
  .profile .my_orders .day .date {
    padding: 12px 0;
  }
  .profile .my_orders .day .item {
    width: 100%;
  }
  .profile .favourites {
    padding: 48px;
  }
  .profile form {
    padding: 0 48px;
    gap: 0;
  }
  .profile form .stack {
    padding: 24px 0;
  }
  .profile form .btn {
    width: 150px;
    margin: 24px auto 48px;
  }
}
@media (max-width: 605px) {
  .profile .main_title .filters .btns {
    width: calc(100% - 16px);
    overflow: auto;
    margin: 0 0 0 auto;
  }
  .profile .main_title .filters .btns::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
@media (max-width: 550px) {
  .profile .my_orders {
    padding: 24px;
  }
  .profile .my_orders .day .item {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
  }
  .profile .my_orders .day .item .name {
    width: calc(100% - 56px);
  }
  .profile .my_orders .day .item .qty {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .profile .my_orders .day .item .total_price {
    margin-left: auto;
  }
  .profile .favourites {
    padding: 24px;
  }
  .profile form .stack {
    gap: 24px;
  }
  .profile form .stack .field {
    width: 100%;
  }
}
.contacts .main_title .fond {
  -webkit-animation: profile_bcg_anim infinite 20s;
  animation: profile_bcg_anim infinite 20s;
}
.contacts .cont {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.contacts .cont .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  position: absolute;
  top: 70px;
  right: calc((50% - 400px) / 2);
  max-width: 400px;
  width: 100%;
}
.contacts .cont .btns button {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px;
  color: #8e8ea4;
  border-bottom: 1px solid transparent;
  width: calc((100% - 12px) / 2);
}
.contacts .cont .btns button.on {
  color: #0500be;
  border-bottom: 1px solid #0500be;
}
.contacts .cont .part {
  display: none;
}
.contacts .cont .part.on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts .cont .part .img {
  width: 50%;
}
.contacts .cont .part .img img {
  width: 100%;
  height: 840px;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts .cont .part .text {
  padding: 150px 24px 70px;
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
}
.contacts .cont .part .text .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.contacts .cont .part .text .info .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px 24px;
}
.contacts .cont .part .text .info .unit p {
  width: 100%;
}
.contacts .cont .part .text .info .unit p:nth-child(1) {
  font-size: 14px;
  line-height: 20px;
  color: #8e8ea4;
  margin-bottom: 4px;
}
.contacts .cont .part .text .info .unit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 12px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  position: relative;
}
.contacts .cont .part .text .info .unit a img {
  margin-bottom: 3px;
}
.contacts .cont .part .text .info .unit a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
}
.contacts .cont .part .text .info .unit a:hover::before {
  width: 100%;
}
.contacts .cont .part .text form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.contacts .cont .part .text form .btn {
  padding: 8px;
  width: 167px;
}

@media (max-width: 768px) {
  .contacts .cont .btns {
    position: relative;
    top: initial;
    right: initial;
    padding: 48px 48px 24px;
    max-width: 100%;
  }
  .contacts .cont .part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts .cont .part .img {
    display: none;
  }
  .contacts .cont .part .text {
    max-width: 100%;
    padding: 0 48px 48px;
  }
}
@media (max-width: 550px) {
  .contacts .cont .btns {
    padding: 24px;
  }
  .contacts .cont .part .text {
    padding: 0 24px 24px;
  }
}
.support .main_title .fond {
  -webkit-animation: profile_bcg_anim infinite 20s;
  animation: profile_bcg_anim infinite 20s;
}
.support .main_title .text .block h3 {
  width: 100%;
}
.support .cont {
  padding: 48px 0 70px;
  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;
  gap: 48px;
}
.support .cont .box {
  max-width: 1340px;
  padding: 0 70px;
  width: 100%;
}
.support .cont .ua {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
.support .cont .ua .img {
  width: calc((100% - 48px) / 3);
  min-height: 400px;
  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;
}
.support .cont .ua .img img {
  max-width: 400px;
  width: 100%;
}
.support .cont .ua .text {
  width: calc((100% - 48px) / 3 * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.support .cont .ua .text .importantly {
  padding: 24px;
  background-color: #f5f5f9;
}
.support .cont .ua .text .importantly h6 {
  color: #0500be;
  margin-bottom: 4px;
}
.support .cont .new_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.support .cont .new_post h4 {
  width: 100%;
}
.support .cont .new_post .item {
  width: calc((100% - 48px) / 3);
}
.support .cont .new_post .item .img {
  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;
  margin-bottom: 12px;
}
.support .cont .new_post .item p {
  text-align: center;
}
.support .cont .new_post .info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background-color: #f5f5f9;
}
.support .cont .deliv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
.support .cont .deliv .item {
  width: calc(50% - 24px);
  position: relative;
  padding-left: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.support .cont .deliv .item .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
}
.support .cont .pay {
  width: 100%;
  padding: 48px 0;
  background: url("../img/support/pay.webp");
}
.support .cont .pay .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  margin: 0 auto;
}
.support .cont .pay .box .last {
  padding: 12px 24px;
  background-color: #0500be;
}
.support .cont .return {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.support .cont .return .last {
  margin-top: 36px;
  color: #0500be;
}

@media (max-width: 768px) {
  .support .cont {
    padding: 48px 0;
  }
  .support .cont .box {
    padding: 0 48px;
  }
  .support .cont .ua {
    gap: 24px;
  }
  .support .cont .ua .img,
  .support .cont .ua .text {
    width: 100%;
  }
  .support .cont .deliv {
    gap: 24px;
  }
  .support .cont .deliv .item {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .support .cont {
    padding: 24px 0;
    gap: 24px;
  }
  .support .cont .box {
    padding: 0 24px;
  }
  .support .cont h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .support .cont .new_post {
    gap: 12px;
  }
  .support .cont .new_post .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .support .cont .new_post .item .img {
    margin: 0 12px 0 0;
  }
  .support .cont .new_post .item .img img {
    width: 66px;
  }
  .support .cont .new_post .item p {
    text-align: start;
  }
  .support .cont .pay {
    padding: 24px 0;
  }
  .support .cont .return .last {
    margin-top: 12px;
  }
}
.running_text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 60px 0 50px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.running_text .marquee {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  min-width: 100%;
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
}
.running_text .marquee .item h2 {
  white-space: nowrap;
}
.running_text .marquee .item h2 span {
  margin: 0 60px 0 60px;
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .running_text {
    padding: 30px 0 20px;
  }
  .running_text .marquee .item h2 {
    font-size: 48px;
    line-height: 60px;
  }
  .running_text .marquee .item h2 span {
    margin: 0 30px 0 30px;
  }
}
@media (max-width: 550px) {
  .running_text .marquee .item h2 {
    font-size: 30px;
    line-height: 46px;
  }
}
.subscribe {
  padding: 70px;
  background-color: #000;
}
.subscribe .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 24px;
  max-width: 1262px;
  margin: 0 auto;
  color: #fff;
}
.subscribe .cont h4 {
  width: calc(54% - 12px);
}
.subscribe .cont form {
  width: calc(46% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.subscribe .cont form input[type="text"] {
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  width: calc(100% - 198px);
}
.subscribe .cont form input[type="submit"] {
  width: 174px;
}
.subscribe .cont .question {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  opacity: 0.5;
}
.subscribe .cont .question:hover {
  opacity: 1;
  border-bottom: 1px solid #fff;
}
.subscribe .cont .question span {
  position: relative;
  padding-left: 36px;
  line-height: 24px;
}
.subscribe .cont .question span::before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background: url("../img/arrow_white.svg") 50% 50% no-repeat;
  position: absolute;
  top: -5px;
  left: 0;
}
.subscribe .cont .question .drop {
  max-width: 600px;
  width: 100%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  display: none;
}
.subscribe .cont .question .drop p {
  margin: 15px 0 25px;
}
.subscribe .cont .question .drop li {
  list-style: none;
  margin-top: 12px;
}
.subscribe .cont .question.on {
  opacity: 1;
  border-bottom: 1px solid #fff;
}
.subscribe .cont .question.on span::before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.subscribe .cont .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 48px;
}
.subscribe .cont .social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  padding-bottom: 5px;
}
.subscribe .cont .social a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.subscribe .cont .social a:hover::after {
  width: 100%;
}

@media (max-width: 1100px) {
  .subscribe .cont {
    gap: 24px;
  }
  .subscribe .cont h4 {
    width: 100%;
  }
  .subscribe .cont form {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .subscribe .cont .social {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 768px) {
  .subscribe {
    margin-top: 48px;
    padding: 48px;
  }
  .subscribe .cont form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .subscribe .cont form input[type="text"] {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .subscribe {
    margin-top: 24px;
    padding: 24px;
  }
  .subscribe .cont h4 {
    font-size: 20px;
    line-height: 24px;
  }
  .subscribe .cont form input[type="submit"] {
    width: 134px;
  }
}
/*** футер ***/
footer {
  max-width: 1920px;
  width: 100%;
  margin: auto auto 0;
  padding: 70px;
  border-top: 1px solid #000;
}
footer .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
footer .cont a {
  font-variant-numeric: normal;
  position: relative;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}
footer .cont a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .cont a:hover::after {
  width: 100%;
}
footer .cont .info {
  width: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
footer .cont .info img {
  margin-bottom: auto;
  width: 140px;
  height: 60px;
}
footer .cont .info .mail {
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding-left: 20px;
  background: url("../img/mail.svg") no-repeat;
}
footer .cont .info span {
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
}
footer .cont .links {
  width: calc(100% - 358px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
footer .cont .links .stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 14px;
  line-height: 20px;
}
footer .cont .links .stack p {
  color: #8e8ea4;
}
footer .cont .links .stack .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
footer .cont .links .stack .lang a {
  opacity: 0.5;
}
footer .cont .links .stack .lang a.active {
  opacity: 1;
}
footer .cont .copyright {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #eeeef0;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  padding: 12px 0;
}

@media (max-width: 1200px) {
  footer .cont .info {
    width: 100%;
  }
  footer .cont .links {
    width: 100%;
    gap: 48px 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .cont .links .stack {
    width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 768px) {
  footer {
    padding: 48px;
  }
}
@media (max-width: 550px) {
  footer {
    padding: 24px;
  }
  footer .cont {
    gap: 24px;
  }
  footer .cont .links {
    gap: 24px;
  }
  footer .cont .links .stack {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer .cont .links .stack p {
    width: 100%;
  }
  footer .cont .links .stack a {
    width: calc(50% - 6px);
  }
}

.old-price {
  text-decoration: line-through;
  color: #bdbdbd;
}
.new-price {
  color: #0500b8;
}

/* New tasks 15.07 */
.next-step {
  background-color: #0500be;
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
  margin-top: 20px;
}
.next-step[disabled] {
  pointer-events: none;
}
.order-timeline {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.order-timeline-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.order-timeline-counter {
  width: 32px;
  height: 32px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-timeline-line {
  position: relative;
  width: 100%;
}
.order-timeline-line:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: calc(100% - 10px);
  height: 2px;
  background-color: #000;
}
.order-timeline-text {
  position: absolute;
  left: 0;
  top: 100%;
}
.order-timeline-wrapper.filled .order-timeline-counter {
  background: #0500be;
  color: #fff;
}
.order form .left .delivery .field{
margin-bottom: 12px;
}