* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.adv-1,
.adv-2 {
  display: none;
}

/* --------------------------------------- LAYOUT --------------------------------------- */
.hero h1,
.hero .btn,
.swiper-slide *,
.card,
.modal,
nav {
  will-change: transform, opacity;
}

html,
body {
  scrollbar-gutter: stable;
}

html {
  background-color: #161a34;
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  opacity: 1;
  /*   animation: 0.5s fadeIn ease-in-out forwards; */
  /* animation-delay: 0.2s; */
}
body.modal-open {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.legal-page {
  background-color: #161a34;
  color: white;
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

.container {
  padding: 60px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.container.light-text p {
  color: white;
}
.container.dark-text h2,
.container.dark-text p {
  color: #084373;
}

/* --------------------------------------- TYPOGRAPHY --------------------------------------- */
#tree {
  clip-path: inset(0 0 0 100%);
}

.hero h1 {
  font-size: 75px;
  color: white;
  text-align: center;
  line-height: 0.95;
}
.hero h1 span {
  color: #f6b132;
}
.hero h1.reveal {
  clip-path: inset(0 100% 0 0);
}

.swiper-slide-active h1 {
  -webkit-animation: 1s clipAnim ease-in-out forwards;
          animation: 1s clipAnim ease-in-out forwards;
  /* animation-delay: 0.7s; */
}

.swiper-slide-active .revealRight,
.swiper-slide-active #tree {
  -webkit-animation: 1s clipAnimRight ease-in-out forwards;
          animation: 1s clipAnimRight ease-in-out forwards;
}

.swiper-slide-active .btn {
  -webkit-animation: 1s slideInLeft ease-in-out forwards;
          animation: 1s slideInLeft ease-in-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.swiper-slide-active .btn#hidden-btn {
  -webkit-animation: none !important;
          animation: none !important;
}

@-webkit-keyframes clipAnim {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}

@keyframes clipAnim {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes clipAnimRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipAnimRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
h2 {
  font-size: 68px;
  color: white;
  text-align: center;
  line-height: 1;
}
h2 span {
  color: #f6b132;
}

h3 {
  color: white;
  font-size: 32px;
}
h3 span {
  color: #f6b132;
}

h4 {
  color: white;
  font-size: 26px;
}

p {
  line-height: 1.4;
}

/* --------------------------------------- HEADER --------------------------------------- */
.header {
  height: 60px;
  position: relative;
  z-index: 10;
}
.header.header-legal {
  height: auto !important;
}
.header .header-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 45px;
}
.header .header-content .logo {
  display: block;
  margin: 0 auto;
}

#close-menu,
#open-menu {
  cursor: pointer;
}

#open-menu {
  position: fixed;
  margin-left: auto;
  margin-top: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 50px;
}
#open-menu:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* ------------------------------------------ MENU -------------------------------- */
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  gap: 15px;
  pointer-events: none;
  -webkit-transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s transform ease-in-out;
  transition: 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
nav.active {
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
nav a {
  text-decoration: none;
  color: #084373;
  font-size: 42px;
  font-weight: 500;
  -webkit-transition: 0.2s -webkit-transform ease-in-out;
  transition: 0.2s -webkit-transform ease-in-out;
  transition: 0.2s transform ease-in-out;
  transition: 0.2s transform ease-in-out, 0.2s -webkit-transform ease-in-out;
  cursor: pointer;
}
nav a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#close-menu {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
}
#close-menu:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* --------------------------------------- HERO --------------------------------------- */
.hero {
  position: relative;
}
.hero .hero-countdown {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #f6b132;
  color: #084373;
  text-align: center;
  padding: 10px;
  z-index: 1;
  gap: 20px;
  font-size: 24px;
}
.hero .hero-countdown strong {
  color: white;
}
.hero .btn {
  opacity: 0;
  margin-top: 20px;
}
.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  min-height: 550px;
}
.hero h2 {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

.swiper {
  width: 100%;
  height: 100vh;
  background-color: transparent;
  margin-top: -60px;
}

.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-filter: brightness(0.75);
          filter: brightness(0.75);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

#detoxember {
  position: relative;
  font-size: 90px;
}

