html {
  font-size: 1.5625vw;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 821px) {
  html {
    font-size: 0.521vw;
  }
}
@media (max-width: 821px) {
  .footer__links {
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
  }
  .footer__links a {
    font-size: 2rem !important;
  }
}
.footer__row {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__links a {
  color: #fff;
  font-size: 1.6rem;
}

body {
  font-family: "Montserrat", 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: 9rem 0;
}

.container {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
}

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

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

.btn {
  display: inline-flex;
  column-gap: 1rem;
  min-width: 30rem;
  justify-content: center;
  align-items: center;
  padding: 1.7rem 3rem 1.4rem;
  height: 5.7rem;
  font-size: 2.4rem;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 700;
  color: #070707;
  background: #fab31b;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: #fbc44d;
}
.btn img {
  width: 2rem;
}
.btn--arrow {
  border: 3px solid #fab31b;
  color: white;
  position: relative;
  background: none;
}
.btn__arrow {
  width: 8rem;
  position: absolute;
  top: 50%;
  right: -6rem;
  transform: translateY(-50%);
  transition: right 0.3s ease-out;
}
.btn:hover.btn--arrow {
  background: none;
}
.btn:hover .btn__arrow {
  right: -10rem;
}

.box {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}

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

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  width: 37rem;
  display: flex;
  align-items: start;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "Bebas Neue", sans-serif;
}
.list__item:last-child {
  margin-bottom: 0;
}
.list__item:before {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: #fab31b;
  filter: blur(12px);
  z-index: -1;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
  color: black;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 10rem 2rem;
  background: white;
  position: relative;
  min-width: 460px;
  max-width: 80vw;
  max-height: 100vh;
  overflow-y: auto;
  color: #070707;
  scrollbar-color: #fab31b;
  scrollbar-width: thin;
}
.modal__content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.modal__content::-webkit-scrollbar-track {
  background: rgba(250, 179, 27, 0.2);
}
.modal__content::-webkit-scrollbar-thumb {
  background: #fab31b;
}
@media screen and (max-width: 820px) {
  .modal__content {
    padding: 6rem 2rem;
    width: 100%;
    min-width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
  }
}
@media screen and (max-width: 820px) {
  .modal .form {
    padding-top: calc((100vh - 55rem) / 2);
  }
}
.modal .form-input {
  background: rgba(250, 179, 27, 0.2);
  color: #070707;
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 15px;
  height: 15px;
  cursor: pointer;
  display: flex;
}
.modal__heading {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 30px;
  text-align: center;
}

.form-control {
  position: relative;
}
.form .error {
  color: red;
  font-size: 12px;
  position: absolute;
  display: none;
  top: 0rem;
  right: 1rem;
}
.form-input {
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  height: 5rem;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #070707;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-btn {
  outline: none;
  border: none;
  margin-top: 2rem;
  font-size: 2.4rem;
  font-family: "Bebas Neue", sans-serif;
  width: 100%;
  min-width: inherit;
  height: 5rem;
  padding: 1rem 1rem 1rem;
  cursor: pointer;
  background: #fab31b;
  color: #070707;
  border-radius: 0;
  box-shadow: none;
}
.form-btn:hover {
  background: #fbc44d;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    margin-left: 0;
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}
.header {
  min-height: 100vh;
  background: url("../img/bg1.webp") center bottom no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 821px) and (max-width: 1024px) and (orientation: portrait) {
  .header {
    min-height: 60vw;
  }
}
.header__col {
  width: 97rem;
}
.header__heading {
  font-size: 12.6rem;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 6rem;
  position: relative;
}
.header__list {
  margin: 0 0 6rem;
  padding: 0;
  list-style-type: none;
}
.header__list li {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 5rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.header__list li:last-child {
  margin-bottom: 0;
}
.header__list li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  width: 1rem;
  height: 1rem;
  background: #fab31b;
  border-radius: 50%;
}
.header__list li:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  box-sizing: border-box;
}
.header__text {
  font-size: 2.3rem;
  font-weight: 500;
  opacity: 0.5;
}
.header__form {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 1.7rem;
}
.header__form .form {
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
.header__form .form .captcha {
  display: none;
}
.header__form .form .captcha + div {
  display: none;
}
.header__form .form-control {
  width: 20rem;
  flex-shrink: 0;
}
.header__form .form-input {
  margin-bottom: 0;
}
.header__form .form-btn {
  margin-top: 0;
}
.header__btn {
  position: relative;
}
.header__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.7rem;
  height: 6.7rem;
  border-radius: 50%;
  color: white;
  transform: translateY(-50%) translateX(-50%);
  background: #fab31b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.1s ease-out, height 0.1s ease-out;
}
.header__play svg {
  width: 3.6rem;
}
.header__play .pulse:after,
.header__play .pulse:before,
.header__play:before,
.header__play:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fab31b;
  transition: all 0.3s ease-out;
  animation: pulse 2.8s ease-out infinite;
  pointer-events: none;
}
.header__play:before {
  animation-delay: 0.7s;
}
.header__play:after {
  animation-delay: 1.4s;
}
.header__play .pulse:before {
  animation-delay: 2.1s;
}
.header__play:hover {
  background: #fbc44d;
}
.header__play:hover .pulse:after,
.header__play:hover .pulse:before,
.header__play:hover:before,
.header__play:hover:after {
  animation-play-state: paused;
}

