html {
  font-size: 1.2vw;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 921px) {
  html {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  background: #181818;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg.png") center top repeat;
  opacity: 0.8;
  mix-blend-mode: overlay;
}

.bg-silk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-silk.png") center top repeat-y;
  background-size: 100% auto;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 10rem 0;
}

.container {
  padding: 0 20rem;
}

.text--color {
  color: #8BDCFF;
}
.text--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 2rem;
  align-items: center;
  padding: 0.8rem 0.8rem 0.8rem 4rem;
  height: 7.2rem;
  min-width: 44rem;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  color: white;
  background: radial-gradient(50% 50% at 50% 50%, #196F8C 0%, #5195B2 100%);
  border-radius: 10rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.btn svg {
  width: 5.6rem;
  flex-shrink: 0;
}
.btn:hover {
  background: #1B6B8C;
}
.btn-red {
  background: #CD2927;
}
.btn-red:hover {
  background: #A20200;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
}

.heading {
  font-size: 4.6rem;
  margin-bottom: 8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(92deg, #FFFEFC 36.24%, #B5B5B5 90.45%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #8BDCFF;
  box-shadow: 0 0 5px #8BDCFF;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: my-counter;
}
.list-num__item {
  counter-increment: my-counter;
  padding-top: 12.8rem;
  position: relative;
}
.list-num__item:after {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #8BDCFF;
  position: absolute;
  top: 0;
  left: 0;
}
.list-num__item:before {
  content: "0" counter(my-counter);
  position: absolute;
  top: 0;
  left: 0rem;
  font-size: 12.8rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 60px 40px 40px;
  background: white;
  position: relative;
  width: 580px;
  max-height: 100vh;
  overflow-y: auto;
  border-radius: 10px;
}
@media screen and (max-width: 920px) {
  .modal__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: white;
    border-radius: 0;
  }
}
@media screen and (max-width: 920px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal__heading {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.form-bg {
  background: #eee;
  padding: 0.8rem;
  overflow: hidden;
  border-radius: 10rem;
  display: flex;
  column-gap: 1rem;
  padding-left: 2rem;
}
.form-separator {
  width: 1px;
  flex-shrink: 0;
  background: #BBBBC3;
}
.form-row {
  display: flex;
}
.form-check {
  display: flex;
  font-size: 1.6rem;
  font-weight: 300;
  column-gap: 1.3rem;
  align-items: center;
  padding-left: 4rem;
  margin-top: 1.2rem;
}
.form-check svg {
  width: 1.5rem;
}
.form-control {
  position: relative;
}
.form .error {
  color: #CD2927;
  font-size: 1.2rem;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-input {
  background: #eee;
  border: none;
  padding: 2rem;
  height: 7.2rem;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #181818;
  width: 100%;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}
.form-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #eee inset;
}
.form-input::placeholder {
  opacity: 1;
  color: #8F8F8F;
}
.form-input.err {
  color: #CD2927;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: #CD2927;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-btn {
  flex-shrink: 0;
}

.language {
  position: fixed;
  z-index: 100;
  top: 12rem;
  right: 20rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #323232;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}
.language:hover .language__arrow {
  transform: rotate(0deg);
}
.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.language__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .language__item {
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    margin-left: 0;
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@media screen and (min-width: 1366px) {
  .js-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 0.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 1.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 1.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 2.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-13 {
    transition: all 0.6s ease-out 2.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-14 {
    transition: all 0.6s ease-out 2.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-15 {
    transition: all 0.6s ease-out 3s, transform 0.6s ease-out;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom, .js-animate.visible.from-top, .js-animate.visible.from-left, .js-animate.visible.from-right, .js-animate.visible.zoom-out, .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right, .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 18rem 0 12rem;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 142.6rem;
  height: 92.7rem;
  background: url("../images/bg1.png") right bottom no-repeat;
  background-size: cover;
  z-index: 3;
}
.header__block {
  width: 110rem;
  position: relative;
  z-index: 4;
}
.header__label {
  display: inline-flex;
  align-items: center;
  column-gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: 2px solid #5E5E5E;
  margin-bottom: 2.4rem;
  border-radius: 1.2rem;
}
.header__label svg {
  width: 2.5rem;
  flex-shrink: 0;
}
.header__heading {
  margin-top: 0;
  margin-bottom: 2.4rem;
  padding-left: 2.4rem;
  border-left: 0.9rem solid #CD2927;
  text-align: left;
}
.header__text {
  font-size: 3.2rem;
  margin-bottom: 6rem;
  max-width: 91rem;
}

.tape-wrap {
  position: absolute;
  top: 2.6rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  height: 6.6rem;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #8E0104 4.38%, #B30004 28.85%, #E00B09 50.48%, #D21210 71.15%, #900104 92.01%);
}
.tape-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-tape.png") center center no-repeat;
  background-size: auto 100%;
  mix-blend-mode: overlay;
}
.tape-wrap .tape-text {
  display: inline-block;
  position: relative;
  width: auto;
  font-size: 3.2rem;
  font-weight: 700;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}
.tape-wrap .tape-text span {
  position: relative;
  display: inline-block;
  margin-right: 3.2rem;
  color: white;
}

.program {
  padding: 6.5rem 0;
}
.program__table {
  border-radius: 4rem;
  border: 1px solid #ffffff;
}
.program__table td {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 2rem;
  vertical-align: top;
}
.program__table td:last-child {
  border-right: 0;
  background: #A20200 !important;
}
.program__table td:nth-child(1) {
  width: 34rem;
}
.program__table td:nth-child(2) {
  width: 71rem;
}
.program__table td:nth-child(3) {
  width: 25rem;
}
.program__table td:nth-child(4) {
  width: 22rem;
}
.program__table tbody tr:last-child td {
  border-bottom: 0;
}
.program__table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4rem;
}
.program__table tbody tr:last-child td:last-child {
  border-radius: 0 0 4rem 0;
}
.program__table thead td {
  background: #484848;
  vertical-align: middle;
  font-size: 3rem;
}
.program__table thead td:last-child {
  font-weight: bold;
  border-radius: 0 4rem 0 0;
}
.program__table thead td:first-child {
  border-radius: 4rem 0 0 0;
}
.program__table-white {
  background: url("../images/bg-table.png") left bottom no-repeat #ffffff;
  background-size: 24rem 39rem;
  border: 1px solid #989898;
}
.program__table-white td {
  border-color: #989898;
  color: #181818;
}
.program__table-white td:last-child {
  color: white;
}
.program__table-white .program__list {
  margin-top: 3rem;
  padding: 0;
  margin-bottom: 1rem;
}
.program__table-white .program__list:before {
  display: none;
}
.program__table-white .program__title {
  font-size: 3.2rem;
  padding-left: 4.6rem;
}
.program__table-white tbody tr:last-child td:first-child {
  border-radius: 4rem 0 0 4rem;
}
.program__table-white tbody tr:last-child td:last-child {
  border-radius: 0 4rem 4rem 0;
}
.program__title {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0.5rem;
}
.program__list {
  margin: 0;
  padding: 1.6rem 0 1.6rem 4rem;
  list-style: none;
  position: relative;
}
.program__list:before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 0.4rem;
  background: #484848;
}
.program__list li {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  position: relative;
}
.program__list li:last-child {
  margin-bottom: 0;
}
.program__list li:before {
  content: "";
  position: absolute;
  left: -3.5rem;
  background: #181818;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 0.4rem solid #484848;
}
.program__list li:after {
  content: "";
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 0.4rem solid rgba(72, 72, 72, 0.5);
}
.program__price-old {
  margin-top: 3rem;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
}
.program__price-old:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: #CD2927;
  top: 50%;
  transform: translateY(-50%) rotate(-22deg);
}
.program__price-new {
  margin-top: 3rem;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  margin-left: 2.5rem;
}
.program__price-sale {
  position: relative;
  padding: 2.2rem 0.7rem 2rem 1.6rem;
  font-size: 2rem;
}
.program__price-none {
  margin-top: 4.5rem;
  margin-left: 5.5rem;
  width: 3.3rem;
  height: 0.2rem;
  background: white;
}
.program__round {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.program__label {
  position: absolute;
  padding: 1.2rem 4rem;
  background: white;
  color: #181818;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  top: 0;
  left: -2.3rem;
  white-space: nowrap;
}
.program__label:before {
  content: "";
  position: absolute;
  border: 0.7rem solid transparent;
  border-left-width: 1.1rem;
  border-right-width: 1.1rem;
  border-top-color: #838383;
  border-right-color: #838383;
  top: 100%;
  left: 0;
}
.program__with-label {
  position: relative;
}
.program__with-label .program__title {
  margin-top: 6.5rem;
}
.program__with-label .program__list {
  margin-top: 5.5rem;
}
.program__info {
  width: 3rem;
  flex-shrink: 0;
}
.program__arrow {
  width: 2.4rem;
  flex-shrink: 0;
}
.program__arrows {
  margin-top: 2.2rem;
  margin-bottom: 2.4rem;
  display: flex;
  justify-content: space-between;
  margin-left: 31.7rem;
  margin-right: 44.4rem;
}
.program__arrows svg {
  width: 5rem;
}
.program__subtitle {
  display: flex;
  align-items: center;
}
.program__subtitle svg {
  width: 4.6rem;
  flex-shrink: 0;
}
.program__name {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.program__name svg {
  width: 3rem;
}
.program__text {
  padding-left: 4.6rem;
}
.program__plus {
  margin: 2.4rem 0;
  font-size: 3rem;
  padding-left: 13rem;
}

.advantages {
  background: url("../images/bg2.png") bottom right no-repeat;
  background-size: contain;
}
.advantages__list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  gap: 6rem;
  margin-bottom: -5rem;
}
.advantages__list li {
  display: flex;
  page-break-inside: avoid;
  break-inside: avoid;
  font-size: 3.2rem;
  align-items: center;
  column-gap: 1.2rem;
  margin-bottom: 5rem;
}
.advantages__num {
  color: #8BDCFF;
  font-size: 6.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  width: 6rem;
  flex-shrink: 0;
  border-right: 0.5rem solid #5B5B5B;
}

.apply {
  background: url("../images/bg3.png") center center no-repeat;
  background-size: cover;
  padding-bottom: 8rem;
  padding-top: 4rem;
  position: relative;
}
.apply__heading {
  margin-bottom: 4rem;
}
.apply__form {
  width: 87rem;
  padding: 2rem;
  background: white;
  border-radius: 2rem;
  color: #181818;
}
.apply__form .form {
  margin-bottom: 2rem;
}
.apply__form .form-control {
  margin-bottom: 1.2rem;
}
.apply__form .form-input {
  height: 6.8rem;
  border-radius: 10rem;
  border: 1px solid #E4E4E4;
  background: #FAFAFA;
  font-size: 2rem;
  text-transform: uppercase;
}
.apply__form .form-btn {
  margin-top: 2rem;
  width: 100%;
}
.apply__title {
  font-size: 2.4rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}
.apply__label {
  position: absolute;
  z-index: 2;
  top: 48rem;
  right: 53rem;
  width: 29rem;
  height: 9rem;
  padding: 2rem;
  background: url("../images/bg-label.png") 0 0 no-repeat;
  background-size: 100% 100%;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #CD2927;
}
.apply__img {
  width: 75rem;
  position: absolute;
  bottom: 0;
  right: 20rem;
}
.apply__timer {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.2rem;
  text-align: center;
  line-height: 1;
  font-size: 4.8rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.apply__timer--num {
  display: flex;
  column-gap: 0.8rem;
}
.apply__timer--num span {
  border-radius: 4px;
  background: url("../images/bg-timer.png") 0 0 no-repeat;
  background-size: cover;
  width: 5.8rem;
  height: 7.8rem;
  text-align: center;
  font-size: 4rem;
  line-height: 7.8rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  overflow: hidden;
  box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.26);
}
.apply__timer--txt {
  font-size: 2rem;
  margin-top: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
}

@media screen and (min-width: 921px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 920px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .heading {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
  .btn {
    min-width: 100%;
    height: 11rem;
    font-size: 3.2rem;
  }
  .btn svg {
    width: 8.4rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-check__item {
    margin-bottom: 2rem;
    padding-left: 5.6rem;
    font-size: 2.4rem;
  }
  .list-check__item:before {
    width: 4rem;
    height: 4rem;
  }
  .form-bg {
    background: none;
    flex-direction: column;
    overflow: inherit;
  }
  .form-row {
    margin-bottom: 0.8rem;
    gap: 0.8rem;
  }
  .form-separator {
    display: none;
  }
  .form-input {
    height: 6.4rem;
    padding: 2.4rem;
    font-size: 2rem;
    border-radius: 10rem;
    border: 1px solid #BBBBC3;
    background: #FFFEFC;
  }
  .form-check {
    font-size: 2rem;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0.8rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form .error {
    font-size: 2rem;
  }
  .box {
    padding: 2rem 4rem;
  }
  .bg {
    background: url("../images/bg-mob.png") center top repeat;
  }
  .bg-silk {
    background: url("../images/bg-silk-mob.png") center top repeat-y;
    background-size: 100% auto;
  }
  .header {
    min-height: inherit;
    padding: 12rem 0 4rem;
    background: url("../images/bg1-mob.png") center bottom no-repeat;
    background-size: 100% auto;
  }
  .header:before {
    display: none;
  }
  .header__block {
    width: 100%;
  }
  .header__label {
    border: 1px solid #5E5E5E;
    margin-bottom: 1.6rem;
    border-radius: 0.8rem;
  }
  .header__label svg {
    width: 3.2rem;
  }
  .header__heading {
    margin-bottom: 1.6rem;
    padding-left: 0.8rem;
    font-size: 4rem;
  }
  .header__text {
    font-size: 2.8rem;
    margin-bottom: 20rem;
    max-width: 100%;
  }
  .tape-wrap {
    top: 3.2rem;
    height: 6rem;
  }
  .tape-wrap .tape-text {
    font-size: 2.8rem;
  }
  .tape-wrap .tape-text span {
    margin-right: 2rem;
  }
  .program {
    padding: 2.4rem 0;
  }
  .program__table {
    border-radius: 2.4rem;
    overflow: hidden;
    margin-bottom: 2.4rem;
  }
  .program__table-white {
    background: url("../images/bg-table-mob.png") right 11rem no-repeat #ffffff;
    background-size: 31rem 56rem;
    border: 1px solid #989898;
  }
  .program__table-white td {
    border-color: #989898;
    color: #181818;
  }
  .program__table-white td:last-child {
    color: white;
  }
  .program__table-white .program__row {
    border-color: #989898;
    color: #181818;
    padding: 2.4rem 4rem;
  }
  .program__table-white .program__head {
    border-color: #989898;
  }
  .program__table-white .program__price-item:last-child {
    border-color: #989898;
  }
  .program__table-white .program__list {
    margin-top: 0;
    margin-bottom: 0;
  }
  .program__table-white .program__list:before {
    display: none;
  }
  .program__table-white .program__title {
    font-size: 4rem;
  }
  .program__table-white tbody tr:last-child td:first-child {
    border-radius: 4rem 0 0 4rem;
  }
  .program__table-white tbody tr:last-child td:last-child {
    border-radius: 0 4rem 4rem 0;
  }
  .program__head {
    padding: 4rem;
    border-bottom: 1px solid #ffffff;
    font-size: 3.2rem;
    background: #484848;
  }
  .program__row {
    padding: 1.6rem 4rem;
    border-bottom: 1px solid #ffffff;
    height: 100%;
  }
  .program__title {
    font-size: 3.2rem;
    margin-top: 0.8rem;
  }
  .program__list {
    padding: 1.6rem 0 1.6rem 4rem;
    list-style: none;
    position: relative;
  }
  .program__list:before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 0.4rem;
    background: #484848;
  }
  .program__list li {
    margin-bottom: 3.2rem;
    font-size: 2.8rem;
    position: relative;
  }
  .program__list li:last-child {
    margin-bottom: 0;
  }
  .program__list li:before {
    background: #484848;
  }
  .program__price {
    display: flex;
  }
  .program__price-item {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }
  .program__price-item .program__row {
    border-bottom: none;
    text-align: center;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .program__price-item:last-child {
    background: #A20200;
    border-left: 1px solid #fff;
  }
  .program__price-item:last-child .program__head {
    background: none;
  }
  .program__price-old {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 3.2rem;
  }
  .program__price-old:after {
    height: 0.4rem;
  }
  .program__price-new {
    margin-top: 1rem;
    font-size: 4rem;
    margin-bottom: 1rem;
    margin-left: 0;
    color: white;
  }
  .program__price-sale {
    padding: 2.4rem 3.4rem;
    font-size: 2.8rem;
    color: white;
  }
  .program__price-none {
    margin-top: 1rem;
    margin-left: 0rem;
    margin-bottom: 1rem;
    width: 6rem;
    height: 0.4rem;
  }
  .program__round {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .program__label {
    position: static;
    padding: 0.8rem 4rem;
    background: white;
    color: #181818;
    font-size: 2.8rem;
    column-gap: 0.8rem;
    white-space: nowrap;
  }
  .program__label:before {
    display: none;
  }
  .program__info {
    width: 4rem;
  }
  .program__arrow {
    width: 3.2rem;
  }
  .program__arrows {
    margin-top: 0;
    margin-bottom: 2.4rem;
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .program__arrows svg {
    width: 6.4rem;
  }
  .program__subtitle {
    column-gap: 0.8rem;
  }
  .program__subtitle svg {
    width: 4rem;
  }
  .program__name {
    column-gap: 2.4rem;
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
  .program__name svg {
    width: 5.6rem;
  }
  .program__text {
    padding-left: 8rem;
    font-size: 2.4rem;
  }
  .program__plus {
    margin: 0.8rem 0;
    font-size: 2.8rem;
    padding-left: 26rem;
  }
  .advantages {
    background: none;
    padding: 4rem 0;
  }
  .advantages__heading {
    text-align: left;
  }
  .advantages__list {
    columns: 1;
    margin-bottom: 0;
  }
  .advantages__list li {
    flex-direction: column;
    font-size: 2.8rem;
    align-items: stretch;
    margin-bottom: 2.4rem;
  }
  .advantages__list li:last-child {
    margin-bottom: 0;
  }
  .advantages__num {
    font-size: 4.8rem;
    width: 4rem;
    border-right: 0;
    border-bottom: 0.4rem solid #5B5B5B;
    margin-bottom: 0.8rem;
  }
  .apply {
    background: url("../images/bg3-mob.png") top center no-repeat;
    background-size: 100% auto;
    padding-bottom: 4rem;
    padding-top: 50rem;
  }
  .apply__heading {
    margin-bottom: 4rem;
  }
  .apply__form {
    width: 100%;
    padding: 2.4rem;
    border-radius: 4rem;
  }
  .apply__form .form {
    margin-bottom: 1.6rem;
  }
  .apply__form .form-control {
    margin-bottom: 1.6rem;
  }
  .apply__form .form-input {
    height: 8rem;
    border-radius: 10rem;
    border: 1px solid #E4E4E4;
    background: #FAFAFA;
    font-size: 2.4rem;
  }
  .apply__form .form-btn {
    margin-top: 0;
    width: 100%;
  }
  .apply__title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
  }
  .apply__label {
    position: static;
    width: 44rem;
    height: 12rem;
    margin: 0 auto 2.4rem;
    padding: 2.4rem 4rem;
    background: url("../images/bg-label.png") 0 0 no-repeat;
    background-size: 100% 100%;
    font-size: 2.8rem;
  }
  .apply__img {
    display: none;
  }
  .apply__timer {
    column-gap: 2.4rem;
    font-size: 9.6rem;
  }
  .apply__timer--num {
    display: flex;
    column-gap: 0.8rem;
  }
  .apply__timer--num span {
    width: 7.2rem;
    height: 9.6rem;
    font-size: 8rem;
    line-height: 9.6rem;
  }
  .apply__timer--txt {
    font-size: 2.4rem;
    margin-top: 0.8rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
  background: #181818;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 920px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: white;
  border-color: white;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 920px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 920px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 920px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 920px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 920px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 920px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 920px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 920px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 920px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/

/*# sourceMappingURL=main.css.map */
