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

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

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

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

:root {
  --color-whte: #fff;
  --color-whte--rgb: 255, 255, 255;
  --color-blck: #000;
  --color-blck--rgb: 0, 0, 0;
  --color-blck2: #382319;
  --color-blck2--rgb: 56, 35, 25;
  --color-rd: #F1361D;
  --color-rd--rgb: 241, 54, 29;
  --color-blu: #2254F5;
  --color-blu--rgb: 34, 84, 245;
  --color-blulght: #A48FF8;
  --color-blulght--rgb: 164, 143, 248;
  --color-gry: #8B8B8B;
  --color-gry--rgb: 139, 139, 139;
  --font-primary: LabGrotesque, sans-serif, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, Droid Sans, Helvetica Neue, Arial, sans-serif, Apple Color Emoji;
}

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

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

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  color: var(--color-blck);
  line-height: 1;
  font-family: "LabGrotesque",sans-serif,-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,"Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "LabGrotesque",sans-serif,-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,"Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: rgba(0,0,0,0);
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address,
cite {
  font-style: normal;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

body::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: var(--color-scroll-bg);
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-alt);
}

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

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

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

.wrapper>* {
  min-width: 0;
}

[class*=__container] {
  --pad: 20px;
  max-width: calc(76.25rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 var(--pad);
  margin: 0 auto;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: var(--color-rd);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 180%;
  color: var(--color-whte);
  border-radius: 10px;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.button--fw {
  max-width: 100%;
}

.button--alt {
  background-color: var(--color-whte);
  color: var(--color-blck);
}

.button--lg {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.input {
  width: 100%;
  display: block;
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid #c7c7c7;
  font-size: var(--text-size-lg);
  line-height: 130%;
  font-weight: 500;
}

.input:focus {
  outline: none !important;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  color: var(--color-gry);
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  color: var(--color-gry);
  -moz-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  color: var(--color-gry);
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  color: var(--color-gry);
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  color: var(--color-gry);
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

body::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility .8s ease 0s;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ibg--top {
  -o-object-position: top;
     object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
     object-position: left;
}

.ibg--right {
  -o-object-position: right;
     object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

:root {
  --text-size-md: 16px;
  --text-size-lg: 20px;
  --text-ln-md: 150%;
  --text-ln-lg: 130%;
}

.banner {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.125rem;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  position: relative;
}

.banner--primary {
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.24);
  backdrop-filter: blur(12.1999998093px);
  margin-top: 1.5625rem;
}

.banner--primary .banner__img {
  margin-top: -3.4375rem;
  margin-bottom: -1.875rem;
  min-width: 5rem;
}

.banner--primary .banner__title {
  font-weight: 500;
}

.banner--primary .banner__btn {
  max-width: 19.625rem;
}

.banner--secondary {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  gap: 1.5625rem;
  background-color: var(--color-rd);
  color: var(--color-whte);
}

.banner--secondary .banner__title {
  font-weight: 600;
  font-family: "ProximaNova";
}

.banner--secondary .banner__btn {
  min-width: 13.75rem;
}

.banner--secondary .banner__img {
  min-width: 6.875rem;
}

.banner__title {
  font-size: 1.5rem;
  max-width: 36.25rem;
  line-height: 130%;
}

.banner__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: none;
  width: auto;
}

.banner__img picture,
.banner__img img {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
}

.text {
  font-size: var(--text-size-md);
  line-height: var(--text-ln-md);
}

.text-lg {
  font-size: var(--text-size-lg);
  line-height: var(--text-ln-lg);
}

.h2 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 108%;
}

.header {
  padding-top: 3.75rem;
  padding-bottom: 2.1875rem;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-whte);
}

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

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.1875rem;
}

.header__logo {
  display: block;
}

.header__logo img,
.header__logo picture {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  height: auto;
}

.header__phone {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0.0160625rem;
  line-height: 18.566px;
}

.header__phone-link {
  font-size: 1.375rem;
  font-weight: 700;
}

.header__phone-link:hover {
  text-decoration: underline;
}

.header__phone-text {
  font-size: 0.75rem;
  line-height: 18px;
}

.offer {
  background-color: #141414;
  color: var(--color-whte);
  position: relative;
  padding-bottom: 5rem;
  overflow: hidden;
}

.no-webp .offer::after {
  background-image: url("../img/pages/home/offer/bg.png"); }

.offer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1369px;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}

.offer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1369px;
  top: 0;
  left: 0;
  background: linear-gradient(181deg, rgba(26, 28, 21, 0.28) 68.97%, rgba(26, 28, 21, 0.97) 99.39%);
  z-index: 2;
}

.offer__container {
  position: relative;
  z-index: 3;
}

