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

html.thnx__page {
  font-size: 1.5625vw;
}
@media screen and (min-width: 921px) {
  html.thnx__page {
    font-size: 0.52vw;
  }
}

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

* {
  box-sizing: border-box;
}

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

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

.container {
  width: 100%;
  max-width: 153rem;
  margin: 0 auto;
}

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

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-width: 75rem;
  height: 8rem;
  font-size: 3.2rem;
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  color: white;
  background: #8E0000;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: #c10000;
}
.btn--arrow {
  position: relative;
  padding: 2rem 6.5rem;
}
.btn__icon {
  width: 4rem;
  margin-right: 2.5rem;
  flex-shrink: 0;
}
.btn__small {
  font-size: 1.8rem;
  height: 5.4rem;
}
.btn__arrow {
  position: absolute;
  width: 6rem;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease-out;
}
.btn:hover .btn__arrow {
  right: -9rem;
}

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

.heading {
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4rem;
  font-family: "Gilroy", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.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: #8E0000;
  box-shadow: 0 0 5px #8E0000;
  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: 0;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  padding-bottom: 1rem;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #8E0000;
  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.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 60px 40px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  position: relative;
  width: 460px;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .modal__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
  }
}
@media screen and (max-width: 767px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal__heading {
  font-weight: 700;
  font-family: "Gilroy", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 30px;
  color: black;
  text-align: center;
}

.form-input {
  background: #fff;
  border: none;
  padding: 2rem 1.2rem;
  height: 6rem;
  border-radius: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: #3F3F3F;
  width: 100%;
  box-sizing: border-box;
  font-family: "Gilroy", sans-serif;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-btn {
  outline: none;
  border: none;
  margin-top: 1rem;
  height: 8rem;
  font-size: 3.2rem;
  min-width: inherit;
  width: 100%;
}

.header {
  min-height: 100vh;
  background: url("../img/bg1.webp") center bottom no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 16rem;
  padding-top: 20rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header {
    min-height: 60vw;
  }
}
.header__heading {
  max-width: 80rem;
  font-size: 4.8rem;
  line-height: 1.4;
  font-family: "Gilroy", sans-serif;
  margin-top: 0;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.header__text {
  max-width: 57rem;
  font-size: 2.4rem;
  line-height: 1.4;
}
.header__form {
  margin-top: 12rem;
}
.header__form .form {
  margin-top: 2rem;
  max-width: 74rem;
}
.header__form .form-block {
  display: flex;
  column-gap: 1rem;
}
.header__form .form-info {
  margin-bottom: 0;
  margin-top: 2rem;
  font-size: 1.4rem;
  opacity: 0.6;
}
.header__info {
  position: absolute;
  bottom: 23rem;
  right: 24rem;
  width: 52rem;
  padding: 2rem;
  border: 1px solid #161616;
  background: rgba(67, 67, 67, 0.4);
  backdrop-filter: blur(5px);
  font-size: 2rem;
  text-align: center;
}
.header__info svg {
  width: 7.4rem;
  position: absolute;
  top: -2.4rem;
  right: -2rem;
}
.header__title {
  font-size: 3.2rem;
  font-weight: bold;
}

.programs__block {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6rem;
  column-gap: 3rem;
  margin-bottom: 6rem;
}
.programs__item {
  display: flex;
  border: 1px solid #8E0000;
  flex-basis: 75rem;
}
.programs__item > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 3rem;
}
.programs__img {
  width: 36rem;
  flex-shrink: 0;
}
.programs__title {
  font-size: 3.2rem;
  color: #8E0000;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 3rem;
}
.programs__text {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
}
.programs__btn {
  width: 75rem;
  margin: 0 auto;
}
.programs__btn .btn {
  margin-top: 1.7rem;
}

.students__blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 3rem;
  margin: 0 -1.5rem 6rem;
}
.students__item {
  width: 33.33%;
  padding: 0 1.5rem;
}
.students__box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  row-gap: 2rem;
  padding: 2rem 4.5rem;
}
.students__info {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-size: 2rem;
  font-weight: 500;
}
.students__img {
  width: 8rem;
}
.students__text {
  font-size: 1.6rem;
}
.students__btn {
  text-align: center;
}

.about {
  position: relative;
}
.about:before {
  content: "";
  position: absolute;
  width: 57.4rem;
  height: 57.4rem;
  background: rgba(142, 0, 0, 0.6);
  filter: blur(300px);
  top: 7.2rem;
  right: -9.2rem;
  z-index: -1;
}
.about__block {
  display: flex;
  align-items: end;
  justify-content: start;
  column-gap: 13rem;
}
.about__img {
  width: 49rem;
  flex-shrink: 0;
  position: relative;
}
.about__img img {
  width: 100%;
}
.about__name {
  position: absolute;
  top: 8rem;
  left: 39rem;
  padding: 0.7rem 2rem;
  background: white;
  color: #070707;
  font-size: 2.8rem;
  font-weight: bold;
  white-space: nowrap;
}
.about__text {
  font-size: 2.8rem;
  font-weight: 500;
  width: 91rem;
}

