@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: #a00b20;
  --color-green: #2cb742;
  --color-yellow: #ffb229;
  --color-gray: #e9e9e9;
  --Main-text: #1d1d1f;
  --Default-text: #625b5a;
  --borders: #c4c4c4;
  --Accent: #e77a30;
  --Error: #dd4c1e;
  --bg: #f0f4f8;
  --transition-normal: all 0.3s ease 0s;
}

/*Обнуление*/

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

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

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

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

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: top;
}

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

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 19px;
}

/*Обнуление*/

body {
  color: var(--Main-text, #1d1d1f);
  font-size: 18px;
  line-height: 1.44444;
  font-family: "MPLUSRounded1c", sans-serif;
  font-weight: 500;
}

body.lock {
  overflow: hidden;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
  max-width: 1324px;
}

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

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--Default-text);
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-bottom: 45px;
  padding-top: 40px;
}

h1 {
  color: inherit;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  color: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1875;
}

h3 {
  color: inherit;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.53846;
}

h4 {
  color: inherit;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.53846;
}

h5 {
  color: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.53846;
}

.main-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44444;
  color: var(--Main-text);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  height: 48px;
  padding: 5px 36px 7px;
  border-radius: 16px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44444;
  background: var(--Accent);
}

.btn:hover {
  background: #fa9047;
}

.btn:active {
  background: #d66e27;
}

.btn.disabled {
  background: var(--borders);
  color: var(--Default-text);
  pointer-events: none;
}

.btn[disabled] {
  background: var(--borders);
  color: var(--Default-text);
  pointer-events: none;
}

.btn.btn-accent {
  background: var(--Accent);
  color: var(--color-white);
}

.btn.btn-accent:hover {
  background: #fa9047;
}

.btn.btn-accent:active {
  background: #d66e27;
}

.btn.btn-accent.disabled {
  background: var(--borders);
  color: var(--Default-text);
  pointer-events: none;
}

.btn.btn-accent[disabled] {
  background: var(--borders);
  color: var(--Default-text);
  pointer-events: none;
}

.btn.btn-outline {
  border: 1px solid var(--borders);
  color: var(--Main-text);
  background: transparent;
}

.btn.btn-outline:hover {
  background: #fa9047;
  border-color: #fa9047;
  color: var(--color-white);
}

.btn.btn-outline:active {
  background: #d66e27;
  border-color: #fa9047;
  color: var(--color-white);
}

.btn.btn-outline.disabled {
  background: var(--borders);
  color: var(--Default-text);
  pointer-events: none;
}

.btn.btn-outline[disabled] {
  background: var(--borders);
  color: var(--Default-text);
  pointer-events: none;
}

.offset-block {
  margin-left: calc(((100vw - 1324px) / 2 + 30px) * -1);
  margin-right: calc(((100vw - 1324px) / 2 + 30px) * -1);
  padding-left: calc((100vw - 1324px) / 2 + 30px);
  padding-right: calc((100vw - 1324px) / 2 + 30px);
}

.header {
  padding: 24px 0;
  background: var(--color-white);
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
  padding-right: 142px;
}

.header__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 142px;
  max-width: 100%;
  padding: 0 15px;
}

.header__right {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.header__icon-menu {
  display: none;
  position: relative;
  z-index: 12;
}

.logo {
  display: inline-block;
  max-width: 112px;
}

.logo img {
  max-width: 100%;
}

.menu__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
}

.menu__link {
  color: var(--Main-text);
  font-size: 18px;
  line-height: 145%;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__btn {
  display: none;
  margin-top: auto;
  padding-top: 32px;
}

.menu__btn .btn {
  width: 100%;
}

.icon-menu {
  cursor: pointer;
  width: 30px;
  height: 30px;
  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;
}

.icon-menu.open .icon-menu__body span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu.open .icon-menu__body span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
}

.icon-menu.open .icon-menu__body span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 7px;
}

