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: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #FBFCFF;
  width: 100%;
  color: #010816;
  margin: 0;
  padding: 0;
}

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

* {
  box-sizing: border-box;
}

b {
  font-weight: bold;
}

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: 10rem 0;
}

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

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

.text--color {
  color: #01369E;
}
.text--center {
  text-align: center;
}

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

.btn {
  display: inline-flex;
  gap: 2rem;
  outline: none;
  border: 1px solid #5D68BA;
  justify-content: center;
  align-items: center;
  max-width: 75rem;
  padding: 3rem 8rem;
  height: 8.6rem;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
  color: white;
  border-radius: 1.6rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-out;
  overflow: hidden;
  z-index: 1;
}
.btn svg {
  width: 4rem;
}
.btn:hover {
  border-color: #4E516E;
  color: white;
  text-decoration: none;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, #05092A 0%, #1A2DB1 17.5%, #5D81F7 33.3%, #0E1341 66.6%, #1A2DB1 74.2%, #3858F5 81.8%, #5D81F7 89.4%, #7CA2F8 94.7%, #BAD7FA 100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  transform: translateX(-66.66%);
}
.btn:hover::before {
  transform: translateX(0);
}

.subheading {
  margin-bottom: 4rem;
}

.heading {
  font-size: 3.6rem;
  margin-bottom: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.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: #fff;
  position: relative;
  width: 68rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 2rem;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.3);
  scrollbar-width: 2px;
}
.modal__content::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  display: block;
}
.modal__content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  margin: 1.8rem;
}
.modal__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
}
@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;
    background: white;
    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-size: 4rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .modal__heading {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
}
.modal__text {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    margin-bottom: 8rem;
    font-size: 2.8rem;
  }
}
.modal__info {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .modal__info {
    font-size: 2.4rem;
  }
}

.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: white;
  border: none;
  border-bottom: 1px solid #D4DCF2;
  box-shadow: none;
  border-radius: 0;
  padding: 1.2rem;
  height: 6rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #666666;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
.form-input:focus {
  border: none;
  border-bottom: 1px solid #D4DCF2;
  outline: none;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-label {
  padding: 0 1.6rem;
  font-size: 1.6rem;
  margin-top: 2.4rem;
  margin-bottom: -1.2rem;
  display: block;
  position: relative;
}
.form-btn {
  min-width: 100%;
  margin-top: 2.8rem;
}

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

.language {
  position: fixed;
  z-index: 100;
  top: 3rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #475882;
  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);
    opacity: 0.8;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes pulse-shadow-effect2 {
  0% {
    box-shadow: 0 0 0 0 rgba(150, 198, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(150, 198, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 2rem rgba(150, 198, 255, 0);
  }
}
@keyframes pulse-shadow-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0);
  }
}
.header {
  position: relative;
  display: flex;
  align-items: end;
  background: url("../images/bg-1.png") bottom center no-repeat;
  background-size: cover;
  color: white;
}
.header__block {
  padding-top: 8rem;
  padding-bottom: 8rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4rem;
}
.header__start {
  border-radius: 1.6rem;
  border: 1px solid rgba(64, 64, 64, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12.5px);
  padding: 2rem 4rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
}
.header__start:before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: white;
  animation: pulse-shadow-effect 1.5s infinite;
}
.header__heading {
  font-size: 4.6rem;
  font-weight: bold;
}
.header__subheading {
  max-width: 90rem;
  padding-left: 1.2rem;
  border-left: 3px solid #3791FF;
  font-size: 3.6rem;
  font-weight: bold;
}
.header__text {
  max-width: 90rem;
  font-size: 2.4rem;
  margin-bottom: 14rem;
}
.header__btn {
  display: flex;
  gap: 4rem;
  margin-top: auto;
  align-items: center;
}
.header__format {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  white-space: nowrap;
}