.tape-wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
  height: 5rem;
  display: flex;
  align-items: center;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.tape-wrap .tape-text {
  display: inline-block;
  width: auto;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Montserrat", 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: 5rem;
}
.tape-wrap .tape-text span:after {
  content: "";
  position: absolute;
  right: -3rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #fab31b;
  top: 50%;
  transform: translateY(-50%);
}

.product__text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 6rem;
}
.product__list {
  margin: 0 0 6rem;
  padding: 0;
  list-style-type: none;
}
.product__list li {
  display: flex;
  align-items: center;
  column-gap: 6.3rem;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.product__list li:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7rem;
  height: 7rem;
  background: url("../img/icon-list.webp") center center no-repeat;
  background-size: contain;
}
.product__list li:last-child {
  margin-bottom: 0;
}

.info {
  padding-top: 0;
  padding-bottom: 0;
}
.info__block {
  display: flex;
  column-gap: 3rem;
  margin-left: -10vw;
}
.info__img {
  width: 94.5rem;
  flex-shrink: 0;
}
.info__list {
  margin: 0 0 6rem;
  padding: 0;
  list-style-type: none;
}
.info__list li {
  display: flex;
  align-items: center;
  column-gap: 3rem;
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: normal;
}
.info__list li:last-child {
  margin-bottom: 0;
}
.info__list li:before {
  content: "";
  width: 4rem;
  height: 0.5rem;
  display: block;
  flex-shrink: 0;
  background: #fab31b;
}

.valut__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15.2rem;
  line-height: normal;
  position: relative;
  font-family: "Bebas Neue", sans-serif;
}
.valut__block:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10vw;
  width: 100vw;
  height: 6rem;
  margin-top: -3.3rem;
  background: rgba(250, 179, 27, 0.3);
  z-index: -1;
}
.valut__heading {
  font-size: 4.8rem;
}

.curses {
  position: relative;
}
.curses:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 25.7rem;
  left: 14.2rem;
  width: 158.3rem;
  height: 32.4rem;
  border-radius: 158.3rem;
  background: rgba(248, 134, 0, 0.6);
  filter: blur(250px);
}
.curses__block {
  display: flex;
  flex-direction: column;
  row-gap: 6rem;
  margin-bottom: 6rem;
}
.curses__box {
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  column-gap: 17rem;
}
.curses__img {
  width: 61rem;
  flex-shrink: 0;
}
.curses__title {
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 4rem;
  line-height: normal;
}
.curses__time {
  display: flex;
  column-gap: 1rem;
  margin-bottom: 3.5rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: normal;
}
.curses__time img {
  width: 7.2rem;
  flex-shrink: 0;
  margin-top: -2.5rem;
}
.curses__btn {
  background: none;
  border: 3px solid #fab31b;
  color: white;
}
.curses__btn:hover {
  background: #fab31b;
  color: #070707;
}

.review {
  padding: 0;
  position: relative;
}
.review:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -7.6rem;
  left: 14.2rem;
  width: 158.3rem;
  height: 32.4rem;
  border-radius: 158.3rem;
  background: rgba(248, 134, 0, 0.6);
  filter: blur(250px);
}
.review__block {
  display: flex;
  align-items: center;
  margin-left: -3rem;
}
.review__img {
  width: 65rem;
  flex-shrink: 0;
}
.review__box {
  width: 91rem;
  flex-shrink: 0;
  padding: 3.7rem 2rem 5.4rem 3rem;
  background: rgba(255, 255, 255, 0.15);
  font-size: 3rem;
  line-height: 1.3;
  position: relative;
}
.review__before {
  position: absolute;
  top: -2.1rem;
  width: 6.3rem;
  left: 0;
}
.review__after {
  position: absolute;
  width: 6.3rem;
  right: 0;
  bottom: -2rem;
}

