html {
  font-size: 1.3vw;
  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.51vw;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  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;
}

* {
  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;
}

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

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

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

.slick-list {
  cursor: grab;
}

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

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

.text--color {
  color: #FFC56D;
}
.text--center {
  text-align: center;
}

.btn {
  display: flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 2.4rem 4rem;
  height: 9.6rem;
  font-size: 4.8rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  color: #0E0E0E;
  background: radial-gradient(107.26% 50% at 50% 50%, #FFFFBF 0%, #DCC282 51.92%, #B49D6B 100%);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.btn img {
  width: 4rem;
}
.btn svg {
  width: 7.6rem;
}

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

.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: #FFC56D;
  box-shadow: 0 0 5px #FFC56D;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: item;
}
.list-num__item {
  margin-bottom: 2rem;
  height: 9rem;
  padding: 1.5rem 5rem 1.5rem 12.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #FFC56D;
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.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.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 4rem 2.4rem 2.4rem;
  background: url("../images/bg-popup.webp") center center no-repeat #fff;
  background-size: cover;
  position: relative;
  width: 59rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 20vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 10;
}
.modal__title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
  margin-bottom: 1.2rem;
  color: #0E0E0E;
}
@media screen and (max-width: 1024px) {
  .modal__title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
  }
}
.modal__text {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    font-size: 2.8rem;
  }
}

.form {
  text-align: center;
}
.form .placeholder {
  font-size: 2.4rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 2rem;
  transition: all 0.3s ease-out;
  pointer-events: none;
  color: #fff;
}
.form-control {
  position: relative;
  margin-bottom: 1.2rem;
}
.form-control.active .placeholder {
  top: 0;
  font-size: 2rem;
}
.form .error {
  color: red;
  font-size: 2rem;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
}
.form-input {
  background: transparent;
  border: 1px solid #AEAEAE;
  padding: 1.2rem;
  height: 6rem;
  font-size: 2rem;
  line-height: 1;
  color: #7b7b7b;
  border-radius: 0.8rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  -webkit-box-shadow: inset 0 0 0 50px white;
  -webkit-text-fill-color: #7b7b7b;
}
.form-input.err {
  color: red;
  -webkit-text-fill-color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-input:focus {
  outline: none;
}
.form-btn {
  width: 100%;
  min-width: 100%;
  margin-top: 1.2rem;
  padding: 1.2rem;
  height: 5.6rem;
  font-size: 3.2rem;
}
.form__agreement {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}
.form__checkbox {
  width: 2rem;
  flex-shrink: 0;
}
.form__checkbox svg {
  width: 100%;
}

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

.language {
  position: fixed;
  z-index: 100;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #3F3F3F;
  color: white;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 1.7rem;
    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;
  }
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #FFC56D !important;
  border-width: 2px !important;
}

.compensate-for-scrollbar {
  padding-right: 0 !important;
}

img[loading=lazy] {
  background: url("../images/loader.png") center center no-repeat;
}

