header *:not(i),
footer *:not(i),
#cms-content *:not(i) {
  font-family: 'Georama', sans-serif !important;
}

/* Hero */

.hero-new-xl {
  .hero-content {
    justify-content: end;
    height: 70%;
    align-items: unset;
  }
}

@media screen and (min-width: 769px) {
  .hero-new-xl {
    .hero-content {
      h1 {
        font-size: 75px;
      }
      h2 {
        font-size: 35px;
      }
    }
  }  
}


@media screen and (max-width: 769px) {
  .hero-new-xl {
    .hero-content {
      max-width: 80%;
      
      h1 {
        font-size: 52px;
      }
      h2 {
        font-size: 30px;
      }
    }
  }  
}

/* Title 2 col */
.title-2-col {
  h2 {
    font-size: 34px;
    margin: 0;
  }

  h3 {
    font-size: 25px;
  }

  p {
    font-size: 18px;
    margin: 0;
  }
}

/* Products */

.section-products {
  .product {
    padding: 0;

    &:hover {
      .product-img::after {
        background: #1F7EC095;
      }
    }
  }

  .product-img {
    img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 12px;
      max-width: 90%;
    }

    &::after {
      content: '';
      background: #1F7EC075;
      position: absolute;
      width: 90%;
      height: 100%;
      left: 0;
      border-radius: 12px;
      pointer-events: none;
      transition: background 0.3s ease;
    }
  }
  .product-label {
    position: absolute;
    bottom: -5px;
    right: 20%;
    z-index: 3;
    pointer-events: none;

    p {
      font-size: 30px;
      color: white;
    }
  }
}

@media screen and (max-width: 769px) {
  .section-products {
    .product {
      margin-bottom: 10px;

      .product-img img,
      .product-img::after {
        border-radius: 0;
        width: 100%;
        max-width: 100%;
      }

      .product-label {
        bottom: 4px;
        right: 28px;

        p {
          font-size: 45px;
        }
      }
    }
  }
}

.custom-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  width: 100%;
}

/* Members */
.plan-container {
  border-radius: 25px;
  padding: 1.5rem;

  h3 {
    font-size: 36px;
    font-weight: 600;
  }

  p {
    font-size: 16px;
  }

  ul li {
    font-weight: 300;
    padding-left: 10px;
  }

  button.more-info {
    border-radius: 7px;
    color: white;
    font-weight: bold;
  }

  &.silver {
    background-color: #E8E8E8;

    h3, p {
      color: #7D7D7D;
    }

    .more-info {
      background-color: #7D7D7D;
      font-weight: bold;
    }

    ul {
      padding-inline-start: 1.5rem;
    }

    ul li {
      list-style-image: url(/media/filer_public/70/ac/70ac6f1f-1c8a-4f52-aa9a-c07d80809629/silver-diamond.svg);
      color: #7D7D7D;
    }
  }
  &.gold {
    background-color: #EFEBD0;

    h3, p {
      color: #807C65;
    }

    .more-info {
      background-color: #807C65;
      font-weight: bold;
    }

    ul {
      padding-inline-start: 1.5rem;
    }

    ul li {
      list-style-image: url(/media/filer_public/c6/72/c6729a07-902a-4b32-8a68-9f201981251c/diamond-gold.svg);
      color: #807C65;
    }
  }
}

/* FAQs */
.faqs-custom {
  .faq-container {
    h2 {
      display: none;
    }
  }

  .faq-question-block  {
    padding: .5rem;
    border-radius: 15px;
    background-color: #2C9DEC21 !important;
  }
}

/* Contact form */
.contact-new #contact_form input:not([type=checkbox]), .contact-new #contact_form select, .contact-new #contact_form textarea {
  background-color: #2C9DEC21 !important;
}

/* GRecaptcha badge */
.grecaptcha-badge {
  visibility: hidden;
}

/* Footer */

footer {
  padding-top: 3rem;
  border-top: 2px solid #082336;

  .custom-footer-links {
    display: grid;
    font-weight: bold;
    padding-top: 25px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 769px) {
  footer {
    .custom-footer-links {
      grid-template-columns: 1fr 1fr;
    }
  }
}