@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
/*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */
:root {
  --primary: #000000;
  --secondary: #bd17da;
  --accent: #FFD20;
  --bg-primary: #000000;
  --bg-accent: #bd17da;
  --text-primary: #fbfffe;
  --text-secondary: #707070;
  --text-accent: #FFD203;
  --font-small: 1rem; /* ~16px */
  --font-base: 1.25rem; /* ~20px */
  --font-large: 2rem; /* ~32px */
  --font-hero: 3rem; /* ~64px */
  --font-ticker: 5.0rem;
}

html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

*::before, *::after {
  display: inline-block;
}

html, body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #fff;
  line-height: 1;
  font-family: "Montserrat";
  font-size: var(--font-base);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, button, textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}

input, textarea {
  width: 100%;
}

label {
  display: inline-block;
}

button, select, option {
  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-color: #000;
  line-height: 1.2;
}

.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
  transition: all 500ms easy;
}

.loaded body {
  opacity: 1;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 98.125rem;
  margin: 0 auto;
  padding: 0 0.4rem;
}

[class*="--gc"] {
  display: grid;
  min-width: 0;
  grid-template-columns: 0.9375rem 1fr minmax(auto, 96.25rem) 1fr 0.9375rem;
}

[class*="--gc"] > * {
  min-width: 0;
  grid-column: 3/4;
}

@media (max-width: 61.99875em) {
  .menu__body {
    position: fixed;
    background-color: #0f0f0f6d;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    overflow: auto;
    padding: 6.125rem 0.9375rem 1.875rem 0.9375rem;
    transition: left .3s;
    z-index: 1;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 4.375rem;
    left: -100%;
    top: 0;
    transition: left .3s;
    z-index: 2;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }
}

.menu .menu__list {
  border-radius: 0.625rem;
  padding: 1rem .5rem 1rem .5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 61.99875em) {
  .menu .menu__list {
    background-color: #000;
  }
}

@media (min-width: 61.99875em) {
  .menu .menu__list {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 61.99875em) {
  .menu__list {
    max-width: 31.25rem;
  }
}

.icon-menu {
  display: none;
}

@media (max-width: 61.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 5;
    margin-top: 1.125rem;
  }
}

@media (max-width: 61.99875em)and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 61.99875em) {
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all .3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    transform: rotate(45deg);
  }
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  transform: scale(1);
}

.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  transform: scale(0);
  transition: transform .3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.spoilers {
  display: grid;
  gap: 15px;
}

.spoilers__item {
  font-size: var(--font-base);
}

.spoilers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
  position: relative;
  list-style: none;
}

.spoilers__title::marker, .spoilers__title::-webkit-details-marker {
  display: none;
}

._spoiler-init .spoilers__title {
  cursor: pointer;
}

._spoiler-init .spoilers__title::before, ._spoiler-init .spoilers__title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  background-color: #000;
  height: 2px;
  width: 15px;
  transition: transform .5s ease 0s;
}

._spoiler-init .spoilers__title::before {
  transform: translate(-75%, -50%) rotate(40deg);
}

._spoiler-init .spoilers__title::after {
  transform: translate(0, -50%) rotate(-40deg);
}

._spoiler-init .spoilers__title._spoiler-active::before {
  transform: translateX(-75%) rotate(-40deg);
}

._spoiler-init .spoilers__title._spoiler-active::after {
  transform: rotate(40deg);
}

.spoilers__body {
  padding: 1.25rem;
  border-radius: 0.3125rem;
  border: 1px solid #eee;
}

.tabs__navigation {
  display: flex;
}

.tabs__title {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.3125rem;
}

.tabs__title._tab-active {
  border: 1px solid #000;
}

.tabs__content {
  border: 1px solid #eee;
  padding: 0.625rem 0.9375rem;
}