.video {
  position: relative;
  display: block;
}
.video:hover .play {
  background: white;
  color: #0E0E0E;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: rgba(239, 239, 239, 0.2);
  backdrop-filter: blur(10px);
  padding: 2.6rem 4rem;
  display: inline-flex;
  align-items: center;
  column-gap: 2rem;
  height: 8rem;
  font-weight: bold;
  transition: all 0.3s ease-out;
  color: #f8f8f8;
  white-space: nowrap;
}
.btn-play svg {
  width: 2.4rem;
  flex-shrink: 0;
}
.btn-play svg path {
  stroke: currentColor;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape-back {
  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;
  }
}
.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.1s, transform 0.6s ease-out 0.1s;
}
.js-animate.animate--delay-2 {
  transition: all 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.js-animate.animate--delay-3 {
  transition: all 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}
.js-animate.animate--delay-4 {
  transition: all 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
.js-animate.animate--delay-5 {
  transition: all 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}
.js-animate.animate--delay-6 {
  transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}
.js-animate.animate--delay-7 {
  transition: all 0.6s ease-out 0.7s, transform 0.6s ease-out 0.7s;
}
.js-animate.animate--delay-8 {
  transition: all 0.6s ease-out 0.8s, transform 0.6s ease-out 0.8s;
}
.js-animate.animate--delay-9 {
  transition: all 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
}
.js-animate.animate--delay-10 {
  transition: all 0.6s ease-out 1s, transform 0.6s ease-out 1s;
}
.js-animate.animate--delay-11 {
  transition: all 0.6s ease-out 1.1s, transform 0.6s ease-out 1.1s;
}
.js-animate.animate--delay-12 {
  transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
}
.js-animate.animate--delay-13 {
  transition: all 0.6s ease-out 1.3s, transform 0.6s ease-out 1.3s;
}
.js-animate.animate--delay-14 {
  transition: all 0.6s ease-out 1.4s, transform 0.6s ease-out 1.4s;
}
.js-animate.animate--delay-15 {
  transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
}
.js-animate.animate--delay-16 {
  transition: all 0.6s ease-out 1.6s, transform 0.6s ease-out 1.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%;
}

.js-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.js-video video {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.js-video__play {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2.6rem 4rem;
  align-items: center;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: bold;
}
.js-video__play svg {
  width: 2.4rem;
  height: 2.4rem;
}
.js-video__play .play {
  display: none;
}
.js-video__play.off {
  opacity: 1;
}
.js-video__play.off .pause {
  display: none;
}
.js-video__play.off .play {
  display: block;
}

.header {
  background: url("../images/bg1.webp") center center no-repeat;
  background-size: cover;
  color: white;
  padding: 10rem 0;
}
.header__block {
  width: 94rem;
}
.header__subheading {
  font-size: 2.4rem;
  margin-bottom: 5.6rem;
}
.header__heading {
  font-size: 8rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
.header__slogan {
  font-size: 5.6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5.6rem;
}
.header__list {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 5.6rem;
}
.header__list svg {
  width: 2rem;
  flex-shrink: 0;
}
.header__list ul {
  list-style: none;
  padding: 0.6rem 0 0 0;
  margin: 0;
}
.header__list ul li {
  margin-bottom: 1.1rem;
  font-size: 2.4rem;
}
.header__list ul li:last-child {
  margin-bottom: 0;
}
.header__btn {
  position: relative;
}
.header__label {
  position: absolute;
  width: 24rem;
  bottom: -4rem;
  right: -4rem;
}

.tape-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #EB5631 1.7%, #C77146 98.54%);
  z-index: 2;
  height: 6.6rem;
  display: flex;
  align-items: center;
}
.tape-wrap .tape-text {
  display: inline-block;
  width: auto;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}
.tape-wrap .tape-text span {
  position: relative;
  display: inline-block;
  margin-right: 7rem;
}
.tape-wrap .tape-text span:after {
  content: "";
  position: absolute;
  right: -4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: white;
  top: 50%;
  transform: translateY(-50%);
}
.tape-wrap.tape-inverse {
  top: auto;
  bottom: 0;
}
.tape-wrap.tape-inverse .tape-text {
  animation: tape-inverse 36s linear infinite;
}

.program {
  background: url("../images/bg2.webp") top center no-repeat #0E0E0E;
  background-size: 100% auto;
  padding: 15rem 0;
}
.program__box {
  margin-left: 78rem;
  padding: 2.4rem;
  border-radius: 8px;
  background: white;
  color: #0E0E0E;
}
.program__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.program__list li {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: bold;
}
.program__list li:last-child {
  margin-bottom: 0;
}
.program__list li svg {
  width: 7rem;
  flex-shrink: 0;
}

.theme__block {
  display: flex;
  gap: 4rem;
}
.theme__box {
  width: 87rem;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #2C2C2C;
  background: #171717;
  box-shadow: 0 0 12px 0 rgba(188, 167, 91, 0.1);
  padding: 4rem;
}
.theme__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: theme;
}
.theme__list li {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  counter-increment: theme;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.theme__list li:last-child {
  margin-bottom: 0;
}
.theme__list li:before {
  content: counter(theme, decimal-leading-zero);
  width: 3rem;
  flex-shrink: 0;
  font-size: 3.6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  color: #FFC56D;
}
.theme__img {
  width: 100%;
  margin-bottom: 1.2rem;
}
.theme__title {
  background: white;
  color: #0E0E0E;
  padding: 2.4rem;
  border-radius: 8px;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  margin-bottom: 1.2rem;
}

.bonus {
  position: relative;
}
.bonus__block {
  width: 100rem;
}
.bonus__box {
  background: white;
  border-radius: 8px;
  padding: 4rem;
  margin-bottom: 1.2rem;
  color: #0E0E0E;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
}
.bonus__img {
  position: absolute;
  width: 68rem;
  top: 0;
  right: 20rem;
}

.ai__block {
  margin-top: 3rem;
  display: flex;
  gap: 6rem;
  align-items: end;
}
.ai__heading {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 3.2rem;
}
.ai__box {
  padding: 2.4rem 1.6rem;
  border-radius: 8px;
  color: #402E13;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.ai__box-1 {
  background: #FFF7EB;
}
.ai__box-2 {
  background: #FFE8C4;
}
.ai__box-3 {
  background: #FFC56D;
}
.ai__line {
  padding-left: 1.6rem;
  border-left: 5px solid #FFC56D;
}
.ai__line-1 {
  border-left-color: #FFB84C;
}
.ai__line-2 {
  border-left-color: #FF9F0E;
}
.ai__line-3 {
  border-left-color: #995C00;
}
.ai__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.ai__btn {
  margin-top: 2rem;
}
.ai__video {
  border-radius: 8px;
  border: 8px solid #FFC56D;
  width: 55rem;
  flex-shrink: 0;
}
.ai__video video {
  vertical-align: top;
  display: block;
}

.footer {
  border-top: 1px solid #464646;
  padding-top: 9.5rem;
  background: #0E0E0E;
  color: white;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 10rem;
}
.footer__col {
  width: 75rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.footer__btns {
  display: flex;
  width: 100%;
  gap: 1.8rem;
}
.footer__btns a {
  width: 100%;
}
.footer__btn {
  padding: 1.2rem;
  gap: 1.2rem;
  height: 6rem;
  border: 1px solid white;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.6rem;
  min-width: 30rem;
}
.footer__btn:hover {
  text-decoration: none;
  background: black;
  color: white;
}
.footer__btn svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social li {
  flex-shrink: 0;
  display: flex;
  border-radius: 50%;
}
.footer__social li a {
  display: flex;
  line-height: 0;
}
.footer__social li a:not(.footer__btn) {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.footer__social li svg {
  width: 4rem;
  flex-shrink: 0;
}
.footer__copyright {
  padding-bottom: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #464646;
}
.footer__copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@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;
  }
  .main__section {
    padding: 4rem 0;
  }
  .main__section-left {
    padding: 0 2rem;
  }
  .main__section-right {
    padding: 0 2rem;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
  }
  .btn {
    min-width: 100%;
    height: 11rem;
    font-size: 6rem;
    padding: 2rem;
  }
  .btn svg {
    width: 9rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 1rem 1rem 10rem;
    font-size: 2.1rem;
    line-height: 1.2;
    backdrop-filter: none;
  }
  .list-num__item:before {
    font-size: 6rem;
    line-height: 7.5rem;
    height: 7rem;
    width: 7rem;
    top: 1rem;
    left: 1rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.4rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 10rem;
    font-size: 2.8rem;
  }
  .form-btn {
    font-size: 6rem;
    height: 11rem;
  }
  .form__agreement {
    font-size: 2.2rem;
  }
  .form__checkbox {
    width: 4rem;
  }
  .message {
    display: none;
  }
  .btn-play {
    padding: 2.4rem;
    column-gap: 1.5rem;
    height: 9rem;
    font-weight: normal;
    font-size: 2.4rem;
  }
  .btn-play svg {
    width: 2.8rem;
  }
  .header {
    background: url("../images/bg-mob1.webp") center center no-repeat #0E0E0E;
    background-size: 100% auto;
    padding: 5rem 0 7rem;
  }
  .header__block {
    width: 100%;
  }
  .header__subheading {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .header__heading {
    font-size: 6.4rem;
    margin-bottom: 1rem;
  }
  .header__slogan {
    font-size: 4rem;
    margin-bottom: 16rem;
  }
  .header__list {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 5.6rem;
  }
  .header__list svg {
    width: 2rem;
    flex-shrink: 0;
  }
  .header__list ul {
    list-style: none;
    padding: 0.6rem 0 0 0;
    margin: 0;
  }
  .header__list ul li {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
  }
  .header__list ul li:last-child {
    margin-bottom: 0;
  }
  .header__label {
    position: absolute;
    width: 24rem;
    bottom: -6rem;
    right: -4rem;
  }
  .tape-wrap {
    height: 7.6rem;
  }
  .tape-wrap .tape-text {
    font-size: 3.2rem;
    animation: tape 36s linear infinite;
  }
  .tape-wrap .tape-text span {
    margin-right: 6rem;
  }
  .tape-wrap .tape-text span:after {
    right: -4rem;
    width: 1rem;
    height: 1rem;
  }
  .program {
    background: url("../images/bg-mob2.webp") top center no-repeat #0E0E0E;
    background-size: 100% auto;
    padding: 5rem 0 85rem;
  }
  .program__box {
    margin-left: 0;
  }
  .program__list li {
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
  .program__list li:last-child {
    margin-bottom: 0;
  }
  .program__list li svg {
    width: 5rem;
  }
  .theme__heading {
    text-align: center;
  }
  .theme__block {
    flex-direction: column;
    gap: 2.4rem;
  }
  .theme__box {
    width: 100%;
    padding: 4rem;
  }
  .theme__list li {
    flex-direction: column;
    gap: 1.6rem;
    align-items: start;
    margin-bottom: 3.2rem;
    line-height: 1.2;
    font-size: 3.2rem;
  }
  .theme__list li:before {
    font-size: 7.2rem;
  }
  .theme__img {
    width: 100%;
    margin-bottom: 1.2rem;
  }
  .theme__title {
    padding: 3.2rem;
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
  .theme__more {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    justify-content: center;
    font-size: 4.8rem;
    font-family: "Bebas Neue Cyrillic", sans-serif;
    height: 8rem;
  }
  .theme__more svg {
    width: 6rem;
  }
  .theme .hidden {
    display: none;
  }
  .js-video__play {
    top: 4rem;
    right: 4rem;
    gap: 1.6rem;
    padding: 2.4rem 4rem;
    font-size: 3.2rem;
  }
  .js-video__play svg {
    width: 3.2rem;
    height: 3.2rem;
  }
  .bonus__heading {
    text-align: center;
  }
  .bonus__block {
    width: 100%;
  }
  .bonus__box {
    padding: 2.4rem;
    margin-bottom: 1rem;
    font-size: 4.7rem;
  }
  .bonus__img {
    display: none;
  }
  .ai__block {
    margin-top: 1rem;
    flex-direction: column-reverse;
    gap: 2.4rem;
    align-items: stretch;
  }
  .ai__heading {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .ai__box {
    padding: 4rem 2.4rem;
    margin-bottom: 1.6rem;
  }
  .ai__line {
    padding-left: 2.4rem;
    border-width: 3px;
  }
  .ai__title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .ai__btn {
    margin-top: 2rem;
  }
  .ai__video {
    border-radius: 12px;
    border: 4px solid #FFC56D;
    width: 100%;
  }
  .footer {
    padding-top: 8rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
  }
  .footer__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer__btns {
    display: flex;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer__btns a {
    width: 100%;
  }
  .footer__btn {
    margin-bottom: 0;
    padding: 2.4rem;
    gap: 2rem;
    border-radius: 1.6rem;
    font-size: 2.4rem;
    min-width: 100%;
    height: 8rem;
  }
  .footer__btn:hover {
    text-decoration: none;
    background: black;
    color: white;
  }
  .footer__btn svg {
    width: 3.2rem;
    flex-shrink: 0;
  }
  .footer__social {
    gap: 2.4rem;
    flex-wrap: wrap;
  }
  .footer__social li:has(.footer__btn) {
    min-width: 100%;
  }
  .footer__social li svg {
    width: 7rem;
  }
  .footer__copyright {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .footer__copyright .container {
    gap: 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
}

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