/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/style.scss ***!
  \***********************************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --theme-main-font: "Montserrat", sans-serif;
  --theme-second-font: "Montserrat", sans-serif;
}

.swiper {
  position: relative;
}
.swiper-slide {
  height: auto;
}

.swiper-button-prev, .swiper-button-next {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: transparent;
  padding: 9px 15px;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
  display: block;
  min-width: 35px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-prev:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 1279px) {
  .swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.thumbnail {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #ffa022;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .modal-content {
    max-width: 100%;
  }
}
.feedback-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.feedback-form input[type=text],
.feedback-form input[type=tel],
.feedback-form input[type=email],
.feedback-form textarea {
  max-width: 548px;
  width: 100%;
  height: 60px;
  border-radius: 2px;
  padding: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
}
.feedback-form textarea {
  height: 100px;
}
.feedback-form input,
.feedback-form button,
.feedback-form textarea {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.warning {
  font-size: 14px;
  color: #ff7979;
  visibility: hidden;
}
.warning--show {
  visibility: visible;
}

.loader {
  position: absolute;
  left: 75%;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  opacity: 0;
}

.btn.loading .loader {
  opacity: 1;
}

.lol-field {
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
label a {
  color: #333333;
  text-decoration: underline;
}
label a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .feedback-form {
    gap: 10px;
    margin-top: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feedback-form input[type=text],
  .feedback-form input[type=tel],
  .feedback-form input[type=email],
  .feedback-form textarea {
    max-width: none;
  }
  .feedback-form .btn {
    width: 100%;
  }
}
.feedback-form.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.feedback-form.main .feedback-form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 60px 40px;
  max-width: 414px;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.2196078431);
}
.feedback-form.main .feedback-form__title {
  margin-bottom: 40px;
}
.feedback-form.main .feedback-form__title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 130%;
  text-transform: uppercase;
  color: white;
}
.feedback-form.main .feedback-form__title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #e9e8e4;
}
.feedback-form.main input[type=text],
.feedback-form.main input[type=tel] {
  max-width: 334px;
  width: 100%;
  height: 60px;
  border-radius: 2px;
  padding: 20px;
  background-color: transparent;
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  border: 2px solid;
  -o-border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
     border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
}
.feedback-form.main input[type=text]::-webkit-input-placeholder, .feedback-form.main input[type=tel]::-webkit-input-placeholder {
  color: white;
}
.feedback-form.main input[type=text]::-moz-placeholder, .feedback-form.main input[type=tel]::-moz-placeholder {
  color: white;
}
.feedback-form.main input[type=text]:-ms-input-placeholder, .feedback-form.main input[type=tel]:-ms-input-placeholder {
  color: white;
}
.feedback-form.main input[type=text]::-ms-input-placeholder, .feedback-form.main input[type=tel]::-ms-input-placeholder {
  color: white;
}
.feedback-form.main input[type=text]::placeholder,
.feedback-form.main input[type=tel]::placeholder {
  color: white;
}
.feedback-form.main label {
  color: white;
  font-size: 15px;
}
.feedback-form.main label a {
  background: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
     border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
}
.feedback-form.main label a:hover {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .feedback-form.main {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 768px) {
  .contact-form__wrapper {
    padding: 24px 10px;
  }
  .feedback-form.main .feedback-form__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
    row-gap: 16px;
  }
  .feedback-form.main__title {
    margin-bottom: 20px;
  }
}
.feedback-form-modal input[type=text],
.feedback-form-modal input[type=tel] {
  width: 100%;
  height: 60px;
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: white;
  outline: none;
  border: 2px solid;
  -o-border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
     border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
  background-color: transparent;
}
.feedback-form-modal::-webkit-input-placeholder {
  color: white;
}
.feedback-form-modal::-moz-placeholder {
  color: white;
}
.feedback-form-modal:-ms-input-placeholder {
  color: white;
}
.feedback-form-modal::-ms-input-placeholder {
  color: white;
}
.feedback-form-modal::placeholder {
  color: white;
}
.feedback-form-modal label {
  color: white;
  font-size: 15px;
}
.feedback-form-modal label a {
  background: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
     border-image: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%) 1;
}
.feedback-form-modal label a:hover {
  border-bottom: none;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
  font-size: 0;
  line-height: 0;
}

.page-numbers {
  padding: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  text-decoration: none;
  color: rgba(51, 51, 51, 0.6980392157);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.page-numbers .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.page-numbers:hover:not(.current):not(.dots) {
  color: #1f5ac2;
}
.page-numbers.current {
  color: #1f5ac2;
  pointer-events: none;
}
.page-numbers.dots {
  font-size: 0;
  line-height: 0;
  cursor: default;
  pointer-events: none;
}
.page-numbers.dots::before {
  content: "......";
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-main-font);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 5px;
  color: rgba(51, 51, 51, 0.6980392157);
}
.page-numbers.next, .page-numbers.prev {
  position: relative;
  width: 60px;
  height: 34px;
}
.page-numbers .arrow {
  position: absolute;
  left: 50%;
  bottom: 6px;
  display: block;
  width: 60px;
  height: 6px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-numbers .arrow::before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2760%27 height=%276%27 viewBox=%270 0 60 6%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M53.0769 5.76923V3.46154H0V2.30769H53.0769V0L60 3L53.0769 5.76923Z%27 fill=%27%23343434%27/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.page-numbers .arrow.left {
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}

.breadcrumbs {
  margin-top: 40px;
  margin-bottom: -11px;
  position: relative;
  z-index: 2;
}
.breadcrumbs ul,
.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-align: left;
  color: rgba(51, 51, 51, 0.8);
}
.breadcrumbs a {
  padding: 8px 0;
}

@media (max-width: 1280px) {
  .breadcrumbs {
    margin-top: 0;
  }
}
.modal {
  display: none;
}
.modal.is-open {
  background-color: rgba(208, 208, 208, 0.2509803922);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 510;
}
.modal__container {
  background-color: #121519;
  padding: 60px;
  max-width: 500px;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  z-index: 520;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.modal__header .title {
  font-weight: 600;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.modal__header .subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #e1e1e1;
}
.modal__title {
  margin: 0;
  font-size: 1.5em;
}
.modal__close {
  background: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  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;
  top: 10px;
  right: 10px;
}
.modal__close:before {
  content: "✕";
  font-size: 26px;
  font-weight: bold;
  color: #d1d1d3;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal__container {
    padding: 40px 10px;
  }
  .modal__header .title {
    font-size: 28px;
  }
}
:root {
  --container-padding: 44px;
  --container-max-width: 1600px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-main-font);
  font-weight: 400;
  background-color: #F9F9F9;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}
