html {
  font-size: 1.25vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #0E0E0E;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-out;
  color: white;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

* {
  box-sizing: border-box;
}

html *,
html,
body *,
body {
  scrollbar-color: inherit !important;
  scrollbar-width: auto;
}
html *::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  box-shadow: none;
}

video,
img {
  vertical-align: top;
  height: auto;
}

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

.container {
  padding: 0 12rem;
  width: 100%;
}

.wrapper {
  overflow-x: hidden;
}

.no-br {
  white-space: nowrap;
}

.pad-bot {
  padding-bottom: 5rem;
}

.text--color {
  color: #9B0000;
}
.text--center {
  text-align: center;
}

.block--center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  gap: 2rem;
  outline: none;
  border: 0;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem 2rem 4rem;
  height: 7.4rem;
  font-size: 2.4rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: black;
  background: white;
  border-radius: 1.6rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.btn svg {
  width: 3rem;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: #C20000;
  color: white;
  text-decoration: none;
}
.btn:hover svg {
  transform: rotate(45deg);
}

.heading {
  font-size: 4rem;
  margin-bottom: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: normal;
  line-height: 1;
}

.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.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: #202020;
  position: relative;
  width: 82rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 1.6rem;
  border: 1px solid #8F8F8F;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.2);
  scrollbar-width: 2px;
}
.modal__content::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  display: block;
}
.modal__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  margin: 1.8rem;
}
.modal__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
.modal__content.text-content {
  background: #F1F1F1;
  width: 132rem;
  padding: 10rem 4rem;
  font-size: 3.2rem;
  color: #0E0E0E;
}
@media screen and (max-width: 1024px) {
  .modal__content.text-content {
    font-size: 2.6rem;
  }
}
.modal__content.text-content ol {
  line-height: 1.5;
  margin: 0;
}
.modal__content.text-content::-webkit-scrollbar {
  height: 20px;
  width: 20px;
}
.modal__content.text-content::-webkit-scrollbar-track {
  background: rgba(14, 14, 14, 0.1);
  margin: 3rem;
  box-shadow: inset -15px 0 0 0 #F1F1F1;
}
.modal__content.text-content::-webkit-scrollbar-thumb {
  background: rgba(14, 14, 14, 0.2);
  box-shadow: inset -15px 0 0 0 #F1F1F1;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 22vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 4rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .modal__close {
    top: 4rem;
    width: 4rem;
    height: 4rem;
  }
}
.modal__heading {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  font-size: 3.6rem;
  line-height: 1;
  position: relative;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__heading {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
}
.modal__text {
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    margin-bottom: 4.8rem;
  }
}
.modal__timer {
  font-size: 3.2rem;
  line-height: 1;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .modal__timer {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
  .modal__timer .js-timer__days--num {
    font-size: 6.4rem;
  }
}
.modal__timer .js-timer__days--txt {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .modal__timer .js-timer__days--txt {
    font-size: 2.8rem;
  }
}

.form-control {
  position: relative;
  margin-bottom: 1.2rem;
}
.form .error {
  color: red;
  font-size: 1.6rem;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-check {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
.form-check svg {
  width: 2rem;
}
.form-input {
  background: #B4B4B4;
  border: none;
  box-shadow: none;
  border-radius: 1.6rem;
  padding: 2rem 4rem;
  height: 6.8rem;
  font-size: 2rem;
  line-height: 1;
  color: #666666;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-btn {
  min-width: 100%;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}

.grecaptcha-badge {
  display: none !important;
}

.language {
  position: fixed;
  z-index: 100;
  top: 3rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #333;
  color: white;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 10rem;
    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 tape1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes tape2 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tape3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape4 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@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;
    position: relative;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 1s, transform 0.6s ease-out 1s;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 2s, transform 0.6s ease-out 2s;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 2.5s, transform 0.6s ease-out 2.5s;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 3s, transform 0.6s ease-out 3s;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 3.5s, transform 0.6s ease-out 3.5s;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 4s, transform 0.6s ease-out 4s;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 4.5s, transform 0.6s ease-out 4.5s;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 5s, transform 0.6s ease-out 5s;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 5.5s, transform 0.6s ease-out 5.5s;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 6s, transform 0.6s ease-out 6s;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.from-bottom {
    transform: translateY(200px);
  }
  .js-animate.zoom-in {
    transform: scale(0.5);
  }
  .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%;
  }
}
.navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 1.6rem 1.6rem;
  border-bottom: 1px solid #484848;
  background: rgba(51, 51, 51, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navigation__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
}
.navigation__logo img {
  width: 8rem;
}
.navigation__menu {
  display: flex;
  gap: 3.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.navigation__menu li {
  font-size: 2.4rem;
}
.navigation__btn {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navigation__timer {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.navigation__timer--days {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.navigation__timer--days .js-timer__days--num {
  font-size: 4rem;
}

.bg__gray {
  background: #333;
}
.bg__black {
  background: #0E0E0E;
}

.btn-play {
  padding: 2.6rem 4rem;
  cursor: pointer;
  border-radius: 1.6rem;
  background: rgba(239, 239, 239, 0.2);
  transition: background 0.3s ease-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  white-space: nowrap;
  gap: 2rem;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: white;
}
.btn-play svg {
  width: 1.7rem;
  flex-shrink: 0;
}
.btn-play .play {
  display: none;
}
.btn-play.off {
  opacity: 1;
}
.btn-play.off .pause {
  display: none;
}
.btn-play.off .play {
  display: block;
}

.header {
  padding-top: 14rem;
  padding-bottom: 10rem;
  background: url("../images/bg1.webp") center top no-repeat #0E0E0E;
  background-size: 100% auto;
  border-radius: 0 0 5rem 5rem;
}
.header .container {
  min-height: calc(100vh - 24rem);
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  position: relative;
}
.header__subheading {
  font-size: 3.2rem;
  font-weight: 600;
}
.header__heading {
  font-size: 12.5rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.header__text {
  font-weight: 500;
}
.header__btn {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.2rem;
}
.header__start {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__start svg {
  width: 2.4rem;
}
.header__label {
  position: absolute;
  bottom: 0;
  right: 18rem;
  padding: 2rem;
  border-radius: 1.6rem;
  font-size: 2rem;
  font-weight: 500;
  border: 1px solid white;
}

.subject {
  padding-top: 13rem;
  padding-bottom: 3rem;
}
.subject__heading {
  text-align: center;
}
.subject__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.subject__item {
  margin: -2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48.5rem;
  height: 48.5rem;
  padding: 6.4rem;
  font-size: 3.2rem;
  text-align: center;
  border: 1px solid white;
  border-radius: 50%;
}

.title {
  border-radius: 5rem;
}
.title__text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  font-size: 5.6rem;
  text-transform: uppercase;
  height: 62rem;
}

.program {
  padding: 9rem 0;
  border-radius: 5rem 5rem 0 0;
  background: #0E0E0E;
}
.program__block {
  display: flex;
}
.program__col1 {
  width: 60rem;
  flex-shrink: 0;
}
.program__title {
  background: #333;
  border-radius: 1.6rem;
  position: relative;
  height: 20rem;
  display: flex;
  align-items: center;
  font-size: 3.6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  padding: 5rem;
}
.program__arrow {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 8rem;
  margin-top: -4rem;
  margin-left: -4rem;
}
.program__info {
  padding: 2rem 3rem 0 5rem;
}
.program__text {
  margin-bottom: 2rem;
}
.program__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.program__list li {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.program__list li svg {
  width: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.8rem;
}
.program__heading {
  display: flex;
  height: 20rem;
  align-items: center;
  padding: 2rem;
  margin-bottom: 0;
}
.program__video {
  position: relative;
  cursor: pointer;
}
.program__video video {
  width: 100%;
  border-radius: 1.6rem;
}
.program__video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, rgba(51, 51, 51, 0) 70%, #333 90%);
}
.program__video:hover .btn-play {
  opacity: 1;
}

.tracy {
  padding: 8rem 0;
  border-radius: 5rem;
  background: white;
  color: #0E0E0E;
}
.tracy__block {
  display: flex;
}
.tracy__col1 {
  width: 96rem;
  flex-shrink: 0;
}
.tracy__heading {
  display: flex;
  align-items: center;
  height: 11rem;
  margin-bottom: 0;
}
.tracy__video {
  position: relative;
  cursor: pointer;
}
.tracy__video video {
  width: 100%;
  border-radius: 1.6rem;
}
.tracy__video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(59deg, rgba(0, 0, 0, 0) 78.01%, #0E0E0E 92.9%);
}
.tracy__video:hover .btn-play {
  opacity: 1;
}
.tracy__title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #0E0E0E;
  color: white;
  border-radius: 1.6rem;
  height: 11rem;
  position: relative;
  font-size: 3.6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.tracy__arrow {
  position: absolute;
  top: 100%;
  left: 0;
  margin-left: -4rem;
  margin-top: -4rem;
  width: 8rem;
}
.tracy__text {
  padding-top: 3rem;
  padding-left: 4rem;
  font-size: 2.6rem;
}

.result {
  padding: 7rem 0;
}
.result__block {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.result__item {
  background: #333;
  border-radius: 1.6rem;
  padding: 4rem;
  height: 28rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.result__num {
  margin-bottom: auto;
  font-size: 9.6rem;
  line-height: 1;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  color: #484848;
}
.result__title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  font-size: 4rem;
}
.result__item1 {
  width: 40%;
}
.result__item2 {
  width: calc(60% - 4rem);
}
.result__item3 {
  width: 100%;
}
.result__item4 {
  width: 57%;
}
.result__item5 {
  width: calc(43% - 4rem);
}

.reviews {
  padding-top: 10rem;
}
.reviews__heading {
  text-align: center;
}
.reviews__block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.reviews__item {
  width: calc((100% - 1.6rem) / 3);
  padding: 2rem;
  background: white;
  color: #0E0E0E;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.reviews__img {
  position: relative;
}
.reviews__img img {
  width: 100%;
}
.reviews__info {
  left: 2rem;
  bottom: 2rem;
  position: absolute;
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
}
.reviews__name {
  margin-bottom: 1rem;
  text-transform: none;
}
.reviews__title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.reviews__text {
  font-size: 2rem;
  color: #5D5D5D;
}
.reviews__separator {
  height: 1px;
  width: 100%;
  background: #E4E4E4;
}

.steps {
  padding-top: 10rem;
  border-radius: 5rem 5rem 0 0;
}
.steps__heading {
  text-align: center;
}
.steps__blocks {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.steps__block {
  width: 100%;
  padding: 2rem 2rem 2rem 4rem;
  background: #0E0E0E;
  border: 1px solid #8F8F8F;
  gap: 6rem;
  display: flex;
  align-items: center;
  border-radius: 1.6rem;
}
.steps__img {
  width: 83rem;
  flex-shrink: 0;
}
.steps__item {
  width: calc(50% - 0.4rem);
  min-height: 49rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  color: #0E0E0E;
  border-radius: 1.6rem;
  padding: 4rem;
}
.steps__item.gray {
  background: #333;
  border: 1px solid #8F8F8F;
  color: white;
}
.steps__item.black {
  background: #0E0E0E;
  border: 1px solid #8F8F8F;
  color: white;
}
.steps__title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  font-size: 3.2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.theme {
  padding: 10rem 0;
  background: white;
  border-radius: 5rem;
  color: #0E0E0E;
  margin-top: -5rem;
}
.theme__heading {
  text-align: center;
  margin-bottom: 1.2rem;
}
.theme__text {
  margin-bottom: 2rem;
  text-align: center;
}
.theme__block {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.theme__item {
  position: relative;
  background: #F1F1F1;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid #CECECE;
}
.theme__item.open .theme__list {
  display: block;
}
.theme__item.open .theme__more .close {
  display: block;
}
.theme__item.open .theme__more .open {
  display: none;
}
.theme__more {
  position: absolute;
  width: 6rem;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.theme__more .close {
  display: none;
}
.theme__label {
  margin: 0.6rem 0 1.8rem -2rem;
  background: linear-gradient(90deg, #1A1A1A 0%, #555 100%);
  color: white;
  padding: 1.2rem;
  font-size: 2.4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0 1.6rem 1.6rem 0;
}
.theme__title {
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.theme__list {
  margin: 1.2rem 0 0 0;
  padding-left: 4rem;
  font-size: 2.2rem;
  display: none;
}

.about {
  padding: 20rem 0;
  background: url("../images/bg2.webp") center center no-repeat;
  background-size: cover;
}
.about__heading {
  margin-bottom: 1.2rem;
}
.about__subheading {
  font-size: 3.2rem;
  margin-bottom: 6rem;
}
.about__block {
  width: 65rem;
}
.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.about__list li:last-child {
  margin-bottom: 0;
}
.about__list li:before {
  content: "";
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  background: #6B6B6B;
}

.price {
  padding-bottom: 10rem;
}
.price__heading {
  text-align: center;
  margin-bottom: 2rem;
}
.price__box {
  background: white;
  padding: 0.8rem;
  border-radius: 3.2rem;
  margin-bottom: 4rem;
}
.price__head {
  display: flex;
  justify-content: stretch;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0.8rem 0;
  color: #0E0E0E;
  text-align: center;
}
.price__name {
  flex-basis: 33%;
}
.price__separator {
  width: 2px;
  flex-shrink: 0;
  height: 6rem;
  background: #ABABAB;
}
.price__block {
  border-radius: 2.4rem;
  background: #0E0E0E;
  overflow: hidden;
  display: flex;
  gap: 1.2rem;
}
.price__item {
  width: calc((100% - 2.4rem) / 3);
  padding: 4rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #0E0E0E 0%, #282828 55.29%, #0E0E0E 100%);
}
.price__title {
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-align: center;
  margin-bottom: 3.2rem;
  line-height: 1;
  text-transform: uppercase;
}
.price__list {
  margin: 0 0 2.4rem;
  padding: 0;
  list-style: none;
}
.price__list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 0.8rem;
  gap: 1.2rem;
}
.price__list li svg {
  width: 5rem;
}
.price__list li:last-child {
  margin-bottom: 0;
}
.price__result {
  display: flex;
  align-items: start;
  font-weight: 500;
  padding-bottom: 12rem;
  gap: 1.2rem;
}
.price__result svg {
  width: 5rem;
  flex-shrink: 0;
}
.price__sale {
  position: absolute;
  bottom: 0;
  left: 42%;
  transform: translateX(-50%) rotate(-16deg);
  width: 150%;
  text-align: center;
  background: white;
  padding: 0.8rem;
  padding-left: 40%;
  color: #0E0E0E;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}
.price__btn {
  display: inline-flex;
  background: #202020;
  border-radius: 1.6rem;
  padding: 2rem;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.faqs {
  padding: 10rem 0;
  border-radius: 5rem;
  background: #333;
}
.faqs__block {
  margin-bottom: 2.4rem;
}
.faqs__heading {
  text-align: center;
}
.faqs__item {
  border-bottom: 1px solid #434343;
  margin-bottom: 4rem;
}
.faqs__item.open .faqs__text {
  display: block;
}
.faqs__item.open .faqs__more .close {
  display: block;
}
.faqs__item.open .faqs__more .open {
  display: none;
}
.faqs__title {
  display: flex;
  gap: 4rem;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 3.2rem;
  align-items: center;
  cursor: pointer;
}
.faqs__more {
  width: 6rem;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faqs__more .close {
  display: none;
}
.faqs__text {
  max-width: 125rem;
  padding: 0 6rem;
  margin-bottom: 3.2rem;
  display: none;
}
.faqs__num {
  font-size: 4.8rem;
  color: #7C7C7C;
}
.faqs__btn {
  display: inline-flex;
  background: #202020;
  border-radius: 1.6rem;
  padding: 2rem;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.apply {
  padding-top: 10rem;
}
.apply__block {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.apply__img {
  width: 82rem;
  flex-shrink: 0;
  position: relative;
}
.apply__img img {
  width: 100%;
}
.apply__quote {
  border-radius: 8px;
  border: 1px solid #FFF;
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(25px);
  padding: 2rem;
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  bottom: 4rem;
  left: 5rem;
  right: 5rem;
}
.apply__quote svg {
  width: 4rem;
  position: absolute;
  top: -2.7rem;
  left: 2rem;
}
.apply__box {
  border-radius: 1.6rem;
  border: 1px solid #8F8F8F;
  background: #202020;
  padding: 4rem;
}

@media screen and (min-width: 1025px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .pad-bot {
    padding-bottom: 9rem;
  }
  .main__section {
    padding: 4rem 0;
  }
  .main__section--left {
    padding: 4rem 2rem;
    flex-direction: column-reverse;
    align-items: start;
  }
  .main__section--right {
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: start;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }
  .btn {
    min-width: 100%;
    height: 10rem;
    font-size: 3.2rem;
    padding: 2rem 4rem;
    background: #C20000;
    color: white;
  }
  .btn svg {
    width: 5rem;
    transform: rotate(45deg);
  }
  .form-control {
    margin-bottom: 1.6rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.4rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 9rem;
    font-size: 2.4rem;
  }
  .form-btn {
    font-size: 3.2rem;
    height: 10rem;
    margin-top: 0.8rem;
  }
  .navigation {
    border-radius: 0;
  }
  .navigation__block {
    height: 8rem;
  }
  .navigation__logo img {
    width: 6.4rem;
  }
  .navigation__menu {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 10rem;
  }
  .navigation__menu li {
    font-size: 4rem;
  }
  .navigation__menu--btn {
    width: 5.2rem;
    height: 5.2rem;
    cursor: pointer;
    position: relative;
  }
  .navigation__menu--btn span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1rem;
  }
  .navigation__menu--btn span:before, .navigation__menu--btn span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    top: -6px;
    border-radius: 1rem;
    transition: all 0.3s ease-out;
  }
  .navigation__menu--btn span:after {
    top: 6px;
  }
  .navigation__menu--btn.open span {
    height: 0;
    background: none;
  }
  .navigation__menu--btn.open span:before, .navigation__menu--btn.open span:after {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  .navigation__menu--btn.open span:after {
    transform: rotate(-45deg);
  }
  .navigation__popup {
    position: fixed;
    top: 8rem;
    left: 0;
    background: #0E0E0E;
    width: 100%;
    padding: 4rem;
    min-height: calc(100vh - 8rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  .navigation__popup.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navigation__timer {
    gap: 2rem;
    font-size: 3.2rem;
  }
  .navigation__timer--days {
    font-size: 3.2rem;
  }
  .navigation__timer--days .js-timer__days--num {
    font-size: 3.2rem;
  }
  .navigation__timer--days .js-timer__days--txt {
    font-size: 2rem;
  }
  .btn-play {
    padding: 2.6rem 4rem;
    cursor: pointer;
    border-radius: 1.6rem;
    background: rgba(239, 239, 239, 0.2);
    transition: background 0.3s ease-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    white-space: nowrap;
    gap: 2rem;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    color: white;
  }
  .btn-play svg {
    width: 1.7rem;
    flex-shrink: 0;
  }
  .btn-play .play {
    display: none;
  }
  .btn-play.off {
    opacity: 1;
  }
  .btn-play.off .pause {
    display: none;
  }
  .btn-play.off .play {
    display: block;
  }
  .header {
    padding-top: 10rem;
    padding-bottom: 7rem;
    background: url("../images/bg1-mob.webp") center top no-repeat #0E0E0E;
    background-size: 100% auto;
  }
  .header .container {
    min-height: calc(100vh - 24rem);
    display: block;
    gap: 0;
  }
  .header__subheading {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .header__heading {
    font-size: 11rem;
    margin-bottom: 52rem;
  }
  .header__text {
    margin-bottom: 2.4rem;
  }
  .header__btn {
    gap: 1.6rem;
    font-size: 3.2rem;
  }
  .header__start {
    gap: 0.8rem;
  }
  .header__start svg {
    width: 3.2rem;
  }
  .header__label {
    position: static;
    padding: 1.6rem;
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }
  .subject {
    padding-top: 9rem;
    padding-bottom: 3rem;
  }
  .subject__heading {
    margin-bottom: 3rem;
  }
  .subject__item {
    margin: -1rem;
    width: 38rem;
    height: 38rem;
    padding: 2.4rem;
    font-size: 3.2rem;
  }
  .title {
    border-radius: 5rem;
  }
  .title__text {
    min-height: 36rem;
    height: inherit;
    padding: 3rem 1rem;
  }
  .program {
    padding: 9rem 0 0 0;
  }
  .program__block {
    flex-direction: column-reverse;
  }
  .program__col1 {
    width: 100%;
  }
  .program__title {
    font-size: 4rem;
    text-align: center;
    justify-content: center;
  }
  .program__arrow {
    position: static;
    width: 16rem;
    margin-top: 0;
    margin-left: 0;
    display: block;
  }
  .program__info {
    padding: 4rem 2rem 0 0;
  }
  .program__text {
    margin-bottom: 2.4rem;
  }
  .program__text b {
    font-size: 3.2rem;
  }
  .program__list li {
    gap: 1.6rem;
    margin-bottom: 3.2rem;
  }
  .program__list li:last-child {
    margin-bottom: 0;
  }
  .program__list li svg {
    width: 2.4rem;
    margin-top: 0.6rem;
  }
  .program__video {
    margin-top: -1px;
  }
  .program__video:after {
    background: linear-gradient(0deg, rgba(51, 51, 51, 0) 71.58%, #333 100%);
    border-radius: 1.6rem;
  }
  .tracy {
    padding: 9rem 0;
  }
  .tracy__block {
    flex-direction: column;
  }
  .tracy__col1 {
    width: 100%;
  }
  .tracy__heading {
    height: inherit;
    margin-bottom: 2rem;
  }
  .tracy__video {
    margin-top: -1px;
  }
  .tracy__video:after {
    background: linear-gradient(0deg, rgba(14, 14, 14, 0) 71.58%, #0E0E0E 100%);
    border-radius: 1.6rem;
  }
  .tracy__title {
    height: 10rem;
    font-size: 4rem;
  }
  .tracy__arrow {
    position: static;
    margin-left: 0;
    margin-top: 0;
    width: 16rem;
  }
  .tracy__text {
    padding-top: 2rem;
    padding-left: 0;
    font-size: 3.2rem;
  }
  .result {
    padding: 9rem 0;
  }
  .result__block {
    gap: 4rem;
  }
  .result__item {
    padding: 2.4rem;
    height: inherit;
    gap: 1rem;
    width: 100% !important;
  }
  .result__num {
    margin-bottom: 5rem;
    font-size: 8rem;
  }
  .result__title {
    font-size: 3.8rem;
  }
  .reviews {
    padding-top: 10rem;
    padding-bottom: 0;
  }
  .reviews__heading {
    text-align: center;
  }
  .reviews__block {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
  }
  .reviews__block .slick-list {
    overflow: visible;
  }
  .reviews__block .slick-slide {
    padding: 0 1rem;
  }
  .reviews__block .slick-arrow {
    position: absolute;
    top: -11rem;
    width: 9rem;
    right: 0;
  }
  .reviews__block .arrow-left {
    right: 9rem;
  }
  .reviews__block .slick-disabled {
    opacity: 0.6;
  }
  .reviews__scroll {
    height: 9rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    color: #5D5D5D;
    text-transform: uppercase;
  }
  .reviews__img {
    margin-bottom: 2rem;
  }
  .reviews__img img {
    width: 100%;
  }
  .reviews__info {
    font-size: 3.2rem;
  }
  .reviews__title {
    font-size: 2.8rem;
  }
  .reviews__text {
    font-size: 2.8rem;
  }
  .reviews__separator {
    margin: 2.4rem 0;
  }
  .steps {
    padding-top: 9rem;
  }
  .steps__blocks {
    gap: 2rem;
  }
  .steps__block {
    padding: 2.4rem;
    gap: 2.4rem;
    flex-direction: column;
    align-items: stretch;
  }
  .steps__img {
    width: 100%;
  }
  .steps__item {
    width: 100%;
    min-height: inherit;
    padding: 2.4rem;
  }
  .steps__title {
    font-size: 4rem;
  }
  .steps__text {
    font-size: 3.2rem;
  }
  .theme {
    padding: 9rem 0;
  }
  .theme__heading {
    margin-bottom: 2rem;
  }
  .theme__item {
    padding: 2.4rem;
  }
  .theme__more {
    width: 8rem;
    top: 2.4rem;
    right: 2.4rem;
  }
  .theme__label {
    margin: 0 0 2.4rem -2.4rem;
    padding: 2.4rem;
    font-size: 4rem;
  }
  .theme__title {
    font-size: 4rem;
  }
  .theme__list {
    margin: 2rem 0 0 0;
    padding-left: 4rem;
    font-size: 2.8rem;
  }
  .about {
    padding: 9rem 0 4rem;
    background: url("../images/bg2-mob.webp") center center no-repeat;
    background-size: 100% auto;
  }
  .about__heading {
    margin-bottom: 2rem;
  }
  .about__subheading {
    font-size: 4rem;
    margin-bottom: 70rem;
  }
  .about__block {
    width: 100%;
  }
  .about__list li {
    gap: 1.6rem;
  }
  .about__list li:before {
    width: 2rem;
    height: 2rem;
  }
  .price {
    padding-bottom: 9rem;
  }
  .price__heading {
    margin-bottom: 4rem;
  }
  .price__box {
    padding: 1.6rem;
    border-radius: 1.6rem;
    margin-bottom: 2rem;
  }
  .price__name {
    flex-basis: 100%;
  }
  .price__block {
    border-radius: 0.8rem;
  }
  .price__item {
    width: 100%;
    padding: 2.4rem;
  }
  .price__title {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  .price__list {
    margin: 0 0 2rem;
  }
  .price__list li {
    margin-bottom: 2rem;
    gap: 1.6rem;
  }
  .price__list li:last-child {
    margin-bottom: 0;
  }
  .price__result {
    padding-bottom: 16rem;
    gap: 1.6rem;
  }
  .price__result:last-child {
    padding-bottom: 0;
  }
  .price__sale {
    padding: 1.6rem;
    padding-left: 40%;
    font-size: 3.2rem;
  }
  .price__btn {
    flex-direction: column;
    padding: 2.4rem;
    gap: 2.4rem;
  }
  .faqs {
    padding: 9rem 0;
  }
  .faqs__heading {
    margin-bottom: 4rem;
  }
  .faqs__block {
    margin-bottom: 4rem;
  }
  .faqs__item {
    margin-bottom: 4.8rem;
  }
  .faqs__title {
    gap: 2.4rem;
    font-size: 4rem;
    margin-bottom: 4rem;
    min-height: 8rem;
  }
  .faqs__more {
    width: 8rem;
  }
  .faqs__more svg {
    width: 8rem;
    flex-shrink: 0;
  }
  .faqs__text {
    max-width: inherit;
    padding: 0 6rem;
    margin-bottom: 4rem;
  }
  .faqs__num {
    font-size: 6.4rem;
  }
  .faqs__btn {
    flex-direction: column;
    padding: 2.4rem;
    gap: 2.4rem;
  }
  .apply {
    padding-top: 9rem;
  }
  .apply__block {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 3.2rem;
  }
  .apply__img {
    width: 100%;
    padding-bottom: 10rem;
  }
  .apply__quote {
    padding: 2.4rem;
    font-size: 2.8rem;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .apply__quote svg {
    width: 8rem;
    position: absolute;
    top: -5.4rem;
    left: 2.4rem;
  }
  .apply__box {
    padding: 2.4rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.1;
  background: #0E0E0E;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .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: #ff6868;
  border-color: #ff6868;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
.footer .container {
  padding: 0 16rem;
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .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: 1024px) {
  .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: 1024px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/

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