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

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

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

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

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

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Onest";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Onest";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}
.card__description > table{
      width:100%;
      table-layout: fixed; /* Ensures consistent column widths */
    border-collapse: collapse; /* Optional: neatens the table borders */
  }
table {
  border-collapse: collapse; /* Makes borders collapse into a single border */
  width: 100%; /* Optional: full width */
}

table, th, td {
  border: 1px solid black; /* Sets a black border */
  padding: 8px;            /* Adds some spacing inside cells */
  text-align: left;        /* Aligns text to the left */
}
td:empty,
tr:empty
 {
  display: none;
}
td > table {
   width: 100%;
    padding: 1px;
    overflow-x: auto; /* Ensures both scrollbars can be shown if needed */
   
}
td {
    overflow: visible; /* Makes sure the overflow is handled by the table within the td */
}

td > table::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar */
}

td > table::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounds the corners of the scrollbar thumb */
    border: 2px solid #555; /* Adds a border around the scrollbar thumb */
}

td > table::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color of the scrollbar track */
    border-radius: 10px; /* Rounds the corners of the scrollbar track */
    box-shadow: inset 0 0 5px grey; /* Adds an inset shadow to the scrollbar track */
}
tbody,  
tbody:not(.has-colspan),
td > table > tbody:not(.has-colspan) {
  margin-top: 12px;
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-box-direction: normal;*/
  /*    -ms-flex-direction: column;*/
  /*        flex-direction: column;*/
  row-gap: 1px;
  max-width:300px !important;
}
tr:not(.has-colspan),
tr > table >tbody>tr:not(.has-colspan),
.details-card__row {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-column-gap: 1px;*/
  /*   -moz-column-gap: 1px;*/
  /*        column-gap: 1px;*/
  
  font-size: 16px;
  font-weight: 400;
}

tr > *,
tr > table > tr > *,
tr > table > tbody > tr > *,
.details-card__row > * {
  
  padding: 10px;
}
td,
th,.details-card__name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
          text-align:left;
          width:20%;
          min-width: 110px;
          word-break:break-word;
          vertical-align:top;
          
}

td > table > tbody > tr > th:nth-child(n+3),
td > table > tbody > tr > td:nth-child(n+3){
         flex: 0 0 auto;
            width: 33%;
          text-align:left;
}
td[colspan], .details-card__value{
    flex: 0 0 100%;
}

/*td:not([colspan]),*/
/*.details-card__value {*/
/*  -webkit-box-flex: 1;*/
/*      -ms-flex: 1 1 80%;*/
/*          flex: 1 1 80%;*/
          
/*          width:100%;*/
/*          max-width: 80%;*/
/*          min-width:auto;*/
/*}*/

td ul,
td > table> tbody> tr >td >ul,
.details-card__value ul {
  padding-left: 20px;
}
td ul li,
td > table> tbody> tr >td >ul li, 
.details-card__value ul li {
  list-style: disc;
}
td ul li:not(:last-child),
.details-card__value ul li:not(:last-child) {
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: #071C3C;
  font-size: 16px;
  line-height: 1.2;
}

body._lock {
  overflow: hidden;
}
.promo-page__title{
    margin-top:20px;
}
.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  padding: 0px 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.form__error {
  font-size: 16px;
  color: #ee1212;
  line-height: 1.2;
  display: inline-block;
  margin-top: 4px;
}
._error{
  color:red;
  
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.file_link{
    color:#13A7E7;
    font-size:18px;
}
.file_link:hover{
    color:inherit;
    
}
.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}
.proposals__items {
  display:-ms-grid;
display:grid;
-webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.proposals__items .products-slider__item {
  margin-right: 15px;
}
input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  width: 100%;
  display: block;
  padding: 0px 20px;
  min-width: 0px;
  width: auto;
  max-width: 100%;
  color: #898989;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  background: #E8F7FD;
  min-height: 52px;
  border: 1px solid #E8F7FD;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.input._focus {
  color: #071C3C;
}

.input:focus {
  border-color: #185EC8;
}

.input._error {
  border-color: #ee1212;
}

