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.6rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #F8F8F8;
  width: 100%;
  color: #474747;
  margin: 0;
  padding: 0;
}

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

* {
  box-sizing: border-box;
}

html *,
html,
body *,
body {
  scrollbar-color: inherit !important;
  scrollbar-width: auto;
}
html *::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  box-shadow: none;
}

video,
img {
  vertical-align: top;
  height: auto;
}

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

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

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

.pad-bot {
  padding-bottom: 5rem;
}

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

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

.btn {
  display: inline-flex;
  gap: 2rem;
  outline: none;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  height: 8.5rem;
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 1;
  color: white;
  background: #000000;
  border-radius: 1.6rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: #C20000;
  color: white;
  text-decoration: none;
}

.heading {
  font-size: 4rem;
  margin-bottom: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.heading p {
  margin-bottom: 2rem;
  margin-top: 0;
}
.heading big {
  font-size: 5.4rem;
}
.heading small {
  font-size: 2.4rem;
  font-weight: 300;
}

.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 #D4D4D4;
  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;
  outline: none;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.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: #333;
  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);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@media screen and (min-width: 1366px) {
  .js-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
    position: relative;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 1s, transform 0.6s ease-out 1s;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 2s, transform 0.6s ease-out 2s;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 2.5s, transform 0.6s ease-out 2.5s;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 3s, transform 0.6s ease-out 3s;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 3.5s, transform 0.6s ease-out 3.5s;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 4s, transform 0.6s ease-out 4s;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 4.5s, transform 0.6s ease-out 4.5s;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 5s, transform 0.6s ease-out 5s;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 5.5s, transform 0.6s ease-out 5.5s;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 6s, transform 0.6s ease-out 6s;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.from-bottom {
    transform: translateY(200px);
  }
  .js-animate.zoom-in {
    transform: scale(0.5);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom, .js-animate.visible.from-top, .js-animate.visible.from-left, .js-animate.visible.from-right, .js-animate.visible.zoom-out, .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right, .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease-out;
}
.navigation__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
}
.navigation__logo {
  width: 8.5rem;
  flex-shrink: 0;
}
.navigation__logo img {
  width: 100%;
}
.navigation__logo-dark {
  display: none;
}
.navigation__menu {
  display: flex;
  gap: 3.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.navigation__menu li {
  font-size: 2rem;
}
.navigation__menu li a {
  color: white;
}
.navigation__btn {
  display: none;
}
.navigation__btn .btn {
  padding: 2.4rem 8rem;
  color: white !important;
  height: 7.6rem;
}

.scrolling .navigation {
  background: white;
  border-bottom: 1px solid #D4D4D4;
}
.scrolling .navigation__logo-dark {
  display: block;
}
.scrolling .navigation__logo-white {
  display: none;
}
.scrolling .navigation a {
  color: #474747;
}
.scrolling .navigation__btn {
  display: block;
}

.header {
  padding-top: 8rem;
  padding-bottom: 8rem;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: end;
  background: black;
}
.header__video {
  position: absolute;
  opacity: 0.7;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__block {
  text-align: center;
  position: relative;
  color: white;
}
.header__subheading {
  font-size: 2.4rem;
}
.header__heading {
  font-size: 9.6rem;
  font-weight: 500;
}
.header__text {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
.header__btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.header__btns a {
  height: 7.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.4rem 4rem;
  font-size: 2.4rem;
  border-radius: 1.6rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header__btns a svg {
  width: 1.1rem;
  flex-shrink: 0;
}
.header__btns .btn-modal {
  background: white;
  color: #474747;
}
.header__btns .btn-modal:hover {
  background: rgba(255, 255, 255, 0.7);
}
.header__btns .btn-play {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #D4D4D4;
  color: white;
}
.header__btns .btn-play:hover {
  background: black;
}
.header__btns .btn-play .play {
  display: none;
}
.header__btns .btn-play.off .play {
  display: block;
}
.header__btns .btn-play.off .pause {
  display: none;
}

.whom__heading {
  margin-bottom: 10rem;
}
.whom__block {
  display: flex;
  gap: 3rem;
}
.whom__col {
  width: 75rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.whom__box {
  background: white;
  padding: 4rem 8rem;
  border-radius: 2rem;
  border: 1px solid #D4D4D4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.whom__sticky {
  top: 20rem;
  bottom: 10rem;
  min-height: calc(100vh - 30rem);
  position: sticky;
}
.whom__title {
  display: flex;
  gap: 0.8rem;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.whom__title svg {
  width: 1.8rem;
}
.whom__btn {
  margin-top: auto;
}

.subject {
  padding-bottom: 8rem;
}
.subject__heading {
  margin-bottom: 6rem;
}
.subject__slider {
  margin: 0 -1rem;
  margin-bottom: 0 !important;
  width: calc(100% + 2rem);
}
.subject__slider .slick-arrow {
  display: none !important;
}
.subject__slider .slick-list {
  overflow: visible;
  margin-bottom: 6rem;
}
.subject__slider .slick-current .subject__video {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.subject__slider .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33rem;
  margin: 0 auto;
  padding: 2.5rem;
  background: white;
  border-radius: 10rem;
  gap: 1.5rem;
}
.subject__slider .slick-dots li {
  margin: 0;
  width: 1rem;
  height: 1rem;
  background: #858585;
  border-radius: 10rem;
  display: block;
  transition: all 0.3s ease-out;
}
.subject__slider .slick-dots li.slick-active {
  width: 9rem;
}
.subject__slider .slick-dots li.slick-active button {
  background: #434343;
}
.subject__slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0;
  border-radius: 10rem;
  transition: background-color 0.3s ease-out;
}
.subject__slider .slick-dots li button:hover {
  background: #434343;
}
.subject__slider .slick-dots li button:before {
  display: none;
}
.subject__item {
  padding: 0 1rem;
}
.subject__box {
  border-radius: 5rem;
  overflow: hidden;
  background: white;
  border: 1px solid #D4D4D4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 14rem 0;
  text-align: center;
}
.subject__box.cols {
  text-align: left;
  flex-direction: row;
  align-items: start;
  gap: 10rem;
}
.subject__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.subject__text {
  margin-bottom: 7rem;
  max-width: 75rem;
}
.subject__video {
  width: 116.1rem;
  padding: 0.9rem 0.9rem 0 0.9rem;
  position: relative;
  transform: translateY(50rem) scale(1.5);
  transition: all 1.5s ease-out;
  opacity: 0;
}
.subject__video video {
  width: 100%;
  border-radius: 5rem 5rem 0 0;
  background: black;
}
.subject__video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-tablet.webp") center center no-repeat;
  pointer-events: none;
  background-size: 100% 100%;
}
.subject__video.phone-hor {
  width: 115rem;
  padding: 1.1rem 0.8rem 0 0.8rem;
  transform: translateY(46rem) scale(1);
  opacity: 1;
}
.subject__video.phone-hor:after {
  background-image: url("../images/bg-phone-hor.webp");
}
.subject__video.phone-ver {
  width: 57.8rem;
  flex-shrink: 0;
  padding: 0.7rem 0.7rem 0 1.5rem;
  transform: translateY(80rem) scale(1);
  opacity: 1;
}
.subject__video.phone-ver:after {
  background-image: url("../images/bg-phone-ver.png");
}

.about {
  padding-bottom: 5rem;
  padding-top: 8rem;
}
.about__heading {
  margin-bottom: 6rem;
}
.about__block {
  display: flex;
  gap: 3rem;
}
.about__col {
  max-width: 75rem;
}
.about__box {
  border-radius: 5rem;
  background: white;
  border: 1px solid #D4D4D4;
}
.about__img {
  height: 54.5rem;
  position: relative;
  overflow: hidden;
}
.about__img1 {
  width: 100%;
}
.about__img2 {
  width: 33.4rem;
  position: absolute;
  top: 19rem;
  left: 33rem;
}
.about__img3 {
  width: 22rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
}
.about__img4 {
  width: 33.4rem;
  position: absolute;
  top: 0;
  left: 4.5rem;
}
.about__info {
  padding: 9rem 4.5rem 7rem;
}
.about__title {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 4.5rem;
  font-size: 3.6rem;
  line-height: 0.9;
}
.about__title b {
  font-weight: bold;
}
.about__list {
  list-style: disc;
  padding-left: 3rem;
  margin: 0;
}
.about__list li::marker {
  font-size: 1.2rem;
}

.self {
  padding: 8rem 0;
}
.self__block {
  max-width: 81rem;
  margin: 0 auto;
  text-align: center;
}
.self__heading {
  margin-bottom: 2rem;
}
.self__text {
  font-size: 2.4rem;
}

.tracy__block {
  display: flex;
  gap: 3rem;
}
.tracy__video {
  width: 100rem;
  flex-shrink: 0;
}
.tracy__video a {
  display: block;
  position: relative;
}
.tracy__video a:hover .play {
  background-color: rgba(0, 0, 0, 0.7);
}
.tracy__video img {
  width: 100%;
}
.tracy__video .play {
  width: 7.5rem;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease-out;
}
.tracy__video .play svg {
  width: 1.1rem;
}
.tracy__info {
  display: flex;
  flex-direction: column;
}
.tracy__title {
  display: flex;
  gap: 1.2rem;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.tracy__title svg {
  width: 2.6rem;
}
.tracy__text {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.tracy__btn {
  margin-top: auto;
}

.reviews__block {
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;
}
.reviews__block .slick-arrow {
  display: none !important;
}
.reviews__item {
  flex-basis: 100%;
}
.reviews__video {
  margin-bottom: 1.2rem;
}
.reviews__video a {
  display: block;
  position: relative;
}
.reviews__video a:hover .play {
  background-color: rgba(0, 0, 0, 0.7);
}
.reviews__video img {
  width: 100%;
}
.reviews__video .play {
  width: 7.5rem;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease-out;
}
.reviews__video .play svg {
  width: 1.1rem;
}
.reviews__title {
  display: flex;
  gap: 1.2rem;
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
.reviews__title svg {
  width: 2.6rem;
}

.steps__block {
  display: flex;
  gap: 3rem;
}
.steps__img {
  width: 49rem;
  flex-shrink: 0;
  padding: 2.2rem 2.5rem 0;
  background: url("../images/bg-phone.png") center center no-repeat;
  background-size: contain;
  overflow: hidden;
}
.steps__img img {
  width: 100%;
  transform: translateY(100%);
  transition: all 0.4s ease-out;
  height: 0;
  display: block;
  vertical-align: top;
}
.steps__img img.active {
  transform: translateY(0);
  height: auto;
}
.steps__steps {
  flex-direction: column;
  display: flex;
  gap: 1.8rem;
}
.steps__box {
  padding: 4rem;
  background: white;
  border-radius: 2rem;
  height: 100%;
}
.steps__item {
  cursor: pointer;
}
.steps__item.active {
  cursor: auto;
  height: 100%;
}
.steps__item.active .steps__info {
  display: flex;
}
.steps__item.active .steps__title {
  margin-bottom: 4rem;
}
.steps__item.active .steps__title svg {
  display: none;
}
.steps__title {
  display: flex;
  align-items: center;
  gap: 4rem;
  font-size: 4rem;
  font-weight: bold;
}
.steps__title svg {
  width: 2.4rem;
  flex-shrink: 0;
}
.steps__info {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #D4D4D4;
  gap: 2rem;
  display: none;
}
.steps__info dt {
  width: 11rem;
  flex-shrink: 0;
}
.steps__info dd {
  margin: 0;
}
.steps__info ul {
  padding-left: 2rem;
}
.steps__info ul li::marker {
  font-size: 1.2rem;
}
.steps__info:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.theme__video {
  width: 100%;
  border-radius: 5rem;
  margin-bottom: 4rem;
}
.theme__tabs {
  display: flex;
  margin-bottom: 3.2rem;
}
.theme__tab {
  padding-bottom: 2.4rem;
  color: #8F8F8F;
  flex-basis: 100%;
  border-bottom: 3px solid #E2E2E2;
  cursor: pointer;
  transition: color 0.3s ease-out, border-color 0.3s ease-out;
}
.theme__tab:hover {
  color: #474747;
  border-bottom-color: #474747;
}
.theme__tab.active {
  color: #474747;
  border-bottom-color: #474747;
  font-weight: bold;
  letter-spacing: -0.05rem;
}
.theme__content {
  display: none;
}
.theme__content.active {
  display: block;
}
.theme__title {
  font-weight: bold;
  margin-bottom: 3.2rem;
  font-size: 2.4rem;
}
.theme__list {
  list-style: disc;
  margin: 0;
  padding-left: 2.4rem;
}
.theme__list li::marker {
  font-size: 1.2rem;
}

.format {
  padding: 8rem 0;
}
.format__heading {
  margin-bottom: 6rem;
}
.format__block {
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;
}
.format__box {
  flex-basis: 100%;
  background: white;
  border-radius: 2rem;
  border: 1px solid #D4D4D4;
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
.format__subtitle {
  margin-bottom: 2rem;
}
.format__title {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: bold;
}
.format__text {
  margin-bottom: 4rem;
}
.format__list {
  list-style: none;
  margin: 0 0 4rem 0;
  padding: 0;
}
.format__list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.format__list li b {
  font-weight: bold;
}
.format__list li:last-child {
  margin-bottom: 1.2rem;
}
.format__list li svg {
  width: 5rem;
  flex-shrink: 0;
}
.format__btn {
  margin-top: auto;
  border: 1px solid #D4D4D4;
  border-radius: 2rem;
}
.format__info {
  padding: 2rem;
  font-weight: bold;
  text-align: center;
}
.format__about {
  text-align: center;
  max-width: 66rem;
  margin: 0 auto;
}

.faqs {
  padding: 12rem 0;
}
.faqs__heading {
  margin-bottom: 6rem;
}
.faqs__block {
  padding-bottom: 3rem;
  border-bottom: 1px solid #D4D4D4;
  margin-bottom: 3rem;
}
.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;
}

.level {
  padding: 9rem 0 17rem;
}
.level__block {
  display: flex;
  gap: 3rem;
}
.level__gallery {
  width: 88rem;
  flex-shrink: 0;
  border-radius: 2rem;
  margin-bottom: 0 !important;
}
.level__gallery .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 4.4rem;
  transform: translateY(-50%);
  cursor: pointer;
  left: 0;
}
.level__gallery .slick-arrow.arrow-right {
  left: auto;
  right: 0;
}
.level__gallery .slick-dots {
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.level__gallery .slick-dots li {
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  background: white;
  border-radius: 50%;
  transition: background-color 0.3s ease-out;
}
.level__gallery .slick-dots li:hover, .level__gallery .slick-dots li.slick-active {
  background: #141414;
}
.level__info {
  display: flex;
  flex-direction: column;
}
.level__title {
  font-size: 4rem;
  margin-bottom: 2.4rem;
  font-weight: bold;
}
.level__text {
  max-width: 49rem;
  margin-bottom: 4rem;
}
.level__btn {
  margin-top: auto;
  max-width: 55rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer {
  background: white;
  border-top: 1px solid #D4D4D4;
  padding-top: 7.5rem;
}
.footer__block {
  display: flex;
  gap: 3rem;
  margin-bottom: 4.5rem;
}
.footer__video {
  width: 75rem;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.footer__cols {
  display: flex;
  gap: 5rem 3rem;
  flex-wrap: wrap;
}
.footer__col {
  min-width: 21.8rem;
}
.footer__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list li {
  margin-bottom: 2.4rem;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__btn {
  margin-bottom: 1.8rem;
  padding: 1.2rem;
  gap: 1rem;
  border: 1px solid #474747;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
}
.footer__btn:hover {
  text-decoration: none;
  background: black;
  color: white;
}
.footer__btn svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social li {
  width: 6rem;
  flex-shrink: 0;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #474747;
}
.footer__social li a {
  display: block;
  line-height: 0;
}
.footer__social li svg {
  width: 2.7rem;
  flex-shrink: 0;
}
.footer__copyright {
  border-top: 1px solid #D4D4D4;
  padding: 5rem 0;
  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: 2.4rem;
    max-width: 100%;
    width: 100%;
  }
  .container {
    padding: 0 2rem;
  }
  .pad-bot {
    padding-bottom: 9rem;
  }
  .main__section {
    padding: 12rem 0;
  }
  .heading {
    font-size: 4rem;
    margin-bottom: 8rem;
    flex-direction: column;
    gap: 1.6rem;
  }
  .heading p {
    margin-bottom: 1.6rem;
  }
  .heading big {
    font-size: 4rem;
  }
  .heading small {
    font-size: 3.2rem;
    line-height: 1.2;
  }
  .btn {
    min-width: 100%;
    height: 10rem;
    font-size: 2.8rem;
    padding: 2rem 4rem;
  }
  .wrapper {
    overflow: hidden;
  }
  .form-control {
    margin-bottom: 2rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.4rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 9rem;
    font-size: 2.4rem;
  }
  .form-btn {
    font-size: 3.2rem;
    height: 10rem;
    margin-top: 0.8rem;
  }
  .navigation {
    border-radius: 0;
  }
  .navigation__block {
    height: 9rem;
  }
  .navigation__logo img {
    width: 6.4rem;
  }
  .navigation__menu {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 10rem;
  }
  .navigation__menu li {
    font-size: 4rem;
  }
  .navigation__menu--btn {
    width: 5.2rem;
    height: 5.2rem;
    cursor: pointer;
    position: relative;
  }
  .navigation__menu--btn span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 1rem;
  }
  .navigation__menu--btn span:before, .navigation__menu--btn span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    top: -6px;
    border-radius: 1rem;
    transition: all 0.3s ease-out;
  }
  .navigation__menu--btn span:after {
    top: 6px;
  }
  .navigation__menu--btn.open span {
    height: 0;
    background: none;
  }
  .navigation__menu--btn.open span:before, .navigation__menu--btn.open span:after {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  .navigation__menu--btn.open span:after {
    transform: rotate(-45deg);
  }
  .navigation__popup {
    position: fixed;
    top: 9rem;
    left: 0;
    background: #141414;
    width: 100%;
    padding: 4rem;
    min-height: calc(100vh - 9rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
    display: flex;
    flex-direction: column;
  }
  .navigation__popup.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navigation__btn {
    display: block;
    margin-top: auto;
  }
  .navigation__btn .btn {
    background: white;
    color: #474747 !important;
    height: 10rem;
  }
  .scrolling .navigation__menu--btn span:before, .scrolling .navigation__menu--btn span:after,
  .scrolling .navigation__menu--btn span {
    background: #474747;
  }
  .navigation:has(.open) {
    background: #141414;
  }
  .navigation:has(.open) .navigation__logo-white {
    display: block;
  }
  .navigation:has(.open) .navigation__logo-dark {
    display: none;
  }
  .scrolling .navigation:has(.open) .navigation__menu--btn span:before, .scrolling .navigation:has(.open) .navigation__menu--btn span:after, .scrolling .navigation:has(.open) .navigation__menu--btn span {
    background: white;
  }
  .scrolling .navigation:has(.open) a {
    color: white;
  }
  .header {
    padding-top: 14rem;
    padding-bottom: 6rem;
  }
  .header__block {
    min-height: calc(100vh - 20rem);
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .header__heading {
    font-size: 7.2rem;
    margin-bottom: 1.6rem;
  }
  .header__text {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .header__btns {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
  .header__btns a {
    height: 10rem;
    gap: 2rem;
    font-size: 2.8rem;
    justify-content: center;
  }
  .header__btns a svg {
    width: 2.8rem;
  }
  .whom__heading {
    margin-bottom: 8rem;
  }
  .whom__block {
    flex-direction: column;
    gap: 8rem;
  }
  .whom__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .whom__box {
    padding: 2.44rem 4rem;
  }
  .whom__sticky {
    min-height: 37rem;
    position: static;
  }
  .whom__title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .whom__title svg {
    width: 2rem;
  }
  .whom__btn {
    margin-top: auto;
  }
  .subject__slider .slick-list {
    margin-bottom: 3.6rem;
  }
  .subject__slider .slick-current .subject__video {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .subject__slider .slick-dots {
    margin: 0;
  }
  .subject__slider .slick-arrow {
    display: flex !important;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: white;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    flex-shrink: 0;
    position: absolute;
  }
  .subject__slider .slick-arrow svg {
    width: 3.4rem;
  }
  .subject__slider .slick-arrow.arrow-left {
    right: 7rem;
  }
  .subject__item {
    padding: 0 1rem;
  }
  .subject__box {
    padding: 6rem 4rem 0;
  }
  .subject__box.cols {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .subject__box.cols .subject__text {
    margin-bottom: 2rem;
  }
  .subject__title {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  .subject__text {
    font-size: 2rem;
    margin-bottom: 10rem;
    max-width: inherit;
  }
  .subject__video {
    width: 87.1rem;
    padding: 0.7rem 0.7rem 0 0.7rem;
    position: relative;
    transform: translateY(50rem) scale(1.5);
    transition: all 1.5s ease-out;
    opacity: 0;
  }
  .subject__video video {
    width: 100%;
    border-radius: 2.4rem 2.4rem 0 0;
  }
  .subject__video.phone-hor {
    width: 86.25rem;
    padding: 0.8rem 0.66rem 0 0.66rem;
    transform: translateY(46rem) scale(1);
    opacity: 1;
  }
  .subject__video.phone-ver {
    width: 43.35rem;
    flex-shrink: 0;
    padding: 0.53rem 0.53rem 0 1.1rem;
    transform: translateY(80rem) scale(1);
    opacity: 1;
    margin-bottom: -6rem;
  }
  .about__heading {
    margin-bottom: 5rem;
  }
  .about__block {
    flex-direction: column;
    gap: 2.4rem;
  }
  .about__col {
    max-width: 100%;
  }
  .about__info {
    padding: 4.8rem 4.8rem 8rem;
  }
  .about__title {
    gap: 2.4rem;
    margin-bottom: 4rem;
    font-size: 4rem;
  }
  .about__list {
    padding-left: 4rem;
  }
  .about__list li::marker {
    font-size: 1.6rem;
  }
  .self__block {
    max-width: 100%;
  }
  .self__heading {
    margin-bottom: 4rem;
  }
  .self__text {
    font-size: 3.2rem;
  }
  .tracy__heading {
    margin-bottom: 4rem;
  }
  .tracy__block {
    flex-direction: column;
    gap: 6rem;
  }
  .tracy__video {
    width: 100%;
  }
  .tracy__title {
    gap: 2.4rem;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    font-weight: bold;
  }
  .tracy__title svg {
    width: 5.2rem;
  }
  .tracy__text {
    font-size: 3.2rem;
    margin-bottom: 0;
  }
  .tracy__btn {
    display: none;
  }
  .reviews__heading {
    padding-right: 30rem;
  }
  .reviews__block {
    margin: 0 -1rem;
    margin-bottom: 0 !important;
    width: calc(100% + 2rem);
  }
  .reviews__block .slick-list {
    overflow: visible;
    margin-bottom: 6rem;
  }
  .reviews__block .slick-arrow {
    display: flex !important;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: white;
    justify-content: center;
    align-items: center;
    top: -14rem;
    right: 0;
    flex-shrink: 0;
    position: absolute;
  }
  .reviews__block .slick-arrow svg {
    width: 3.4rem;
  }
  .reviews__block .slick-arrow.arrow-left {
    right: 7rem;
  }
  .reviews__item {
    padding: 0 1rem;
  }
  .reviews__video {
    margin-bottom: 2.4rem;
  }
  .reviews__title {
    gap: 2.4rem;
    font-size: 3.2rem;
    margin-bottom: 4rem;
    font-weight: bold;
  }
  .reviews__title svg {
    width: 5.2rem;
  }
  .steps__heading {
    margin-bottom: 4rem;
  }
  .steps__block {
    display: flex;
    gap: 3rem;
  }
  .steps__box {
    height: auto;
  }
  .steps__img {
    width: 100%;
    padding: 0;
    background: none;
    margin-top: 2.4rem;
  }
  .steps__steps {
    flex-direction: column;
    display: flex;
    gap: 1.8rem;
  }
  .steps__title svg {
    width: 3rem;
  }
  .steps__info {
    padding-bottom: 4rem;
    margin-bottom: 6rem;
    gap: 4rem;
    flex-direction: column;
  }
  .steps__info dt {
    width: 100%;
  }
  .steps__info ul {
    padding-left: 3rem;
  }
  .steps__info ul li::marker {
    font-size: 1.6rem;
  }
  .theme__heading {
    margin-bottom: 4rem;
  }
  .theme__video {
    width: 100%;
    border-radius: 2.4rem;
    margin-bottom: 4rem;
  }
  .theme__tabs {
    margin-bottom: 4rem;
  }
  .theme__tab {
    font-size: 1.9rem;
  }
  .theme__tab.active {
    letter-spacing: -0.05rem;
  }
  .theme__title {
    margin-bottom: 4rem;
    font-size: 3.2rem;
  }
  .theme__list {
    padding-left: 3rem;
  }
  .theme__list li::marker {
    font-size: 1.6rem;
  }
  .format {
    padding: 8rem 0;
  }
  .format__heading {
    margin-bottom: 5rem;
    gap: 4rem;
  }
  .format__block {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
  .format__subtitle {
    margin-bottom: 2rem;
  }
  .format__title {
    margin-bottom: 2rem;
    font-size: 3.6rem;
  }
  .format__text {
    margin-bottom: 4rem;
  }
  .format__list {
    margin: 0 0 12rem 0;
  }
  .format__list li {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .format__list li:last-child {
    margin-bottom: 0;
  }
  .format__list li svg {
    width: 5rem;
    flex-shrink: 0;
  }
  .format__info {
    padding: 3rem;
  }
  .format__about {
    max-width: 100%;
  }
  .faqs__heading {
    margin-bottom: 4rem;
  }
  .faqs__title {
    display: flex;
    align-items: center;
    gap: 20rem;
    font-size: 3.2rem;
  }
  .faqs__content {
    max-width: 100%;
    margin-top: 3rem;
  }
  .level__block {
    flex-direction: column;
    gap: 4rem;
  }
  .level__gallery {
    width: 100%;
  }
  .level__info {
    flex-direction: column;
  }
  .level__title {
    margin-bottom: 4rem;
  }
  .level__text {
    max-width: 100%;
    margin-bottom: 6rem;
  }
  .level__btn {
    max-width: 100%;
    gap: 2.4rem;
  }
  .footer {
    padding-top: 8rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }
  .footer__video {
    width: 100%;
  }
  .footer__cols {
    flex-direction: column;
    gap: 4rem;
  }
  .footer__col {
    min-width: 100%;
  }
  .footer__col.mob-col {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
  }
  .footer__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer__list {
    width: 32rem;
    flex-shrink: 0;
    margin-bottom: 4rem;
  }
  .footer__list li {
    margin-bottom: 4rem;
  }
  .footer__list li:last-child {
    margin-bottom: 0;
  }
  .footer__btns {
    display: flex;
    gap: 2.4rem;
  }
  .footer__btn {
    margin-bottom: 0;
    padding: 2.4rem;
    gap: 2rem;
    flex-basis: 50%;
    border-radius: 1.6rem;
  }
  .footer__btn svg {
    width: 3.2rem;
  }
  .footer__social {
    gap: 2.4rem;
  }
  .footer__social li {
    width: 7rem;
    height: 7rem;
  }
  .footer__social li svg {
    width: 3.4rem;
  }
  .footer__copyright {
    padding: 4rem 0 8rem;
    flex-direction: column-reverse;
    align-items: start;
    gap: 3rem;
  }
}

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