/*!***********************************************************************************************************************************************************!*\
  !*** 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-button-prev, .swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  background-color: white;
  border-radius: 100px;
  padding: 10px 15px;
  border: 1px solid;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width=%2710%27 height=%2720%27 viewBox=%270 0 10 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 18.5L8.35495 10.6854C8.71735 10.3003 8.71735 9.69969 8.35495 9.31464L1 1.5%27 stroke=%27%233478BE%27 stroke-width=%272%27/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-disabled {
  background-color: white;
}
.swiper-button-disabled:after {
  background-image: url("data:image/svg+xml,%3Csvg width=%278%27 height=%2715%27 viewBox=%270 0 8 15%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg transform=%27rotate%28180, 4, 7.5%29%27%3E%3Cpath d=%27M8 13.7741L6.8102 15L0.329635 8.31881C0.225172 8.21176 0.142269 8.08445 0.0856964 7.94422C0.0291242 7.804 0 7.65362 0 7.50174C0 7.34985 0.0291242 7.19947 0.0856964 7.05925C0.142269 6.91902 0.225172 6.79171 0.329635 6.68466L6.8102 0L7.99888 1.22591L1.91641 7.5L8 13.7741Z%27 fill=%27%23121212%27/%3E%3C/g%3E%3C/svg%3E");
}
.swiper-button-prev:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.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: #2260a1;
  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 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 44px;
  width: 100%;
}
.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: #1a1a1a;
  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%;
  }
}
.contact-form__content {
  padding: 56px 44px;
  position: relative;
  background-color: #206dbc;
  color: white;
  border-radius: 20px;
}
.contact-form .title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
}
.contact-form .subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 44px;
  text-align: center;
}

.feedback-form.main {
  position: relative;
}
.feedback-form.main .feedback-form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
}
.feedback-form.main input[type=text],
.feedback-form.main input[type=tel],
.feedback-form.main input[type=email] {
  max-width: 274px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.feedback-form.main .btn {
  max-width: 252px;
}

@media (max-width: 768px) {
  .contact-form__content {
    padding: 10px;
  }
  .contact-form .title {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .contact-form .subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .feedback-form.main .feedback-form__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .feedback-form.main input[type=text],
  .feedback-form.main input[type=tel],
  .feedback-form.main input[type=email] {
    max-width: 100%;
  }
  .feedback-form.main .btn {
    max-width: 100%;
  }
}
.feedback-form-modal input[type=text],
.feedback-form-modal input[type=tel] {
  width: 100%;
  height: 64px;
  border-radius: 4px;
  border: 1px solid #d5d8d9;
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  outline: none;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 44px;
  gap: 12px;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.page-numbers {
  position: relative;
  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;
  width: 20px;
  height: 20px;
  padding: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #848484;
}
.page-numbers:before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  color: #2260a1;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-numbers:after {
  content: "/";
  margin-left: 15px;
}
.page-numbers.next, .page-numbers.prev {
  width: 60px;
  border: none;
}
.page-numbers.next:after, .page-numbers.prev:after {
  content: "";
}
.page-numbers.next:hover, .page-numbers.prev:hover {
  border: none;
}
.page-numbers.next {
  margin-left: 20px;
}
.page-numbers.prev {
  margin-right: 20px;
}
.page-numbers .arrow {
  padding: 20px 0;
  width: 100%;
}
.page-numbers .arrow::before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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: rotate(180deg);
          transform: rotate(180deg);
}
.page-numbers:active {
  color: #1a1a1a;
}
.page-numbers.current {
  color: #2260a1;
}

.breadcrumbs {
  margin-bottom: 40px;
  margin-top: 10px;
}
.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: 600;
  line-height: 19.6px;
  text-align: left;
  color: #1a1a1a;
}

@media (max-width: 1280px) {
  .breadcrumbs {
    margin-bottom: 25px;
  }
}
.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: white;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  max-height: 100vh;
  border-radius: 8px;
  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: 400;
  font-size: 40px;
  line-height: 140%;
  color: #444;
}
.modal__header .subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #444;
}
.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: #2260a1;
  cursor: pointer;
}

.news__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 0px 14px 1px rgba(0, 0, 0, 0.1215686275);
}
.news__card--img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__card--content {
  padding: 24px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 300px;
  height: 100%;
}
.news__card--content .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 20px;
}
.news__card--content .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__card--content .link {
  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;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #2260a1;
  padding-top: 24px;
  border-top: 1px solid #e9e9e9;
  margin-top: auto;
}
.news__card--content .link:after {
  content: "";
  display: block;
  width: 21px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2721%27 height=%278%27 viewBox=%270 0 21 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M20.3536 4.35355C20.5488 4.15829 20.5488 3.84171 20.3536 3.64645L17.1716 0.464466C16.9763 0.269204 16.6597 0.269204 16.4645 0.464466C16.2692 0.659728 16.2692 0.976311 16.4645 1.17157L19.2929 4L16.4645 6.82843C16.2692 7.02369 16.2692 7.34027 16.4645 7.53553C16.6597 7.7308 16.9763 7.7308 17.1716 7.53553L20.3536 4.35355ZM0 4V4.5H20V4V3.5H0V4Z%27 fill=%27%23FF9430%27/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 1024px) {
  .news__card--content {
    padding: 20px 12px;
  }
  .news__card--content .title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .news__card--content .subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.equipment_wrapper {
  padding: 44px;
  border-radius: 20px;
  background-color: #1a1a1a;
}
.equipment_wrapper .block__title {
  color: white;
}
.equipment-swiper--slide:hover {
  cursor: pointer;
}
.equipment-swiper--img {
  height: 226px;
}

.slider-modal .modal__container {
  max-width: 1059px;
  max-height: 885px;
}
.slider-modal .equipment-swiper-modal--img {
  max-height: 700px;
}

@media (max-width: 768px) {
  .equipment_wrapper {
    padding: 10px;
  }
  .equipment-swiper--wrapper {
    padding-bottom: 88px;
  }
  .equipment-swiper--img {
    height: 250px;
    width: 100%;
  }
  .equipment-swiper-button-prev, .equipment-swiper-button-next {
    top: auto;
    bottom: 10px;
  }
  .equipment-swiper-button-prev {
    left: 35%;
  }
  .equipment-swiper-button-next {
    right: 35%;
  }
  .slider-modal .modal__container {
    max-width: 100%;
    max-height: 400px;
  }
  .slider-modal .equipment-swiper-modal--img {
    max-height: 340px;
  }
}
:root {
  --container-padding: 44px;
  --container-max-width: 1288px;
}

*,
::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: #F3F4F8;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
body > .wrapper {
  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;
  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: 100px;
  /* @media screen and (max-width: $tablet_min_width) {
  	padding-top: 161px;
  }*/
}
@media screen and (max-width: 767px) {
  main > *:first-child {
    padding-top: 45px;
  }
}