textarea.input {
  resize: none;
  padding: 15px 20px;
  height: 100px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.switch {
  display: block;
}

.switch__input {
  display: none;
}

.switch__input:checked + .switch__content .switch__icon {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.switch__input:checked + .switch__content .switch__column:first-child {
  color: #94979F;
}

.switch__input:checked + .switch__content .switch__column:last-child {
  color: #071C3C;
}

.switch__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 56px 1fr;
  grid-template-columns: 1fr 56px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.switch__column {
  color: #94979F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.switch__column:first-child {
  color: #071C3C;
  text-align: right;
}

.switch__icon {
  width: 56px;
  border-radius: 100px;
  padding: 1px;
  position: relative;
  background: #0FBE72;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.switch__circle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  left: 0;
  -webkit-box-shadow: 0px 0.758px 1.517px rgba(0, 0, 0, 0.2), 0px 0.076px 0.228px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0.758px 1.517px rgba(0, 0, 0, 0.2), 0px 0.076px 0.228px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

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

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

img,
svg {
  vertical-align: middle;
  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;
  max-width: 100%;
  max-height: 100%;
}

._btn {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  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: #13A7E7;
  border-radius: 200px;
  padding: 20px 40px;
  min-height: 62px;
}

._btn._red {
  background: #FF4D4D;
}
.button_download{
    padding: 12px 24px;
    width:225px;
    min-height: 42px;
    font-size: 16px;
    font-weight: 500;
}
._title {
  color: #071C3C;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

table.MsoNormalTable {
  display: table;
 
  width: 100% !important;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

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

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

.gm-style .gm-style-iw-c {
  padding: 0px !important;
  -webkit-box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
          box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
  border-radius: 22px;
  background: #fff;
  max-width: 505px !important;
  max-height: 350px !important;
  font-family: "Onest";
}

.gm-style-iw-chr {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.gm-style-iw-ch {
  display: none;
}

.gm-style-iw-a {
  margin-top: 20px;
}

.gm-ui-hover-effect {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px !important;
  height: 32px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gm-ui-hover-effect span {
  margin: 0px !important;
  background-color: #999a9b;
}

.gm-style-iw-tc {
  display: none;
}

.gm-style-iw-d {
  max-height: 100% !important;
}

.gmnoprint,
.gm-fullscreen-control {
  display: none;
}

.gm-style-iw-d {
  overflow: visible !important;
}

.paggination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.paggination .swiper-pagination-bullet-active {
  background: #13A7E7;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.marker {
  padding: 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 12px;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  overflow: visible;
}

.marker__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  aspect-ratio: 16/13;
  border-radius: 8px;
  overflow: hidden;
}

.marker__image img {
  width: 100%;
  max-width: 100%;
}

.marker__info {
  -webkit-box-flex: 1;
      -ms-flex: 0 0 200px;
        flex: 0 0 200px;
    width: 200px;
}

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

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

.marker__item:not(:last-child) {
  margin-bottom: 12px;
}

.marker__name {
  color: #646464;
  font-size: 16px;
  font-weight: 400;
}

.marker__value {
  color: #071C3C;
  font-size: 16px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 4px;
  line-height: 1.3;
}

.marker__value a {
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

.pagging__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__arrow._disabled {
  pointer-events: none;
}

.pagging__arrow._disabled svg path[fill] {
  fill: #ABABAB;
}

.pagging__arrow._disabled svg path[stroke] {
  stroke: #ABABAB;
}

.pagging__arrow img,
.pagging__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.pagging__arrow svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__arrow svg path[fill] {
  fill: #071C3C;
}

.pagging__arrow svg path[stroke] {
  stroke: #071C3C;
}

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

.pagging__item._more {
  pointer-events: none;
}

.pagging__item._active .pagging__link {
  background: #13A7E7;
  color: #fff;
}

.pagging__link {
  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: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #13A7E7;
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}
.request-send__title {
  color: #09460C;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 400px;
  border-radius:12px;
}
.centering{
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content:center;
}
.request-send__body {
  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;
  text-align: center;
  row-gap: 20px;
}

.request-send__text {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
#map-contact iframe{
  width:100%;
  height:100%;
}
.popup__close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 30;
  background: url("/frontend/assets/img/icons/close-b.svg") 0 0 no-repeat;
}

.header {
  -webkit-box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 5;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.header__top {
  padding: 10px 0px;
}

.header__main {
  padding: 8px 0px;
}

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

.top-header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.top-header__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.nav-top-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 10px;
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
}

.nav-top-header__list a {
  color: inherit;
}

.language {
  position: relative;
}

.language__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.language__head._active .language__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.language__value {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
}

.language__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.language__body {
  position: absolute;
  top: calc(100% + 5px);
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 4px 4px rgba(12, 12, 13, 0.15);
          box-shadow: 0px 4px 4px 4px rgba(12, 12, 13, 0.15);
  left: -10px;
  display: none;
  z-index: 2;
}

.language__item {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 10px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  display: block;
}
.language__item._active{
  display:none !important;
}

.phone-header {
  position: relative;
}

.phone-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
}

.phone-header__head._active .phone-header__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.phone-header__head > img,
.phone-header__head svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.phone-header__value {
  color: #071C3C;
  font-size: 18px;
  font-weight: 700;
}

.phone-header__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.phone-header__body {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 4px 4px rgba(12, 12, 13, 0.15);
          box-shadow: 0px 4px 4px 4px rgba(12, 12, 13, 0.15);
  left: 24px;
  z-index: 2;
}

.phone-header__item {
  color: #071C3C;
  font-size: 18px;
  font-weight: 700;
  display: block;
  padding: 8px 10px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.main-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 296px;
          flex: 0 0 296px;
  width: 296px;
}

.main-header__logo img,
.main-header__logo svg {
  width: 100%;
  max-width: 100%;
}

.main-header__catalog-open {
  color: #071C3C;
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.main-header__catalog-open._active div span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 0.5px);
}

.main-header__catalog-open._active div span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 0.5px);
}

.main-header__catalog-open div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  width: 28px;
  height: 10px;
  position: relative;
}

.main-header__catalog-open div span {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #071C3C;
  display: inline-block;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.main-header__catalog-open div span:first-child {
  top: 0;
}

.main-header__catalog-open div span:last-child {
  bottom: 0;
}

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

.main-header__search-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.menu__body {
  background: #fff;
  position: fixed;
  top: 78px;
  left: 0;
  height: 100dvh;
  max-height: calc(100dvh - 78px);
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  -webkit-box-shadow: inset 0px 16px 32px -4px rgba(12, 12, 13, 0.1), inset 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
          box-shadow: inset 0px 16px 32px -4px rgba(12, 12, 13, 0.1), inset 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  z-index: 2;
}

.menu__body:not(._active) {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  pointer-events: none;
  visibility: hidden;
}

.menu__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.menu__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-radius: 12px;
  background: #F1F1F1;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.menu__link {
  color: #071C3C;
  font-size: 18px;
  font-weight: 400;
}

.menu__footer {
  background: #13A7E7;
  padding: 30px 20px;
}

.footer-menu__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.footer-menu__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

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

.footer-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer-menu__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  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;
}

.footer-menu__value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-menu__value a {
  color: inherit;
}

.social-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.social-footer-menu__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.social-footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.social-footer-menu__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}

.search {
  position: relative;
}

.search._result .search__result {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.search__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: 100%;
}

.search__form {
  border-radius: 100px;
  border: 1px solid #DCDCDC;
  padding: 4px 4px 4px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.search__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #94979F;
  font-size: 18px;
  font-weight: 400;
  min-width: 0px;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search__input input {
  background: none !important;
  border: none !important;
  min-height: 0px;
  padding: 0px;
  border-radius: 0px;
  width: 100%;
  max-width: 100%;
}

.search__input._focus {
  color: #071C3C;
}

.search__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46px;
          flex: 0 0 46px;
  width: 46px;
  height: 46px;
  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: #13A7E7;
  border-radius: 50%;
}

