@import url(https://fonts.googleapis.com/css?family=Arvo:400,700|Source+Sans+Pro:400,600,900&display=swap);@charset "UTF-8";

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: -webkit-gradient(linear, right top, left bottom, from(#fff7f5), to(#ffebe6));
  background-image: linear-gradient(to left bottom, #fff7f5, #ffebe6);
  background-size: cover;
  overflow-x: hidden;
}

body.hidden {
  overflow: hidden;
}

.blue-overlay {
  height: 100vh;
  width: 100%;
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, right top, left bottom, from(#44c2cf), to(#29939e));
  background-image: linear-gradient(to left bottom, #44c2cf, #29939e);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

body.hidden .blue-overlay {
  opacity: 1;
  visibility: visible;
}

.container {
  position: relative;
  max-width: 114rem;
  margin: 0 auto;
  padding: 10rem 3rem;
  padding-top: 10rem;
}

@media (max-width: 75em) {
  .container {
    padding: 7rem 3rem;
    padding-top: 7rem;
  }
}

@media (max-width: 56.25em) {
  .container {
    padding: 4rem 3rem;
    padding-top: 4rem;
  }
}

.container__heading {
  margin-bottom: 2rem;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arvo", serif;
}

.paragraph,
.legal__paragraph {
  text-align: justify;
}

a {
  color: #8e8d8a;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: inherit;
}

.link,
.cookies__link {
  padding-bottom: 0.3rem;
  border-bottom: solid 0.1rem #bdbdbd;
  -webkit-transition: all 50ms;
  transition: all 50ms;
}

.link:hover,
.cookies__link:hover {
  border-color: #555;
}

.heading-primary {
  display: inline-block;
  text-align: center;
}

.heading-primary--main {
  font-size: 4.6rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

@media (max-width: 56.25em) {
  .heading-primary--main {
    font-size: 3.8rem;
  }
}

@media (max-width: 37.5em) {
  .heading-primary--main {
    font-size: 3.4rem;
  }
}

.heading-primary--sub {
  font-size: 3.2rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

@media (max-width: 56.25em) {
  .heading-primary--sub {
    font-size: 2.7rem;
  }
}

@media (max-width: 37.5em) {
  .heading-primary--sub {
    font-size: 2.4rem;
  }
}

[contenteditable=true].single-line {
  white-space: nowrap;
  overflow: hidden;
}

[contenteditable=true].single-line br {
  display: none;
}

[contenteditable=true].single-line * {
  display: inline;
  white-space: nowrap;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small,
.legal__paragraph--answer,
.legal__heading,
.paragraph,
.legal__paragraph {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium,
.legal__paragraph {
  margin-bottom: 4rem !important;
}

@media (max-width: 56.25em) {
  .u-margin-bottom-medium,
  .legal__paragraph {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

@media (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 4rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.fw-600 {
  font-weight: 600;
}

.overflow-hidden {
  overflow: hidden;
}

.last-element {
  margin-bottom: 6rem;
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active,
.btn:focus {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  outline: none;
}

.btn--important {
  background-color: #9e2929;
  color: #fff;
}

.btn--white {
  background-color: #fff;
  color: #333;
}

.btn--white::after {
  background-color: #fff;
}

.btn--green {
  background-color: #44c2cf;
  color: #fff;
}

.btn--green::after {
  background-color: #44c2cf;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn--animated {
  -webkit-animation: moveInBottom 0.5s ease-out 0.75s;
          animation: moveInBottom 0.5s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.btn-text,
.btn-text:link,
.btn-text:visited {
  font-size: 1.6rem;
  color: #44c2cf;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #44c2cf;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-text:hover {
  background-color: #44c2cf;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(0);
          transform: translate(0);
  outline: none;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 2rem));
          transform: translateX(calc(-50% - 2rem));
  width: 114rem;
  max-width: calc(100% - 4rem);
  height: 10rem;
  margin: 2rem;
  border-radius: 0.5rem;
  background-color: #112e42;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  z-index: 8000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cookies--hide {
  -webkit-transform: translate(calc(-50% - 2rem), 5%);
          transform: translate(calc(-50% - 2rem), 5%);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 37.5em) {
  .cookies {
    height: 13rem;
  }
}

.cookies__container {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding: 0 3rem;
}

.cookies__text {
  position: absolute;
  top: 50%;
  left: 3rem;
  -webkit-transform: translateY(calc(-50% + .2rem));
          transform: translateY(calc(-50% + .2rem));
  display: inline-block;
  margin-right: 18rem;
}

.cookies__link {
  display: inline-block;
  color: #bdbdbd;
  border-color: #bdbdbd;
  cursor: pointer;
}

.cookies__link:hover {
  color: #fff;
  border-color: #fff;
}

.cookies__btn-box {
  float: right;
}

.cookies__btn {
  display: inline-block;
  border: 0.2rem solid transparent;
  cursor: pointer;
}

.cookies__btn--accept {
  background-color: #299e33;
  border-color: #299e33;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.2rem;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.cookies__btn--accept:hover {
  background-color: transparent;
}

.cookie-info {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  width: 100%;
  min-height: 100vh;
  background-color: rgba(17, 46, 66, 0.9);
  z-index: 8050;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.cookie-info--active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-info__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60rem;
  max-width: calc(100% - 4rem);
  padding: 2rem;
  padding-top: 3rem;
  background-color: #fff7f5;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.cookie-info__close {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  color: #112e42 !important;
  cursor: pointer;
}

.cookie-info__close::before {
  content: "\2573";
  display: inline-block;
  font-size: 75%;
  font-weight: bolder;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.cookie-info__close:hover::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.important-note {
  margin-bottom: 10rem;
  padding: 3rem 4rem;
  border: 0.2rem solid #cf4444;
  border-radius: 0.3rem;
}

.important-note p {
  margin-bottom: 1rem;
}

.gallery__thumbnail-box {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.3rem;
  box-shadow: 0 0.5rem 1rem rgba(17, 46, 66, 0.3);
  overflow: hidden;
  position: relative;
  margin-bottom: 4rem;
}

@media (max-width: 56.25em) {
  .gallery__thumbnail-box {
    margin-bottom: 2rem;
  }
}

.gallery__thumbnail-box::before {
  content: "";
  display: block;
  padding-top: 65%;
}

.gallery__thumbnail-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__thumbnail-img[data-img-size=bigger] {
  width: 100%;
}

.gallery__thumbnail-img[data-img-size=smaller] {
  height: 100%;
}

.gallery__thumbnail-img.show {
  opacity: 1;
}

.gallery__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 46, 66, 0.8);
  z-index: 5000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.gallery__popup.show {
  opacity: 1;
  visibility: visible;
}

.gallery__popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.3rem;
  box-shadow: 0 0.5rem 1rem rgba(17, 46, 66, 0.3);
  overflow: hidden;
  width: 65%;
  max-width: 115rem;
  cursor: default;
}

.gallery__popup-box::before {
  content: "";
  display: block;
  padding-top: 65%;
}

@media (max-width: 75em) {
  .gallery__popup-box {
    width: 70%;
  }
}

@media (max-width: 56.25em) {
  .gallery__popup-box {
    width: 80%;
  }
}

@media (max-width: 37.5em) {
  .gallery__popup-box {
    width: calc(100% - 6rem);
  }
}

.gallery__popup-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__popup-img[data-img-size=bigger] {
  width: 100%;
}

.gallery__popup-img[data-img-size=smaller] {
  height: 100%;
}

.gallery__popup-img.show {
  opacity: 1;
  -webkit-transition: all 0s;
  transition: all 0s;
}

.gallery__popup-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(17, 46, 66, 0.7);
  border-radius: 0.3rem;
  color: #fff;
  cursor: pointer;
  z-index: 5500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__popup-close::before {
  content: "\2573";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  font-size: 75%;
  font-weight: bolder;
}

.gallery__popup-close:hover {
  background-color: #112e42;
  color: #fff;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  background-color: #112e42;
  color: #fff7f5;
}

@media (max-width: 75em) {
  .footer {
    display: none;
  }
}

.footer__link {
  display: inline-block;
}

.footer__link-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 0.2rem 0;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  color: inherit;
}

.footer__link-btn:not(:last-child) {
  margin-right: 1.5rem;
}

.footer__link-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background-color: #29939e;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  z-index: -1;
}

.footer__link-btn:hover::after,
.footer__link-btn--active::after {
  height: 100%;
}

.language {
  position: absolute;
  right: 3rem;
  display: inline-block;
}

@media (max-width: 75em) {
  .language {
    display: none;
  }
}

.language__btn {
  display: inline-block;
  height: 3rem;
  border-radius: 0.3rem;
  overflow: hidden;
}

.language__btn:not(:last-child) {
  margin-right: 2rem;
}

.language__img {
  opacity: 0.5;
  height: 100%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.language__btn:hover .language__img,
.language__img--active {
  opacity: 0.8;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}

.row:not(:last-child) {
  margin-bottom: 4rem;
}

@media (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 2rem;
  }
}

@media (max-width: 75em) {
  .row {
    padding: 0 4rem;
  }
}

@media (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.row [class^=col-] {
  float: left;
}

.row [class^=col-]:not(:last-child) {
  margin-right: 4rem;
}

@media (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}

.row .col-1-of-2 {
  width: calc((100% - 4rem) / 2);
}

.row .col-1-of-3 {
  width: calc((100% - 2* 4rem) / 3);
}

.row .col-1-of-3:nth-child(3n+3) {
  margin-right: 0;
}

.row .col-2-of-3 {
  width: calc(2 * ((100% - 2* 4rem) / 3) + 4rem);
}

.row .col-1-of-4 {
  width: calc((100% - 3 * 4rem) / 4);
}

.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 4rem) / 4) + 4rem);
}

.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 4rem) / 4) + 2 * 4rem);
}

.header {
  position: relative;
  height: 10rem;
  color: #333;
  z-index: 5000;
}

.header--light {
  height: 0;
  color: #fff7f5;
}

.header--light .mobile-nav__icon,
.header--light .mobile-nav__icon::before,
.header--light .mobile-nav__icon::after {
  background-color: #fff7f5;
}

.header__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  padding: 4rem 6rem;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  z-index: 5090;
}

@media (max-width: 75em) {
  .header__content {
    padding: 4rem 3rem;
  }
}

.header__content * {
  z-index: 5100;
}

.header__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff7f5;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  z-index: 5050;
}

.header__content--scroll {
  position: fixed;
  color: #333;
}

.header__content--scroll ~ .mobile-nav .mobile-nav__icon,
.header__content--scroll ~ .mobile-nav .mobile-nav__icon::before,
.header__content--scroll ~ .mobile-nav .mobile-nav__icon::after {
  background-color: #112e42;
}

.header__content--scroll::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.header__heading a {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  font-family: "Arvo", cursive;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 75em) {
  .header__heading a {
    left: 3rem;
  }
}

.header__navigation {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

@media (max-width: 75em) {
  .header__navigation {
    opacity: 0;
    visibility: hidden;
  }
}

.header__navigation-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 600;
  color: inherit;
}

.header__navigation-link:not(:last-child) {
  margin-right: 2.5rem;
}

.header__navigation-link::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 50%;
  width: 0;
  margin: auto;
  height: 0.2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #44c2cf;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header__navigation-link:hover::after,
.header__navigation-link--active::after {
  width: 100%;
}

.mobile-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 10rem;
  width: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  z-index: 8400;
}

