@keyframes r {
  16.6666666667% {
    transform: translate(-100%);
  }
  16.6766666667% {
    transform: translate(500%);
  }
}
#slider {
  user-select: none;
  --d: 120s;
  --size: 640px;
  display: grid;
  grid-template-columns: repeat(3, var(--size));
  overflow: hidden;
}
#slider div {
  grid-area: 1/1;
  display: grid;
  grid-template-columns: var(--size);
  align-content: center;
  gap: 0;
  background: #fff padding-box;
  border-inline: 10px solid rgba(0, 0, 0, 0);
  animation: r var(--d) linear infinite;
}
#slider div:nth-child(2) {
  animation-delay: calc(-0.1666666667 * var(--d));
}
#slider div:nth-child(3) {
  animation-delay: calc(-0.3333333333 * var(--d));
}
#slider div:nth-child(4) {
  animation-delay: calc(-0.5 * var(--d));
}
#slider div:nth-child(5) {
  animation-delay: calc(-0.6666666667 * var(--d));
}
#slider div:nth-child(6) {
  animation-delay: calc(-0.8333333333 * var(--d));
}
#slider div img {
  width: 100%;
  grid-row: span 2;
}
#slider div * {
  margin: 0;
}
#slider img {
  width: 33.333333%;
  float: left;
}

@media (max-width: 899px) {
  #slider {
    user-select: none;
    --d: 120s;
    --size: 415px;
    display: grid;
    grid-template-columns: repeat(3, var(--size));
    overflow: hidden;
    top: 70px;
    margin-top: 14px;
    width: 100vw;
    position: relative;
  }
}
.nav-btn {
  height: 54px;
  border: 4px solid var(--accent);
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.25s ease-in-out, background-color 0.36s ease-in-out, color 0.3s ease-in-out;
  user-select: none !important;
  width: 100%;
  cursor: pointer;
}

.nav-btn[data-color="var(--accent)"]:hover {
  background: white !important;
  color: var(--accent);
  user-select: none !important;
}

.nav-btn[data-color="var(--contra-accent)"]:hover {
  background: white !important;
  color: var(--contra-accent);
  user-select: none !important;
}

.nav-btn.inactive {
  opacity: 0.1;
  cursor: default;
  pointer-events: none;
  user-select: none !important;
}

.nav-btn.inactive[data-color="var(--accent)"]:hover {
  background: var(--accent) !important;
  color: white;
  user-select: none !important;
}

.nav-btn.open {
  background: white !important;
  color: var(--accent) !important;
  user-select: none !important;
}

.nav-btn.back {
  display: none;
  background: white !important;
  border-color: var(--accent) !important;
  color: var(--accent);
  user-select: none !important;
}

.nav-btn.open.back {
  background: white !important;
  border-color: var(--accent) !important;
  color: var(--accent);
  user-select: none !important;
}

@media (max-width: 899px) {
  .nav-btn {
    transition: all 0.25s ease-in-out;
    width: calc(100% - 40px) !important;
    font-weight: 400;
    user-select: none !important;
    border: none !important;
  }
  .nav-btn.inactive {
    user-select: none !important;
    font-size: 0;
    height: 0;
    border-width: 0;
    margin-bottom: 0 !important;
  }
  .nav-btn.open {
    cursor: default;
    pointer-events: none;
    user-select: none !important;
    border-width: 0;
    border-color: white;
    background: white !important;
    font-size: 19px;
    font-weight: 900;
    height: 20px;
  }
  .nav-btn.open:hover {
    background: white;
  }
  .nav-btn.back {
    display: flex;
    user-select: none !important;
    background: white !important;
    font-size: 19px;
    font-weight: 900;
  }
  .nav-btn.back.open {
    opacity: 1;
    cursor: default;
    pointer-events: all;
    user-select: none !important;
  }
}
#mobile-menu-btn {
  background-color: white;
  position: absolute;
  right: 10px;
  top: 15px;
  height: 40px;
  width: 40px;
  border: none;
  outline: none;
  overflow: hidden;
  z-index: 3000;
  -webkit-box-shadow: inset 0px 0px 6px 2px rgba(255, 255, 255, 0.72);
  -moz-box-shadow: inset 0px 0px 6px 2px rgba(255, 255, 255, 0.72);
  box-shadow: inset 0px 0px 6px 2px rgba(255, 255, 255, 0.72);
  transition: all 0.2s ease-in-out;
}