#tree {
  position: static !important;
  max-width: 160px;
  width: 100%;
  height: auto;
  -webkit-filter: none;
          filter: none;
  margin-bottom: -20px;
}

/* ------------------------------------------ Hero section -------------------------------- */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  padding: 6px 18px;
  color: #084373;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  min-width: 225px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn.no-hover {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}
.btn.no-hover:hover {
  -webkit-transform: none !important;
          transform: none !important;
}
.btn p {
  font-size: 18px !important;
}
.btn.btn-blue {
  background-color: #084373 !important;
  margin-right: 40px;
}
.btn.btn-blue p {
  color: white !important;
}
.btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.grid-3 p {
  font-size: 24px;
}
.grid-3 p b {
  font-size: 26px;
}
.grid-3 img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-3 #card-video {
  aspect-ratio: 9/16;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.grid-3 .grid-3-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.grid-3 .text-left {
  font-size: 30px;
  line-height: 1.5;
}

.justify-space {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  height: 100%;
}

/* ------------------------------------------ Background -------------------------------- */
.container-full {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-1 {
  background-image: url("../assets/images/bg-1.webp");
}

.bg-2 {
  background-image: url("../assets/images/snow.webp");
}

.bg-3 {
  background-image: url("../assets/images/bg-3.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-yellow {
  background-color: #f6b132;
}
.bg-yellow p {
  color: #084373;
}
.bg-yellow .grid-3 img {
  aspect-ratio: 16/10;
}

.bg-white {
  background-color: white;
}
.bg-white * {
  text-align: start;
}
.bg-white p,
.bg-white a {
  color: #084373;
}
.bg-white.modal {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.bg-white .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-transform: none !important;
          transform: none !important;
}
.bg-white .grid-3 {
  padding: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 25px;
  max-height: 670px;
  margin-bottom: 20px;
}
.bg-white .grid-3 .grid-3-item {
  text-align: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}
.bg-white .grid-3 .grid-3-item .download-list {
  gap: 7px;
}
.bg-white .grid-3 .grid-3-item .download-list ::marker {
  color: #084373 !important;
}
.bg-white .grid-3 .grid-3-item .presse-list ::marker {
  color: #084373 !important;
}
.bg-white .grid-3 .grid-3-item .presse-list a {
  text-decoration: underline;
}
.bg-white .text-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: auto;
}
.bg-white ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-left: 20px;
}
.bg-white ul a {
  font-size: 24px;
  text-decoration: none;
}

::marker {
  font-size: 20px !important;
}

.bg-grey {
  background-color: #d7cfca;
}
.bg-grey p {
  color: #084373;
}
.bg-grey h2 {
  color: #084373;
}

.bg-forest {
  background-color: rgb(109, 172, 231);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(../assets/images/forest.webp);
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/images/forest.webp);
  background-size: cover;
}
.bg-forest p,
.bg-forest h2 {
  color: white;
}
.bg-forest h2 {
  font-size: 50px;
}
.bg-forest .grid-3 {
  grid-template-columns: 3fr 6fr 3fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.bg-forest .grid-3 .grid-3-item {
  text-align: start;
}
.bg-forest .grid-3 .grid-3-item h2 {
  text-align: start;
}
.bg-forest .grid-3 img {
  margin-top: auto;
}
.bg-forest form p {
  color: inherit !important;
  font-size: inherit;
}

.sib-form-block {
  font-size: 26px;
  text-align: left;
  font-weight: 700;
  color: #fdb92e;
  background-color: transparent;
  text-align: left;
}

.entry__field {
  width: 100%;
  overflow: hidden;
}
.entry__field input {
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
  width: 100%;
  border-radius: 5px;
}

.bg-light {
  background-color: #fff1e5;
}

.bg-tipp {
  position: relative;
  background-color: #084373;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(212, 212, 212, 0.3490196078)), to(rgba(212, 212, 212, 0.3490196078))), url(../assets/images/hero-2.webp);
  background: linear-gradient(rgba(212, 212, 212, 0.3490196078), rgba(212, 212, 212, 0.3490196078)), url(../assets/images/hero-2.webp);
  background-size: cover;
}
.bg-tipp .grid-3 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.bg-tipp.active #card-video {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  opacity: 1 !important;
}

