html {
  font-size: 1.32vw;
  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: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #fff;
  width: 100%;
  color: #474747;
  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: 10rem 0;
}

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

.slick-list {
  cursor: grab;
}

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

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

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 2.8rem 4rem;
  min-width: 100%;
  height: 8.5rem;
  font-size: 2.4rem;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: white;
  background: #141211;
  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;
}
.btn:hover {
  background: #C60000;
  color: #fff;
}
.btn:hover .price-old:after {
  background: white;
}
.btn .price-old {
  position: relative;
}
.btn .price-old:after {
  position: absolute;
  content: "";
  height: 0.6rem;
  left: -5%;
  right: -5%;
  top: 50%;
  margin-top: -0.3rem;
  background: #C60000;
  border-radius: 1rem;
  transform: rotate(-10deg);
}
.btn .price-new {
  font-weight: 800;
}

.heading {
  font-size: 6.4rem;
  margin-bottom: 4rem;
  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: #C60000;
  box-shadow: 0 0 5px #C60000;
  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: "Montserrat", 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: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #C60000;
  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: 6rem 4rem 4rem;
  background: white;
  position: relative;
  width: 82rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 1.2rem;
}
.modal__content.text-content {
  background: #fff;
  width: 132rem;
  padding: 10rem 4rem;
  font-size: 3.2rem;
  color: #141211;
}
@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(20, 18, 17, 0.1);
  margin: 3rem;
  box-shadow: inset -15px 0 0 0 #fff;
}
.modal__content.text-content::-webkit-scrollbar-thumb {
  background: rgba(20, 18, 17, 0.2);
  box-shadow: inset -15px 0 0 0 #fff;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 15vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: white;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 10;
}
.modal__title {
  font-weight: bold;
  position: relative;
  margin-bottom: 1.2rem;
  color: #141211;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__title {
    font-size: 3.2rem;
  }
}
.modal__text {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    font-size: 2.8rem;
  }
}
.modal__timer {
  margin-top: 1.6rem;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .modal__timer {
    flex-direction: column;
    margin-top: 4rem;
  }
}
.modal__timer-title {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .modal__timer-title {
    font-size: 2.8rem;
  }
}
.modal__timer-block {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 500;
}
.modal__timer-txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .modal__timer-txt {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}
.modal__timer-num {
  display: flex;
  gap: 0.4rem;
}
@media screen and (max-width: 1024px) {
  .modal__timer-num {
    gap: 0.8rem;
  }
}
.modal__timer-num b {
  position: relative;
  font-weight: normal;
  z-index: 2;
}
.modal__timer-num span {
  width: 3.6rem;
  height: 4.8rem;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #141211;
}
@media screen and (max-width: 1024px) {
  .modal__timer-num span {
    width: 5.6rem;
    height: 6.6rem;
  }
}
.modal__timer-num span:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 4px 4px 0 0;
  border: 1px solid #A5A5A5;
  background: linear-gradient(180deg, #E2E2E2 0%, #ABABAB 100%);
}
.modal__timer-num span:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 0 0 4px 4px;
  border: 1px solid #F1F1F1;
  background: linear-gradient(180deg, #EEE 0%, #ABABAB 100%);
}

.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: 1.6rem;
  position: absolute;
  display: none;
  top: 2px;
  right: 10px;
}
.form-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #AEAEAE;
  padding: 1.2rem;
  height: 6rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #737373;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -webkit-box-shadow: inset 0 0 0 50px white;
  -webkit-text-fill-color: #737373;
}
.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: 4rem;
  background: #141211;
  color: white;
}
.form__agreement {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  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: #474747;
  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: #C60000 !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: #141211;
}

.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: #fff;
  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);
    box-shadow: none;
  }
  10% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(198, 0, 0, 0.1);
  }
  25% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(198, 0, 0, 0.1);
  }
  30% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(198, 0, 0, 0.1);
  }
  40% {
    transform: scale(1);
    box-shadow: none;
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}
@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%;
}

.bg-arrow {
  display: block;
  width: 100%;
  background: #141211;
}

.bg-arrow-light {
  display: block;
  width: 100%;
  background: #fff;
}

