@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");
@keyframes animation_btt {
  0% {
    transform: translateY(100px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

@keyframes animation_ltr {
  0% {
    transform: translateX(-100px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

@keyframes animation_rtl {
  0% {
    transform: translateX(100px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

* {
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: white;
  background-color: #232325; }

.section {
  min-height: 100vh;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .section .title {
    text-align: center; }
    .section .title h1, .section .title h2 {
      color: #FFB80C;
      font-size: 24px;
      padding: 24px;
      margin: 0; }
      @media (min-width: 1024px) {
        .section .title h1, .section .title h2 {
          font-size: 50px; } }
      .section .title h1 span, .section .title h2 span {
        color: white; }
        @media (min-width: 1024px) {
          .section .title h1 span, .section .title h2 span {
            font-size: 50px; } }

.button {
  font-weight: 700;
  line-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background-color: #FFB80C;
  color: black;
  text-decoration: none; }

#join-now {
  white-space: nowrap;
  margin-right: 20px;
  animation-name: animation_rtl;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  opacity: 0; }
  @media (max-width: 767px) {
    #join-now {
      animation-delay: .6s; } }

@media (min-width: 768px) and (max-width: 1023px) {
  #login {
    border-radius: 4px;
    padding: 0 24px;
    color: white;
    background-color: transparent;
    border: 1px solid #DCDCE0;
    line-height: 46px; } }

@media (min-width: 1024px) {
  #login {
    border-radius: 4px;
    padding: 0 24px;
    color: white;
    background-color: transparent;
    border: 1px solid #DCDCE0;
    line-height: 46px; } }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .1s; }
  @media (max-width: 767px) {
    header {
      padding: 12px 0; } }
  header .header-content {
    width: 100%;
    display: flex;
    text-align: center; }
    @media (max-width: 767px) {
      header .header-content {
        align-items: flex-start; } }
    header .header-content .logo {
      margin-left: 40px;
      margin-top: 34px;
      position: absolute;
      animation-name: animation_ltr;
      animation-duration: .5s;
      animation-delay: .5s;
      animation-fill-mode: forwards;
      opacity: 0; }
      @media (max-width: 767px) {
        header .header-content .logo {
          margin-top: 12px;
          margin-left: 20px; } }
    header .header-content .header-wrapper {
      width: 100%;
      display: flex;
      height: 96px;
      justify-content: flex-end;
      align-items: center; }
      @media (max-width: 767px) {
        header .header-content .header-wrapper {
          height: initial;
          align-items: flex-end;
          flex-wrap: wrap-reverse; } }
    header .header-content .header-links {
      display: flex;
      width: 100%;
      padding: 0;
      align-items: center; }
      @media (max-width: 767px) {
        header .header-content .header-links {
          flex-direction: column;
          align-items: flex-start;
          margin-top: 10px;
          display: none; } }
      header .header-content .header-links li {
        list-style: none;
        text-align: center; }
        header .header-content .header-links li:nth-child(1) {
          animation-name: animation_ltr;
          animation-duration: .5s;
          animation-delay: .5s;
          animation-fill-mode: forwards;
          opacity: 0;
          animation-delay: .6s;
          margin-left: 250px; }
        header .header-content .header-links li:nth-child(2) {
          animation-name: animation_ltr;
          animation-duration: .5s;
          animation-delay: .5s;
          animation-fill-mode: forwards;
          opacity: 0;
          animation-delay: .7s;
          margin-left: 72px; }
        header .header-content .header-links li:nth-child(3) {
          animation-name: animation_rtl;
          animation-duration: .5s;
          animation-delay: .5s;
          animation-fill-mode: forwards;
          opacity: 0;
          animation-delay: .6s;
          margin: 0 20px 0 auto; }
        @media (max-width: 767px) {
          header .header-content .header-links li:nth-child(1), header .header-content .header-links li:nth-child(2), header .header-content .header-links li:nth-child(3) {
            animation-name: none;
            opacity: 1;
            margin: 10px 24px; } }
        header .header-content .header-links li a {
          display: block;
          text-decoration: none;
          color: white; }
    header .header-content .burger-button {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      margin-right: 20px;
      margin-top: 6px;
      min-width: 36px;
      cursor: pointer;
      animation-name: animation_rtl;
      animation-duration: .5s;
      animation-delay: .5s;
      animation-fill-mode: forwards;
      opacity: 0; }
      @media (max-width: 767px) {
        header .header-content .burger-button {
          display: flex; } }
      header .header-content .burger-button span {
        background: #fff;
        border-radius: 10px;
        height: 4px;
        margin: 4px 0;
        transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        width: 100%; }
      header .header-content .burger-button input[type="checkbox"] {
        display: none; }
      header .header-content .burger-button input[type="checkbox"]:checked ~ span:nth-of-type(1) {
        transform-origin: bottom;
        width: 50%;
        transform: rotateZ(45deg) translate(6px, 2px); }
      header .header-content .burger-button input[type="checkbox"]:checked ~ span:nth-of-type(2) {
        transform-origin: top;
        transform: rotateZ(-45deg); }
      header .header-content .burger-button input[type="checkbox"]:checked ~ span:nth-of-type(3) {
        transform-origin: bottom;
        width: 50%;
        transform: translate(15px, -7px) rotateZ(45deg); }

header.active {
  background: rgba(38, 36, 36, 0.99); }
  header.active .header-links {
    display: flex;
    justify-content: flex-end; }

.scrolling {
  background: rgba(38, 36, 36, 0.99); }
  @supports (backdrop-filter: none) {
    .scrolling {
      backdrop-filter: blur(4px);
      background-color: rgba(28, 28, 29, 0.5); } }

.main-page {
  width: 100%;
  min-height: 100vh;
  padding: 100px 50px 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #232325;
  background-image: linear-gradient(0.25turn, #232325 -10%, transparent, #232325 110%), url("assets/arena.jpg");
  background-size: cover;
  background-position: center; }
  @media (max-width: 767px) {
    .main-page {
      padding: 74px 0 8px; } }
  .main-page .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: .5px .5px 2px #232325; }
    .main-page .main-content .title {
      margin: 0 0 60px;
      animation-name: animation_btt;
      animation-duration: .5s;
      animation-delay: .5s;
      animation-fill-mode: forwards;
      opacity: 0; }
      @media (max-width: 767px) {
        .main-page .main-content .title {
          margin: 0;
          text-align: left; } }
      .main-page .main-content .title h1 {
        font-size: 40px; }
        @media (min-width: 1024px) {
          .main-page .main-content .title h1 {
            font-size: 84px; }
            .main-page .main-content .title h1 span {
              font-size: 84px; } }
    @media (max-width: 767px) {
      .main-page .main-content {
        flex-direction: column-reverse; } }
    .main-page .main-content .steps-to-follow-list {
      display: flex;
      list-style: none;
      max-width: 1320px;
      padding: 0; }
      @media (max-width: 767px) {
        .main-page .main-content .steps-to-follow-list {
          display: none; } }
      .main-page .main-content .steps-to-follow-list .step-info {
        text-align: center;
        width: 33.3333%;
        animation-name: animation_btt;
        animation-duration: .5s;
        animation-delay: .5s;
        animation-fill-mode: forwards;
        opacity: 0; }
        .main-page .main-content .steps-to-follow-list .step-info:nth-child(1) {
          animation-delay: 1s; }
        .main-page .main-content .steps-to-follow-list .step-info:nth-child(2) {
          margin: 0 80px;
          animation-delay: 1.3s; }
        .main-page .main-content .steps-to-follow-list .step-info:nth-child(3) {
          animation-delay: 1.6s; }
        .main-page .main-content .steps-to-follow-list .step-info h2 {
          font-size: 36px;
          margin: 0; }
          .main-page .main-content .steps-to-follow-list .step-info h2 span {
            color: #FFB80C; }
        .main-page .main-content .steps-to-follow-list .step-info p {
          font-size: 18px; }

.mobile-steps-to-follow-list {
  min-height: initial;
  background-color: #141214; }
  @media (min-width: 1024px) {
    .mobile-steps-to-follow-list {
      display: none; } }
  @media (min-width: 768px) and (max-width: 1023px) {
    .mobile-steps-to-follow-list {
      display: none; } }
  .mobile-steps-to-follow-list .steps-to-follow-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 40px 20px;
    flex-direction: column; }
    .mobile-steps-to-follow-list .steps-to-follow-list .step-info {
      color: white;
      text-shadow: .5px .5px 2px #232325; }
      .mobile-steps-to-follow-list .steps-to-follow-list .step-info + .step-info {
        margin-top: 24px; }
      .mobile-steps-to-follow-list .steps-to-follow-list .step-info h2 {
        font-size: 18px;
        margin: 0; }
        .mobile-steps-to-follow-list .steps-to-follow-list .step-info h2 span {
          color: #FFB80C; }
      .mobile-steps-to-follow-list .steps-to-follow-list .step-info p {
        font-size: 14px; }

.products-page {
  background-color: #0F0F10;
  flex-direction: column;
  position: relative; }
  @media (min-width: 1024px) {
    .products-page:after {
      content: ' ';
      width: 100%;
      height: 100%;
      background-image: linear-gradient(0.25turn, #232325 -10%, transparent, #232325 110%);
      position: absolute;
      pointer-events: none;
      top: 0;
      left: 0; } }
  .products-page .title {
    z-index: 1;
    max-width: 800px; }
  .products-page .products-content {
    overflow: hidden;
    width: 100%;
    position: relative; }
    .products-page .products-content .products-carousel {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
      .products-page .products-content .products-carousel .products-carousel-seat {
        width: 500px;
        position: relative;
        flex: 1 0 100%;
        order: 2;
        text-align: center;
        overflow: hidden;
        text-shadow: .5px .5px 2px #232325; }
        @media (min-width: 1024px) {
          .products-page .products-content .products-carousel .products-carousel-seat {
            flex-basis: 33.33333%; } }
        .products-page .products-content .products-carousel .products-carousel-seat.reference-seat.show-info > div {
          top: 0; }
        .products-page .products-content .products-carousel .products-carousel-seat.reference-seat.show-info img {
          opacity: .3; }
        .products-page .products-content .products-carousel .products-carousel-seat:hover {
          cursor: crosshair; }
        .products-page .products-content .products-carousel .products-carousel-seat > div {
          position: absolute;
          max-width: 500px;
          width: 100%;
          padding: 40px 20px;
          top: 76%;
          left: 0;
          right: 0;
          margin-left: auto;
          margin-right: auto;
          transition: top .5s; }
        .products-page .products-content .products-carousel .products-carousel-seat img {
          margin-left: auto;
          margin-right: auto;
          display: block;
          max-width: 100%;
          max-height: 100%;
          opacity: .3;
          border-radius: 20px;
          transition: opacity .3s; }
          @media (min-width: 1024px) {
            .products-page .products-content .products-carousel .products-carousel-seat img {
              opacity: 1; } }
        .products-page .products-content .products-carousel .products-carousel-seat h3 {
          font-size: 4.4vw;
          margin: 0 20px; }
          @media (min-width: 1024px) {
            .products-page .products-content .products-carousel .products-carousel-seat h3 {
              font-size: 2.2vw; } }
        .products-page .products-content .products-carousel .products-carousel-seat p {
          font-size: 3.8vw;
          margin-top: 30px; }
          @media (min-width: 1024px) {
            .products-page .products-content .products-carousel .products-carousel-seat p {
              font-size: 1.4vw; } }
    .products-page .products-content .products-carousel-info {
      display: flex;
      list-style: none;
      justify-content: center;
      margin: 40px;
      padding: 0; }
      .products-page .products-content .products-carousel-info .products-carousel-info-bullet {
        padding: 10px 15px;
        cursor: pointer; }
        .products-page .products-content .products-carousel-info .products-carousel-info-bullet:after {
          content: ' ';
          width: 8px;
          height: 8px;
          display: inline-block;
          background-color: white;
          opacity: .5;
          border-radius: 50%;
          transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
        .products-page .products-content .products-carousel-info .products-carousel-info-bullet.selected:after {
          transform: scale(1.5);
          background-color: #FFB80C;
          opacity: 1; }

.promos-page {
  background-color: #232325;
  flex-direction: column;
  position: relative; }
  .promos-page .title {
    z-index: 1;
    margin-bottom: 0; }
  .promos-page .subtitle {
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 18px; }
    .promos-page .subtitle h3 {
      font-size: 14px; }
  @media (min-width: 1024px) {
    .promos-page:after {
      content: ' ';
      width: 100%;
      height: 100%;
      background-image: linear-gradient(0.25turn, #232325 -10%, transparent, #232325 110%);
      position: absolute;
      pointer-events: none;
      top: 0;
      left: 0; } }
  .promos-page .promos-content {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column; }
    .promos-page .promos-content .phone-frame {
      width: 100%;
      position: relative;
      align-self: center; }
      @media (min-width: 1024px) {
        .promos-page .promos-content .phone-frame {
          width: 900px;
          height: 450px; }
          .promos-page .promos-content .phone-frame:after {
            content: '';
            position: absolute;
            top: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            background-image: url("assets/phone-frame.svg"); } }
    .promos-page .promos-content .promos-carousel {
      display: flex;
      justify-content: space-between;
      list-style: none;
      margin: 0;
      padding: 0;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
      @media (min-width: 1024px) {
        .promos-page .promos-content .promos-carousel {
          height: 450px; } }
      .promos-page .promos-content .promos-carousel .promos-carousel-seat {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center; }
        @media (min-width: 1024px) {
          .promos-page .promos-content .promos-carousel .promos-carousel-seat {
            height: 450px;
            line-height: 450px;
            padding: 0 65px; } }
        .promos-page .promos-content .promos-carousel .promos-carousel-seat img {
          width: 100%;
          vertical-align: middle;
          border-radius: 20px; }
    .promos-page .promos-content .promos-carousel-info {
      display: flex;
      list-style: none;
      justify-content: center;
      margin: 40px;
      padding: 0; }
      .promos-page .promos-content .promos-carousel-info .promos-carousel-info-bullet {
        padding: 10px 15px;
        cursor: pointer; }
        .promos-page .promos-content .promos-carousel-info .promos-carousel-info-bullet:after {
          content: ' ';
          width: 8px;
          height: 8px;
          display: inline-block;
          background-color: white;
          opacity: .5;
          border-radius: 50%;
          transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
        .promos-page .promos-content .promos-carousel-info .promos-carousel-info-bullet.selected:after {
          transform: scale(1.5);
          background-color: #FFB80C;
          opacity: 1; }

.benefits-page {
  background-color: #0F0F10;
  flex-direction: column; }
  .benefits-page .title {
    max-width: 750px; }
  .benefits-page .benefits-content {
    overflow: hidden;
    width: 100%;
    position: relative;
    max-width: 1320px; }
    .benefits-page .benefits-content .benefits-carousel-info {
      display: flex;
      list-style: none;
      justify-content: center;
      margin: 40px;
      padding: 0;
      flex-flow: row wrap; }
      .benefits-page .benefits-content .benefits-carousel-info .benefits-carousel-info-bullet {
        margin: 10px 20px;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap; }
        @media (min-width: 1024px) {
          .benefits-page .benefits-content .benefits-carousel-info .benefits-carousel-info-bullet {
            font-size: 24px; } }
        .benefits-page .benefits-content .benefits-carousel-info .benefits-carousel-info-bullet:after {
          content: '';
          display: block;
          border-bottom: 2px solid;
          transform: scaleX(0);
          transition: transform .5s;
          transform-origin: 100% 50%; }
        .benefits-page .benefits-content .benefits-carousel-info .benefits-carousel-info-bullet.selected:after {
          transform-origin: 0 50%;
          transform: scaleX(1); }
      .benefits-page .benefits-content .benefits-carousel-info.reverse .benefits-carousel-info-bullet:after {
        transform-origin: 0 50%; }
      .benefits-page .benefits-content .benefits-carousel-info.reverse .benefits-carousel-info-bullet.selected:after {
        transform-origin: 100% 50%; }
    .benefits-page .benefits-content .benefits-carousel {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
      .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat {
        flex: 1 0 100%;
        overflow: hidden;
        text-shadow: .5px .5px 2px #232325; }
        .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list {
          list-style: none;
          padding: 0;
          display: flex;
          flex-wrap: wrap; }
          @media (max-width: 767px) {
            .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list {
              flex-direction: column;
              align-items: center;
              justify-content: flex-start; } }
          .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list .benefits-list-item {
            flex-basis: 33.3333%;
            text-align: center; }
            .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list .benefits-list-item p:first-child {
              font-weight: bold;
              font-size: 24px;
              color: #FFB80C;
              margin: 0; }
              @media (min-width: 1024px) {
                .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list .benefits-list-item p:first-child {
                  font-size: 72px; } }
            .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list .benefits-list-item p:last-child {
              font-size: 14px;
              margin: 0 20px 20px; }
              @media (min-width: 1024px) {
                .benefits-page .benefits-content .benefits-carousel .benefits-carousel-seat .benefits-list .benefits-list-item p:last-child {
                  font-size: 24px; } }

.plans-page {
  flex-direction: column;
  background: #232325;
  height: initial; }
  .plans-page .plan-list {
    display: flex;
    width: 100%;
    padding: 0 20px 20px;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 1024px) {
      .plans-page .plan-list {
        padding: 0 150px 20px;
        flex-direction: row; } }
    .plans-page .plan-list .plan {
      display: flex;
      flex-basis: 100%;
      justify-content: space-between;
      flex-direction: column;
      padding: 40px;
      border-radius: 20px;
      transition: .3s;
      background-color: #2A2A2C; }
      .plans-page .plan-list .plan + .plan {
        margin-top: 20px; }
        @media (min-width: 1024px) {
          .plans-page .plan-list .plan + .plan {
            margin-top: 0;
            margin-left: 20px; } }
      .plans-page .plan-list .plan:hover {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.4); }
      .plans-page .plan-list .plan .plan-content {
        display: flex;
        flex-direction: column; }
        .plans-page .plan-list .plan .plan-content img {
          margin-left: auto;
          margin-right: auto;
          display: block;
          max-width: 100%;
          padding: 10px; }
        .plans-page .plan-list .plan .plan-content h3 {
          margin: 0;
          font-size: 18px; }
          @media (min-width: 1024px) {
            .plans-page .plan-list .plan .plan-content h3 {
              margin: 20px 0;
              font-size: 36px; } }
        .plans-page .plan-list .plan .plan-content p {
          font-size: 14px; }
          @media (min-width: 1024px) {
            .plans-page .plan-list .plan .plan-content p {
              font-size: 24px; } }
      .plans-page .plan-list .plan .button {
        align-self: flex-start; }

footer {
  background-color: #2A2A2C;
  height: 84px;
  display: flex;
  align-items: center; }
  footer .footer-links {
    list-style: none;
    padding: 0;
    margin-left: 40px; }
    footer .footer-links li {
      display: inline-block; }
      footer .footer-links li + li {
        margin-left: 72px; }
    footer .footer-links a {
      text-decoration: none;
      color: white; }
    @media (max-width: 767px) {
      footer .footer-links {
        margin-left: 20px; }
        footer .footer-links li + li {
          margin-left: 12px; }
        footer .footer-links a {
          font-size: 14px; } }

#scrollToTop {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 14px;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  background-color: rgba(38, 36, 36, 0.99);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer; }
  #scrollToTop.scrolling {
    opacity: 1; }
  @supports (backdrop-filter: none) {
    #scrollToTop {
      backdrop-filter: blur(4px);
      background-color: rgba(28, 28, 29, 0.5); } }
