/*!***********************************************************************************************************************************************************!*\
  !*** 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: "Roboto Flex", sans-serif;
  --theme-second-font: "Roboto Flex", sans-serif;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  height: 45px;
}

.swiper-button-prev, .swiper-button-next {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  background-color: #ffa022;
  border-radius: 4px;
  padding: 15px 18px;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  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%3Cpath d=%27M0 1.22591L1.1898 0L7.67036 6.68119C7.77483 6.78824 7.85773 6.91555 7.9143 7.05578C7.97088 7.196 8 7.34638 8 7.49826C8 7.65015 7.97088 7.80053 7.9143 7.94075C7.85773 8.08098 7.77483 8.20829 7.67036 8.31534L1.1898 15L0.00112152 13.7741L6.08359 7.5L0 1.22591Z%27 fill=%27white%27/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-disabled {
  background-color: transparent;
  border: 1px solid #121212;
}
.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: #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 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: #121212;
  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 {
  background-color: white;
  position: relative;
  padding-bottom: 96px;
}
.contact-form__wrapper {
  padding: 56px 44px;
  border-radius: 20px;
  background-color: #195fda;
}
.contact-form .block__title {
  color: white;
  margin-bottom: 10px;
}
.contact-form .subtitle {
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 44px;
}

.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] {
  max-width: 412px;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.feedback-form.main .btn {
  max-width: 252px;
}
.feedback-form.main label {
  color: white;
}

@media (max-width: 768px) {
  .contact-form__wrapper {
    padding: 24px 10px;
  }
  .contact-form .subtitle {
    margin-bottom: 10px;
  }
  .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] {
    max-width: 100%;
    height: 64px;
  }
  .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: 10px;
  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: #ffa022;
  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: #121212;
}
.page-numbers.current {
  color: #ffa022;
}

.breadcrumbs {
  margin-bottom: 40px;
  margin-top: 10px;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs a,
.breadcrumbs span {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
  color: #121212;
}
.breadcrumbs a > span {
  color: #707070;
}
.breadcrumbs span {
  color: #195fda;
}

@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: 660px;
  width: 100%;
  max-height: 100vh;
  border-radius: 20px;
  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: 800;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #ffa022;
}
.modal__header .subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #2d2d2d;
}
.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: #ffa022;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal__container {
    padding: 40px 10px;
  }
  .modal__header .title {
    font-size: 28px;
  }
}
.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: 24px;
}
.contacts__content .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #2d2d2d;
  margin-bottom: 12px;
}
.contacts__content .item {
  font-weight: 800;
  font-size: 20px;
  line-height: 130%;
  color: #2d2d2d;
  text-transform: uppercase;
}
.contacts__content .messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

: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: "Roboto Flex", sans-serif;
  font-family: var(--theme-main-font);
  font-weight: 400;
  background-color: #f4f6f8;
  color: #121212;
  -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: "Roboto Flex", 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: 225px;
  /* @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: 120px;
  }
}

/*
 * 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;
  }
}
.error_page_bg_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.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;
  color: white;
}
.error_page--title {
  font-weight: 800;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 44px;
}
.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: 130%;
  margin-bottom: 32px;
}

@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;
  }
}
.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: 500;
  font-size: 16px;
  line-height: 140%;
  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: 8px;
  border: none;
  font-family: "Roboto Flex", sans-serif;
  font-family: var(--theme-main-font);
  text-transform: uppercase;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2509803922);
}
.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: 22px 36px;
  height: 60px;
  width: 100%;
  max-width: 284px;
}
.cmn-btn--main-md, .cmn-btn--second-md {
  padding: 11px 25px;
  height: 48px;
  width: 192px;
}
.cmn-btn--main-xs, .cmn-btn--second-xs {
  padding: 15px;
  height: 48px;
  width: 170px;
}
.cmn-btn--second {
  background: transparent;
  color: #ffa022;
  border: 1px solid #ffa022;
}
.cmn-btn--second:hover {
  background: #ffa022;
  color: #fff;
  border: 1px solid #ffa022;
}
.cmn-btn--main {
  background: #ffa022;
  color: #fff;
  border: 1px solid #ffa022;
  -webkit-box-shadow: 0px 4px 8.3px 0px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 4px 8.3px 0px rgba(0, 0, 0, 0.1607843137);
}
.cmn-btn--main:hover {
  background: #f58f07;
  color: #fff;
}
.cmn-btn--main[disabled] {
  color: #fff;
  opacity: 0.5;
  cursor: auto;
  cursor: initial;
  background: #ffa022;
}
.cmn-btn--main[disabled]:hover {
  border: none;
}
.cmn-btn--main.grey {
  background-color: #dadada;
  color: #121212;
}
.cmn-btn--main.grey:hover {
  background-color: #ffa022;
  color: #fff;
}
.cmn-btn--main-outline {
  background: transparent;
  color: #ffa022;
  border: 1px solid #ffa022;
}
.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: "Roboto Flex", 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;
}

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

@media screen and (max-width: 1279px) {
  .block {
    padding: 32px 0;
  }
  .block__title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.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: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  margin-top: 22px;
}
.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;
  -webkit-column-gap: 57px;
     -moz-column-gap: 57px;
          column-gap: 57px;
  background: rgba(10, 31, 67, 0.3019607843);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 5px 20px;
}
.block__header .logo {
  min-width: 54px;
  min-height: 45px;
}
.block__header .logo img {
  width: 100%;
  height: 100%;
}
.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 {
  max-width: 185px;
  width: 100%;
}
.block__header-contacts a {
  font-weight: 800;
  font-size: 22px;
  line-height: 130%;
  text-transform: uppercase;
  color: #ffa022;
}
.block__header-contacts a:hover {
  color: #f58f07;
}
.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: 60px;
  }
  .block__header--main {
    top: 0 !important;
  }
  .block__header-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
    width: 100%;
    padding: 60px 0;
  }
  .block__header-contacts a {
    font-weight: 700;
    color: white;
  }
}
@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 {
    max-width: 116px;
    text-align: center;
  }
  .block__header-nav nav ul > li a {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    color: white;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    text-transform: uppercase;
  }
  .block__header-nav nav ul > li a:hover {
    color: #f58f07;
  }
  .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: #121212;
  }
  .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: #f58f07;
  }
  #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;
  }
  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: #f58f07;
    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: #ffa022;
    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: 120%;
    background: rgba(10, 31, 67, 0.9019607843);
    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;
    height: auto;
    border-radius: 20px;
  }
  .block__header-nav > nav {
    /*
         * All li
         */
  }
  .block__header-nav > nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 34px 0;
    -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: white;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
  }
  .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;
  }
  .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: #ffa022;
    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: #153161;
  position: relative;
  padding: 32px 0;
}
.block__footer--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 71px;
     -moz-column-gap: 71px;
          column-gap: 71px;
}
.block__footer--logo {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: white;
  min-width: 220px;
}
.block__footer--logo a {
  display: inline-block;
  margin-bottom: 10px;
}
.block__footer--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  row-gap: 32px;
  width: 100%;
}
.block__footer--nav .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 145px;
     -moz-column-gap: 145px;
          column-gap: 145px;
}
.block__footer--nav .links a {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-decoration: underline;
  color: white;
}
.block__footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.block__footer nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
  width: 100%;
}
.block__footer nav > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.block__footer nav > ul > li > a {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .block__footer--nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    row-gap: 32px;
    width: 100%;
  }
  .block__footer--nav .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
  .block__footer nav > ul {
    display: grid;
    grid-template-columns: repeat(2, 46%);
    grid-row-gap: 20px;
    row-gap: 20px;
  }
  .block__footer nav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
  .block__footer nav > ul > li > a {
    font-size: 16px;
    text-align: start;
  }
}
@media (max-width: 768px) {
  .block__footer--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 32px;
  }
  .block__footer--logo {
    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;
  }
  .block__footer--logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
  .block__footer--nav .links {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .block__footer nav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 64%;
  }
}
.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: 955px;
  margin: 0 auto;
}
.cookie__policy--content {
  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;
  gap: 20px;
}
.cookie__policy--text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
.cookie__policy--text a {
  color: #ffa022;
  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: #ffa022;
    text-decoration: underline;
  }
  .cookie__policy--text a:hover {
    text-decoration: none;
  }
  .cookie__policy--btns {
    width: 100%;
    gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.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: 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;
}

main > *:first-child {
  padding-top: 140px;
}

.page__policy--box {
  padding-bottom: 112px;
}
.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 h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
}
.page__policy--content h2 {
  font-size: 26px;
  line-height: 130%;
  color: #121212;
}
.page__policy--content h3 {
  font-size: 24px;
  line-height: 130%;
  color: #121212;
}
.page__policy--content h4 {
  font-size: 22px;
  line-height: 130%;
  color: #121212;
}
.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:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #627384;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 9px;
}
.page__policy--content strong {
  color: #2d2d2d;
  font-weight: 600;
}
.page__policy--content a {
  color: #121212;
  text-decoration-line: underline;
  word-break: break-all;
}
.page__policy--content a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1279px) {
  main > *:first-child {
    padding-top: 80px;
  }
  .page__policy--box {
    padding: 60px 0;
  }
  .page__policy--content h1 {
    font-size: 24px;
  }
  .page__policy--content h2 {
    font-size: 22px;
  }
  .page__policy--content h3 {
    font-size: 20px;
  }
}