.search__button img,
.search__button svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.search__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.search__result {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.result-search {
  -webkit-box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
          box-shadow: 0px 16px 32px -4px rgba(12, 12, 13, 0.1), 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
  border-radius: 16px;
  background: #FFF;
  overflow: hidden;
  max-height: calc(100dvh - 150px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.result-search__head {
  border-bottom: 1px solid #D7D7D7;
  padding: 12px 15px;
}

.result-search__title {
  color: #071C3C;
  font-size: 16px;
  font-weight: 700;
}

.result-search__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
}

.result-search__item {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.result-search__image {
  aspect-ratio: 1/1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
  width: 75px;
  position: relative;
}

.result-search__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.result-search__name {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.catalog-header {
  position: fixed;
  top: 149px;
  left: 0;
  height: 100vh;
  max-height: calc(100dvh - 149px);
  overflow-y: auto;
  padding: 30px 0px;
  background: #fff;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #C8C8C8;
  z-index: 2;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.catalog-header:not(._active) {
  -webkit-transform: translateY(100vh);
      -ms-transform: translateY(100vh);
          transform: translateY(100vh);
  pointer-events: none;
}

.catalog-header__top {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.catalog-header__back {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.catalog-header__back img,
.catalog-header__back svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.catalog-header__switch {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: 30px;
}

.catalog-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.catalog-header__column {
  max-width: 260px;
}

.catalog-header__title {
  color: #071C3C;
  font-size: 22px;
  font-weight: 700;
}

.catalog-header__body {
  margin-top: 20px;
}

.catalog-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  color: #071C3C;
  font-size: 18px;
  font-weight: 400;
}

.catalog-header__list a {
  color: inherit;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.catalog-header__banner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 345px;
          flex: 0 0 345px;
}

.banner-catalog-header {
  position: relative;
}

.banner-catalog-header__content {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.banner-catalog-header__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
  aspect-ratio: 35/45;
  overflow: hidden;
  display: block;
}

.banner-catalog-header__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-catalog-header__item:not(:last-child) {
  margin-right: 20px;
}

.banner-catalog-header__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.banner-catalog-header__arrow.banner-catalog-header-arrow-prev {
  left: 10px;
}

.banner-catalog-header__arrow.banner-catalog-header-arrow-next {
  right: 10px;
}

.banner-catalog-header__arrow img,
.banner-catalog-header__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.banner-catalog-header__paggination {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.banner-catalog-header__paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: #E8E8E8;
  border-radius: 50px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.banner-catalog-header__paggination .swiper-pagination-bullet-active {
  background: #13A7E7;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
}

.icon-menu {
  display: none;
}

.footer__top {
  padding: 20px 0px;
  background: #fff;
}

.footer__main {
  padding: 34px 0px;
  background: #13A7E7;
}

.footer__bottom {
  background: #0D96D1;
  padding: 20px 0px;
}

.top-footer__container {
  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;
}

.top-footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 163px;
          flex: 0 0 163px;
  width: 163px;
}

.top-footer__logo img,
.top-footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.social-top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

.social-top-footer__text {
  color: #071C3C;
  font-size: 18px;
  font-weight: 500;
}

.social-top-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.social-top-footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #13A7E7;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.social-top-footer__item img,
.social-top-footer__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.main-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-footer__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.main-footer__body {
  margin-top: 20px;
}

.main-footer__list {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-footer__list a {
  color: inherit;
}

.main-footer__item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
  max-width: 230px;
}

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

.contact-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.contact-list__icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.contact-list__value {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-list__value a {
  color: inherit;
}

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

.bottom-footer__copy {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.bottom-footer__dev {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.bottom-footer__dev img,
.bottom-footer__dev svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.banner {
  padding: 30px 0px 50px;
}

.banner__wrapper {
  position: relative;
}

.banner__slider {
  border-radius: 12px;
}

.banner__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: -webkit-gradient(linear, right top, left top, color-stop(29.85%, #CDDAE2), color-stop(56.24%, rgba(205, 218, 226, 0)));
  background: -o-linear-gradient(right, #CDDAE2 29.85%, rgba(205, 218, 226, 0) 56.24%);
  background: linear-gradient(270deg, #CDDAE2 29.85%, rgba(205, 218, 226, 0) 56.24%);
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 100px;
}

.banner__item:not(:last-child) {
  margin-right: 20px;
}

.banner__body {
  width: 100%;
  max-width: 690px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 1;
}

.banner__title {
  color: #071C3C;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
}

.banner__text {
  color: #071C3C;
  font-size: 28px;
  font-weight: 400;
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.banner__bg_mob {
  -o-object-position: top center;
     object-position: top center;
}

.banner__arrow {
  border-radius: 99px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  width: 48px;
  height: 48px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.banner__arrow img,
.banner__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.banner__arrow.banner-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner__arrow.banner-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.banner__paggination {
  margin-top: 20px;
}

.mini-catalog {
  padding: 50px 0px;
}

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

.mini-catalog__blocks {
  margin-top: 30px;
}

.mini-catalog__block {
  display: none;
}

.mini-catalog__block._active {
  display: block;
}

.mini-catalog__body {
  position: relative;
}

.mini-catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 5) / 6);
          flex: 0 0 calc((100% - 40px * 5) / 6);
}

.mini-catalog__item:not(:last-child) {
  margin-right: 40px;
}

.mini-catalog__arrow {
  border-radius: 99px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  width: 48px;
  height: 48px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.mini-catalog__arrow img,
.mini-catalog__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.mini-catalog__arrow.mini-catalog-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mini-catalog__arrow.mini-catalog-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.mini-catalog__paggination {
  margin-top: 20px;
}

.mini-catalog__footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mini-catalog__button {
  font-size: 18px;
  font-weight: 500;
}

.item-mini-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.item-mini-catalog__icon {
  background: #fff;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  overflow: hidden;
}

.item-mini-catalog__icon img,
.item-mini-catalog__icon svg {
  max-width: 65%;
  max-height: 65%;
}

.item-mini-catalog__icon svg path {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.item-mini-catalog__icon svg path[fill] {
  fill: #13A7E7;
}

.item-mini-catalog__icon svg path[stroke] {
  stroke: #13A7E7;
}

.item-mini-catalog__name {
  color: #071C3C;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.promo-section {
  padding: 50px 0px;
}

.promo-section__content {
  margin-top: 30px;
}

.promo-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
}

.promo-section__item:not(:last-child) {
  margin-right: 40px;
}

.promo-section__paggination {
  margin-top: 20px;
}

.promo {
  border-radius: 12px;
  background: #FFF;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.promo__image {
  aspect-ratio: 40/26;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.promo__image img {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.promo__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.promo__name {
  color: #071C3C;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.promo__text {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.product-section {
  padding: 50px 0px;
}

.product-section__content {
  margin-top: 30px;
}

.product-section__body {
  position: relative;
}

.product-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
          flex: 0 0 calc((100% - 20px * 4) / 5);
          height:400px;
}

.product-section__item:not(:last-child) {
  margin-right: 20px;
}

.product-section__arrow {
  border-radius: 99px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  width: 48px;
  height: 48px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.product-section__arrow img,
.product-section__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.product-section__arrow.product-section-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.product-section__arrow.product-section-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.product-section__paggination {
  margin-top: 30px;
}

.product-section__footer {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-section__button {
  font-size: 18px;
  font-weight: 500;
}

.product {
  padding: 20px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  border-radius: 12px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.product__image {
  aspect-ratio: 23/26;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 100%;
}

.product__image img {
 width: auto;
    height: 230px;
    top: 50%;
    left: 50%;
    position: absolute;
    -o-object-fit: fill;
    object-fit: fill;
    transform: translate(-50%, -50%);
}

.product__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.product__name {
  color: #071C3C;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product__text {
  font-size: 16px;
  font-weight: 400;
  color: #071C3C;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.benefits {
  padding: 50px 0px;
}

.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.benefits__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 3) / 4);
          flex: 0 0 calc((100% - 40px * 3) / 4);
  border-radius: 12px;
  background: #13A7E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 40px;
}

.benefits__count {
  color: #fff;
  font-size: 72px;
  font-weight: 800;
}

.benefits__text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.brands {
  padding: 50px 0px;
}

.brands__wrapper {
  position: relative;
}

.brands__slider {
  margin: 0px -20px;
  padding: 0px 20px;
}

.brands__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 5) / 6);
          flex: 0 0 calc((100% - 40px * 5) / 6);
  background: #fff;
  display: block;
  position: relative;
  aspect-ratio: 200/125;
  border-radius: 12px;
  overflow: hidden;
}

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

.brands__item:not(:last-child) {
  margin-right: 40px;
}

.brands__arrow {
  border-radius: 99px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  width: 48px;
  height: 48px;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 2;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  cursor: pointer;
}

.brands__arrow img,
.brands__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.brands__arrow.brands-arrow-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.brands__arrow.brands-arrow-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.brands__paggination {
  margin-top: 30px;
}

.cookie {
  width: calc(100% - 40px);
  max-width: 1440px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  background: #13A7E7;
  border-radius: 12px;
  z-index: 2;
  padding: 15px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.cookie:not(._active) {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(30px) translateX(-50%);
      -ms-transform: translateY(30px) translateX(-50%);
          transform: translateY(30px) translateX(-50%);
}

.cookie__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.cookie__text a {
  color: inherit;
  text-decoration: underline;
}

.cookie__button {
  padding: 10px 30px;
  background: #fff;
  color: #13A7E7;
  white-space: nowrap;
  min-height: 52px;
}

.mini-banner {
  padding: 30px 0px 50px;
}

.mini-banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.mini-banner__title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}

.mini-banner__breadcrums {
  display: inline;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  line-height: 1.8;
}

.mini-banner__item {
  display: inline;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.mini-banner__item a {
  color: inherit;
}

.mini-banner__item:not(:last-child) {
  margin-right: 14px;
}

.mini-banner__item:not(:last-child)::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  background: url(../img/icons/breadcrums-arrow.svg) center/cover no-repeat;
}

.contacts {
  padding: 60px 0px 50px;
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 80px;
}

.contacts__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contacts__column._map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0px;
  background: none;
  overflow: hidden;
}

.contacts__title {
  color: #071C3C;
  font-size: 24px;
  font-weight: 800;
}

.contacts__body {
  margin-top: 30px;
}

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

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

.contacts__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: #E8F7FD;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.contacts__icon img,
.contacts__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contacts__name {
  color: #646464;
  font-size: 16px;
  font-weight: 400;
}

.contacts__value {
  color: #071C3C;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
#map-contact iframe,
.contacts__map #map-contact {
  min-height: 650px;
}

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

.callback__row .input {
  width: 100%;
  max-width: 100%;
}

.callback__input {
  width: 100%;
  max-width: 100%;
}

.callback__label {
  display: inline-block;
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.callback__textarea {
  width: 100%;
  max-width: 100%;
}

.callback__button {
  padding: 12px 24px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 500;
}

.stores {
  min-height: 800px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.stores__map {
  height: 100%;
  width: 100%;
  position: absolute;
}

.stores__map #map {
  height: 100%;
  width: 100%;
}

.stores__content {
  position: absolute;
  top: 30px;
  left: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  max-height: calc(100% - 60px);
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.stores__head._active .stores__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.stores__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #071C3C;
  font-size: 20px;
  font-weight: 700;
}

.stores__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.stores__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
}

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

.store-item {
  border-radius: 22px;
  background: #E8F7FD;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.store-item._active {
  background: #13A7E7;
}

.store-item._active .store-item__name,
.store-item._active .store-item__value {
  color: #fff;
}

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

.store-item__name {
  color: #646464;
  font-size: 16px;
  font-weight: 400;
}

.store-item__value {
  color: #071C3C;
  font-size: 16px;
  font-weight: 700;
}

.store-item__value a {
  color: inherit;
}

.catalog {
  padding: 60px 0px;
}

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

.catalog__sidebar {
    display: flex;
    flex-direction:column;
    row-gap:10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 265px;
          flex: 0 0 265px;
}

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

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

.catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
          flex: 0 0 calc((100% - 20px * 3) / 4);
}

.catalog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.catalog__count {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
}

.sidebar-catalog__wrapper {
  border-radius: 12px;
  background: #E8F7FD;
}

.sidebar-catalog__head {
  padding: 20px;
  border-bottom: 1px solid #D7D7D7;
}

.sidebar-catalog__title {
  color: #071C3C;
  font-size: 20px;
  font-weight: 800;
}

.sidebar-catalog__item {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.sidebar-catalog__item._active{
    background-color:#13a7e7;
    color:#fff;
}
.sidebar-catalog__item:last-child._active{
 border-bottom-left-radius:12px;
    border-bottom-right-radius:12px;
}
.sidebar-catalog__item._active .sidebar-catalog__name{
    color:#fff;
}
.sidebar-catalog__item._active .sidebar-catalog__count{
    background-color:#fff;
}
.sidebar-catalog__item:not(:last-child) {
  border-bottom: 1px solid #D7D7D7;
}

.sidebar-catalog__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
}

.sidebar-catalog__count {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  padding: 2px 10px;
  background: #fff;
  border-radius: 50px;
}

.card {
  padding: 60px 0px;
}

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

.card__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__image {
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.card__image img {
 
     width: auto;
    height: 600px;
    top: 50%;
    left: 50%;
    position: absolute;
    -o-object-fit: fill;
    object-fit: fill;
    transform: translate(-50%, -50%);
     
}

.card__details {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.card__blocks {
  margin-top: 30px;
}

.card__description {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.card__description h5 {
  font-size: 16px;
  font-weight: 700;
}

.card__description h6 {
  font-size: 14px;
  font-weight: 700;
}
.card__description ol,
.card__description ul {
  padding-left: 25px;
}

.card__description ul li {
  list-style: disc;
}

.card__description > *:not(:last-child) {
  margin-bottom: 15px;
}

.contact-card {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #13A7E7;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr auto;
  grid-template-columns: 1fr 1fr auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
          margin-top:10px;
}

.contact-card__sup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.contact-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58px;
          flex: 0 0 58px;
  width: 58px;
  height: 58px;
  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: #E8F7FD;
  border-radius: 50%;
}

.contact-card__icon img,
.contact-card__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  width: 36px;
  height: 36px;
}

.contact-card__title {
  color: #071C3C;
  font-size: 16px;
  font-weight: 700;
}

.contact-card__phone {
  color: #071C3C;
  font-size: 16px;
  font-weight: 700;
}

.contact-card__phone a {
  color: inherit;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.contact-card__button {
  padding: 12px 24px;
  min-height: 42px;
  font-size: 16px;
  font-weight: 500;
}

.nav-card__list {
  border-bottom: 1px solid #EBEBEB;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 100%;
}

.nav-card__item {
  min-width: 160px;
  padding: 10px;
  position: relative;
  color: #888;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  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;
  text-align: center;
  cursor: pointer;
}

.nav-card__item._active {
  color: #071C3C;
}

.nav-card__item._active::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #071C3C;
  position: absolute;
  bottom: -1px;
  left: 0;
  display: inline-block;
}

.about {
  padding: 70px 0px;
}

.about__wrapper {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.about__wrapper p:has(img),
.about__wrapper > *:not(:last-child) {
  margin-bottom: 15px;
}
.about__wrapper p:has(img),
.about__image {
  margin: 0px 0px 40px 30px;
  width: 460px;
}
.about__wrapper img,
.about__image img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.history {
  padding: 80px 0px;
  background: #E8F7FD;
}

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

.history__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}

.history__row::after {
  content: "";
  width: 3px;
  height: calc(100% + 30px);
  left: 50%;
  top: 24px;
  background: #13A7E7;
  display: inline-block;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.history__row:last-child::after {
  background: #D9D9D9;
  height: calc(100% - 24px + 100px);
}

.history__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - (24px + 40px)) / 2);
          flex: 0 0 calc((100% - (24px + 40px)) / 2);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.history__date {
  color: #071C3C;
  font-size: 24px;
  font-weight: 700;
}

.history__center {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 5px solid #fff;
  background: #13A7E7;
}

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

.history__body h6 {
  color: #071C3C;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.history__text {
  margin-top: 8px;
  color: #071C3C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.promo-list {
  padding: 70px 0px;
}

.promo-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.promo-list__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
}

.promo-list__footer {
  margin-top: 30px;
}

.promo-page {
  padding: 70px 0px;
}

.promo-page__banner {
  padding: 30px;
  border-radius: 12px;
  background: #FFF;
}

.promo-page__image {
  width: 100%;
  aspect-ratio: 28/13;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.promo-page__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.promo-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  margin-top: 30px;
}

.promo-page__name {
  color: #071C3C;
  font-size: 32px;
  font-weight: 700;
}

.promo-page__text {
  color: #071C3C;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.promo-page__content {
  margin-top: 80px;
}

.promo-page__products {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.promo-page__product {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
          flex: 0 0 calc((100% - 20px * 4) / 5);
}

.not-found {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 0px;
}

.not-found__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 560px;
}

.not-found__logo {
  width: 100%;
  max-width: 167px;
}

.not-found__logo img,
.not-found__logo svg {
  width: 100%;
  max-width: 100%;
}

.not-found__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.not-found__image {
  width: 100%;
  max-width: 400px;
}

.not-found__image img,
.not-found__image svg {
  width: 100%;
  max-width: 100%;
}

.not-found__body {
  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;
  text-align: center;
  row-gap: 25px;
}

.not-found__title {
  color: #071C3C;
  font-size: 42px;
  font-weight: 800;
}

.not-found__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: 100%;
  max-width: 100%;
}

.not-found__action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
  font-size: 16px;
  font-weight: 400;
  min-height: 42px;
  padding: 5px 20px;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}

.not-found__action._white {
  border: 2px solid #13A7E7;
  background: #fff;
  color: #13A7E7;
}

._no-webp .page {
  background: url(../img/bg.png) center/auto repeat; }

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 149px;
}

.page section:last-child {
  padding-bottom: 100px;
}

@media (min-width: 479.98px) {
  .gm-ui-hover-effect {
    display: none;
  }

  .history__column:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .history__body {
    border-radius: 12px;
    background: #FFF;
    -webkit-box-shadow: 0px 5px 40px 0px rgba(92, 94, 107, 0.1);
            box-shadow: 0px 5px 40px 0px rgba(92, 94, 107, 0.1);
    padding: 20px;
    margin-top: -10px;
    position: relative;
  }

  .history__body::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 12px solid #fff;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 12px;
    right: 100%;
  }
}

@media (min-width: 721.98px) {
  .main-header__search-btn {
    display: none;
  }

  .search__close {
    display: none;
  }

  .promo-section__paggination {
    display: none;
  }

  .catalog__count {
    margin-left: auto;
  }
.about__wrapper p:has(img),
  .about__image {
    float: right;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover::before,
  .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .header._scroll {
    -webkit-transform: translateY(-42px);
        -ms-transform: translateY(-42px);
            transform: translateY(-42px);
  }

  .header._scroll .catalog-header {
    max-height: calc(100dvh - (149px - 42px));
  }

  .main-header__menu {
    display: none;
  }

  .catalog-header__top {
    display: none;
  }

  .main-footer__column:nth-child(3) {
    max-width: 255px;
  }

  .main-footer__list._columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    row-gap: 20px;
  }

  .banner__bg_mob {
    display: none;
  }

  .mini-catalog__paggination {
    display: none;
  }

  .stores__head {
    display: none;
  }

  .stores__body {
    margin: -20px 0px;
    padding: 20px 0px;
  }

  .history__row:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .history__row:nth-child(even) .history__column:first-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .history__row:nth-child(even) .history__body {
    text-align: right;
  }

  .history__row:nth-child(even) .history__body::after {
    right: 0;
    left: 100%;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .checkbox a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1452px) {
  .product-section__paggination {
    display: none;
  }

  .brands__paggination {
    display: none;
  }

  .contacts {
    padding-bottom: 0 !important;
  }

  .contacts__column._map {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
    width: 100vw;
    margin: 0px calc((100vw - 1400px) / 2 * -1);
  }
}

@media (max-width: 1452px) {
  ._title {
    font-size: 28px;
  }

  .gm-style .gm-style-iw-c {
    max-width: 450px !important;
  }

  .banner {
    padding: 20px 0px 30px;
  }

  .banner__item {
    padding: 0px 60px;
    min-height: 390px;
  }

  .banner__body {
    row-gap: 12px;
    max-width: 480px;
  }

  .banner__title {
    font-size: 36px;
  }

  .banner__text {
    font-size: 18px;
  }

  .banner__button {
    padding: 14px 28px;
    min-height: 42px;
  }

  .banner__arrow {
    display: none;
  }

  .mini-catalog {
    padding: 30px 0px;
  }

  .mini-catalog__arrow {
    display: none;
  }

  .item-mini-catalog__name {
    font-size: 18px;
  }

  .promo-section {
    padding: 30px 0px;
  }

  .promo-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .promo-section__item:not(:last-child) {
    margin-right: 20px;
  }

  .promo {
    padding: 12px;
    row-gap: 12px;
  }

  .promo__name {
    font-size: 16px;
  }

  .promo__text {
    font-size: 14px;
  }

  .product-section {
    padding: 30px 0px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .product-section__arrow {
    display: none;
  }

  .product {
    padding: 12px;
    row-gap: 12px;
  }

  .product__name {
    font-size: 16px;
  }

  .product__text {
    font-size: 14px;
  }

  .benefits {
    padding: 30px 0px;
  }

  .benefits__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
    padding: 12px;
  }

  .benefits__count {
    font-size: 52px;
  }

  .benefits__text {
    font-size: 16px;
  }

  .brands {
    padding: 30px 0px;
  }

  .brands__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 5) / 6);
            flex: 0 0 calc((100% - 20px * 5) / 6);
  }

  .brands__item:not(:last-child) {
    margin-right: 20px;
  }

  .brands__arrow {
    display: none;
  }

  .mini-banner__title {
    font-size: 32px;
  }

  .contacts {
    padding-top: 50px;
  }

  .contacts__content {
    row-gap: 30px;
  }

  .contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
            flex: 0 0 calc((100% - 30px * 1) / 2);
    padding: 20px;
  }

  .contacts__body {
    margin-top: 20px;
  }
  #map-contact iframe,
  .contacts__map #map-contact {
    min-height: 500px;
  }

  .stores__content {
    top: 20px;
    padding: 12px;
    max-width: 300px;
    max-height: calc(100% - 40px);
  }

  .stores__list {
    row-gap: 12px;
  }

  .catalog {
    padding: 50px 0px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .card {
    padding: 50px 0px;
  }

  .card__wrapper {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .card__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 385px;
            flex: 0 0 385px;
  }

  .card__details {
    padding: 20px;
  }

  .contact-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 12px;
    padding: 15px;
  }

  .contact-card__sup {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }

  .contact-card__phone {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .about {
    padding: 60px 0px;
  }

  .about__wrapper {
    padding: 20px;
  }
.about__wrapper p:has(img),
  .about__image {
    width: 360px;
    margin: 0px 0px 30px 30px;
  }

  .history {
    padding: 50px 0px;
  }

  .history__content {
    margin-top: 20px;
  }

  .history__row:last-child::after {
    height: calc(100% - 24px + 60px);
  }

  .history__date {
    font-size: 20px;
  }

  .promo-list {
    padding: 60px 0px;
  }

  .promo-list__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .promo-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .promo-page {
    padding: 60px 0px;
  }

  .promo-page__name {
    font-size: 28px;
  }

  .promo-page__content {
    margin-top: 50px;
  }

  .promo-page__product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
            flex: 0 0 calc((100% - 20px * 3) / 4);
  }

  .not-found {
    padding: 60px 0px;
  }

  .page section:last-child {
    padding-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
        .card__description > table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }
     table > tbody > tr > td > table {
        display: flex
;
        max-width: 100% !important;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        overflow-x: auto;
    }