[data-showmore-button] span:last-child {
  display: none;
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

.ibg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ibg--top {
  object-position: top;
}

.ibg--bottom {
  object-position: bottom;
}

.ibg--left {
  object-position: left;
}

.ibg--right {
  object-position: right;
}

.ibg--contain {
  object-fit: contain;
}

span {
  color: var(--text-accent);
  text-transform: uppercase;
  font-weight: 700;
}

.title-small {
  font-size: var(--font-small);
  text-transform: uppercase;
}

.title-big {
  font-size: var(--font-large);;
  text-transform: uppercase;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 1.5625rem 1.875rem;
  border-radius: 99rem;
  font-weight: 700;
  font-size: var(--font-base);
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #222280, #0c0c1e);
  transition: background .4s ease, transform .3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  text-decoration: none;
  letter-spacing: .05rem;
  border: 0.0125rem solid #fff;
}

@media (min-width: 61.99875em) {
  .btn {
    font-size: var(--font-large);
  }
}

.btn--header {
  padding: 1.25rem 1.5625rem;
  font-size: var(--font-large);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 40%, rgba(255, 255, 255, 0.15), transparent 50%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-0.15rem);
}

.btn--gradient {
  background: url(img/gradient.svg) no-repeat;
  background-size: cover;
}

.title__h1 {
  font-size: var(--font-hero);
  font-weight: 700;
}

.section {
  padding: 3rem 0;
}

@media (min-width: 61.99875em) {
  .section {
    padding: 6rem 0;
  }

  .section.reviews {
    padding: 9rem 0;
  }
}