@media (min-width: 900px) {
  #mobile-menu-btn {
    display: none;
  }
}
.menu-bar {
  height: 2px;
  width: 26px;
  background-color: var(--accent);
  position: absolute;
  left: 7px;
  border-radius: 200px;
}

#menu-bar-1 {
  top: 13px;
  transition: left 0.35s ease-in-out;
}

#menu-bar-2 {
  top: 20px;
  transition: left 0.35s ease-in-out;
}

#menu-bar-3 {
  bottom: 11px;
  transition: left 0.35s ease-in-out;
}

#mobile-menu-btn.open {
  box-shadow: none;
}
#mobile-menu-btn.open .menu-bar {
  left: 40px;
}
#mobile-menu-btn.open #menu-bar-1 {
  transition: left 0.25s ease-in-out;
}
#mobile-menu-btn.open #menu-bar-2 {
  transition: left 0.25s ease-in-out;
}
#mobile-menu-btn.open #menu-bar-3 {
  transition: left 0.25s ease-in-out;
}

.menu-x {
  height: 2px;
  width: 26px;
  background-color: var(--contra-accent);
  position: absolute;
  left: -40px;
  top: 19px;
  border-radius: 200px;
}

#menu-x-1 {
  transform: rotate(-45deg);
  transition: left 0.25s ease-in-out;
}

#menu-x-2 {
  transform: rotate(45deg);
  transition: left 0.25s ease-in-out;
}

.open2 .menu-x {
  left: 7px;
}
.open2 #menu-x-1 {
  transition: left 0.25s ease-in-out;
}
.open2 #menu-x-2 {
  transition: left 0.25s ease-in-out;
}

.logo {
  position: absolute;
  height: var(--logo-size);
  width: var(--logo-size);
  left: calc(50% - var(--logo-size) / 2);
  top: -70px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 50%;
  border: var(--logo-border) solid var(--accent);
  overflow: hidden;
  transition: all 0.15s linear;
  z-index: 1000;
}
.logo img {
  height: calc(var(--logo-size) - 12px);
  width: calc(var(--logo-size) - 12px);
  transition: all 0.15s linear;
  transform: scale(1.02);
}
.logo.hidden {
  top: 60px;
  transform: scale(1.4);
}

@media (max-width: 1200px) {
  .logo {
    margin-top: 22px;
  }
}
@media (max-width: 899px) {
  .logo {
    transition: all 0.15s linear, transform 0.21s ease-in-out;
    margin-top: 5px;
    top: 0;
  }
}
nav.classicNav {
  background: white;
  height: 94px;
  display: block;
  position: relative;
  transition: height 0.3s ease-in-out;
}

nav.classicNav.open {
  height: 240px;
}

.mainNav {
  top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: absolute;
  left: 20px;
  width: calc(50% - var(--logo-size) / 2 - 40px);
  transition: all 0.25s ease-in-out;
}
.mainNav.right {
  right: 20px;
  left: auto;
}

.subNav {
  top: 165px;
  left: 0;
  width: 100%;
  position: absolute;
}

.subNavRow {
  opacity: 0;
  transition: all 0.1s ease-out;
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.subNavRow.close {
  visibility: hidden;
}

.subNavRow.open {
  transition: all 0.3s cubic-bezier(1, -0.03, 0.74, 1.03);
  visibility: visible;
  opacity: 1;
}

#mobile-menu {
  position: fixed;
  top: 70px;
  height: calc(100vh - 70px);
  width: 100vw;
  background: white;
  left: 100vw;
  transition: left 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
}
#mobile-menu.open {
  left: 0;
}
#mobile-menu .main-nav {
  position: absolute;
  top: 160px;
  height: calc(100vh - 270px);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  z-index: 1000;
}
#mobile-menu .main-nav.closed {
  z-index: 0;
}
#mobile-menu .main-nav a, #mobile-menu .main-nav span {
  margin-left: 50%;
  max-width: 300px;
  transform: translateX(-50%);
  margin-bottom: 14px;
}

