@charset "UTF-8";

/*
Theme Name: China To Theme
Author: Artem Ugryumov
Author URI: https://ugryumov.com/
*/

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url("./assets/fonts/Gilroy/Gilroy-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("./assets/fonts/Gilroy/Gilroy-Bold.woff2") format("woff2");
}

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

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

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

body {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #212121;
  line-height: 1.4;
  background: #F7F8FB;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
textarea {
  font-family: inherit;
  color: inherit;
}

input[type=submit] {
  cursor: pointer;
}

button {
  color: inherit;
  background: inherit;
  cursor: pointer;
}

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

a {
  color: inherit;
}

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

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

img,
svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

svg {
  fill: transparent;
  stroke: transparent;
}

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

._lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 77.5rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-fill {
  position: relative;
  height: 50px;
  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;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 40px;
  border-radius: 99px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
  color: #fff;
}

.btn-fill.is-load {
  color: transparent;
  pointer-events: none;
}

.btn-fill.is-load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  display: block;
  background: center/18px 18px no-repeat;
  -webkit-animation: loadAnim 1s linear infinite;
          animation: loadAnim 1s linear infinite;
}

@-webkit-keyframes loadAnim {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loadAnim {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-fill::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-fill:active::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(2);
      -ms-transform: translate(-50%, -50%) rotate(180deg) scale(2);
          transform: translate(-50%, -50%) rotate(180deg) scale(2);
}

.btn-fill.is-load::after {
  background-image: url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M18 9C18 7.21997 17.4722 5.47991 16.4832 3.99987C15.4943 2.51983 14.0887 1.36627 12.4442 0.685084C10.7996 0.0038955 8.99002 -0.174335 7.24419 0.172932C5.49836 0.520199 3.89471 1.37737 2.63604 2.63604C1.37737 3.89471 0.520199 5.49836 0.172932 7.24419C-0.174335 8.99002 0.00389552 10.7996 0.685084 12.4442C1.36627 14.0887 2.51983 15.4943 3.99987 16.4832C5.47991 17.4722 7.21997 18 9 18L9 15.3C7.75398 15.3 6.53594 14.9305 5.49991 14.2383C4.46388 13.546 3.65639 12.5621 3.17956 11.4109C2.70273 10.2597 2.57797 8.99301 2.82105 7.77093C3.06414 6.54885 3.66416 5.4263 4.54523 4.54523C5.4263 3.66416 6.54885 3.06414 7.77093 2.82105C8.99301 2.57797 10.2597 2.70273 11.4109 3.17956C12.5621 3.65639 13.546 4.46388 14.2383 5.49991C14.9305 6.53594 15.3 7.75398 15.3 9H18Z" fill="white"/%3E%3C/svg%3E');
}

.btn-linear {
  position: relative;
  height: 50px;
  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;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 40px;
  border-radius: 99px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  font-weight: 400;
  color: #212121;
  border: 1px solid #CECECE;
}

.btn-linear.is-load {
  color: transparent;
  pointer-events: none;
}

.btn-linear.is-load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  display: block;
  background: center/18px 18px no-repeat;
  -webkit-animation: loadAnim 1s linear infinite;
          animation: loadAnim 1s linear infinite;
}