.decor {
  background: url(img/gradient-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* Or 'contain' depending on your intent */

  /* Ensure the background and text occupy the same space */
  position: relative;
  color: white; /* Optional: better contrast if needed */
  min-height: 300px; /* Ensure it has height if content is minimal */
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.ticker-main {
  width: 100%;
  overflow: hidden;
  z-index: 0;
  padding-left: 100%;
  box-sizing: content-box;
  margin-bottom: 3rem;
}

.ticker-main .ticker {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
}

.ticker-main .ticker-text {
  font-size: var(--font-ticker);
  line-height: 4.875rem;
  text-transform: uppercase;
  font-weight: 700;
}

.header {
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 10;

  background-color: #000000c1;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero {
  position: relative;
  max-width: 1170px;
  margin: 0 auto 6rem auto;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__container p {
  font-size: var(--font-large);
}

.hero__container p span {
  text-transform: none;
  font-style: italic;
  color: rgb(224, 15, 242);
  font-weight: 700;
}

@media (max-width: 98.125em) {
  .hero__container {
    max-width: 37.5rem;
  }
}

.hero__title {
  text-align: center;
}

.hero__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.hero__subtitle {
  text-transform: uppercase;
  text-align: center;
  max-width: 46.875rem;
}

@media (max-width: 98.125em) {
  .hero__subtitle--down {
    max-width: 28.125rem;
  }
}

.hero__subtitle-list {
  text-align: center;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero__btn {
  margin: 0 auto;
}

.about {
  position: relative;
}

.about__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 3.125rem;
}

@media (min-width: 61.99875em) {
  .about__container {
    flex-direction: row;
    align-items: center;
    gap: 5.625rem;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 41.25rem;
}

@media (min-width: 61.99875em) {
  .about__content {
    max-width: 50%;
  }
}

.about__title-small, .about__title-big, .about__text {
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 61.99875em) {
  .about__title-small, .about__title-big, .about__text {
    max-width: 51%;
  }
}

.about__header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.about__visual {
  border-radius: 20px;
  padding: 1.5625rem;
  background: url(img/zoom-ui.jpg);
  background-size: contain;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 61.99875em) {
  .about__visual {
    max-width: 50%;
  }
}

.about__visual img {
  max-width: 100%;
}

.message-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.message {
  background-color: #007aff;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: .75rem;
  margin-bottom: 1rem;
  font-size: var(--font-base);
  font-weight: 400;
  line-height: 1.5;
  max-width: 38rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.message._watcher-view {
  animation: popUp .6s ease-out forwards;
}

.message:nth-child(1) {
  animation-delay: .2s;
}

.message:nth-child(2) {
  animation-delay: .4s;
}

.message:nth-child(3) {
  animation-delay: .6s;
}

.message:nth-child(4) {
  animation-delay: .8s;
}

.message:nth-child(5) {
  animation-delay: 1s;
}

.message {
  position: relative;
  border-radius: 0 .75rem .75rem .75rem;
  font-size: 0.875rem;
}

.message::before {
  content: "";
  width: 1rem;
  height: 1.3125rem;
  display: block;
  background: url(img/message-reg.svg);
  background-size: cover;
  position: absolute;
  left: -0.625rem;
  top: .1%;
  opacity: 1;
}

.message:nth-child(1), .message:nth-child(2), .message:nth-child(3), .message:nth-child(4), .message:nth-child(5) {
  margin-left: 1.25rem;
}

@media (min-width: 61.99875em) {
  .message:nth-child(1) {
    max-width: 31.4375rem;
  }
}

@media (min-width: 61.99875em) {
  .message:nth-child(2) {
    max-width: 23.3125rem;
  }
}

@media (min-width: 61.99875em) {
  .message:nth-child(3) {
    max-width: 20.1875rem;
  }
}

@media (min-width: 61.99875em) {
  .message:nth-child(4) {
    max-width: 21.4375rem;
  }
}

@media (min-width: 61.99875em) {
  .message:nth-child(5) {
    max-width: 25.5rem;
  }
}

.message::after {
  content: "";
  position: absolute;
  bottom: .2rem;
  right: 1rem;
  font-size: .85rem;
  opacity: .6;
  width: 1.25rem;
  height: 1.25rem;
  background-size: contain;
  background: url(img/double-check.svg) no-repeat;
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about__btn {
  margin-left: 1.25rem;
}

@media (min-width: 98.125em) {
  .schedule__container {
    max-width: 80%;
  }
}

/*@media (min-width: 61.99875em) {*/
/*  .schedule__day-2 {*/
/*    margin-top: 5.625rem;*/
/*  }*/
/*}*/
.schedule__title {
  text-align: center;
}

.schedule__sub-title {
  text-align: center;
  margin-bottom: 1.875rem;
}

.schedule__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media (min-width: 61.99875em) {
  .schedule__wrap {
    display: flex;
    gap: 3.75rem;
    flex-direction: row;
    max-width: 68.75rem;
    margin: 0 auto;
  }
}

.schedule__day-title {
  font-size: 3.625rem;
  font-weight: 700;
  color: var(--text-accent);
}

@media (min-width: 61.99875em) {
  .schedule__day-title {
    font-size: 8rem;
  }
}

.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.schedule__item {
  border: 0.0625rem dashed #ff50a3;
  border-radius: 0.625rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.schedule__name {
  font-size: var(--font-base);
}

@media (min-width: 61.99875em) {
  .schedule__name {
    font-size: var(--font-large);
  }
}

.schedule__time-wrap {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.block__more {
  background: url(img/gradient-shedule.svg);
  padding: 1.25rem;
  margin-top: 1.25rem;
  border: 0.0125rem solid #fff;
  border-radius: 3.125rem;
}

.gta {
  position: relative;
}

@media (min-width: 61.99875em) {
  .gta__container {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
}

@media (min-width: 61.99875em) {
  .gta__container--revers {
    display: flex;
    flex-direction: row-reverse;
  }
}

.gta__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 47.99875em) {
  .gta__content {
    max-width: 36.25rem;
  }
}

@media (min-width: 61.99875em) {
  .gta__content {
    max-width: 50%;
  }
}

.gta__title {
  max-width: 18.125rem;
}

@media (min-width: 61.99875em) {
  .gta__title {
    max-width: 60rem;
  }
}

.gta__text {
  font-size: var(--font-base);
  text-transform: uppercase;
}

.gta__accent {
  font-size: var(--font-large);
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}

.gta__paragraph {
  text-align: center;
}

@media (min-width: 61.99875em) {
  .gta__paragraph {
    max-width: 60%;
  }
}

.gta__accent--margin {
  margin-bottom: 0;
  text-align: center;
}

.gta__button-wrap {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: flex-start;
  margin-top: 1.25rem;
}

@media (min-width: 61.99875em) {
  .gta__button-wrap {
    flex-direction: row;
  }
}

.gta__btn {
  width: 100%;
  font-size: var(--font-large);
}

.gta__visual {
  border-radius: 2.5rem;
  overflow: hidden;
}

@media (min-width: 61.99875em) {
  .gta__visual {
    max-width: 50%;
  }
}

.gta__visual img {
  max-width: 100%;
}

.pricing {
  color: #fff;
  /* padding: 3rem 1rem; */
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.pricing__header, .pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid #333;
  font-weight: 600;
}

.pricing__header .col, .pricing__row .col {
  flex: 1;
  text-align: center;
}

.pricing__header .label, .pricing__row .label {
  flex: 2;
  text-align: left;
  padding-left: 1rem;
}

.pricing__header {
  border-bottom: 2px solid #444;
  font-size: var(--font-base);
  color: #f7c928;
}

.pricing__table .pricing__row .check {
  color: #fff;
}

.pricing__table .pricing__row .lock {
  opacity: .4;
}

.pricing__footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pricing__footer .price {
  flex: 1;
  text-align: center;
}

.pricing__footer .price .amount {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 0.625rem;
}

.pricing__footer .price .note {
  font-size: .875rem;
  opacity: .6;
  margin-bottom: 1rem;
}

.pricing__footer .price .btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: .9rem;
  text-transform: uppercase;
  text-decoration: none;
}

.pricing__footer .price .btn--basic {
  background: linear-gradient(90deg, #101020, #15153a);
  color: #fff;
}

.pricing__footer .price .btn--vip {
  background: linear-gradient(90deg, #d946ef, #3b82f6);
  color: #fff;
}

@media (max-width: 768px) {
  .pricing__header, .pricing__row {
    align-items: flex-start;
  }

  .pricing__header .label, .pricing__header .col, .pricing__row .label, .pricing__row .col {
    text-align: left;
    padding-left: 1rem;
    padding-bottom: .5rem;
  }

  .pricing__footer {
    align-items: center;
    text-align: center;
  }
}

.pricing .icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
}

.pricing__row {
  transition: background .3s ease;
}

.pricing__row:hover {
  background: rgba(255, 255, 255, .05);
}

.pricing__sub-title--big {
  text-align: center;
}

.pricing__sub-title {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 61.99875em) {
  .pricing__sub-title {
    font-size: 1.875rem;
    max-width: 75%;
    margin: 0 auto;
  }
}

.col.col__title {
  text-align: right;
}

.col__title--2 {
  margin-left: 2.1875rem;
}

.reviews {
  background: url(img/United\ States.svg) no-repeat bottom left;
  background-size: 25rem;
  display: none;
}

@media (min-width: 1920px) {
  .reviews {
    background-position: 20% 85%;
  }
}

@media (min-width: 61.99875em) {
  .reviews {
    display: block;
  }
}

@media (min-width: 61.99875em) {
  .reviews--mob {
    display: none;
  }
}

.testimonial {
  border: 1px solid #888;
  border-radius: 1.5rem;
  padding: 2rem;
  color: #fff;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, .05);
}

.testimonial__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
}

.testimonial__stars .star {
  width: 1.5rem;
  height: 1.5rem;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial__header h3 {
  font-size: var(--font-base);
  font-weight: 700;
  margin: 0;
}

.testimonial__header .meta {
  font-size: var(--font-small);
  color: #aaa;
  margin-top: .25rem;
}

.testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.testimonial__text {
  font-size: var(--font-small);
  line-height: 1.6;
  text-transform: uppercase;
}

.reviews__text-content, .schedule__title-wrapper, .pricing__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.reviews__text-content--mob {
  align-items: center;
}

.reviews__slider {
  height: 600px;
  overflow: hidden;
}

.reviews__slide--mob {
  width: 100% !important;
}

.swiper-wrapper--mob {
  width: 400px !important;
}

.reviews__slider--mob {
  position: relative;
  padding: 0 2.5rem;
}

.reviews__slide {
  width: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
}

.swiper-button-next, .swiper-button-prev {
  font-size: 0.75rem !important;
}

.reviews__slide .reviews__slide--mob {
  width: 300px !important;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.testimonial--mob {
  height: 100%;
}

.swiper-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.swiper-button-prev, .swiper-button-next {
  background: rgba(0, 0, 0, .6);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.swiper-slide {
  height: auto !important;
}

.reviews__container {
  display: flex;
  align-items: center;
}

.reviews__container--mob {
  flex-direction: column;
  gap: 1.875rem;
}

.reviews__wrapper {
  position: relative;
  display: flex;
  gap: 1.875rem;
  flex-direction: column;
}

@media (min-width: 61.99875em) {
  .reviews__wrapper {
    flex-direction: row;
    gap: 1.875rem;
  }
}

.reviews__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 4.375rem;
  background: linear-gradient(to bottom, black, transparent);
  position: absolute;
  z-index: 10;
}

.reviews__wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 4.375rem;
  background: linear-gradient(to top, black, transparent);
  position: absolute;
  bottom: -2px;
  z-index: 10;
}

.swiper-button-prev, .swiper-button-next {
  color: #000;
}

.swiper-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.gallery {
  position: relative;
  padding-bottom: 0;
}

.gallery__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 61.99875em) {
  .gallery__text-content {
    max-width: 60%;
    margin: 0 auto 2.5rem;
  }
}

h2.gallery__title {
  text-align: center;
  font-size: var(--font-large);
}

h3.gallery__title {
  font-size: var(--font-hero);
  font-weight: 700;
}

.gallery__text.left {
  text-align: left;
  width: 100%;
}

.gallery__text.bold {
  font-weight: 700;
}

.gallery__text--list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (min-width: 61.99875em) {
  .gallery__text--list {
    flex-direction: row;
  }

  .gallery__text--list > * {
    flex: 1 1 50%; /* Make each child grow equally to 50% */
  }
}

.gallery__image_wrapper {
  text-align: center; /* Centers the inline image horizontally */
  margin: 1rem 0;     /* Optional spacing above/below the image */
}

.gallery__image_wrapper img {
  max-width: 100%;    /* Prevents overflow on smaller screens */
  height: auto;       /* Maintains aspect ratio */
  display: inline-block; /* Ensures alignment within text context */
}

@media (min-width: 61.99875em) {
  .gallery__list {
    flex-direction: row;
  }
}

.gallery__item {
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 61.99875em) {
  .gallery__item {
    max-height: 20rem;
    overflow: hidden;
  }
}

.gallery__item img {
  max-width: 100%;
}

.gta-button__container {
  background: url(img/gradient-gta.svg);
  background-size: cover;
  padding: 3.125rem 2.5rem;
  border-radius: 1.875rem;
  border: 0.0125rem solid #fff;
}

@media (min-width: 61.99875em) {
  .gta-button__container {
    padding: 6.25rem 12.5rem;
  }
}

.gta-button__text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
}

.registration {
  padding: 4rem 1rem;
  background: rgba(0, 0, 0, 0);
  text-align: center;
}

.registration__title {
  font-size: var(--font-large);
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.registration__subtitle {
  font-size: var(--font-large);
  color: #ccc;
  margin-bottom: 2rem;
}

.registration__form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.registration__form input {
  padding: 1rem;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  color: #fff;
  font-size: var(--font-small);
  border-radius: 8px;
  width: 100%;
}

.registration__form input::placeholder {
  color: #aaa;
}

@media (max-width: 480px) {
  .registration__title {
    font-size: var(--font-large);
  }

  .registration__subtitle {
    font-size: var(--font-small);
  }
}

.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 {
  transform: translate3d(0px, 0, 0)
}

.swiper-button-lock {
  display: none !important
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal
}

:root {
  --swiper-theme-color: #007aff
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0)
}

.swiper-pointer-events {
  touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform
}

.swiper-slide-invisible-blank {
  visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after)
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size)
}

:root {
  --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next"
}

.swiper-button-lock {
  display: none
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33)
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2)
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-bullet:only-child {
  display: none !important
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform, .2s top
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-lock {
  display: none
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1)
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0
}

.swiper-scrollbar-cursor-drag {
  cursor: move
}

.swiper-scrollbar-lock {
  display: none
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.swiper-slide-zoomed {
  cursor: move
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0)
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg)
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-cube {
  overflow: visible
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
  z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px)
}

.swiper-flip {
  overflow: visible
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height
}

.swiper-cards {
  overflow: visible
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden
}