.format__block {
  margin-bottom: 6rem;
}
.format__box {
  display: flex;
  column-gap: 6rem;
  padding: 4rem 6rem;
}
.format__list {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.format__list li {
  padding-left: 2rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  position: relative;
}
.format__list li:last-child {
  margin-bottom: 0;
}
.format__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #8E0000;
}
.format__img {
  width: 36.7rem;
  flex-shrink: 0;
}

.reviews {
  position: relative;
}
.reviews:before {
  content: "";
  position: absolute;
  top: 23.6rem;
  left: -9.2rem;
  width: 57.4rem;
  height: 57.4rem;
  border-radius: 50%;
  background: rgba(142, 0, 0, 0.5);
  filter: blur(200px);
  z-index: -1;
}
.reviews__block {
  margin-bottom: 0;
  position: relative;
  padding: 0 15.5rem 5rem;
}
.reviews__block img {
  width: 100%;
}
.reviews .slick-arrow {
  position: absolute;
  cursor: pointer;
  top: 50%;
  width: 4rem;
  height: 4rem;
  background: white;
  color: #8E0000;
  border-radius: 50%;
  transition: all 0.3s ease-out;
  transform: translateY(-150%);
}
.reviews .slick-arrow svg {
  width: 100%;
  fill: currentColor;
}
.reviews .slick-arrow:hover {
  background: #8E0000;
  color: white;
}
.reviews .arrow-left {
  left: 10rem;
}
.reviews .arrow-right {
  right: 10rem;
}
.reviews .slick-slide {
  padding: 0 4.5rem;
}
.reviews .slick-dots {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: auto;
  display: inline-flex;
  column-gap: 1rem;
}
.reviews .slick-dots li {
  margin: 0;
  line-height: 0;
  width: auto;
  height: auto;
}
.reviews .slick-dots li button {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  background: white;
  border-radius: 50%;
  transition: background-color 0.3s ease-out;
  margin: 0;
}
.reviews .slick-dots li:hover button, .reviews .slick-dots li.slick-active button {
  background: #8E0000;
}

.why__block {
  display: flex;
  column-gap: 6rem;
  justify-content: space-between;
  align-items: start;
}
.why__img {
  width: 84rem;
}
.why__list {
  margin: 0 0 4rem;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 5rem;
}
.why__list li {
  display: flex;
  align-items: center;
  column-gap: 5rem;
  position: relative;
  font-size: 2rem;
}
.why__list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(142, 0, 0, 0.5);
  filter: blur(10px);
}
.why__icon {
  width: 3rem;
}
.why__form .form-block {
  display: flex;
  column-gap: 1rem;
}
.why__form .form-info {
  margin-bottom: 0;
  margin-top: 2rem;
  font-size: 1.4rem;
  opacity: 0.6;
}

.thnx {
  background: url("../img/thnx-bg.png") bottom center no-repeat;
  background-size: cover;
  padding: 6rem 0 16rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 921px) and (max-width: 1365px) {
  .thnx {
    min-height: calc(100vh - 24rem);
  }
}
.thnx__subheading {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}
.thnx__subheading svg {
  width: 4rem;
}
.thnx__heading {
  margin-bottom: 7rem;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}
.thnx__heading span {
  display: block;
  margin-bottom: 2rem;
}
.thnx__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75rem;
}
.thnx__title {
  margin-bottom: 4rem;
  font-size: 2.2rem;
  font-weight: 500;
}
.thnx__list {
  margin-bottom: 4rem;
  width: 100%;
}
.thnx__btn {
  height: 9rem;
  background: #8E0000;
  min-width: 45rem;
  font-size: 3rem;
}