/*
 * 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: 600;
  font-size: 18px;
  line-height: 120%;
  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: 30px;
  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: 13px 36px;
  height: 60px;
  color: white;
}
.cmn-btn--main:after, .cmn-btn--second:after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2734%27 height=%2734%27 viewBox=%270 0 34 34%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg clip-path=%27url%28%23clip0_208_105%29%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M24.0953 9.32981C23.9791 9.28274 23.8547 9.25948 23.7294 9.26141L12.2063 9.24445C11.9498 9.24445 11.7037 9.34636 11.5223 9.52777C11.3409 9.70918 11.239 9.95522 11.239 10.2118C11.239 10.4683 11.3409 10.7144 11.5223 10.8958C11.7037 11.0772 11.9498 11.1791 12.2063 11.1791L21.4044 11.1791L9.47408 23.1094C9.29404 23.2894 9.1929 23.5336 9.1929 23.7882C9.1929 24.0428 9.29404 24.287 9.47408 24.467C9.65411 24.6471 9.89829 24.7482 10.1529 24.7482C10.4075 24.7482 10.6517 24.6471 10.8317 24.467L22.762 12.5367V21.7348C22.7721 21.9881 22.8772 22.2284 23.0565 22.4077C23.2358 22.5869 23.476 22.6921 23.7293 22.7021C23.8574 22.7003 23.9837 22.6723 24.1004 22.6197C24.2172 22.5672 24.3219 22.4913 24.4082 22.3966C24.4988 22.3118 24.5711 22.2093 24.6207 22.0955C24.6703 21.9817 24.6962 21.8589 24.6967 21.7348L24.6797 10.2118C24.6816 10.0864 24.6584 9.96198 24.6113 9.84581C24.5642 9.72963 24.4943 9.62409 24.4057 9.53545C24.317 9.44682 24.2115 9.37689 24.0953 9.32981Z%27 fill=%27white%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_208_105%27%3E%3Crect width=%2734%27 height=%2734%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.cmn-btn--main-md, .cmn-btn--second-md {
  padding: 10px 25px;
  height: 40px;
  width: 124px;
}
.cmn-btn--main-xs, .cmn-btn--second-xs {
  padding: 15px;
  height: 48px;
  width: 170px;
}
.cmn-btn--second {
  max-width: 218px;
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}
.cmn-btn--second:hover {
  -webkit-box-shadow: 0px 4px 14px 0px #080b1b;
          box-shadow: 0px 4px 14px 0px #080b1b;
}
.cmn-btn--main {
  max-width: 360px;
  width: 100%;
  background: #2260a1;
  border: 1px solid #2260a1;
}
.cmn-btn--main:hover {
  background: #1273d8;
  border: 1px solid #1273d8;
  -webkit-box-shadow: 0px 4px 14px 0px #080b1b;
          box-shadow: 0px 4px 14px 0px #080b1b;
}
.cmn-btn--main[disabled] {
  color: #fff;
  opacity: 0.5;
  cursor: auto;
  cursor: initial;
  background: #2260a1;
}
.cmn-btn--main[disabled]:hover {
  border: none;
}
.cmn-btn--main.grey {
  background-color: #dadada;
  color: #1a1a1a;
}
.cmn-btn--main.grey:hover {
  background-color: #2260a1;
  color: #fff;
}
.cmn-btn--main-outline {
  background: transparent;
  color: #2260a1;
  border: 1px solid #2260a1;
}
.cmn-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.cmn-btn--full {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .cmn-btn--main.full, .cmn-btn--second.full {
    max-width: 100%;
  }
}
.container {
  width: 100%;
  max-width: 1288px;
  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(0, 0, 0, 0.5333333333);
  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;
}

.block {
  padding: 66px 0;
}
.block__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 44px;
}

@media screen and (max-width: 1279px) {
  .block {
    padding: 32px 0;
  }
  .block__title {
    margin-bottom: 24px;
    font-size: 26px;
  }
}
.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 {
  display: none;
}
.search-form.active {
  display: block;
  width: 100%;
}
.search-form.mobile {
  display: none;
}
.search-field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 6px;
  max-width: none;
  position: relative;
}
.search-field {
  width: 100%;
  height: 40px;
  border: 1px solid #e2e0e0;
  border-radius: 30px;
  padding: 10px;
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
.search-icon {
  padding: 10px 32px;
  width: 124px;
  height: 40px;
  position: absolute;
  right: 0;
  background-color: #206dbc;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: white;
}
.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%;
  }
}
.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;
  }
}
.single_news--img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 40px;
}
.single_news--content h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 28px;
}
.single_news--content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.single_news--content p:not(:last-child) {
  margin-bottom: 24px;
}
.single_news--content ul {
  margin-bottom: 24px;
}
.single_news--content ul li {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.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: 18px;
  line-height: 130%;
  margin-bottom: 10px;
}
.page__tpl p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 10px;
}
.page__tpl ul li {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 10px;
}

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

.page__policy--box {
  padding: 100px 0;
}
.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: 130%;
  color: #2260a1;
}
.page__policy--content h3 {
  font-size: 24px;
  line-height: 130%;
  color: #2260a1;
}
.page__policy--content h4 {
  font-size: 22px;
  line-height: 130%;
  color: #2260a1;
}
.page__policy--content p,
.page__policy--content ul,
.page__policy--content ol {
  font-size: 18px;
  line-height: 130%;
}
.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 {
  color: #363b49;
  font-weight: 500;
}
.page__policy--content a {
  color: #2260a1;
  text-decoration-line: underline;
  word-break: break-all;
}
.page__policy--content a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1279px) {
  .page__policy--box {
    padding: 60px 0;
  }
  .page__policy--content h2 {
    font-size: 22px;
  }
  .page__policy--content h3 {
    font-size: 20px;
  }
}
.error_page-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
.error_page-content .btn {
  margin-top: 60px;
}
.error_page-head {
  font-size: 200px;
  font-weight: bold;
  color: #2260a1;
}
.error_page-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 31.2px;
}
.error_page-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 20.8px;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 769px) {
  .error_page-content {
    margin-top: 0;
  }
  .error_page-head {
    font-size: 160px;
  }
}
.block__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
}
.block__header .header-container {
  margin: 0 auto;
  padding: 0 44px;
  padding: 0 var(--container-padding);
  width: 100%;
  max-width: 1288px;
  height: 100%;
}
.block__header .header-container--wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
.block__header .logo img {
  min-width: 120px;
}
.block__header .top,
.block__header .bottom {
  width: 100%;
  height: 100%;
}
.block__header .top {
  border-bottom: 1px solid #e2e0e0;
}
.block__header .top__wrapper {
  width: 100%;
  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;
}
.block__header .top__wrapper.active {
  display: none;
}
.block__header .top__wrapper .phone {
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  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;
  color: #1a1a1a;
}
.block__header .top__wrapper .phone:before {
  content: "";
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect y=%270.5%27 width=%2720%27 height=%2720%27 rx=%272%27 fill=%27%23206DBC%27/%3E%3Cpath d=%27M15.6853 13.3068L14.0072 11.6321C13.4078 11.0341 12.3889 11.2733 12.1492 12.0508C11.9694 12.5891 11.3701 12.8881 10.8307 12.7685C9.63197 12.4695 8.01374 10.9144 7.71407 9.65847C7.53427 9.12017 7.89387 8.52209 8.43328 8.34269C9.21243 8.10345 9.45216 7.08671 8.85282 6.48863L7.17466 4.81399C6.69519 4.39534 5.97598 4.39534 5.55644 4.81399L4.41769 5.95035C3.27894 7.14652 4.53755 10.3164 7.35447 13.1274C10.1714 15.9383 13.3479 17.2542 14.5466 16.058L15.6853 14.9216C16.1049 14.4431 16.1049 13.7254 15.6853 13.3068Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
}
.block__header .top .show-search {
  position: relative;
  cursor: pointer;
}
.block__header .top .show-search .search-icon-show, .block__header .top .show-search .search-icon-hide {
  display: none;
}
.block__header .top .show-search .search-icon-show.active, .block__header .top .show-search .search-icon-hide.active {
  display: block;
}
.block__header .logo.mobile {
  display: none;
}
.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;
}
.block__header-contacts {
  display: none;
}
.block__header .mob-title {
  display: none;
}
.block__header .order_call a {
  font-weight: 400;
  font-size: 18px;
  line-height: 21.6px;
  text-decoration: underline;
  color: #2260a1;
}

@media screen and (max-width: 1279px) {
  .block__header {
    height: 60px;
  }
  .block__header .header-container--wrapper {
    -webkit-column-gap: normal;
       -moz-column-gap: normal;
            column-gap: normal;
  }
  .block__header .top {
    display: none;
  }
  .block__header .logo.mobile {
    display: block;
  }
  .block__header--main {
    top: 0 !important;
  }
}
@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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px 0;
  }
  .block__header-nav nav ul > li a {
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    color: #1a1a1a;
  }
  .block__header-nav nav ul > li.menu-item-has-children {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  .block__header-nav nav ul > li.menu-item-has-children:after {
    content: "";
    display: block;
    width: 11px;
    height: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width=%2711%27 height=%275%27 viewBox=%270 0 11 5%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M5.5 4.5L0.736861 0.75L10.2631 0.750001L5.5 4.5Z%27 fill=%27%23206DBC%27/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
  }
  .block__header-nav nav ul > li.menu-item-has-children a {
    color: #2260a1;
  }
  .block__header-nav nav ul > li.menu-item-has-children .sub-menu {
    display: none;
    background-color: white;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 390px;
    row-gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    border-radius: 10px;
  }
  .block__header-nav nav ul > li.menu-item-has-children .sub-menu > li > a {
    display: inline-block;
    width: 100%;
    text-transform: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #1a1a1a;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .block__header-nav nav ul > li.menu-item-has-children .sub-menu > li > a:hover {
    color: #1273d8;
  }
  .block__header-nav nav ul > li.menu-item-has-children:hover .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .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: #1a1a1a;
  }
  .block__header-nav nav ul .nav-contacts a img {
    width: 20px;
    height: 20px;
  }
  .burger,
  #phone-icon {
    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: #1273d8;
  }
  #phone-icon {
    margin-right: 15px;
  }
  #phone-icon img {
    min-width: 35px;
    min-height: 35px;
  }
  body.body-contacts-show {
    overflow: hidden;
  }
  body.body-contacts-show .block__header-contacts {
    -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;
    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;
    padding: 40px 10px;
    row-gap: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
  }
  body.body-contacts-show .block__header-contacts .phone {
    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;
    color: #1a1a1a;
    padding-bottom: 10px;
  }
  body.body-contacts-show .block__header-contacts .phone:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2721%27 viewBox=%270 0 20 21%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Crect y=%270.5%27 width=%2720%27 height=%2720%27 rx=%272%27 fill=%27%23206DBC%27/%3E%3Cpath d=%27M15.6853 13.3068L14.0072 11.6321C13.4078 11.0341 12.3889 11.2733 12.1492 12.0508C11.9694 12.5891 11.3701 12.8881 10.8307 12.7685C9.63197 12.4695 8.01374 10.9144 7.71407 9.65847C7.53427 9.12017 7.89387 8.52209 8.43328 8.34269C9.21243 8.10345 9.45216 7.08671 8.85282 6.48863L7.17466 4.81399C6.69519 4.39534 5.97598 4.39534 5.55644 4.81399L4.41769 5.95035C3.27894 7.14652 4.53755 10.3164 7.35447 13.1274C10.1714 15.9383 13.3479 17.2542 14.5466 16.058L15.6853 14.9216C16.1049 14.4431 16.1049 13.7254 15.6853 13.3068Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
  }
  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-y: auto;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  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: #1273d8;
    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: #2260a1;
    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 > nav, .block__header-contacts {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    height: 100vh;
    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;
    padding: 10px 10px 150px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    width: 100%;
  }
  .block__header-nav > nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
    -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%;
  }
  .block__header-nav > nav li:hover {
    background: rgba(216, 218, 229, 0.2);
  }
  .block__header-nav > nav li a {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    width: 100%;
  }
  .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:after {
    content: "";
    display: block;
    width: 20px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width=%2715%27 height=%277%27 viewBox=%270 0 15 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M14 1L7.85907 5.54211C7.49418 5.812 6.99328 5.80231 6.6391 5.51851L1 0.999999%27 stroke=%27%23343434%27 stroke-width=%272%27/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 23px;
    right: 10px;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-10px, -50%);
            transform: translate(-10px, -50%);
    -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;
  }
  .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;
    padding-left: 20px;
  }
  .block__header-nav > nav li.menu-item-has-children .sub-menu > li > a {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
  }
  .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;
  }
  .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: 2px;
    background: #2260a1;
    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 {
  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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background-color: #222;
  position: relative;
  padding: 56px 0;
  color: white;
}
.block__footer--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 126px;
     -moz-column-gap: 126px;
          column-gap: 126px;
}
.block__footer--item {
  width: 100%;
}
.block__footer--item--contacts {
  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: 24px;
  width: 100%;
  max-width: 282px;
}
.block__footer--item--contacts .email {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: white;
}
.block__footer--logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
  color: #fff;
}
.block__footer--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block__footer nav > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 125px 125px;
  grid-column-gap: 16px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.block__footer nav > ul > li {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  color: #2260a1;
}
.block__footer nav > ul > li > a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #2260a1;
}
.block__footer nav > ul > li > a[href] {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.block__footer nav > ul > li > a[href]:hover {
  color: #1273d8;
}
.block__footer nav > ul > li > .sub-menu > li {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-transform: none;
  text-transform: initial;
}
.block__footer nav > ul > li > .sub-menu > li > a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.block__footer nav > ul > li > .sub-menu > li > a:hover {
  color: #1273d8;
}
.block__footer--policy {
  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;
  row-gap: 24px;
  width: 100%;
  margin-top: 54px;
}
.block__footer--policy a {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: white;
}

.scroll-to-top {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 10%;
  bottom: 10%;
  border: 1px solid #206dbc;
  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;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.7490196078);
}
.scroll-to-top::after {
  content: "";
  display: block;
  width: 21px;
  height: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2722%27 viewBox=%270 0 20 22%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M9.34566 0.724643C9.43292 0.634647 9.53737 0.563098 9.65281 0.514236C9.76824 0.465373 9.89231 0.440192 10.0177 0.440192C10.143 0.440192 10.2671 0.465373 10.3825 0.514236C10.498 0.563098 10.6024 0.634647 10.6897 0.724643L18.8497 8.86065C18.9371 8.94879 19.0056 9.05386 19.051 9.16941C19.0964 9.28496 19.1177 9.40856 19.1137 9.53264C19.1196 9.66054 19.0992 9.7883 19.0538 9.90802C19.0084 10.0277 18.9389 10.1369 18.8497 10.2286C18.6634 10.4007 18.4192 10.4962 18.1657 10.4962C17.9121 10.4962 17.6679 10.4007 17.4817 10.2286L10.9777 3.72464L10.9777 20.5966C10.9777 20.8512 10.8765 21.0954 10.6965 21.2755C10.5165 21.4555 10.2723 21.5566 10.0177 21.5566C9.76305 21.5566 9.51887 21.4555 9.33884 21.2755C9.1588 21.0954 9.05766 20.8512 9.05766 20.5966L9.05767 3.72464L2.55367 10.2286C2.37226 10.4101 2.12622 10.512 1.86967 10.512C1.61312 10.512 1.36707 10.4101 1.18567 10.2286C1.00426 10.0472 0.902345 9.80119 0.902345 9.54464C0.902345 9.28809 1.00426 9.04205 1.18567 8.86065L9.34566 0.724643Z%27 fill=%27%23206DBC%27/%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 1024px) {
  .block__footer--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
  }
  .block__footer--item {
    max-width: 100%;
  }
  .block__footer nav > ul {
    grid-template-columns: 1fr;
  }
  .block__footer--policy {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 24px;
    margin-top: 40px;
  }
}
.cookie__policy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #e1e1e1;
}
.cookie__policy--container {
  max-width: 1200px;
  margin: 0 auto;
}
.cookie__policy--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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.cookie__policy--text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
.cookie__policy--text a {
  color: #2260a1;
  text-decoration: underline;
}
.cookie__policy--text a:hover {
  text-decoration: none;
}
.cookie__policy--btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .cookie__policy--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie__policy--text {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
  }
  .cookie__policy--text a {
    color: #2260a1;
    text-decoration: underline;
  }
  .cookie__policy--text a:hover {
    text-decoration: none;
  }
  .cookie__policy--btns {
    width: 100%;
    gap: 16px;
    -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;
  }
}
.product_cat--content {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 24px;
}
.product_cat--img {
  max-width: 588px;
  max-height: 384px;
}
.product_cat--img img {
  height: auto;
}