.program {
  padding-bottom: 20rem;
  color: white;
  background: url("../images/bg-2.png") center bottom no-repeat #0B0E16;
  background-size: 100% auto;
}
.program__img1 {
  width: 25rem;
  position: absolute;
  left: -4rem;
  top: 1.5rem;
}
.program__img2 {
  position: absolute;
  top: 28.5rem;
  left: 8rem;
  width: 33rem;
}
.program__img3 {
  position: absolute;
  top: 15rem;
  right: 0;
  width: 34rem;
}
.program__block {
  padding: 0 42rem;
  position: relative;
}
.program__block img {
  width: 100%;
}
.program__subheading {
  margin-bottom: 6rem;
}
.program__info {
  margin-bottom: 6rem;
  line-height: 1.5;
}
.program__heading {
  margin-bottom: 6rem;
}
.program__text {
  margin-bottom: 3.2rem;
  line-height: 1.5;
}
.program__list {
  list-style: none;
  margin: 0;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.program__list li {
  font-size: 2rem;
  font-weight: bold;
}
.program__list svg {
  width: 4rem;
}

.after {
  margin-top: -5rem;
  border-radius: 5rem 5rem 0 0;
  background: #FBFCFF;
}
.after__block {
  display: flex;
  gap: 4rem;
}
.after__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: list;
  width: 100%;
}
.after__list li {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #E3EAF4;
  display: flex;
  align-items: center;
  gap: 4rem;
  counter-increment: list;
}
.after__list li:before {
  content: counter(list);
  font-size: 3.2rem;
  font-weight: 600;
  color: #E3EAF4;
}
.after__list li:first-child {
  padding-top: 1rem;
}
.after__list li:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 2px;
  background: #EFF3F9;
  margin-left: auto;
}
.after__img {
  width: 67.7rem;
  flex-shrink: 0;
}