.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: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.js-video__play svg {
  width: 1.2rem;
}
.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: #F8F8F8;
}
.header__block {
  display: flex;
  gap: 4rem;
}
.header__info {
  padding: 8rem 0 4rem 12rem;
}
.header__label {
  padding: 2rem 3.2rem;
  border-radius: 1.2rem;
  border: 1px solid #DBDBDB;
  font-size: 2.4rem;
  font-weight: bold;
  gap: 1.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
}
.header__label svg {
  width: 2.4rem;
  flex-shrink: 0;
}
.header__heading {
  margin-bottom: 3.2rem;
  text-align: left;
  font-size: 9.6rem;
}
.header__title {
  margin-bottom: 1.6rem;
  font-weight: bold;
}
.header__list {
  list-style: none;
  padding: 0;
  margin: 0 0 10rem;
}
.header__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.header__list li svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.header__list li:last-child {
  margin-bottom: 0;
}
.header__text {
  margin-bottom: 2.4rem;
}
.header__btn {
  text-align: center;
  margin-bottom: 1.6rem;
}
.header__btn .btn {
  width: 100%;
  margin-bottom: 2rem;
}
.header__price {
  font-size: 1.6rem;
  font-weight: bold;
}
.header__video {
  width: 94rem;
  flex-shrink: 0;
  overflow: hidden;
}
.header__video video {
  height: 100%;
  max-height: 90rem;
  min-width: 100%;
  object-fit: cover;
}
.header__timer {
  position: absolute;
  top: 2.5rem;
  right: 12rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #F8F8F8;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
}
.header__timer-title {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.header__timer-block {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 500;
}
.header__timer-txt {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.8rem;
}
.header__timer-num {
  display: flex;
  gap: 0.4rem;
}
.header__timer-num b {
  position: relative;
  font-weight: normal;
  z-index: 2;
}
.header__timer-num span {
  width: 3.6rem;
  height: 4.8rem;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #262626;
}
.header__timer-num span:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 4px 4px 0 0;
  border: 1px solid #A5A5A5;
  background: linear-gradient(180deg, #E2E2E2 0%, #ABABAB 100%);
  box-sizing: border-box;
}
.header__timer-num span:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  border-radius: 0 0 4px 4px;
  border: 1px solid #F1F1F1;
  background: linear-gradient(180deg, #EEE 0%, #ABABAB 100%);
  box-sizing: border-box;
}

.lessons {
  background: #F8F8F8;
}
.lessons__block {
  display: flex;
  align-items: start;
  gap: 4rem;
}
.lessons__left {
  width: 82rem;
  flex-shrink: 0;
  position: sticky;
  top: 2rem;
  padding: 6rem;
  border-radius: 2rem;
  border: 1px solid #DBDBDB;
  background: #FFF;
}
.lessons__subheading {
  font-size: 2.4rem;
  margin-bottom: 5.6rem;
}
.lessons__heading {
  font-size: 5.4rem;
  margin-bottom: 5.6rem;
}
.lessons__slogan {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 5.6rem;
}
.lessons__slogan svg {
  width: 9rem;
}
.lessons__item {
  padding: 4rem;
  border-radius: 2rem;
  border: 1px solid #DBDBDB;
  background: #FFF;
  margin-bottom: 2rem;
}
.lessons__title {
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  margin-bottom: 3.2rem;
}
.lessons__date {
  display: flex;
  align-items: start;
  gap: 2rem;
  font-weight: bold;
  font-size: 2.4rem;
  color: #C60000;
  margin-bottom: 3.2rem;
}
.lessons__date:before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-top: 1rem;
  border-radius: 50%;
  background: #C60000;
  animation: 3s linear infinite pulse;
  flex-shrink: 0;
}
.lessons__text {
  font-size: 2rem;
  margin-bottom: 3.2rem;
}
.lessons__video video {
  width: 100%;
}
.lessons__box {
  padding: 4rem;
  border-radius: 2rem;
  background: #141211;
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  color: white;
}

.footer {
  border-top: 1px solid #B8B8B8;
  padding-top: 9.5rem;
  color: #141211;
}
.footer a {
  color: #141211;
  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 #141211;
  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 #B8B8B8;
}
.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: 10rem;
    font-size: 2.8rem;
    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: 8rem;
    font-size: 2.4rem;
  }
  .form-btn {
    font-size: 2.8rem;
    height: 9rem;
  }
  .form__agreement {
    font-size: 2.2rem;
    margin-top: 3rem;
  }
  .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__block {
    flex-direction: column-reverse;
    gap: 2.4rem;
  }
  .header__info {
    padding: 0 2rem 4rem;
  }
  .header__top {
    padding: 4rem 2rem 0;
  }
  .header__title {
    margin-bottom: 3.2rem;
    font-size: 3.2rem;
  }
  .header__label {
    padding: 2.4rem;
    display: inline-flex;
    align-items: start;
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
  }
  .header__label svg {
    width: 3.5rem;
  }
  .header__heading {
    font-size: 9.2rem;
    margin-bottom: 0;
  }
  .header__list {
    margin: 0 0 8rem 0;
  }
  .header__list li {
    margin-bottom: 2.4rem;
    gap: 2rem;
    font-size: 3.2rem;
  }
  .header__list li:last-child {
    margin-bottom: 0;
  }
  .header__list li svg {
    width: 3.5rem;
  }
  .header__text {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }
  .header__btn {
    width: 100%;
  }
  .header__btn .btn {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .header__price {
    font-size: 3.2rem;
  }
  .header__video {
    width: 100%;
    flex-shrink: 0;
  }
  .header__video video {
    height: auto;
    width: 100%;
    vertical-align: top;
  }
  .header__timer {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    top: auto;
    display: flex;
    padding: 1rem 2.4rem;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
  }
  .header__timer-title {
    font-size: 2.8rem;
    margin-bottom: 0;
    text-align: left;
  }
  .header__timer-block {
    font-size: 3.2rem;
  }
  .header__timer-txt {
    font-size: 1.6rem;
    margin-top: 1rem;
    text-transform: uppercase;
  }
  .header__timer-num {
    gap: 0.8rem;
  }
  .header__timer-num span {
    width: 5.6rem;
    height: 6rem;
  }
  .lessons__block {
    flex-direction: column;
    gap: 3rem;
  }
  .lessons__left {
    width: 100%;
    position: sticky;
    top: 3rem;
    z-index: 1;
    padding: 4rem;
    text-align: center;
  }
  .lessons__subheading {
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
  .lessons__heading {
    font-size: 5.2rem;
    margin-bottom: 4rem;
  }
  .lessons__slogan {
    flex-direction: column;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    gap: 6rem;
  }
  .lessons__slogan svg {
    width: 8rem;
    transform: rotate(90deg);
  }
  .lessons__item {
    margin-bottom: 3rem;
    position: sticky;
    z-index: 2;
    top: 3rem;
  }
  .lessons__title {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
  }
  .lessons__date {
    font-size: 3.1rem;
    margin-bottom: 2.4rem;
  }
  .lessons__date:before {
    width: 2rem;
    height: 2rem;
    margin-top: 0.8rem;
  }
  .lessons__text {
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
  }
  .lessons__box {
    font-size: 4.8rem;
    z-index: 3;
    position: relative;
    margin-bottom: 2rem;
  }
  .lessons__btn {
    background: #C60000;
  }
  .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 */
