@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url(../fonts/Gilroy-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url(../fonts/Gilroy-Semibold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal
}
@font-face {
  font-family: Gilroy;
  font-display: swap;
  src: url(../fonts/Gilroy-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: NotoSans;
  font-display: swap;
  src: url(../fonts/NotoSans-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal
}
@font-face {
  font-family: NotoSans;
  font-display: swap;
  src: url(../fonts/NotoSans-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url(../fonts/Montserrat-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal
}
:root {
  --background-dark-grey: #181818;
  --background-black: #101010;
  --background-grey: #3C3C3C;
  --background-light-grey: #505050;
  --orange: #ffc700;
  --blue: #0094e8;
  --light-grey: #969696;
  --green: #24C16C;
  --red: #F54D4D;
  --text-white-color: #fff;
  --text-black-color: #000;
  --title-font: "Gilroy",sans-serif;
  --text-font: "NotoSans",sans-serif;
  --button-font: "Montserrat",sans-serif
}
* {
  padding: 0;
  margin: 0;
  border: 0
}
*,
*::after,
*::before {
  box-sizing: border-box
}
*::after,
*::before {
  display: inline-block
}
body,
html {
  height: 100%;
  min-width: 320px
}
body {
  color: var(--text-white-color);
  font-family: var(--text-font);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: .2px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
button,
input,
textarea {
  font-family: var(--text-font);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent
}
input,
textarea {
  width: 100%
}
label {
  display: inline-block
}
button,
option,
select {
  cursor: pointer
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}
ul li {
  list-style: none
}
img {
  vertical-align: top
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
body {
  background: var(--background-black) url(../images/training/body.webp) top center/cover no-repeat
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 96px
}
@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}
.wrapper > main {
  flex: 1 1 auto
}
.wrapper > * {
  min-width: 0
}
[class*=__container] {
  max-width: 81.875rem;
  margin: 0 auto;
  padding: 0 .9375rem
}
.spollers {
  display: grid;
  gap: 24px
}
.spollers__item {
  background: var(--background-dark-grey);
  border-radius: 20px
}
.spollers__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  cursor: default;
  text-align: left;
  border-radius: 20px;
  padding: 36px 48px;
  background: var(--background-dark-grey);
  position: relative;
  list-style: none
}
.spollers__title::-webkit-details-marker,
.spollers__title::marker {
  display: none
}
._spoller-init .spollers__title {
  cursor: pointer
}
._spoller-init .spollers__title::after {
  content: "";
  flex-shrink: 0;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s,-webkit-transform .5s ease 0s;
  width: 25px;
  height: 25px;
  background: url(../images/icons/arrow_down.svg) center/cover no-repeat
}
._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg)
}
.spollers__body {
  padding: 36px 48px
}
.bg-white {
  background-color: var(--text-white-color);
  color: var(--background-dark-grey)
}
.bg-orange {
  background-color: var(--orange);
  color: var(--background-dark-grey)
}
.text {
  font-family: var(--text-font)
}
.text--tiny {
  font-size: 12px;
  letter-spacing: -.42px;
  font-weight: 400
}
.text--small {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.56px
}
.text--base {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: .2px
}
.text--big {
  font-size: 24px;
  font-weight: 700
}
.text--white {
  color: var(--text-white-color)
}
.text--grey {
  color: var(--light-grey)
}
.text--grey--dark {
  color: var(--background-light-grey)
}
.text--semibold {
  font-weight: 600
}
.text--bold {
  font-weight: 700
}
.text--black {
  color: var(--background-black)
}
.text--font--accent {
  font-family: var(--button-font)
}
.text--center {
  text-align: center
}
.title {
  font-family: var(--title-font)
}
.title--thin {
  font-size: 12px;
  font-weight: 300
}
.title--tiny {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2
}
.title--smallest {
  font-size: 18px;
  font-weight: 600;
  line-height: 1
}
.title--small {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .28px
}
.title--large {
  font-size: 24px;
  font-weight: 600
}
.title--middle {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.4px
}
.title--base {
  font-size: 64px;
  font-weight: 700;
  line-height: 1
}
.title--big {
  font-size: 72px;
  font-weight: 700;
  line-height: .9
}
.title--regular {
  font-weight: 400
}
.title--bold {
  font-weight: 700
}
.title--semibold {
  font-weight: 600
}
.title--white {
  color: var(--text-white-color)
}
.title--black {
  color: var(--text-black-color)
}
.title--orange {
  color: var(--orange)
}
.title--green {
  color: #aaff36
}
.title--green--dark {
  color: var(--green)
}
.title--grey {
  color: rgba(255,255,255,.7)
}
.title--grey--light {
  color: var(--light-grey)
}
.title--grey--darkest {
  color: var(--background-grey)
}
.title--grey--dark {
  color: var(--background-light-grey)
}
.title--gradient {
  background: linear-gradient(91deg,#a525dd .97%,#0089de 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}
.title--center {
  text-align: center
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -webkit-max-content;
  width: max-content;
  text-align: center
}
.button:hover {
  cursor: pointer
}
.button--full {
  width: 100%
}
.button--icon {
  width: 68px;
  height: 68px;
  border-radius: 20px
}
.button .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}
.button--center {
  margin: 0 auto
}
.button--blue {
  background: linear-gradient(180deg,#2ca4e0 0,#0d83bf 99.26%);
  color: #fff;
  fill: #fff
}
.button--blue--dark {
  fill: #fff;
  background: #004498
}
.button--small {
  padding: 12px 36px;
  border-radius: 25px;
  font-family: var(--text-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.56px
}
.button--middle {
  font-family: var(--button-font);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 36px;
  border-radius: 20px;
  min-height: 62px
}
.button--base {
  padding: 32px 36px;
  border-radius: 20px;
  font-family: var(--button-font);
  font-size: 18px;
  font-weight: 700
}
.button--big {
  padding: 25px 55px;
  border-radius: 20px;
  font-family: var(--button-font);
  font-size: 18px;
  font-weight: 700
}
.button--orange {
  color: var(--background-dark-grey);
  background: var(--orange);
  transition: .3s background-color;
  position: relative
}
.button--orange::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(16,16,16,.08);
  border-radius: 20px;
  opacity: 0;
  z-index: 1;
  transition: .3s opacity
}
.button--orange:hover::before {
  opacity: 1
}
.button--black {
  color: var(--text-white-color);
  background: var(--background-dark-grey);
  transition: background .3s
}
.button--black--light {
  background: rgba(24,24,24,.6)
}
.button--white {
  background: #fff;
  color: var(--background-dark-grey);
  transition: .3s background-color
}
.button--white:hover {
  background: var(--background-light-grey)
}
.button--white .icon {
  color: var(--background-dark-grey)
}
.button--gray {
  background: var(--background-grey);
  color: #fff;
  transition: .3s background-color
}
.button--gray:hover {
  background: rgba(255,255,255,.7)
}
.button--gray:active {
  background: rgba(16,16,16,.08)
}
.button--gray .icon {
  fill: #fff
}
.button--green {
  background-color: #24c16c;
  color: var(--background-dark-grey)
}
.button--arrow {
  gap: 10px
}
.button--arrow::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  background: url(../images/icons/arrow_forward.svg) center center/contain no-repeat
}
.button--lock {
  gap: 8px
}
.button--lock::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  background: url(../images/icons/shield_lock.svg) center center/contain no-repeat
}
.button--person {
  gap: 8px
}
.button--person::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  background: url(../images/icons/person.svg) center center/contain no-repeat
}
.button--check {
  gap: 5px
}
.button--check::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  background: url(../images/icons/check_circle.svg) center center/contain no-repeat
}
.button--chat {
  gap: 10px
}
.button--chat::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  background: url(../images/icons/chat_bubble.svg) center center/contain no-repeat
}
.swiper-pagination {
  display: none
}
.swiper-initialized .swiper-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 8px
}
.swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--background-light-grey)
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--orange)
}
.hero {
  padding: 218px 0 350px 0;
  background: url(../images/training/hero-bg.webp) top center/cover no-repeat
}
.hero__title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 96px;
  line-height: 82%;
  text-align: center;
  color: var(--text-white-color)
}
.hero__title:not(:last-child) {
  margin-bottom: 5px
}
.hero__subtitle {
  font-family: var(--title-font);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  background: linear-gradient(90deg,#ecb869 0,#b75e26 100%);
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  border-radius: 62px;
  padding: 8px 37px;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: .01em;
  color: var(--background-black)
}
.hero__subtitle:not(:last-child) {
  margin-bottom: 52px
}
.hero__button {
  font-family: var(--button-font);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 65px;
  min-width: 355px;
  min-height: 62px;
  padding: 8px 36px 8px 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  background-color: var(--text-white-color);
  color: var(--background-black);
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  transition: background .6s,padding .3s
}
.hero__button:not(:last-child) {
  margin-bottom: 32px
}
.hero__button span {
  position: relative;
  z-index: 1
}
.hero__button .hero__button-icon {
  position: absolute;
  bottom: 14px;
  left: 19px;
  width: 34px;
  height: 35px;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s,-webkit-transform .3s;
  z-index: 0
}
.hero__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px
}
.hero__item {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 40px;
  padding: 8px 34.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-family: var(--button-font);
  font-weight: 700;
  font-size: 18px;
  position: relative;
  z-index: 0;
  transition: gap .3s
}
.hero__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(11.6999998093px);
  backdrop-filter: blur(11.6999998093px);
  background: rgba(16,16,16,.4);
  border-radius: 40px;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  transition: all .3s
}
.hero__item img {
  align-self: flex-start;
  width: 28px;
  height: 28px;
  -o-object-fit: cover;
  object-fit: cover
}
.hero__item .hero__item-text-2 {
  display: none
}
.prices {
  margin-bottom: 96px
}
.prices__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px 28px
}
.prices__item {
  width: 100%;
  position: relative;
  z-index: 0;
  background: var(--background-dark-grey);
  border-radius: 40px
}
.prices__item:first-child {
  max-width: 396px
}
.prices__item:first-child .prices__head {
  background: linear-gradient(162deg,#14143d 0,#101010 43%,#2d2000 100%);
  position: relative;
  z-index: 0;
  overflow: hidden
}
.prices__item:first-child .prices__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(110.21% 95.22% at 14.77% 91.86%,rgba(95,0,0,0) 0,rgba(255,100,100,.2) 100%);
  z-index: -1
}
.prices__item:last-child {
  max-width: 396px
}
.prices__item:last-child .prices__head {
  background: linear-gradient(227deg,#2d2000 0,#101010 43%,#14143d 100%)
}
.prices__head {
  border-radius: 40px;
  padding: 36px;
  box-shadow: 0 12px 22px 0 #000;
  margin-bottom: 30px
}
.prices__head.bg-white .prices__training {
  color: var(--background-black)
}
.prices__head.bg-white .prices__btn {
  background-color: var(--background-dark-grey);
  color: var(--text-white-color);
  transition: background .3s;
  border-radius: 24px;
  min-height: 86px
}
.prices__indicator {
  position: absolute;
  top: 6px;
  right: -30px;
  z-index: 2;
  -webkit-transform: rotate(21deg);
  transform: rotate(21deg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 33px;
  padding: 8px 24px;
  background-color: var(--blue)
}
.prices__indicator img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
  object-fit: cover
}
.prices__indicator.bg-orange {
  background-color: var(--orange);
  color: var(--background-dark-grey)
}
.prices__training {
  color: var(--orange)
}
.prices__text {
  margin: 32px 0
}
.prices__price-block {
  margin-bottom: 32px
}
.prices__oldprice {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative
}
.prices__oldprice::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--red);
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg)
}
.prices__btn {
  width: 100%;
  border-radius: 20px;
  background-color: var(--text-white-color);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: var(--background-dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  transition: background .3s, color .3s
}
.prices__body {
  padding: 0 45px 48px 45px
}
.prices__list {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.prices__list-first {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange)
}
.prices__list-free {
  margin-left: auto;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-align: center;
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 6px 15px
}
.prices__list-item {
  display: flex;
  align-items: center;
  gap: 8px
}
.aboutus {
  margin-bottom: 96px
}
.aboutus__head {
  margin-bottom: 64px
}
.aboutus__subtitle:not(:last-child) {
  margin-bottom: 16px
}
.aboutus__title:not(:last-child) {
  margin-bottom: 16px
}
.aboutus__text {
  max-width: 1122px;
  margin: 0 auto;
  font-size: 18px
}
.aboutus__slide {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.aboutus__slide-img {
  border-radius: 50%;
  padding: 16px;
  width: 74px;
  height: 74px;
  display: grid;
  place-content: center;
  background: var(--background-dark-grey)
}
.aboutus__slide-img img {
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
  object-fit: cover
}
.banner-block {
  margin-bottom: 96px
}
.banner {
  margin-bottom: 32px
}
.banner__body {
  position: relative;
  z-index: 0;
  border-radius: 40px;
  padding: 96px 36px;
  background: linear-gradient(270deg,rgba(16,16,16,0) 0,#101010 100%)
}
.banner__content {
  max-width: 630px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px
}
.banner-reverse .banner__content {
  margin-left: auto
}
.banner__text {
  font-size: 18px
}
.banner__img {
  border-radius: 40px;
  overflow: hidden
}
.banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.banner__img--right {
  right: -114px
}
.banner__img--right img {
  -o-object-position: right;
  object-position: right
}
.banner__img--left {
  left: -60px
}
.banner__img--left img {
  -o-object-position: left;
  object-position: left
}
.consultation {
  border-radius: 40px;
  padding: 36px;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}
.consultation__content {
  max-width: 801px;
  width: 100%
}
.consultation__title {
  margin-bottom: 10px
}
.consultation__btn {
  max-width: 343px;
  width: 100%;
  padding: 20px 32px
}
.consultation__btn svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px
}
.faq {
  margin-bottom: 96px
}
.faq__head {
  display: block;
  border-radius: 40px;
  padding: 48px;
  background: var(--background-dark-grey)
}
.faq__head:not(:last-child) {
  margin-bottom: 24px
}
.faq__title span:last-child {
  display: none
}
.swiper {
  overflow: hidden
}
.swiper-initialized {
  touch-action: pan-y
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative
}
.swiper-vertical .swiper-wrapper {
  flex-direction: column
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start
}
.swiper-initialized .swiper-slide {
  flex-shrink: 0
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.swiper-button-lock {
  display: none!important
}
@media (min-width:29.99875em) {
  .aboutus__head {
    text-align: center
  }
}
@media (min-width:40.62375em) {
  .aboutus__wrapper {
    display: grid!important;
    grid-template-columns: repeat(auto-fit,minmax(290px,1fr));
    gap: 32px 55px
  }
}
@media (min-width:47.99875em) {
  .prices {
    margin-top: -132px
  }
  .banner__img {
    position: absolute;
    top: 0;
    width: calc(100% + 114px);
    height: 100%;
    z-index: -1
  }
  .banner__img--right {
    right: -114px
  }
  .banner__img--right img {
    -o-object-position: right;
    object-position: right
  }
  .banner__img--left {
    width: calc(100% + 100px);
    height: calc(100% + 65px);
    top: -51px;
    left: -105px
  }
}
@media (min-width:61.99875em) {
  .prices__head.bg-white {
    padding: 54px 36px 36px 36px
  }
}
@media screen and (max-width:1024px) {
  .title--tablet--center {
    text-align: center
  }
  .button--base {
    padding: 22px 36px;
    width: 100%
  }
  .button--big {
    padding: 22px 36px;
    width: 100%
  }
}
@media screen and (max-width:768px) {
  .title--base {
    font-size: 56px
  }
}
@media screen and (max-width:600px) {
  .title--big {
    font-size: 52px;
    line-height: 1
  }
  .button--small {
    width: 100%
  }
  .button--middle {
    padding: 20px 10px
  }
}
@media screen and (max-width:420px) {
  .title--base {
    font-size: 42px
  }
  .title--mobile--small {
    font-size: 36px;
    letter-spacing: .36px
  }
  .title--mobile--center {
    text-align: center
  }
  .button--base {
    border-radius: 48px
  }
  .button--big {
    border-radius: 48px
  }
}
@media screen and (max-width:360px) {
  .title--mobile--small {
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1
  }
}
@media screen and (max-width:350px) {
  .text--base {
    font-size: 18px;
    letter-spacing: 0
  }
  .title--small {
    font-size: 24px
  }
  .title--base {
    font-size: 36px
  }
  .title--big {
    font-size: 36px
  }
}
@media (max-width:81.875em) {
  .banner__img {
    opacity: .5
  }
}
@media (max-width:61.99875em) {
  .hero__title {
    font-size: 72px
  }
  .hero__subtitle {
    font-size: 23px
  }
  .prices__items {
    align-items: stretch;
    flex-wrap: wrap
  }
  .prices__item {
    max-width: calc(50% - 28px);
    flex: 1 1 auto
  }
  .prices__item:last-child {
    order: 0
  }
  .prices__item:nth-child(2) {
    order: 1
  }
  .prices__item:first-child {
    order: 2
  }
  .prices__head.bg-white .prices__btn {
    border-radius: 20px;
    min-height: 62px
  }
}
@media (max-width:47.99875em) {
  .hero {
    padding: 117px 0;
    background: url(../images/training/hero-bg.webp) top center/200% no-repeat
  }
  .hero__title:not(:last-child) {
    margin-bottom: 0
  }
  .hero__subtitle {
    background: 0 0;
    padding: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }
  .hero__subtitle span {
    display: block;
    border-radius: 62px;
    padding: 5px 20px;
    text-align: center
  }
  .hero__subtitle span:first-child {
    background: linear-gradient(90deg,#ecb869 0,#b75e26 100%);
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg)
  }
  .hero__subtitle span:last-child {
    background: linear-gradient(90deg,#b75e26 0,#ecb869 100%);
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg)
  }
  .prices__item {
    max-width: 396px
  }
  .banner-block__container {
    padding: 0 8px
  }
  .banner__body {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    background: url(../images/training/banner-1-bg.webp) top center/cover no-repeat
  }
  .banner-reverse .banner__body {
    flex-direction: column;
    background: url(../images/training/banner-2-bg.webp) top center/cover no-repeat
  }
  .banner__content {
    padding: 36px 24px
  }
  .banner-reverse .banner__content {
    margin-left: 0
  }
  .banner__img {
    opacity: 1;
    margin-top: -9.5%
  }
  .banner__img--left {
    margin: -10.5% -8px 0 -8px
  }
  .consultation {
    flex-direction: column;
    align-items: stretch;
    gap: 24px
  }
  .consultation__btn {
    margin: 0 auto
  }
}
@media (max-width:40.62375em) {
  .spollers__title {
    padding: 36px 24px
  }
  .spollers__title.title--small {
    font-size: 23px
  }
  .spollers__body {
    padding: 0 24px 36px 24px;
    font-size: 18px
  }
  .aboutus__slider {
    margin: 0 -7px
  }
  .aboutus__wrapper {
    margin-bottom: 32px
  }
  .aboutus__slide {
    border-radius: 40px;
    padding: 24px 26px 32px 26px;
    -webkit-backdrop-filter: blur(11.6999998093px);
    backdrop-filter: blur(11.6999998093px);
    background: var(--background-dark-grey)
  }
  .aboutus__slide-img {
    background: var(--background-black);
    width: 86px;
    height: 86px
  }
  .aboutus__slide-img img {
    width: 54px;
    height: 54px
  }
  .faq__head {
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
  }
  .faq__head::after {
    content: "";
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: url(../images/icons/arrow-right-white.svg) center/contain no-repeat
  }
  .faq__title {
    font-size: 52px
  }
  .faq__title span:first-child {
    display: none
  }
  .faq__title span:last-child {
    display: block
  }
}
@media (max-width:37.49875em) {
  .hero__title {
    font-size: 62px
  }
  .hero__subtitle:not(:last-child) {
    margin-bottom: 57px
  }
  .hero__button:not(:last-child) {
    margin-bottom: 57px
  }
}
@media (max-width:29.99875em) {
  .hero__button {
    min-width: 0
  }
  .hero__item {
    max-width: 100%;
    width: 100%
  }
  .hero__item .hero__item-text-1 {
    display: none
  }
  .hero__item .hero__item-text-2 {
    display: block
  }
  .prices__indicator {
    right: -20px;
    font-size: 22px
  }
  .prices__title {
    font-size: 36px;
    font-weight: 700
  }
  .prices__training {
    font-size: 22px
  }
  .prices__oldprice {
    font-size: 22px
  }
  .prices__price {
    font-size: 36px;
    font-weight: 700
  }
  .aboutus__head {
    margin-bottom: 32px
  }
  .aboutus__subtitle {
    font-size: 23px
  }
  .aboutus__title {
    font-size: 52px
  }
  .aboutus__text {
    display: none
  }
  .aboutus__slide-title {
    font-size: 36px
  }
  .banner__subtitle {
    font-size: 23px
  }
  .banner__title {
    font-size: 52px
  }
  .consultation {
    padding: 32px 24px
  }
  .consultation__title {
    font-size: 23px;
    margin-bottom: 16px
  }
  .consultation__text {
    font-size: 16px
  }
}
@media (max-width:24.99875em) {
  .hero__title {
    font-size: 48px
  }
  .hero__subtitle {
    font-size: 18px
  }
  .hero__item {
    font-size: 16px
  }
  .prices__head {
    padding: 20px;
    margin-bottom: 20px
  }
  .prices__body {
    padding: 0 20px 30px 20px
  }
  .aboutus__slide {
    padding: 24px 20px 30px 20px
  }
  .banner__content {
    padding: 36px 20px
  }
  .banner__title {
    font-size: 42px
  }
}
@media (min-width:40.62375em) and (max-width:61.99875em) {
  .aboutus__wrapper {
    gap: 32px
  }
}
@media (any-hover:hover) {
  .button--black:hover {
    background: var(--background-grey)
  }
  .hero__button:hover {
    padding: 8px 36px
  }
  .hero__button:hover .hero__button-icon {
    -webkit-transform: translate(130px,-270px) scale(23);
    transform: translate(130px,-270px) scale(23)
  }
  .hero__item:hover {
    gap: 18px
  }
  .hero__item:hover::before {
    background: rgba(255,255,255,.4);
    width: calc(100% + 14px);
    height: calc(100% + 8px)
  }
  .prices__head.bg-white .prices__btn:hover {
    background-color: var(--orange);
    color: var(--background-black);
  }
  .prices__btn:hover {
    background-color: var(--orange)
  }
}