body > .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
body > .wrapper .block__footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-second-font);
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol,
nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  background-repeat: round;
  background-position: center;
  background-size: contain;
}
main > *:first-child {
  padding-top: 162px;
  /* @media screen and (max-width: $tablet_min_width) {
  	padding-top: 161px;
  }

  // @media screen and (max-width: $mobile_max_width) {
  // 	padding-top: 139px;
  // } */
}
@media screen and (max-width: 1279px) {
  main > *:first-child {
    padding-top: 180px;
  }
}

/*
 * wpseo-frontend-inspector
 */
[style="position: relative; z-index: 99998;"] {
  display: none !important;
}

@media screen and (max-width: 1279px) {
  :root {
    --container-padding: 28px;
    --container-max-width: 1044px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 10px;
  }
}
.row {
  --gutter-x: 24px;
  --gutter-y: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}
.row .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}
.row .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}
.row .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}
.row .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}
.row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
.row .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}
.row .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}
.row .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}
.row .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}
.row .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}
.row .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.row-20 {
  --gutter-x: 20px;
  --gutter-y: 20px;
}
.row-0 {
  --gutter-x: 0px;
  --gutter-y: 0px;
}

@media screen and (max-width: 1280px) {
  .row {
    --gutter-x: 16px;
    --gutter-y: 16px;
  }
  .row .col-md {
    width: 100% !important;
  }
  .row .col-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .row .col-md-0 {
    width: 0% !important;
  }
  .row .col-md-2 {
    width: 16.6666666667% !important;
  }
  .row .col-md-3 {
    width: 25% !important;
  }
  .row .col-md-4 {
    width: 33.3333333333% !important;
  }
  .row .col-md-5 {
    width: 41.6666666667% !important;
  }
  .row .col-md-6 {
    width: 50% !important;
  }
  .row .col-md-7 {
    width: 58.3333333333% !important;
  }
  .row .col-md-8 {
    width: 66.6666666667% !important;
  }
  .row .col-md-9 {
    width: 75% !important;
  }
  .row .col-md-10 {
    width: 83.3333333333% !important;
  }
  .row .col-md-11 {
    width: 91.6666666667% !important;
  }
  .row .col-md-12 {
    width: 100% !important;
  }
}
@media screen and (max-width: 1025px) {
  .row {
    --gutter-x: 16px;
    --gutter-y: 16px;
  }
  .row .col-sm {
    width: 100% !important;
  }
  .row .col-sm {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .row .col-sm-0 {
    width: 0% !important;
  }
  .row .col-sm-2 {
    width: 16.6666666667% !important;
  }
  .row .col-sm-3 {
    width: 25% !important;
  }
  .row .col-sm-4 {
    width: 33.3333333333% !important;
  }
  .row .col-sm-5 {
    width: 41.6666666667% !important;
  }
  .row .col-sm-6 {
    width: 50% !important;
  }
  .row .col-sm-7 {
    width: 58.3333333333% !important;
  }
  .row .col-sm-8 {
    width: 66.6666666667% !important;
  }
  .row .col-sm-9 {
    width: 75% !important;
  }
  .row .col-sm-10 {
    width: 83.3333333333% !important;
  }
  .row .col-sm-11 {
    width: 91.6666666667% !important;
  }
  .row .col-sm-12 {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .row .col-xs {
    width: 100% !important;
  }
  .row .col-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.cmn-btn {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  text-align: center;
  position: relative;
  border-radius: 4px;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-main-font);
}
.cmn-btn.uppercase {
  text-transform: uppercase;
}
.cmn-btn--text-default {
  text-transform: none !important;
  text-transform: initial !important;
}
.cmn-btn--main, .cmn-btn--second {
  padding: 24px 108px;
  max-width: 345px;
  width: 100%;
  max-height: 72px;
  height: 100%;
}
.cmn-btn--main-md, .cmn-btn--second-md {
  padding: 20px 32px;
  height: 48px;
  max-width: 240px;
  width: 100%;
}
.cmn-btn--main-xs, .cmn-btn--second-xs {
  padding: 15px;
  height: 48px;
  width: 170px;
  max-width: 170px;
  max-height: 48px;
}
.cmn-btn--main {
  background: -webkit-gradient(linear, left top, right top, from(#ff6167), to(#ff9312));
  background: linear-gradient(90deg, #ff6167 0%, #ff9312 100%);
  color: #fff;
}
.cmn-btn--main[disabled] {
  color: #fff;
  opacity: 0.5;
  cursor: auto;
  cursor: initial;
  background: -webkit-gradient(linear, left top, right top, from(#ff6167), to(#ff9312));
  background: linear-gradient(90deg, #ff6167 0%, #ff9312 100%);
}
.cmn-btn--main[disabled]:hover {
  border: none;
}
.cmn-btn--main.blue-color {
  background: -webkit-gradient(linear, left top, right top, from(#0e479c), to(#390e6d));
  background: linear-gradient(90deg, #0e479c 0%, #390e6d 100%);
}
.cmn-btn--main.grey {
  background-color: #dadada;
  color: #333333;
}
.cmn-btn--main.grey:hover {
  background-color: #ffa022;
  color: #fff;
}
.cmn-btn--main-outline {
  background: transparent;
  color: #ffa022;
  border: 1px solid #ffa022;
}
.cmn-btn--second {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cmn-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.cmn-btn--full {
  max-width: 100%;
}

@media screen and (max-width: 1279px) {
  .cmn-btn--main:not([class*=-md]):not([class*=-xs]), .cmn-btn--second:not([class*=-md]):not([class*=-xs]) {
    padding: 16px 96px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-btn--main:not([class*=-md]):not([class*=-xs]), .cmn-btn--second:not([class*=-md]):not([class*=-xs]) {
    padding: 16px 48px;
    max-width: 100%;
  }
  .cmn-btn--main-md, .cmn-btn--second-md {
    width: 184px;
    height: 40px;
  }
  .cmn-btn--main.full, .cmn-btn--second.full {
    max-width: 100%;
  }
}
.woo-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#0e479c), to(#390e6d));
  background: linear-gradient(90deg, #0e479c 0%, #390e6d 100%);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-main-font);
  text-align: center;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, opacity 0.2s ease;
  transition: background 0.3s ease, opacity 0.2s ease;
}
.woo-btn:hover {
  background: -webkit-gradient(linear, left top, right top, from(#4275cc), to(#9a3cb9));
  background: linear-gradient(90deg, #4275cc 0%, #9a3cb9 100%);
  color: #fff;
}
.woo-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
.woo-btn.disabled, .woo-btn:disabled, .woo-btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.woo-btn--full {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1600px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 44px;
  padding: 0 var(--container-padding);
}

.second-font {
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-second-font);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(31, 90, 194, 0.6980392157);
  top: 0;
}

.list-bullet ul li {
  position: relative;
  padding-left: 24px;
}
.list-bullet ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #504d5c;
  position: absolute;
  left: 10px;
  top: 8px;
}

.hide {
  display: none;
}

.circle {
  display: block;
  width: 995px;
  height: 990px;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, rgba(235, 190, 156, 0.1803921569) 0%, rgba(233, 188, 155, 0.0001) 100%);
}

.gradient_color {
  background: linear-gradient(312.26deg, #4c3621 0%, #865b28 17.37%, #bc8a2c 53.12%, #f9d656 88.54%, #906226 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.block {
  padding: 60px 0;
  position: relative;
}
.block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  color: #333333;
  margin-bottom: 64px;
}
.block__title .title {
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  line-height: 140%;
}
.block__title .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.block__title-white {
  color: white;
}
.block__title-dark {
  color: #1f1f1f;
}
.block__title .gradient_color {
  background: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media screen and (max-width: 1279px) {
  .block {
    padding: 24px 0;
  }
  .block__title {
    gap: 16px;
    margin-bottom: 32px;
  }
  .block__title .title {
    font-size: 20px;
  }
  .block__title .subtitle {
    font-size: 14px;
  }
}
.tabs--head-label.active .chips--item {
  color: #fff;
  background: #2B2933;
}
.tabs--item {
  display: none;
  -webkit-animation: tab-opacity 0.8s;
          animation: tab-opacity 0.8s;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.tabs--item.active {
  display: block;
}

@-webkit-keyframes tab-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tab-opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.admin-bar .block__header:not(.block__header--hide) {
  top: 32px;
}

@media screen and (max-width: 1279px) {
  /*
   * Hide admin bar
   */
  body.admin-bar {
    top: 0 !important;
  }
  body.admin-bar {
    margin-top: -32px;
  }
  body.admin-bar #wpadminbar {
    display: none;
  }
  body.admin-bar .block__header:not(.block__header--hide) {
    top: 0;
  }
}
.search-form {
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2509803922);
  display: none;
}
.search-form.mobile {
  display: none;
}
.search-field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #d5d8d9;
  border-radius: 6px;
  max-width: none;
  position: relative;
}
.search-field {
  width: 333px;
  height: 38px;
  border: 1px solid #e0e0e0;
  padding: 10px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
.search-icon {
  content: "";
  display: block;
  padding: 20px;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width=%2727%27 height=%2726%27 viewBox=%270 0 27 26%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%2710.2016%27 cy=%2710.725%27 r=%279.1%27 stroke=%27%23013132%27 stroke-width=%272%27/%3E%3Cpath d=%27M25.0773 23.2375L20.5273 18.6875%27 stroke=%27%23013132%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.search-submit {
  display: none;
}

@media screen and (max-width: 1280px) {
  .search-form {
    display: none;
  }
  .search-form.mobile {
    display: block;
  }
  .search-field-wrapper {
    padding: 10px;
  }
  .search-field {
    width: 100%;
  }
  .search-icon {
    padding: 20px 30px;
  }
}
.block__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  width: 100%;
  top: 0;
  -webkit-transition: top 0.3s, background-color 0.3s ease;
  transition: top 0.3s, background-color 0.3s ease;
  z-index: 500;
  height: auto;
  min-height: 146px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eeeeee;
}
.block__header .header-container {
  margin: 0 auto;
  padding: 0 44px;
  padding: 0 var(--container-padding);
  width: 100%;
  max-width: 1600px;
  height: 100%;
}
.block__header .header-container--wrapper {
  height: 100%;
  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: 0;
  padding: 0;
}
.block__header .header-top,
.block__header .header-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.block__header .header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: 48px;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block__header .header-top__mobile-only {
  display: none;
}
.block__header .header-top__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 14px;
  line-height: 1.2;
  background: -webkit-gradient(linear, left top, right top, from(#0e479c), to(#390e6d));
  background: linear-gradient(to right, #0e479c, #390e6d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.block__header .header-top__contacts .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.block__header .header-top__contacts .icons img {
  width: 24px;
  height: 24px;
}
.block__header .header-bottom {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  z-index: 1;
  height: 98px;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block__header .header-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  background-color: rgba(10, 9, 13, 0.95);
  background-color: var(--header-bottom-bg-color, rgba(10, 9, 13, 0.95));
  background-image: none;
  background-image: var(--header-bottom-bg-image, none);
  background-repeat: no-repeat;
  background-repeat: var(--header-bottom-bg-repeat, no-repeat);
  background-position: center center;
  background-position: var(--header-bottom-bg-position, center center);
  background-size: cover;
  background-size: var(--header-bottom-bg-size, cover);
  z-index: -1;
}
.block__header .header-city,
.block__header .header-mail {
  color: white;
  font-weight: 500;
}
.block__header .header-mail,
.block__header .header-phone,
.block__header .header-city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.block__header .header-mail::before,
.block__header .header-phone::before,
.block__header .header-city::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.block__header .header-mail::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M3.33366 16.6666C2.87533 16.6666 2.4831 16.5036 2.15699 16.1775C1.83088 15.8514 1.66755 15.4589 1.66699 15V4.99998C1.66699 4.54165 1.83033 4.14942 2.15699 3.82331C2.48366 3.4972 2.87588 3.33387 3.33366 3.33331H16.667C17.1253 3.33331 17.5178 3.49665 17.8445 3.82331C18.1712 4.14998 18.3342 4.5422 18.3337 4.99998V15C18.3337 15.4583 18.1706 15.8508 17.8445 16.1775C17.5184 16.5041 17.1259 16.6672 16.667 16.6666H3.33366ZM10.0003 10.8333L16.667 6.66665V4.99998L10.0003 9.16665L3.33366 4.99998V6.66665L10.0003 10.8333Z%27 fill=%27url%28%23paint0_linear_99_3890%29%27/%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_99_3890%27 x1=%271.66699%27 y1=%279.99998%27 x2=%2718.3337%27 y2=%279.99998%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block__header .header-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_99_3898%29%27%3E%3Cpath d=%27M8 9C9.2 11.3583 11.6417 13.7917 14 15L15 13C15.225 12.775 15.7083 12.9 16 13C16.9333 13.3083 17.9667 13 19 13C19.4583 13 20 13.5417 20 14V17C20 17.4583 19.4583 18 19 18C11.175 18 5 11.825 5 4C5 3.54167 5.54167 3 6 3H9C9.45833 3 10 3.54167 10 4C10 5.04167 9.69167 6.06667 10 7C10.0917 7.29167 10.2333 7.76667 10 8L8 9Z%27 fill=%27url%28%23paint0_linear_99_3898%29%27/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_99_3898%27 x1=%275%27 y1=%2710.5%27 x2=%2720%27 y2=%2710.5%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3CclipPath id=%27clip0_99_3898%27%3E%3Crect width=%2720%27 height=%2720%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block__header .header-city::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8.00016 7.66667C7.55814 7.66667 7.13421 7.49107 6.82165 7.17851C6.50909 6.86595 6.3335 6.44203 6.3335 6C6.3335 5.55797 6.50909 5.13405 6.82165 4.82149C7.13421 4.50893 7.55814 4.33334 8.00016 4.33334C8.44219 4.33334 8.86611 4.50893 9.17867 4.82149C9.49123 5.13405 9.66683 5.55797 9.66683 6C9.66683 6.21887 9.62372 6.4356 9.53996 6.63781C9.4562 6.84002 9.33344 7.02375 9.17867 7.17851C9.02391 7.33328 8.84018 7.45604 8.63797 7.5398C8.43576 7.62356 8.21903 7.66667 8.00016 7.66667ZM8.00016 1.33334C6.76249 1.33334 5.5755 1.825 4.70033 2.70017C3.82516 3.57534 3.3335 4.76233 3.3335 6C3.3335 9.5 8.00016 14.6667 8.00016 14.6667C8.00016 14.6667 12.6668 9.5 12.6668 6C12.6668 4.76233 12.1752 3.57534 11.3 2.70017C10.4248 1.825 9.23784 1.33334 8.00016 1.33334Z%27 fill=%27url%28%23paint0_linear_318_2862%29%27/%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_318_2862%27 x1=%273.3335%27 y1=%278%27 x2=%2712.6668%27 y2=%278%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block__header .header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 674px;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-height: 48px;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  margin-right: auto;
}
.block__header .header-search input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  font-size: 14px;
}
.block__header .header-search button {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 0;
  background: #ffa022;
  cursor: pointer;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath opacity=%270.9%27 d=%27M19.6003 19.6004L15.5503 15.5504M15.5503 15.5504C16.2004 14.9003 16.716 14.1286 17.0678 13.2793C17.4196 12.43 17.6007 11.5197 17.6007 10.6004C17.6007 9.68106 17.4196 8.77076 17.0678 7.92143C16.716 7.07211 16.2004 6.3004 15.5503 5.65036C14.9003 5.00031 14.1286 4.48467 13.2793 4.13287C12.4299 3.78107 11.5196 3.6 10.6003 3.6C9.68103 3.6 8.77073 3.78107 7.92141 4.13287C7.07209 4.48467 6.30038 5.00031 5.65033 5.65036C4.33751 6.96318 3.59998 8.74375 3.59998 10.6004C3.59998 12.457 4.33751 14.2375 5.65033 15.5504C6.96315 16.8632 8.74372 17.6007 10.6003 17.6007C12.4569 17.6007 14.2375 16.8632 15.5503 15.5504Z%27 stroke=%27white%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E%0A");
}
.block__header .logo img {
  max-width: 122px;
  height: 56px;
}
.block__header-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 706px;
}
.block__header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.block__header-contacts a {
  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;
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  color: white;
}
.block__header-contacts a:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M15.7701 20.4976C14.6161 20.4525 11.3458 19.9724 7.92082 16.3349C4.49663 12.6966 4.04547 9.22346 4.0022 7.99679C3.93809 6.12741 5.28597 4.31166 6.843 3.60256C7.0305 3.51655 7.23582 3.48381 7.43883 3.50754C7.64184 3.53127 7.83555 3.61066 8.00096 3.73791C9.28312 4.73049 10.1678 6.23212 10.9275 7.41282C11.0947 7.67223 11.1661 7.98789 11.1283 8.29967C11.0905 8.61144 10.946 8.89754 10.7224 9.10343L9.15891 10.3369C9.08338 10.3949 9.03021 10.48 9.00928 10.5764C8.98835 10.6728 9.00109 10.7741 9.04512 10.8613C9.39932 11.5449 10.0292 12.563 10.7504 13.3291C11.4716 14.0953 12.4757 14.8086 13.1641 15.2274C13.2504 15.2789 13.352 15.2933 13.448 15.2676C13.544 15.242 13.627 15.1783 13.6802 15.0895L14.6979 13.444C14.885 13.18 15.161 13.0031 15.4681 12.9505C15.7752 12.8978 16.0896 12.9734 16.3455 13.1614C17.473 13.9905 18.7888 14.9142 19.752 16.2243C19.8815 16.4012 19.9639 16.6119 19.9906 16.8343C20.0172 17.0567 19.9871 17.2826 19.9035 17.4884C19.2327 19.1509 17.5355 20.5666 15.7701 20.4976Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
}
.block__header-contacts .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
}
.block__header-contacts .icons img {
  width: 26px;
  height: 26px;
}
.block__header-contacts .btn_call {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  background: linear-gradient(312.26deg, #c6a155 0%, #dbc27e 17.37%, #efe1a5 37.5%, #fbf5bf 55.73%, #e9db9c 80.73%, #c19c4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  cursor: pointer;
}
.block__header .header-cart {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 8px;
}
.block__header .header-cart img {
  width: 45px;
  height: 45px;
}
.block__header .header-cart__count {
  position: absolute;
  right: -8px;
  top: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #8a4fff;
  color: white;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
.block__header .order_call a {
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  text-decoration: underline;
  color: #ffa022;
}

@media screen and (max-width: 1279px) {
  .block__header {
    height: auto;
    min-height: 146px;
  }
  .block__header--main {
    top: 0 !important;
  }
  .block__header .header-top {
    border-bottom-color: #d9d9d9;
  }
  .block__header .header-top .block__header-nav {
    position: static;
    max-width: 0;
    width: 0;
  }
  .block__header .header-top__mobile-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .block__header .header-top__contacts {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
  }
  .block__header .header-top .header-mail--desktop {
    display: none;
  }
  .block__header .header-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    height: 125px;
    padding-top: 6px;
    padding-bottom: 8px;
  }
  .block__header .logo img {
    max-width: 74px;
    max-height: 32px;
    min-width: 74px;
    min-height: 32px;
  }
  .block__header .header-catalog-btn {
    display: none;
  }
  .block__header .header-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    max-width: 100%;
    min-width: auto;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    min-height: 48px;
  }
  .block__header .header-cart {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-left: auto;
  }
  .block__header .header-cart img {
    width: 36px;
    height: 36px;
  }
  .block__header--nav_btns {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .block__header .logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .block__header #phone-icon {
    display: none;
  }
  .block__header-contacts {
    display: none;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
  .block__header-contacts a {
    white-space: normal;
  }
}
@media screen and (min-width: 1279px) {
  .block__header-nav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .block__header-nav nav ul {
    width: 100%;
    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;
    padding: 5px 0;
  }
  .block__header-nav nav ul > li {
    text-align: center;
  }
  .block__header-nav nav ul > li.catalog-btn {
    display: none;
  }
  .block__header-nav nav ul > li a {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #333333;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .block__header-nav nav ul > li a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#0e479c), to(#390e6d));
    background: linear-gradient(to right, #0e479c, #390e6d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #333333;
  }
  .block__header-nav nav ul .nav-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
  .block__header-nav nav ul .nav-contacts .phones-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .block__header-nav nav ul .nav-contacts a {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: #333333;
  }
  .block__header-nav nav ul .nav-contacts a img {
    width: 20px;
    height: 20px;
  }
  .block__header--nav_btns {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  body.home .block__header .burger span, body.home .block__header .burger span:before, body.home .block__header .burger span:after,
  body.single .block__header .burger span,
  body.single .block__header .burger span:before,
  body.single .block__header .burger span:after {
    background: white;
  }
  #phone-icon img {
    min-width: 35px;
    min-height: 35px;
  }
  body.body-contacts-show {
    overflow: hidden;
  }
  body.body-contacts-show .block__header-contacts {
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.body-contacts-show #phone-icon {
    -webkit-transform: rotate(100deg);
            transform: rotate(100deg);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  body.body-nav-show {
    overflow: hidden;
  }
  body.body-nav-show .block__header-nav > nav {
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 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;
    top: 100%;
    height: calc(100dvh - 100%);
    max-height: calc(100dvh - 100%);
  }
  body.body-nav-show .block__header-nav > nav > ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }
  body.body-nav-show .block__header-nav > nav .nav-contacts {
    display: none;
  }
  body.body-nav-show .block__header .burger span {
    background: transparent;
  }
  body.body-nav-show .block__header .burger span:before {
    background-color: white;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    transition: top 200ms, transform 200ms 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 200ms 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  body.body-nav-show .block__header .burger span:after {
    background-color: white;
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    transition: bottom 200ms, transform 200ms 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 200ms 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .block__header--nav_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .block__header-nav > nav, .block__header-contacts {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 9999;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .block__header-nav > nav {
    /*
         * All li
         */
  }
  .block__header-nav > nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .block__header-nav > nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1490196078);
  }
  .block__header-nav > nav li.catalog-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .block__header-nav > nav li.catalog-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .block__header-nav > nav li.catalog-btn a img {
    width: 20px;
    height: 20px;
  }
  .block__header-nav > nav li:first-child {
    border-top: 1px solid rgba(51, 51, 51, 0.1490196078);
  }
  .block__header-nav > nav li a {
    color: rgba(51, 51, 51, 0.8);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    width: 100%;
    padding: 17px 12px;
  }
  .block__header-nav > nav li.menu-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .block__header-nav > nav li.menu-item-has-children > a {
    pointer-events: none;
  }
  .block__header-nav > nav li.menu-item-has-children .sub-menu {
    display: none;
  }
  .block__header-nav > nav li.menu-item-has-children:hover::after {
    -webkit-transform: translate(-10px, -50%) rotate(180deg);
            transform: translate(-10px, -50%) rotate(180deg);
  }
  .block__header-nav > nav li.menu-item-has-children:hover .sub-menu {
    display: block;
    width: 100%;
  }
  .block__header .burger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: -webkit-gradient(linear, left top, right top, from(#ff6167), to(#ff9312));
    background: linear-gradient(90deg, #ff6167 0%, #ff9312 100%);
    border-radius: 4px;
  }
  .block__header .burger span {
    top: 50%;
    margin-top: -1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .block__header .burger span, .block__header .burger span:before, .block__header .burger span:after {
    width: 25px;
    position: absolute;
    height: 3px;
    background: white;
    display: block;
    border-radius: 2px;
  }
  .block__header .burger span:after {
    content: "";
    bottom: -8px;
    transition: bottom 200ms 200ms, transform 200ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .block__header .burger span:before {
    content: "";
    top: -8px;
    transition: top 200ms 200ms, transform 200ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.block__footer {
  background-color: #E9E9E9;
  padding: 56px 0;
}
.block__footer .img-placeholder {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #d9d9d9;
  color: rgba(51, 51, 51, 0.8980392157);
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.block__footer .img-placeholder--logo {
  width: 106px;
  height: 72px;
  border-radius: 4px;
  font-size: 14px;
}
.block__footer .img-placeholder--social {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}
.block__footer .img-placeholder--payment {
  width: 48px;
  height: 28px;
  border-radius: 2px;
  font-size: 8px;
}
.block__footer--wrapper {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(140px, 0.85fr) minmax(140px, 0.85fr) minmax(200px, 1fr);
  grid-gap: 40px 32px;
  gap: 40px 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.block__footer--company {
  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;
}
.block__footer--company .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: 12px;
}
.block__footer--company .company-name,
.block__footer--company .unp {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333333;
}
.block__footer--company .privacy-link {
  margin-top: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  background: -webkit-gradient(linear, left top, right top, from(#0e479c), to(#390e6d));
  background: linear-gradient(to right, #0e479c, #390e6d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}
.block__footer--company .privacy-link:hover {
  text-decoration: none;
}
.block__footer--logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
}
.block__footer .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #333333;
  text-decoration: none;
}
.block__footer .item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
.block__footer .item.phone::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_99_3898%29%27%3E%3Cpath d=%27M8 9C9.2 11.3583 11.6417 13.7917 14 15L15 13C15.225 12.775 15.7083 12.9 16 13C16.9333 13.3083 17.9667 13 19 13C19.4583 13 20 13.5417 20 14V17C20 17.4583 19.4583 18 19 18C11.175 18 5 11.825 5 4C5 3.54167 5.54167 3 6 3H9C9.45833 3 10 3.54167 10 4C10 5.04167 9.69167 6.06667 10 7C10.0917 7.29167 10.2333 7.76667 10 8L8 9Z%27 fill=%27url%28%23paint0_linear_99_3898%29%27/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_99_3898%27 x1=%275%27 y1=%2710.5%27 x2=%2720%27 y2=%2710.5%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3CclipPath id=%27clip0_99_3898%27%3E%3Crect width=%2720%27 height=%2720%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block__footer .item.email::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M3.33366 16.6666C2.87533 16.6666 2.4831 16.5036 2.15699 16.1775C1.83088 15.8514 1.66755 15.4589 1.66699 15V4.99998C1.66699 4.54165 1.83033 4.14942 2.15699 3.82331C2.48366 3.4972 2.87588 3.33387 3.33366 3.33331H16.667C17.1253 3.33331 17.5178 3.49665 17.8445 3.82331C18.1712 4.14998 18.3342 4.5422 18.3337 4.99998V15C18.3337 15.4583 18.1706 15.8508 17.8445 16.1775C17.5184 16.5041 17.1259 16.6672 16.667 16.6666H3.33366ZM10.0003 10.8333L16.667 6.66665V4.99998L10.0003 9.16665L3.33366 4.99998V6.66665L10.0003 10.8333Z%27 fill=%27url%28%23paint0_linear_99_3890%29%27/%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_99_3890%27 x1=%271.66699%27 y1=%279.99998%27 x2=%2718.3337%27 y2=%279.99998%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block__footer .item.address {
  font-size: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.block__footer .item.address::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M7.99967 7.66671C7.55765 7.66671 7.13372 7.49111 6.82116 7.17855C6.5086 6.86599 6.33301 6.44207 6.33301 6.00004C6.33301 5.55801 6.5086 5.13409 6.82116 4.82153C7.13372 4.50897 7.55765 4.33337 7.99967 4.33337C8.4417 4.33337 8.86562 4.50897 9.17819 4.82153C9.49075 5.13409 9.66634 5.55801 9.66634 6.00004C9.66634 6.21891 9.62323 6.43564 9.53947 6.63785C9.45572 6.84006 9.33295 7.02379 9.17819 7.17855C9.02342 7.33332 8.83969 7.45608 8.63748 7.53984C8.43527 7.6236 8.21854 7.66671 7.99967 7.66671ZM7.99967 1.33337C6.762 1.33337 5.57501 1.82504 4.69984 2.70021C3.82467 3.57538 3.33301 4.76236 3.33301 6.00004C3.33301 9.50004 7.99967 14.6667 7.99967 14.6667C7.99967 14.6667 12.6663 9.50004 12.6663 6.00004C12.6663 4.76236 12.1747 3.57538 11.2995 2.70021C10.4243 1.82504 9.23735 1.33337 7.99967 1.33337Z%27 fill=%27url%28%23paint0_linear_297_3589%29%27/%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_297_3589%27 x1=%273.33301%27 y1=%278.00004%27 x2=%2712.6663%27 y2=%278.00004%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
.block__footer .item:hover {
  text-decoration: underline;
}
.block__footer .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  color: #333333;
  margin: 0 0 20px;
  text-transform: none;
}
.block__footer--nav nav > ul, .block__footer--info nav > ul {
  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: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.block__footer--nav nav > ul > li, .block__footer--info nav > ul > li {
  margin: 0;
}
.block__footer--nav nav > ul > li > a, .block__footer--info nav > ul > li > a {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: rgba(51, 51, 51, 0.8980392157);
  text-decoration: none;
}
.block__footer--nav nav > ul > li > a:hover, .block__footer--info nav > ul > li > a:hover {
  color: #333333;
  text-decoration: underline;
}
.block__footer--contacts .content {
  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: 16px;
}
.block__footer--contacts .contacts__item {
  margin: 0;
}
.block__footer--contacts .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.block__footer--contacts .socials > a img {
  width: 24px;
  height: 24px;
}
.block__footer--contacts .payments {
  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: 8px;
  margin-top: 4px;
}
.block__footer--contacts .payments__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

@media screen and (max-width: 1279px) {
  .block__footer {
    padding: 40px 0;
  }
  .block__footer--wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .block__footer--company {
    grid-column: 1/-1;
  }
  .block__footer--contacts {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .block__footer {
    padding: 32px 0 40px;
  }
  .block__footer--wrapper {
    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;
    gap: 28px;
  }
  .block__footer--company {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .block__footer--company .info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .block__footer--nav, .block__footer--info {
    width: 100%;
  }
  .block__footer--nav .title, .block__footer--info .title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .block__footer--nav nav > ul, .block__footer--info nav > ul {
    row-gap: 12px;
  }
  .block__footer--nav nav > ul > li > a, .block__footer--info nav > ul > li > a {
    font-size: 14px;
  }
  .block__footer--contacts {
    width: 100%;
  }
  .block__footer--contacts .content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .block__footer--contacts .socials,
  .block__footer--contacts .payments__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.cookie__policy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 44px;
  background-color: #fff;
  -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.08);
}
.cookie__policy--container {
  max-width: 1600px;
  margin: 0 auto;
}
.cookie__policy--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.cookie__policy--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cookie__policy--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
}
.cookie__policy--description {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}
.cookie__policy--description a {
  font-weight: 700;
  color: #1f5ac2;
  text-decoration: underline;
}
.cookie__policy--description a:hover {
  text-decoration: none;
}
.cookie__policy--btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 170px;
}
.cookie__policy--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 48px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-family: var(--theme-main-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  white-space: nowrap;
}
.cookie__policy--btn-accept {
  border: none;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1f5ac2), to(#4a2d8e));
  background: linear-gradient(90deg, #1f5ac2 0%, #4a2d8e 100%);
}
.cookie__policy--btn-accept:hover {
  opacity: 0.9;
}
.cookie__policy--btn-decline {
  background: #fff;
  color: #4a2d8e;
  border: 1px solid #4a2d8e;
}
.cookie__policy--btn-decline:hover {
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .cookie__policy {
    padding: 20px 28px;
  }
  .cookie__policy--content {
    -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;
    gap: 20px;
  }
  .cookie__policy--btns {
    width: 100%;
    min-width: 0;
    min-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .cookie__policy {
    padding: 16px 10px;
  }
}
.catalog__nav {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: visible;
}
.catalog__nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
}

.header-catalog-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  text-align: center;
  position: relative;
  border-radius: 4px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#ff6167), to(#ff9312));
  background: linear-gradient(90deg, #ff6167 0%, #ff9312 100%);
  color: white;
  width: 217px;
  height: 48px;
}
.header-catalog-btn::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4 18C3.71667 18 3.47934 17.904 3.288 17.712C3.09667 17.52 3.00067 17.2827 3 17C2.99934 16.7173 3.09534 16.48 3.288 16.288C3.48067 16.096 3.718 16 4 16H20C20.2833 16 20.521 16.096 20.713 16.288C20.905 16.48 21.0007 16.7173 21 17C20.9993 17.2827 20.9033 17.5203 20.712 17.713C20.5207 17.9057 20.2833 18.0013 20 18H4ZM4 13C3.71667 13 3.47934 12.904 3.288 12.712C3.09667 12.52 3.00067 12.2827 3 12C2.99934 11.7173 3.09534 11.48 3.288 11.288C3.48067 11.096 3.718 11 4 11H20C20.2833 11 20.521 11.096 20.713 11.288C20.905 11.48 21.0007 11.7173 21 12C20.9993 12.2827 20.9033 12.5203 20.712 12.713C20.5207 12.9057 20.2833 13.0013 20 13H4ZM4 8C3.71667 8 3.47934 7.904 3.288 7.712C3.09667 7.52 3.00067 7.28267 3 7C2.99934 6.71733 3.09534 6.48 3.288 6.288C3.48067 6.096 3.718 6 4 6H20C20.2833 6 20.521 6.096 20.713 6.288C20.905 6.48 21.0007 6.71733 21 7C20.9993 7.28267 20.9033 7.52033 20.712 7.713C20.5207 7.90567 20.2833 8.00133 20 8H4Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.category__menu--container {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 600;
  min-width: 320px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  overflow: visible;
}
.catalog__nav.is-open .category__menu--container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.category__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 320px;
  overflow: visible;
}
.category__menu > .menu-item {
  border-bottom: 1px solid #eeeeee;
}
.category__menu > .menu-item:last-child {
  border-bottom: 0;
}
.category__menu > .menu-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.category__menu > .menu-item > a:hover {
  background-color: #f5f5f5;
}
.category__menu > .menu-item.menu-item-has-children {
  position: relative;
  z-index: 1;
}
.category__menu > .menu-item.menu-item-has-children.is-active {
  z-index: 2;
}
.category__menu > .menu-item.menu-item-has-children > a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M6 4L10 8L6 12%27 stroke=%27%230E479C%27 stroke-width=%271.5%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.category__menu > .menu-item.menu-item-has-children.is-active > a {
  background-color: #f5f5f5;
}
.category__menu > .menu-item.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 3;
  width: 744px;
  max-height: 264px;
  overflow-y: auto;
  margin: 0;
  padding: 12px 20px;
  list-style: none;
  background: #fff;
  border-radius: 0 4px 4px 0;
  -webkit-box-shadow: 8px 0 24px rgba(0, 0, 0, 0.08);
          box-shadow: 8px 0 24px rgba(0, 0, 0, 0.08);
  border-left: 1px solid #eeeeee;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.category__menu > .menu-item.menu-item-has-children > .sub-menu .menu-item {
  border: 0;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  page-break-inside: avoid;
}
.category__menu > .menu-item.menu-item-has-children > .sub-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(51, 51, 51, 0.75);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.category__menu > .menu-item.menu-item-has-children > .sub-menu a::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.5 2.5L7.5 6L4.5 9.5%27 stroke=%27%23333333%27 stroke-width=%271.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-opacity=%270.75%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background-image 0.2s ease;
  transition: background-image 0.2s ease;
}
.category__menu > .menu-item.menu-item-has-children > .sub-menu a:hover {
  color: #0e479c;
}
.category__menu > .menu-item.menu-item-has-children > .sub-menu a:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.5 2.5L7.5 6L4.5 9.5%27 stroke=%27%230E479C%27 stroke-width=%271.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
}
.category__menu > .menu-item.menu-item-has-children.is-active > .sub-menu {
  display: block;
}
.category__menu > .menu-item:last-child.menu-item-has-children > .sub-menu {
  top: auto;
  bottom: 0;
}

@media screen and (max-width: 1279px) {
  .catalog__nav {
    display: none;
  }
  body.body-catalog-show .block__header-nav > nav > ul {
    display: none;
  }
  body.body-catalog-show .catalog-mobile-menu {
    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-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }
  .catalog-mobile-menu {
    display: none;
    width: 100%;
  }
  .catalog-mobile-menu__back {
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: 100%;
    padding: 17px 12px;
    border: 0;
    background: -webkit-gradient(linear, left top, right top, from(#ff6167), to(#ff9312));
    background: linear-gradient(90deg, #ff6167 0%, #ff9312 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: "Montserrat", sans-serif;
  }
  .catalog-mobile-menu__back:not([hidden]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .catalog-mobile-menu__back-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M12 4L6 10L12 16%27 stroke=%27white%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .catalog-mobile-menu__content {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }
  .category__menu--mobile,
  .category__menu--mobile-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    width: 100%;
  }
  .category__menu--mobile > .menu-item,
  .category__menu--mobile-sub > .menu-item {
    display: block;
    width: 100%;
  }
  .category__menu--mobile .menu-item,
  .category__menu--mobile-sub .menu-item {
    border-bottom: 1px solid rgba(51, 51, 51, 0.15);
  }
  .category__menu--mobile .menu-item:first-child,
  .category__menu--mobile-sub .menu-item:first-child {
    border-top: 1px solid rgba(51, 51, 51, 0.15);
  }
  .category__menu--mobile .menu-item > a,
  .category__menu--mobile-sub .menu-item > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 17px 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(51, 51, 51, 0.8);
    text-decoration: none;
  }
  .category__menu--mobile .sub-menu,
  .category__menu--mobile-sub .sub-menu {
    display: none !important;
  }
  .catalog-mobile-menu .menu-item-has-children {
    -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;
  }
  .catalog-mobile-menu .menu-item-has-children::after {
    display: none;
  }
  .catalog-mobile-menu .menu-item-has-children > a {
    pointer-events: auto;
  }
  .catalog-mobile-menu .menu-item-has-children .sub-menu {
    display: none !important;
  }
  .category__menu--mobile .menu-item-has-children.is-active > .sub-menu {
    display: none !important;
  }
  .category__menu--mobile-sub .menu-item > a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .category__menu--mobile-sub .menu-item > a::before {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M4.5 2.5L7.5 6L4.5 9.5%27 stroke=%27%23333333%27 stroke-width=%271.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-opacity=%270.75%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
.single .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.single .content * {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.single .content ul {
  list-style: disc;
}
.single .content ul li {
  margin-left: 24px;
  margin-bottom: 8px;
}
.single .img {
  margin-bottom: 40px;
}

@media (max-width: 1025px) {
  .single .content {
    gap: 20px;
  }
  .single .content * {
    font-size: 16px;
  }
}
.page__tpl h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 130%;
  margin-bottom: 10px;
}
.page__tpl h3,
.page__tpl h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 10px;
}
.page__tpl p {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 10px;
}
.page__tpl ul li {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 10px;
}
.page__tpl img {
  -o-object-fit: contain;
     object-fit: contain;
}

.cheque__img {
  max-width: 282px;
  max-height: 380px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page__policy--content {
  padding-bottom: 100px;
}
.page__policy--content > *:not(:last-child) {
  margin-bottom: 16px;
}
.page__policy--content > *:not(h2):not(h3):not(h4) + h2, .page__policy--content > *:not(h2):not(h3):not(h4) + h3, .page__policy--content > *:not(h2):not(h3):not(h4) + h4 {
  margin-top: 40px;
}
.page__policy--content h2 {
  font-size: 26px;
  line-height: 140%;
}
.page__policy--content h3 {
  font-size: 24px;
  line-height: 140%;
}
.page__policy--content h4 {
  font-size: 22px;
  line-height: 140%;
}
.page__policy--content p,
.page__policy--content ul,
.page__policy--content ol {
  font-size: 16px;
  line-height: 140%;
}
.page__policy--content ul li {
  position: relative;
  padding-left: 23px;
}
.page__policy--content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.page__policy--content ul li:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #627384;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 9px;
}
.page__policy--content strong {
  font-weight: 500;
}
.page__policy--content a {
  text-decoration-line: underline;
  word-break: break-all;
}
.page__policy--content a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1279px) {
  .page__policy--content {
    padding-bottom: 60px;
  }
  .page__policy--content h2 {
    font-size: 18px;
  }
  .page__policy--content h3 {
    font-size: 16px;
  }
}
.archive-page-novinki .row {
  --gutter-y: 32px;
}
.archive-page-novinki .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.archive-page-novinki .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.archive-page-novinki .item__img {
  position: relative;
  overflow: hidden;
}
.archive-page-novinki .item__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-page-novinki .item__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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 16px;
  gap: 8px;
}
.archive-page-novinki .item__date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #696969;
}
.archive-page-novinki .item__date::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M9.2 1.5L3.5 9.2H7.5L6.2 14.5L12.5 6.8H8.5L9.2 1.5Z%27 fill=%27%23999999%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.archive-page-novinki .item__title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
}
.archive-page-novinki .item__excerpt {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #696969;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.archive-page-novinki .item__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(#0e479c), to(#390e6d));
  background: linear-gradient(to right, #0e479c, #390e6d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #333333;
}
.archive-page-novinki .item__link:hover {
  text-decoration: underline;
}
.archive-page-novinki .item__link::after {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M9 6L15 12L9 18%27 stroke=%27url%28%23paint0_linear_118_3418%29%27 stroke-width=%271.75781%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3Cdefs%3E%3ClinearGradient id=%27paint0_linear_118_3418%27 x1=%279%27 y1=%2712%27 x2=%2715%27 y2=%2712%27 gradientUnits=%27userSpaceOnUse%27%3E%3Cstop stop-color=%27%230E479C%27/%3E%3Cstop offset=%271%27 stop-color=%27%23390E6D%27/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1279px) {
  .archive-page-novinki .item__title {
    font-size: 16px;
  }
  .archive-page-novinki .item__link {
    font-size: 14px;
  }
}

.error_page {
  padding-bottom: 50px;
}
.error_page--content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error_page--title {
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 40px;
}
.error_page--img {
  max-width: 422px;
  width: 100%;
  max-height: 184px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 32px;
}
.error_page--subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 40px;
  max-width: 442px;
  text-align: center;
}

@media (max-width: 769px) {
  .error_page--content {
    padding: 20px 0;
  }
  .error_page--title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .error_page--img {
    margin-bottom: 20px;
  }
  .error_page--subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
}