tr > *,
tr > table > tr > *,
tr > table > tbody > tr > *,
.details-card__row > * {
  
  padding: 5px 10px;
}
  .select__title {
    font-size: 18px;
  }

  .select__options {
    font-size: 18px;
  }

  ._title {
    font-size: 24px;
  }

  .header__top {
    display: none;
  }

  .main-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
  }

  .main-header__catalog-open {
    padding: 20px;
    border-radius: 12px;
    background: #DCF4FF;
  }

  .main-header__catalog-open::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-left: auto;
    background: url(../img/icons/arrow-more.svg) center/cover no-repeat;
  }

  .catalog-header {
    top: 78px;
    max-height: calc(100dvh - 78px);
    -webkit-box-shadow: inset 0px 16px 32px -4px rgba(12, 12, 13, 0.1), inset 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
            box-shadow: inset 0px 16px 32px -4px rgba(12, 12, 13, 0.1), inset 0px 4px 4px -4px rgba(12, 12, 13, 0.05);
  }

  .catalog-header__content {
    margin-top: 30px;
  }

  .catalog-header__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: none;
    max-width: 100%;
  }

  .catalog-header__column._active {
    display: block;
  }

  .catalog-header__banner {
    display: none;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 25px;
    height: 22px;
    cursor: pointer;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #071C3C;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .footer__top {
    padding: 12px 0px;
  }

  .footer__main {
    padding: 30px 0px;
  }

  .footer__bottom {
    padding: 12px 0px;
  }

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

  .main-footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .main-footer__top._active::after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .main-footer__top::after {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background: url(../img/icons/spoller-w.svg) center/cover no-repeat;
    display: inline-block;
    margin-left: auto;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .main-footer__body {
    display: none;
  }

  .banner__item {
    padding: 25px 20px 40%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 0px;
  }

  .banner__body {
    width: 100%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .banner__title {
    font-size: 28px;
  }

  .banner__text {
    font-size: 16px;
  }

  .banner__bg_pc {
    display: none;
  }

  .mini-catalog__blocks {
    margin-top: 20px;
  }

  .mini-catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
            flex: 0 0 calc((100% - 20px * 4) / 5);
  }

  .mini-catalog__item:not(:last-child) {
    margin-right: 20px;
  }

  .mini-catalog__footer {
    margin-top: 20px;
  }

  .promo-section__content {
    margin-top: 20px;
  }

  .promo__text {
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
  }

  .product-section__content {
    margin-top: 20px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
            height:295px;
  }

  .product-section__paggination {
    margin-top: 20px;
  }

  .product-section__footer {
    margin-top: 20px;
  }

  .benefits__count {
    font-size: 42px;
  }

  .benefits__text {
    font-size: 14px;
  }

  .brands__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 4) / 5);
            flex: 0 0 calc((100% - 20px * 4) / 5);
  }

  .brands__paggination {
    margin-top: 20px;
  }

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

  .mini-banner__title {
    font-size: 28px;
  }

  .contacts {
    padding-top: 30px;
  }

  .contacts__content {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }

  .contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .contacts__title {
    font-size: 20px;
  }

  .contacts__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
            flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .contacts__value {
    font-size: 16px;
  }

  .stores__body {
    margin-top: 12px;
  }

  .catalog {
    padding: 40px 0px;
  }

  .catalog__sidebar {
    display: none;
  }

  .card {
    padding: 40px 0px;
  }

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

  .card__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .card__details {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

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

  .contact-card__sup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    row-gap: 12px;
  }

  .about {
    padding: 50px 0px;
  }
