@font-face {
  font-family: "Tabac Big Sans";
  src: url("/assets/fonts/Tabac Big Sans Bold.otf") format("OpenType");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Tabac Big Sans Regular";
  src: url("/assets/fonts/Tabac Big Sans Regular.otf") format("OpenType");
  font-weight: normal;
  font-style: normal;
}
:root {
  --highlight-color: #f2cc44;
  --normal-color: #12121280;
  --color-white: #ffffff;
  --normal-font: "Inter";
  --highlight-font: "Tabac Big Sans Regular";
  --heading-font: "Tabac Big Sans";
}

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

.container-lg {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .container-lg {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-lg {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-lg {
    max-width: 1140px;
  }
}
@media (min-width: 1366px) {
  .container-lg {
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  .container-lg {
    max-width: 1315px;
  }
}
@media (min-width: 1660px) {
  .container-lg {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .container-lg {
    max-width: 1770px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .container {
    max-width: 570px;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 990px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1270px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1366px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1480px;
  }
}

.main {
  position: relative;
  overflow: hidden;
}
.main.index:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120vh;
  background: linear-gradient(73deg, #232c45 0%, #171e2c 98.8%);
  z-index: 0;
}
.main.index:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url("/assets/images/banner-overlay.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 120vh;
  opacity: 0.3;
  z-index: 0;
}

a {
  font-size: clamp(8px, 1vw, 16px);
  text-decoration: none;
  color: inherit;
  text-transform: capitalize;
}

ul {
  list-style: none;
}

.color-red {
  color: #d45d5d;
}

header {
  padding: 19px 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  margin-top: clamp(30px, 7vw, 90px);
}
@media (max-width: 992px) {
  header {
    height: 48px;
  }
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .inner-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .logo {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (max-width: 991px) {
  header .logo {
    width: 30vw;
  }
}
@media (max-width: 760px) {
  header .logo {
    width: 35vw;
  }
}
header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.back__btn {
  position: fixed;
  right: 7%;
  z-index: 10;
  top: 7%;
  width: clamp(35px, 5vw, 70px);
}
.back__btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero_banner {
  width: 100%;
  height: 120vh;
  position: relative;
  display: flex;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero_banner {
    height: 100vh;
  }
}
.hero_banner .banner__content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  z-index: 5;
  width: 63vw;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-inline: 15px;
  margin-inline: auto;
  gap: clamp(20px, 5.5vw, 5.2084vw);
  margin-inline: auto;
}
@media (max-width: 991px) {
  .hero_banner .banner__content {
    width: 100vw;
  }
}
@media (max-width: 760px) {
  .hero_banner .banner__content {
    transform: translate(-50%, -100%);
  }
}
@media (max-width: 520px) {
  .hero_banner .banner__content {
    top: 45%;
  }
}
.hero_banner .banner__content .text_content {
  font-family: var(--highlight-font);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 4.5vw, 2.1vw);
  letter-spacing: 2.4px;
}
.hero_banner .banner__content .text_content .heading_title {
  color: var(--color-white);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.112;
  font-size: clamp(25px, 4vw, 3.75vw);
  text-transform: uppercase;
}
.hero_banner .banner__content .text_content .heading_title span {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  color: var(--highlight-color);
  font-size: clamp(32px, 6.5vw, 7.05vw);
  text-transform: capitalize;
}
.hero_banner .banner__content .text_content .content {
  color: var(--color-white);
  font-size: clamp(10px, 1vw, 1.25vw);
  font-weight: 400;
  width: 50%;
  margin-inline: auto;
}

.lower-section {
  position: relative;
  width: 100%;
  display: block;
  z-index: 1;
  margin-top: -40%;
}
@media (max-width: 760px) {
  .lower-section {
    margin-top: -55%;
  }
}
@media (max-width: 520px) {
  .lower-section {
    margin-top: -90%;
  }
}
@media (max-width: 480px) {
  .lower-section {
    margin-top: -106%;
    z-index: 5;
  }
}
.lower-section .beach {
  position: relative;
}
.lower-section .beach img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-section .content-section {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 8;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 4.5vw, 80px);
  width: min(100%, 700px);
  margin: 0 auto;
  align-items: center;
  font-weight: 300;
  color: #58595b;
  font-family: var(--normal-font);
}
@media (max-width: 480px) {
  .lower-section .content-section {
    top: 55%;
  }
}
.lower-section .content-section .title {
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 52px);
}
.lower-section .content-section .logo-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(25px, 5vw, 52px);
}
.lower-section .content-section .logo-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lower-section .content-section .logo-section .item {
  position: relative;
  display: block;
  height: 100%;
  scale: 1;
  transition: scale 0.3s linear;
}
@media (max-width: 1200px) {
  .lower-section .content-section .logo-section .item {
    height: 8vw;
  }
}
.lower-section .content-section .logo-section .item .footer-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lower-section .content-section .logo-section .item:hover {
  scale: 1.2;
}/*# sourceMappingURL=main.css.map */