@keyframes loadAnim {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-linear:active {
  border-color: #a1a1a1;
}

.btn-linear.is-load::after {
  background-image: url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M18 9C18 7.21997 17.4722 5.47991 16.4832 3.99987C15.4943 2.51983 14.0887 1.36627 12.4442 0.685084C10.7996 0.0038955 8.99002 -0.174335 7.24419 0.172932C5.49836 0.520199 3.89471 1.37737 2.63604 2.63604C1.37737 3.89471 0.520199 5.49836 0.172932 7.24419C-0.174335 8.99002 0.00389552 10.7996 0.685084 12.4442C1.36627 14.0887 2.51983 15.4943 3.99987 16.4832C5.47991 17.4722 7.21997 18 9 18L9 15.3C7.75398 15.3 6.53594 14.9305 5.49991 14.2383C4.46388 13.546 3.65639 12.5621 3.17956 11.4109C2.70273 10.2597 2.57797 8.99301 2.82105 7.77093C3.06414 6.54885 3.66416 5.4263 4.54523 4.54523C5.4263 3.66416 6.54885 3.06414 7.77093 2.82105C8.99301 2.57797 10.2597 2.70273 11.4109 3.17956C12.5621 3.65639 13.546 4.46388 14.2383 5.49991C14.9305 6.53594 15.3 7.75398 15.3 9H18Z" fill="%23212121"/%3E%3C/svg%3E');
}

.btn-linear_light {
  position: relative;
  height: 50px;
  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;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 40px;
  border-radius: 99px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  font-weight: 400;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-linear_light.is-load {
  color: transparent;
  pointer-events: none;
}

.btn-linear_light.is-load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  display: block;
  background: center/18px 18px no-repeat;
  -webkit-animation: loadAnim 1s linear infinite;
          animation: loadAnim 1s linear infinite;
}

@keyframes loadAnim {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-linear_light:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-submit {
  position: relative;
  height: 50px;
  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;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 40px;
  border-radius: 99px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  position: relative;
  height: 60px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
}

.btn-submit.is-load {
  color: transparent;
  pointer-events: none;
}

.btn-submit.is-load::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  display: block;
  background: center/18px 18px no-repeat;
  -webkit-animation: loadAnim 1s linear infinite;
          animation: loadAnim 1s linear infinite;
}

@keyframes loadAnim {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }

  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-submit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110%;
  aspect-ratio: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-submit:active::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(2);
      -ms-transform: translate(-50%, -50%) rotate(180deg) scale(2);
          transform: translate(-50%, -50%) rotate(180deg) scale(2);
}

.btn-submit.is-load::after {
  background-image: url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M18 9C18 7.21997 17.4722 5.47991 16.4832 3.99987C15.4943 2.51983 14.0887 1.36627 12.4442 0.685084C10.7996 0.0038955 8.99002 -0.174335 7.24419 0.172932C5.49836 0.520199 3.89471 1.37737 2.63604 2.63604C1.37737 3.89471 0.520199 5.49836 0.172932 7.24419C-0.174335 8.99002 0.00389552 10.7996 0.685084 12.4442C1.36627 14.0887 2.51983 15.4943 3.99987 16.4832C5.47991 17.4722 7.21997 18 9 18L9 15.3C7.75398 15.3 6.53594 14.9305 5.49991 14.2383C4.46388 13.546 3.65639 12.5621 3.17956 11.4109C2.70273 10.2597 2.57797 8.99301 2.82105 7.77093C3.06414 6.54885 3.66416 5.4263 4.54523 4.54523C5.4263 3.66416 6.54885 3.06414 7.77093 2.82105C8.99301 2.57797 10.2597 2.70273 11.4109 3.17956C12.5621 3.65639 13.546 4.46388 14.2383 5.49991C14.9305 6.53594 15.3 7.75398 15.3 9H18Z" fill="white"/%3E%3C/svg%3E');
}