.about__wrapper p:has(img),
  .about__image {
    width: 285px;
    margin: 0px 0px 20px 20px;
  }

  .history__title {
    text-align: left;
  }

  .history__content {
    row-gap: 30px;
  }

  .history__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 24px 1fr;
    grid-template-columns: 50px 24px 1fr;
  }

  .history__row::after {
    left: 82px;
  }

  .promo-list {
    padding: 50px 0px;
  }

  .promo-list__footer {
    margin-top: 20px;
  }

  .promo-page {
    padding: 50px 0px;
  }

  .promo-page__banner {
    padding: 20px;
  }

  .promo-page__body {
    margin-top: 20px;
  }

  .promo-page__name {
    font-size: 24px;
  }

  .promo-page__products {
    margin-top: 20px;
  }

  .promo-page__product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .not-found {
    padding: 50px 0px;
  }

  .page {
    padding-top: 78px;
  }
}

@media (max-width: 721.98px) {
  .main-header__logo {
    margin-right: auto;
  }

  .search {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 20px;
    width: 100%;
    z-index: 3;
    -webkit-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .search:not(._active) {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    pointer-events: none;
  }

  .search:not(._active) .search__result {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .result-search {
    max-height: calc(100dvh - 100px);
    border-top: 1px solid #D7D7D7;
    border-radius: 0px 0px 16px 16px;
  }

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

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

  .social-top-footer {
    -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;
    text-align: center;
  }

  .mini-catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 2) / 3);
            flex: 0 0 calc((100% - 20px * 2) / 3);
  }

  .mini-catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 2) / 3);
            flex: 0 0 calc((100% - 10px * 2) / 3);
  }

  .promo-section__slider {
    margin: 0px -20px;
    padding: 0px 20px;
  }

  .promo-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
            flex: 0 0 230px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .benefits__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 120px;
  }

  .brands__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
  }

  .contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }
.about__wrapper p:has(img),
  .about__image {
    width: 100%;
    max-width: 450px;
    margin: 0px;
  }

  .promo-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }

  .promo-page__product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
            flex: 0 0 calc((100% - 20px * 1) / 2);
  }
}

@media (max-width: 550px) {
  .card__left {
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    row-gap: 20px;
  }
}

@media (max-width: 479.98px) {
        .card__description table
 {
        font-size: 12px !important;
    }
     th,
     td {
    -webkit-box-flex: 0;
    width:100px !important;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
            max-width: 100px;
  }
  ._title {
    font-size: 22px;
  }

  .gm-style .gm-style-iw-c {
    max-width: 280px !important;
    border-radius: 12px;
  }

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

  .marker__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 115px;
  }

  .marker__value {
    font-size: 14px;
  }

  .main-header__container {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .main-header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 165px;
            flex: 0 0 165px;
    width: 165px;
  }

  .menu__body {
    top: 67px;
    max-height: calc(100dvh - 67px);
  }

  .menu__content {
    row-gap: 20px;
    padding: 20px;
  }

  .catalog-header {
    top: 67px;
    max-height: calc(100dvh - 67px);
  }

  .catalog-header__title {
    font-size: 18px;
  }

  .catalog-header__body {
    margin-top: 30px;
  }

  .catalog-header__list {
    row-gap: 30px;
    font-size: 16px;
  }

  .social-top-footer__text {
    font-size: 16px;
  }

  .bottom-footer__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .banner {
    padding: 20px 0px;
  }

  .banner__item {
    padding: 40px 20px 80%;
  }

  .banner__title {
    font-size: 20px;
  }

  .banner__text {
    font-size: 14px;
  }

  .banner__button {
    min-width: 150px;
  }

  .mini-catalog {
    padding: 20px 0px;
  }

  .mini-catalog__head {
    row-gap: 20px;
  }

  .mini-catalog__item:not(:last-child) {
    margin-right: 10px;
  }

  .mini-catalog__button {
    min-width: 150px;
    min-height: 40px;
    padding: 10px 40px;
    font-size: 16px;
  }

  .item-mini-catalog__name {
    font-size: 16px;
  }

  .promo-section {
    padding: 20px 0px;
  }

  .product-section {
    padding: 20px 0px;
  }

  .product-section__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .product-section__item:not(:last-child) {
    margin-right: 10px;
  }

  .product-section__button {
    min-width: 150px;
    min-height: 40px;
    padding: 10px 40px;
    font-size: 16px;
  }

  .product__name {
    font-size: 14px;
  }

  .benefits {
    padding: 20px 0px;
  }

  .benefits__count {
    font-size: 32px;
  }

  .brands {
    padding: 20px 0px;
  }

  .mini-banner {
    padding: 30px 0px;
  }

  .mini-banner__container {
    row-gap: 10px;
  }

  .mini-banner__title {
    font-size: 24px;
  }

  .mini-banner__item {
    font-size: 14px;
  }
  #map-contact iframe,
  .contacts__map #map-contact {
    min-height: 410px;
  }

  .stores {
    min-height: 600px;
  }

  .stores__content {
    right: 20px;
    max-width: calc(100% - 40px);
  }

  .catalog {
    padding: 20px 0px;
  }

  .catalog__body {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .catalog__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .card {
    padding: 20px 0px;
  }

  .card__blocks {
    margin-top: 20px;
  }

  .nav-card__item {
    font-size: 18px;
    min-width: 0px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .about {
    padding: 30px 0px;
  }

  .history {
    padding: 30px 0px;
  }

  .history__row {
    background: #fff;
    padding: 12px;
    -webkit-box-shadow: 0px 5px 40px 0px rgba(92, 94, 107, 0.1);
            box-shadow: 0px 5px 40px 0px rgba(92, 94, 107, 0.1);
    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;
    row-gap: 8px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    border-radius: 12px;
  }

  .history__row::after {
    height: 30px;
    top: 100%;
    left: 24px;
  }

  .history__row:last-child::after {
    height: 40px;
  }

  .history__column:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
  }

  .history__column:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .history__date {
    font-size: 24px;
  }

  .history__center {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    outline: 1px solid #E4E4E4;
    -webkit-box-shadow: 0px 2px 18px 0px rgba(97, 97, 125, 0.25);
            box-shadow: 0px 2px 18px 0px rgba(97, 97, 125, 0.25);
  }

  .promo-list {
    padding: 30px 0px;
  }

  .promo-list__content {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .promo-list__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .promo-page {
    padding: 30px 0px;
  }

  .promo-page__name {
    font-size: 20px;
  }

  .promo-page__content {
    margin-top: 40px;
  }

  .promo-page__products {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .promo-page__product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 10px * 1) / 2);
            flex: 0 0 calc((100% - 10px * 1) / 2);
  }

  .not-found {
    padding: 30px 0px;
  }

  .not-found__title {
    font-size: 26px;
  }

  .not-found__action {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .page {
    padding-top: 67px;
  }

  .page section:last-child {
    padding-bottom: 40px;
  }
}

