@font-face {
  font-family: "Avenir";
  src: url("./assets/font/Avenir.woff") format("woff");
}
@font-face {
  font-family: "Didot";
  src: url("./assets/font/Didot.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Avenir";
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: #0e222c;
  overflow-x: hidden;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  flex-shrink: 0;
}

a {
  text-decoration: none;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

.h1 {
  color: #fff;
  font-size: 75.322px;
  font-style: normal;
  font-weight: 700;
  line-height: 85.643px;
  margin: 20px 0;
  font-family: "Didot";
}

.h2 {
  color: #fff;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 65px;
  line-height: 100%;
  letter-spacing: 0.548px;
  margin: 24px 0;
  font-family: "Didot";
}

.h2--black {
  color: #000032;
}

.h2--white {
  color: #fff;
}

.container {
  max-width: 1454px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.heading-prefix {
  color: #7dc5fa;
  font-size: 20.542px;
  font-weight: 800;
  line-height: 31.955px;
  letter-spacing: -0.226px;
  text-transform: uppercase;
  padding-left: 90px;
  position: relative;
  display: block;
}
.heading-prefix:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 61px;
  height: 1.71px;
  background-color: #7dc5fa;
}
.heading-prefix--dark {
  color: #0e222c;
}
.heading-prefix--dark:before {
  background-color: #0e222c;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__video--mobile {
  display: none;
}
.hero__support-text {
  color: #fff;
  font-size: 18.26px;
  line-height: 25.107px;
  letter-spacing: -0.201px;
}
.hero__anchor {
  color: #fff;
  font-size: 20.542px;
  font-weight: 500;
  line-height: 31.955px;
  letter-spacing: -0.226px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.two-column-layout {
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr 587px;
  gap: 64px;
}
.two-column-layout img {
  max-height: 640px;
}
.two-column-layout__image {
  height: 435px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  width: 100%;
}
.two-column-layout--reverse {
  grid-template-columns: 587px 1fr;
}
.two-column-layout__content p {
  color: #d1d7e6;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.198px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

.grid {
  display: grid;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.bg-white {
  background-color: #fff;
}

.text-white {
  color: #fff;
}

.last-section {
  padding: 128px 0;
  background-image: url("./assets/images/water.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.last-section__paragraph {
  max-width: 900px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
}
.last-section__contact-info {
  display: flex;
  gap: 70px;
}
.last-section__contact-info a {
  font-size: 24px;
  font-weight: 500;
  text-decoration: underline;
}

.gallery {
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 128px !important;
}
.gallery .grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.gallery .grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.gallery .grid-wrapper .wide {
  grid-column: span 2;
}
.gallery .grid-wrapper .tall {
  grid-row: span 2;
}
.gallery .grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.overflow-hidden {
  overflow: hidden;
}

.about-section {
  background-color: #ebf7ff;
}
.about-section img {
  border-radius: 8px;
}
.about-section__boat {
  width: 480px;
  position: absolute;
  bottom: -170px;
  right: 0;
  z-index: 1;
  animation: float 7s infinite;
}

.section-spacing {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-spacing--lg {
  padding-top: 128px;
  padding-bottom: 128px;
}

.relative {
  position: relative;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.m-auto {
  margin: auto;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.mb-spacing {
  margin-bottom: 64px;
}

.mt-spacing {
  margin-top: 64px;
}

.waves {
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 21.08%, 1.11% 19.64%, 2.22% 18.6%, 3.33% 18.06%, 4.44% 18.08%, 5.56% 18.67%, 6.67% 19.75%, 7.78% 21.22%, 8.89% 22.91%, 10% 24.64%, 11.11% 26.24%, 12.22% 27.52%, 13.33% 28.36%, 14.44% 28.67%, 15.56% 28.4%, 16.67% 27.59%, 17.78% 26.33%, 18.89% 24.75%, 20% 23.02%, 21.11% 21.32%, 22.22% 19.83%, 23.33% 18.72%, 24.44% 18.11%, 25.56% 18.04%, 26.67% 18.55%, 27.78% 19.56%, 28.89% 20.98%, 30% 22.65%, 31.11% 24.39%, 32.22% 26.02%, 33.33% 27.36%, 34.44% 28.27%, 35.56% 28.66%, 36.67% 28.48%, 37.78% 27.74%, 38.89% 26.54%, 40% 25%, 41.11% 23.28%, 42.22% 21.56%, 43.33% 20.04%, 44.44% 18.86%, 45.56% 18.16%, 46.67% 18.02%, 47.78% 18.44%, 48.89% 19.38%, 50% 20.75%, 51.11% 22.39%, 52.22% 24.13%, 53.33% 25.79%, 54.44% 27.18%, 55.56% 28.17%, 56.67% 28.64%, 57.78% 28.54%, 58.89% 27.89%, 60% 26.75%, 61.11% 25.24%, 62.22% 23.54%, 63.33% 21.81%, 64.44% 20.24%, 65.56% 19.01%, 66.67% 18.23%, 67.78% 18%, 68.89% 18.34%, 70% 19.21%, 71.11% 20.52%, 72.22% 22.13%, 73.33% 23.87%, 74.44% 25.55%, 75.56% 27%, 76.67% 28.05%, 77.78% 28.6%, 78.89% 28.59%, 80% 28.02%, 81.11% 26.94%, 82.22% 25.49%, 83.33% 23.8%, 84.44% 22.06%, 85.56% 20.46%, 86.67% 19.17%, 87.78% 18.32%, 88.89% 18%, 90% 18.26%, 91.11% 19.05%, 92.22% 20.3%, 93.33% 21.88%, 94.44% 23.61%, 95.56% 25.31%, 96.67% 26.8%, 97.78% 27.92%, 98.89% 28.55%, 100% 28.63%);
          clip-path: polygon(100% 0%, 0% 0%, 0% 21.08%, 1.11% 19.64%, 2.22% 18.6%, 3.33% 18.06%, 4.44% 18.08%, 5.56% 18.67%, 6.67% 19.75%, 7.78% 21.22%, 8.89% 22.91%, 10% 24.64%, 11.11% 26.24%, 12.22% 27.52%, 13.33% 28.36%, 14.44% 28.67%, 15.56% 28.4%, 16.67% 27.59%, 17.78% 26.33%, 18.89% 24.75%, 20% 23.02%, 21.11% 21.32%, 22.22% 19.83%, 23.33% 18.72%, 24.44% 18.11%, 25.56% 18.04%, 26.67% 18.55%, 27.78% 19.56%, 28.89% 20.98%, 30% 22.65%, 31.11% 24.39%, 32.22% 26.02%, 33.33% 27.36%, 34.44% 28.27%, 35.56% 28.66%, 36.67% 28.48%, 37.78% 27.74%, 38.89% 26.54%, 40% 25%, 41.11% 23.28%, 42.22% 21.56%, 43.33% 20.04%, 44.44% 18.86%, 45.56% 18.16%, 46.67% 18.02%, 47.78% 18.44%, 48.89% 19.38%, 50% 20.75%, 51.11% 22.39%, 52.22% 24.13%, 53.33% 25.79%, 54.44% 27.18%, 55.56% 28.17%, 56.67% 28.64%, 57.78% 28.54%, 58.89% 27.89%, 60% 26.75%, 61.11% 25.24%, 62.22% 23.54%, 63.33% 21.81%, 64.44% 20.24%, 65.56% 19.01%, 66.67% 18.23%, 67.78% 18%, 68.89% 18.34%, 70% 19.21%, 71.11% 20.52%, 72.22% 22.13%, 73.33% 23.87%, 74.44% 25.55%, 75.56% 27%, 76.67% 28.05%, 77.78% 28.6%, 78.89% 28.59%, 80% 28.02%, 81.11% 26.94%, 82.22% 25.49%, 83.33% 23.8%, 84.44% 22.06%, 85.56% 20.46%, 86.67% 19.17%, 87.78% 18.32%, 88.89% 18%, 90% 18.26%, 91.11% 19.05%, 92.22% 20.3%, 93.33% 21.88%, 94.44% 23.61%, 95.56% 25.31%, 96.67% 26.8%, 97.78% 27.92%, 98.89% 28.55%, 100% 28.63%);
  position: absolute;
  background-color: #ebf7ff;
  bottom: -170px;
  height: 190px;
  width: 200%;
  animation: catchTheWaves 23s linear infinite;
}

@keyframes catchTheWaves {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotateZ(0deg);
  }
  25% {
    transform: translateY(-5px) rotateZ(2deg);
  }
  75% {
    transform: translateY(-5px) rotateZ(-2deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .animation {
    opacity: 0;
    transform: translateY(-70px);
    transition: 0.5s ease-out;
    transition-delay: 0.25s;
  }
  .fade-in-from-left,
  .fade-in-from-top,
  .fade-in-from-right,
  .fade-in-from-bottom {
    opacity: 0;
    transition: 0.5s ease-out;
    transition-delay: 0.25s;
  }
  .fade-in-from-left {
    transform: translateX(-50%);
  }
  .fade-in-from-right {
    transform: translateX(50%);
  }
  .fade-in-from-top {
    transform: translateY(-70px);
  }
  .fade-in-from-bottom {
    transform: translateY(50px);
  }
  .fade-in-from-top--active,
  .fade-in-from-bottom--active {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-from-left--active,
  .fade-in-from-right--active {
    opacity: 1;
    transform: translateX(0);
  }
  .fade-in {
    opacity: 0;
    scale: 0.9;
    transition: 0.2s ease-out;
    transition-delay: 0.25s;
  }
  .fade-in--active {
    opacity: 1;
    scale: 1;
  }
  .animation.scroll-animation {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1400px) {
  .two-column-layout,
  .two-column-layout--reverse {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1130px) {
  .heading-prefix {
    font-size: 14px;
    padding-left: 52px;
  }
  .heading-prefix:before {
    width: 32px;
  }
  .two-column-layout .h2 {
    font-size: 32px;
  }
  .two-column-layout p {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .gallery {
    padding-left: 0;
    padding-right: 0;
  }
  .two-column-layout {
    padding: 64px 32px;
  }
  .last-section {
    padding: 128px 32px;
  }
  .last-section__contact-info {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 880px) {
  .two-column-layout,
  .two-column-layout--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-column-layout--reverse article {
    order: 2;
  }
}
@media (max-width: 640px) {
  .hero__video--mobile {
    display: block;
  }
  .hero__video--not-mobile {
    display: none;
  }
  .hero {
    align-items: baseline;
    height: 70vh;
    padding-top: 34px;
  }
  .h1 {
    font-size: 42px;
    line-height: 48.643px;
  }
  .hero__support-text {
    font-size: 16px;
  }
  .h2 {
    margin: 12px 0;
  }
  .two-column-layout__image {
    height: 250px;
  }
  .two-column-layout {
    padding: 32px 20px;
  }
  .last-section {
    padding: 64px 20px;
  }
  .last-section__paragraph {
    font-size: 18px;
  }
  .last-section__contact-info {
    gap: 40px;
  }
  .last-section__contact-info svg {
    width: 32px;
    height: 32px;
  }
  .last-section__contact-info a {
    font-size: 18px;
  }
  .about-section__boat {
    width: 250px;
    bottom: -110px;
  }
  .section-spacing--lg {
    padding-top: 32px;
  }
  .mb-spacing {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=styles.css.map */