.link {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.link:active {
  color: #da6a00;
}

.link-accent {
  --color: #2E539A;
  color: var(--color);
  -webkit-box-shadow: inset 0 -1px var(--color);
          box-shadow: inset 0 -1px var(--color);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.link_light {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.link_light:active {
  opacity: 0.8;
}

.tf {
  --tf-height: 60px;
  position: relative;
  width: 100%;
  display: block;
}

.tf .tf__field {
  position: relative;
  width: 100%;
  height: var(--tf-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.tf input,
.tf textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 5px;
  padding: 0 20px;
}

.tf input:focus,
.tf textarea:focus {
  border-color: #212121;
}

.tf textarea {
  height: 80%;
  padding: 16px 24px;
  resize: none;
}

.tf textarea::-webkit-scrollbar {
  width: 4px;
  height: 100%;
}

.tf textarea::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.tf textarea::-webkit-scrollbar-thumb {
  background-color: #fff;
}

.tf .tf__label {
  position: absolute;
  z-index: 1;
  top: calc(var(--tf-height) / 2);
  left: 20px;
  -webkit-transform: translate(0, -12px);
      -ms-transform: translate(0, -12px);
          transform: translate(0, -12px);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.tf._change-label .tf__label {
  -webkit-transform: translate(100px, -12px);
      -ms-transform: translate(100px, -12px);
          transform: translate(100px, -12px);
  opacity: 0;
}

.tf.has-error .tf__field textarea,
.tf.has-error .tf__field input {
  border-color: #E00000;
}

.tf.has-error::after {
  content: attr(data-error);
  font-size: 13px;
  color: #E00000;
  margin-top: 10px;
}

.tf.is-disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.tf.is-disabled .tf__field textarea,
.tf.is-disabled .tf__field input {
  background-color: #E8E8E8;
  border-color: none;
}

.title-main {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
}

.text a {
  color: #2E539A;
  -webkit-box-shadow: inset 0 -1px #2E539A;
          box-shadow: inset 0 -1px #2E539A;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.socials__title {
  margin-right: 20px;
}

.socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -4px -10px;
}

.socials-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 4px 10px;
}

.socials-item__icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
}

.socials-item__text {
  margin-left: 8px;
}

.social-fixed {
  position: fixed;
  z-index: 1;
  bottom: 40px;
  right: 40px;
  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;
}

.social-fixed__link {
  width: 50px;
  height: 50px;
  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;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.social-fixed__link_whatsapp {
  background: #4DAA29;
}

.social-fixed__link_telegram {
  background: #3AA3E1;
}

.social-fixed__link_wechat {
  background: #39BC1B;
}

.social-fixed__link:not(:last-child) {
  margin-bottom: 10px;
}

.social-fixed__icon {
  width: 26px;
  height: 26px;
}

.social-fixed__text {
  display: none;
}

.c-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 10px;
  padding: 30px;
}

.c-offer_blue {
  background: -webkit-gradient(linear, right top, left top, from(#2E539A), to(#3A69C4));
  background: -o-linear-gradient(right, #2E539A 0%, #3A69C4 100%);
  background: linear-gradient(-90deg, #2E539A 0%, #3A69C4 100%);
}

.c-offer_orange {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
}

.c-offer__content {
  max-width: 285px;
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 30px;
}

.c-offer__title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.c-offer__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  padding: 0 40px;
}

.c-offer__img {
  max-width: 235px;
  width: 50%;
}

.c-offer__img img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  overflow: hidden;
}

.c-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  aspect-ratio: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.c-services > * {
  pointer-events: none;
}

.c-services:active {
  border-color: #F97900;
  background: #fff9f4;
}

.c-services__icon {
  width: 26%;
  height: 26%;
}

.c-services__icon img,
.c-services__icon svg {
  -o-object-fit: contain;
     object-fit: contain;
}

.s-addit__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  margin-top: 20px;
}

:root {
  --c-payment-padding: 30px;
}

.c-payment {
  padding: var(--c-payment-padding);
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
}

.c-payment__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: var(--c-payment-padding);
}

.c-payment__icon {
  width: 60px;
  height: 40px;
}

.c-payment__title {
  font-size: 25px;
  font-weight: 700;
  margin-left: 30px;
}

.c-payment__body {
  padding-top: var(--c-payment-padding);
  border-top: 1px solid #E8E8E8;
}

.c-amount {
  font-size: 16px;
  text-align: center;
  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;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 35px 30px 30px;
}

.c-amount_optimal {
  position: relative;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
  border-color: transparent;
}

.c-amount_optimal::before {
  content: "Самый оптимальный";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 13px;
  color: #212121;
  background: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}

.c-amount__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;
}

.c-amount__icon {
  width: 80px;
  height: 80px;
}

.c-amount__title {
  font-size: 25px;
  font-weight: 700;
  margin-top: 10px;
}

.c-amount__deadlines {
  margin-top: 10px;
}

.c-amount__price {
  margin-top: 55px;
}

.c-amount__price span {
  font-size: 37px;
  font-weight: 700;
}

.c-amount__correction {
  margin-top: 65px;
}

.cabinet__logo {
  width: 55px;
  height: 35px;
  display: block;
  margin: 0 auto;
}

.cabinet__title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}

