body {
  margin: 0;
  font-family: "indivisible", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #0d0d0d;
  color: #fff; }

.landing {
  position: relative;
  min-height: calc(100dvh - 40px);
  background: url("../images/background.png") no-repeat center center;
  background-size: cover; }
  @media screen and (max-width: 767px) {
    .landing {
      min-height: auto;
      background: url("../images/background-mobile.png") no-repeat top center;
      background-size: cover; } }
  .landing .wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .landing .wrapper {
        width: auto;
        max-width: 850px;
        padding: 0 20px; } }
    .landing .wrapper header {
      padding: 20px 0; }
      .landing .wrapper header img {
        width: 320px; }
        @media screen and (max-width: 767px) {
          .landing .wrapper header img {
            display: block;
            width: 180px;
            margin: 0 auto; } }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          .landing .wrapper header img {
            width: 200px; } }
    .landing .wrapper .promo-text h3, .landing .wrapper .promo-text--mobile h3 {
      font-size: 34px;
      line-height: 1.2;
      font-weight: 400;
      text-align: right;
      margin: 0; }
    .landing .wrapper .promo-text .highlight-red, .landing .wrapper .promo-text--mobile .highlight-red {
      color: #E61E32;
      font-weight: bold; }
    .landing .wrapper .promo-text {
      flex-grow: 0.3; }
      @media screen and (max-width: 1024px) {
        .landing .wrapper .promo-text {
          display: none; } }
      .landing .wrapper .promo-text--mobile {
        display: none; }
        @media screen and (max-width: 1024px) {
          .landing .wrapper .promo-text--mobile {
            display: block;
            text-align: center;
            margin-bottom: 18px; }
            .landing .wrapper .promo-text--mobile h3 {
              font-size: 24px;
              text-align: center; } }
    .landing .wrapper .swiper {
      display: none; }
      @media screen and (max-width: 767px) {
        .landing .wrapper .swiper {
          display: block;
          margin-bottom: 16px; } }
      .landing .wrapper .swiper .swiper-wrapper {
        margin-bottom: 50px; }
      .landing .wrapper .swiper .swiper-slide {
        display: flex;
        justify-content: center; }
        .landing .wrapper .swiper .swiper-slide .card {
          display: block;
          text-decoration: none;
          color: inherit;
          cursor: pointer; }
      .landing .wrapper .swiper .swiper-pagination .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
        width: 16px;
        height: 16px; }
      .landing .wrapper .swiper .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1; }
    .landing .wrapper .card-container {
      display: flex;
      align-items: stretch;
      justify-content: flex-start;
      gap: 20px;
      margin-bottom: 40px; }
      @media screen and (max-width: 767px) {
        .landing .wrapper .card-container {
          display: none; } }
    .landing .wrapper .card {
      display: block;
      text-decoration: none;
      color: inherit;
      flex: 1;
      padding: 32px;
      max-width: 400px;
      border: 1px solid white;
      border-radius: 20px; }
      @media screen and (max-width: 767px) {
        .landing .wrapper .card {
          width: 100%;
          max-width: 280px;
          flex: unset;
          height: unset; } }
      @media screen and (max-width: 1024px) {
        .landing .wrapper .card {
          padding: 22px; } }
      .landing .wrapper .card:hover {
        cursor: pointer; }
      .landing .wrapper .card img {
        height: 60px;
        width: auto; }
        @media screen and (max-width: 1024px) {
          .landing .wrapper .card img {
            height: 44px; } }
      .landing .wrapper .card ul {
        list-style: none;
        padding: 0;
        margin-bottom: 0; }
        .landing .wrapper .card ul li {
          font-size: 19px;
          line-height: 1;
          margin-bottom: 12px; }
          @media screen and (max-width: 1024px) {
            .landing .wrapper .card ul li {
              font-size: 16px; } }
          .landing .wrapper .card ul li:last-child {
            margin-bottom: 0; }
          .landing .wrapper .card ul li strong {
            font-size: 32px;
            font-weight: 800; }
            @media screen and (max-width: 1024px) {
              .landing .wrapper .card ul li strong {
                font-size: 24px; } }
          .landing .wrapper .card ul li .highlight {
            text-transform: uppercase;
            font-weight: 800; }
          .landing .wrapper .card ul li.check {
            display: flex;
            align-items: center; }
          .landing .wrapper .card ul li svg {
            margin-right: 4px; }
          .landing .wrapper .card ul li.separator svg {
            width: 100%;
            margin: 0; }
      .landing .wrapper .card--green strong, .landing .wrapper .card--green .highlight {
        color: #7FFF00; }
      .landing .wrapper .card--gold strong, .landing .wrapper .card--gold .highlight {
        color: #DAC797; }
    .landing .wrapper .disclaimer {
      display: block;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 100;
      margin-bottom: 20px; }
      @media screen and (max-width: 767px) {
        .landing .wrapper .disclaimer {
          display: none; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .landing .wrapper .disclaimer {
          font-size: 14px; } }
  .landing .btn {
    display: inline-block;
    min-width: 290px;
    padding: 12px 0;
    margin-top: 40px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease; }
    @media screen and (max-width: 767px) {
      .landing .btn {
        min-width: auto;
        padding: 12px 20px; } }
    .landing .btn--green {
      background-color: #7FFF00;
      color: black; }
      .landing .btn--green:hover {
        background-color: #66cc00; }
    .landing .btn--gold {
      background-color: #DAC797;
      color: black; }
      .landing .btn--gold:hover {
        background-color: #cdb371; }
  .landing .footer {
    width: 100%;
    height: 120px;
    background-color: #000;
    border-top: 2px solid #E61E32; }
    @media screen and (min-height: 900px) {
      .landing .footer {
        position: fixed;
        bottom: 0; } }
    @media screen and (max-width: 767px) {
      .landing .footer {
        height: auto; } }
    .landing .footer-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto; }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .landing .footer-wrapper {
          max-width: 850px;
          padding: 0 20px; } }
      @media screen and (max-width: 767px) {
        .landing .footer-wrapper {
          flex-direction: column-reverse;
          margin: 0 36px;
          padding: 14px 0; } }
      .landing .footer-wrapper p, .landing .footer-wrapper a {
        color: #fff;
        font-size: 16px;
        line-height: 1.2; }
        @media screen and (max-width: 767px) {
          .landing .footer-wrapper p, .landing .footer-wrapper a {
            font-size: 12px; } }
        @media screen and (min-width: 768px) and (max-width: 1024px) {
          .landing .footer-wrapper p, .landing .footer-wrapper a {
            font-size: 14px; } }
      .landing .footer-wrapper--left p {
        margin-bottom: 20px; }
        @media screen and (max-width: 1024px) {
          .landing .footer-wrapper--left p {
            margin-bottom: 12px; } }
      .landing .footer-wrapper--left .icons {
        display: flex;
        align-items: center;
        gap: 20px; }
        @media screen and (max-width: 767px) {
          .landing .footer-wrapper--left .icons {
            justify-content: space-between;
            gap: 15px; } }
        .landing .footer-wrapper--left .icons img {
          height: 34px;
          width: auto;
          margin-bottom: 0; }
          @media screen and (max-width: 1024px) {
            .landing .footer-wrapper--left .icons img {
              height: 25px; } }
          .landing .footer-wrapper--left .icons img:first-child {
            height: 23px; }
            @media screen and (max-width: 1024px) {
              .landing .footer-wrapper--left .icons img:first-child {
                height: 18px; } }
      .landing .footer-wrapper--right {
        display: flex;
        flex-direction: column;
        align-items: flex-end; }
        @media screen and (max-width: 767px) {
          .landing .footer-wrapper--right {
            width: 100%;
            flex-direction: row;
            justify-content: space-between; } }
        .landing .footer-wrapper--right a {
          text-decoration: underline; }
    .landing .footer img {
      max-width: 260px;
      margin-bottom: 0.5rem; }
      @media screen and (max-width: 767px) {
        .landing .footer img {
          max-width: 138px;
          margin-bottom: 0; } }
      @media screen and (min-width: 768px) and (max-width: 1024px) {
        .landing .footer img {
          max-width: 180px; } }

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