@media (min-width: 991.98px) and (max-width: 1452px) {
  .main-footer__list._columns {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (any-hover: hover) {
  .marker__value a:hover {
    color: #13A7E7;
  }

  .pagging__arrow:not(._disabled):hover svg path[fill] {
    fill: #13A7E7;
  }

  .pagging__arrow:not(._disabled):hover svg path[stroke] {
    stroke: #13A7E7;
  }

  .pagging__item:not(._active, ._more) .pagging__link:hover {
    background: rgba(19, 167, 231, 0.1);
  }

  .nav-top-header__list a:hover {
    text-decoration: underline;
  }

  .language__item:hover {
    color: #185EC8;
  }

  .phone-header__item:hover {
    color: #185EC8;
  }

  .main-header__catalog-open:hover {
    color: #13A7E7;
  }

  .main-header__catalog-open:hover div span {
    background: #13A7E7;
  }

  .footer-menu__value a:hover {
    text-decoration: underline;
  }

  .result-search__item:hover {
    background: #eefaff;
  }

  .result-search__item:hover .result-search__name {
    color: #185EC8;
  }

  .catalog-header__list a:hover {
    text-decoration: underline;
  }

  .banner-catalog-header__arrow:hover {
    background: #fff;
  }

  .social-top-footer__item:hover {
    background: #185EC8;
  }

  .main-footer__list a:hover {
    text-decoration: underline;
  }

  .contact-list__value a:hover {
    text-decoration: underline;
  }

  .bottom-footer__dev:hover {
    text-decoration: underline;
  }

  .banner__arrow:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  }

  .mini-catalog__arrow:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  }

  .item-mini-catalog__icon:hover {
    background: #13A7E7;
  }

  .item-mini-catalog__icon:hover svg path[fill] {
    fill: #fff;
  }

  .item-mini-catalog__icon:hover svg path[stroke] {
    stroke: #fff;
  }

  .promo__image:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }

  .promo__name:hover {
    color: #13A7E7;
  }

  .product-section__arrow:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  }

  .product:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  }

  .product__name:hover {
    color: #13A7E7;
  }

  .brands__arrow:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  }

  .mini-banner__item a:hover {
    text-decoration: underline;
  }

  .store-item:not(._active):hover {
    background: #e4f6fd;
  }

  .sidebar-catalog__item:hover {
    background: #ddf2fa;
  }

  .contact-card__phone a:hover {
    color: #13A7E7;
  }

  .nav-card__item:hover {
    color: #071C3C;
  }

  .not-found__action._white:hover {
    background: #13A7E7;
    color: #fff;
  }
}

._webp .page { background: url(../img/bg.webp) center/auto repeat; }