/* ------------------------------------------ Cards before December -------------------------------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 50px;
  margin-top: 60px;
}
.cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  background-color: #fff1e5;
  color: black;
  padding: 30px;
  border-radius: 30px;
}
.cards .card.bird {
  position: relative;
  background-color: #f6b132;
  -webkit-transform: rotate(5.4deg) !important;
          transform: rotate(5.4deg) !important;
}
.cards .card.bird::after {
  content: "1";
  position: absolute;
  top: 2%;
  left: 6%;
  color: white;
  font-weight: bold;
  font-size: 50px;
  font-family: "CyGroteskKeyBold";
}
.cards .card.bird img {
  aspect-ratio: 1/1;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.cards .card p {
  font-size: 26px;
  color: #084373;
  text-align: center;
}
.cards .card:nth-child(1) {
  -webkit-transform: rotate(-1.7deg);
          transform: rotate(-1.7deg);
}
.cards .card:nth-child(2) {
  -webkit-transform: rotate(1.6deg);
          transform: rotate(1.6deg);
}
.cards .card-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ------------------------------------------ Initiators -------------------------------- */
#initiatoren {
  position: relative;
}

.text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding: 25px 0;
}
.text-cols .text-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-align: start;
}
.text-cols .text-col h2 {
  text-align: start;
  font-size: 50px;
}
.text-cols .text-col img {
  max-width: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  border-radius: 50%;
}
.text-cols .text-col a {
  color: white;
}
.text-cols .text-col p {
  font-size: 24px;
}
.text-cols .text-col p.text-col-bio {
  font-size: 20px;
}
.text-cols .text-col p span {
  color: #fdb92e;
  font-weight: bold;
}

.signature-box {
  position: relative;
  margin: 0 auto;
}
.signature-box .signature {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 32px !important;
}

#scroll-top {
  position: absolute;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 10;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ------------------------------------------ Footer -------------------------------- */
.footer {
  padding: 20px 0;
  overflow: hidden;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 1440px;
  gap: 50px;
  margin: 0 auto;
  padding: 20px;
  row-gap: 25px;
}
.footer .footer-content .footer-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.footer .footer-content .footer-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
}
.footer .footer-content .links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.footer .footer-content .links a {
  font-weight: bold;
}
.footer p,
.footer a {
  font-size: 20px;
  color: white;
}
.footer a {
  text-decoration: underline;
  cursor: pointer;
}
.footer h3 {
  margin-bottom: 20px;
}
.footer .copyright,
.footer .footer-bottom-links a {
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.socials img {
  width: 75px;
}

.globe-logo {
  display: block;
  background-color: white;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  padding: 10px;
  padding-left: 0;
  position: relative;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.globe-logo img {
  position: relative;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 100%;
  z-index: 1;
}
.globe-logo::before {
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ff9800;
  height: 200px;
  bottom: 75px;
  left: 50%;
}
.globe-logo::after {
  position: absolute;
  content: "";
  width: 8px;
  background-color: #ff9800;
  height: 5px;
  bottom: 75px;
  left: 46%;
}

.footer .privacy {
  font-size: 16px;
  color: #fdb92e;
  text-transform: uppercase;
  font-weight: 600;
}

/* ------------------------------------------ FAQ -------------------------------- */
.faq {
  display: grid;
  grid-template-columns: 4fr 4.1fr 3.9fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 85px;
}
.faq img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq h2 {
  text-align: start;
  color: #fdb92e;
  margin-bottom: 45px;
}
.faq .faq-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding-bottom: 50px;
}
.faq .faq-buttons .faq-button {
  color: #084373;
  font-size: 34px;
  cursor: pointer;
  font-weight: bold;
}
.faq .faq-buttons .faq-button.active {
  color: #fdb92e;
  text-decoration: underline;
}
.faq .faq-buttons .faq-button:hover {
  text-decoration: underline;
}
.faq .faq-cards {
  position: relative;
  background-color: #fdb92e;
  color: #084373;
  border-radius: 30px;
  overflow: hidden;
}
.faq .faq-cards p {
  font-size: 26px;
}
.faq .faq-cards .faq-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  top: 0;
  height: 100%;
  padding: 20px;
  -webkit-transition: 0.4s opacity ease-in-out;
  transition: 0.4s opacity ease-in-out;
}
.faq .faq-cards .faq-card:first-child {
  position: relative;
}
.faq .faq-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  margin-top: auto;
  margin-bottom: -85px;
}
.faq .btn {
  margin: 0;
}