.cabinet__descr {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.cabinet__content {
  margin-top: 40px;
}

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

.cabinet__tab {
  width: 50%;
  height: 60px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #E8E8E8;
}

.cabinet__tab:first-child {
  border-radius: 5px 0 0 5px;
}

.cabinet__tab:last-child {
  border-radius: 0 5px 5px 0;
}

.cabinet__tab.is-active {
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E539A), to(#3A69C4));
  background: -o-linear-gradient(top, #2E539A 0%, #3A69C4 100%);
  background: linear-gradient(180deg, #2E539A 0%, #3A69C4 100%);
}

.cabinet__form {
  display: none;
  margin-top: 40px;
}

.cabinet__form::after {
  content: attr(data-alert-text);
  width: 100%;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  background: #EDF0F4;
  padding: 15px 12px;
  margin-top: 10px;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

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

.cabinet__form.is-success::after {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.cabinet__form > .tf {
  margin-bottom: 10px;
}

.cabinet__form-separator {
  font-size: 16px;
  margin: 30px 0 15px 0;
}

.cabinet__form-submit {
  margin-top: 30px;
}

.cabinet__form-forgot-pass {
  text-align: center;
  margin: 30px auto 0;
}

.logo {
  display: block;
  height: 100%;
  aspect-ratio: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.burger {
  position: relative;
  width: 40px;
  height: 40px;
  background: #EDF0F4;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 2px;
  display: block;
  background: #212121;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.burger span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 5px));
      -ms-transform: translate(-50%, calc(-50% - 5px));
          transform: translate(-50%, calc(-50% - 5px));
}

.burger span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 5px));
      -ms-transform: translate(-50%, calc(-50% + 5px));
          transform: translate(-50%, calc(-50% + 5px));
}

.burger:active {
  background: #dde3ea;
}

.burger.is-active span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  width: 0;
}

.burger.is-active span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.section {
  margin: 120px 0;
}

.section_ms {
  margin: 80px 0;
}

.section_fill {
  background: #EDF0F4;
  padding: 100px 0;
}

.s-header {
  margin-bottom: 40px;
}

.s-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 37px;
  font-weight: 700;
  line-height: 1;
}

.s-header__title::after {
  content: attr(data-s-header-label);
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-left: 30px;
}

.s-header__subtitle {
  font-size: 25px;
  font-weight: 700;
}

.s-header__text {
  margin-top: 20px;
}

.modal {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F7F8FB;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.modal.is-show {
  visibility: visible;
  opacity: 1;
  overflow-y: auto;
}

.modal__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__wrap {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.modal__window {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 400px;
  width: 100%;
  padding: 0 15px;
}

.modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.acc-list {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}

.acc {
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  background: #fff;
}

.acc.is-open > .acc__toggle .acc__toggle-plus span:nth-child(2) {
  width: 0;
}

.acc.is-open > .acc__body {
  opacity: 1;
  visibility: visible;
}

.acc__toggle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  text-align: left;
  cursor: pointer;
}

.acc__toggle-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: block;
  pointer-events: none;
}

.acc__toggle-title {
  font-size: 25px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 0 16px 0 30px;
}

.acc__toggle-plus {
  position: relative;
  min-width: 50px;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  background: #F7F8FB;
  margin-left: auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}

.acc__toggle-plus span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 2px;
  background: #212121;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.acc__toggle-plus span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.acc__toggle-plus span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.acc__body {
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.acc__content {
  padding: 30px 0;
  margin: 0 30px;
  border-top: 1px solid #E8E8E8;
}

.header-up {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E539A), to(#3A69C4));
  background: -o-linear-gradient(top, #2E539A 0%, #3A69C4 100%);
  background: linear-gradient(180deg, #2E539A 0%, #3A69C4 100%);
}

.header-up__container {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-up__contacts {
  margin-right: 30px;
}

.header-up__contact {
  font-size: 16px;
  font-weight: 700;
}

.header-up__contact:not(:last-child) {
  margin-right: 30px;
}

:root {
  --header-down-height: 100px;
}

.header-down {
  position: relative;
  height: var(--header-down-height);
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
}

.header-down.is-fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}

.header-down__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-down__logo {
  margin-right: 40px;
}

.menu {
  margin-right: 24px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.menu__list li:not(:last-child) {
  margin-right: 16px;
}

.menu__list li a {
  font-weight: 600;
}

.header__cabinet {
  margin-left: auto;
}
.header-down .header__cabinet {
  padding: 0 30px;
}

.header-down__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header__burger {
  display: none;
}

.main {
  background: #EDF0F4;
  padding: 100px 0;
}

.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main__content {
  max-width: 610px;
  width: 50%;
  margin-right: 55px;
}

.main__text {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 30px;
}

.main__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -4px -5px;
  margin-top: 40px;
}

.main__buttons > * {
  margin: 4px 5px;
}

.s-offer__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(295px, -webkit-min-content);
  grid-auto-rows: minmax(295px, min-content);
  gap: 20px;
}

.s-addit__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.s-hw__list {
  counter-reset: myCounter;
}

.s-hw__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
}

.s-hw__item::before {
  content: counter(myCounter);
  counter-increment: myCounter;
  min-width: 50px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  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;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
  margin-right: 30px;
}

.s-hw__item:not(:last-child) {
  margin-bottom: 20px;
}

.s-hw__item-text {
  margin: auto 0;
}

.s-hw__sign-up {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}

.s-payment__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.s-payment__notif {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E539A), to(#3A69C4));
  background: -o-linear-gradient(top, #2E539A 0%, #3A69C4 100%);
  background: linear-gradient(180deg, #2E539A 0%, #3A69C4 100%);
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
}

.s-amount__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.s-insur {
  margin-bottom: 60px;
}

.s-insur__container {
  border-bottom: 1px solid #CECECE;
  padding-bottom: 60px !important;
}

.s-insur__body {
  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;
}

.s-insur__amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 60px;
}

.s-insur-tf {
  width: 150px;
  margin-left: 20px;
}

.s-insur-tf input {
  font-size: 25px;
  font-weight: 700;
  padding: 0 76px 0 20px;
}

.s-insur-tf__label {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 18px;
  line-height: 1;
}

.s-insur__percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 6px 0;
}

.s-insur__percent span {
  font-size: 37px;
  font-weight: 700;
  color: #F97900;
  vertical-align: middle;
  margin: 0 20px;
}

.s-amount-packag {
  margin-top: 60px;
}

.s-know__body {
  counter-reset: counterKnow;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 0 30px;
}

.sk-block {
  list-style-type: none;
  padding: 30px 0;
}

.sk-block:not(:last-child) {
  border-bottom: 1px solid #E8E8E8;
}

.sk-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sk-block__title::before {
  content: counter(counterKnow);
  counter-increment: counterKnow;
  min-width: 50px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  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;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
  margin-right: 30px;
}

.sk-block__title-text {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  margin: auto 0;
}

.sk-block__content {
  margin-top: 30px;
}

.s-example__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 30px;
}