.offer .banner--primary {
  margin-top: 0 !important;
}

.offer__translation {
  margin-top: 2.8125rem;
}

.offer__translation-video,
.offer__translation-chat {
  border-radius: 20px;
  overflow: hidden;
}

.offer__translation-video {
  width: 100%;
  height: 40.4375rem;
  background-color: var(--color-blck);
  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: relative;
}

.offer__translation-video-iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.offer__translation-video-iframe iframe {
  width: 100%;
  height: 100%;
}

.offer__translation-video-play {
  width: 9.9375rem;
  height: 9.9375rem;
  padding-left: 2.5rem;
  position: relative;
  z-index: 2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.offer__translation-video-play:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.offer__translation-video-play svg {
  width: 100%;
  height: 100%;
  color: var(--color-whte);
}

.offer__translation-chat {
  margin-top: 0.9375rem;
}

.offer__translation-chat img,
.offer__translation-chat picture{
  width: 100%;
  height: 100%;
}
.offer__translation-chat iframe {
  width: 100%;
}

.offer .banner-service {
  margin-top: 4.375rem;
}

.program {
  padding: 6.25rem 0;
}

.program__items {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.program__item {
  padding: 1.875rem 2.5rem;
  border-radius: 20px;
  border: 1px solid #f2f2f2;
  background: #fff;
  -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,.08);
          box-shadow: 0 0 40px 0 rgba(0,0,0,.08);
}

.program__item-title {
  font-size: 1.875rem;
  color: var(--color-blck);
  font-weight: 700;
  line-height: 110%;
  padding-bottom: 1.1875rem;
}

.program__item-author {
  padding-top: 1.3125rem;
  border-top: 1px solid #e3e3e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.75rem;
  color: var(--color-blck2);
}

.program__item-author-photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.1875rem;
          flex: 0 0 6.1875rem;
  height: 6.1875rem;
  border-radius: 50%;
  overflow: hidden;
}

.program__item-author-photo img,
.program__item-author-photo picture {
  width: 100%;
  height: 100%;
  display: block;
}

.program__item-author-name {
  font-weight: 700;
}

.program__item-position {
  margin-top: 0.375rem;
  line-height: 150%;
}

.program__btn {
  margin-top: 2.5rem;
  max-width: 26.75rem;
}

.no-webp .questions {
  background-image: url("../img/pages/home/questions/bg.jpg"); }

.questions {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 6.875rem;
  padding-bottom: 5rem;
  color: var(--color-whte);
}

.questions__title {
  text-align: center;
  margin-top: 5.3125rem;
  line-height: 130%;
}

.questions__description {
  text-align: center;
  margin-top: 0.8125rem;
}

.questions__form {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.questions__form .input,
.questions__form .button {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 0.9375rem);
          flex: 0 1 calc(25% - 0.9375rem);
}

.questions__form .button {
  max-width: none;
  width: auto;
}

.banner-service {
  border-radius: 30px;
  padding: 2.5rem;
  background-color: var(--color-blu);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  font-family: Arial,Helvetica,sans-serif;
  position: relative;
}

.banner-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8.4375rem;
}

.banner-service__logo img,
.banner-service__logo picture {
  max-width: 9.5rem;
  width: 100%;
  height: auto;
  display: block;
}

.banner-service__tag {
  margin: 0 0.3125rem;
  padding: 0.375rem 0.625rem;
  background-color: var(--color-blulght);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 200px;
  font-size: var(--text-size-lg);
  line-height: var(--text-ln-lg);
}

.banner-service__title {
  font-size: 2.5rem;
  line-height: 108%;
  font-weight: 700;
  max-width: 35.3125rem;
}

.banner-service__fullsize-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

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

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

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

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

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

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