.icon-menu__body {
  width: 24px;
  height: 17px;
  position: relative;
}

.icon-menu__body span {
  position: absolute;
  top: 7px;
  width: 100%;
  height: 3px;
  left: 0;
  background: #000;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 3px;
}

.icon-menu__body span:first-child {
  top: 0;
}

.icon-menu__body span:last-child {
  top: auto;
  bottom: 0;
}

.footer {
  background: var(--bg);
  padding: 64px 0;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -16px;
}

.footer__left {
  padding: 0 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.footer__logo {
  max-width: 112px;
}

.footer__logo img {
  max-width: 100%;
}

.footer__copy {
  margin-top: 24px;
  color: var(--Default-text);
  font-size: 18px;
  line-height: 145%;
}

.footer__center {
  padding: 0 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  padding-top: 7px;
}

.footer__right {
  padding: 0 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__email {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: var(--Main-text);
  font-size: 18px;
  line-height: 1.44444;
}

.footer__email svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
}

.footer__link {
  margin-top: 20px;
}

.footer__link img {
  width: 150px;
}

.footer__copy-mob {
  display: none;
  margin-top: 20px;
  color: var(--Default-text);
  font-size: 16px;
  line-height: 1.375;
}

.footer-menu {
  padding: 0;
  list-style: none;
}

.footer-menu li:not(:last-child) {
  margin-bottom: 24px;
}

.footer-menu li a {
  color: var(--Default-text);
  font-size: 18px;
  line-height: 1.44444;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.bottom-block {
  padding: 60px 50px;
  border-radius: 16px;
  background: var(--bg);
  margin-top: 50px;
  margin-bottom: 100px;
}

.bottom-block:first-child {
  margin-top: 0;
}

.bottom-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -15px;
}

.bottom-block__left {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.bottom-block__text {
  margin-top: 12px;
}

.bottom-block__right {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 350px;
  max-width: 100%;
}

.bottom-block__right .btn {
  width: 100%;
}

.tariffs-block {
  margin-top: 140px;
  margin-bottom: 140px;
}

.tariffs-block:first-child {
  margin-top: 0;
}

.tariffs-block:last-child {
  margin-bottom: 0;
}

.tariffs-block__title {
  margin-bottom: 50px;
  text-align: center;
}

.tariffs-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}

.tariffs-block__col {
  padding: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.item-tariff {
  border-radius: 16px;
  border: 1px solid var(--borders);
  background: var(--color-white);
  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%;
  position: relative;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  padding: 40px;
}

.item-tariff:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
  border: 3px solid var(--Accent);
  z-index: 1;
  pointer-events: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  opacity: 0;
}

.item-tariff__name {
  color: var(--Main-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.53846;
}

.item-tariff__text {
  color: var(--Default-text);
  margin-top: 12px;
}

.item-tariff__price {
  margin-top: auto;
  padding-top: 32px;
  padding-bottom: 8px;
  color: var(--Main-text);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.item-tariff .btn {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 40px;
  width: 100%;
}

.program-block {
  background: var(--bg);
  padding-top: 88px;
  padding-bottom: 88px;
}

.program-block__title {
  text-align: center;
  max-width: 1010px;
  margin: 0 auto 30px;
}

.program-block__text {
  text-align: center;
  max-width: 1010px;
  margin: 0 auto 30px;
}

.program-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -6px;
}

.program-block__col {
  padding: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.item-program {
  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%;
  border-radius: 16px;
  border: 1px solid var(--borders);
  background: var(--color-white);
  padding: 28px 30px;
}

.item-program__icon {
  width: 80px;
  height: 70px;
  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;
  margin: 0 auto;
}

.item-program__icon img,
.item-program__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.item-program__title {
  text-align: center;
  margin-top: 8px;
  color: var(--Main-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.53846;
}

.item-program__list {
  padding: 0;
  list-style: none;
  margin-top: 28px;
}

.item-program__list li {
  color: var(--Default-text);
  position: relative;
  padding-left: 28px;
}

.item-program__list li:not(:last-child) {
  margin-bottom: 6px;
}

.item-program__list li:before {
  content: "";
  width: 22px;
  height: 26px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyMyAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuOTM3NSAxM0w5LjMxMjUgMTcuMzc1TDE4LjA2MjUgOCIgc3Ryb2tlPSIjMUQxRDEwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=") center/contain no-repeat;
}

.how-help {
  margin: 80px 0 50px;
}

.how-help__title {
  text-align: center;
  margin-bottom: 50px;
}

.how-help__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.how-help__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 43%;
  max-width: 100%;
}

.how-help__img {
  text-align: center;
  padding-left: 55px;
  padding-bottom: 13px;
}

.how-help__img img {
  max-width: 100%;
}

.how-help__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 57%;
  max-width: 100%;
  padding: 0 15px;
}

.how-help__items {
  padding-right: 34px;
}

.how-help__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  padding: 10px 18px 10px 0;
  min-height: 144px;
}

.how-help__item:not(:last-child) {
  margin-bottom: 10px;
}

.how-help__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75px;
  max-width: 100%;
  padding-top: 10px;
}

