@font-face {
  font-family: "Publica Sans";
  font-style: normal;
  font-weight: normal;
  src: local("Apple Garamond"), url("../assets/fonts/PublicaSans-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Apple Garamond";
  font-style: normal;
  font-weight: normal;
  src: local("Apple Garamond"), url("../assets/fonts/AppleGaramond.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Apple Garamond Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Apple Garamond Italic"), url("../assets/fonts/AppleGaramond-Italic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Apple Garamond Light";
  font-style: normal;
  font-weight: normal;
  src: local("Apple Garamond Light"), url("../assets/fonts/AppleGaramond-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Apple Garamond Light Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Apple Garamond Light Italic"), url("../assets/fonts/AppleGaramond-LightItalic.woff") format("woff");
  font-display: swap;
}
@media (min-width: 768px) {
  .for-mobile {
    display: none;
  }
}

.for-tablet {
  display: none;
}
@media (min-width: 768px) {
  .for-tablet.for-desktop {
    display: block;
  }
}
@media (min-width: 768px) {
  .for-tablet {
    display: block;
  }
}
@media (min-width: 1024px) {
  .for-tablet {
    display: none;
  }
}

.for-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .for-desktop {
    display: block;
  }
}

html, * {
  font-family: "Apple Garamond", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background: #fff;
  font-size: 10px;
}

#wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

img {
  max-width: 100%;
}

html, body, #wrapper, .main, .hero-screen {
  height: 100%;
}