@media (max-width: 75em) {
  .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
}

.mobile-nav__btn {
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 5rem;
  width: 5.5rem;
  cursor: pointer;
  z-index: 8500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mobile-nav__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mobile-nav__icon,
.mobile-nav__icon::before,
.mobile-nav__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #112e42;
  display: inline-block;
}

.mobile-nav__icon::before,
.mobile-nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-nav__icon::before {
  top: -0.8rem;
}

.mobile-nav__icon::after {
  top: 0.8rem;
}

.mobile-nav__btn:hover .mobile-nav__icon::before {
  top: -1rem;
  left: 0.3rem;
}

.mobile-nav__btn:hover .mobile-nav__icon::after {
  top: 1rem;
  left: -0.3rem;
}

@media (max-width: 75em) {
  .mobile-nav__btn:hover .mobile-nav__icon::before,
  .mobile-nav__btn:hover .mobile-nav__icon::after {
    left: 0;
  }
}

.mobile-nav--active .mobile-nav__icon {
  background-color: transparent !important;
}

.mobile-nav--active .mobile-nav__icon::before,
.mobile-nav--active .mobile-nav__icon::after {
  top: 0;
  background-color: #fff7f5 !important;
}

.mobile-nav--active .mobile-nav__icon::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.mobile-nav--active .mobile-nav__icon::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.mobile-nav--active .mobile-nav__btn:hover .mobile-nav__icon::before {
  top: 0;
  left: 0;
}

