body {
  margin: 0;
  background-color: #141414;
  color: #C9C9C9;
  font-family: Candara, Calibri, Segoe, Segoe UI, Optima, Arial, sans-serif;
}

a {
  color: white;
  transition: all 0.5s;
}
a:hover {
  color: rgb(160, 160, 253);
}

main {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #141414;
}

.mobile-cta {
  display: none;
}

header {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
header button {
  background-color: transparent;
  border: 2px solid #C9C9C9;
  color: #C9C9C9;
  border-radius: 0;
  padding: 13px 26px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.5s;
}
header button:hover {
  background-color: #C9C9C9;
  color: #141414;
}

.fixed-cta {
  background-color: #141414;
  border: 2px solid #C9C9C9;
  color: #C9C9C9;
  border-radius: 0;
  padding: 13px 26px;
  font-size: 20px;
  position: fixed;
  top: 3rem;
  right: 3rem;
  margin-top: 0;
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s;
  transform: translateY(calc(-3rem - 100%));
  transition: all 0.5s ease-in-out;
}
.fixed-cta:hover {
  background-color: #C9C9C9;
  color: #141414;
}
.fixed-cta.opened {
  transform: translateY(0);
}

.relative {
  position: relative;
}
.relative img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.justify-content-center {
  justify-content: center;
}

.img-land {
  padding-top: 50%;
}

.img-port {
  padding-top: 150%;
}

.mt-neg {
  margin-top: -10%;
}

.mt-neg-2 {
  margin-top: -15%;
}

.separator {
  height: 100vh;
}

.z-index-n {
  z-index: -1;
}

.ornament {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}
.ornament svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.main-img-container {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 1;
}
.main-img-container .header-text {
  z-index: 2;
  position: sticky;
  top: 30%;
  text-align: center;
  transform: translateY(-25%);
  width: 100%;
  color: white;
}
.main-img-container .header-text h1 {
  font-size: clamp(30px, 30px + 70 * (100vw - 320px) / 1600, 100px);
  margin-bottom: 1rem;
  margin-top: 0;
}
.main-img-container .header-text p {
  text-align: center;
  font-size: clamp(20px, 20px + 10 * (100vw - 320px) / 1600, 30px);
  margin: 0 auto;
  max-width: 600px;
}

section {
  min-height: 100vh;
}
section.intro-section {
  display: flex;
  flex-direction: column;
}
section.intro-section p {
  font-size: clamp(20px, 20px + 15 * (100vw - 320px) / 1600, 35px);
  max-width: 1091px;
  text-align: center;
  margin: auto;
}
section.places small {
  font-size: 16px;
  text-transform: uppercase;
}
section.places h2 {
  margin-top: 0;
  font-size: clamp(30px, 30px + 50 * (100vw - 320px) / 1600, 80px);
}
section.places p {
  text-align: justify;
  font-size: clamp(20px, 20px + 10 * (100vw - 320px) / 1600, 30px);
}
section.places .place-header {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
section.places .place-header .wrapper {
  margin: auto;
  text-align: center;
}

.fluid {
  width: 100%;
  height: auto;
}

.contact-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-section p {
  max-width: 700px;
  text-align: center;
  font-size: clamp(20px, 20px + 15 * (100vw - 320px) / 1600, 35px);
  margin-left: auto;
  margin-right: auto;
}

.contact-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.contact-links a {
  display: flex;
  margin: 2rem;
}
.contact-links img {
  height: 80px;
  width: auto;
}

.overlap {
  max-width: calc(100vw - 2rem);
  margin: auto;
}

@media only screen and (max-width: 600px) {
  .contact-links {
    flex-direction: column;
  }
  .contact-links a {
    margin-left: auto;
    margin-right: auto;
  }
  p {
    text-align: left !important;
  }
  .tagline {
    text-align: center !important;
  }
}
@media only screen and (max-width: 780px) {
  .cta {
    display: none !important;
  }
  .main-img-container {
    min-height: 100vh;
    min-height: 100svh;
  }
  .main-img-container .header-text {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    border: none;
    background: #C9C9C9;
    font-size: 20px;
    z-index: 10;
  }
  section.places .place-header {
    height: auto;
    margin-top: 30%;
  }
  .mt-neg {
    margin-top: 0;
  }
  .mt-neg-2 {
    margin-top: 0;
  }
  .overlap {
    display: none;
  }
}

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