.steps__block {
  display: flex;
  align-items: start;
  gap: 2rem;
  counter-reset: steps;
}
.steps__left {
  width: 54.7rem;
  flex-shrink: 0;
  position: sticky;
  top: 4rem;
}
.steps__calendar {
  margin-bottom: 4rem;
}
.steps__calendar img {
  width: 100%;
}
.steps__box {
  border: 2px solid #D6E4FF;
  background: #FFF;
  border-radius: 2.4rem;
  padding: 4rem;
  counter-increment: steps;
  margin-bottom: 1rem;
}
.steps__box-out {
  counter-increment: steps;
  background: linear-gradient(-18deg, #1E30AF 0%, #1E30AF 40%, #4364F6 43%, #87ACF9 45%, #4364F6 48%, #1E30AF 50%, #1E30AF 100%);
  border-radius: 2.4rem;
  padding: 2px;
}
.steps__box-inner {
  border-radius: 2.2rem 6rem 2.2rem 6rem;
  padding: 4rem;
  display: flex;
  gap: 4rem;
  align-items: start;
  background: white;
}
.steps__title {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
.steps__title:before {
  content: counter(steps);
  font-size: 3.6rem;
  font-weight: normal;
  color: #01369E;
}
.steps__check {
  display: flex;
  align-items: start;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  line-height: 1.5;
}
.steps__check:last-child {
  margin-bottom: 0;
}
.steps__check svg {
  width: 3rem;
  flex-shrink: 0;
  margin-top: -0.3rem;
}
.steps__check ul {
  list-style: disc;
  margin: 0;
  padding-left: 2.4rem;
}
.steps__check ul li::marker {
  font-size: 1.2rem;
}
.steps__img {
  width: 34.7rem;
  flex-shrink: 0;
}

.alex {
  background: radial-gradient(99.39% 102.4% at 50.03% -2.05%, rgba(246, 247, 249, 0) 0%, rgba(246, 247, 249, 0) 54.11%, #004CCE 72.06%, #001667 100%);
}
.alex__block {
  display: flex;
  gap: 2rem;
  margin-bottom: 5.5rem;
}
.alex__col {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 0.8rem;
}
.alex__img {
  width: 100%;
}
.alex__box {
  border: 2px solid #E3EAF4;
  background: white;
  border-radius: 2.4rem;
  padding: 3.6rem;
  height: 100%;
}
.alex__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.alex__title:last-child {
  margin-bottom: 0;
}
.alex__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.alex__icon {
  width: 9.7rem;
  flex-shrink: 0;
  margin-left: auto;
}
.alex__text {
  font-size: 2rem;
}
.alex__citate {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 4rem;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  color: white;
}
.alex__citate svg {
  width: 6rem;
}

.speakers {
  background: linear-gradient(180deg, #001667 0%, #0B0E30 100%);
  color: white;
}
.speakers__block {
  display: flex;
  gap: 2rem;
}
.speakers__box {
  border-radius: 2.4rem;
  border: 2px solid #465EAA;
  background: rgba(75, 91, 140, 0.47);
  padding: 3.8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.speakers__ava {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: auto;
}
.speakers__ava svg {
  width: 2.2rem;
}
.speakers__img {
  width: 17.5rem;
}
.speakers__icon {
  width: 8rem;
}
.speakers__title {
  margin: 1.2rem 0;
  font-size: 2.4rem;
  font-weight: bold;
}
.speakers__text {
  font-size: 2rem;
}

.lessons {
  background: url("../images/bg-lessons.png") center 3rem no-repeat;
  background-size: 100% auto;
  color: white;
  padding-bottom: 20rem;
  position: relative;
}
.lessons:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(180deg, #0B0E30 0%, #0B0E30 30%, rgba(0, 0, 0, 0) 100%);
}
.lessons__block {
  display: flex;
  gap: 2rem;
}
.lessons__box {
  width: 100%;
  border: 2px solid #E3EAF4;
  background: white;
  color: #010816;
  border-radius: 2.4rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.lessons__label {
  border: 1px solid #D4DCF2;
  background: #F8FAFF;
  padding: 1.2rem 2.4rem;
  border-radius: 10rem;
  margin-bottom: 1.2rem;
  display: inline-flex;
  color: #475882;
}
.lessons__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.lessons__text {
  margin-bottom: 3rem;
}
.lessons__img {
  width: 100%;
  margin-top: auto;
}

.about {
  background: url("../images/bg-alex.png") center bottom no-repeat #010816;
  background-size: 100% auto;
  color: white;
}
.about__heading {
  max-width: 85rem;
  margin: 0 auto 8rem;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: about;
}
.about__list li {
  counter-increment: about;
  padding-left: 5rem;
  position: relative;
  padding-bottom: 4rem;
}
.about__list li:before {
  content: counter(about, decimal-leading-zero);
  color: #4B7AC8;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  font-weight: 500;
}
.about__list li:after {
  content: "";
  position: absolute;
  top: 2.8rem;
  bottom: 0.5rem;
  left: 1.2rem;
  width: 2px;
  background: #0A2859;
}
.about__list li:last-child:after {
  display: none;
}
.about__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.about__text {
  line-height: 1.5;
}

.reviews {
  margin-top: -5rem;
  border-radius: 5rem 5rem 0 0;
  background: #FBFCFF;
}
.reviews__block {
  position: relative;
  margin: 0 -0.6rem;
  margin-bottom: 0 !important;
}
.reviews__block .slick-list {
  overflow: visible !important;
}
.reviews__block .slick-arrow {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: -11rem;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
  opacity: 0.6;
}
.reviews__block .slick-arrow.arrow-right {
  right: 0;
}
.reviews__block .slick-arrow.arrow-left {
  right: 6rem;
}
.reviews__block .slick-arrow:hover {
  opacity: 1;
}
.reviews__item {
  padding: 0 0.6rem;
}
.reviews__item img {
  width: 100%;
}

.instruments {
  background: url("../images/bg-ai.png") center bottom no-repeat;
  background-size: 95rem auto;
}
.instruments__heading {
  max-width: 118rem;
  margin: 0 auto 7rem;
}
.instruments__block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.instruments__col {
  width: 50rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.instruments__box {
  height: 100%;
  padding: 2rem;
  border: 2px solid #E3EAF4;
  border-radius: 1.6rem;
  background: white;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 2rem;
}
.instruments__icon {
  width: 5rem;
}

.ai__circle {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #3791FF;
  border: 0.5rem solid #96C6FF;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
  animation: pulse-shadow-effect2 1.5s infinite;
}
.ai__block {
  padding-top: 2rem;
  display: flex;
  gap: 2rem;
}
.ai__img {
  width: 82rem;
  flex-shrink: 0;
}
.ai__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  position: relative;
  counter-reset: ai;
}
.ai__blocks:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56rem;
  height: 12rem;
  background: #0091F0;
  border-radius: 56rem;
  filter: blur(15rem);
}
.ai__box {
  width: calc(50% - 0.4rem);
  background: white;
  position: relative;
  border: 2px solid #A8DDFF;
  border-radius: 2rem;
  padding: 4rem;
  font-size: 2rem;
  color: #004565;
  font-weight: bold;
  counter-increment: ai;
}
.ai__box:before {
  content: "(" counter(ai) ")";
  display: block;
  font-weight: normal;
  margin-bottom: 5rem;
  color: #93B1C0;
}
.ai__box:last-child {
  width: 100%;
}

.format__block {
  display: flex;
  gap: 2rem;
  position: relative;
  margin-bottom: 4rem;
}
.format__block:before {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  width: 94rem;
  height: 84rem;
  border-radius: 94rem;
  background: #62A8F7;
  filter: blur(13rem);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.format__box {
  padding: 3.6rem;
  border: 1px solid #93C5FF;
  background: white;
  border-radius: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.format__title {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.format__price {
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.format__price-new {
  font-size: 3.6rem;
  color: #010816;
}
.format__price-period {
  font-size: 2rem;
}
.format__sale {
  margin-bottom: 2rem;
  color: #3791FF;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 2rem;
}
.format__info {
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: bold;
}
.format__list {
  list-style: none;
  margin: auto 0 0 0;
  padding: 0;
}
.format__list > li {
  margin-bottom: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #474747;
  line-height: 1.5;
  min-height: 5rem;
}
.format__list > li:has(ul) {
  align-items: start;
}
.format__list > li:has(ul) svg {
  margin-top: 0.5rem;
}
.format__list > li:last-child {
  margin-bottom: 0;
}
.format__list > li.none {
  color: #B7B7B7;
  text-decoration: line-through;
}
.format__list > li svg {
  width: 3.7rem;
  flex-shrink: 0;
}
.format__list > li ul {
  margin: 0;
  padding: 0;
  list-style: disc;
}
.format__list > li ul li::marker {
  font-size: 1.2rem;
}
.format__text {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.4;
}

.faqs__heading {
  margin-bottom: 6rem;
}
.faqs__block {
  padding-bottom: 2rem;
  border-bottom: 1px solid #D4D4D4;
  margin-bottom: 2rem;
}
.faqs__block:last-child {
  margin-bottom: 0;
}
.faqs__block.open .faqs__minus {
  display: block;
}
.faqs__block.open .faqs__plus {
  display: none;
}
.faqs__block.open .faqs__content {
  display: block;
}
.faqs__title {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 2.4rem;
  justify-content: space-between;
  cursor: pointer;
}
.faqs__arrow {
  width: 3.3rem;
  height: 3.3rem;
  flex-shrink: 0;
}
.faqs__arrow .faqs__minus {
  display: none;
}
.faqs__content {
  max-width: 67rem;
  margin-top: 1.8rem;
  display: none;
}

.apply {
  padding-bottom: 20rem;
}
.apply__block {
  display: flex;
  align-items: start;
  gap: 3rem;
  position: relative;
}
.apply__block:before {
  content: "";
  position: absolute;
  width: 11rem;
  height: 11rem;
  background: #DAEEFD;
  border-radius: 2.4rem;
  top: 29rem;
  left: 23rem;
  z-index: 2;
}
.apply__block:after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  background: #DAEEFD;
  border-radius: 2.4rem;
  top: 0rem;
  right: 0rem;
  z-index: 2;
}
.apply__img {
  width: 32rem;
  flex-shrink: 0;
}
.apply__img2 {
  align-self: end;
}
.apply__text {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  margin-top: 8rem;
}

.footer {
  background: white;
  border-top: 1px solid #D4DCF2;
  padding-top: 7.5rem;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.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 {
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  gap: 1.2rem;
  border: 1px solid #010816;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  min-width: 22.5rem;
}
.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 0 2.4rem;
  padding: 0;
  list-style: none;
}
.footer__social li {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer__social li a {
  display: block;
  line-height: 0;
}
.footer__social li svg {
  width: 4rem;
  flex-shrink: 0;
}
.footer__copyright {
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright a {
  text-decoration: underline;
}

@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: 3.2rem;
    max-width: 100%;
    width: 100%;
  }
  .container {
    padding: 0 2rem;
  }
  .main__section {
    padding: 8rem 0;
  }
  .subheading {
    font-size: 3rem;
    margin-bottom: 2.4rem;
    opacity: 0.8;
  }
  .btn {
    min-width: 100%;
    width: 100%;
    height: 13rem;
    font-size: 3.2rem;
    padding: 4rem 6rem;
  }
  .wrapper {
    overflow: hidden;
  }
  .form-control {
    margin-bottom: 2.4rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-info {
    font-size: 2.4rem;
    margin-top: 2.4rem;
  }
  .form-input {
    height: 9rem;
    font-size: 2.8rem;
    padding: 2.4rem 1.6rem;
  }
  .form-label {
    font-size: 2.8rem;
    padding: 0 2rem;
    margin-top: 3rem;
  }
  .form-btn {
    font-size: 3.2rem;
    height: 13rem;
    margin-top: 8rem;
  }
  .header {
    background: url("../images/bg-mob1.png") top center no-repeat;
    background-size: 100% auto;
  }
  .header__block {
    padding-top: 4rem;
    padding-bottom: 4rem;
    gap: 2.4rem;
    min-height: inherit;
  }
  .header__start {
    padding: 2.4rem 3.2rem;
    gap: 2.4rem;
    font-size: 3rem;
  }
  .header__start:before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .header__heading {
    font-size: 4.8rem;
  }
  .header__subheading {
    padding-left: 3rem;
    margin-bottom: 48rem;
  }
  .header__text {
    font-size: 3rem;
    margin-bottom: 0;
  }
  .header__btn {
    flex-direction: column;
    justify-content: stretch;
    width: 100%;
    gap: 2.4rem;
  }
  .header__format {
    font-size: 3.6rem;
    gap: 1.6rem;
    text-align: center;
  }
  .program {
    padding-bottom: 12rem;
    background: url("../images/bg-mob2.png") center bottom no-repeat #0B0E16;
    background-size: 100% auto;
  }
  .program__img1 {
    width: 30rem;
    margin: 0 auto 5rem;
    position: relative;
    left: 0;
    top: 0;
  }
  .program__img1:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10rem;
    width: 8rem;
    height: 8rem;
    border-radius: 1.6rem;
    background: #0E1627;
  }
  .program__img2 {
    width: 25rem;
    margin: 0 auto 5rem;
    position: relative;
    left: 0;
    top: 0;
  }
  .program__img2:before {
    content: "";
    position: absolute;
    top: 0;
    left: -10rem;
    width: 8rem;
    height: 8rem;
    border-radius: 1.6rem;
    background: #0E1627;
  }
  .program__img3 {
    width: 30rem;
    margin: 0 auto 5rem;
    position: relative;
    right: 0;
    top: 0;
  }
  .program__img3:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -10rem;
    width: 8rem;
    height: 8rem;
    border-radius: 1.6rem;
    background: #0E1627;
  }
  .program__block {
    padding: 0;
    position: relative;
  }
  .program__block img {
    width: 100%;
  }
  .program__subheading {
    margin-bottom: 6rem;
  }
  .program__info {
    margin-bottom: 5rem;
    line-height: 1.5;
  }
  .program__heading {
    margin-bottom: 2.4rem;
  }
  .program__text {
    margin-bottom: 3.2rem;
    line-height: 1.5;
  }
  .program__list {
    padding: 2rem 0;
    flex-direction: column;
    gap: 0.8rem;
  }
  .program__list li {
    font-size: 3.6rem;
  }
  .program__list svg {
    transform: rotate(90deg);
  }
  .after__subheading {
    text-align: center;
  }
  .after__heading {
    text-align: center;
  }
  .after__block {
    flex-direction: column-reverse;
  }
  .after__list li {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    gap: 2.4rem;
  }
  .after__list li:before {
    font-size: 4.8rem;
  }
  .after__list li:first-child {
    padding-top: 0;
  }
  .after__list li:after {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
  }
  .after__img {
    width: 100%;
  }
  .steps__block {
    flex-direction: column;
    gap: 4rem;
  }
  .steps__left {
    width: 100%;
    position: static;
    text-align: center;
  }
  .steps__box {
    margin-bottom: 1.6rem;
  }
  .steps__box-inner {
    flex-direction: column;
    gap: 4rem;
    align-items: start;
  }
  .steps__title {
    gap: 2.4rem;
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .steps__title:before {
    font-size: 3.6rem;
    font-weight: bold;
  }
  .steps__check {
    gap: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .steps__check:last-child {
    margin-bottom: 0;
  }
  .steps__check svg {
    width: 4.2rem;
    margin-top: 0;
  }
  .steps__check ul {
    padding-left: 2.4rem;
  }
  .steps__check ul li::marker {
    font-size: 1.8rem;
  }
  .steps__img {
    width: 100%;
    flex-shrink: 0;
  }
  .alex {
    background: radial-gradient(100.04% 102.05% at 50.03% -2.05%, rgba(246, 247, 249, 0) 0%, rgba(246, 247, 249, 0) 54.11%, #004CCE 84.21%, #001667 100%);
  }
  .alex__block {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 0;
  }
  .alex__col {
    gap: 1.6rem;
  }
  .alex__title {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .alex__title:last-child {
    margin-bottom: 0;
  }
  .alex__inner {
    align-items: start;
  }
  .alex__icon {
    width: 8rem;
  }
  .alex__text {
    font-size: 3.2rem;
  }
  .speakers__block {
    flex-direction: column;
    gap: 2rem;
  }
  .speakers__ava {
    min-height: 7rem;
  }
  .speakers__ava svg {
    width: 2.4rem;
  }
  .speakers__img {
    width: 17rem;
  }
  .speakers__icon {
    width: 9rem;
  }
  .speakers__title {
    margin: 2.4rem 0;
    font-size: 3.6rem;
  }
  .speakers__text {
    font-size: 3.2rem;
  }
  .lessons {
    background: linear-gradient(180deg, #0B0E30 0%, #010207 100%);
    padding-bottom: 8rem;
    position: relative;
  }
  .lessons:before {
    content: "";
    position: absolute;
    top: 60rem;
    left: 12rem;
    width: 50rem;
    height: 250rem;
    background: #2746F5;
    filter: blur(20rem);
  }
  .lessons__block {
    flex-direction: column;
    position: relative;
    gap: 2rem;
  }
  .lessons__box {
    padding: 4rem;
  }
  .lessons__label {
    padding: 1.6rem 2.4rem;
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
  }
  .lessons__title {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
  .lessons__text {
    margin-bottom: 4rem;
  }
  .lessons__img {
    width: 100%;
    margin-top: auto;
  }
  .about {
    background: url("../images/bg-alex-mob.png") center center no-repeat #010816;
    background-size: 100% auto;
  }
  .about__heading {
    margin: 0 auto 6rem;
  }
  .about__list li {
    padding-left: 0;
    padding-bottom: 4rem;
  }
  .about__list li:before {
    content: counter(about, decimal-leading-zero);
    color: #4B7AC8;
    position: static;
    font-size: 3.2rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
  }
  .about__list li:after {
    display: none;
  }
  .about__list li:last-child:after {
    display: none;
  }
  .about__list li.for-mobile-img {
    padding-bottom: 80rem;
  }
  .about__title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .about__text {
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }
  .reviews__heading {
    text-align: center;
    margin-bottom: 12rem;
  }
  .reviews__block {
    margin: 0 -0.8rem;
    margin-bottom: 6rem !important;
  }
  .reviews__block .slick-arrow {
    position: absolute;
    width: 8rem;
    height: 8rem;
    top: -11rem;
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
    transition: opacity 0.3s ease-out;
    opacity: 0.6;
  }
  .reviews__block .slick-arrow.arrow-right {
    left: 50%;
    right: auto;
    margin-left: 2rem;
  }
  .reviews__block .slick-arrow.arrow-left {
    left: 50%;
    right: auto;
    margin-left: -10rem;
  }
  .reviews__block .slick-arrow:hover {
    opacity: 1;
  }
  .reviews__block .slick-dots {
    bottom: -6rem;
    line-height: 0;
  }
  .reviews__block .slick-dots li {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 0.4rem;
    opacity: 0.5;
  }
  .reviews__block .slick-dots li.slick-active {
    opacity: 1;
  }
  .reviews__block .slick-dots li button {
    width: 2.4rem;
    height: 2.4rem;
    background: #1A50B6;
    border-radius: 50%;
  }
  .reviews__item {
    padding: 0 0.8rem;
  }
  .reviews__item img {
    width: 100%;
  }
  .instruments {
    background: url("../images/bg-ai.png") center center no-repeat;
    background-size: 95rem auto;
    padding-bottom: 12rem;
  }
  .instruments__heading {
    margin: 0 auto 4rem;
  }
  .instruments__block {
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
  }
  .instruments__col {
    width: 100%;
    gap: 1rem;
    margin-bottom: 62rem;
  }
  .instruments__col:last-child {
    margin-bottom: 0;
  }
  .instruments__box {
    height: 100%;
    padding: 3.2rem 2.4rem;
    font-size: 3.6rem;
  }
  .instruments__icon {
    width: 7.6rem;
  }
  .ai__circle {
    width: 2.4rem;
    height: 2.4rem;
    border: 0.6rem solid #96C6FF;
    margin-right: 1rem;
    margin-bottom: 0.2rem;
  }
  .ai__block {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .ai__img {
    width: 100%;
    flex-shrink: 0;
  }
  .ai__blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    position: relative;
    counter-reset: ai;
  }
  .ai__blocks:before {
    content: "";
    position: absolute;
    top: 26rem;
    left: 25rem;
    transform: none;
    width: 34rem;
    height: 88rem;
    background: #0091F0;
    border-radius: 88rem;
    filter: blur(20rem);
  }
  .ai__box {
    width: 100%;
    border-radius: 2.4rem;
    padding: 3.2rem;
    font-size: 3.6rem;
    min-height: 26rem;
    display: flex;
    flex-direction: column;
  }
  .ai__box:before {
    margin-bottom: auto;
  }
  .ai__box:last-child {
    width: 100%;
  }
  .format__block {
    flex-direction: column;
    gap: 2.4rem;
  }
  .format__block:before {
    width: 52rem;
    height: 270rem;
    border-radius: 270rem;
    filter: blur(15rem);
  }
  .format__box {
    padding: 3.2rem;
    border-radius: 2.4rem;
  }
  .format__title {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .format__price {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .format__price-new {
    font-size: 4.8rem;
  }
  .format__price-period {
    font-size: 3.6rem;
  }
  .format__sale {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
    padding-bottom: 2.4rem;
  }
  .format__info {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
  }
  .format__list {
    margin: 0;
  }
  .format__list > li {
    margin-bottom: 2.4rem;
    gap: 1.6rem;
    line-height: 1.2;
    min-height: 8rem;
  }
  .format__list > li:has(ul) {
    align-items: start;
  }
  .format__list > li:has(ul) svg {
    margin-top: 1rem;
  }
  .format__list > li:last-child {
    margin-bottom: 0;
  }
  .format__list > li svg {
    width: 5.6rem;
  }
  .format__list > li ul li::marker {
    font-size: 2rem;
  }
  .format__text {
    margin-bottom: 2.4rem;
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .faqs__heading {
    margin-bottom: 4rem;
  }
  .faqs__block {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
  .faqs__block:last-child {
    margin-bottom: 0;
  }
  .faqs__block.open .faqs__minus {
    display: block;
  }
  .faqs__block.open .faqs__plus {
    display: none;
  }
  .faqs__block.open .faqs__content {
    display: block;
  }
  .faqs__title {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 3.2rem;
    justify-content: space-between;
    cursor: pointer;
  }
  .faqs__arrow {
    width: 3.3rem;
    height: 3.3rem;
    flex-shrink: 0;
  }
  .faqs__arrow .faqs__minus {
    display: none;
  }
  .faqs__content {
    max-width: inherit;
    margin-top: 4rem;
    font-size: 2.8rem;
    display: none;
  }
  .apply {
    padding-bottom: 12rem;
  }
  .apply__block {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .apply__block:before {
    width: 18rem;
    height: 18rem;
    top: -8rem;
    left: auto;
    right: 4rem;
    z-index: 2;
  }
  .apply__block:after {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    top: auto;
    bottom: 40rem;
    right: auto;
    left: 6rem;
  }
  .apply__img {
    width: 53rem;
    flex-shrink: 0;
  }
  .apply__img2 {
    align-self: center;
    width: 47rem;
    margin-top: 7rem;
  }
  .apply__text {
    font-size: 3.6rem;
    margin-bottom: 4rem;
    margin-top: 0;
  }
  .footer {
    padding-top: 6rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }
  .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: 1.8rem;
  }
  .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: 37rem;
  }
  .footer__btn:hover {
    text-decoration: none;
    background: black;
    color: white;
  }
  .footer__btn svg {
    width: 3.2rem;
    flex-shrink: 0;
  }
  .footer__social {
    gap: 2.4rem;
    margin: 0 0 2.4rem;
  }
  .footer__social li svg {
    width: 7.4rem;
    flex-shrink: 0;
  }
  .footer__copyright {
    padding-bottom: 6rem;
    gap: 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
}

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