.asp-vertical {
  aspect-ratio: 7/10 !important;
  -o-object-position: center !important;
     object-position: center !important;
}

.text-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #f9f4e1;
  padding: 20px;
  border-radius: 30px;
}
.text-card ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-left: 25px;
}
.text-card ul p {
  text-align: start;
}

/* ------------------------------------------ MODAL -------------------------------- */
.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: auto;
  z-index: 1001;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* ------------------------------------------ Media & Press -------------------------------- */
}
.modal * {
  pointer-events: none;
}
.modal .container {
  width: 100%;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal.active * {
  pointer-events: all;
}
.modal .btn {
  margin: 0 !important;
}
.modal .close-modal {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
  -webkit-filter: invert(0);
          filter: invert(0);
  cursor: pointer;
}
.modal .close-modal:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.modal .close-modal.white {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(102%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(102%) contrast(102%);
}
.modal .close-modal.blue {
  -webkit-filter: brightness(0) saturate(100%) invert(22%) sepia(32%) saturate(2343%) hue-rotate(179deg) brightness(90%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(22%) sepia(32%) saturate(2343%) hue-rotate(179deg) brightness(90%) contrast(101%);
}
.modal.m-and-p .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
  margin-top: 25px;
}
.modal.m-and-p a:hover {
  text-decoration: underline;
}
.modal.m-and-p .globe-logo {
  background-color: #084373;
  -webkit-transform: scale(1.3) rotate(15deg) translateY(-10px);
          transform: scale(1.3) rotate(15deg) translateY(-10px);
}
.modal.m-and-p .globe-logo img {
  -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(100%) saturate(1%) hue-rotate(132deg) brightness(105%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(80%) sepia(100%) saturate(1%) hue-rotate(132deg) brightness(105%) contrast(101%);
}

/* ------------------------------------------ Media Queries -------------------------------- */
@media screen and (min-width: 1700px) {
  .modal .container {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@media screen and (max-height: 950px) {
  .modal {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 30px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.text-large {
  font-size: 35px !important;
  font-weight: bold;
  line-height: 1.3;
}

/* ------------------------------------------ Card Swiper -------------------------------- */
.card-swiper-wrapper {
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.card-swiper-wrapper #arrow-left,
.card-swiper-wrapper #arrow-right {
  width: 60px;
  cursor: pointer;
}
.card-swiper-wrapper #arrow-left {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.card-swiper-wrapper #arrow-right {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.card-swiper {
  height: auto;
  margin-top: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.card-swiper .swiper-wrapper {
  padding: 10px 0;
}
.card-swiper img {
  -webkit-filter: none;
          filter: none;
}

/* ------------------------------------------ Advent Card -------------------------------- */
.advent-card {
  overflow: auto;
  aspect-ratio: 1/1;
  border-radius: 30px;
  background-color: #adbbd0;
}
.advent-card.available {
  background-color: #fdb92e;
  cursor: pointer;
  position: relative;
}
.advent-card.available::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../assets/images/play.webp) no-repeat center;
  background-size: 25% 25%;
}
.advent-card .advent-card-day {
  position: absolute;
  top: 2%;
  left: 6%;
  color: white;
  font-weight: bold;
  font-size: 50px;
  font-family: "CyGroteskKeyBold";
}
.advent-card:nth-child(even) {
  -webkit-transform: rotate(3deg) scale(0.9);
          transform: rotate(3deg) scale(0.9);
}
.advent-card:nth-child(odd) {
  -webkit-transform: rotate(-3deg) scale(0.9);
          transform: rotate(-3deg) scale(0.9);
}

#card-description {
  font-size: 38px;
  color: white;
  margin-top: 10px;
  line-height: 1.3;
  font-family: "CyGroteskKeyRegular";
}

.advent-card-title {
  font-weight: 500;
  letter-spacing: 1.2px;
  color: white;
  line-height: 1.2;
  font-size: 20px !important;
  font-family: "CyGroteskKeyBold";
}
.advent-card-title #highlight {
  color: #f6b132;
}

/* ------------------------------------------ Legal Page -------------------------------- */
.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: start;
}
.legal h2 {
  color: white;
  font-size: 42px !important;
  margin: 20px 0;
  text-align: start;
}
.legal h3 {
  color: white;
  font-size: 24px !important;
}
.legal h4 {
  color: white;
  font-size: 18px !important;
}
.legal p {
  font-size: 16px !important;
}
.legal a {
  color: #f6b132;
}
.legal ul,
.legal ol {
  margin-left: 25px;
}
.legal ul li,
.legal ol li {
  margin: 5px 0;
}
.legal ul ul,
.legal ol ul {
  margin-left: 25px;
}

.preview {
  position: relative;
  max-width: 340px;
}
.preview img {
  width: 100%;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  cursor: pointer;
}
.preview .glass {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 10;
}

.stickers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: auto;
  max-width: 380px;
}
.stickers img {
  width: 100%;
  cursor: pointer;
  -webkit-animation: 1.4s pulse infinite;
          animation: 1.4s pulse infinite;
}
.stickers img:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.stickers img:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.stickers img:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.stickers .glass {
  margin-bottom: 5px;
  -webkit-animation: none !important;
          animation: none !important;
  cursor: default;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.16);
            transform: scale(1.16);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.16);
            transform: scale(1.16);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fdb92e;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.popup.active {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  max-width: 90%;
  max-height: 90%;
}