.how-help__item-icon img {
  max-width: 100%;
}

.how-help__item-title {
  color: var(--Main-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.53846;
}

.how-help__item-text {
  margin-top: 12px;
}

.offer-block {
  margin-top: 32px;
  margin-bottom: 32px;
}

.offer-block:first-child {
  margin-top: 0;
}

.offer-block:last-child {
  margin-bottom: 0;
}

.offer-block__title {
  text-align: center;
}

.offer-block__text {
  text-align: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.offer-block__btn {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.offer-block__btn .btn {
  min-width: 320px;
}

.block-video {
  margin-left: calc(((100vw - 1324px) / 2 + 30px) * -1);
  margin-right: calc(((100vw - 1324px) / 2 + 30px) * -1);
  position: relative;
}

.block-video__video {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 59.93056%;
}

.block-video__video img,
.block-video__video video,
.block-video__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.block-video__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 3;
  bottom: 150px;
}

.block-video__btn .btn {
  min-width: 320px;
}

.block-video__link img {
  width: 200px;
}

.block-text {
  position: relative;
  z-index: 5;
  border-radius: 16px;
  border: 1px solid #d7d7d7;
  background: var(--color-white);
  max-width: 678px;
  padding: 40px 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -131px;
}

.block-text__title {
  text-align: center;
}

.block-text__text {
  margin-top: 12px;
  text-align: center;
}

.fancybox__backdrop {
  background: rgba(174, 174, 174, 0.5) !important;
}

.main-popup {
  display: none;
}

.main-popup.fancybox__content {
  width: 100%;
  max-width: 585px;
  border-radius: 16px;
  background: #fff;
  padding: 60px;
}

.main-popup.fancybox__content .f-button.is-close-btn {
  top: 12px;
  right: 12px;
  color: var(--Main-text);
  width: 44px;
  height: 44px;
}

.main-popup.fancybox__content .f-button.is-close-btn svg {
  -webkit-filter: none;
          filter: none;
}

.main-popup__title {
  color: var(--Main-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.53846;
}

.main-popup__text {
  margin-top: 14px;
  color: var(--Main-text);
  font-size: 14px;
  line-height: 1.42857;
  font-weight: 400;
}

.main-popup__form {
  margin-top: 26px;
}

.main-popup__btn {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-popup__btn .btn {
  min-width: 320px;
}

.form-group:not(:last-child) {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 12px;
  border: 1px solid var(--borders);
  height: 56px;
  padding: 6px 16px;
  width: 100%;
  background: transparent;
  color: var(--Main-text);
  font-size: 18px;
  line-height: 1.44444;
}

.form-control:focus-visible {
  border-color: var(--Main-text);
  outline: 1px solid var(--Main-text);
}

.main-checkbox label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  position: relative;
}

.main-checkbox label input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 16px;
  left: 12px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.main-checkbox label input:checked + span:before {
  background: var(--Accent) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNiAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS43MzA0IDAuMzE3MDE2QzE2LjEwNzYgMC43MjA0MTIgMTYuMDg2NCAxLjM1MzIyIDE1LjY4MyAxLjczMDQzTDYuMDU4IDEwLjczMDRDNS42NzM2MyAxMS4wODk4IDUuMDc2NDkgMTEuMDg5OSA0LjY5MjA5IDEwLjczMDVM MC4zMTcwOTEgNi42NDA1Qy0wLjA4NjM1MzMgNi4yNjMzNCAtMC4xMDc2NTkgNS42MzA1NCAwLjI2OTUwNCA1LjIyNzA5QzAuNjQ2NjY2IDQuODIzNjUgMS4yNzk0NyA0LjgwMjM0IDEuNjgyOTIgNS4xNzk1TDUuMzc0OTMgOC42MzEwMUwxNC4zMTcgMC4yNjk1NzlDMTQuNzIwNCAtMC4xMDc2MjggMTUuMzUzMiAtMC4wODYzOTI1IDE1LjczMDQgMC4zMTcwMVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==") center/14px auto no-repeat;
}

.main-checkbox label span {
  color: var(--Main-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  display: block;
  position: relative;
  padding-left: 38px;
}

.main-checkbox label span a {
  color: inherit;
  text-decoration: underline;
}

.main-checkbox label span a:hover {
  text-decoration: none;
}

.main-checkbox label span:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 8px;
  background: var(--borders);
}

.thanks-popup {
  display: none;
}

.thanks-popup.fancybox__content {
  width: 100%;
  max-width: 562px;
  border-radius: 16px;
  background: #fff;
  padding: 40px;
}

.thanks-popup.fancybox__content .f-button.is-close-btn {
  display: none;
  top: 12px;
  right: 12px;
  color: var(--Main-text);
  width: 44px;
  height: 44px;
}

.thanks-popup.fancybox__content .f-button.is-close-btn svg {
  -webkit-filter: none;
          filter: none;
}

.thanks-popup__title {
  color: var(--Main-text);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1875;
}

.thanks-popup__text {
  color: var(--Main-text);
  text-align: center;
  font-size: 18px;
  line-height: 1.44444;
  margin-top: 12px;
}

.thanks-popup__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.thanks-popup__btn .btn {
  min-width: 320px;
}

.detail-text {
  max-width: 1020px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.44444;
}

.detail-text h2,
.detail-text h3,
.detail-text h4,
.detail-text h5,
.detail-text h6 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.detail-text h2:first-child,
.detail-text h3:first-child,
.detail-text h4:first-child,
.detail-text h5:first-child,
.detail-text h6:first-child {
  margin-top: 0;
}

.detail-text h2:last-child,
.detail-text h3:last-child,
.detail-text h4:last-child,
.detail-text h5:last-child,
.detail-text h6:last-child {
  margin-bottom: 0;
}

.detail-text p {
  margin-bottom: 15px;
  margin-top: 15px;
}

.detail-text p:first-child {
  margin-top: 0;
}

.detail-text p:last-child {
  margin-bottom: 0;
}

.detail-text ul,
.detail-text ol {
  margin-top: 20px;
  margin-bottom: 20px;
}

.detail-text ul:first-child,
.detail-text ol:first-child {
  margin-top: 0;
}

.detail-text ul:last-child,
.detail-text ol:last-child {
  margin-bottom: 0;
}

.detail-text li:not(:last-child) {
  margin-bottom: 5px;
}

.detail-text a {
  color: var(--Accent);
  text-decoration: underline;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

@media (max-width: 1323.98px) {
  .offset-block {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .item-tariff {
    padding: 32px;
  }

  .block-video {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (max-width: 1199.98px) {
  .bottom-block {
    margin-bottom: 55px;
  }

  .bottom-block {
    padding: 50px 40px;
  }

  .tariffs-block {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .tariffs-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .program-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .item-program {
    padding: 28px 24px;
  }

  .how-help__img {
    padding-left: 0;
    padding-bottom: 0;
  }

  .how-help__items {
    padding-right: 0;
  }
}

@media (max-width: 991.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main {
    padding-top: 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .offset-block {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__row {
    margin: 0 -10px;
    padding-right: 132px;
  }

  .header__left {
    padding: 0 10px;
    width: 132px;
  }

  .header__right {
    padding: 0 10px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__row {
    margin: 0 -10px;
  }

  .footer__left {
    padding: 0 10px;
  }

  .footer__copy {
    font-size: 16px;
    line-height: 1.375;
  }

  .footer__center {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 0 10px;
  }

  .footer__email {
    font-size: 16px;
    line-height: 1.375;
  }

  .footer-menu li a {
    font-size: 16px;
    line-height: 1.375;
  }

  .bottom-block {
    margin-bottom: 0;
  }

  .bottom-block {
    padding: 32px 24px;
  }

  .bottom-block__right {
    width: 250px;
  }

  .tariffs-block {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .item-tariff__name {
    font-size: 24px;
  }

  .item-tariff__price {
    font-size: 36px;
    padding-bottom: 0;
  }

  .item-tariff .btn {
    margin-top: 30px;
  }

  .program-block__row {
    margin: 0 -20px;
    padding: 0 20px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .program-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 307px;
    max-width: 100%;
    padding: 0;
  }

  .program-block__col:not(:last-child) {
    margin-right: 12px;
  }

  .item-program__title {
    font-size: 24px;
  }

  .item-program__list {
    margin-top: 24px;
  }

  .how-help {
    margin: 60px 0 50px;
  }

  .how-help__title {
    margin-bottom: 30px;
  }

  .how-help__left {
    display: none;
  }

  .how-help__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .how-help__item:not(:last-child) {
    margin-bottom: 0;
  }

  .how-help__item {
    min-height: auto;
  }

  .how-help__item-icon {
    padding-top: 7px;
    width: 60px;
  }

  .how-help__item-title {
    font-size: 24px;
  }

  .block-video {
    margin-left: -20px;
    margin-right: -20px;
  }

  .block-text {
    padding: 32px 24px;
    margin-top: -122px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
    line-height: 1.375;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fancybox__slide {
    padding: 30px 16px;
  }

  .main {
    padding-bottom: 36px;
    padding-top: 10px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.21429;
  }

  h2 {
    font-size: 24px;
    line-height: 1.16667;
  }

  h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  h4 {
    font-size: 18px;
    line-height: 1.2;
  }

  h5 {
    font-size: 17px;
    line-height: 1.2;
  }

  .main-text {
    font-size: 16px;
    line-height: 1.375;
  }

  .btn {
    padding: 16px;
    line-height: 1.375;
  }

  .offset-block {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header {
    position: relative;
  }

  .header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 11;
    position: absolute;
    top: 0;
    left: 0;
  }

  .header {
    padding: 20px 0;
  }

  .header__row {
    padding-right: 0;
  }

  .header__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 12;
  }

  .header__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .header__icon-menu {
    display: block;
  }

  .logo {
    max-width: 86px;
  }

  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
    background: var(--color-white);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 10;
  }

  .menu.open {
    top: 0;
  }

  .menu__list {
    display: block;
  }

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

  .menu__link {
    font-size: 16px;
    line-height: 1.375;
  }

  .menu__btn {
    display: block;
  }

  .footer {
    padding: 30px 0;
  }

  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer__logo {
    max-width: 86px;
  }

  .footer__copy {
    display: none;
  }

  .footer__center {
    padding-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-top: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__copy-mob {
    display: block;
  }

  .footer-menu li:not(:last-child) {
    margin-bottom: 10px;
  }

  .bottom-block {
    padding: 24px 20px;
  }

  .bottom-block__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .bottom-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .bottom-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .tariffs-block {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .tariffs-block__title {
    margin-bottom: 20px;
  }

  .tariffs-block__row {
    margin: -6px;
  }

  .tariffs-block__col {
    padding: 6px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .item-tariff {
    padding: 24px 20px;
  }

  .item-tariff__name {
    font-size: 20px;
    line-height: 1.2;
  }

  .item-tariff__price {
    padding-top: 20px;
    font-size: 32px;
    line-height: 1.1875;
  }

  .program-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .program-block__title {
    margin-bottom: 16px;
  }

  .program-block__text {
    margin-bottom: 20px;
  }

  .item-program__title {
    font-size: 20px;
    line-height: 1.2;
  }

  .item-program__list {
    margin-top: 20px;
  }

  .how-help {
    margin: 50px 0 50px;
  }

  .how-help__title {
    margin-bottom: 16px;
  }

  .how-help__item {
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
  }

  .how-help__item-icon {
    padding-top: 4px;
    width: 40px;
  }

  .how-help__item-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .offer-block {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .offer-block__text {
    margin-top: 12px;
  }

  .offer-block__btn {
    margin-top: 20px;
  }

  .offer-block__btn .btn {
    min-height: auto;
    width: 100%;
  }

  .block-video {
    margin-left: -16px;
    margin-right: -16px;
  }

  .block-video__video {
    padding-bottom: 73.33333%;
  }

  .block-video__btn {
    bottom: 66px;
  }

  .block-video__link img {
    width: 150px;
  }

  .block-text {
    padding: 20px 16px;
    margin-top: -50px;
  }

  .main-popup.fancybox__content {
    padding: 44px 20px;
  }

  .main-popup.fancybox__content .f-button.is-close-btn {
    top: 0;
    right: 0;
  }

  .main-popup.fancybox__content .f-button.is-close-btn svg {
    width: 20px;
    height: 20px;
  }

  .main-popup__title {
    font-size: 24px;
    line-height: 1.16667;
  }

  .main-popup__text {
    font-size: 16px;
    line-height: 1.375;
  }

  .main-popup__btn .btn {
    width: 100%;
    min-width: auto;
  }

  .form-group:not(:last-child) {
    margin-bottom: 16px;
  }

  .form-control {
    font-size: 16px;
    line-height: 1.375;
  }

  .thanks-popup.fancybox__content {
    padding: 30px 20px;
  }

  .thanks-popup.fancybox__content .f-button.is-close-btn {
    top: 0;
    right: 0;
  }

  .thanks-popup.fancybox__content .f-button.is-close-btn svg {
    width: 20px;
    height: 20px;
  }

  .thanks-popup__title {
    font-size: 24px;
    line-height: 1.16667;
  }

  .thanks-popup__text {
    font-size: 16px;
    line-height: 1.375;
  }

  .thanks-popup__btn .btn {
    min-width: auto;
  }

  .detail-text {
    font-size: 16px;
    line-height: 1.375;
  }

  .detail-text h2,
  .detail-text h3,
  .detail-text h4,
  .detail-text h5,
  .detail-text h6 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .detail-text p {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .detail-text ul,
  .detail-text ol {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 578px) {
  .main-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }

  .thanks-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}

@media (any-hover: hover) {
  .menu__link:hover {
    color: #108cf7;
  }

  .footer-menu li a:hover {
    color: var(--Main-text);
  }

  .item-tariff:hover {
    border-color: transparent;
  }

  .item-tariff:hover:before {
    opacity: 1;
  }

  .detail-text a:hover {
    text-decoration: none;
  }
}

@media (max-height: 578px) {
  .main-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }

  .thanks-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}