.mobile-nav--active .mobile-nav__btn:hover .mobile-nav__icon::after {
  top: 0;
  left: 0;
}

.mobile-nav__content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #112e42;
  z-index: 8200;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-nav--active .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.mobile-nav__list {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  list-style: none;
  max-width: 95%;
  text-align: center;
}

@media screen and (orientation: landscape) {
  .mobile-nav__list {
    width: 80rem;
  }
}

@media screen and (orientation: landscape) and (max-height: 66rem) {
  .mobile-nav__list {
    width: 70rem;
  }
}

@media screen and (orientation: landscape) and (max-width: 37.5em) {
  .mobile-nav__list {
    width: 70rem;
  }
}

@media screen and (orientation: landscape) and (max-width: 37.5em) {
  .mobile-nav__list {
    width: 60rem;
  }
}

.mobile-nav__list * {
  opacity: 0;
  -webkit-transform: translate(10rem, 5rem);
          transform: translate(10rem, 5rem);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.mobile-nav__list--active * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-nav__list--active *.delay-0 {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.mobile-nav__list--active *.delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.mobile-nav__list--active *.delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.mobile-nav__list--active *.delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.mobile-nav__list--active *.delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.mobile-nav__list--active *.delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.mobile-nav__list--active *.delay-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.mobile-nav__list--active *.delay-7 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.mobile-nav__list--active *.delay-8 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.mobile-nav__list--active *.delay-9 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.mobile-nav__list--active *.delay-10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.mobile-nav__item {
  font-size: 2.5rem;
  text-align: center;
}

@media (max-height: 72rem) {
  .mobile-nav__item {
    font-size: 2rem;
  }
}

@media (max-height: 66rem) {
  .mobile-nav__item {
    font-size: 1.8rem;
  }
}

@media screen and (orientation: landscape) {
  .mobile-nav__item {
    display: inline-block;
    white-space: nowrap;
  }
}

.mobile-nav__link {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  padding: 3rem 6rem;
  width: 40rem;
  color: #ffebe6;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.mobile-nav__link--legal {
  font-size: 0.6em;
  padding: 1.5rem 4rem;
}

@media (max-height: 72rem) {
  .mobile-nav__link--legal {
    font-size: 0.8em;
  }
}

@media (max-height: 66rem) {
  .mobile-nav__link--legal {
    padding: 1rem 3rem;
  }
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  background-color: #29939e;
  color: #fff7f5;
}

@media screen and (orientation: landscape) and (max-height: 41.25em) {
  .mobile-nav__link {
    width: 35rem;
  }
}

@media screen and (orientation: landscape) and (max-height: 41.25em) and (max-width: 56.25em) {
  .mobile-nav__link {
    padding: 2rem 3rem;
  }
}

@media screen and (orientation: landscape) and (max-height: 41.25em) and (max-width: 37.5em) {
  .mobile-nav__link {
    width: 35rem;
  }
}

@media screen and (orientation: landscape) and (max-height: 41.25em) and (max-width: 37.5em) {
  .mobile-nav__link {
    width: 30rem;
  }
}

@media (max-width: 37.5em) {
  .mobile-nav__link {
    padding: 1.5rem 3rem;
  }

  .mobile-nav__link--legal {
    padding: 1rem 3rem;
  }
}

.mobile-nav__line {
  display: block;
  height: 0.2rem;
  width: 100%;
  margin: 2rem 0;
  background-color: rgba(41, 147, 158, 0.4);
}

.mobile-nav__lang {
  margin-top: 6rem;
  text-align: center;
}

@media (max-height: 72rem) {
  .mobile-nav__lang {
    margin-top: 4rem;
  }
}

@media (max-height: 66rem) {
  .mobile-nav__lang {
    margin-top: 2rem;
  }
}

.mobile-nav__lang-btn {
  display: inline-block;
  height: 4rem;
}

.mobile-nav__lang-btn:not(:last-child) {
  margin-right: 3rem;
}

@media screen and (orientation: landscape) {
  .mobile-nav__lang-btn:not(:last-child) {
    margin-right: 5rem;
  }
}

@media (max-width: 37.5em) {
  .mobile-nav__lang-btn {
    height: 3rem;
  }
}

.mobile-nav__lang-img {
  opacity: 0.5;
  height: 100%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.mobile-nav__lang-btn:hover .mobile-nav__lang-img,
.mobile-nav__lang-btn .mobile-nav__lang-img--active {
  opacity: 0.8;
}

*::-moz-selection {
  background-color: #44c2cf;
  color: #fff;
}

*::selection {
  background-color: #44c2cf;
  color: #fff;
}

.home {
  position: relative;
  width: 100%;
}

.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.home__bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

.home__bg-image--img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -webkit-user-select: inherit;
     -moz-user-select: inherit;
      -ms-user-select: inherit;
          user-select: inherit;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (orientation: portrait) {
  .home__bg-image--img {
    left: 10%;
  }
}

@media (min-aspect-ratio: 25/13) {
  .home__bg-image--img {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 25/13) {
  .home__bg-image--img {
    height: 100%;
    width: auto;
  }
}

.home__bg-image--img.show {
  opacity: 1;
}

.home__bg-image--img.loaded {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.home__bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, right top, from(rgba(85, 85, 85, 0.85)), to(rgba(41, 147, 158, 0.75)));
  background-image: linear-gradient(to right top, rgba(85, 85, 85, 0.85), rgba(41, 147, 158, 0.75));
}

.home__content-container {
  position: relative;
  height: 100vh;
  min-height: 50rem;
  width: 100%;
  background-size: cover;
  background-position: 65% 50%;
  color: #fff;
  z-index: 200;
}

.home__content-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 105rem;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  text-align: center;
}

@media (max-width: 56.25em) {
  .home__content-box {
    max-width: 77rem;
  }
}

.home__content-box .btn--important {
  margin: 10rem 0;
  font-weight: bolder;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.home__campmeeting-box {
  padding: 2rem 3rem;
  margin-top: 4rem;
  background-color: rgba(68, 194, 207, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.home__campmeeting-text {
  font-size: 2.4rem;
  font-weight: normal;
}

.home__campmeeting-text::-moz-selection {
  background-color: #fff;
  color: #44c2cf;
}

.home__campmeeting-text::selection {
  background-color: #fff;
  color: #44c2cf;
}

@media (max-width: 56.25em) {
  .home__campmeeting-text {
    font-size: 2.2rem;
  }
}

@media (max-width: 37.5em) {
  .home__campmeeting-text {
    font-size: 2rem;
  }
}

.home__text {
  position: relative;
  text-align: justify;
  padding-left: 3rem;
  border-left: solid 0.2rem #44c2cf;
}

.home__text:not(:last-child) {
  margin-bottom: 2rem;
}

.home__text--section-end {
  margin-bottom: 6rem !important;
}

.home__text-source {
  display: block;
  font-weight: bolder;
  margin-top: 0.2rem;
}

.livestream {
  position: relative;
  width: 100%;
  padding: 11rem 3rem;
  padding-top: 15rem;
  background-color: #555;
}

@media (max-width: 75em) {
  .livestream {
    padding: 8rem 3rem;
    padding-top: 17rem;
  }
}

@media (max-width: 37.5em) {
  .livestream {
    padding: 8rem 3rem;
    padding-top: 14rem;
  }
}

.livestream__iframe {
  position: relative;
  width: 70%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  overflow: hidden;
}

@media (min-width: 112.5em) {
  .livestream__iframe {
    width: 60%;
  }
}

@media (max-width: 75em) {
  .livestream__iframe {
    width: 80%;
  }
}

@media (max-width: 56.25em) {
  .livestream__iframe {
    width: 90%;
  }
}

@media (max-width: 37.5em) {
  .livestream__iframe {
    width: 100%;
  }
}

.livestream__iframe::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.livestream__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.livestream__iframe iframe.show {
  opacity: 1;
  visibility: visible;
}

.program__section:not(:last-child) {
  margin-bottom: 7rem;
}

.program__day {
  font-size: 2rem;
}

.program__list {
  display: block;
  list-style: none;
}

.program__item {
  display: block;
  padding: 1rem 0;
  border-bottom: solid 0.2rem rgba(68, 194, 207, 0.5);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.program__item:last-child {
  position: relative;
  border-color: #44c2cf;
}

.program__item:last-child::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background-color: #44c2cf;
}

.program__item:hover {
  background-color: rgba(41, 147, 158, 0.1);
}

.program__time,
.program__speaker,
.program__theme {
  display: inline-block;
  padding: 1.5rem 3rem;
}

.program__time:not(:first-child),
.program__speaker:not(:first-child),
.program__theme:not(:first-child) {
  padding-left: 0;
}

.program__time {
  width: 15%;
}

@media (max-width: 37.5em) {
  .program__time {
    width: 20%;
  }
}

.program__speaker {
  width: 25%;
}

@media (max-width: 56.25em) {
  .program__speaker {
    width: 30%;
  }
}

.program__theme {
  width: 60%;
}

@media (max-width: 56.25em) {
  .program__theme {
    width: 55%;
  }
}

@media (max-width: 37.5em) {
  .program__theme {
    width: 50%;
  }
}

.donate {
  text-align: center;
}

.donate__text {
  display: inline-block;
  font-size: 85%;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: solid 0.2rem #bdbdbd;
}

.legal__paragraph--question {
  margin: 0;
  text-align: left;
}

.registration .page-heading {
  margin-bottom: 3rem;
}

.speaker {
  position: relative;
  width: 100%;
  padding: 5rem;
  background-color: rgba(255, 181, 73, 0.5);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.speaker:not(:last-child) {
  margin-bottom: 6rem;
}

.speaker__box::after {
  content: "";
  display: table;
  clear: both;
}

.speaker__box-content {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.speaker__img {
  display: block;
  height: 25rem;
  width: auto;
  margin-right: 4rem;
  border-radius: 0.3rem;
}

@media (max-width: 56.25em) {
  .speaker__img {
    height: 20rem;
  }
}

@media (max-width: 37.5em) {
  .speaker__img {
    height: 15rem;
    margin-right: 3rem;
    margin-bottom: 1rem;
  }
}

.speaker__title {
  display: block;
}

.speaker__web {
  position: relative;
  display: inline-block;
  padding: 0.5rem 3rem;
  margin: 0.5rem 0;
  text-align: center;
  background-color: #ffb549;
  color: #112e42 !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.speaker__web:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
}

.speaker__web::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.3rem;
  width: 0;
  background-color: rgba(68, 194, 207, 0.6);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.speaker__web:hover::after {
  width: 100%;
}

.speaker__description {
  display: block;
}

.seminar:not(:last-child) {
  padding-bottom: 5rem;
}

.seminar__box {
  padding-bottom: 4rem;
  border-bottom: solid 0.1rem rgba(17, 46, 66, 0.3);
  overflow: hidden;
}

.seminar__title {
  font-size: 2rem;
}

.seminar__description {
  margin-bottom: 2rem;
}

.seminar__list {
  margin-left: 2rem;
  list-style: none;
}

.seminar__public {
  margin-top: 1rem;
  font-weight: bolder;
}

.seminar__youth {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}

.venue::after {
  content: "";
  display: table;
  clear: both;
}

.venue__top {
  margin-bottom: 10rem;
}

.venue__text-container {
  display: inline-block;
  width: calc(45% - 5rem);
}

@media (max-width: 56.25em) {
  .venue__text-container {
    width: 100%;
    margin-bottom: 7rem;
  }
}

.venue__map {
  width: 55%;
  height: 32rem;
  float: right;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0.5rem 1rem rgba(17, 46, 66, 0.3);
  border-radius: 0.3rem;
  overflow: hidden;
}

@media (max-width: 56.25em) {
  .venue__map {
    width: 100%;
    height: 45rem;
    float: initial;
  }
}

@media (max-width: 37.5em) {
  .venue__map {
    height: 37rem;
  }
}

.venue__map-iframe {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.venue__map-iframe.show {
  opacity: 1;
  visibility: visible;
}

.venue__pictures {
  padding: 0;
}

