* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--secondary-font);
  color: var(--global-font-color-primary);
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

a, button {
  cursor: none;
}
a:hover, button:hover {
  cursor: none;
}

:root {
  /* || Font Family*/
  --primary-font-regular: "PPFormula-Condensed-Regular", sans-serif;
  --primary-font-bold: "PPFormula-Condensed-Bold", sans-serif;
  --secondary-font: "ProximaNova-Regular", sans-serif;
  --secondary-font-semiBold: "ProximaNova-SemiBold", sans-serif;
  /* || Font Size */
  --global-font-size-xxs: 10px;
  --global-font-size-xs: 12px;
  --global-font-size-sm: 14px;
  --global-font-size-normal: 16px;
  --global-font-size-xl: 20px;
  --global-font-size-xxl: 30px;
  --global-font-size-gigant: 5rem;
  --global-font-size-huge: 145px;
  /* || Line Height */
  --global-line-height-xl: 150%;
  --global-line-height-xxl: 27px;
  --global-line-height-gigant: 100%;
  --global-line-height-huge: 100%;
  /* || Asset Color */
  --asset-color: 78, 239, 94;
  --asset-color-link: 56, 170, 67;
  --asset-color-text: 56, 208, 71;
  /* || Global Colors */
  --global-color-black: 0, 0, 0;
  --global-color-white: 255, 255, 255;
  --global-color-gray-light: #EFEFEF;
  --global-color-gray: #9b9b9b;
  --global-color-gray-dark: 131, 131, 131;
  --global-color-gray-super-dark: 39, 39, 39;
  --global-color-success: #81D464;
  --global-color-error: 255, 86, 86;
  /* || Font Color */
  --global-font-color-primary: rgba(var(--global-color-gray-super-dark), 1);
  /* || Modal */
  --modal--bg: 14, 53, 49;
  /* || Margin */
  --margin-mobile: 2rem;
  --bs-gutter-x: 2rem;
  /* || Border Radius */
  --global-border-radius: 10px;
  --bg-product-image: #e1efed;
  /* || Swiper Slide */
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-navigation-color: rgba(var(--global-color-gray-super-dark), 1);
}