@media (max-width: 77.5em) {
  .banner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .banner__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 61.99875em) {
  .button {
    font-size: 1.125rem;
  }

  .button {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .button--lg {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  :root {
    --text-size-lg: 18px;
  }

  .banner {
    gap: 1.375rem;
  }

  .banner__title {
    font-size: 1.125rem;
  }

  .h2 {
    font-size: 2.875rem;
  }

  .header {
    padding-top: 2.1875rem;
  }

  .header__row {
    gap: 2.5rem;
  }

  .header__left {
    row-gap: 1.25rem;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header__phone-link {
    font-size: 1.25rem;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .offer__translation {
    margin-top: 1.5625rem;
  }

  .offer__translation-video,
  .offer__translation-chat {
    height: 25rem;
  }

  .offer__translation-video-play {
    width: 6.875rem;
    height: 6.875rem;
  }

  .offer__translation-chat {
    margin-top: 0.625rem;
  }

  .offer .banner-service {
    margin-top: 2.5rem;
  }

  .program {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .program__item-title {
    font-size: 1.75rem;
  }

  .program__item-author-photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
    height: 5rem;
  }

  .questions {
    padding-top: 5rem;
  }

  .questions__title {
    margin-top: 3.75rem;
  }

  .questions__form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }

  .questions__form .input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.333% - 0.625rem);
            flex: 0 1 calc(33.333% - 0.625rem);
  }

  .questions__form .button {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .banner-service {
    padding: 1.875rem;
    border-radius: 20px;
  }

  .banner-service__header {
    gap: 5rem;
  }

  .banner-service__title {
    font-size: 2rem;
  }
}

@media (max-width: 47.99875em) {
  .input {
    padding: 0.8125rem;
  }

  :root {
    ---text-size-md: 14px;
    --text-ln-md: normal;
  }

  .banner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 0.625rem;
  }

  .banner__title {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    font-size: 1rem;
  }

  .banner__title,
  .banner__btn {
    width: 70%;
  }

  .banner__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .banner--primary .banner__img {
    margin-top: -5.625rem;
    margin-bottom: 0;
    min-width: 0;
  }

  .banner--secondary .banner__img {
    margin-top: -3.75rem;
  }

  .banner--secondary .banner__btn {
    max-width: 20rem;
  }

  .h2 {
    font-size: 2rem;
  }

  .header {
    padding-top: 1.25rem;
    padding-bottom: 1.875rem;
  }

  .header__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }

  .header__left {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.25rem;
  }

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

  .header__right {
    width: 100%;
  }

  .header__phone {
    margin-left: auto;
  }

  .header__phone-link {
    font-size: 1rem;
  }

  .offer {
    padding-bottom: 3.75rem;
  }

  .offer__translation-video,
  .offer__translation-chat {
    height: 21.875rem;
  }

  .offer__translation-video-play {
    width: 6.25rem;
    height: 6.25rem;
  }

  .program {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .program__items {
    margin-top: 1.875rem;
  }

  .program__btn {
    margin-top: 1.875rem;
  }

  .program__item {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .program__item-title {
    font-size: 1.375rem;
    padding-bottom: 0.875rem;
  }

  .program__item-author {
    padding-top: 1rem;
    gap: 1.25rem;
  }

  .program__item-author-position {
    margin-top: 0.3125rem;
  }

  .questions {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .questions__title {
    margin-top: 2.5rem;
  }

  .questions__description {
    margin-top: 0.5rem;
  }

  .questions__form {
    margin-top: 1.875rem;
  }

  .banner-service {
    gap: 1.25rem;
  }

  .banner-service__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }

  .banner-service__tags {
    margin-left: -0.3125rem;
  }

  .banner-service__title {
    max-width: 100%;
    font-size: 1.75rem;
  }

  .banner-service__logo {
    max-width: 6.875rem;
  }
}

@media (max-width: 35.74875em) {
  :root {
    --text-size-lg: 16px;
    --text-ln-lg: normal;
  }

  .banner {
    margin-left: 0;
    margin-right: 0;
    row-gap: 0.9375rem;
  }

  .banner__img {
    display: none;
  }

  .banner__title,
  .banner__btn {
    width: 100%;
    max-width: 100% !important;
  }

  .offer {
    padding-bottom: 2.5rem;
  }

  .offer__translation-video,
  .offer__translation-chat {
    height: 13.75rem;
  }

  .offer__translation-video-play {
    width: 5rem;
    height: 5rem;
  }

  .offer .banner-service {
    margin-top: 1.875rem;
  }

  .program {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }

  .program__items {
    gap: 0.625rem;
    margin-top: 1.25rem;
  }

  .program__btn {
    margin-top: 1.25rem;
  }

  .program__item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .program__item-title {
    font-size: 1.25rem;
    line-height: normal;
  }

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

  .program__item-author-photo {
    display: none;
  }

  .questions {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .questions__title {
    font-size: 1.625rem;
  }

  .questions__form {
    gap: 0.9375rem;
  }

  .questions__form .input {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .questions__form .button {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .banner-service {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .banner-service__tag {
    font-size: 0.75rem;
    margin: 0 0.15625rem;
  }

  .banner-service__tags {
    margin-left: -0.15625rem;
  }

  .banner-service__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 26.24875em) {
  .banner-service__tag {
    font-size: 0.625rem;
  }

  .banner-service__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0.3125rem;
  }

  .banner-service__title {
    font-size: 1.125rem;
  }

  .banner-service__logo {
    max-width: 6.25rem;
  }
}

.webp .offer::after { background-image: url(../img/pages/home/offer/bg.webp); }

.webp .questions { background-image: url(../img/pages/home/questions/bg.webp); }