@media (max-width: 1200px) {
  nav.classicNav {
    --logo-size: 180px;
  }
}
@media (max-width: 899px) {
  nav.classicNav {
    --logo-size: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    box-sizing: border-box;
    z-index: 10000;
  }
  nav.classicNav .mainNav {
    width: calc(100% - 40px);
    float: left;
    position: relative;
    left: 20px;
    flex-direction: column;
  }
  nav.classicNav .mainNav.left {
    margin-top: 100px;
  }
  nav.classicNav .mainNav.right {
    margin-top: 20px;
  }
  nav.classicNav .mainNav .nav-btn {
    transition: all 0.8s ease-in-out, opacity 0s ease-in-out;
    opacity: 0;
    font-size: 0;
    height: 0;
  }
  nav.classicNav.mobile-opened {
    background-color: white;
    height: 100%;
    padding-top: 100px;
    overflow: hidden;
  }
  nav.classicNav.mobile-opened .mainNav {
    visibility: visible;
  }
  nav.classicNav #mobile-menu {
    visibility: hidden;
  }
  nav.classicNav #mobile-menu.open {
    visibility: visible;
  }
  nav.classicNav #mobile-menu .subNav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 300px);
    z-index: 1;
    top: 194px;
  }
  nav.classicNav #mobile-menu .subNav .subNavRow {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.25s ease-in-out;
  }
  nav.classicNav #mobile-menu .subNav .subNavRow.open {
    visibility: visible;
    opacity: 1;
  }
  nav.classicNav #mobile-menu .subNav .subNavRow a {
    width: 300px !important;
  }
}
.spacer {
  background-color: var(--accent);
}

@media (max-width: 899px) {
  .spacer {
    height: 14px !important;
  }
}
.header-spacer {
  transition: height 0.2s ease;
}

.header-spacer {
  position: absolute;
  width: 100%;
  height: 0;
}

@media (max-width: 900px) {
  .header-spacer {
    height: 230px;
  }
}
#webstie-in-progress {
  background-color: var(--extra-accent);
  height: 47px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  box-sizing: border-box;
}
#webstie-in-progress img {
  margin-left: 20px;
  float: left;
}
#webstie-in-progress span {
  margin-left: 20px;
  display: block;
  float: left;
  font-weight: bold;
}

@media (max-width: 899px) {
  #webstie-in-progress {
    position: absolute;
    width: 100%;
    padding-left: 0;
  }
  #slider {
    margin-bottom: 65px;
  }
}
:root {
  --accent: #28589A;
  --contra-accent: #9f405c;
  --extra-accent: #ec9a0a;
  --logo-offest: 100px;
  --logo-size: 220px;
  --logo-border: 6px;
}

html {
  width: 100vw;
  background-color: var(--accent);
  font-family: "Lato", sans-serif;
}

body {
  padding: 0;
  margin: 0;
  width: 100vw;
  position: relative;
  background-color: var(--accent);
  transform-origin: top left;
  overflow-x: hidden;
  overflow-y: scroll;
  transition: background 0.3s ease-in-out;
}

body.no-scroll {
  overflow: hidden;
}

@media (min-width: 1920px) {
  body {
    width: 1920px;
    left: calc(50vw - 960px);
  }
}
@keyframes popup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
main {
  margin-top: 20px;
}

.mobile-br {
  display: none;
}

footer {
  height: 84px;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-size: 24px;
}