@font-face {
  font-family: "PPFormula-Condensed-Regular";
  src: url("../assets/fonts/PPFormula-CondensedRegular.woff2") format("woff2"), url("../assets/fonts/PPFormula-CondensedRegular.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPFormula-Condensed-Bold";
  src: url("../assets/fonts/PPFormula-CondensedBold.woff2") format("woff2"), url("../assets/fonts/PPFormula-CondensedBold.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova-Regular";
  src: url("../assets/fonts/ProximaNova-Regular.woff2") format("woff2"), url("../assets/fonts/ProximaNova-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova-SemiBold";
  src: url("../assets/fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../assets/fonts/ProximaNova-Semibold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.fade-in-bottom {
  animation: fade-in-bottom 0.75s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
}

.fade-in {
  animation: fade-in 500ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-4-13 19:0:18
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@keyframes fade-in-bottom {
  0% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0);
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
.disappear {
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease-in-out,
                visibility 250ms ease-in-out;
    &.appear {
        opacity: 1;
        visibility: visible;
        &.card {
            &:nth-child(1n) {
                transition-delay: .1s;
            }
            &:nth-child(2n) {
                transition-delay: .2s;
            }
            &:nth-child(3n) {
                transition-delay: .3s;
            }
        }
    }
}


.reveal-lines {
    .wrapper-line {
        position: relative;
        overflow: hidden;
        > div {
            transform: translate3d(0,150%,0);
            opacity: 0;
            visibility: hidden;
            padding-top: .125rem;
            transition: opacity 250ms ease-in-out,
                        visibility 250ms ease-in-out,
                        transform 750ms cubic-bezier(0.11, 0.01, 0, 1);
            &.revealed {
                opacity: 1;
                visibility: visible;
                transform: translateY(0%);
            }
        }
        &:nth-child(1n) {
            > div {
                transition-delay: .15s;
            }
        }
        &:nth-child(2n) {
            > div {
                transition-delay: .3s;
            }
        }
        &:nth-child(3n) {
            > div {
               transition-delay: .45s;
            }
        }
    }
}
    */
.icon-ig {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 70px;
  background: radial-gradient(circle farthest-corner at 230px 100px, #fff 14px, rgba(204, 153, 153, 0) 14px), linear-gradient(-10deg, rgba(179, 0, 179, 0.1) 70%, blue 110%), radial-gradient(circle farthest-corner at 30% 100%, #ffff99 0%, rgba(255, 165, 0, 0.2) 40%), linear-gradient(20deg, red, #b300b3, blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.icon-ig:before, .icon-ig:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  box-shadow: inset 0 0 0 20px white;
}
.icon-ig:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 70px;
}
.icon-ig:after {
  width: 5px;
  height: 5px;
  border-radius: 100%;
}

::-moz-selection {
  background-color: rgba(var(--asset-color), 1);
  color: rgba(var(--global-color-white), 1);
}

::selection {
  background-color: rgba(var(--asset-color), 1);
  color: rgba(var(--global-color-white), 1);
}

::-moz-placeholder {
  color: rgba(var(--global-color-white), 0.5);
  font-family: var(--secondary-font);
}

::placeholder {
  color: rgba(var(--global-color-white), 0.5);
  font-family: var(--secondary-font);
}

@media only screen and (min-width: 1024px) {
  body {
    cursor: none;
  }
}

@media only screen and (min-width: 1024px) {
  .cursor-follower {
    position: fixed;
    background-color: rgba(var(--global-color-black), 1);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.25s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.25s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.25s ease-in-out width, 0.25s ease-in-out height;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
  }
  .cursor-follower.link-grow {
    background-color: rgba(var(--asset-color), 1);
    transform: scale(4);
    opacity: 0.5;
  }
  .cursor-follower.link-learn-more {
    background-color: rgba(var(--asset-color), 1);
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  .cursor-follower.link-learn-more::after {
    content: "DISCOVER";
    color: rgba(var(--global-color-black), 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }
  .cursor-follower.link-drag {
    background-color: rgba(var(--asset-color), 1);
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  .cursor-follower.link-drag::after {
    content: "DRAG";
    color: rgba(var(--global-color-black), 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }
  .cursor-follower.bg-white {
    background-color: rgba(var(--global-color-white), 1);
  }
  .cursor-follower.bg-white.link-grow {
    background-color: rgba(var(--asset-color), 1);
  }
}

.container {
  padding-left: 5%;
  padding-right: 5%;
}
@media only screen and (min-width: 1440px) {
  .container {
    padding-left: 8.333%;
    padding-right: 8.333%;
  }
}
.container-full {
  padding: 0;
}

.only-desktop {
  display: none !important;
}
@media only screen and (min-width: 960px) {
  .only-desktop {
    display: flex !important;
  }
}

.only-mobile {
  display: flex !important;
}
.only-mobile address {
  width: 100%;
  border-top: 1px solid rgba(var(--global-color-white), 1);
  margin-top: 1.5rem;
  padding-top: 2.5rem;
}
@media only screen and (min-width: 960px) {
  .only-mobile {
    display: none !important;
  }
}

.d-flex {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .d-flex {
    flex-direction: row;
  }
}
.d-flex .quarter {
  width: 50%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .quarter {
    width: 25%;
  }
}
.d-flex .quarter-mobile-full {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .quarter-mobile-full {
    width: 25%;
  }
}
.d-flex .third {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .third {
    width: 33.333%;
  }
}
.d-flex .third-less-gap {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .third-less-gap {
    width: 30%;
  }
}
.d-flex .three-quarter {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .three-quarter {
    width: 75%;
  }
}
.d-flex .one-thirds {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .one-thirds {
    width: 33.333%;
  }
}
.d-flex .two-thirds {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .two-thirds {
    width: 66.666%;
  }
}
.d-flex .half {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .d-flex .half {
    width: 50%;
  }
}
.d-flex .full {
  width: 100%;
}
.d-flex-row {
  display: flex;
  flex-direction: row;
}

main article header,
main article section {
  background-color: rgba(var(--global-color-white), 1);
}

.main-header {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main-header.module-cover .main-header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(var(--global-color-black), 0.3);
  z-index: 1;
}
.main-header.module-cover .main-header-container .row {
  position: relative;
  z-index: 2;
}
.main-header.module-cover .main-header-container video {
  position: absolute;
  top: 0;
  height: 100vh;
  width: auto;
  z-index: 0;
}
.main-header.module-cover .main-header-container video::before {
  content: "";
  display: block;
  background-color: #fff;
}
@media only screen and (min-width: 1024px) {
  .main-header.module-cover .main-header-container video {
    margin: 0 auto;
    transform: scale(1.5);
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 1800px) {
  .main-header.module-cover .main-header-container video {
    width: 100%;
    height: auto;
  }
}
.main-header .main-header-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100%;
  position: relative;
}
.main-header .main-header-container h1 {
  font-family: var(--primary-font-bold);
  text-align: center;
  color: rgba(var(--global-color-white), 1);
  text-transform: uppercase;
  font-size: 50px;
  line-height: 100%;
  max-width: 90vw;
}
.main-header .main-header-container h1 .wrapper-txt > div {
  transition-delay: 0.8s;
}
.main-header .main-header-container h1 .wrapper-txt:last-child div {
  transition-delay: 1s;
}
@media only screen and (min-width: 1024px) {
  .main-header .main-header-container h1 {
    max-width: 100vw;
    font-size: var(--global-font-size-huge);
    line-height: var(--global-line-height-huge);
  }
  .main-header .main-header-container h1 .h1-wrapper {
    height: calc(var(--global-font-size-huge) - 10px);
  }
}
.main-header .main-header-container .button {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 50px;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  z-index: 2;
}
.main-header .main-header-container .button.fade-in {
  animation-delay: 500ms;
}

.section-wrapper {
  width: 100%;
}
.section-wrapper.--contains-slides .container {
  padding-right: 0;
}
.section-wrapper .section-container {
  padding: 4.5rem 0;
  height: 100%;
  min-height: 100vh;
}
.section-wrapper .section-container .text-container {
  padding-right: 5%;
}
.section-wrapper .section-container .text-container > div:first-of-type {
  flex-grow: 1;
}
.section-wrapper .section-container .text-container h1 {
  text-transform: uppercase;
  font-family: var(--primary-font-regular);
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1440px) {
  .section-wrapper .section-container .text-container h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  .section-wrapper .section-container .text-container h1 {
    margin-bottom: 0;
  }
}
.section-wrapper .section-container .text-container h2, .section-wrapper .section-container .text-container h3 {
  text-transform: uppercase;
}
.section-wrapper .section-container .text-container h2 {
  font-family: var(--secondary-font);
  font-size: 18px;
  margin-bottom: 1rem;
}
.section-wrapper .section-container .text-container h3 {
  font-family: var(--primary-font-regular);
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1440px) {
  .section-wrapper .section-container .text-container h3 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  .section-wrapper .section-container .text-container h3 {
    margin-bottom: 0;
  }
}
.section-wrapper .section-container .text-container p {
  font-size: clamp(var(--global-font-size-normal), 1.2rem, var(--global-font-size-xl));
  line-height: var(--global-line-height-xl);
  margin-bottom: 1.6rem;
}
.section-wrapper .section-container .multimedia-container {
  position: relative;
  overflow: hidden;
  /* Centering the container's content vertically 
  and horizontally */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .section-wrapper .section-container .multimedia-container > img {
    width: 100%;
  }
}
.section-wrapper .section-container .slide-swiper-wrapper {
  padding: 0;
  margin-top: 2rem;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section-wrapper .section-container .slide-swiper-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
  }
}
.section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks,
.section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities,
.section-wrapper .section-container .slide-swiper-wrapper .swiperTogether,
.section-wrapper .section-container .slide-swiper-wrapper .swiperCrew {
  height: 100%;
}
.section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-wrapper,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-wrapper,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-wrapper,
.section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-wrapper,
.section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-wrapper,
.section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-wrapper {
  align-items: center;
  cursor: none !important;
}
@media screen and (max-width: 1024px) {
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide {
    width: calc(80% - 20px);
    padding-left: 5%;
    margin-right: 0 !important;
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide:last-of-type {
    width: 85%;
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide {
    width: calc(80% - 40px);
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide.video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide.video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide.video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide.video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide.video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide.video {
    background-color: whitesmoke;
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide.video video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide.video video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide.video video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide.video video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide.video video,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide.video video {
    height: 100%;
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide:last-of-type,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide:last-of-type {
    width: calc(90% - 40px);
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide:last-of-type img, .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide:last-of-type picture,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide:last-of-type img,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide:last-of-type picture,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide:last-of-type img,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide:last-of-type picture,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide:last-of-type img,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide:last-of-type picture,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide:last-of-type img,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide:last-of-type picture,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide:last-of-type img,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide:last-of-type picture {
    width: 90%;
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide:last-of-type figcaption,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide:last-of-type figcaption,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide:last-of-type figcaption,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide:last-of-type figcaption,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide:last-of-type figcaption,
  .section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide:last-of-type figcaption {
    right: 90px;
  }
}
.section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.section-wrapper .section-container .slide-swiper-wrapper .swiperCatamaran .swiper-slide:nth-child(2n) img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide:nth-child(2n) img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperFoodDrinks .swiper-slide:nth-child(2n) img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperAmenities .swiper-slide:nth-child(2n) img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperTogether .swiper-slide:nth-child(2n) img,
.section-wrapper .section-container .slide-swiper-wrapper .swiperCrew .swiper-slide:nth-child(2n) img {
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1024px) {
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide {
    width: calc(70% - 40px);
  }
}
@media screen and (max-width: 1024px) {
  .section-wrapper .section-container .slide-swiper-wrapper .swiperFullCatamaran .swiper-slide img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
.section-wrapper .section-container .slide-swiper-wrapper .swiper-slide .img-info, .section-wrapper .section-container .slide-swiper-wrapper .swiper-slide figcaption {
  position: absolute;
  color: azure;
}
.section-wrapper .section-container .slide-swiper-wrapper .swiper-slide .img-info {
  top: 20px;
  left: 20px;
}
.section-wrapper .section-container .slide-swiper-wrapper .swiper-slide figcaption {
  right: 20px;
  bottom: 10px;
  font-size: var(--global-font-size-xs);
}
@media only screen and (max-width: 1024px) {
  .section-wrapper.--contains-slides .container {
    padding-left: 0;
    padding-right: 0;
  }
  .section-wrapper.--contains-slides .container .section-container .text-container {
    padding-left: 5%;
  }
  .section-wrapper .section-container {
    padding: 20px 0;
    min-height: auto;
  }
  .section-wrapper .section-container .multimedia-container {
    height: 400px;
    margin-top: 0;
  }
  .section-wrapper .section-container.landscape {
    min-height: auto;
    padding-top: 0;
  }
  .section-wrapper .section-container.landscape .multimedia-container {
    margin: 0;
    height: auto;
  }
  .section-wrapper .section-container.landscape .multimedia-container .slide-swiper-wrapper {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-wrapper .section-container {
    min-height: 100vh;
  }
  .section-wrapper .section-container .text-container h2 {
    font-size: 30px;
    margin-bottom: 1rem;
  }
  .section-wrapper .section-container .text-container h1 {
    font-size: var(--global-font-size-gigant);
    margin-bottom: 0;
  }
  .section-wrapper .section-container .text-container h3 {
    font-size: var(--global-font-size-gigant);
    margin-bottom: 0;
  }
  .section-wrapper .section-container .text-container p {
    max-width: 600px;
    padding-top: 15%;
  }
  .section-wrapper .section-container > div:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section-wrapper .section-container .multimedia-container {
    min-height: 100vh;
  }
}
@media only screen and (min-width: 1440px) {
  .section-wrapper .section-container {
    padding: 15vh 0;
  }
  .section-wrapper .section-container .slide-swiper-wrapper .swiperAboutUs {
    height: 100%;
  }
  .section-wrapper .section-container .multimedia-container {
    height: auto;
    max-height: 75vh;
    min-height: auto;
  }
}

.card-wrapper {
  list-style: none;
}
.card-wrapper .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 360px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.card-wrapper .card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, rgba(var(--global-color-black), 0) 0%, rgba(var(--global-color-black), 0.8) 100%);
  pointer-events: none;
}
.card-wrapper .card:nth-child(1n) {
  background-image: url("../assets/images/atila-pax-landscape-06.jpg");
}
.card-wrapper .card:nth-child(2n) {
  background-image: url("../assets/images/atila-01.jpg");
}
.card-wrapper .card.flat:nth-child(1n) {
  background-image: url("../assets/images/atila-inside-01.jpg");
}
.card-wrapper .card.flat:nth-child(2n) {
  background-image: url("../assets/images/atila-inside-02.jpg");
}
.card-wrapper .card > a {
  height: 100%;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  padding: 3vw;
  color: inherit;
  position: relative;
}
.card-wrapper .card h2 {
  font-family: var(--primary-font-regular);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 82%;
  text-transform: uppercase;
  color: rgba(var(--global-color-white), 1);
  width: 100%;
  display: flex;
  align-items: center;
}
.card-wrapper .card h2 span svg {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1rem;
}
.card-wrapper .card .card-back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5%;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-in-out;
}
.card-wrapper .card .card-back .btn {
  min-width: 50%;
  justify-content: center;
}
.card-wrapper .card .card-back .btn:not(:last-child) {
  margin-bottom: 1rem;
}
.card-wrapper .card.show-back .card-back {
  position: absolute;
  background-color: rgba(var(--global-color-black), 0.5);
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1024px) {
  .card-wrapper .card {
    height: 480px;
  }
}
@media only screen and (min-width: 1440px) {
  .card-wrapper .card {
    height: 65vh;
  }
}

.slider-wrapper {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.slider-wrapper h2 {
  font-family: var(--primary-font-regular);
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
  .slider-wrapper h2 {
    font-size: 85px;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1440px) {
  .slider-wrapper h2 {
    font-size: var(--global-font-size-gigant);
  }
}
.slider-wrapper .slide-swiper-wrapper .swiper {
  width: 100%;
  height: 100%;
}
.slider-wrapper .slide-swiper-wrapper .swiper .swiper-wrapper .swiper-slide {
  width: 80%;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 460px) {
  .slider-wrapper .slide-swiper-wrapper .swiper .swiper-wrapper .swiper-slide > div {
    height: 160px;
  }
}
.slider-wrapper .slide-swiper-wrapper .swiper .swiper-wrapper .swiper-slide:first-of-type {
  margin-left: 5%;
}
.slider-wrapper .slide-swiper-wrapper .swiper .swiper-wrapper .swiper-slide img, .slider-wrapper .slide-swiper-wrapper .swiper .swiper-wrapper .swiper-slide .picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: red;
}
@media only screen and (max-width: 960px) {
  .slider-wrapper {
    padding-bottom: 0;
  }
}

footer {
  background-color: rgba(var(--global-color-gray-super-dark), 1);
  color: rgba(var(--global-color-white), 1);
  padding-top: 6rem;
  padding-bottom: 3rem;
  overflow: hidden;
  text-align: left;
}
footer .footer-header {
  padding-bottom: 5%;
}
footer a {
  text-decoration: underline;
  color: rgba(var(--global-color-white), 1);
  transition: color 150ms ease-in-out;
}
footer a:hover {
  color: rgba(var(--asset-color), 1);
  text-decoration: underline;
}
footer h2 {
  font-family: var(--primary-font-regular);
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
}
footer address {
  font-size: var(--global-font-size-xxl);
  margin-top: 2rem;
}
footer address a {
  color: rgba(var(--global-color-white), 1);
  transition: color 150ms ease-in-out;
}
footer address a:hover {
  color: rgba(var(--asset-color), 1);
  text-decoration: underline;
}
footer address > div:not(:last-of-type) {
  margin-bottom: 1.8rem;
}
footer address > div p {
  color: rgba(var(--asset-color), 1);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
footer address > div > span {
  display: block;
  line-height: 120%;
}
footer address > div a {
  text-decoration: none;
  color: rgba(var(--global-color-white), 1);
  transition: color 150ms ease-in-out;
}
footer address > div a:hover {
  color: rgba(var(--asset-color), 1);
  text-decoration: underline;
}
footer address.address-bottom {
  gap: 2rem 0;
}
footer address.address-bottom > div:not(:last-of-type) {
  margin-bottom: 0;
}
@media only screen and (min-width: 960px) {
  footer address.address-bottom > div {
    padding-right: 5%;
  }
}
footer .footer-main {
  padding-bottom: 3rem;
}
footer .footer-copyright p {
  margin: 0;
  padding-top: 2rem;
  font-size: var(--global-font-size-normal);
  text-align: center;
}
footer .footer-copyright a {
  text-decoration: none;
}
@media only screen and (min-width: 640px) {
  footer .footer-copyright p {
    text-align: left;
    font-size: var(--global-font-size-sm);
  }
}
@media only screen and (min-width: 1024px) {
  footer h2 {
    font-size: 62px;
  }
}
@media only screen and (min-width: 1440px) {
  footer {
    padding-top: 15vh;
    padding-bottom: 8vh;
  }
  footer h2 {
    font-size: 72px;
  }
}

.onlyMobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .onlyDesktop {
    display: none;
  }
  .onlyMobile {
    display: inline;
  }
}
.copy-right {
  font-size: 12px;
  padding: 1rem 5%;
  text-align: left;
  margin-top: 2rem;
  width: 100%;
  font-family: "Inconsolata", monospace;
}
@media only screen and (min-width: 1025px) {
  .copy-right {
    letter-spacing: 1px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
  }
}

/* --------------------------------- */
/* || NAVBAR
/* --------------------------------- */
/*Cuando se activa el menu el body esta sin scroll*/
.no-scroll {
  overflow: hidden;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding-top: 2rem;
  transition: all ease-in-out 0.5s;
}
.navbar .fade-in {
  animation-delay: 500ms;
}
.navbar.hide-navbar {
  opacity: 0;
  visibility: hidden;
}
.navbar.show-navbar {
  transform: none !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 960px) {
  .navbar .container {
    padding: 0;
  }
}
@media only screen and (max-width: 640px) {
  .navbar .navbar-brand svg {
    max-width: 130px;
    height: auto;
  }
}
.navbar .nav-menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
.navbar .nav-menu li a {
  font-family: var(--primary-font-regular);
  color: rgba(var(--global-color-white), 1);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--global-font-size-xl);
}
.navbar .nav-menu.active {
  right: 0;
  background-color: rgba(var(--asset-color), 0.75);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
}
@media only screen and (min-width: 1024px) {
  .navbar .nav-menu {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .navbar {
    align-items: normal;
  }
  .navbar .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    z-index: 999;
    margin: 0;
    padding: 6rem 20px 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background-color: rgba(var(--asset-color), 0.75);
    width: 90%;
    transition: all 250ms ease-in-out;
  }
  .navbar .nav-menu .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(var(--global-color-white), 1);
  }
  .navbar .nav-menu .nav-item a {
    font-size: 25px;
    line-height: 100%;
    padding: 1rem 0 1rem 0;
    display: flex;
  }
}

.navbar.scrolling {
  border-bottom: none;
}

@media only screen and (max-width: 1024px) {
  .navbar.scrolling {
    height: 75px;
    box-shadow: none;
    border: 0;
  }
}
.hamburger {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .hamburger {
    display: block;
    z-index: 1000;
  }
  .hamburger.active .bar {
    background-color: rgba(var(--global-color-white), 1);
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-15px) rotate(-45deg);
  }
}
.hamburger .bar {
  display: block;
  width: 36px;
  height: 2px;
  margin: 15px auto;
  background-color: rgba(var(--global-color-white), 1);
  transition: all 150ms ease-in-out;
}/*# sourceMappingURL=styles.css.map */