@media screen and (max-width: 920px) {
  .thnx__page .container,
  .thnx__page .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .thnx {
    background-image: url("../img/thnx-bg-mob.png");
    background-position: center center;
    padding: 3rem 0 6rem;
  }
  .thnx__subheading {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .thnx__subheading svg {
    width: 4rem;
  }
  .thnx__heading {
    margin-bottom: 0;
    padding-bottom: 36rem;
    min-height: 43vh;
    font-size: 3rem;
    line-height: 1.3;
  }
  .thnx__heading span {
    margin-bottom: 0;
  }
  .thnx__blocks {
    width: 100%;
  }
  .thnx__title {
    margin-bottom: 2rem;
    font-size: 3.2rem;
  }
  .thnx__list {
    margin-bottom: 3rem;
    width: 100%;
  }
}
@media screen and (min-width: 921px) {
  .thnx__page .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 920px) {
  .thnx__page .for-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html:not(.thnx__page) .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  html:not(.thnx__page) .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .heading {
    font-size: 4rem;
    margin-bottom: 4rem;
    line-height: 1.2;
  }
  .btn {
    height: 8rem;
    padding: 2rem;
    width: 100%;
    font-size: 2.6rem;
    text-transform: uppercase;
    min-width: inherit;
  }
  .btn--arrow {
    margin-right: 4rem;
    width: calc(100% - 4rem);
  }
  .btn__arrow {
    width: 8rem;
    right: -4rem;
  }
  .btn:hover .btn__arrow {
    right: -5rem;
  }
  .btn__small {
    height: 9rem;
    padding: 3rem 8rem;
    width: auto;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-check__item {
    margin-bottom: 2rem;
    padding-left: 5.6rem;
    font-size: 2.4rem;
  }
  .list-check__item:before {
    width: 4rem;
    height: 4rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 6rem 1rem 10rem;
    font-size: 2.4rem;
    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-input {
    height: 8rem;
    padding: 2rem 4rem;
    margin-bottom: 1rem;
    font-size: 2.8rem;
  }
  .form-btn {
    height: 8rem;
    font-size: 2.6rem;
    padding: 2rem;
    margin-top: 1rem;
  }
  .box {
    padding: 2rem;
  }
  .header {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-image: url("../img/bg1-mob.webp");
    min-height: auto;
    background-size: 100% auto;
    background-position: top center;
  }
  .header__heading {
    font-size: 4.8rem;
    line-height: 1.4;
    margin-bottom: 2.4rem;
  }
  .header__text {
    font-size: 2.8rem;
    max-width: inherit;
  }
  .header__info {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 46rem;
    width: 100%;
    font-size: 2.8rem;
  }
  .header__info svg {
    width: 6rem;
  }
  .header__title {
    font-size: 3.2rem;
  }
  .header__form {
    margin-top: 4rem;
  }
  .header__form .form {
    margin-top: 2rem;
  }
  .header__form .form-block {
    flex-direction: column;
  }
  .header__form .form-info {
    font-size: 2rem;
  }
  .tape-wrap {
    height: 8rem;
  }
  .tape-wrap .tape-text {
    font-size: 2.8rem;
  }
  .programs__block {
    row-gap: 2rem;
  }
  .programs__item {
    flex-basis: 100%;
    flex-direction: column;
  }
  .programs__item > div {
    padding: 4rem;
  }
  .programs__img {
    width: 100%;
  }
  .programs__title {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .programs__text {
    font-size: 3.2rem;
  }
  .programs__btn {
    width: 100%;
  }
  .students__blocks {
    flex-direction: column;
    row-gap: 4rem;
  }
  .students__item {
    width: 100%;
  }
  .students__img {
    width: 10rem;
  }
  .students__info {
    font-size: 3.2rem;
  }
  .students__text {
    font-size: 2.4rem;
  }
  .about:before {
    width: 65rem;
    height: 65rem;
    top: 22rem;
    right: -20rem;
    background: rgba(142, 0, 0, 0.4);
    filter: blur(100px);
  }
  .about__block {
    flex-direction: column;
    row-gap: 8rem;
    align-items: start;
  }
  .about__img {
    width: 42.4rem;
  }
  .about__name {
    bottom: 7rem;
    top: auto;
    padding: 2rem 2.5rem;
    font-size: 3.2rem;
    left: 28rem;
    line-height: 1.2;
  }
  .about__text {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .format__block {
    margin-bottom: 4rem;
  }
  .format__box {
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: center;
  }
  .format__list {
    margin-bottom: 2rem;
  }
  .format__list li {
    font-size: 2.4rem;
  }
  .format__img {
    width: 23rem;
  }
  .reviews:before {
    display: none;
  }
  .reviews__block {
    padding: 0 0 10rem;
  }
  .reviews .slick-arrow {
    top: auto;
    bottom: -1rem;
    transform: none;
    width: 8rem;
    height: 8rem;
  }
  .reviews .arrow-left {
    left: 12rem;
  }
  .reviews .arrow-right {
    right: 12rem;
  }
  .reviews .slick-slide {
    padding: 0;
  }
  .why__block {
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
  .why__img {
    width: 100%;
  }
  .why__list {
    row-gap: 4rem;
    margin-bottom: 6rem;
  }
  .why__list li {
    column-gap: 2rem;
    font-size: 2.4rem;
  }
  .why__list li:before {
    width: 6rem;
    height: 6rem;
    fill: rgba(142, 0, 0, 0.5);
    filter: blur(10px);
  }
  .why__icon {
    width: 6rem;
  }
  .why__form .form-block {
    flex-direction: column;
  }
  .why__form .form-info {
    font-size: 2rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  line-height: 1.1;
  background: #0B0B0B;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 5.5rem 0 5.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .footer__text, .footer__documents {
    width: 100%;
  }
  .footer__documents {
    margin-bottom: 2rem;
  }
}
.footer a {
  color: white;
  transition: all 0.3s ease-out;
}
.footer a:hover {
  color: #8E0000;
  border-color: #8E0000;
}
.footer__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__block {
    flex-wrap: wrap;
    row-gap: 4rem;
    text-align: center;
  }
}
.footer__phone a {
  text-decoration: none;
  font-weight: 500;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
  font-size: 1.4rem;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid white;
  height: 4rem;
  min-width: 17rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer__social a {
    height: 8rem;
    min-width: 28rem;
    font-size: 2.4rem;
  }
}
.footer__social a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 767px) {
  .footer__social a svg {
    width: 4rem;
  }
}

/*ENDfooter*/

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