.announcement {
  font-size: 24px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

@media (max-width: 899px) {
  footer {
    text-align: center;
    font-weight: 600;
    height: 70px;
    font-size: 18px;
    flex-direction: column;
  }
  main {
    margin-top: 70px;
  }
  .mobile-br {
    display: block;
  }
}
.download-button {
  background: var(--accent);
  border-color: var(--accent);
  height: 54px;
  border: 4px solid var(--accent);
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.25s ease-in-out, background-color 0.36s ease-in-out, color 0.3s ease-in-out;
  user-select: none !important;
  width: 300px;
  align-self: flex-start;
  margin-top: 20px;
}
.download-button:hover {
  color: var(--accent);
  background-color: white;
}

.download-button.disabled {
  pointer-events: none;
  cursor: default;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: black;
}
.download-button.disabled:hover {
  color: black;
  background-color: #f2f2f2;
}

@media (max-width: 899px) {
  .download-button {
    margin-bottom: 14px;
    align-self: center;
    width: 100%;
    max-width: 300px;
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .download-button {
    font-size: 18px;
  }
}
@media (max-width: 399px) {
  .download-button {
    font-size: 16px;
  }
}
.double-section {
  --section-heigth: 536px;
  height: var(--section-heigth);
  background-color: white;
  --size-change: 0px;
  overflow: hidden;
}
.double-section h1.mobile {
  display: none;
  text-align: center;
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}
.double-section .double-section-img {
  height: var(--section-heigth);
  margin-top: 0;
  width: calc(var(--section-heigth) - var(--size-change));
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.double-section .double-section-img.left {
  float: left;
}
.double-section .double-section-img.right {
  float: right;
}
.double-section .double-section-img img {
  transition: all 0.3s ease-in-out;
}
.double-section .double-section-img img.desktop {
  height: var(--section-heigth);
  width: var(--section-heigth);
  margin-left: calc(var(--size-change) / 2 * -1);
  transform-origin: center;
  transition: margin-left 0.3s ease-in-out;
}
.double-section .double-section-img img.mobile {
  width: 900px;
  margin-top: -60px;
  margin-left: calc(50% - 450px);
  transform-origin: center;
  display: none;
}
.double-section .double-section-img:hover img {
  animation: popup 0.6s;
}
.double-section .double-section-content {
  --padding: 100px;
  height: var(--section-heigth);
  width: calc(100% - var(--section-heigth) + var(--size-change));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-left: var(--padding);
  padding-right: var(--padding);
  color: black;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.double-section .double-section-content h1 {
  width: 100%;
  font-size: 28px;
  transition: font-size 0.3s ease-in-out;
  text-transform: uppercase;
}

@media (max-width: 1600px) {
  .double-section {
    --size-change: 100px;
  }
}
@media (max-width: 1500px) {
  .double-section .double-section-content {
    --padding: 60px;
  }
}
@media (max-width: 1350px) {
  .double-section {
    --size-change: 200px;
  }
  .double-section .double-section-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 1100px) {
  .double-section {
    --size-change: 260px;
  }
  .double-section .double-section-content {
    --padding: 40px;
  }
}
@media (max-width: 899px) {
  .double-section {
    height: auto;
  }
  .double-section h1.mobile {
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-left: 7px;
    margin-right: 7px;
  }
  .double-section .double-section-img {
    width: 100%;
    height: 140px;
  }
  .double-section .double-section-img img.desktop {
    display: none;
  }
  .double-section .double-section-img img.mobile {
    display: block;
  }
  .double-section .double-section-content {
    min-height: 140px;
    height: auto;
    --padding: 10px;
    justify-content: flex-start;
    width: 100%;
  }
  .double-section .double-section-content h1 {
    display: none;
  }
}
@media (max-width: 599px) {
  .double-section h1.mobile {
    font-size: 19px;
  }
}
@media (max-width: 399px) {
  .double-section h1.mobile {
    font-size: 16px;
  }
}
#helpers {
  height: 100px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 20px;
}
#helpers .sponsor-logo {
  background: #f2f2f2;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 2px;
}
#helpers .sponsor-logo img {
  height: 50px;
}

@media (max-width: 899px) {
  #helpers {
    height: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .sponsor-logo {
    height: 60px;
  }
  .sponsor-logo img {
    height: 25px !important;
  }
}
#Christmas {
  width: 100%;
  height: 400px;
  background: vaR(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  box-sizing: border-box;
  position: relative;
  transition: all 0.25s ease-in-out;
}
#Christmas img {
  height: 320px;
  box-sizing: border-box;
  border: 20px solid white;
}
#Christmas .wishes {
  width: 100%;
  max-width: 700px;
  font-size: 22px;
  color: black;
  background: white;
  padding: 40px;
  box-sizing: border-box;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