.contacts__box {
  display: flex;
  align-items: center;
  column-gap: 10rem;
  background: rgba(255, 255, 255, 0.15);
}
.contacts__block {
  padding: 5rem;
  line-height: normal;
}
.contacts__img {
  width: 74.6rem;
  flex-shrink: 0;
}
.contacts__title {
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 2rem;
  line-height: 1;
}
.contacts__text {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.contacts__item {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  margin-bottom: 2rem;
}
.contacts__item:last-child {
  margin-bottom: 0;
}
.contacts__item img {
  height: 6.5rem;
  margin-top: -2rem;
}

.police {
  padding-top: 0;
  position: relative;
}
.police:before {
  content: "";
  position: absolute;
  bottom: 16rem;
  left: 19.5rem;
  width: 68.1rem;
  height: 69.2rem;
  border-radius: 692rem;
  background: rgba(248, 119, 0, 0.5);
  filter: blur(300px);
  z-index: -1;
}
.police__img {
  width: 76.5rem;
}

.lessons__block {
  margin: 0 -1rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.lessons__item {
  padding: 0 1rem;
  width: 33.33%;
}
.lessons__box {
  background: rgba(250, 179, 27, 0.2);
  padding: 2rem;
  height: 100%;
}
.lessons__title {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
}
.lessons__num {
  font-size: 6.4rem;
  font-family: "Bebas Neue", sans-serif;
  line-height: normal;
}
.lessons__text {
  font-size: 1.6rem;
  line-height: 1;
}
.lessons__text.big {
  min-width: 146rem;
  font-size: 2.4rem;
  line-height: normal;
}

.thnx {
  min-height: calc(100vh - 16rem);
  background: url("../img/bg_thnx.webp") center bottom no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 821px) and (max-width: 1024px) and (orientation: portrait) {
  .thnx {
    min-height: 60vw;
  }
}
.thnx__col {
  width: 92rem;
}
.thnx__heading {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 4rem;
}
.thnx__heading svg {
  width: 4rem;
  flex-shrink: 0;
}
.thnx__text {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (min-width: 1366px) {
  .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.3s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.9s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 2.1s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 2.7s, transform 0.6s ease-out;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .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%;
  }
}
@media screen and (min-width: 821px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 820px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .heading {
    font-size: 4.4rem;
    margin-bottom: 8rem;
  }
  .btn {
    height: 11rem;
    padding: 3rem 6rem;
    width: 100%;
    font-size: 4.8rem;
    column-gap: 2rem;
  }
  .btn img {
    width: 4rem;
  }
  .btn--arrow {
    margin-right: 8rem;
    width: calc(100% - 8rem);
    padding-right: 10rem;
    height: 12rem;
    border-width: 2px;
    font-size: 4rem;
  }
  .btn__arrow {
    width: 16rem;
    right: -8rem;
  }
  .box {
    padding: 2rem;
  }
  .list__item {
    font-size: 3.6rem;
    width: 100%;
    margin-bottom: 10rem;
    align-items: center;
  }
  .list__item:before {
    width: 4rem;
    height: 4rem;
    filter: blur(12px);
  }
  .form-input {
    height: 8rem;
    padding: 2rem 4rem;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    line-height: 1;
  }
  .form-btn {
    height: 10rem;
    font-size: 4rem;
    padding: 2rem;
    margin-top: 0;
  }
  .tape-wrap {
    height: 8rem;
  }
  .tape-wrap .tape-text {
    font-size: 2.8rem;
  }
  .tape-wrap .tape-text span {
    margin-right: 6rem;
  }
  .tape-wrap .tape-text span:after {
    right: -4rem;
    width: 1rem;
    height: 1rem;
  }
  .header {
    padding-bottom: 0;
    background-image: url("../img/bg1-mob.webp");
    background-position: top center;
    background-size: 100% auto;
    min-height: auto;
    align-items: start;
  }
  .header__col {
    width: 100%;
  }
  .header__heading {
    margin-bottom: 4rem;
    font-size: 6rem;
  }
  .header__text {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .header__list {
    margin-bottom: 17.5rem;
  }
  .header__list li {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
  .header__list li:after {
    top: 1.5rem;
  }
  .header__list li:before {
    top: 1.5rem;
  }
  .header__form {
    margin: 0 -2rem;
    padding: 2rem 4rem;
    max-width: inherit;
  }
  .header__form .form {
    flex-direction: column;
  }
  .header__form .form-control {
    width: 100%;
  }
  .header__form .form-input {
    margin-bottom: 2rem;
  }
  .header__form .form-btn {
    margin-top: 0;
  }
  .header__play {
    top: 18%;
    left: 50%;
    width: 7rem;
    height: 7rem;
  }
  .header__play svg {
    width: 3rem;
  }
  .product__text {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .product__list {
    margin-bottom: 8rem;
  }
  .product__list li {
    font-size: 2.4rem;
    column-gap: 0rem;
    margin-bottom: 2rem;
  }
  .product__list li:before {
    width: 9rem;
    height: 9rem;
  }
  .info {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .info__block {
    flex-direction: column-reverse;
    row-gap: 8rem;
    max-width: inherit;
    margin-left: 0;
  }
  .info__img {
    margin: 0 -2rem;
    min-width: calc(100% + 4rem);
    max-width: inherit;
  }
  .info__list {
    margin-bottom: 0;
  }
  .info__list li {
    margin-bottom: 4rem;
    font-size: 2.4rem;
    column-gap: 2rem;
  }
  .valut__block {
    flex-direction: column;
    row-gap: 8rem;
    font-size: 10rem;
  }
  .valut__block:before {
    left: -2rem;
    height: 12rem;
    top: 64%;
  }
  .valut__heading {
    font-size: 4.4rem;
  }
  .curses:before {
    display: none;
  }
  .curses__block {
    row-gap: 4rem;
    margin: 0 -2rem;
  }
  .curses__box {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .curses__box > div {
    padding: 4rem 2rem;
  }
  .curses__img {
    width: 100%;
  }
  .curses__title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .curses__time {
    margin-bottom: 4rem;
    font-size: 2.4rem;
  }
  .curses__time img {
    width: 9rem;
    margin-top: -4rem;
  }
  .curses__btn {
    height: 9rem;
  }
  .contacts__box {
    flex-direction: column;
    margin: 0 -2rem;
  }
  .contacts__block {
    padding: 4rem 2rem;
  }
  .contacts__title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .contacts__text {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .contacts__item {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
  .contacts__item img {
    height: 8rem;
    margin-top: -3rem;
  }
  .lessons__item {
    width: 100%;
  }
  .lessons__num {
    display: none;
  }
  .lessons__title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .lessons__text {
    font-size: 2.4rem;
  }
  .lessons__text.big {
    min-width: 100%;
    font-size: 2.8rem;
  }
  .lessons__text.big b {
    display: inline-block;
    margin-top: 2rem;
  }
  .thnx {
    background-image: url("../img/bg_thnx_mob.webp");
    background-position: center center;
    padding-top: 8rem;
    height: calc(100vh - 34rem);
    min-height: 120vw;
    align-items: start;
  }
  .thnx__col {
    width: 100%;
  }
  .thnx__heading {
    font-size: 2.8rem;
  }
  .thnx__text {
    font-size: 2.8rem;
    font-weight: 500;
  }
}
/*footer*/
.footer {
  padding: 5rem 0;
  font-size: 1.6rem;
  line-height: normal;
  text-transform: uppercase;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 820px) {
  .footer {
    font-size: 1.95rem;
    padding: 6rem 0;
  }
}
.footer a {
  color: #fff;
  transition: color 0.3s ease-out;
}
.footer a:hover {
  color: #fab31b;
}
.footer__contacts {
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
}
.footer__contacts a {
  text-decoration: none;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .footer__block {
    flex-direction: column;
    row-gap: 4rem;
  }
}
.footer__pay {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media screen and (max-width: 820px) {
  .footer__pay {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 4rem;
  }
}
.footer__pay span {
  margin-right: 2rem;
}
@media screen and (max-width: 820px) {
  .footer__pay span {
    margin-right: 0;
    white-space: nowrap;
  }
}
.footer__pay img {
  width: 10rem;
}

/*ENDfooter*/

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