/* Basic CSS reset (Bootstrap-free)
   Keep it minimal so it won't fight with component styles. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* Improves default text rendering */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

/* -----------------
  COLORS
-------------------*/
/* -----------------
  UTILITY COLORS
-------------------*/
/* -----------------
  THEME COLOR TOKENS
-------------------*/
/* -----------------
  TRANSITIONS
-------------------*/
/* -----------------
  COMPONENT VARIABLES
-------------------*/
html {
  overflow-x: clip;
}

body {
  background-color: #f7f4f2;
  position: relative;
  overflow-x: clip;
  font-size: 1rem;
  line-height: 1.375rem;
}

@font-face {
  font-family: "Bravely Script";
  src: url("../fonts/BravelyScript-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Galano Grotesque";
  src: url("../fonts/GalanoGrotesqueRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Galano Grotesque";
  src: url("../fonts/GalanoGrotesqueMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Galano Grotesque";
  src: url("../fonts/GalanoGrotesqueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Galano Grotesque", sans-serif;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bravely Script", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.375rem;
}

h1 {
  color: #ffffff;
  font-size: 3rem;
  line-height: 3.5rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 6.75rem;
    line-height: 6.625rem;
    letter-spacing: -0.2625rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 8.75rem;
    line-height: 6.625rem;
    letter-spacing: -0.2625rem;
  }
}

.heading-default {
  font-family: Bravely Script, sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.09rem;
}
@media (min-width: 992px) {
  .heading-default {
    font-size: 4.5rem;
    line-height: 4rem;
  }
}

.heading-small {
  font-family: Galano Grotesque, sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.125rem;
}

@media (min-width: 0) and (max-width: 575px) {
  .hide-xs {
    display: none;
  }
}

@media (min-width: 0) {
  .hide-xs-up {
    display: none;
  }
}

@media (max-width: -1px) {
  .hide-xs-down {
    display: none;
  }
}

@media (min-width: 0) and (max-width: 575px) {
  .w-xs-100 {
    width: 100%;
  }
}

@media (max-width: -1px) {
  .w-to-xs-100 {
    width: 100%;
  }
}

@media (min-width: 0) {
  .flex-xs-up {
    display: flex;
  }
}

@media (max-width: -1px) {
  .flex-xs-down {
    display: flex;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hide-sm {
    display: none;
  }
}

@media (min-width: 576px) {
  .hide-sm-up {
    display: none;
  }
}

@media (max-width: 575px) {
  .hide-sm-down {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .w-sm-100 {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .w-to-sm-100 {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .flex-sm-up {
    display: flex;
  }
}

@media (max-width: 575px) {
  .flex-sm-down {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hide-md {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-md-up {
    display: none;
  }
}

@media (max-width: 767px) {
  .hide-md-down {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .w-md-100 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .w-to-md-100 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .flex-md-up {
    display: flex;
  }
}

@media (max-width: 767px) {
  .flex-md-down {
    display: flex;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hide-lg {
    display: none;
  }
}

@media (min-width: 992px) {
  .hide-lg-up {
    display: none;
  }
}

@media (max-width: 991px) {
  .hide-lg-down {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .w-lg-100 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .w-to-lg-100 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .flex-lg-up {
    display: flex;
  }
}

@media (max-width: 991px) {
  .flex-lg-down {
    display: flex;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hide-xl {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hide-xl-up {
    display: none;
  }
}

@media (max-width: 1199px) {
  .hide-xl-down {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .w-xl-100 {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .w-to-xl-100 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .flex-xl-up {
    display: flex;
  }
}

@media (max-width: 1199px) {
  .flex-xl-down {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .hide-xxl {
    display: none;
  }
}

@media (min-width: 1400px) {
  .hide-xxl-up {
    display: none;
  }
}

@media (max-width: 1399px) {
  .hide-xxl-down {
    display: none;
  }
}

@media (min-width: 1400px) {
  .w-xxl-100 {
    width: 100%;
  }
}

@media (max-width: 1399px) {
  .w-to-xxl-100 {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .flex-xxl-up {
    display: flex;
  }
}

@media (max-width: 1399px) {
  .flex-xxl-down {
    display: flex;
  }
}

.flex {
  display: flex;
}

.position-relative {
  position: relative;
}

/* -----------------
  TEXT UTILITIES
-------------------*/
.text-center {
  text-align: center;
}

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

.text-graphite {
  color: #333333;
}

.nowrap {
  white-space: nowrap;
}

/* -----------------
  DEBUG UTILITIES
-------------------*/
.debug-center::after {
  content: "";
  position: absolute;
  top: -400%;
  left: 50%;
  width: 1px;
  height: 800%;
  background-color: rgb(0, 255, 255);
}

@keyframes text-slide-out-up {
  0% {
    transform: translateY(0);
  }
  49% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes text-slide-out-down {
  0% {
    transform: translateY(0);
  }
  49% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes move-right-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0.125rem);
  }
}
@keyframes join-us-expand-left {
  0% {
    transform: rotate(-7.381deg) scaleX(0);
    opacity: 0;
  }
  100% {
    transform: rotate(-7.381deg) scaleX(1);
    opacity: 1;
  }
}
@keyframes join-us-expand-right {
  0% {
    transform: rotate(4.436deg) scaleX(0);
    opacity: 0;
  }
  100% {
    transform: rotate(4.436deg) scaleX(1);
    opacity: 1;
  }
}
@keyframes sway-center {
  0% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes arrow-animation {
  0% {
    width: 4.1199375rem;
    height: 1.41175rem;
    left: 10.12415625rem;
    top: 5.7863125rem;
    transform: rotate(32.98deg);
  }
  24.99% {
    width: 4.1199375rem;
    height: 1.41175rem;
    left: 10.12415625rem;
    top: 5.7863125rem;
    transform: rotate(32.98deg);
  }
  25% {
    width: 6.4296875rem;
    height: 2.2031875rem;
    left: 6.80625rem;
    top: 4.0859375rem;
    transform: rotate(30.9deg);
  }
  49.99% {
    width: 6.4296875rem;
    height: 2.2031875rem;
    left: 6.80625rem;
    top: 4.0859375rem;
    transform: rotate(30.9deg);
  }
  50% {
    width: 8.9375rem;
    height: 3.0625rem;
    left: 2.99540625rem;
    top: 2.27615625rem;
    transform: rotate(23.97deg);
  }
  74.99% {
    width: 8.9375rem;
    height: 3.0625rem;
    left: 2.99540625rem;
    top: 2.27615625rem;
    transform: rotate(23.97deg);
  }
  75% {
    width: 6.4296875rem;
    height: 2.2031875rem;
    left: 0.18090625rem;
    top: 1.08575rem;
    transform: rotate(21.15deg);
  }
  100% {
    width: 6.4296875rem;
    height: 2.2031875rem;
    left: 0.18090625rem;
    top: 1.08575rem;
    transform: rotate(21.15deg);
  }
}
@keyframes float-up-down {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.3125rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(0.3125rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes float-left-right {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-0.3125rem);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0.3125rem);
  }
  100% {
    transform: translateX(0);
  }
}
.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container,
  .container-fluid {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container,
  .container-fluid {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 767px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

.container-sm {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container-sm {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container-sm {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 576px) {
  .container-sm {
    max-width: 576px;
  }
}

.container-md {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container-md {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container-md {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 768px) {
  .container-md {
    max-width: 767px;
  }
}

.container-lg {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container-lg {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container-lg {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 952px;
  }
}

.container-xl {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container-xl {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container-xl {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1170px;
  }
}

.container-xxl {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container-xxl {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .container-xxl {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1170px;
  }
}

.footer-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(1.875rem * 0.5);
  padding-left: calc(1.875rem * 0.5);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .footer-container {
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}
@media (min-width: 992px) {
  .footer-container {
    max-width: 85rem;
    background: #ffffff;
    padding-right: calc(2.5rem * 0.5);
    padding-left: calc(2.5rem * 0.5);
  }
}

@media (min-width: 992px) {
  .site-footer {
    background-color: #f7f4f2;
  }
}
.site-footer.bg-green-dark {
  background-color: #587D18;
}
.site-footer .wrap {
  padding: 2.5rem 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .site-footer .wrap {
    background-color: transparent;
    padding: 7.5rem 0 2.5rem;
    background-image: image-set(url("../images/footer-bg-large.webp") 1x, url("../images/footer-bg-large@2x.webp") 2x);
    background-position: center top !important;
    background-repeat: no-repeat;
  }
  .site-footer .wrap.forest-bg {
    background-image: image-set(url("../images/footer-bg-forest.webp") 1x, url("../images/footer-bg-forest@2x.webp") 2x);
  }
  .site-footer .wrap.forest-bg:has(.countdown) {
    padding-top: 9.0625rem;
  }
}
.site-footer .wrap:has(.countdown) {
  background-image: image-set(url("../images/footer-bg.webp") 1x, url("../images/footer-bg@2x.webp") 2x);
  background-position: center -3.4375rem;
  background-repeat: no-repeat;
  padding-top: 3.75rem;
}
@media (min-width: 992px) {
  .site-footer .wrap:has(.countdown) {
    background-image: image-set(url("../images/footer-bg-large.webp") 1x, url("../images/footer-bg-large@2x.webp") 2x);
  }
}
.site-footer .wrap:has(.countdown).forest-bg {
  background-image: image-set(url("../images/footer-bg-forest.webp") 1x, url("../images/footer-bg-forest@2x.webp") 2x);
}
.site-footer .wrap:has(.countdown) .footer-container {
  background: #ffffff;
}
@media (max-width: 991px) {
  .site-footer .wrap:has(.countdown) .title {
    margin-top: 2.5rem;
  }
}
.site-footer .wrap.forest-bg .countdown-title {
  margin-top: 0;
}
.site-footer .wrap.forest-bg .countdown {
  margin-bottom: 6.5625rem;
}
.site-footer .inner {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .site-footer .inner {
    padding: 3.75rem;
    gap: 3rem;
  }
}
.site-footer .heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .heading {
    max-width: 45rem;
  }
}
.site-footer .title {
  font-family: "Bravely Script", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.5rem;
  letter-spacing: -0.1875rem;
  color: #333333;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer .title {
    font-size: clamp(3.75rem, 2.4vw, 3.75rem);
    line-height: 1;
    letter-spacing: 0;
  }
}
.site-footer .cloud1,
.site-footer .cloud2,
.site-footer .sun {
  display: none;
}
.site-footer .with-shapes.shapes-white .cloud1,
.site-footer .with-shapes.shapes-white .cloud2,
.site-footer .with-shapes.shapes-white .sun {
  filter: invert(1);
}
@media (min-width: 992px) {
  .site-footer .with-shapes .cloud1,
  .site-footer .with-shapes .cloud2,
  .site-footer .with-shapes .sun {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.site-footer .with-shapes .cloud1 {
  top: 3.4375rem;
  left: calc(50% - 29.0625rem);
}
.site-footer .with-shapes .cloud2 {
  top: 1.5625rem;
  left: calc(50% - 33.4375rem);
}
.site-footer .with-shapes .sun {
  top: 2.8125rem;
  left: calc(50% + 19.375rem);
}
.site-footer .links {
  width: 100%;
}
.site-footer .links-list {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #333333;
}
@media (min-width: 576px) {
  .site-footer .links-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .site-footer .links-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 3.4375rem;
    row-gap: 1rem;
  }
}
.site-footer .divider {
  width: 100%;
  height: 0.0625rem;
  background-color: #b6b6b6;
}
.site-footer .logos {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.site-footer .logos-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .site-footer .logos-grid {
    grid-template-columns: 17.375rem 17.75rem 11.6875rem 11.6875rem;
    justify-content: space-between;
    gap: 1.75rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .logos-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 1.75rem;
    row-gap: 2.5rem;
  }
}
.site-footer .col {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-direction: column;
  text-align: center;
}
.site-footer .logo-title {
  font-size: 1rem;
  line-height: 1;
  color: #202020;
}
.site-footer .logo-stack {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-direction: column;
}
.site-footer .jamboree-mark {
  width: 2.875rem;
  height: 2.875rem;
}
.site-footer .jamboree-info {
  width: 8.125rem;
}
.site-footer .support-main {
  width: 13.375rem;
}
.site-footer .support-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.site-footer .support-logos img {
  max-height: 3rem;
  width: auto;
}
.site-footer .support-logos img:nth-child(2) {
  max-height: 2.0625rem;
}
.site-footer .support-logos img:nth-child(3) {
  max-height: 1.875rem;
}
@media (min-width: 992px) {
  .site-footer .support-logos {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .col--jamboree {
    grid-column: 1/span 3;
    grid-row: 1;
  }
}
@media (min-width: 992px) {
  .site-footer .col--jamboree {
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .col--support {
    grid-column: 4/span 3;
    grid-row: 1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .col--transport {
    grid-column: 1/span 2;
    grid-row: 2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .col--partners {
    grid-column: 3/span 2;
    grid-row: 2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .col--patron {
    grid-column: 5/span 2;
    grid-row: 2;
  }
}
.site-footer .transport-logo {
  width: 7rem;
}
.site-footer .partner-logo {
  width: 7.125rem;
}
.site-footer .partner-logo--secondary {
  width: 10.4375rem;
}
.site-footer .patron-logo {
  width: 10.125rem;
}
.site-footer .partners {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-direction: column;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .site-footer .partners {
    display: contents;
  }
}
@media (min-width: 992px) {
  .site-footer .partners {
    gap: 3.5rem;
    align-items: flex-start;
  }
}
.site-footer .bottom {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
  width: 100%;
}
.site-footer .bottom-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .site-footer .bottom-logos {
    max-width: 61.75rem;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
  }
}
.site-footer .bottom-col {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-direction: column;
  text-align: center;
}
.site-footer .organizer-logo {
  width: 11.125rem;
}
.site-footer .host-logo {
  width: 11.5625rem;
}
.site-footer .city-logo {
  width: 5.75rem;
}
.site-footer .copyright {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #333333;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer .copyright {
    max-width: 47.5rem;
  }
}
@media (min-width: 992px) {
  .site-footer .copyright {
    max-width: 100%;
  }
}

.subpage .hero-section {
  position: relative;
  overflow: hidden;
  padding: 8.75rem 0 7.1875rem;
}
@media (min-width: 992px) {
  .subpage .hero-section {
    padding-block: 15.3125rem 10.3125rem;
  }
}
.subpage .hero-section .container {
  position: relative;
  z-index: 2;
}
.subpage .hero-section .hero-heading {
  text-align: center;
  color: #ffffff;
}
.subpage .hero-section .hero-heading h1 {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .subpage .hero-section .hero-heading h1 {
    margin-bottom: 2rem;
  }
}
.subpage .hero-section .hero-heading p {
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .subpage .hero-section .hero-heading p {
    font-size: 2rem;
    line-height: normal;
  }
}
.subpage .info-section .col {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .subpage .info-section .col {
    gap: 1.5rem;
  }
}
.subpage .info-section .equal-columns {
  display: flex;
  gap: 2.5rem;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .subpage .info-section .equal-columns {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .subpage .info-section .equal-columns .col {
    flex: 1;
    width: 33.625rem;
    max-width: 33.625rem;
  }
}
.subpage .info-section .custom-columns {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .subpage .info-section .custom-columns {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .subpage .info-section .custom-columns .col:first-child {
    width: 32.375rem;
  }
}
@media (min-width: 992px) {
  .subpage .info-section .custom-columns .col:last-child {
    width: 30rem;
  }
}
.subpage .contact-columns {
  display: flex;
  gap: 3.75rem;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .subpage .contact-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .subpage .contact-columns .col:first-child {
    width: 23.625rem;
  }
}
@media (min-width: 992px) {
  .subpage .contact-columns .col:last-child {
    width: 28.4375rem;
  }
}

.button {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  padding: 0.9375rem 0.75rem;
  border: 0;
  background-color: #E30613;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease, box-shadow 0s linear;
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .button {
    line-height: 1.1;
  }
}
.button.button-w-100 {
  width: 100%;
}
.button.button-white-outline {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.button.button-white-outline:hover {
  background-color: transparent;
}
.button img {
  transition: transform 0.2s ease-in-out;
  transform: translateX(0);
}
.button .button-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  overflow: hidden;
}
.button .button-inner .button-text {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  transform: translateY(0);
}
.button.button--small {
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem;
}
.button:hover {
  background-color: #9B1006;
}
.button:hover img {
  transform: translateX(0.125rem);
}
.button.button--text-in .button-text {
  animation: text-slide-out-up 0.2s ease-in-out;
}
.button.button--text-out .button-text {
  animation: text-slide-out-down 0.2s ease-in-out;
}
.button:not(:has(.button-text)) {
  padding-inline: 0.9375rem;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3125rem;
  color: #ffffff;
  margin-top: 1.125rem;
  margin-bottom: 19.6875rem;
}
@media (min-width: 992px) {
  .countdown {
    gap: 1rem;
    margin-top: 0.875rem;
    margin-bottom: 6.25rem;
  }
}
.countdown.countdown--green-dark {
  color: #587D18;
}
.countdown .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 3.5rem;
}
@media (min-width: 992px) {
  .countdown .item {
    min-width: 8.1875rem;
  }
}
.countdown .value {
  font-family: "Bravely Script", sans-serif;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: currentColor;
}
@media (min-width: 992px) {
  .countdown .value {
    font-size: 8.75rem;
  }
}
.countdown .separator {
  font-family: "Bravely Script", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: currentColor;
  transform: translateY(0.125rem);
}
@media (min-width: 992px) {
  .countdown .separator {
    font-size: 8.75rem;
  }
}
.countdown .label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: currentColor;
}
@media (min-width: 992px) {
  .countdown .label {
    font-size: 1rem;
  }
}

.countdown-title {
  color: #ffffff;
  text-align: center;
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 400;
  max-width: 42.625rem;
  margin-inline: auto;
  padding-inline: 0.9375rem;
}
@media (min-width: 992px) {
  .countdown-title {
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-top: 5.3125rem;
  }
}

.main-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.875rem);
  z-index: 100;
}
@media (min-width: 576px) {
  .main-nav {
    max-width: calc(576px - 1.875rem);
  }
}
@media (min-width: 768px) {
  .main-nav {
    max-width: calc(767px - 1.875rem);
  }
}
@media (min-width: 992px) {
  .main-nav {
    top: 1.5625rem;
    max-width: calc(952px - 1.875rem);
  }
}
@media (min-width: 1200px) {
  .main-nav {
    max-width: 70.625rem;
  }
}
.main-nav .inner {
  display: flex;
  align-items: stretch;
}
.main-nav .brand {
  width: 4.625rem;
  background: #ffffff;
}
@media (min-width: 992px) {
  .main-nav .brand {
    width: 6.9375rem;
    min-width: 6.9375rem;
    background-color: #ffffff;
    padding: 0.9375rem;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .main-nav .brand {
    width: 8.9375rem;
    min-width: 6.9375rem;
  }
}
.main-nav .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
}
@media (min-width: 992px) {
  .main-nav .logo-wrap {
    padding: 0;
  }
}
.main-nav .logo {
  width: 2.875rem;
  height: 2.875rem;
}
.main-nav .logo-info {
  background: #ffffff;
  max-height: 6rem;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  padding-inline: 1rem;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  display: none;
}
.main-nav .logo-info img {
  width: 8.125rem;
  height: 6rem;
}
@media (min-width: 992px) {
  .main-nav .logo-info {
    display: block;
    margin-top: 0.625rem;
  }
}
.main-nav .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 1;
  min-height: 4.125rem;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  position: relative;
}
@media (min-width: 992px) {
  .main-nav .menu {
    min-height: 4.4375rem;
    padding: 1rem;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .main-nav .menu {
    gap: 3.75rem;
  }
}
.main-nav .list {
  display: none;
}
.main-nav .list--desktop {
  display: none;
}
@media (min-width: 992px) {
  .main-nav .list--desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    flex-direction: row;
    color: #333333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    width: 100%;
    text-align: left;
  }
}
.main-nav .list--mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 992px) {
  .main-nav .list--mobile {
    display: none;
  }
}
.main-nav .panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-direction: column;
  position: fixed;
  top: calc(4.125rem + 0.5rem);
  left: 50%;
  width: calc(100vw - 1.875rem);
  background-color: #ffffff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -0.5rem);
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .main-nav .panel {
    width: calc(576px - 1.875rem);
  }
}
@media (min-width: 768px) {
  .main-nav .panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: auto;
    right: 0;
    width: 100%;
    max-width: 18.75rem;
    transform: translateY(-0.5rem);
  }
}
@media (min-width: 992px) {
  .main-nav .panel {
    display: none;
  }
}
.main-nav.is-open .panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .main-nav.is-open .panel {
    transform: translateY(0);
  }
}
.main-nav .desktop-cta {
  display: none;
}
@media (min-width: 992px) {
  .main-nav .desktop-cta {
    flex: 1;
    display: inline-flex;
  }
}
@media (min-width: 1200px) {
  .main-nav .desktop-cta {
    min-width: 12.125rem;
  }
}
.main-nav .mobile-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .main-nav .mobile-controls {
    display: none;
  }
}
.main-nav .burger {
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: #333333;
  cursor: pointer;
}
.main-nav .burger[aria-expanded=true] {
  color: #E30613;
}
@media (min-width: 992px) {
  .main-nav .burger[aria-expanded=true] {
    color: #333333;
  }
}
.main-nav .burger svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.main-nav .burger .bar {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.main-nav .burger[aria-expanded=true] .bar--top {
  transform: translateY(0.3125rem) rotate(45deg);
}
.main-nav .burger[aria-expanded=true] .bar--middle {
  opacity: 0;
}
.main-nav .burger[aria-expanded=true] .bar--bottom {
  transform: translateY(-0.3125rem) rotate(-45deg);
}
@media (min-width: 992px) {
  .main-nav .link {
    transition: all 0.2s ease;
  }
}
@media (min-width: 992px) {
  .main-nav .link:hover {
    text-decoration: underline;
  }
}
.main-nav .mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-direction: column;
}
.main-nav .mobile-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav .mobile-logo {
  width: 2.875rem;
  height: 2.875rem;
}
.main-nav .mobile-logo-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav .mobile-logo-info img {
  width: 8.125rem;
  height: 6rem;
}

body.is-scrolled .main-nav .logo-info {
  max-height: 0;
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}
body.mobile-nav-open::before {
  opacity: 0.7;
  visibility: visible;
  pointer-events: auto;
}
body.mobile-nav-open {
  overflow: hidden;
}
@media (min-width: 992px) {
  body::before {
    display: none;
  }
}

.note {
  --note-reveal-progress: 1;
  width: 16.875rem;
  padding: 2.125rem 1.25rem;
  color: #ffffff;
  background: #AFCA0B;
  text-align: center;
  transform: rotate(var(--note-rotation)); /* from html */
  transform-origin: center;
  opacity: var(--note-reveal-progress);
  transition: opacity 200ms linear, translate 200ms linear;
}
@media (min-width: 992px) {
  .note {
    width: 15.875rem;
    padding: 1.5625rem 1.25rem;
    height: 15.875rem;
  }
}
.note.content-horizontal > * {
  transform: rotate(calc(0deg - var(--note-rotation)));
}
.note .icon {
  margin-bottom: 0.5rem;
  display: inline-block;
}
.note .icon.horizontal {
  transform: rotate(calc(0deg - var(--note-rotation)));
}
.note h3 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-block: -0.625rem 0.3125rem;
}
.note.dark {
  background-color: #587D18;
}
.note.note-wide {
  min-width: 20rem;
  height: auto;
  text-align: start;
  padding: 0.625rem 1.25rem;
}
@media (min-width: 992px) {
  .note.note-wide {
    min-width: 22.1875rem;
    padding: 1.25rem;
  }
}
.note.note-wide h3 {
  font-family: Bravely Script, sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.09rem;
}
@media (min-width: 992px) {
  .note.note-wide p {
    font-family: Galano Grotesque, sans-serif;
    font-size: 1.25rem;
    line-height: normal;
    font-weight: 400;
  }
}
.note.note-wider {
  width: 24.4375rem;
}
.note.note-medium {
  width: 17.5rem;
  height: 17.5rem;
  padding-inline: 0.3125rem;
}
.note.note-large {
  width: 100%;
  max-width: 25.5625rem;
  height: auto;
  text-align: left;
  padding: 1.5625rem 1.25rem;
}
@media (min-width: 992px) {
  .note.note-large {
    width: 25.5625rem;
    min-width: 25.5625rem;
  }
}
.note.note-large h3 {
  font-family: Bravely Script, sans-serif;
  font-size: 2.5rem;
  line-height: 2.625rem;
  font-weight: 400;
  letter-spacing: -0.075rem;
  margin-bottom: 1.5rem;
}
.note.note-download {
  display: flex;
  flex-direction: column;
  width: 21.125rem;
  text-align: left;
  padding: 1.5rem 1.25rem 2.1875rem;
  height: auto;
}
@media (min-width: 992px) {
  .note.note-download {
    width: 20.125rem;
    height: 21.5rem;
  }
}
.note.note-download h3 {
  font-family: Bravely Script, sans-serif;
  font-size: 2.5rem;
  line-height: 3.125rem;
  font-weight: 400;
  letter-spacing: -0.075rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .note.note-download h3 {
    font-family: Bravely Script, sans-serif;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.09rem;
  }
}
.note.note-download p {
  margin-bottom: 2rem;
}
.note.note-download .button {
  margin-top: auto;
}

.feature-highlight {
  position: relative;
  padding: 0 0;
  color: #ffffff;
}
@media (min-width: 992px) {
  .feature-highlight {
    padding: 1.75rem 1.875rem;
  }
}
.feature-highlight.bg-light::before {
  background-color: #AFCA0B;
}
.feature-highlight.bg-dark::before {
  background-color: #587D18;
}
.feature-highlight.bg-red-light::before {
  background-color: #E30613;
}
.feature-highlight::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  transform: rotate(var(--feature-bg-rotation-mobile));
  top: 0;
  left: -10%;
  z-index: -1;
}
@media (min-width: 768px) {
  .feature-highlight::before {
    z-index: 0;
    transform: rotate(var(--feature-bg-rotation-desktop));
  }
}
@media (min-width: 1200px) {
  .feature-highlight.bg-right .highlight-content {
    padding-left: 6.875rem;
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-right::before {
    z-index: 1;
    width: 110vw;
    left: calc(50% - 31.5625rem);
  }
}
@media (min-width: 1200px) {
  .feature-highlight.bg-right::before {
    left: calc(50% - 37.1875rem);
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-right .text-content {
    max-width: 32.875rem;
    width: 32.875rem;
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-right .image-content {
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-right .image-content img {
    margin-left: 2.0625rem;
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-left::before {
    z-index: 1;
    left: unset;
    right: calc(50% - 29.6875rem);
  }
}
@media (min-width: 1200px) {
  .feature-highlight.bg-left::before {
    right: calc(50% - 37.1875rem);
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-left .text-content {
    max-width: 32.375rem;
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .feature-highlight.bg-left .image-content {
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .feature-highlight.additional-bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(50% - 30.9375rem);
    width: 100%;
    height: 5.6875rem;
    background-color: #587D18;
    z-index: 0;
    transform: rotate(-2.147deg);
  }
}
@media (min-width: 1200px) {
  .feature-highlight.additional-bg::after {
    right: calc(50% - 40.3125rem);
  }
}
.feature-highlight .highlight-content {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 992px) {
  .feature-highlight .highlight-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.feature-highlight .highlight-content.single-column {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-highlight .highlight-content.single-column .text-content {
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .feature-highlight .highlight-content.single-column .text-content {
    max-width: 56.25rem;
    width: 56.25rem;
    gap: 1.5rem;
  }
}
.feature-highlight .highlight-content .text-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-direction: column;
  order: 1;
}
@media (min-width: 992px) {
  .feature-highlight .highlight-content .text-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    flex-direction: column;
    order: unset;
  }
}
.feature-highlight .highlight-content .image-content {
  order: 0;
}
@media (min-width: 992px) {
  .feature-highlight .highlight-content .image-content {
    order: unset;
  }
}
.feature-highlight .highlight-content .image-content img {
  position: relative;
  top: -2.8125rem;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -2.8125rem;
}
@media (max-width: 767px) {
  .feature-highlight .highlight-content .image-content img {
    max-width: 20.125rem;
  }
}
@media (min-width: 992px) {
  .feature-highlight .highlight-content .image-content img {
    transform: none;
    left: unset;
  }
}
@media (min-width: 1200px) {
  .feature-highlight .highlight-content .image-content img {
    left: 4.6875rem;
  }
}

.social-floating {
  display: none;
}
@media (min-width: 992px) {
  .social-floating {
    display: flex;
    align-items: center;
    gap: 0.4375rem;
    flex-direction: column;
    position: fixed;
    top: 17.5rem;
    right: 2.5rem;
    z-index: 90;
    width: 2.625rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
  }
}
.social-floating .social-link {
  position: relative;
}
@media (min-width: 992px) {
  .social-floating .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    background: #ffffff;
  }
}
.social-floating .social-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
  z-index: 5;
  transition: all 0.2s ease;
}
.social-floating .social-link:hover::after {
  opacity: 1;
}
.social-floating img {
  display: block;
  width: auto;
  height: auto;
}
@media (min-width: 992px) {
  .social-floating.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.hosts-section {
  background-color: #f7f4f2;
  overflow: hidden;
  padding: 1.125rem 0 2.25rem;
}
@media (min-width: 992px) {
  .hosts-section {
    padding: 3.5625rem 0 1.625rem;
  }
}
.hosts-section .hosts-collage {
  position: relative;
  margin-inline: auto;
}
.hosts-section .hosts-collage {
  min-height: 46.25rem;
}
.hosts-section .hosts-collage--desktop {
  display: none;
}
.hosts-section .bg {
  position: absolute;
  z-index: 20;
}
.hosts-section .hosts-collage .bg--primary {
  width: 27.9375rem;
  height: 13.6875rem;
  left: 50%;
  top: 5.625rem;
  background-color: #E30613;
  transform: translateX(-63%) rotate(-3deg);
  z-index: 10;
}
@media (min-width: 992px) {
  .hosts-section .hosts-collage .bg--primary {
    width: 62.0625rem;
    height: 18.9375rem;
    transform: translateX(-54.5%) rotate(-3.028deg);
    top: 5.375rem;
  }
}
.hosts-section .hosts-collage .bg--primary .inner {
  position: absolute;
  top: 4rem;
  transform: translate(8.625rem) rotate(3deg);
}
@media (min-width: 992px) {
  .hosts-section .hosts-collage .bg--primary .inner {
    left: 50%;
    transform: translate(-17.6875rem) rotate(3deg);
  }
}
.hosts-section .hosts-collage .bg--secondary {
  width: 34rem;
  left: 50%;
  top: 18.25rem;
  background-color: #9B1006;
  transform: translateX(-13.4375rem) rotate(1.2deg);
  z-index: 20;
  padding-top: 1.5625rem;
  padding-bottom: 5.3125rem;
}
@media (min-width: 992px) {
  .hosts-section .hosts-collage .bg--secondary {
    width: 64.8125rem;
    height: 15.625rem;
    top: 20.4375rem;
    transform: translateX(-30.25rem) rotate(1.2deg);
  }
}
.hosts-section .hosts-collage .bg--secondary .inner {
  transform: translate(2.625rem) rotate(-1.2deg);
}
@media (min-width: 992px) {
  .hosts-section .hosts-collage .bg--secondary .inner {
    transform: translate(11.75rem) rotate(-1.2deg);
  }
}
.hosts-section .content {
  position: relative;
  z-index: 15;
  text-align: center;
  color: #ffffff;
  padding-inline: 0.9375rem;
}
.hosts-section .content .heart {
  position: absolute;
  width: 2.25rem;
  height: 2rem;
  top: 17.3125rem;
  z-index: 50;
  left: calc(50% + 3.9375rem);
}
@media (min-width: 992px) {
  .hosts-section .content .heart {
    width: auto;
    height: auto;
    top: 7.6875rem;
    left: calc(50% + 18.125rem);
  }
}
.hosts-section .heading-top {
  font-size: 1.5rem;
  line-height: 1.625rem;
}
@media (min-width: 992px) {
  .hosts-section .heading-top {
    font-size: 3.75rem;
    line-height: 3.75rem;
  }
}
.hosts-section .heading-main {
  margin-top: 0.25rem;
  font-family: "Bravely Script", sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -0.09rem;
}
@media (min-width: 992px) {
  .hosts-section .heading-main {
    font-size: 6.25rem;
    line-height: 6.25rem;
  }
}
.hosts-section .description {
  position: relative;
  transform-origin: top center;
  max-width: 21.5625rem;
}
@media (min-width: 992px) {
  .hosts-section .description {
    max-width: 35.6875rem;
  }
}
.hosts-section .photo {
  position: absolute;
  z-index: 5;
  object-fit: cover;
}
.hosts-section .photo.photo-desktop {
  display: none;
}
@media (min-width: 992px) {
  .hosts-section .photo.photo-desktop {
    display: block;
  }
}
@media (min-width: 992px) {
  .hosts-section .photo.photo-mobile {
    display: none;
  }
}
.hosts-section .hosts-collage .photo--06,
.hosts-section .hosts-collage .photo--07,
.hosts-section .hosts-collage .photo--08,
.hosts-section .hosts-collage .photo--09,
.hosts-section .hosts-collage .photo--10,
.hosts-section .hosts-collage .photo--11,
.hosts-section .hosts-collage .photo--12,
.hosts-section .hosts-collage .photo--13,
.hosts-section .hosts-collage .photo--14 {
  z-index: 25;
}
.hosts-section .hosts-collage .photo--01 {
  width: 10.125rem;
  left: calc(50% + 3.875rem);
  top: 7.8125rem;
}
.hosts-section .hosts-collage .photo--02 {
  width: 5.875rem;
  left: calc(50% + 0.5rem);
  top: 34.0625rem;
}
.hosts-section .hosts-collage .photo--03 {
  width: 6.3125rem;
  left: calc(50% - 7.625rem);
  top: 1.9375rem;
}
.hosts-section .hosts-collage .photo--04 {
  width: 6.3125rem;
  left: calc(50% - 10.1875rem);
  top: 1.125rem;
}
.hosts-section .hosts-collage .photo--05 {
  width: 8.25rem;
  left: calc(50% - 4.4375rem);
  top: 3.125rem;
}
.hosts-section .hosts-collage .photo--06 {
  width: 8.8125rem;
  left: calc(50% + 3.8125rem);
  top: 34rem;
}
.hosts-section .hosts-collage .photo--07 {
  width: 7.25rem;
  left: calc(50% - 11.125rem);
  top: 33.4375rem;
}
.hosts-section .hosts-collage .photo--08 {
  width: 6.125rem;
  left: calc(50% - 14.125rem);
  top: 37.4375rem;
}
.hosts-section .hosts-collage .photo--09 {
  width: 7.5625rem;
  left: calc(50% + 7.8125rem);
  top: 4.125rem;
}
.hosts-section .hosts-collage .photo--10 {
  width: 7.25rem;
  left: calc(50% + 2.5rem);
  top: 1.125rem;
}
.hosts-section .hosts-collage .photo--11 {
  width: 7.8125rem;
  left: calc(50% - 15.3125rem);
  top: 4.125rem;
}
.hosts-section .hosts-collage .photo--12 {
  width: 4.625rem;
  left: calc(50% + 7rem);
  top: 15.6875rem;
}
.hosts-section .hosts-collage .photo--13 {
  width: 7.375rem;
  left: calc(50% - 17.4375rem);
  top: 30.625rem;
}
.hosts-section .hosts-collage .photo--14 {
  width: 5rem;
  left: calc(50% + 8.9375rem);
  top: 31.875rem;
}
.hosts-section .hosts-collage .photo--d01 {
  width: 11.4375rem;
  left: calc(50% - 17.125rem);
  top: 21.1875rem;
}
.hosts-section .hosts-collage .photo--d02 {
  width: 6.1875rem;
  left: calc(50% - 19.5625rem);
  top: 37.875rem;
}
.hosts-section .hosts-collage .photo--d03 {
  width: 11.4375rem;
  left: calc(50% + 17.8125rem);
  top: 24.0625rem;
}
.hosts-section .hosts-collage .photo--d04 {
  width: 11.4375rem;
  left: calc(50% - 9.5625rem);
  top: 10.5625rem;
}
.hosts-section .hosts-collage .photo--d05 {
  width: 11.4375rem;
  left: calc(50% + 13.4375rem);
  top: 10.3125rem;
}
.hosts-section .hosts-collage .photo--d06 {
  width: 4.6875rem;
  left: calc(50% - 40.625rem);
  top: 17.4375rem;
}
.hosts-section .hosts-collage .photo--d07 {
  width: 11.4375rem;
  left: calc(50% - 7.125rem);
  top: 25.5625rem;
}
.hosts-section .hosts-collage .photo--d08 {
  width: 11.4375rem;
  left: calc(50% - 2.125rem);
  top: 9.5625rem;
}
.hosts-section .hosts-collage .photo--d09 {
  width: 9.25rem;
  left: calc(50% - 35.375rem);
  top: 14rem;
}
.hosts-section .hosts-collage .photo--d10 {
  width: 9.25rem;
  left: calc(50% - 0.4375rem);
  top: 16.875rem;
}
.hosts-section .hosts-collage .photo--d11 {
  width: 9.25rem;
  left: calc(50% - 4.8125rem);
  top: 3.125rem;
}
.hosts-section .hosts-collage .photo--d12 {
  width: 11.4375rem;
  left: calc(50% - 32.875rem);
  top: 26.5625rem;
}
.hosts-section .hosts-collage .photo--d13 {
  width: 11.4375rem;
  left: calc(50% - 27.3125rem);
  top: 9.5625rem;
}
.hosts-section .hosts-collage .photo--d14 {
  width: 11.4375rem;
  left: calc(50% + 2.625rem);
  top: 28.4375rem;
}
.hosts-section .hosts-collage .photo--d15 {
  width: 11.4375rem;
  left: calc(50% + 7.625rem);
  top: 12.4375rem;
}
.hosts-section .hosts-collage .photo--d16 {
  width: 11.4375rem;
  left: calc(50% - 6.5rem);
  top: 23.25rem;
}
.hosts-section .hosts-collage .photo--d17 {
  width: 3.75rem;
  left: calc(50% + 36.0625rem);
  top: 33.375rem;
}
.hosts-section .hosts-collage .photo--d18 {
  width: 11.4375rem;
  left: calc(50% + 1.0625rem);
  top: 12.625rem;
}
.hosts-section .hosts-collage .photo--d19 {
  width: 11.4375rem;
  left: calc(50% + 24.0625rem);
  top: 12.375rem;
}
.hosts-section .hosts-collage .photo--d20 {
  width: 11.4375rem;
  left: calc(50% - 34.6875rem);
  top: 30.0625rem;
}
.hosts-section .hosts-collage .photo--d21 {
  width: 11.4375rem;
  left: calc(50% - 29.125rem);
  top: 14.3125rem;
}
.hosts-section .hosts-collage .photo--d22 {
  width: 11.4375rem;
  left: calc(50% + 0.8125rem);
  top: 31.9375rem;
}
.hosts-section .hosts-collage .photo--d23 {
  width: 11.4375rem;
  left: calc(50% + 5.8125rem);
  top: 17.1875rem;
}
.hosts-section .hosts-collage .photo--d24 {
  width: 11.4375rem;
  left: calc(50% - 25.6875rem);
  top: 4.3125rem;
}
.hosts-section .hosts-collage .photo--d25 {
  width: 13.1875rem;
  left: calc(50% + 1.0625rem);
  top: 0rem;
}
.hosts-section .hosts-collage .photo--d26 {
  width: 10.125rem;
  left: calc(50% - 24.9375rem);
  top: 26.375rem;
}
.hosts-section .hosts-collage .photo--d27 {
  width: 10.125rem;
  left: calc(50% - 19.375rem);
  top: 10.625rem;
}
.hosts-section .hosts-collage .photo--d28 {
  width: 10.125rem;
  left: calc(50% + 10.5625rem);
  top: 28.25rem;
}
.hosts-section .hosts-collage .photo--d29 {
  width: 10.125rem;
  left: calc(50% + 15.5625rem);
  top: 13.5rem;
}
.hosts-section .hosts-collage .photo--d30 {
  width: 10.125rem;
  left: calc(50% - 11.8125rem);
  top: 0rem;
}
.hosts-section .hosts-collage .photo--d31 {
  width: 10.125rem;
  left: calc(50% + 10.5rem);
  top: 0.6875rem;
}
.hosts-section .hosts-collage .photo--d32 {
  width: 10.125rem;
  left: calc(50% - 18.3125rem);
  top: 30.0625rem;
}
.hosts-section .hosts-collage .photo--d33 {
  width: 10.125rem;
  left: calc(50% - 12.75rem);
  top: 14.3125rem;
}
.hosts-section .hosts-collage .photo--d34 {
  width: 10.125rem;
  left: calc(50% + 22.1875rem);
  top: 17.1875rem;
}
.hosts-section .hosts-collage .photo--d35 {
  width: 10.125rem;
  left: calc(50% - 5.1875rem);
  top: 3.6875rem;
}
.hosts-section .hosts-collage .photo--d36 {
  width: 9.25rem;
  left: calc(50% - 11.25rem);
  top: 28.875rem;
}
.hosts-section .hosts-collage .photo--d37 {
  width: 9.25rem;
  left: calc(50% - 5.6875rem);
  top: 11.875rem;
}
.hosts-section .hosts-collage .photo--d38 {
  width: 9.25rem;
  left: calc(50% + 22.375rem);
  top: 32rem;
}
.hosts-section .hosts-collage .photo--d39 {
  width: 9.25rem;
  left: calc(50% + 29.25rem);
  top: 14.75rem;
}
.hosts-section .hosts-collage .photo--d40 {
  width: 9.25rem;
  left: calc(50% - 10rem);
  top: 32.9375rem;
}
.hosts-section .hosts-collage .photo--d41 {
  width: 9.25rem;
  left: calc(50% - 4.4375rem);
  top: 17.1875rem;
}
.hosts-section .hosts-collage .photo--d42 {
  width: 9.25rem;
  left: calc(50% + 30.25rem);
  top: 24.8125rem;
}
.hosts-section .hosts-collage .photo--d43 {
  width: 9.25rem;
  left: calc(50% + 3.125rem);
  top: 6.5625rem;
}
.hosts-section .hosts-collage .photo--d44 {
  width: 4.5rem;
  left: calc(50% + 30.1875rem);
  top: 8.0625rem;
}
.hosts-section .hosts-collage .photo--d45 {
  width: 11.5625rem;
  left: calc(50% - 28.0625rem);
  top: 31rem;
}
.hosts-section .hosts-collage .photo--d46 {
  width: 9.25rem;
  left: calc(50% - 20.6875rem);
  top: 17.6875rem;
}
.hosts-section .hosts-collage .photo--d47 {
  width: 7.5rem;
  left: calc(50% + 7rem);
  top: 37.875rem;
}
.hosts-section .hosts-collage .photo--d48 {
  width: 9.25rem;
  left: calc(50% + 14.25rem);
  top: 20.5625rem;
}
.hosts-section .hosts-collage .photo--d49 {
  width: 9.25rem;
  left: calc(50% - 15.625rem);
  top: 7.0625rem;
}
.hosts-section .hosts-collage .photo--d50 {
  width: 9.25rem;
  left: calc(50% + 9.875rem);
  top: 6.8125rem;
}
.hosts-section .hosts-collage .photo--d51 {
  width: 10.125rem;
  left: calc(50% - 32rem);
  top: 37.0625rem;
}
.hosts-section .hosts-collage .photo--d52 {
  width: 10.125rem;
  left: calc(50% - 26.4375rem);
  top: 21.3125rem;
}
.hosts-section .hosts-collage .photo--d53 {
  width: 10.125rem;
  left: calc(50% + 8.5rem);
  top: 24.1875rem;
}
.hosts-section .hosts-collage .photo--d54 {
  width: 10.125rem;
  left: calc(50% - 18.875rem);
  top: 10.6875rem;
}
.hosts-section .hosts-collage .photo--d55 {
  width: 10.125rem;
  left: calc(50% + 4.125rem);
  top: 10.4375rem;
}
.hosts-section .hosts-collage .photo--d56 {
  width: 10.125rem;
  left: calc(50% - 6.5625rem);
  top: 37.625rem;
}
.hosts-section .hosts-collage .photo--d57 {
  width: 10.125rem;
  left: calc(50% - 0.6875rem);
  top: 23.5rem;
}
.hosts-section .hosts-collage .photo--d58 {
  width: 10.125rem;
  left: calc(50% - 28.0625rem);
  top: 10rem;
}
.hosts-section .hosts-collage .photo--d59 {
  width: 10.125rem;
  left: calc(50% - 5.0625rem);
  top: 9.75rem;
}
.hosts-section .hosts-collage .photo--d60 {
  width: 7.5625rem;
  left: calc(50% - 35.125rem);
  top: 8.5625rem;
}
.hosts-section .hosts-collage .photo--d61 {
  width: 7.8125rem;
  left: calc(50% + 25.4375rem);
  top: 19.875rem;
}
.hosts-section .hosts-collage .photo--d62 {
  width: 10.125rem;
  left: calc(50% - 38.625rem);
  top: 22.8125rem;
}
.hosts-section .hosts-collage .photo--d63 {
  width: 10.125rem;
  left: calc(50% + 13.625rem);
  top: 29.375rem;
}
.hosts-section .hosts-collage .photo--d64 {
  width: 7.625rem;
  left: calc(50% + 22.1875rem);
  top: 0.375rem;
}
.hosts-section .hosts-collage .photo--d65-wrap {
  width: 7rem;
  left: calc(50% + 2.5rem);
  top: 31.75rem;
  transform: rotate(15.369deg);
}
.hosts-section .hosts-collage .photo--d65-img {
  display: block;
  width: 100%;
}
.hosts-section .hosts-collage .photo--d60,
.hosts-section .hosts-collage .photo--d61,
.hosts-section .hosts-collage .photo--d62,
.hosts-section .hosts-collage .photo--d63,
.hosts-section .hosts-collage .photo--d64,
.hosts-section .hosts-collage .photo--d65-wrap {
  z-index: 25;
}

form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.form-group {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
  width: 100%;
}

label {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  padding: 0.9375rem 1rem;
  background: #AFCA0B;
  color: #000000;
  border: none;
  resize: none;
}
input:focus, textarea:focus {
  outline: 2px solid #ffffff;
}
input::placeholder, textarea::placeholder {
  color: #333333;
}

.form-button {
  width: 100%;
}
@media (min-width: 992px) {
  .form-button {
    width: auto;
  }
}

.homepage .hero-section {
  padding-block: 10.875rem 0.75rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .homepage .hero-section {
    padding-block: 15.3125rem 1.5625rem;
  }
}
.homepage .hero-section h1 {
  text-align: center;
  padding-bottom: 0.875rem;
  position: relative;
  margin-bottom: 1.875rem;
}
@media (min-width: 992px) {
  .homepage .hero-section h1 {
    padding-bottom: 3.75rem;
    margin-bottom: 1rem;
  }
}
.homepage .hero-section h1 span {
  font-family: inherit;
}
.homepage .hero-section h1::before {
  content: "";
  width: 23.875rem;
  height: 3.625rem;
  transform: rotate(-2.873deg);
  background: #AFCA0B;
  position: absolute;
  bottom: 0.625rem;
  left: calc(50% - 10.625rem);
}
@media (min-width: 992px) {
  .homepage .hero-section h1::before {
    width: 53.75rem;
    height: 8rem;
    bottom: 2.1875rem;
    left: calc(50% - 26.625rem);
  }
}
@media (min-width: 1200px) {
  .homepage .hero-section h1::before {
    width: 58.75rem;
    height: 9rem;
    bottom: 1.5625rem;
    left: calc(50% - 29.625rem);
  }
}
.homepage .hero-section .subheading {
  font-family: "Galano Grotesque", sans-serif;
  color: #333333;
  font-size: 1.25rem;
  line-height: 1.375rem;
  text-align: center;
  margin-bottom: 0.3125rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .subheading {
    font-size: 2.75rem;
    line-height: 3rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .homepage .hero-section .subheading {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.homepage .hero-section .container, .homepage .hero-section h1, .homepage .hero-section .subheading {
  position: relative;
  z-index: 5;
}
@media (min-width: 992px) {
  .homepage .hero-section .container {
    z-index: 6;
  }
}
.homepage .hero-section .hero-details {
  padding: 1rem;
  background: #ffffff;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: none;
    font-size: 1rem;
    text-align: start;
    padding: 0;
  }
}
.homepage .hero-section .hero-details h2 {
  font-family: "Galano Grotesque", sans-serif;
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .hero-details h2 {
    font-size: 3rem;
    line-height: 3.375rem;
    max-width: 42.625rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.homepage .hero-section .hero-details .location {
  color: #333333;
}
@media (min-width: 992px) {
  .homepage .hero-section .hero-details .location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.125rem;
  }
}
.homepage .hero-section .hero-details .location .separator {
  width: 0.0625rem;
  height: 2rem;
  background: #b6b6b6;
}
@media (min-width: 992px) {
  .homepage .hero-section .hero-details .hero-details-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 1rem 1.5rem;
    width: 49.375rem;
  }
}
.homepage .hero-section .hero-details .hero-details-content .name {
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: #587D18;
  font-weight: 700;
}
.homepage .hero-section .hero-details .hero-details-content .description {
  font-weight: 500;
  color: #333333;
  margin-block: 1.5rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .hero-details .hero-details-content .description {
    margin: 0;
  }
}
.homepage .hero-section .hero-details .hero-details-content .logos {
  display: flex;
  justify-content: space-between;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .hero-details .hero-details-content .logos {
    gap: 1.5625rem;
    padding-inline: 0;
  }
}
.homepage .hero-section .scout {
  position: absolute;
  z-index: 2;
}
.homepage .hero-section .scout.scout1 {
  top: 3.625rem;
  left: calc(50% - 14.5rem);
}
@media (min-width: 768px) {
  .homepage .hero-section .scout.scout1 {
    left: calc(50% - 18.5rem);
  }
}
@media (min-width: 992px) {
  .homepage .hero-section .scout.scout1 {
    top: 9.875rem;
    left: calc(50% - 36.875rem);
  }
}
.homepage .hero-section .scout.scout2 {
  top: 2.4375rem;
  left: calc(50% + 4.125rem);
}
@media (min-width: 768px) {
  .homepage .hero-section .scout.scout2 {
    left: calc(50% + 8.125rem);
  }
}
@media (min-width: 992px) {
  .homepage .hero-section .scout.scout2 {
    z-index: 5;
    top: 7.875rem;
    left: calc(50% + 20rem);
  }
}
.homepage .hero-section .text1, .homepage .hero-section .text2 {
  position: absolute;
  width: 7.375rem;
  height: 1.875rem;
  color: #ffffff;
  line-height: normal;
}
.homepage .hero-section .text1 span, .homepage .hero-section .text2 span {
  display: inline-block;
  font-weight: bold;
}
.homepage .hero-section .text1 {
  transform: rotate(-10.788deg);
  background: #AFCA0B;
  text-align: right;
  padding-right: 0.5rem;
  top: 7rem;
  left: calc(50% - 8.125rem);
}
@media (min-width: 768px) {
  .homepage .hero-section .text1 {
    left: calc(50% - 12.125rem);
  }
}
@media (min-width: 992px) {
  .homepage .hero-section .text1 {
    width: 13.8125rem;
    height: 2.375rem;
    transform: rotate(-10.788deg);
    top: 11.25rem;
    left: calc(50% - 30.625rem);
  }
}
@media (min-width: 1200px) {
  .homepage .hero-section .text1 {
    left: calc(50% - 31.9375rem);
  }
}
.homepage .hero-section .text1 span {
  transform: rotate(2.198deg);
  font-size: 1.4375rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .text1 span {
    font-size: 1.6875rem;
  }
}
.homepage .hero-section .text2 {
  transform: rotate(3.079deg);
  background: #587D18;
  padding-left: 0.5625rem;
  position: absolute;
  top: 8.5rem;
  left: calc(50% + 1.5625rem);
}
@media (min-width: 768px) {
  .homepage .hero-section .text2 {
    left: calc(50% + 5.5625rem);
  }
}
@media (min-width: 992px) {
  .homepage .hero-section .text2 {
    top: 11.25rem;
    left: calc(50% + 18.125rem);
    width: 17.125rem;
    height: 2.3125rem;
  }
}
.homepage .hero-section .text2 span {
  transform: rotate(-3.079deg);
  font-family: "Bravely Script", sans-serif;
  font-size: 1.5rem;
  margin-top: -0.25rem;
}
@media (min-width: 992px) {
  .homepage .hero-section .text2 span {
    font-size: 1.9375rem;
    margin-top: -0.375rem;
  }
}
.homepage .hero-section .bar-left, .homepage .hero-section .bar-right {
  position: absolute;
  width: 14.5rem;
  height: 1.5rem;
  z-index: 3;
}
@media (min-width: 992px) {
  .homepage .hero-section .bar-left, .homepage .hero-section .bar-right {
    width: 30.375rem;
    height: 3.125rem;
  }
}
.homepage .hero-section .bar-left {
  transform: rotate(-4.307deg);
  background: #AFCA0B;
  top: 21.25rem;
  left: calc(50% - 21.875rem);
}
@media (min-width: 992px) {
  .homepage .hero-section .bar-left {
    top: unset;
    bottom: 0.9375rem;
    left: calc(50% - 52.8125rem);
  }
}
@media (min-width: 1400px) {
  .homepage .hero-section .bar-left {
    bottom: 1.125rem;
  }
}
.homepage .hero-section .bar-right {
  transform: rotate(4.306deg);
  background: #587D18;
  top: 20.6875rem;
  left: calc(50% + 7rem);
}
@media (min-width: 992px) {
  .homepage .hero-section .bar-right {
    top: unset;
    bottom: 3.125rem;
    left: calc(50% + 23.9375rem);
    z-index: 5;
  }
}
@media (min-width: 1400px) {
  .homepage .hero-section .bar-right {
    bottom: 2.5rem;
  }
}
.homepage .countdown-section {
  padding-block: 2rem;
}
@media (min-width: 992px) {
  .homepage .countdown-section {
    padding-block: 2.5rem;
  }
}
.homepage .countdown-section .countdown-heading {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #333333;
  text-align: center;
}
@media (min-width: 992px) {
  .homepage .countdown-section .countdown-heading {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.homepage .countdown-section .countdown {
  margin-block: 0.5rem 1.75rem;
}
@media (min-width: 992px) {
  .homepage .countdown-section .countdown {
    margin-block: 0.125rem 1.875rem;
  }
}
.homepage .countdown-section .countdown-description {
  margin-top: 1.75rem;
  max-width: 43.125rem;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .homepage .countdown-section .countdown-description {
    margin-top: 1rem;
  }
}
.homepage .cards-section {
  padding-top: 2rem;
}
.homepage .cards-section .container {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .homepage .cards-section .container {
    z-index: 1;
  }
}
.homepage .cards-section .notes-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .homepage .cards-section .notes-scroll {
    --notes-top-offset: 0px;
    --notes-step: 300px;
    --notes-duration: 0px;
    height: var(--notes-wrapper-height, auto);
  }
}
.homepage .cards-section .notes {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .homepage .cards-section .notes {
    position: sticky;
    top: var(--notes-top-offset);
    height: var(--notes-height, auto);
    display: block;
    gap: 0;
    min-height: 16.5625rem;
  }
}
.homepage .cards-section .note {
  position: sticky;
  top: 7.5rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .note {
    --note-stack-y: 0px;
    --note-stack-extra: 0px;
    --note-reveal-progress: 0;
    position: static;
    left: auto;
    top: auto;
    translate: none;
    z-index: auto;
    opacity: var(--note-reveal-progress);
    transform: translateY(calc((1 - var(--note-reveal-progress)) * 7.5rem)) rotate(var(--note-rotation, 0deg));
    transition: opacity 200ms linear, transform 200ms linear;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .note:nth-child(1) {
    position: absolute;
    top: 0;
    left: calc(50% - 30.3125rem);
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .note:nth-child(2) {
    position: absolute;
    top: -0.9375rem;
    left: calc(50% - 15.4375rem);
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .note:nth-child(3) {
    position: absolute;
    top: -0.625rem;
    left: calc(50% - 0rem);
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .note:nth-child(4) {
    position: absolute;
    top: -0.4375rem;
    left: calc(50% + 14rem);
  }
}
.homepage .cards-section .bg-wrapper {
  z-index: 5;
  position: relative;
  padding-top: 18.125rem;
  margin-top: -18.125rem;
  background-color: #f7f4f2;
  background-image: url("../images/cards-section-bg-mobile.webp"), url("../images/forest-blur.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: calc(50% - 9.25rem) -50.5rem, center 0.4375rem;
  background-size: auto, cover;
}
@media (min-width: 768px) {
  .homepage .cards-section .bg-wrapper {
    background-image: image-set(url("../images/cards-section-bg.webp") 1x, url("../images/cards-section-bg@2x.webp") 2x), url("../images/forest-blur.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: calc(50% - 9.25rem) -15.5rem, center 0.4375rem;
    background-size: auto, cover;
    padding-top: 5rem;
    margin-top: -5.9375rem;
    z-index: unset;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .bg-wrapper {
    background-color: #f7f4f2;
    background-image: url("../images/xlarge-section-bg.webp"), url("../images/forest-blur.webp");
    background-position: center -9rem, center 0.4375rem;
  }
}
.homepage .cards-section .bg-wrapper::before {
  content: "";
  background: linear-gradient(to bottom, #F7F4F2 3.7%, rgba(247, 244, 242, 0) 15%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .homepage .cards-section .bg-wrapper::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .bg-wrapper::before {
    display: block;
    background: linear-gradient(to bottom, #F7F4F2 0%, rgba(247, 244, 242, 0) 8%);
  }
}
.homepage .cards-section .info {
  text-align: center;
  color: #ffffff;
  padding-block: 5.5rem 7.1875rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .info {
    height: 46.25rem;
  }
}
.homepage .cards-section .info .intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
}
.homepage .cards-section .info .intro h2 {
  font-size: 3rem;
  line-height: 3.5rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .info .intro h2 {
    font-size: 7rem;
    line-height: 5.875rem;
  }
}
.homepage .cards-section .info .intro p {
  max-width: 47.375rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .info .intro p {
    font-size: 1.25rem;
    line-height: normal;
  }
}
.homepage .cards-section .cta {
  font-size: 1.125rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.homepage .cards-section .cta:hover {
  text-decoration: underline;
}
.homepage .cards-section .cta:hover .button {
  background-color: #9B1006;
}
.homepage .cards-section .cta:hover img {
  transform: translateX(0.125rem);
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(1) {
    z-index: 20;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(2) {
    z-index: 19;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(3) {
    z-index: 18;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(4) {
    z-index: 17;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(5) {
    z-index: 16;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(6) {
    z-index: 15;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(7) {
    z-index: 14;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(8) {
    z-index: 13;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(9) {
    z-index: 12;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights > .feature-highlight:nth-child(10) {
    z-index: 11;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.courage {
  padding-bottom: 9.1875rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage {
    padding-bottom: 1.875rem;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .text-content .heading-default .arrow3-wrapper {
  width: 6.0625rem;
  display: inline;
  padding-left: 0.625rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage .text-content .heading-default .arrow3-wrapper {
    width: auto;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .text-content .heading-default .arrow3-wrapper img {
  display: inline;
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper,
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow2-wrapper,
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow3-wrapper {
  position: absolute;
  width: 8rem;
  z-index: 10;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper,
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow2-wrapper,
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow3-wrapper {
    width: auto;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper {
  top: 7.1875rem;
  left: calc(50% - 15.9375rem);
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper {
    top: 1.6875rem;
    left: calc(50% - 37.0625rem);
  }
}
@media (min-width: 1200px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper {
    left: calc(50% - 39.25rem);
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper {
  transition: all 0.3s ease;
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow1-wrapper img {
  animation: float-left-right 2s linear infinite;
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow2-wrapper {
  top: 11.25rem;
  left: calc(50% + 1.25rem);
  transform: rotate(-99deg);
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow2-wrapper {
    top: 12.5rem;
    left: calc(50% - 13.625rem);
  }
}
@media (min-width: 1200px) {
  .homepage .cards-section .feature-highlights .feature-highlight.courage .arrow2-wrapper {
    left: calc(50% - 15.8125rem);
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.courage .arrow2-wrapper img {
  animation: float-left-right 2s linear infinite;
}
.homepage .cards-section .feature-highlights .feature-highlight.ten-days {
  margin-top: -4.375rem;
  padding-bottom: 7.625rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.ten-days {
    padding-top: 4.375rem;
    padding-bottom: 3.125rem;
    margin-top: -2.25rem;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.ten-days .image-content img {
    top: 2.5rem;
    margin-bottom: 0;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.ten-days .earth,
.homepage .cards-section .feature-highlights .feature-highlight.ten-days .tent {
  position: absolute;
  width: 4.375rem;
  z-index: 10;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.ten-days .earth,
  .homepage .cards-section .feature-highlights .feature-highlight.ten-days .tent {
    width: 7.3125rem;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.ten-days .earth {
  top: 10.625rem;
  left: calc(50% + 2.1875rem);
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.ten-days .earth {
    top: 12.1875rem;
    left: calc(50% + -40rem);
    width: 5.125rem;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.ten-days .tent {
  display: none;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.ten-days .tent {
    display: block;
    width: 6.125rem;
    transform: rotate(16.497deg);
    top: 4.375rem;
    left: calc(50% + 0.9375rem);
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.our-moment {
  margin-top: -2.8125rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment {
    margin-top: -1.25rem;
    padding-top: 4.375rem;
    padding-bottom: 12.5rem;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.our-moment .text-content {
  margin-top: 1.0625rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .text-content {
    margin-top: 3.125rem;
  }
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .image-content img {
    top: 0;
    margin-bottom: 0;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.our-moment .sun,
.homepage .cards-section .feature-highlights .feature-highlight.our-moment .gesture {
  position: absolute;
  width: 6.25rem;
  z-index: 10;
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .sun,
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .gesture {
    width: auto;
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.our-moment .sun {
  top: 8.0625rem;
  left: calc(50% + 1.875rem);
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .sun {
    top: 12.8125rem;
    left: calc(50% - 20.9375rem);
  }
}
@media (min-width: 1200px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .sun {
    left: calc(50% - 23.75rem);
  }
}
.homepage .cards-section .feature-highlights .feature-highlight.our-moment .gesture {
  top: 2.6875rem;
  left: calc(50% - 11.6875rem);
}
@media (min-width: 992px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .gesture {
    top: 2.5rem;
    left: calc(50% - 35.5625rem);
  }
}
@media (min-width: 1200px) {
  .homepage .cards-section .feature-highlights .feature-highlight.our-moment .gesture {
    left: calc(50% - 38.375rem);
  }
}
.homepage .cards-section .join-us {
  min-height: 28.875rem;
  margin-top: -3.5625rem;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 992px) {
  .homepage .cards-section .join-us {
    min-height: 48.1875rem;
    margin-top: -7.8125rem;
  }
}
.homepage .cards-section .join-us .scout1, .homepage .cards-section .join-us .scout2 {
  position: absolute;
}
.homepage .cards-section .join-us .scout1 {
  top: -0.4375rem;
  left: calc(50% - 8.875rem);
  z-index: 4;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .scout1 {
    top: 0;
    left: calc(50% - 28.25rem);
  }
}
.homepage .cards-section .join-us .scout2 {
  top: -0.75rem;
  left: calc(50% - 6.625rem);
  z-index: 2;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .scout2 {
    top: -2.1875rem;
    left: calc(50% - 19rem);
  }
}
.homepage .cards-section .join-us .join, .homepage .cards-section .join-us .us {
  color: #ffffff;
  position: absolute;
}
.homepage .cards-section .join-us .join span, .homepage .cards-section .join-us .us span {
  font-family: Bravely Script, sans-serif;
  font-size: 1.75rem;
  line-height: 1.5625rem;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .join span, .homepage .cards-section .join-us .us span {
    font-size: 4.0625rem;
    line-height: 3.625rem;
  }
}
.homepage .cards-section .join-us .join {
  z-index: 1;
  width: 15.6875rem;
  height: 2.9375rem;
  transform: rotate(-7.381deg);
  top: 1.5625rem;
  left: calc(50% - 11.125rem);
  overflow: hidden;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .join {
    width: 41.125rem;
    height: 6.875rem;
    top: 9.5rem;
    left: calc(50% - 31.375rem);
  }
}
.homepage .cards-section .join-us .join::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #587D18;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 1s ease;
  z-index: 0;
}
.homepage .cards-section .join-us .join span {
  transform: rotate(7.381deg) translateX(3.5rem);
  top: 0.375rem;
  left: 0.9375rem;
  right: auto;
  z-index: 1;
  transition: transform 1s ease;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .join span {
    top: 1.1875rem;
    left: 1.4375rem;
  }
}
.homepage .cards-section .join-us .us {
  z-index: 3;
  width: 11.125rem;
  height: 2.75rem;
  transform: rotate(4.436deg);
  top: 10.625rem;
  left: calc(50% - 1.125rem);
  overflow: hidden;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .us {
    width: 27.4375rem;
    height: 6.5rem;
    top: 19rem;
    left: calc(50% - 0.625rem);
  }
}
.homepage .cards-section .join-us .us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #AFCA0B;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s ease 300ms;
  z-index: 0;
}
.homepage .cards-section .join-us .us span {
  display: flex;
  justify-content: flex-end;
  transform: rotate(-4.436deg) translateX(-3.5rem);
  top: 0.75rem;
  right: 0.5rem;
  left: auto;
  z-index: 1;
  transition: transform 1s ease 300ms;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .us span {
    top: 1.25rem;
    right: 1.375rem;
  }
}
.homepage .cards-section .join-us .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  flex-direction: column;
  z-index: 5;
  width: 21.375rem;
  position: absolute;
  top: 14.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.9375rem 1.25rem 1.5625rem;
  color: #ffffff;
  opacity: 1;
  translate: 0 2.75rem;
  transition: opacity 200ms ease, translate 600ms ease;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content {
    gap: 1.125rem;
    width: 32.1875rem;
    top: 25.625rem;
    padding-top: 1.875rem;
  }
}
.homepage .cards-section .join-us .content::before {
  content: "";
  width: 100%;
  height: calc(100% - 3.125rem);
  transform: rotate(-2.737deg);
  background: #587D18;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.homepage .cards-section .join-us .content .text-small {
  font-weight: 700;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 400ms ease, transform 500ms ease;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content .text-small {
    font-size: 1.3125rem;
    line-height: 1.4375rem;
  }
}
.homepage .cards-section .join-us .content .text-large {
  font-family: Bravely Script, sans-serif;
  font-size: 4.5rem;
  line-height: 4rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 400ms ease, transform 500ms ease;
  margin-top: -0.625rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content .text-large {
    font-size: 7.5625rem;
    line-height: 6.75rem;
    font-weight: 400;
    margin-top: -1.875rem;
  }
}
.homepage .cards-section .join-us .content .button-bravely {
  padding: 0.875rem 1.75rem 1.375rem;
  margin-top: 0.6875rem;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content .button-bravely {
    padding: 1.0625rem 1.75rem 1.375rem 1.625rem;
    margin-top: 0;
  }
}
.homepage .cards-section .join-us .content .button-bravely .button-text {
  font-family: Bravely Script, sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content .button-bravely .button-text {
    font-size: 3.375rem;
    line-height: 3.375rem;
  }
}
.homepage .cards-section .join-us .content .cta-swap {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 0.6875rem;
  min-height: 4.625rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 400ms ease, transform 500ms ease;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content .cta-swap {
    margin-top: 0;
    min-height: 6.625rem;
  }
}
.homepage .cards-section .join-us .content .cta-swap .button-bravely {
  grid-area: 1/1;
  margin-top: 0;
  transition: opacity 350ms ease, transform 350ms ease, visibility 350ms ease;
}
.homepage .cards-section .join-us .content .you-are-a-host {
  font-family: Bravely Script, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  position: relative;
  grid-area: 1/1;
  z-index: 0;
  padding: 1.25rem 0.625rem;
  transform-origin: center center;
  transform: translateY(3.375rem);
  visibility: hidden;
  pointer-events: none;
  transition: transform 550ms ease, opacity 450ms ease, visibility 450ms ease;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content .you-are-a-host {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.homepage .cards-section .join-us .content .you-are-a-host.is-swaying {
  animation: sway-center 0.7s ease-in-out infinite;
}
.homepage .cards-section .join-us .content .you-are-a-host::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #AFCA0B;
  transform: skewX(-3deg);
  transform-origin: bottom left;
  z-index: -1;
}
.homepage .cards-section .join-us .content .animation-arrows {
  position: absolute;
  bottom: 0;
  left: 30%;
  top: 25%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  display: none;
}
@media (min-width: 768px) {
  .homepage .cards-section .join-us .content .animation-arrows {
    display: block;
  }
}
.homepage .cards-section .join-us .content .animation-arrows .arrow-instance {
  position: absolute;
  width: 14.296125rem;
  height: 8.2054375rem;
  transform-origin: center center;
}
.homepage .cards-section .join-us .content .animation-arrows .arrow-shell {
  position: absolute;
  left: 10.12415625rem;
  top: 5.7863125rem;
  width: 4.1199375rem;
  height: 1.41175rem;
  transform: rotate(32.98deg);
  transform-origin: center center;
}
.homepage .cards-section .join-us .content .animation-arrows .arrow-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage .cards-section .join-us .content .animation-arrows .arrow1 {
  top: 3.91425rem;
  left: 22.19409375rem;
}
.homepage .cards-section .join-us .content .animation-arrows .arrow2 {
  top: 3.47675rem;
  left: -24.93090625rem;
  transform: rotate(142.83deg);
}
.homepage .cards-section .join-us .content .animation-arrows .arrow3 {
  top: -9.71075rem;
  left: -16.930875rem;
  transform: rotate(-176.17deg);
}
.homepage .cards-section .join-us .content .animation-arrows.is-visible .arrow-shell {
  animation: arrow-animation 2.2s ease-in-out infinite;
}
.homepage .cards-section .join-us.is-visible .join::before {
  transform: scaleX(1);
}
.homepage .cards-section .join-us.is-visible .join span {
  transform: rotate(7.381deg) translateX(0);
}
.homepage .cards-section .join-us.is-visible .us::before {
  transform: scaleX(1);
}
.homepage .cards-section .join-us.is-visible .us span {
  transform: rotate(-4.436deg) translateX(0);
}
.homepage .cards-section .join-us.is-visible .content {
  opacity: 1;
  translate: 0 0;
  transition-delay: 700ms;
}
.homepage .cards-section .join-us.is-visible .content .text-small:first-of-type,
.homepage .cards-section .join-us.is-visible .content .text-large {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1800ms;
}
.homepage .cards-section .join-us.is-visible .content .text-small:last-of-type,
.homepage .cards-section .join-us.is-visible .content .cta-swap {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2800ms;
}
.homepage .cards-section .join-us .content.is-joined .button-bravely {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
}
.homepage .cards-section .join-us .content.is-joined .animation-arrows {
  opacity: 1;
}
@media (min-width: 992px) {
  .homepage .cards-section .join-us .content.is-joined .text-large {
    font-family: Bravely Script, sans-serif;
    font-size: 8.625rem;
    line-height: 8.625rem;
    font-weight: 400;
  }
}
.homepage .cards-section .join-us .content.is-joined .you-are-a-host {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.homepage .cards-section .join-us .content.is-joined .hide-after-click {
  display: none;
}

.idea {
  background: #f7f4f2;
}
.idea .bg-section {
  background: url("../images/idea-bg.webp");
  background-repeat: no-repeat;
  background-position: -27.1875rem -5rem;
  background-size: 78.75rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .idea .bg-section {
    background-size: auto auto;
    background-position: calc(50% + 15.9375rem) -1.25rem;
    background-size: auto 135.125rem;
  }
}
@media (min-width: 1921px) {
  .idea .bg-section {
    background-size: cover;
    background-position: center top;
  }
}
.idea .idea-overview {
  position: relative;
  z-index: 3;
}
.idea .idea-overview .feature-highlights .idea-scale {
  padding-bottom: 9.0625rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .idea-scale {
    padding-top: 3.125rem;
    padding-bottom: 2.8125rem;
  }
}
.idea .idea-overview .feature-highlights .idea-scale .campfire {
  position: absolute;
  top: 8.75rem;
  left: calc(50% + 4.1875rem);
  width: 3.75rem;
  z-index: 5;
}
@media (min-width: 768px) {
  .idea .idea-overview .feature-highlights .idea-scale .campfire {
    top: 16.875rem;
    left: calc(50% + 8.5625rem);
  }
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .idea-scale .campfire {
    top: 14.6875rem;
    left: calc(50% - 26.875rem);
    width: auto;
  }
}
@media (min-width: 1200px) {
  .idea .idea-overview .feature-highlights .idea-scale .campfire {
    top: 17.5rem;
    left: calc(50% - 32.5rem);
  }
}
.idea .idea-overview .feature-highlights .idea-scale .image-content {
  margin-bottom: 2.1875rem;
}
.idea .idea-overview .feature-highlights .idea-scale .image-content img {
  top: -3.625rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .idea-scale .image-content img {
    left: -1.875rem;
    top: -4.25rem;
  }
}
.idea .idea-overview .feature-highlights .global-community {
  margin-top: -4.0625rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .global-community {
    margin-top: -1.5rem;
    padding-top: 4.875rem;
    padding-bottom: 6.4375rem;
  }
}
.idea .idea-overview .feature-highlights .global-community::before {
  z-index: 3;
}
.idea .idea-overview .feature-highlights .global-community .highlight-content {
  z-index: 5;
}
.idea .idea-overview .feature-highlights .global-community .highlight-content .image-content {
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .global-community .highlight-content .image-content {
    margin-bottom: 0;
  }
}
.idea .idea-overview .feature-highlights .global-community .highlight-content .image-content img {
  transform: translateX(-50%) rotate(6deg);
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .global-community .highlight-content .image-content img {
    transform: rotate(4deg);
    margin-left: 5.625rem;
    margin-top: 6.875rem;
  }
}
@media (min-width: 1200px) {
  .idea .idea-overview .feature-highlights .global-community .highlight-content .image-content img {
    margin-left: 0rem;
  }
}
.idea .idea-overview .feature-highlights .global-community .highlight-content .gesture {
  position: absolute;
  top: -1.6875rem;
  left: calc(50% + 6.3125rem);
  z-index: 5;
}
@media (min-width: 1200px) {
  .idea .idea-overview .feature-highlights .global-community .highlight-content .gesture {
    top: -1.75rem;
    left: calc(50% + 11.9375rem);
  }
}
.idea .idea-overview .feature-highlights .poland-hosts {
  margin-top: -1.75rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .poland-hosts {
    margin-top: -2.25rem;
    padding-top: 5rem;
    padding-bottom: 4.875rem;
  }
}
.idea .idea-overview .feature-highlights .poland-hosts::before {
  z-index: 2;
}
.idea .idea-overview .feature-highlights .poland-hosts h3 {
  font-family: Galano Grotesque, sans-serif;
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 400;
  margin-top: 0.75rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .poland-hosts h3 {
    font-family: Galano Grotesque, sans-serif;
    font-size: 2rem;
    line-height: normal;
    font-weight: 400;
  }
}
.idea .idea-overview .feature-highlights .poland-hosts .highlight-content {
  z-index: 5;
}
.idea .idea-overview .feature-highlights .poland-hosts .image-content {
  position: relative;
  z-index: 5;
}
.idea .idea-overview .feature-highlights .poland-hosts .image-content img {
  top: -3.625rem;
  margin-bottom: -1.5rem;
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .poland-hosts .image-content img {
    left: -3.75rem;
    margin: 0;
    top: -3.75rem;
  }
}
.idea .idea-overview .feature-highlights .poland-hosts .tent {
  width: 6.25rem;
  position: absolute;
  z-index: 10;
  top: 7.8125rem;
  left: calc(50% + 1.25rem);
}
@media (min-width: 768px) {
  .idea .idea-overview .feature-highlights .poland-hosts .tent {
    width: 9.375rem;
    top: 12.8125rem;
    left: calc(50% + 8.4375rem);
  }
}
@media (min-width: 992px) {
  .idea .idea-overview .feature-highlights .poland-hosts .tent {
    top: 15.3125rem;
    left: calc(50% + -13.4375rem);
  }
}
.idea .idea-overview .global-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.idea .idea-overview .global-list li {
  position: relative;
  padding-left: 3.5rem;
  line-height: 1.375rem;
}
.idea .idea-overview .global-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 0.9375rem;
  background: url("../images/arrow-marker.svg") no-repeat center/contain;
}
.idea .info-section {
  position: relative;
  z-index: 10;
  padding-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .idea .info-section {
    padding-top: 3.125rem;
  }
}
@media (min-width: 992px) {
  .idea .info-section {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .idea .info-section .col:first-child {
    margin-top: -3.125rem;
  }
}
@media (min-width: 992px) {
  .idea .info-section .col:last-child {
    padding-top: 6.875rem;
  }
}
.idea .info-section .col .icon {
  margin-bottom: 0.375rem;
}
.idea .info-section .lightning-wrap {
  position: absolute;
  top: 42.8125rem;
  left: calc(50% - 16.875rem);
}
.idea .info-section .lightning-wrap .lightning {
  transform: rotate(-5.941deg);
}

.host-role .bg-section {
  --bg-image: url("../images/host-role-bg.webp");
  --bg-size: 59.375rem auto;
  --bg-position: calc(50% + 6.25rem) -1.5625rem;
  position: relative;
  z-index: 1;
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: var(--bg-position);
  background-size: var(--bg-size);
}
@media (min-width: 576px) {
  .host-role .bg-section {
    --bg-position: center top;
  }
}
@media (min-width: 768px) {
  .host-role .bg-section {
    --bg-size: 62.5rem auto;
  }
}
@media (min-width: 992px) {
  .host-role .bg-section {
    --bg-size: auto auto;
    --bg-position: center -10.625rem;
  }
}
@media (min-width: 1800px) {
  .host-role .bg-section {
    --bg-size: cover;
  }
}
.host-role .bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-mask-image: var(--bg-image);
  mask-image: var(--bg-image);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: var(--bg-position);
  mask-position: var(--bg-position);
  -webkit-mask-size: var(--bg-size);
  mask-size: var(--bg-size);
  pointer-events: none;
}
.host-role .hero-section {
  padding-block: 6.25rem 3.125rem;
}
@media (min-width: 992px) {
  .host-role .hero-section {
    padding-block: 13.75rem 5.625rem;
  }
}
.host-role .overview .feature-highlight {
  padding-block: 1.5625rem 2.1875rem;
  position: relative;
  top: 0.625rem;
}
@media (min-width: 992px) {
  .host-role .overview .feature-highlight {
    padding-block: 4.375rem;
  }
}
.host-role .overview .feature-highlight .heading-default {
  text-align: center;
}
.host-role .overview .feature-highlight p {
  text-align: center;
  max-width: 32.8125rem;
}
.host-role .info-section {
  padding-block: 4.625rem 5.5rem;
}
@media (min-width: 992px) {
  .host-role .info-section {
    padding-block: 2.8125rem 5.5rem;
  }
}
.host-role .info-section .col .image {
  position: relative;
}
@media (max-width: 991px) {
  .host-role .info-section .col .image .main-image {
    max-width: 17.75rem;
    margin-inline: auto;
  }
}
.host-role .info-section .col .image .sun {
  position: absolute;
  top: -2.1875rem;
  left: calc(50% - 8.125rem);
  width: 6.25rem;
  height: 6.25rem;
  z-index: 12;
  display: none;
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .sun {
    top: -2.9375rem;
    left: 17.75rem;
    width: 9.1875rem;
    height: 9.1875rem;
    display: block;
  }
}
.host-role .info-section .col .image .photo {
  position: absolute;
  z-index: 5;
}
.host-role .info-section .col .image .photo.photo1 {
  left: calc(50% - 10.9375rem);
  top: 5.5rem;
  z-index: 10;
  width: 4.5rem;
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .photo.photo1 {
    left: calc(50% - 18.8125rem);
    top: 6.375rem;
  }
}
@media (min-width: 1200px) {
  .host-role .info-section .col .image .photo.photo1 {
    left: calc(50% - 20.375rem);
    top: 9.8125rem;
  }
}
.host-role .info-section .col .image .photo.photo2 {
  z-index: 10;
  width: 3.875rem;
  top: 10rem;
  left: calc(50% - 7.6875rem);
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .photo.photo2 {
    top: 15rem;
    left: calc(50% - 12.6875rem);
  }
}
@media (min-width: 1200px) {
  .host-role .info-section .col .image .photo.photo2 {
    top: 18.4375rem;
    left: calc(50% - 14.125rem);
  }
}
.host-role .info-section .col .image .photo.photo3 {
  top: -2.1875rem;
  left: calc(50% - 4.375rem);
  width: 5.1875rem;
  z-index: -1;
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .photo.photo3 {
    top: -3.75rem;
    left: calc(50% + -6.875rem);
  }
}
@media (min-width: 1200px) {
  .host-role .info-section .col .image .photo.photo3 {
    top: -3.75rem;
    left: calc(50% - 8.4375rem);
  }
}
.host-role .info-section .col .image .photo.photo4 {
  top: 1.8125rem;
  left: calc(50% + 5.5625rem);
  z-index: 10;
  width: 5.25rem;
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .photo.photo4 {
    top: 0;
    left: calc(50% + 5.375rem);
  }
}
@media (min-width: 1200px) {
  .host-role .info-section .col .image .photo.photo4 {
    top: 2.625rem;
    left: calc(50% + 10.125rem);
  }
}
.host-role .info-section .col .image .photo.photo5 {
  left: calc(50% + 6rem);
  top: 8.125rem;
  width: 4.8125rem;
  z-index: -1;
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .photo.photo5 {
    top: 11.875rem;
    left: calc(50% + 6.25rem);
  }
}
@media (min-width: 1200px) {
  .host-role .info-section .col .image .photo.photo5 {
    top: 14.6875rem;
    left: calc(50% + 10.9375rem);
  }
}
@media (min-width: 992px) {
  .host-role .info-section .col .image .photo.photo1, .host-role .info-section .col .image .photo.photo2, .host-role .info-section .col .image .photo.photo3, .host-role .info-section .col .image .photo.photo4, .host-role .info-section .col .image .photo.photo5 {
    width: unset;
  }
}
@media (min-width: 992px) {
  .host-role .info-section .col:first-child {
    padding-top: 13.4375rem;
  }
}
.host-role .info-section .col .icon .fist {
  width: 3.125rem;
}
@media (min-width: 992px) {
  .host-role .info-section .col .icon .fist {
    width: unset;
  }
}
.host-role .poland-impressions .feature-highlight {
  padding-block: 1.5625rem 2.1875rem;
  z-index: 10;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight {
    padding-block: 6.125rem 6.6875rem;
  }
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .text-content {
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .text-content {
    padding-top: 3.5625rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .host-role .poland-impressions .feature-highlight .text-content {
    order: 1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .host-role .poland-impressions .feature-highlight .highlight-content {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .host-role .poland-impressions .feature-highlight .image-content {
    order: 0;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper {
  position: relative;
  margin-top: -0.625rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper {
    margin-top: -1.25rem;
    width: 30.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper {
    left: 38%;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .map {
  width: 15.0625rem;
  top: unset;
  margin-bottom: unset;
  left: calc(50% - 0.9375rem);
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .map {
    width: 30.75rem;
    left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .map {
    width: 30.75rem;
    left: 50%;
    transform: translateX(-58%);
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag {
  position: absolute;
  z-index: 1;
}
@media (min-width: 1200px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag {
    margin-left: 2.1875rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-baltyk {
  top: -2.8125rem;
  left: calc(50% - 10.625rem);
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-baltyk {
    top: -7.5rem;
    left: calc(50% - 24.0625rem);
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-baltyk .tag-text {
  background: transparent url(../images/baltyk-tag-mobile.svg) no-repeat center center;
  width: 5.1875rem;
  height: 3.625rem;
  padding-top: 0.75rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-baltyk .tag-text {
    background: transparent url(../images/baltyk-tag.svg) no-repeat center center;
    width: 11.25rem;
    height: 9.75rem;
    padding-top: 0.625rem;
  }
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-baltyk .point {
    right: -0.4375rem;
    bottom: -0.6875rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-kaszuby {
  top: -1.6875rem;
  left: calc(50% - 2.6875rem);
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-kaszuby {
    top: -7.3125rem;
    left: calc(50% - 6.5625rem);
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-kaszuby .tag-text {
  background: transparent url(../images/kaszuby-tag-mobile.svg) no-repeat center center;
  width: 5.5rem;
  height: 3.3125rem;
  padding-top: 0.5rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-kaszuby .tag-text {
    background: transparent url(../images/kaszuby-tag.svg) no-repeat center center;
    width: 11.25rem;
    height: 9.75rem;
    padding-top: 0.625rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-kaszuby .point {
  left: -0.3125rem;
  bottom: -0.4375rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-kaszuby .point {
    left: -0.5rem;
    bottom: -0.9375rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-mazury {
  top: -0.125rem;
  left: calc(50% + 3.0625rem);
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-mazury {
    top: -3.75rem;
    left: calc(50% + 5.625rem);
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-mazury .tag-text {
  background: transparent url(../images/mazury-tag-mobile.svg) no-repeat center center;
  width: 5.625rem;
  height: 3.0625rem;
  padding-top: 0.5rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-mazury .tag-text {
    background: transparent url(../images/mazury-tag.svg) no-repeat center center;
    width: 11.5625rem;
    height: 9.75rem;
    padding-top: 0.125rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-mazury .point {
  left: -0.3125rem;
  bottom: -0.3125rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-mazury .point {
    left: -0.625rem;
    bottom: -0.625rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-tatry {
  top: 10rem;
  left: calc(50% - 5.8125rem);
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-tatry {
    top: 15.3125rem;
    left: calc(50% - 12.25rem);
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-tatry .tag-text {
  background: transparent url(../images/tatry-tag-mobile.svg) no-repeat center center;
  width: 6rem;
  height: 3.3125rem;
  padding-top: 0.625rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-tatry .tag-text {
    background: transparent url(../images/tatry-tag.svg) no-repeat center center;
    width: 12.25rem;
    height: 11.8125rem;
    padding-top: 0.8125rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-tatry .point {
  right: -0.375rem;
  bottom: -0.4375rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-tatry .point {
    right: -0.6875rem;
    bottom: -0.9375rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady {
  top: 10.125rem;
  left: calc(50% + 3.6875rem);
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady {
    top: 18.125rem;
    left: calc(50% + 7.5rem);
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady .tag-text {
  background: transparent url(../images/bieszczady-tag-mobile.svg) no-repeat center center;
  width: 7.0625rem;
  height: 3.5625rem;
  padding-top: 0.625rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady .tag-text {
    background: transparent url(../images/bieszczady-tag.svg) no-repeat center center;
    width: 15.9375rem;
    height: 9.75rem;
    padding-top: 0.9375rem;
  }
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady .tag-text .description {
    max-width: 13.5rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady .point {
  left: -0.375rem;
  bottom: -0.3125rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag.tag-bieszczady .point {
    left: -0.6875rem;
    bottom: -0.6875rem;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .tag-text {
  font-family: Bravely Script, sans-serif;
  font-size: 1.5rem;
  line-height: 1.6875rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  color: #333333;
  letter-spacing: -3%;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .tag-text {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 400;
    align-items: flex-start;
    padding-inline: 0.625rem 0.3125rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .tag-text {
    font-size: 2.5rem;
    line-height: 3.5rem;
    font-weight: 400;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .tag-text .description {
  font-size: 0.75rem;
  line-height: normal;
  display: none;
  margin-top: 0.1875rem;
  text-align: left;
  max-width: 10rem;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .tag-text .description {
    display: block;
  }
}
.host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .point {
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  bottom: -0.3125rem;
  right: -0.1875rem;
  top: unset;
  left: unset;
  z-index: -1;
  transform: none;
  margin: 0;
}
@media (min-width: 992px) {
  .host-role .poland-impressions .feature-highlight .image-content .map-wrapper .tag .point {
    width: unset;
    height: unset;
  }
}

.program .bg-section {
  background-image: url("../images/program-bg.webp");
  background-repeat: no-repeat;
  background-position: calc(50% + 6.25rem) -1.5625rem;
  background-size: 59.375rem auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .program .bg-section {
    background-size: 65.625rem auto;
    background-position: center -7.5rem;
  }
}
@media (min-width: 992px) {
  .program .bg-section {
    background-size: 106.25rem auto;
    background-position: center -5rem;
  }
}
@media (min-width: 1700px) {
  .program .bg-section {
    background-size: cover;
  }
}
.program .hero-section {
  padding-block: 6.25rem 2.5rem;
}
@media (min-width: 992px) {
  .program .hero-section {
    padding-block: 11.25rem 2.1875rem;
  }
}
.program .overview .feature-highlight {
  padding-block: 1.875rem 2.8125rem;
}
@media (min-width: 992px) {
  .program .overview .feature-highlight {
    padding-block: 4.375rem;
  }
}
.program .overview .feature-highlight .heading-default {
  text-align: center;
}
.program .notes-section {
  padding-block: 2.5rem 4rem;
}
@media (min-width: 992px) {
  .program .notes-section {
    padding-block: 3.75rem 8.75rem;
  }
}
.program .notes-section .program-notes-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .program .notes-section .program-notes-scroll {
    --notes-top-offset: 120px;
    --notes-step: 300px;
    --notes-duration: 0px;
    height: var(--notes-wrapper-height, auto);
  }
}
.program .notes-section .notes {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .program .notes-section .notes {
    position: sticky;
    top: var(--notes-top-offset);
    height: var(--notes-height, auto);
    display: block;
    z-index: 10;
  }
}
.program .notes-section .notes1 {
  margin-bottom: 2.5rem;
}
.program .notes-section .notes1 .note {
  position: sticky;
  top: 7.5rem;
}
@media (min-width: 992px) {
  .program .notes-section .notes1 .note {
    --note-stack-y: 0px;
    --note-stack-extra: 0px;
    --note-reveal-progress: 0;
    position: absolute;
    top: auto;
    left: 50%;
    translate: none;
    z-index: var(--note-z, 1);
    opacity: var(--note-reveal-progress);
    transform: translateY(calc((1 - var(--note-reveal-progress)) * 7.5rem)) rotate(var(--note-rotation, 0deg));
    transition: opacity 200ms linear, transform 200ms linear;
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes1 .note:nth-child(1) {
    top: 3.625rem;
    left: calc(50% - 34.65625rem);
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes1 .note:nth-child(2) {
    top: 3.0625rem;
    left: calc(50% - 12.40625rem);
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes1 .note:nth-child(3) {
    top: 1.625rem;
    left: calc(50% + 9.40625rem);
  }
}
.program .notes-section .notes2 {
  margin-block: 2.5rem;
}
.program .notes-section .notes2 .note {
  position: sticky;
  top: 7.5rem;
}
@media (min-width: 992px) {
  .program .notes-section .notes2 .note {
    --note-stack-y: 0px;
    --note-stack-extra: 0px;
    --note-reveal-progress: 0;
    position: absolute;
    top: auto;
    left: 50%;
    translate: none;
    z-index: var(--note-z, 1);
    opacity: var(--note-reveal-progress);
    transform: translateY(calc((1 - var(--note-reveal-progress)) * 7.5rem)) rotate(var(--note-rotation, 0deg));
    transition: opacity 200ms linear, transform 200ms linear;
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes2 .note:nth-child(1) {
    top: 4.375rem;
    left: calc(50% - 34.375rem);
    z-index: 3;
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes2 .note:nth-child(2) {
    top: 3.0625rem;
    left: calc(50% - 12.375rem);
    min-width: 24.375rem;
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes2 .note:nth-child(3) {
    top: 3.75rem;
    left: calc(50% + 11.875rem);
  }
}
@media (min-width: 992px) {
  .program .notes-section .notes2 .note:nth-child(4) {
    top: 11.4375rem;
    left: calc(50% - 11.25rem);
  }
}
.program .notes-section .notes-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  margin-top: 2.5rem;
}
@media (min-width: 992px) {
  .program .notes-section .notes-content {
    margin-top: 3.75rem;
    gap: 1.5rem;
  }
}
.program .notes-section .heading-default, .program .notes-section p {
  text-align: center;
}
.program .notes-section p {
  max-width: 34.0625rem;
}
.program .bravely-section .feature-highlight {
  padding-block: 8rem 4.0625rem;
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight {
    padding-block: 2.8125rem 1.875rem;
  }
}
.program .bravely-section .feature-highlight::before {
  background-image: url("../images/zigzag.svg");
  background-position: calc(50% + 0.875rem) -3.4375rem;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight::before {
    background-image: url("../images/zigzag-desktop.svg");
    background-position: calc(50% + 15.9375rem) -4.6875rem;
  }
}
.program .bravely-section .feature-highlight .zigzag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight .zigzag {
    width: 37.8125rem;
  }
}
.program .bravely-section .feature-highlight .image-content img {
  top: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight .image-content img {
    left: 4.25rem;
    top: 2.5rem;
  }
}
.program .bravely-section .feature-highlight .text-content {
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight .text-content {
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight .text-content .heading-default {
    margin-bottom: 1.25rem;
  }
}
.program .bravely-section .feature-highlight .lightning-wrap {
  position: absolute;
  top: 23.75rem;
  left: calc(50% + 4.375rem);
  z-index: 10;
}
@media (min-width: 1200px) {
  .program .bravely-section .feature-highlight .lightning-wrap {
    top: 12.8125rem;
    left: calc(50% - 34.375rem);
  }
}
.program .bravely-section .feature-highlight .lightning-wrap .lightning {
  transform: rotate(-5.941deg);
  width: 3.5625rem;
}
@media (min-width: 1200px) {
  .program .bravely-section .feature-highlight .lightning-wrap .lightning {
    width: 4.375rem;
  }
}
.program .bravely-section .feature-highlight .fist-wrap {
  position: absolute;
  top: 5.375rem;
  left: calc(50% - 7.3125rem);
  z-index: 10;
}
@media (min-width: 992px) {
  .program .bravely-section .feature-highlight .fist-wrap {
    top: 5.3125rem;
    left: calc(50% - 3.75rem);
  }
}
.program .bravely-section .feature-highlight .fist-wrap .fist {
  transform: rotate(20.338deg);
  width: 3.375rem;
}
.program .areas-section {
  padding-block: 1.25rem 4rem;
}
@media (min-width: 992px) {
  .program .areas-section {
    padding-block: 4.375rem 5rem;
  }
}
.program .areas-section .heading-default {
  text-align: center;
  margin-bottom: 3.375rem;
}
.program .areas-section .areas-notes-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .program .areas-section .areas-notes-scroll {
    --notes-top-offset: 120px;
    --notes-step: 300px;
    --notes-duration: 0px;
    height: var(--notes-wrapper-height, auto);
  }
}
.program .areas-section .notes {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .program .areas-section .notes {
    position: sticky;
    top: var(--notes-top-offset);
    height: var(--notes-height, auto);
    display: block;
    z-index: 10;
  }
}
.program .areas-section .note {
  position: sticky;
  top: 7.5rem;
}
@media (min-width: 992px) {
  .program .areas-section .note {
    --note-stack-y: 0px;
    --note-stack-extra: 0px;
    --note-reveal-progress: 0;
    position: absolute;
    top: auto;
    left: 50%;
    translate: none;
    z-index: var(--note-z, 1);
    opacity: var(--note-reveal-progress);
    transform: translateY(calc((1 - var(--note-reveal-progress)) * 7.5rem)) rotate(var(--note-rotation, 0deg));
    transition: opacity 200ms linear, transform 200ms linear;
  }
}
@media (min-width: 992px) {
  .program .areas-section .note:nth-child(1) {
    top: 0rem;
    left: calc(50% - 26.125rem);
  }
}
@media (min-width: 992px) {
  .program .areas-section .note:nth-child(2) {
    top: 1.0625rem;
    left: calc(50% - 9.8125rem);
  }
}
@media (min-width: 992px) {
  .program .areas-section .note:nth-child(3) {
    top: 0rem;
    left: calc(50% + 7.125rem);
  }
}

.city .bg-section {
  background-image: url("../images/city-bg.webp");
  background-repeat: no-repeat;
  background-size: 71.875rem auto;
  background-position: calc(50% - 0.625rem) -7.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .city .bg-section {
    background-size: 105.9375rem auto;
    background-position: calc(50% - 0.3125rem) -13.125rem;
  }
}
@media (min-width: 1690px) {
  .city .bg-section {
    background-size: cover;
    background-position: center;
  }
}
.city .hero-section {
  padding-block: 8.125rem 10.625rem;
}
@media (min-width: 992px) {
  .city .hero-section {
    padding-block: 11.25rem 2.1875rem;
  }
}
@media (min-width: 992px) {
  .city .overview .feature-highlights {
    margin-top: 5.625rem;
  }
}
.city .overview .feature-highlights .feature-highlight {
  padding-block: 0rem 2rem;
}
@media (min-width: 992px) {
  .city .overview .feature-highlights .feature-highlight {
    padding-block: 3.125rem 1.25rem;
  }
}
.city .overview .feature-highlights .feature-highlight .image-content img {
  top: -8.75rem;
  margin-bottom: -7.5rem;
}
@media (max-width: 767px) {
  .city .overview .feature-highlights .feature-highlight .image-content img {
    max-width: 20.375rem;
  }
}
@media (min-width: 992px) {
  .city .overview .feature-highlights .feature-highlight .image-content img {
    top: -4.0625rem;
    margin-bottom: 0rem;
    left: -1.875rem;
  }
}
.city .overview .feature-highlights .feature-highlight .text-content {
  gap: 1rem;
}
@media (min-width: 992px) {
  .city .overview .feature-highlights .feature-highlight .text-content {
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .city .overview .feature-highlights .feature-highlight .text-content .heading-default {
    margin-bottom: 2.125rem;
  }
}
.city .overview .feature-highlights .feature-highlight .lightning-wrap {
  position: absolute;
  top: 2.5rem;
  left: calc(50% + 5rem);
  z-index: 10;
  width: 3.75rem;
}
@media (min-width: 768px) {
  .city .overview .feature-highlights .feature-highlight .lightning-wrap {
    top: 10.9375rem;
    left: calc(50% + 10rem);
  }
}
@media (min-width: 992px) {
  .city .overview .feature-highlights .feature-highlight .lightning-wrap {
    top: 7.1875rem;
    left: calc(50% + 26.25rem);
    width: 4.6875rem;
  }
}
.city .overview .feature-highlights .feature-highlight .lightning-wrap img {
  transform: rotate(1.98deg);
}
.city .info-section {
  padding-top: 3.125rem;
}
.city .info-section .icon {
  width: 4.375rem;
}
@media (min-width: 992px) {
  .city .info-section .icon {
    width: auto;
    margin-bottom: 0.625rem;
  }
}
.city .info-section .custom-columns {
  gap: 1rem;
}
.city .info-section .custom-columns .image {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .city .info-section .custom-columns .image {
    display: block;
    margin-block: 1.8125rem 0.75rem;
  }
}
@media (min-width: 992px) {
  .city .info-section .custom-columns .image img {
    min-width: 32.5rem;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .city .info-section .custom-columns .image img {
    left: -1.25rem;
  }
}
@media (min-width: 992px) {
  .city .info-section .custom-columns .heading-default {
    margin-bottom: 1.375rem;
  }
}
.city .info-section.info2 {
  padding-top: 0;
}
.city .info-section.info2 .equal-columns {
  position: relative;
  gap: 2rem;
}
@media (min-width: 992px) {
  .city .info-section.info2 .equal-columns {
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .city .info-section.info2 .equal-columns .image-content img {
    position: relative;
    top: 1.75rem;
  }
}
.city .info-section.info2 .equal-columns .leaf {
  position: absolute;
  top: 7.5rem;
  left: calc(50% - 43.5rem);
  width: 4.25rem;
}
@media (min-width: 992px) {
  .city .info-section.info3 {
    padding-top: 7.5rem;
  }
}
.city .info-section.info3 .equal-columns {
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .city .info-section.info3 .equal-columns {
    align-items: start;
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .city .info-section.info3 .text-content {
    position: sticky;
    top: 7.5rem;
    align-self: start;
  }
}
.city .info-section.info3 .notes-content {
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .city .info-section.info3 .notes-content {
    margin-top: 0.75rem;
  }
}
.city .info-section.info3 .notes-content .areas-notes-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .city .info-section.info3 .notes-content .areas-notes-scroll {
    --notes-top-offset: 7.5rem;
    --notes-desktop-mode: stack;
    height: var(--notes-wrapper-height, auto);
  }
}
.city .info-section.info3 .notes-content .notes {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .city .info-section.info3 .notes-content .notes {
    position: sticky;
    top: var(--notes-top-offset);
    height: var(--notes-height, auto);
    display: block;
  }
}
.city .info-section.info3 .notes-content .note {
  position: sticky;
  top: 7.5rem;
}
@media (min-width: 992px) {
  .city .info-section.info3 .notes-content .note {
    --note-stack-y: 0px;
    --note-stack-extra: 0px;
    --note-reveal-progress: 1;
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% calc(var(--note-stack-y) + var(--note-stack-extra));
    opacity: var(--note-reveal-progress);
    transition: opacity 200ms linear, translate 200ms linear;
    z-index: var(--note-z, 1);
  }
}
.city .notes-section {
  padding-block: 4.375rem 4rem;
  position: relative;
}
@media (min-width: 992px) {
  .city .notes-section {
    padding-block: 3.75rem 8.75rem;
  }
}
.city .notes-section .areas-notes-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .city .notes-section .areas-notes-scroll {
    --notes-top-offset: 7.5rem;
    --notes-step: 300px;
    --notes-duration: 0px;
    height: var(--notes-wrapper-height, auto);
  }
}
.city .notes-section .notes {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .city .notes-section .notes {
    position: sticky;
    top: var(--notes-top-offset);
    height: var(--notes-height, auto);
    display: block;
    z-index: 10;
  }
}
.city .notes-section .note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-direction: column;
  position: sticky;
  top: 7.5rem;
}
@media (min-width: 992px) {
  .city .notes-section .note {
    --note-stack-y: 0px;
    --note-stack-extra: 0px;
    --note-reveal-progress: 0;
    position: absolute;
    top: auto;
    left: 50%;
    translate: none;
    z-index: var(--note-z, 1);
    opacity: var(--note-reveal-progress);
    transform: translateY(calc((1 - var(--note-reveal-progress)) * 7.5rem)) rotate(var(--note-rotation, 0deg));
    transition: opacity 200ms linear, transform 200ms linear;
  }
}
@media (min-width: 992px) {
  .city .notes-section .note:nth-child(1) {
    top: 1rem;
    left: calc(50% - 32.8125rem);
  }
}
@media (min-width: 992px) {
  .city .notes-section .note:nth-child(2) {
    top: 0;
    left: calc(50% - 16.25rem);
  }
}
@media (min-width: 992px) {
  .city .notes-section .note:nth-child(3) {
    top: 0.3125rem;
    left: calc(50% + 0.375rem);
  }
}
@media (min-width: 992px) {
  .city .notes-section .note:nth-child(4) {
    top: 0.9375rem;
    left: calc(50% + 16.25rem);
  }
}
.city .notes-section .flag {
  position: absolute;
  left: calc(50% - 6.25rem);
  top: -3.4375rem;
  width: 3.125rem;
  z-index: 50;
}
.city .notes-section .leaf {
  position: absolute;
  left: calc(50% + 5.9375rem);
  top: 9.375rem;
  width: 4.25rem;
}
.city .city-home-section {
  padding-block: 3.125rem;
}
@media (min-width: 992px) {
  .city .city-home-section .highlight-content {
    padding-left: 3.75rem;
    gap: 3.125rem;
    grid-template-columns: minmax(0, 34.0625rem) auto;
  }
}
@media (min-width: 1200px) {
  .city .city-home-section .highlight-content {
    gap: 6.125rem;
    padding-left: 0;
  }
}
.city .city-home-section .feature-highlight {
  padding-block: 3.75rem 5.9375rem;
}
@media (min-width: 992px) {
  .city .city-home-section .feature-highlight {
    padding-block: 5rem 5.9375rem;
  }
}
@media (min-width: 1200px) {
  .city .city-home-section .feature-highlight .text-content:first-of-type {
    min-width: 34.0625rem;
  }
}
@media (min-width: 1200px) {
  .city .city-home-section .feature-highlight.bg-right::before {
    left: calc(50% - 41.25rem);
  }
}
.city .city-home-section .feature-highlight .services {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-direction: column;
  z-index: 10;
  margin-top: 3.125rem;
}
@media (min-width: 992px) {
  .city .city-home-section .feature-highlight .services {
    justify-self: start;
    width: 100%;
  }
}
.city .city-home-section .feature-highlight .services .service {
  display: inline-block;
  color: #ffffff;
  margin: 0;
  padding: 0.625rem 0.8125rem 0.5625rem;
  background-color: #B4CA40;
  font-weight: 700;
}
.city .city-home-section .feature-highlight .services .service.showers {
  -webkit-clip-path: polygon(97.016% 4.138%, 0.182% 0%, 0% 100%, 100% 95.939%);
  clip-path: polygon(97.016% 4.138%, 0.182% 0%, 0% 100%, 100% 95.939%);
}
.city .city-home-section .feature-highlight .services .service.water {
  -webkit-clip-path: polygon(100% 12.715%, 1.123% 0%, 0% 100%, 99.061% 98.828%);
  clip-path: polygon(100% 12.715%, 1.123% 0%, 0% 100%, 99.061% 98.828%);
}
.city .city-home-section .feature-highlight .services .service.waste {
  -webkit-clip-path: polygon(98.922% 12.798%, 0% 0%, 0.563% 100%, 100% 98.952%);
  clip-path: polygon(98.922% 12.798%, 0% 0%, 0.563% 100%, 100% 98.952%);
}
.city .city-home-section .feature-highlight .services .service.wifi {
  -webkit-clip-path: polygon(98.316% 10.116%, 1.21% 0%, 0% 100%, 100% 96.354%);
  clip-path: polygon(98.316% 10.116%, 1.21% 0%, 0% 100%, 100% 96.354%);
}
.city .city-home-section .feature-highlight .services .service.transport {
  -webkit-clip-path: polygon(97.76% 14.252%, 0% 0%, 0.731% 99.412%, 100% 100%);
  clip-path: polygon(97.76% 14.252%, 0% 0%, 0.731% 99.412%, 100% 100%);
}
.city .city-home-section .feature-highlight .services .service.info {
  -webkit-clip-path: polygon(100% 14.077%, 0.66% 0%, 0% 99.776%, 99.495% 100%);
  clip-path: polygon(100% 14.077%, 0.66% 0%, 0% 99.776%, 99.495% 100%);
}
.city .city-home-section .feature-highlight .services .service.hospital {
  -webkit-clip-path: polygon(97.721% 8.892%, 1.639% 0%, 0% 100%, 100% 95.13%);
  clip-path: polygon(97.721% 8.892%, 1.639% 0%, 0% 100%, 100% 95.13%);
}
.city .city-home-section .feature-highlight .services .service.shops {
  -webkit-clip-path: polygon(100% 9.322%, 0.638% 0%, 0% 99.228%, 99.5% 100%);
  clip-path: polygon(100% 9.322%, 0.638% 0%, 0% 99.228%, 99.5% 100%);
}
.city .city-home-section .feature-highlight .arrow-wrapper, .city .city-home-section .feature-highlight .campfire-wrapper {
  position: absolute;
  z-index: 15;
}
.city .city-home-section .feature-highlight .arrow-wrapper {
  bottom: -4.375rem;
  left: calc(50% + 3.125rem);
  transform: rotate(15deg);
  width: 6.25rem;
}
@media (min-width: 992px) {
  .city .city-home-section .feature-highlight .arrow-wrapper {
    transform: rotate(165deg);
    bottom: -2.5rem;
    left: calc(50% - 2.5rem);
  }
}
@media (min-width: 1200px) {
  .city .city-home-section .feature-highlight .arrow-wrapper {
    bottom: 0;
    left: calc(50% - 4.375rem);
  }
}
.city .city-home-section .feature-highlight .campfire-wrapper {
  top: 29.375rem;
  left: calc(50% + 4.375rem);
  width: 2.5rem;
  transform: rotate(18.279deg);
}
@media (min-width: 992px) {
  .city .city-home-section .feature-highlight .campfire-wrapper {
    width: 3.375rem;
    transform: rotate(18.279deg);
    top: 0;
    left: calc(50% + 20rem);
  }
}
@media (min-width: 1200px) {
  .city .city-home-section .feature-highlight .campfire-wrapper {
    top: 8.125rem;
    left: calc(50% + 33.125rem);
  }
}

.news-archive .hero-section {
  background-color: #0083AC;
  background-image: url("../images/zigzag-blue-mobile.svg");
  background-repeat: no-repeat;
  background-position: calc(50% + 4.6875rem) top;
  padding-block: 9.1875rem 6.5625rem;
}
@media (min-width: 992px) {
  .news-archive .hero-section {
    background-image: url("../images/zigzag-blue-desktop.svg");
    background-position: calc(50% + 15.1875rem) -3.625rem;
    padding-block: 14.0625rem 7.25rem;
  }
}
.news-archive .articles-section {
  background: #f7f4f2;
  position: relative;
  z-index: 1;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
@media (min-width: 992px) {
  .news-archive .articles-section {
    padding-top: 3.125rem;
    padding-bottom: 4.375rem;
  }
}
.news-archive .articles-section::before {
  width: 110vw;
  height: 12.5rem;
  content: "";
  background: #f7f4f2;
  position: absolute;
  top: -0.9375rem;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  z-index: -1;
}
.news-archive .articles-section .articles-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .news-archive .articles-section .articles-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.8125rem;
    row-gap: 5rem;
  }
}
@media (min-width: 1200px) {
  .news-archive .articles-section .articles-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.news-archive .articles-section .articles-list hr {
  width: 100%;
  border-color: #b6b6b6;
}
.news-archive .articles-section .articles-list .article .article-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
}
.news-archive .articles-section .articles-list .article .article-content .date {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.625rem;
  background: #AFCA0B;
}
.news-archive .articles-section .articles-list .article .article-content .title {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .news-archive .articles-section .articles-list .article .article-content .title {
    margin-bottom: 1rem;
  }
}
.news-archive .articles-section .articles-list .article .article-content .image {
  margin: 0 auto;
}
.news-archive .articles-section .articles-pagination {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .news-archive .articles-section .articles-pagination {
    margin-top: 4.6875rem;
  }
}
.news-archive .articles-section .articles-pagination .pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-direction: row;
}
.news-archive .articles-section .articles-pagination .pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  width: 2.625rem;
  height: 2.625rem;
  background: #ffffff;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.news-archive .articles-section .articles-pagination .pagination-item:not(.pagination-arrow):not(.pagination-dots):hover {
  background: #AFCA0B;
  color: #ffffff;
}
@media (min-width: 768px) {
  .news-archive .articles-section .articles-pagination .pagination-item {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.news-archive .articles-section .articles-pagination .is-current {
  background: #AFCA0B;
  color: #ffffff;
  font-weight: 700;
}
.news-archive .articles-section .articles-pagination .pagination-arrow {
  background: #9B1006;
  position: relative;
}
.news-archive .articles-section .articles-pagination .pagination-arrow:hover {
  background: #E30613;
}

.news-single .article-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  padding-block: 6.25rem 2rem;
  position: relative;
  color: #ffffff;
}
@media (min-width: 992px) {
  .news-single .article-heading {
    gap: 2rem;
    padding-block: 10rem 3.75rem;
  }
}
.news-single .article-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background-color: #587D18;
  background-image: url("../images/zigzag-green-mobile.svg");
  background-repeat: no-repeat;
  background-position: 50% -1.25rem;
  padding-block: 7.875rem 0rem;
}
@media (min-width: 992px) {
  .news-single .article-heading::before {
    background-image: url("../images/zigzag-green-desktop.svg");
    background-position: calc(50% + 14.375rem) 5.75rem;
    padding-block: 10.75rem 0rem;
    width: 150vw;
    height: 185%;
    top: -9rem;
    transform: translateX(-50%) rotate(2deg);
  }
}
.news-single .article-heading .article-date {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  background: #AFCA0B;
  padding: 0.625rem;
  color: #ffffff;
}
.news-single .article-heading .article-title {
  font-family: Bravely Script, sans-serif;
  font-size: 2.25rem;
  line-height: 2.625rem;
  font-weight: 700;
  letter-spacing: -0.0675rem;
  color: #ffffff;
  text-align: center;
  max-width: 56.125rem;
}
@media (min-width: 992px) {
  .news-single .article-heading .article-title {
    font-size: 4.5rem;
    line-height: 4rem;
  }
}
.news-single .main-article-content,
.news-single .main-article-content-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.news-single .main-article-content {
  padding-bottom: 4.5rem;
}
@media (min-width: 992px) {
  .news-single .main-article-content {
    padding-bottom: 15.625rem;
  }
}
.news-single .main-article-content .article-main-image {
  margin-bottom: 2rem;
  margin-inline: -0.9375rem;
}
@media (min-width: 992px) {
  .news-single .main-article-content .article-main-image {
    margin-bottom: 4rem;
    margin-inline: unset;
  }
}
.news-single .main-article-content .main-article-content-text {
  max-width: 41.75rem;
}
.news-single .main-article-content .main-article-content-text h2,
.news-single .main-article-content .main-article-content-text h3,
.news-single .main-article-content .main-article-content-text h4 {
  font-family: "Galano Grotesque", sans-serif;
  font-weight: 500;
  text-align: start;
  width: 100%;
}
.news-single .main-article-content .main-article-content-text h2 {
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #000000;
}
@media (min-width: 992px) {
  .news-single .main-article-content .main-article-content-text h2 {
    font-size: 2rem;
    line-height: normal;
  }
}
.news-single .main-article-content .main-article-content-text h3 {
  font-size: 1.5rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #333333;
}
.news-single .main-article-content .main-article-content-text h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #333333;
}
.news-single .main-article-content .main-article-content-text p,
.news-single .main-article-content .main-article-content-text .wp-block-paragraph {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: #333333;
}
.news-single .main-article-content .main-article-content-text p,
.news-single .main-article-content .main-article-content-text .wp-block-paragraph,
.news-single .main-article-content .main-article-content-text h2,
.news-single .main-article-content .main-article-content-text h3,
.news-single .main-article-content .main-article-content-text h4 {
  margin-bottom: 1.5rem;
}
.news-single .main-article-content .main-article-content-text .intro {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #333333;
}
.news-single .see-also-section {
  background: #587D18;
  padding-block: 18.75rem 4.0625rem;
  position: relative;
}
@media (min-width: 992px) {
  .news-single .see-also-section {
    padding-block: 15.625rem 2.5rem;
  }
}
.news-single .see-also-section .heading-default {
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .news-single .see-also-section .heading-default {
    margin-bottom: 4.5rem;
  }
}
.news-single .see-also-section .articles-list {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .news-single .see-also-section .articles-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2.8125rem;
    row-gap: 5rem;
  }
}
.news-single .see-also-section .articles-list hr {
  width: 100%;
  border-color: #b6b6b6;
}
.news-single .see-also-section .articles-list .article .article-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  flex-direction: column;
  color: #ffffff;
}
.news-single .see-also-section .articles-list .article .article-content .date {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.625rem;
  background: #AFCA0B;
}
.news-single .see-also-section .articles-list .article .article-content .title {
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .news-single .see-also-section .articles-list .article .article-content .title {
    margin-bottom: 1rem;
  }
}
.news-single .see-also-section .articles-list .article .article-content .image {
  margin: 0 auto;
}
.news-single .see-also-section .feature-highlights {
  position: absolute;
  width: 100%;
  z-index: 10;
  top: -3.125rem;
}
@media (min-width: 992px) {
  .news-single .see-also-section .feature-highlights {
    top: -12.5rem;
  }
}
.news-single .see-also-section .feature-highlights .feature-highlight {
  padding-block: 3.25rem 3rem;
}
@media (min-width: 992px) {
  .news-single .see-also-section .feature-highlights .feature-highlight {
    padding-block: 5.8125rem 7rem;
  }
}
.news-single .see-also-section .feature-highlights .feature-highlight .heading-default {
  margin: 0;
}

.media .hero-section {
  background-color: #E15C11;
  background-image: url("../images/zigzag-orange-mobile.svg");
  background-repeat: no-repeat;
  background-position: calc(50% + 4.6875rem) top;
  padding-block: 7.1875rem 4.6875rem;
}
@media (min-width: 992px) {
  .media .hero-section {
    background-image: url("../images/zigzag-orange-desktop.svg");
    background-position: calc(50% + 15.1875rem) -3.625rem;
    padding-block: 11.875rem 5.3125rem;
  }
}
.media .notes-section {
  padding-block: 2.5rem 2rem;
  position: relative;
  background-color: #f7f4f2;
  isolation: isolate;
}
@media (min-width: 992px) {
  .media .notes-section {
    padding-block: 3.75rem 6.25rem;
  }
}
@media (min-width: 1400px) {
  .media .notes-section {
    padding-block: 3.75rem 2rem;
  }
}
.media .notes-section .areas-notes-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .media .notes-section .areas-notes-scroll {
    height: 21.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .media .notes-section .areas-notes-scroll.notes-layout-2x2 {
    height: 46.5rem;
  }
  .media .notes-section .areas-notes-scroll.notes-layout-2x2 .note:nth-child(1) {
    top: 0rem;
    left: calc(50% - 21.875rem);
  }
  .media .notes-section .areas-notes-scroll.notes-layout-2x2 .note:nth-child(2) {
    top: 0rem;
    left: calc(50% + 1.5rem);
  }
  .media .notes-section .areas-notes-scroll.notes-layout-2x2 .note:nth-child(3) {
    top: 25rem;
    left: calc(50% - 21.875rem);
  }
  .media .notes-section .areas-notes-scroll.notes-layout-2x2 .note:nth-child(4) {
    top: 25rem;
    left: calc(50% + 1.5rem);
  }
}
.media .notes-section .notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .media .notes-section .notes {
    display: block;
    position: relative;
    height: 100%;
    z-index: 10;
  }
}
.media .notes-section .note {
  --note-reveal-progress: 1;
  opacity: 1;
}
@media (min-width: 992px) {
  .media .notes-section .note {
    position: absolute;
    left: 50%;
    transform: rotate(var(--note-rotation, 0deg));
    translate: none;
    transition: none;
  }
}
@media (min-width: 992px) {
  .media .notes-section .note:nth-child(1) {
    top: 0rem;
    left: calc(50% - 42.5rem);
  }
}
.media .notes-section .note:nth-child(2) h3 {
  margin-bottom: 0.375rem;
}
.media .notes-section .note:nth-child(2) p {
  margin-bottom: 0.625rem;
}
@media (min-width: 992px) {
  .media .notes-section .note:nth-child(2) {
    top: 0rem;
    left: calc(50% - 20.8125rem);
  }
}
@media (min-width: 992px) {
  .media .notes-section .note:nth-child(3) {
    top: 0rem;
    left: calc(50% + 0.875rem);
  }
}
@media (min-width: 992px) {
  .media .notes-section .note:nth-child(4) {
    top: 0rem;
    left: calc(50% + 22.5625rem);
  }
}
@media (min-width: 1400px) {
  .media .notes-section .note:nth-child(1), .media .notes-section .note:nth-child(2), .media .notes-section .note:nth-child(3), .media .notes-section .note:nth-child(4) {
    top: 0rem;
  }
}
.media .contact {
  padding-top: 4.0625rem;
  margin-bottom: -1.25rem;
}
@media (min-width: 992px) {
  .media .contact {
    margin-bottom: -5.625rem;
    padding-top: 0;
  }
}
@media (min-width: 1400px) {
  .media .contact {
    margin-bottom: 1.875rem;
  }
}
.media .contact .feature-highlights .feature-highlight {
  padding-block: 7.875rem 3.3125rem;
  z-index: -1;
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .feature-highlight {
    padding-block: 4.3125rem;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .feature-highlight .highlight-content {
    gap: 3.4375rem;
  }
}
@media (min-width: 1200px) {
  .media .contact .feature-highlights .feature-highlight .highlight-content {
    padding-left: 5.9375rem;
  }
}
.media .contact .feature-highlights .feature-highlight .highlight-content .text-content h2 {
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .feature-highlight .highlight-content .text-content h2 {
    font-size: 3.75rem;
    line-height: 4rem;
  }
}
.media .contact .feature-highlights .feature-highlight .highlight-content .text-content:nth-child(1) {
  max-width: unset;
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .feature-highlight .highlight-content .text-content:nth-child(2) {
    max-width: 28.4375rem;
    width: 28.4375rem;
  }
}
.media .contact .feature-highlights .feature-highlight .bar1 {
  position: absolute;
  top: 0.125rem;
  left: calc(50% - 23.75rem);
  width: 65.5rem;
  height: 4.375rem;
  transform: rotate(-7deg);
  background: #AFCA0B;
}
.media .contact .feature-highlights .feature-highlight .bar2 {
  position: absolute;
  top: 8.75rem;
  left: calc(50% - 66.9375rem);
  width: 100vw;
  height: 24.125rem;
  transform: rotate(-7deg);
  background: #AFCA0B;
}
@media (min-width: 1400px) {
  .media .contact .feature-highlights .feature-highlight {
    top: 7.5rem;
  }
}
.media .contact .feature-highlights .star-wrap {
  position: absolute;
  z-index: 10;
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .star-wrap {
    top: 11.875rem;
    left: calc(50% - 38.75rem);
  }
}
.media .contact .feature-highlights .ear-wrap {
  position: absolute;
  top: 0.625rem;
  left: calc(50% + 6.25rem);
  z-index: 10;
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .ear-wrap {
    top: -2.3125rem;
    left: calc(50% + 25rem);
  }
}
@media (min-width: 1200px) {
  .media .contact .feature-highlights .ear-wrap {
    left: calc(50% + 28.125rem);
  }
}
.media .contact .feature-highlights .ear-wrap img {
  width: 2.9375rem;
}
@media (min-width: 992px) {
  .media .contact .feature-highlights .ear-wrap img {
    width: unset;
  }
}

.contact .hero-section {
  background-color: #587D18;
  background-image: url("../images/zigzag-green-mobile.svg");
  background-repeat: no-repeat;
  background-position: calc(50% + 5.4375rem) top;
  padding-block: 7.875rem 0;
}
@media (min-width: 992px) {
  .contact .hero-section {
    background-image: url("../images/zigzag-green-desktop.svg");
    background-position: calc(50% + 30.625rem) -3.625rem;
    padding-block: 10.75rem 0;
  }
}
@media (max-width: 991px) {
  .contact .hero-section .hero-heading {
    margin-bottom: 8.4375rem;
  }
}
.contact .contact-content {
  color: #ffffff;
  margin-top: 3.75rem;
  position: relative;
}
@media (max-width: 991px) {
  .contact .contact-content {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 991px) {
  .contact .contact-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #587D18;
    z-index: -1;
  }
}
.contact .contact-content .contact-columns h2 {
  font-family: "Bravely Script", sans-serif;
}
.contact .contact-content .contact-columns .col {
  display: flex;
  flex-direction: column;
}
.contact .contact-content .contact-columns .contact-info {
  gap: 2rem;
}
.contact .contact-content .contact-columns .contact-info .info-item-group .info-heading {
  font-family: Galano Grotesque, sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.contact .contact-content .contact-columns .contact-info .info-item-group .info-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.375rem;
}
.contact .contact-content .contact-columns .contact-info .info-item-group .info-item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.contact .contact-content .contact-columns .contact-info .info-item-group .info-item .icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #AFCA0B;
}
.contact .contact-content .contact-columns .contact-form {
  gap: 1rem;
}
.contact .contact-content .contact-columns .contact-form .form-button {
  padding: 0.9375rem 1.25rem;
}
.contact .contact-content .contact-columns .contact-form textarea {
  min-height: 7.5rem;
}
@media (min-width: 992px) {
  .contact .contact-content .contact-columns .contact-form textarea {
    min-height: 10rem;
  }
}

.subpage.error-404 .hero-section .hero-heading,
.subpage.error-404 .hero-section .hero-heading h1 {
  color: #AFCA0B;
}
.subpage.error-404 .hero-details {
  margin-top: 2rem;
  text-align: center;
}
.subpage.error-404 .hero-details .description {
  max-width: 35rem;
  margin: 0 auto;
}
.subpage.error-404 .hero-details .hero-details-content {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

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