#Christmas .wishes div {
  font-weight: 700;
  color: var(--accent);
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  font-style: normal;
}
#Christmas .wishes span {
  margin-top: 20px;
  display: block;
  font-style: normal;
  width: 100%;
  text-align: right;
}

@media (max-width: 899px) {
  #Christmas {
    gap: 14px;
    padding-top: 0 !important;
  }
  #Christmas img {
    height: 400px;
    box-sizing: border-box;
    border: 20px solid white;
    border-top-width: 80px;
    border-bottom-width: 80px;
  }
  #Christmas .wishes {
    font-size: 20px;
    height: 400px;
  }
  #Christmas .wishes div {
    margin-top: 14px;
  }
  #Christmas .wishes span {
    margin-top: 14px;
    font-weight: 700;
  }
}
@media (max-width: 730px) {
  #Christmas .wishes {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  #Christmas {
    height: 500px;
  }
  #Christmas img {
    height: 500px;
    border-top-width: 130px;
    border-bottom-width: 130px;
    background: white;
    box-sizing: border-box;
  }
  #Christmas .wishes {
    height: 500px;
  }
}
@media (max-width: 580px) {
  #Christmas {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    background: white;
  }
  #Christmas img {
    border-width: 14px !important;
    height: 240px;
  }
  #Christmas .wishes {
    padding: 0;
    padding-left: 14px;
    padding-right: 14px;
    height: auto;
    width: 100%;
  }
  #Christmas .wishes div {
    text-align: center;
    margin-top: 0;
  }
  #Christmas .wishes span {
    margin-bottom: 28px;
    margin-top: 28px;
    text-align: center;
  }
}
#home-destination-list {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
#home-destination-list li {
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}

#home-thx {
  font-size: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease-in-out;
}
#home-thx div {
  margin-top: 10px;
}
#home-thx div span {
  color: var(--accent);
}

#home-thx-signature {
  font-size: 24px;
  text-align: right;
  width: 100%;
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  font-weight: 600;
}

#our-mission {
  font-size: 24px;
  color: black;
  align-self: flex-start;
}

@media (max-width: 899px) {
  .double-section.home:nth-child(1) img.mobile {
    margin-top: -90px;
  }
  .double-section.home:nth-child(3) img.mobile {
    margin-top: -72px;
  }
  .double-section.home:nth-child(5) img.mobile {
    margin-top: -56px;
  }
  #home-destination-list {
    font-size: 20px;
  }
  #home-destination-list li {
    margin-top: 6px;
  }
  #home-thx {
    font-size: 20px;
    justify-content: center;
    height: auto;
    margin-top: 10px;
  }
  #home-thx-signature {
    font-size: 20px;
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
  }
  #our-mission {
    font-size: 20px;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #helpers {
    margin: 0;
    height: 140px;
    display: flex;
    justify-content: center;
  }
  #helpers .sponsor-logo {
    height: 70px;
  }
}
@media (max-width: 599px) {
  #home-destination-list {
    font-size: 18px;
  }
  #home-destination-list li {
    margin-top: 6px;
  }
  #home-thx {
    font-size: 18px;
  }
  #home-thx-signature {
    font-size: 18px;
  }
  #our-mission {
    font-size: 18px;
  }
}
@media (max-width: 399px) {
  #home-destination-list {
    font-size: 16px;
  }
  #home-thx {
    font-size: 16px;
  }
  #home-thx-signature {
    font-size: 16px;
  }
  #our-mission {
    font-size: 16px;
  }
}
.double-section.home {
  --section-heigth: 480px;
}

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