.s-example__icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
}

.s-example__content {
  margin: auto 0 auto 30px;
}

.footer {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E539A), to(#3A69C4));
  background: -o-linear-gradient(top, #2E539A 0%, #3A69C4 100%);
  background: linear-gradient(180deg, #2E539A 0%, #3A69C4 100%);
}

.footer-up__container {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-up__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 24px 0 42px;
}

.footer-up__contact_phone {
  font-size: 25px;
  font-weight: 700;
}

.footer-up__contact_email {
  margin-top: 5px;
}

.footer__socials {
  margin-left: auto;
}

.footer-copyright {
  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;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}

.footer-copyright__text {
  text-align: center;
}

.client-code {
  font-weight: 700;
  margin-right: 16px;
}

.client-code span {
  color: #F97900;
  margin-left: 10px;
}

.log-out {
  margin-left: auto;
}

.s-account {
  padding: 60px 0 100px 0;
}

.s-account__info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 60px 20px;
}

.s-account__edit {
  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;
  margin-top: 20px;
  margin: 12px -15px -8px 9px;
}

.s-account__edit > * {
  margin: 8px 15px;
}

.s-account__edit-link {
  font-size: 16px;
}

.account__addresses {
  margin-top: 60px;
}

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

.account-block_black-list .account-block__title {
  margin-bottom: 10px;
}

.account-block__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.account-block__title::after {
  content: attr(data-account-block-subtitle);
  font-size: 16px;
  font-weight: 400;
  margin-left: 30px;
}

.account-block__list {
  height: 100%;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 20px 30px;
}

.account-block__item {
  padding: 10px 0;
}

.account-block__item:not(:last-child) {
  border-bottom: 1px solid #E8E8E8;
}

.account-block__item:first-child {
  padding-top: 0;
}

.account-block__item:last-child {
  padding-bottom: 0;
}

.account-block__item span {
  margin-left: 10px;
}

.account-block__item .tf {
	--tf-height: 40px;
	margin-top: 4px;
}

.account-block__row-text {
  margin-left: 10px;
}

.account-block__content {
  font-size: 16px;
}

.s-account__work-time {
  font-size: 16px;
  margin: 30px 0 40px 0;
}

.s-gallery {
  margin-bottom: 0;
}

.s-gallery .s-header__title {
  justify-content: center;
}

.s-gallery .s-header__title {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-gallery__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: -50px;
}

.s-gallery__item {
  width: 48%;
  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: flex-end;
  margin-bottom: 50px;
}

.s-gallery__item-list {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.s-gallery__item:nth-child(1) .s-gallery__item-list-s:first-child, .s-gallery__item:nth-child(2) .s-gallery__item-list-s:first-child {
  width: 100%;
  height: 440px;
  max-height: 100%;
  overflow: hidden;
}


.s-gallery__item .s-gallery__item-list-s {
  width: 33.333%;
  height: 235px;
  overflow: hidden;
}

.s-gallery__item-list--3 .s-gallery__item-list-s:not(:first-child) {
  width: 50%;
}

.s-gallery__item-title {
  margin-bottom: 20px;
}

.s-gallery__item-list-s:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.s-gallery__item-list-s img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}


.s-gallery__item-list--7 .s-gallery__item-list-s:nth-child(1),.s-gallery__item-list--7 .s-gallery__item-list-s:nth-child(2),.s-gallery__item-list--7 .s-gallery__item-list-s:nth-child(3),.s-gallery__item-list--7 .s-gallery__item-list-s:nth-child(4) {
  width: 25%;
}

.s-gallery__item-list--5 .s-gallery__item-list-s:nth-child(1),.s-gallery__item-list--5 .s-gallery__item-list-s:nth-child(2) {
  width: 50%;
}

.tf .wpcf7-form-control-wrap {
  position: static !important;
}

.wpcf7-form .tf {
  margin-bottom: 10px;
}

.wpcf7-submit.btn-submit {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.17%, #F97900), to(#FA9800));
  background: -o-linear-gradient(left, #F97900 1.17%, #FA9800 100%);
  background: linear-gradient(90deg, #F97900 1.17%, #FA9800 100%);
}

input.wpcf7-not-valid {
  border-color: red;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 0 !important;
  text-align: center;
  width: 100%;
  margin: 10px !important;
  font-weight: bold;
}

@media (any-hover: hover) and (min-width: 601px) {
  .social-fixed__link:hover {
    -webkit-transform: scale(1.08);
        -ms-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@media (max-width: 1240px) {
  .header-down {
    --header-down-height: 90px;
  }

  .header-down__container {
    padding-left: 0 !important;
  }

  .header-down__logo {
    margin-right: 20px;
  }



  .menu__list li a {
    font-size: 14px;
  }

  .footer-up__container {
    padding-left: 0 !important;
  }
  .header-down .header__cabinet {
    padding: 0 14px;
  }
}

@media (max-width: 1100px) {
  .header-down {
    --header-down-height: 80px;
  }



  .menu__list li a {
    font-size: 14px;
  }
  
  .menu__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .header-down .header__cabinet {
    margin-left: 10px;
    padding: 0 24px;
  }
  .header-down .header__cabinet--order {
    margin-left: auto;
  }
}

@media (max-width: 1040px) {
  .title-main {
    font-size: 48px;
  }

  .c-offer__title {
    font-size: 22px;
  }
}

@media (max-width: 950px) {
  .menu {
    margin-right: 12px;
  }

  .header__cabinet {
    font-size: 15px;
    padding: 0 30px;
  }
}

@media (max-width: 900px) {
  .title-main {
    font-size: 44px;
  }

  .c-services {
    aspect-ratio: auto;
  }

  .menu {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
            transform: translate(0, 100%);
    width: 100%;
    height: calc(100vh - 40px - var(--header-down-height));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: none;
    border-top: 1px solid transparent;
    margin: 0;
    pointer-events: none;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    visibility: hidden;
  }

  .menu.is-show {
    pointer-events: fill;
    background: rgba(247, 248, 251, 0.9);
    border-top-color: #E8E8E8;
    visibility: visible;
  }

  .menu.is-show .menu__wrap {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  .is-fixed .menu {
    height: calc(100vh - var(--header-down-height));
  }

  .menu__wrap {
    max-width: 400px;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
            transform: translate(100%, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow-y: auto;
  }

  .menu__list li {
    width: 100%;
    border-bottom: 1px solid #E8E8E8;
  }

  .menu__list li:not(:last-child) {
    margin-right: 0;
  }

  .menu__list li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: right;
    padding: 15px;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header__cabinet {
    height: 40px;
  }

  .header__burger {
    display: block;
    margin-left: 10px;
  }

  .s-addit__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(300px, -webkit-min-content);
    grid-auto-rows: minmax(300px, min-content);
  }

  .s-amount__body {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .s-amount__body .c-amount:nth-child(2) {
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
  }

  .footer__socials .socials__title {
    display: none;
  }
}

@media (max-width: 850px) {
  .s-offer__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, -webkit-min-content);
    grid-auto-rows: minmax(250px, min-content);
  }
}

@media (max-width: 840px) {
  .header-up__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header-up__contact {
    font-size: 16px;
  }

  .header-up__contact:not(:last-child) {
    margin-right: 15px;
  }
}

@media (max-width: 820px) {
  .title-main {
    font-size: 40px;
  }

  .main__text {
    font-size: 16px;
    margin-top: 20px;
  }
  .s-gallery__item {
    width: 100%;
  }
  
  .s-gallery .s-header__title {
    text-align: center;
    font-size: 24px;
  }
  
  .s-gallery__item .s-gallery__item-list-s {
    max-height: 150px;
  }
}

@media (max-width: 780px) {
  .social-fixed {
    bottom: 20px;
    right: 20px;
  }

  .c-services {
    aspect-ratio: 1;
  }

  .s-header__title {
    font-size: 33px;
  }

  .modal-close {
    top: 38px;
    right: 15px;
  }

  .header__socials .socials__title {
    display: none;
  }

  .main__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main__content {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 60px;
  }

  .s-addit__body {
    grid-auto-rows: auto;
  }

  .s-payment__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .s-insur__amount {
    margin-right: 0;
  }

  .sk-block__title-text {
    font-size: 23px;
  }

  .footer-up__container {
    height: 90px;
  }

  .footer-up__contacts {
    margin-left: 20px;
  }

  .footer-up__contact_phone {
    font-size: 19px;
  }

  .footer-up__contact_email {
    font-size: 16px;
    margin-top: 2px;
  }

  .footer-copyright__text {
    font-size: 16px;
  }

  .client-code {
    font-size: 15px;
  }

  .s-account__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s-account__edit {
    margin: 12px -15px -8px;
  }

  .account__addresses {
    margin-top: 40px;
  }

  .account-block__title::after {
    display: block;
    margin: 4px 0 0 0;
  }
}

@media (max-width: 640px) {
  .socials-item__text {
    display: none;
  }

  .s-amount__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .s-amount__body .c-amount:nth-child(2) {
    -ms-grid-row: auto;
        grid-row-start: auto;
    grid-row-end: auto;
    -ms-grid-column: auto;
        grid-column-start: auto;
    grid-column-end: auto;
  }
}

@media (max-width: 600px) {
  .social-fixed {
    bottom: 0;
    right: 0;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .social-fixed__link:not(:last-child) {
    margin-bottom: 0;
  }

  .social-fixed__link {
    width: 100%;
    border-radius: 0;
  }

  .social-fixed__icon {
    width: 20px;
    height: 20px;
  }

  .social-fixed__text {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    margin-left: 8px;
  }
}

@media (max-width: 500px) {
  .s-insur__percent {
    margin: 20px 0 0 0;
  }
  .header-down__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .header-down .header__cabinet {
    width: 100%;
    margin: 2px auto;
    height: 31px;
    max-width: 240px;
    margin-right: 0;
  }
}

@media (max-width: 470px) {
  .header-up__contact {
    font-size: 13px;
  }
}

@media (max-width: 450px) {
  .c-offer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .c-offer__content {
    max-width: none;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 20px 0 0 0;
  }

  .c-offer__img {
    max-width: 135px;
    margin: 0 auto;
  }

  .s-addit__title {
    font-size: 13px;
  }

  .menu__wrap {
    max-width: none;
  }

  .footer-up__container {
    height: 80px;
  }

  .footer-up__contact_phone {
    font-size: 16px;
  }

  .footer-up__contact_email {
    font-size: 13px;
    margin-top: 0;
  }

  .client-code {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 16px;
  }

  [class*=__container] {
    padding: 0 0.9375rem;
  }

  .btn-fill {
    font-size: 13px;
    padding: 0 20px;
  }

  .btn-linear {
    font-size: 13px;
    padding: 0 20px;
  }

  .btn-linear_light {
    font-size: 13px;
    padding: 0 20px;
  }

  .btn-submit {
    font-size: 13px;
    padding: 0 20px;
  }

  .tf input,
  .tf textarea {
    --tf-height: 50px;
  }

  .tf .tf__label {
    font-size: 15px;
    -webkit-transform: translate(0, -10px);
        -ms-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }

  .tf._change-label .tf__label {
    -webkit-transform: translate(100px, -10px);
        -ms-transform: translate(100px, -10px);
            transform: translate(100px, -10px);
  }

  .title-main {
    font-size: 37px;
  }

  .socials__list {
    margin: -4px -5px;
  }

  .socials-item {
    margin: 4px 5px;
  }

  .c-services__icon {
    width: 36%;
    height: 36%;
  }

  :root {
    --c-payment-padding: 20px;
  }

  .c-payment__icon {
    width: 45px;
    height: 30px;
  }

  .c-payment__title {
    font-size: 20px;
    margin-left: 20px;
  }

  .c-amount {
    padding: 35px 20px 20px;
  }

  .c-amount__price {
    margin-top: 35px;
  }

  .c-amount__correction {
    margin-top: 45px;
  }

  .section {
    margin: 80px 0;
  }

  .section_ms {
    margin: 60px 0;
  }

  .s-header {
    margin-bottom: 30px;
  }

  .s-header__title::after {
    font-size: 13px;
    margin-left: 20px;
  }

  .s-header__title {
    font-size: 29px;
  }

  .modal__wrap {
    padding: 20px 0;
  }

  .modal-close {
    top: 18px;
  }

  .acc-list {
    gap: 10px;
  }

  .acc__toggle {
    padding: 20px;
  }

  .acc__toggle-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .acc__toggle-title {
    font-size: 20px;
    margin-left: 20px;
  }

  .acc__toggle-plus {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .acc__content {
    padding: 20px 0;
    margin: 0 20px;
  }

  .header-up__contacts {
    margin-right: 16px;
  }

  .header__cabinet {
    font-size: 13px;
    padding: 0 20px;
  }

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

  .main__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .s-addit__body {
    gap: 10px;
  }

  .s-hw__item::before {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 20px;
  }

  .s-hw__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .s-hw__item {
    padding: 20px;
  }

  .s-hw__sign-up {
    margin-top: 40px;
  }

  .s-payment__list {
    gap: 10px;
  }

  .s-payment__notif {
    padding: 20px;
    margin-top: 10px;
  }

  .s-insur__amount-text {
    max-width: 110px;
  }

  .s-insur-tf {
    width: 140px;
    margin-left: 10px;
  }

  .s-insur__percent span {
    font-size: 25px;
  }

  .s-know__body {
    padding: 0 20px;
  }

  .sk-block {
    padding: 20px 0;
  }

  .sk-block__title::before {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 20px;
  }

  .sk-block__title-text {
    font-size: 20px;
  }

  .s-example__body {
    padding: 20px;
  }

  .s-example__icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }

  .s-example__content {
    margin-left: 20px;
  }

  .footer-copyright {
    padding: 13px 0;
  }

  .footer-copyright__text {
    font-size: 13px;
  }

  .log-out {
    height: 40px;
  }

  .s-account {
    padding: 50px 0;
  }

  .account-block__title {
    margin-bottom: 15px;
  }

  .account-block__list {
    padding: 20px;
  }

  .s-account__work-time {
    font-size: 13px;
    margin: 15px 0 40px 0;
  }
}

@media (max-width: 365px) {
  .main__buttons > * {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .acc__toggle-title {
    font-size: 18px;
  }
}

@media (max-width: 355px) {
  .title-main {
    font-size: 30px;
  }
}

@media (max-width: 350px) {
  .main__text {
    font-size: 14px;
    margin-top: 12px;
  }

  .footer-up__contacts {
    margin-left: 12px;
  }

  .footer-up__contact_phone {
    font-size: 14px;
  }

  .client-code span {
    display: block;
    margin: 0;
  }

  .account-block__item {
    font-size: 14px;
  }
}

@media (max-width: 340px) {
  .socials__list {
    margin: -4px -3px;
  }

  .socials-item {
    margin: 4px 3px;
  }

  .socials-item__icon {
    width: 16px;
    height: 16px;
  }

  .header-up__contact:not(:last-child) {
    margin-right: 6px;
  }

  .header-down {
    --header-down-height: 70px;
  }
}

@media (max-width: 330px) {
  .acc__toggle-title {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .btn-fill:hover::before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }

  .btn-linear:hover {
    border-color: #212121;
  }

  .btn-linear_light:hover {
    color: #212121;
    background: #fff;
    border-color: #fff;
  }

  .btn-linear_light:active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
  }

  .btn-submit:hover::before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }

  .link:hover {
    color: #F97900;
  }

  .link-accent:hover {
    color: var(--color);
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .link_light:hover {
    opacity: 0.6;
  }

  .text a:hover {
    -webkit-box-shadow: inset 0 -1px transparent;
            box-shadow: inset 0 -1px transparent;
  }

  .c-services:hover {
    border-color: #F97900;
  }

  .c-services:active {
    background: #fff9f4;
  }

  .burger:hover {
    background: #dde3ea;
  }

  .burger:active {
    background: #EDF0F4;
  }

  .acc__toggle:hover .acc__toggle-title {
    color: #F97900;
  }

  .acc__toggle:active .acc__toggle-title {
    color: #ff932d;
  }
}