.popup-close {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(102%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(102%) contrast(102%);
  -webkit-transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s -webkit-transform ease-in-out;
  transition: 0.5s transform ease-in-out;
  transition: 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
}
.popup-close:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#sib-form {
  padding: 10px;
}
#sib-form * {
  font-weight: 500;
  font-family: "Inter";
}
#sib-form b {
  font-weight: 500;
}
#sib-form #sib-title {
  font-weight: 700 !important;
  font-size: 28px !important;
}

.entry__field input {
  padding: 10px;
}

.sib-form-container {
  background-color: white;
  border-radius: 20px;
}

/* ------------------------------------------ Media Queries -------------------------------- */
@media only screen and (max-width: 1440px) {
  .container {
    padding: 40px 20px;
  }
  .hero .swiper {
    min-height: auto;
  }
  .grid-3,
  .text-cols {
    gap: 30px;
  }
  .faq {
    grid-template-columns: 3.5fr 4.5fr 4fr;
  }
  #open-menu,
  #close-menu {
    width: 45px;
    height: auto;
    top: 25px;
    right: 25px;
  }
  #scroll-top {
    bottom: 25px;
    right: 25px;
  }
  .popup-close {
    top: 25px;
    right: 25px;
    width: 45px;
    height: auto;
  }
  .modal .close-modal {
    top: 25px;
    right: 25px;
    width: 45px;
    height: auto;
  }
  .header .header-content {
    padding: 0 20px;
  }
  .header .header-content .logo {
    width: 200px;
    margin-top: -20px;
  }
  .cards {
    gap: 30px;
  }
  /* ---- Typography ---- */
  h1 {
    font-size: 60px !important;
  }
  #detoxember {
    font-size: 80px;
  }
  h2 {
    font-size: 50px !important;
  }
  .grid-3 .text-left,
  .hero .hero-countdown {
    font-size: 22px;
  }
  .grid-3 p,
  .text-cols .text-col p {
    font-size: 20px;
  }
  .grid-3 p b,
  .cards .card p,
  .faq .faq-cards p {
    font-size: 22px;
  }
  .text-cols .text-col p.text-col-bio {
    font-size: 18px;
  }
  nav a {
    font-size: 32px !important;
  }
  .signature {
    font-size: 32px !important;
  }
  .btn {
    min-width: 200px;
  }
  .btn p {
    font-size: 14px !important;
  }
  /* ---- Typography End ---- */
}
@media only screen and (max-width: 1200px) {
  .grid-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding: 0;
  }
  .grid-3 img {
    max-width: 500px;
    width: 100%;
  }
  .grid-3 #card-video {
    max-width: 420px;
    width: 100%;
  }
  #card-description {
    font-size: 26px !important;
    max-width: 420px;
  }
  .advent-description {
    gap: 20px !important;
  }
  .faq {
    gap: 25px;
    grid-template-columns: 3fr 5fr 4fr;
  }
  .faq .faq-buttons .faq-button {
    font-size: 26px;
  }
  .footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    position: relative;
  }
  .footer .footer-content .links {
    gap: 15px;
  }
  .footer .globe-logo {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .footer p {
    max-width: 700px;
  }
  .grid-3 {
    max-width: 700px;
  }
  .hide {
    display: none;
  }
  .socials a img {
    width: 50px;
    height: 50px;
  }
  .modal {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 60px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .modal .container {
    padding: 0;
    padding-top: 25px;
  }
  .modal .grid-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .modal .grid-3 .asp-vertical {
    aspect-ratio: unset !important;
  }
  .m-and-p {
    padding: 0 20px;
  }
  .m-and-p .grid-3 {
    margin: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    max-height: 100% !important;
  }
  .m-and-p .grid-3 .grid-3-item {
    height: auto;
    gap: 20px;
  }
  .m-and-p .text-bottom {
    margin-top: 25px;
  }
  .m-and-p .container {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 50px;
  }
  .m-and-p .globe-logo {
    display: none;
  }
  .bg-forest .grid-3 .grid-3-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .text-large {
    font-size: 30px !important;
  }
  .bg-white ul {
    gap: 10px;
  }
  .bg-white ul a {
    font-size: 20px;
  }
  .bg-forest .grid-3 img {
    display: none;
  }
}
@media screen and (min-width: 993px) {
  .hero .swiper {
    min-height: 1000px;
  }
}
@media screen and (min-height: 1200px) {
  .hero .swiper {
    height: 1200px;
  }
}
@media only screen and (max-width: 992px) {
  .hero .swiper {
    height: 600px;
  }
  .hero .hero-content {
    min-height: 373px;
  }
  .container {
    padding: 40px 20px;
  }
  .title {
    margin-bottom: 25px;
  }
  .faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .faq h2 {
    margin-bottom: 25px;
  }
  .faq h2 br {
    display: none;
  }
  .faq .faq-buttons {
    padding-bottom: 0;
  }
  .faq img {
    max-width: 420px;
  }
  .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
  }
  .cards .card {
    max-width: 500px;
    width: 90%;
  }
  .cards .card-col {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
  .cards .card-col .btn {
    margin: 0;
  }
  .text-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    padding-bottom: 80px;
  }
  .text-cols h2 {
    max-width: 785px;
  }
  .text-cols h2 br {
    display: none;
  }
  .grid-3,
  .text-cols {
    gap: 25px;
  }
  #tree {
    max-width: 100px;
  }
  .hero .btn {
    margin-top: 10px;
  }
  /* ---- Typography ---- */
  h1 {
    font-size: 50px !important;
  }
  #detoxember {
    font-size: 60px;
  }
  h2 {
    font-size: 40px !important;
  }
  .grid-3 .text-left,
  .hero .hero-countdown {
    font-size: 18px;
  }
  .grid-3 p,
  .text-cols .text-col p {
    font-size: 18px;
  }
  .grid-3 p b,
  .cards .card p,
  .faq .faq-cards p {
    font-size: 20px;
  }
  .text-cols .text-col p.text-col-bio {
    font-size: 16px;
  }
  nav a {
    font-size: 26px !important;
  }
  .signature {
    font-size: 32px !important;
  }
  .footer p {
    font-size: 18px;
  }
  .text-large {
    font-size: 24px !important;
  }
  /* ---- Typography End ---- */
  .card-swiper-wrapper {
    gap: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .header .header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .header-content .logo {
    margin: 0;
    margin-top: -20px;
  }
  .header .header-content .header-space {
    display: none;
  }
  .header .logo img {
    width: 185px;
    height: auto;
  }
  #open-menu,
  #close-menu {
    display: block;
    top: 35px;
    width: 35px;
    margin-top: 0;
  }
  #scroll-top {
    bottom: 25px;
  }
  #close-menu {
    top: 25px;
  }
  .popup-close {
    top: 30px;
    width: 35px;
    margin-top: 0;
  }
  .modal .close-modal {
    top: 30px;
    width: 35px;
    margin-top: 0;
  }
  /* ---- Typography ---- */
  h1 {
    font-size: 40px !important;
  }
  #detoxember {
    font-size: 50px;
  }
  h2 {
    font-size: 30px !important;
  }
  .signature {
    font-size: 32px !important;
  }
  .faq .faq-buttons .faq-button {
    font-size: 22px;
  }
  .text-large {
    font-size: 22px !important;
  }
  #card-description {
    font-size: 20px !important;
  }
  .cards .card p {
    font-size: 16px !important;
  }
  .hero .hero-countdown {
    font-size: 16px !important;
  }
  /* ---- Typography End ---- */
  .cards .card {
    padding: 20px;
  }
  .card-swiper-wrapper {
    gap: 10px;
  }
  .card-swiper-wrapper #arrow-left,
  .card-swiper-wrapper #arrow-right {
    width: 50px;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 34px !important;
  }
  #detoxember {
    font-size: 40px;
  }
  h2 {
    font-size: 26px !important;
  }
  .hero .swiper {
    height: 600px;
    min-width: auto;
  }
  .card-swiper-wrapper {
    gap: 10px;
  }
  .card-swiper-wrapper #arrow-left,
  .card-swiper-wrapper #arrow-right {
    width: 45px;
  }
  #scroll-top {
    bottom: 15px;
    right: 15px;
  }
  #sib-container {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 380px) {
  nav {
    gap: 15px;
  }
  nav a {
    font-size: 20px !important;
  }
  h1 {
    font-size: 32px !important;
  }
  #detoxember {
    font-size: 32px;
  }
  h2 {
    font-size: 24px !important;
  }
  .card-swiper-wrapper #arrow-left,
  .card-swiper-wrapper #arrow-right {
    width: 40px;
  }
  .footer .globe-logo {
    -webkit-transform: scale(0.7) rotate(15deg) translateY(-25px);
            transform: scale(0.7) rotate(15deg) translateY(-25px);
  }
  .footer h3 {
    font-size: 20px !important;
  }
  .footer h4 {
    font-size: 18px !important;
  }
  .footer p,
  .footer a {
    font-size: 16px !important;
  }
  .sib-form-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    border-radius: 0;
  }
  .bg-forest {
    padding-bottom: 0;
  }
  #sib-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 10px 0;
  }
  #sib-form #sib-title {
    font-size: 22px !important;
  }
  .sib-captcha.sib-form-block {
    padding: 0 8px;
  }
}/*# sourceMappingURL=styles.css.map */