@-webkit-keyframes border_draw {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes border_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
.border {
  stroke-dasharray: 768 770;
  stroke-dashoffset: 769;
  -webkit-animation: border_draw 500ms ease-in-out 0.5s forwards;
          animation: border_draw 500ms ease-in-out 0.5s forwards;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.hero-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #8ECEFF;
}
@media (min-width: 768px) {
  .hero-gradient {
    border-radius: 30px;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
@media (min-width: 1024px) {
  .hero-gradient {
    border-radius: 2.0833333333vw;
    top: 0.6944444444vw;
    left: 0.6944444444vw;
    width: calc(100% - 1.3888888889vw);
    height: calc(100% - 1.3888888889vw);
  }
}
@media (min-width: 1600px) {
  .hero-gradient {
    border-radius: 1.5625vw;
    top: 0.5208333333vw;
    left: 0.5208333333vw;
    width: calc(100% - 1.0416666667vw);
    height: calc(100% - 1.0416666667vw);
  }
}
@media (min-width: 1920px) {
  .hero-gradient {
    border-radius: 30px;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  opacity: 0;
}
.gradient-background--1 {
  background: linear-gradient(230deg, #C4D501, #B5ECC9, #8ECEFF, #90ADCD);
  -webkit-animation: gradient1 15s linear alternate infinite;
          animation: gradient1 15s linear alternate infinite;
}
.gradient-background--2 {
  background: linear-gradient(45deg, #C4D501, #B5ECC9, #8ECEFF, #90ADCD);
  -webkit-animation: gradient2 15s linear alternate infinite;
          animation: gradient2 15s linear alternate infinite;
}
.gradient-background--3 {
  background: linear-gradient(-45deg, #C4D501, #B5ECC9, #8ECEFF, #90ADCD);
  -webkit-animation: gradient3 15s linear alternate infinite;
          animation: gradient3 15s linear alternate infinite;
}
.gradient-background--4 {
  background: linear-gradient(140deg, #C4D501, #B5ECC9, #8ECEFF, #90ADCD);
  -webkit-animation: gradient4 15s linear alternate infinite;
          animation: gradient4 15s linear alternate infinite;
}

@-webkit-keyframes gradient1 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes gradient1 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes gradient2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes gradient2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes gradient3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes gradient3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes gradient4 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gradient4 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-content-header {
  padding: 0 0 4.2666666667vmin;
}
@media (min-width: 768px) {
  .hero-content-header {
    padding-bottom: 34px;
  }
}
@media (min-width: 1024px) {
  .hero-content-header {
    padding-bottom: 2.3611111111vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-header {
    padding-bottom: 1.7708333333vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-header {
    padding-bottom: 34px;
  }
}
.hero-content-header__logo {
  position: relative;
  width: 33.3333333333vmin;
}
@media (min-width: 768px) {
  .hero-content-header__logo {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .hero-content-header__logo {
    width: 14.375vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-header__logo {
    width: 10.78125vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-header__logo {
    width: 207px;
  }
}

.hero-screen {
  padding: 4.2666666667vmin 4.2666666667vmin 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .hero-screen {
    padding: 34px 34px 50px;
  }
}
@media (min-width: 1024px) {
  .hero-screen {
    padding: 3.4722222222vw;
  }
}
@media (min-width: 1600px) {
  .hero-screen {
    padding: 2.6041666667vw;
  }
}
@media (min-width: 1920px) {
  .hero-screen {
    padding: 50px;
  }
}

.hero-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hero-content__title {
  font-family: "Apple Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11.4666666667vmin;
  line-height: 100%;
  color: #fff;
  margin-bottom: 6.9333333333vmin;
  margin-top: auto;
}
@media (min-width: 768px) {
  .hero-content__title {
    font-family: "Apple Garamond Light", sans-serif;
    font-size: 92px;
    line-height: 94%;
    margin-top: 85px;
    margin-bottom: 46px;
  }
}
@media (min-width: 1024px) {
  .hero-content__title {
    max-width: 64.5833333333vw;
    font-size: 8.3333333333vw;
    line-height: 86%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 1600px) {
  .hero-content__title {
    max-width: 56.7708333333vw;
    font-size: 7.2916666667vw;
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 1920px) {
  .hero-content__title {
    max-width: 1090px;
    font-size: 140px;
    margin-top: 40px;
  }
}
@media (min-height: 1000px) and (orientation: landscape) {
  .hero-content__title {
    margin: auto;
  }
}
.hero-content__title span {
  font-family: "Apple Garamond Italic", sans-serif;
}
@media (min-width: 768px) {
  .hero-content__title span {
    font-family: "Apple Garamond Light Italic", sans-serif;
  }
}
@media (min-width: 1024px) {
  .hero-content__title span {
    margin-left: 2.0833333333vw;
  }
}
@media (min-width: 1600px) {
  .hero-content__title span {
    margin-left: 1.5625vw;
  }
}
@media (min-width: 1920px) {
  .hero-content__title span {
    margin-left: 30px;
  }
}
.hero-content__reserve {
  position: relative;
  display: inline-block;
  padding: 4.8vmin 15.4666666667vmin 5.8666666667vmin;
  margin-bottom: 14.6666666667vmin;
  font-weight: 400;
  font-size: 5.8666666667vmin;
  line-height: 100%;
  color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
@media (min-width: 768px) {
  .hero-content__reserve {
    padding: 23px 40px 28px;
    font-size: 28px;
    margin-bottom: 55px;
  }
}
@media (min-width: 1024px) {
  .hero-content__reserve {
    margin-bottom: 0;
    padding: 1.5972222222vw 2.7777777778vw 1.9444444444vw;
    font-size: 1.9444444444vw;
    margin-left: 4.3055555556vw;
    margin-top: 1.8055555556vw;
  }
}
@media (min-width: 1600px) {
  .hero-content__reserve {
    padding: 1.3541666667vw 2.0833333333vw 1.5625vw;
    font-size: 1.4583333333vw;
    margin-left: 7.1354166667vw;
    margin-top: 1.3541666667vw;
  }
}
@media (min-width: 1920px) {
  .hero-content__reserve {
    padding: 26px 40px 30px;
    font-size: 28px;
    margin-left: 137px;
    margin-top: 26px;
  }
}
.hero-content__footer {
  margin-top: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-content__footer {
    padding-bottom: 0.6944444444vw;
  }
}
@media (min-width: 1600px) {
  .hero-content__footer {
    padding-bottom: 1.1458333333vw;
  }
}
@media (min-width: 1920px) {
  .hero-content__footer {
    padding-bottom: 22px;
  }
}

.hero-content-title__line {
  display: inline;
}
@media (min-width: 1024px) {
  .hero-content-title__line--1, .hero-content-title__line--3 {
    padding-left: 18.4027777778vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-title__line--1, .hero-content-title__line--3 {
    padding-left: 16.1458333333vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-title__line--1, .hero-content-title__line--3 {
    padding-left: 310px;
  }
}
@media (min-width: 768px) {
  .hero-content-title__line {
    font-family: "Apple Garamond Light", sans-serif;
  }
}
@media (min-width: 1024px) {
  .hero-content-title__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero-content-call:hover {
  color: #9FDDFC;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.hero-content-call:hover .hero-content-call__arrow path {
  fill: #9FDDFC;
}
.hero-content-call:hover .hero-content-call__border path {
  fill: #fff;
}
.hero-content-call__border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  fill: transparent;
}
.hero-content-call__arrow {
  position: relative;
  width: 2.9333333333vmin;
  margin-left: 1.3333333333vmin;
}
.hero-content-call__arrow path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .hero-content-call__arrow {
    width: 15px;
    margin-left: 10px;
  }
}
@media (min-width: 1024px) {
  .hero-content-call__arrow {
    width: 1.0416666667vw;
    margin-left: 0.6944444444vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-call__arrow {
    width: 0.78125vw;
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-call__arrow {
    width: 15px;
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .hero-content-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.hero-content-footer__item {
  margin-bottom: 6.9333333333vmin;
}
@media (min-width: 768px) {
  .hero-content-footer__item {
    margin-bottom: 40px;
    max-width: 307px;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer__item {
    margin-right: 9.6527777778vw;
    max-width: 25.0694444444vw;
    position: relative;
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer__item {
    margin-right: 14.8958333333vw;
    max-width: 21.71875vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer__item {
    margin-right: 286px;
    max-width: 417px;
  }
}
@media (min-width: 768px) {
  .hero-content-footer__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer__item:nth-child(1) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
@media (min-width: 768px) {
  .hero-content-footer__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer__item:nth-child(2) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin-right: 10.625vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer__item:nth-child(2) {
    margin-right: 15.625vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer__item:nth-child(2) {
    margin-right: 15.625vw;
  }
}
@media (min-width: 768px) {
  .hero-content-footer__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer__item:nth-child(3) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer__item:nth-child(3) {
    margin-right: 0;
  }
}
.hero-content-footer__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero-content-footer__item:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: unset;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer__item:last-child {
    margin: 0;
    width: 8.0555555556vw;
    height: 8.0555555556vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer__item:last-child {
    width: 10.4166666667vw;
    height: 10.4166666667vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer__item:last-child {
    width: 150px;
    height: 150px;
  }
}

.hero-content-footer-item__name {
  font-size: 4.8vmin;
  line-height: 5.6vmin;
  margin-bottom: 2.6666666667vmin;
  color: rgba(255, 255, 255, 0.86);
}
@media (min-width: 768px) {
  .hero-content-footer-item__name {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer-item__name {
    margin-bottom: 0.8333333333vw;
    font-size: 1.5277777778vw;
    line-height: 1.7361111111vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer-item__name {
    margin-bottom: 0.5208333333vw;
    font-size: 1.3541666667vw;
    line-height: 1.5625vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer-item__name {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 30px;
  }
}
.hero-content-footer-item__link {
  font-family: "Publica Sans", sans-serif;
  font-size: 5.8666666667vmin;
  line-height: 100%;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.hero-content-footer-item__link--italic {
  font-family: "Apple Garamond Italic", sans-serif;
  margin-top: 10px;
}
.hero-content-footer-item__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .hero-content-footer-item__link {
    font-size: 22px;
    line-height: 100%;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer-item__link {
    font-size: 1.8055555556vw;
  }
  .hero-content-footer-item__link--italic {
    margin-top: 12px;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer-item__link {
    font-size: 1.5625vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer-item__link {
    font-size: 30px;
  }
}
.hero-content-footer-item__link--map {
  display: block;
  max-height: 35.2vmin;
}
@media (min-width: 768px) {
  .hero-content-footer-item__link--map {
    width: 320px;
    height: 320px;
    max-height: unset;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer-item__link--map {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: inherit;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer-item__link--map:hover .hero-content-footer-item__img {
    width: 35.3472222222vw;
    height: 35.3472222222vw;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer-item__link--map:hover .hero-content-footer-item__img {
    width: 30.7291666667vw;
    height: 30.7291666667vw;
    opacity: 0;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer-item__link--map:hover .hero-content-footer-item__img {
    width: 590px;
    height: 590px;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer-item__link--map:hover .hero-content-footer-item__img--hovered {
    opacity: 1;
  }
}
.hero-content-footer-item__link--map:after {
  content: none;
}
.hero-content-footer-item__link--map .hero-content-footer-item__img {
  width: 100%;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.hero-content-footer-item__link--map .hero-content-footer-item__img--hovered {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  position: absolute;
  right: 0;
  z-index: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
}
@media (min-width: 1600px) {
  .hero-content-footer-item__link--map .hero-content-footer-item__img--hovered {
    display: block;
  }
}
@media (min-width: 1024px) {
  .hero-content-footer-item__link--map .hero-content-footer-item__img {
    width: 8.0555555556vw;
    height: 8.0555555556vw;
    -o-object-fit: none;
       object-fit: none;
    display: block;
    -o-object-position: 35% 44%;
       object-position: 35% 44%;
    -webkit-transition: width 0.5s, height 0.5s, opacity 0.5s;
    transition: width 0.5s, height 0.5s, opacity 0.5s;
    max-width: unset;
    border-radius: 50%;
  }
}
@media (min-width: 1600px) {
  .hero-content-footer-item__link--map .hero-content-footer-item__img {
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
@media (min-width: 1920px) {
  .hero-content-footer-item__link--map .hero-content-footer-item__img {
    width: 150px;
    height: 150px;
  }
}
@media (pointer: fine) {
  .hero-content-footer-item a.hero-content-footer-item__link:hover:after {
    width: 100%;
  }
}