/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1 {
  font-size: 5rem;
  line-height: 6rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 600;
}
@media (min-width: 768px) {
  h1 {
    font-size: 7rem;
    line-height: 8rem;
    letter-spacing: 2.6px;
  }
}

h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 500;
  color: white;
}
@media (min-width: 576px) {
  h2 {
    font-size: 5rem;
    line-height: 5.8rem;
  }
}
h2 b, h2 strong {
  font-weight: 900;
}

h3 {
  font-size: 2.2rem;
  line-height: 3.1rem;
  margin-bottom: 1.3rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  h3 {
    margin-top: 2.2rem;
  }
}

h4 {
  font-size: 1.8rem;
  line-height: 2.7rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

strong {
  font-weight: 500;
}

.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 96%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1350px) {
  .container {
    max-width: 1250px;
  }
}

.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 95%;
  margin: 0 auto;
  max-width: 150rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 -1rem;
}

.col {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-4 {
  -webkit-box-flex: 0;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.col-5 {
  -webkit-box-flex: 0;
  flex: 0 0 41.66%;
  max-width: 41.66%;
}

.col-6 {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  flex: 0 0 58.33%;
  max-width: 58.33%;
}

.col-8 {
  -webkit-box-flex: 0;
  flex: 0 0 66.66%;
  max-width: 66.66%;
}

.col-12 {
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 500px) {
  .col-xsm-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 500px) {
  .col-xsm-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 500px) {
  .col-xsm-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
}

@media (min-width: 500px) {
  .col-xsm-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 500px) {
  .col-xsm-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
}

@media (min-width: 500px) {
  .col-xsm-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}

@media (min-width: 500px) {
  .col-xsm-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 500px) {
  .col-xsm-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 576px) {
  .col-sm-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 576px) {
  .col-sm-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 576px) {
  .col-sm-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 576px) {
  .col-sm-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
}

@media (min-width: 576px) {
  .col-sm-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}

@media (min-width: 576px) {
  .col-sm-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 576px) {
  .col-sm-12 {
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-2 {
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 768px) {
  .col-md-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
}

@media (min-width: 768px) {
  .col-md-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}

@media (min-width: 768px) {
  .col-md-9 {
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    -webkit-box-flex: 0;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    -webkit-box-flex: 0;
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    -webkit-box-flex: 0;
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}

@media (min-width: 992px) {
  .col-lg-10 {
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media all and (min-width: 1400px) {
  .col-xl-6 {
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1350px) {
  .col-xl-8 {
    -webkit-box-flex: 0;
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}

div[class^=col-] {
  padding: 0 1rem;
}

.single-post .flex-content .container .row .text-block__content {
  max-width: 100%;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: white;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-display: block;
}
@media (min-width: 768px) {
  body {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}

p {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
@media (min-width: 768px) {
  p {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}

a {
  color: #d74e65;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.block {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .block {
    padding: 8rem 0;
  }
}
.block--no-padding-top {
  padding-top: 0;
}
.block--no-padding {
  padding: 0;
}
.block.hero {
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) {
  .block.hero {
    padding: 9rem 0 6.5rem;
    height: 100vh;
  }
}

.c-block.no-padding-bottom {
  padding-bottom: 0;
}

ul li::marker {
  color: #d74e65;
}

.animate {
  visibility: hidden;
}

.error404 .header-banner {
  padding-top: 9rem;
  padding-bottom: 1rem;
  color: white;
}
.error404 h1 {
  width: 100%;
  text-align: center;
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .page-template-default:not(.home) .site-header, .error404 .site-header {
    background-color: rgba(86, 61, 97, 0.92);
    padding: 1.5rem 0;
    transition: 0.8s all ease;
    z-index: 99;
  }
}
.page-template-default:not(.home) .nav__toggle span, .error404 .nav__toggle span {
  background-color: white;
}
.page-template-default:not(.home) .site-footer, .error404 .site-footer {
  margin-top: 4rem;
}

p {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  p {
    margin-bottom: 1.8rem;
  }
}

.not-found {
  min-height: 30rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}
.not-found p {
  width: 100%;
  text-align: center;
}
.not-found .button {
  margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .container {
    width: 96%;
  }
}
.site-header {
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 3rem 0;
  transition: 0.5s all ease;
  position: absolute;
  left: 0;
}
@media (min-width: 768px) {
  .site-header {
    transition: 0.2s all ease;
  }
}
@media (min-width: 992px) {
  .site-header {
    position: fixed;
    top: 0;
  }
}
.site-header__content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.site-header__left, .site-header__right {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.site-header__logo {
  justify-content: flex-start;
  display: flex;
  align-items: center;
}
.site-header__logo a {
  display: block;
}
.site-header__logo a img {
  width: 100%;
  display: block;
  transition: 0.2s;
  max-height: 9rem;
  max-width: 16rem;
}
@media (min-width: 576px) {
  .site-header__logo a img {
    max-width: 14.5rem;
  }
}
@media (min-width: 768px) {
  .site-header__logo a img {
    max-width: 14rem;
  }
}
@media (min-width: 992px) {
  .site-header__logo a img {
    max-width: 19rem;
  }
}
@media (min-width: 1400px) {
  .site-header__logo a img {
    max-width: 23rem;
  }
}
@media (min-width: 1500px) {
  .site-header__logo a img {
    max-width: 24rem;
  }
}
.site-header__left {
  justify-content: flex-start;
  flex: 1;
}
@media (min-width: 768px) {
  .site-header__left {
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .site-header__left {
    justify-content: flex-start;
  }
}
.site-header__left .desktop-nav {
  display: none;
}
@media (min-width: 1350px) {
  .site-header__left .desktop-nav {
    display: flex;
    list-style-type: none;
    align-items: center;
    align-content: center;
    font-size: 1.5rem;
    padding-left: 4.5rem;
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .site-header__left .desktop-nav {
    padding-left: 3.5rem;
  }
}
@media (min-width: 1500px) {
  .site-header__left .desktop-nav {
    padding-left: 4.8rem;
  }
}
.site-header__left .desktop-nav li {
  margin-right: 3rem;
}
@media (min-width: 768px) {
  .site-header__left .desktop-nav li {
    margin-right: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .site-header__left .desktop-nav li {
    margin-right: 2.8rem;
  }
}
@media (min-width: 1500px) {
  .site-header__left .desktop-nav li {
    margin-right: 3.2rem;
  }
}
.site-header__left .desktop-nav li a {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .site-header__left .desktop-nav li a {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  .site-header__left .desktop-nav li a {
    font-size: 1.8rem;
  }
}
.site-header__left .desktop-nav li a:after {
  width: 0;
  height: 2px;
  content: "";
  background-color: white;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  transition: 0.2s;
  margin: 0 auto;
}
.site-header__left .desktop-nav li a:hover:after {
  width: 100%;
  transition: 0.2s;
}
.site-header__right {
  justify-content: flex-end;
}
@media (min-width: 576px) {
  .site-header__right {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .site-header__right {
    justify-content: flex-end;
  }
}
.site-header__right .nav__toggle {
  width: 3rem;
  height: 3rem;
}
@media (min-width: 576px) {
  .site-header__right .nav__toggle {
    margin-top: 0.7rem;
    margin-left: 3rem;
  }
}
@media (min-width: 1350px) {
  .site-header__right .nav__toggle {
    display: none;
  }
}
.site-header__right .nav__toggle:hover {
  cursor: pointer;
}
.site-header__right .nav__toggle span {
  width: 100%;
  height: 3px;
  display: block;
  background-color: #d74e65;
  margin: 5px 0;
  transition: 0.5s;
  position: relative;
  border-radius: 10px;
}
.site-header__right .button {
  display: none;
}
@media (min-width: 576px) {
  .site-header__right .button {
    display: block;
    margin-left: 1.5rem;
  }
}
.site-header.scrolled {
  background-color: rgba(86, 61, 97, 0.92);
  padding: 1.5rem 0;
  transition: 0.5s all ease;
  z-index: 99;
  position: fixed;
}
.site-header.scrolled .site-header__left .desktop-nav li a {
  font-size: 1.6rem;
}
@media (min-width: 576px) {
  .site-header.scrolled .site-header__right .button {
    display: none !important;
  }
}
@media (min-width: 1350px) {
  .site-header.scrolled .site-header__right .button {
    display: block !important;
  }
}
.site-header.scrolled .site-header__logo img {
  max-width: 14rem;
  width: 100%;
  display: block;
  transition: 0.2s;
  max-height: 7rem;
}

.site-nav {
  position: fixed;
  top: 0;
  height: 100%;
  background-color: white;
  width: 28rem;
  padding: 5rem 3rem;
  border-right: 1px solid #eee;
  left: -28rem;
  visibility: hidden;
  transition: 0.5s;
  z-index: 99;
}
.site-nav__close {
  position: absolute;
  right: 1.5rem;
  height: 3rem;
  width: 3rem;
  top: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='12' viewBox='0 0 384 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23030303' d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 2rem;
  background-repeat: no-repeat;
}
.site-nav__title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.site-nav ul {
  padding: 0;
  margin: 4rem 0 0 0;
}
.site-nav ul li {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}
.site-nav ul li a {
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.2s;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.site-nav ul li a:hover {
  transition: 0.2s;
  border-bottom: 1px solid #d74e65;
}
.site-nav .site-footer__social {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}
.site-nav .site-footer__social a {
  margin: 0 0.4rem;
}

.nav-open .site-nav {
  left: 0;
  visibility: visible;
  transition: 0.5s;
}

.home .nav__toggle span {
  background-color: white;
}

body {
  transition: 0.5s;
  margin-left: 0;
  margin-right: 0;
}
body.nav-open {
  position: relative;
  margin-left: 28rem;
  transition: 0.5s;
  margin-right: -28rem;
}

.nav-open {
  position: relative;
}
.nav-open:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.nav-open .site-header {
  left: 28rem;
  transition: 0.3s;
}

body {
  padding-top: 9.998rem;
}
body.home {
  padding-top: 0;
}

@keyframes scrollHeader {
  from {
    top: -100rem;
  }
  to {
    top: 0;
  }
}
.site-footer {
  font-size: 1.5rem;
  line-height: 2.2rem;
  padding: 3rem 0 3rem 0;
  color: white;
  background-color: #001524;
}
@media (min-width: 576px) {
  .site-footer {
    padding: 3.8rem 0 4.8rem 0;
  }
}
.site-footer__address {
  padding-right: 3rem;
}
.site-footer__logo img {
  width: 14rem;
  max-width: 100%;
}
@media (min-width: 992px) {
  .site-footer__logo img {
    width: 18rem;
  }
}
@media (min-width: 1350px) {
  .site-footer__logo img {
    width: 24rem;
    margin-top: 0.6rem;
  }
}
.site-footer__copyright {
  margin-top: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.7rem;
}
.site-footer__copyright.desktop {
  display: none;
}
@media (min-width: 768px) {
  .site-footer__copyright.desktop {
    display: block;
  }
}
.site-footer__copyright.mobile {
  display: block;
}
@media (min-width: 768px) {
  .site-footer__copyright.mobile {
    display: none;
  }
}
.site-footer__socials {
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .site-footer__socials {
    margin-top: 0;
  }
}
.site-footer__socials a {
  text-indent: -99999px;
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  transition: 0.2s;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .site-footer__socials a {
    margin-right: 0.3rem;
  }
}
.site-footer__socials a:hover {
  background-color: #ddd;
  transition: 0.2s;
}
.site-footer__socials a.facebook {
  background-size: 1.3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='black' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}
.site-footer__socials a.twitter {
  background-size: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23000000' d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
}
.site-footer__socials a.instagram {
  background-size: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='14' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23000000' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}
.site-footer ul {
  margin: 0;
  padding: 0;
}
.site-footer ul li {
  list-style-type: none;
}
.site-footer__menu {
  width: 100%;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .site-footer__menu {
    margin-top: 0;
  }
}
.site-footer__menu ul li {
  margin: 0.3rem 0;
}
.site-footer__menu ul li a {
  color: white;
}
.site-footer__menu ul li a:hover {
  text-decoration: underline;
}

.footer-cta__content {
  animation-delay: 0.1s;
  margin-top: 26rem;
}
@media (min-width: 576px) {
  .footer-cta__content {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .footer-cta--center .row {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .footer-cta--center .footer-cta__desc, .footer-cta--center h2 {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer-cta--center .frm_submit {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .footer-cta--right .row {
    display: flex;
    justify-content: flex-end;
  }
}

#backtotop {
  position: fixed;
  bottom: -4rem;
  right: 2rem;
  border-radius: 0.6rem;
  width: 4rem;
  height: 4rem;
  transition: 0.2s;
  z-index: 9;
  background-color: #656262;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='10' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23ffffff' d='M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192H96l0 288c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32l0-288h72c9.6 0 18.2-5.7 22-14.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1rem;
}
#backtotop:hover {
  background-color: #d1ad35;
  transition: 0.2s;
  cursor: pointer;
}
#backtotop.active {
  bottom: 2rem;
  transition: 0.3s;
}

.button, .frm_button_submit {
  padding: 1rem 1.7rem !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-size: 1.55rem !important;
  line-height: 2.3rem !important;
  height: auto !important;
  border-radius: 3px !important;
  border: 0 !important;
  color: white !important;
  box-shadow: none !important;
  letter-spacing: 1px !important;
  background-color: #656262 !important;
  transition: box-shadow 0.4s cubic-bezier(0.55, 0.085, 0, 0.99) !important;
}
@media (min-width: 1400px) {
  .button, .frm_button_submit {
    font-size: 1.6rem !important;
    line-height: 2.3rem !important;
  }
}
@media (min-width: 1500px) {
  .button, .frm_button_submit {
    font-size: 1.7rem !important;
    line-height: 2.4rem !important;
  }
}
.button:hover, .frm_button_submit:hover {
  cursor: pointer !important;
  box-shadow: inset 0 -60px 0 0 #c19e2c !important;
}
.button--apple, .button--android, .frm_button_submit--apple, .frm_button_submit--android {
  position: relative;
}
.button--apple:after, .button--android:after, .frm_button_submit--apple:after, .frm_button_submit--android:after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: left center;
}
.button--apple, .frm_button_submit--apple {
  padding-left: 4.3rem !important;
}
.button--apple:after, .frm_button_submit--apple:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='12' viewBox='0 0 384 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23ffffff' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  left: 1.5rem !important;
  top: 0.89rem;
  background-size: 1.85rem;
}
.button--android, .frm_button_submit--android {
  padding-left: 5.1rem !important;
}
.button--android:after, .frm_button_submit--android:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='18' viewBox='0 0 576 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23ffffff' d='M420.6 301.9a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m-265.1 0a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m273.7-144.5 47.9-83a10 10 0 1 0 -17.3-10h0l-48.5 84.1a301.3 301.3 0 0 0 -246.6 0L116.2 64.5a10 10 0 1 0 -17.3 10h0l47.9 83C64.5 202.2 8.2 285.6 0 384H576c-8.2-98.5-64.5-181.8-146.9-226.6'/%3E%3C/svg%3E");
  left: 1.65rem !important;
  background-size: 2.45rem;
}

.button.button--content {
  float: left;
  margin-right: 2rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  color: white;
}
@media (min-width: 992px) {
  .button.button--content {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.button.button--content a {
  color: white;
}

.parallax-section {
  background-color: #c77398;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  background-attachment: fixed;
  justify-content: center;
  color: #fff;
  min-height: 52rem;
}
@media (min-width: 576px) {
  .parallax-section {
    min-height: 68rem;
  }
}
@media (min-width: 768px) {
  .parallax-section {
    min-height: 100vh;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .parallax-section {
    background: none !important;
  }
}
.parallax-section .content-section {
  margin-top: 30rem;
}
@media (min-width: 576px) {
  .parallax-section .content-section {
    margin-top: 0;
  }
}
.parallax-section__content {
  padding-top: 30rem;
  width: 100%;
}
@media (min-width: 768px) {
  .parallax-section__content {
    padding-top: 0;
  }
}
.parallax-section__mobile-bg {
  background-color: #c77398;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (min-width: 768px) {
  .parallax-section__mobile-bg {
    display: none;
  }
}

.hero-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 768px) {
  .hero-section {
    padding-top: 4rem;
  }
}
.hero-section__image {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 18vh;
  padding-bottom: 8rem;
}
@media (min-width: 576px) {
  .hero-section__image {
    padding-top: 10vh;
    padding-bottom: 0;
  }
}
.hero-section__image img {
  max-width: 55rem;
  width: 100%;
  display: block;
  margin-bottom: 3.2rem;
}
@media (min-width: 1350px) {
  .hero-section__image img {
    max-width: 75rem;
  }
}
.hero-section .row {
  height: 100%;
}
.hero-section__content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: flex-end;
}
.hero-section__content-inner {
  max-width: 62rem;
  display: flex;
  flex-wrap: wrap;
}
.hero-section__content-inner p {
  width: 100%;
}
.hero-section__content-inner .button {
  margin-top: 0;
}

.content-section {
  width: 100%;
}
.content-section__content {
  animation-delay: 0.2s;
}
@media (min-width: 768px) {
  .content-section.align--left .row {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .content-section.align--right .row {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .content-section.align--center .row {
    justify-content: center;
  }
}

.booking-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9999;
  justify-content: center;
  align-content: center;
  align-items: center;
  display: none;
}
.booking-lightbox.active {
  display: flex;
}
.booking-lightbox--close {
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: 5rem;
  height: 5rem;
  background-color: white;
  border-radius: 50%;
}
.booking-lightbox--close:hover {
  cursor: pointer;
}
.booking-lightbox--close:before {
  width: 2rem;
  height: 1px;
  background-color: #333;
  position: relative;
  content: "";
  display: block;
  left: 1.65rem;
  top: 2.38rem;
  transform: rotate(45deg);
}
.booking-lightbox--close:after {
  width: 2rem;
  height: 1px;
  background-color: #333;
  position: relative;
  content: "";
  display: block;
  left: 1.65rem;
  top: 2.3rem;
  transform: rotate(-45deg);
}
.booking-lightbox__content {
  background-color: white;
  padding: 1.6rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 70rem;
  position: relative;
}
.booking-lightbox__content h2 {
  color: #333;
  font-size: 1.8rem;
  line-height: 2.3rem;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}
.booking-lightbox__content-inner {
  overflow: auto;
  max-height: 88vh;
}
@media (min-width: 768px) {
  .booking-lightbox__content-inner div#bs-setup-derived-variable {
    margin-bottom: -5rem;
  }
}
.booking-lightbox__content-inner [id*=bsport-widget] .cleanslate .bs-calendar {
  min-height: 0 !important;
  margin-top: 13px !important;
}
.booking-lightbox__content-inner [id*=bsport-widget] .cleanslate .bs-calendar * {
  font-size: 1.4rem !important;
}

.page-content {
  margin-top: 2rem;
}

.main-content {
  min-height: 20rem;
}

.frm_form_field textarea, .frm_form_field input {
  padding: 1.2rem !important;
  height: auto;
}
.frm_form_field label {
  height: 4.2rem !important;
  display: flex !important;
  align-items: center !important;
}
.frm_form_field label {
  height: 4.2rem !important;
  display: flex !important;
  align-items: center !important;
}

.frm_label_float_top > label {
  top: -1rem !important;
  left: -1rem !important;
  opacity: 0;
}

.form-field {
  margin-bottom: 3px !important;
}

.frm_button_submit {
  margin-top: 2.5rem !important;
}

.gallery-section {
  min-height: 0;
  padding-top: 0;
}
.gallery-section .gallery {
  width: 100%;
}
.gallery-section .gallery img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.gallery-section .swiper-slide {
  height: auto;
}
.gallery-section .parallax-section__content {
  display: flex;
  height: 100%;
  padding-top: 0;
}
.gallery-section .swiper-pagination {
  bottom: 2rem !important;
}
@media (min-width: 768px) {
  .gallery-section .swiper-pagination {
    bottom: 3rem !important;
  }
}
.gallery-section .swiper-pagination .swiper-pagination-bullet {
  width: 0.57rem !important;
  height: 0.57rem !important;
  border: 1px solid white !important;
  background-color: transparent !important;
  top: -2px;
  position: relative;
  transition: 0.2s !important;
  box-shadow: none !important;
  opacity: 1 !important;
}
.gallery-section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white !important;
  width: 1rem !important;
  height: 1rem !important;
  top: 0px;
  transition: 0.2s !important;
}

.swiper-button-prev, .swiper-button-next {
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.2rem !important;
  height: 2.2rem !important;
}
@media (min-width: 768px) {
  .swiper-button-prev, .swiper-button-next {
    width: 2rem !important;
    height: 3rem !important;
  }
}
.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: 2rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='10' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23ffffff' d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .swiper-button-prev {
    left: 3rem !important;
  }
}

.swiper-button-next {
  right: 2rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='10' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2023 Fonticons, Inc.--%3E%3Cpath fill='%23ffffff' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .swiper-button-next {
    right: 3rem !important;
  }
}

@media (min-width: 768px) {
  .text-block__content {
    max-width: 100rem;
  }
}
@media (min-width: 768px) {
  .text-block--wide .text-block__content {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .text-block--central .text-block__content {
    max-width: 70rem;
    margin: 0 auto;
  }
}

.header-banner {
  padding-top: 9rem;
  padding-bottom: 2rem;
  color: white;
}

.content-with-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .content-with-image {
    margin-bottom: 6rem;
    flex-wrap: nowrap;
  }
}
.content-with-image__image {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .content-with-image__image {
    margin-bottom: 0;
    margin-right: 4rem;
  }
}
.content-with-image__image img {
  width: 30rem;
  height: 30rem;
  min-width: 30rem;
  min-height: 30rem;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  position: relative;
  border: 11px solid #d6b54a;
}
.content-with-image__content {
  display: flex;
  flex-wrap: wrap;
  color: white;
}
.content-with-image__content span, .content-with-image__content h2 {
  width: 100%;
}
.content-with-image__content h2 {
  color: white;
  margin-bottom: 1.3rem;
}
.content-with-image__content .desc {
  text-transform: uppercase;
  color: #656262;
  font-weight: 500;
}
.content-with-image__content .content {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .content-with-image:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .content-with-image:nth-child(even) .content-with-image__image {
    margin-right: 0;
    margin-left: 4rem;
  }
}

.content-with-images {
  margin-top: 4rem;
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .team-member {
    margin-bottom: 6rem;
    flex-wrap: nowrap;
  }
}
.team-member__image {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .team-member__image {
    margin-bottom: 0;
    margin-right: 4rem;
  }
}
.team-member__image img {
  width: 30rem;
  height: 30rem;
  min-width: 30rem;
  min-height: 30rem;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  position: relative;
  border: 11px solid #d6b54a;
}
.team-member__content {
  display: flex;
  flex-wrap: wrap;
  color: white;
}
.team-member__content span, .team-member__content h2 {
  width: 100%;
}
.team-member__content h2 {
  color: white;
  margin-bottom: 1.3rem;
}
.team-member__content .position {
  text-transform: uppercase;
  color: #656262;
  font-weight: 500;
}
.team-member__content .desc {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .team-member:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .team-member:nth-child(even) .team-member__image {
    margin-right: 0;
    margin-left: 4rem;
  }
}

.team-members {
  margin-top: 4rem;
}

.bs-pass-page__list__filters__container {
  position: relative;
  left: -4.2rem;
  width: calc(100% + 4.2rem);
}

.bs-setup-variable {
  background-color: transparent !important;
}

.bs-pass-page__payment__pack__list__title, .bs-pass-page__payment__pack__list__title--with-divider {
  color: white;
  font-family: "Lato", sans-serif;
}

.bs-pass-page__list {
  font-family: "Lato", sans-serif;
}

.bs-price__container.default {
  padding-bottom: 1rem;
}

.bs-pass-page * {
  font-family: "Lato", sans-serif;
}

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