/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


:root {
    --main-dark: #0E1015;
    --main-light: #fbf1de;
    --accent-color: #d4af37;
    --accent-color-hover: #d4bf79;
    --lightest-blue: #efd69d;
    --serif-font-stack: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
    --sans-font-stack:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    --font-body: 'Bw Glenn Sans', var(--sans-font-stack);
    --font-titling: "Merriweather", var(--serif-font-stack); 
    --font-regular: 'Bw Glenn Sans', var(--sans-font-stack);
    --font-medium: 'Bw Glenn Sans Medium', var(--sans-font-stack);
    --font-bold: 'Bw Glenn Sans Bold', var(--sans-font-stack);
    --font-light: 'Bw Glenn Sans Light', var(--sans-font-stack);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-size: 1rem;
    background-color: var(--main-dark) !important;
    color: var(--main-light);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    font-weight: 400;
}

.top-nav {
    position: fixed;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    width: 100%;
    padding:0.5rem 1rem 0rem;
    max-width: 800px;
    height: 70px;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    background: var(--main-dark);
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0px 5px 14px rgba(235, 229, 164, 0.15);
}

.top-nav .top-nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.85px;
    color: var(--accent-color-hover);
    cursor: pointer;
    padding: 1rem;
}

@media (max-width: 768px) {
    .top-nav {
        height: 60px;
    }
    .top-nav .top-nav-link {
        font-size: 0.75rem;
        padding: .75rem .3rem;
    }
}

.top-nav .top-nav-link:hover {
    color: var(--accent-color);
}

.top-nav .nav-dropdown {
    display: none;
}

.top-nav .top-nav-link.dd:hover {
    .nav-dropdown {
        display: flex;
    }
}

.top-nav .nav-dropdown {
    display: none;
    flex-direction: column;
    background-color: #000;
    padding: 1rem 1.35rem;
    border-radius: 1rem;
    transform: translateX(-80px);
    left:0;
    bottom: 100%;
    position: absolute;
    width: 280px;
}

.content-area {
    margin: 0 auto;
    width: 100%;
}

main {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}


/*ORIGINAL WP STYLES FIXES*/
.my-logo,
footer {
  width: 100%;
  padding-left: 1%;
  margin-bottom: 8px;
  background-color: #78baff;
  border: 1px solid #78baff;
}

body > header > h1 > a {
  color: #ffffff;
  font-weight: 400;
}


footer {
  margin-top: 4px;
}

a {
  text-decoration: none;
}

/* 'Margin: 0 auto' centers block content on the page */
.wrap {
  width: 99%;
  margin: 0 auto;
}

.titling-font {
    font-family: var(--font-titling);
}

.text-small {
    font-size: .8rem;
}

.content-area {
  display: inline-block;
}

.content-thin {
    width: 70%;
}

.content-full-width {
    width: 100%;
}

.content-area,
.primary-sidebar {
  display: inline-block;
}

.primary-sidebar {
  width: 25%;
  padding: 1%;
  vertical-align: top;
  background-color: #ececec;
}

.article-loop {
    width: 45%;
    text-align: left;
    margin: 5px;
    padding: 10px;
}

@media screen and (max-width: 800px) {
    .article-loop {
      width: 99%;
    }
  }

.article-full {
  width: 99%;
  padding: 1%;
}

.article-loop,
.article-full {
  display: inline-block;
  vertical-align: top;
  border-radius: 4px;
  margin-bottom: 4px;
}

@media screen and (max-width: 400px) {
    .content-area,
    .primary-sidebar {
      width: 100%;
    }
  }

/*END ORIGINAL WP FIXES*/

h1, h2, h3, h4, h5, .title {
    font-family: var(--font-titling);
    font-weight: 400;
}

h1 {
    font-weight: 300;
    /* @include h1title;*/
   font-family: var(--font-titling);
   font-weight: 300;
   font-size: 3.4rem;
   line-height: 1.2;
   text-align: left;
   color: var(--main-light);
   letter-spacing: 0px;
   margin: 2rem 0 1.5rem 0;
}
h1.superwide {
   width: 145%;
}


@media (max-width: 991px) {
    h1.superwide {
        width: calc(100% - 1.5rem);
        margin: 2rem auto;
    }
  }

h2 {
    /*@include h2title {*/
    font-family: var(--font-titling);
    font-weight: 300;
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--main-light);
    letter-spacing: -1px;
    margin: 2rem 0 1.5rem 0;
}

h3 {
    font-size: 2rem;
}

.subtitle, p.subtitle {
    margin-bottom: 2rem;
    line-height: 1.4;
}

p:not(.subheading):not(.subtitle), ul li {
    font-size: .875rem;
    margin-bottom:1.5rem;
    line-height: 1.4;
    font-family: var(--font-light);
}

.subheading.position-absolute {
    bottom:1.5rem;
    left: 1rem;
    margin-bottom: 0;
}

ul {
    list-style-type: none;
    text-indent: 0;
    margin:0;
}

.item-name ul li {
    display: inline-block;
}

.item-name ul li.left {
    font-family: var(--font-bold);
    min-width: 130px;
}

.item-name ul p:not(.subheading):not(.subtitle) {
    height: 0;
    padding: 0;
    margin:0;
    line-height: 0;
    font-size: 0;
}

.accent-text {
    color: var(--accent-color-hover);
}

.arrow {
    height: 19px;
    width: auto;
    position: relative;
    top:3px;
    transition: all .2s ease-in;
    right: -1rem;
}

.link-icon {
    height: 48px;
    width: auto;
    color: var(--accent-color);
}

.arrow-link {
    display: flex;
}

.arrow-link:hover > .arrow {
    right: -2rem;
    transition: all .2s ease-in;
}

a {
    color: var(--accent-color-hover);
}

a:not(.arrow-link):hover {
    color: #d4bf79;
}

a.social {
    border-radius: 24px;
    max-width: 48px;
    max-height: 48px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}

a:hover, a:focus, a:active {
    color: var(--lightest-blue);
    }

.social-btn {
    width: auto;
    height: 24px;
}

.d-flex.socials {
    gap: 1.5rem;
}

img {
    width: 100%;
    height: auto;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.mobile-hide {
    display: block;
}

.desktop-hide {
    display: none;
}

.featured-image {
    display: none;
}

@media (max-width: 991px) {
    .mobile-hide {
        display: none;
    }
    .desktop-hide {
        display: block;
    }
    .gap_4, .gap_2 {
        gap:1rem;
    }
  }

.flex-row {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: flex-start;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}


.flex-column {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-align-items: flex-start;
	-ms-flex-align: center;
	align-items: center;
	width: auto;
    gap:1rem;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

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

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

.flex-start {
    align-items: flex-start !important;
}

.justify-between {
    justify-content: space-between !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-item-full {
    flex: 0 1 100%;
}

/*2 COLUMNS FLEXBOX*/

.flex-item-half {
    flex:0 1 calc(50% - 2rem);
}

@media (max-width:768px) {
    .flex-item-half {
        flex:0 1 100%;
        margin:0 auto;
    }
    .flex-item-half:first-of-type {
        order: 2;
        margin-right: 0;
    }
    .flex-item-half:last-of-type:not(form .flex-item-half) {
        order: 1;
        margin-bottom:0;
    }
    form .flex-item-half:last-of-type {
        order: 1;
        margin-bottom:1rem;
    }
}

.flex-item-half-sm {
    flex:0 1 calc(50% - 5rem);
}

.flex-item-half-plus {
    flex:0 1 calc(60% - 5rem);
}

.flex-item-half.order_2 {
    margin-left: 2rem;
    margin-right: 0;
}
@media (max-width:991px) {
    .flex-item-half {
        flex:0 1 100%;
        margin:0 auto;
    }
    .flex-item-half:first-of-type {
        order: 2;
        margin-right: 0;
    }
    .flex-item-half:last-of-type {
        order: 1;
        margin-bottom:2rem;
    }
    .flex-item-half:last-of-type {
        order: 1;
        margin-bottom:2rem;
    }
    
    .flex-item-half.order_2 {
        margin-left: 0rem;
        margin-right: 0;
    }

    #about-stella .txt {
        order:1;
    }

    #about-stella .graphic {
        order: 2;
    }
        
    .graphic {
        order:1;
    }

    .txt, .flex-item-half.txt, .flex-item-third.txt, .flex-item-half-plus.txt {
        order:-1 !important;
    }
}
    
/*3 COLUMNS FLEXBOX*/

.flex-item-third {
    flex:0 1 calc(33% - 2rem);
    margin-right: 2rem;
    margin-top: 2rem;
}

#onboard-activities, #exciting {
    .flex-item-third {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.flex-item-third:nth-of-type(3n) {
        margin-right: 0rem;
    }

@media (max-width:768px) {
    .flex-item-third {
        flex:0 1 100%;
        margin:2rem auto;
    }
}

.justify-center {
	justify-content: center;
	justify-items: center;
	text-align: center;
}

.justify-space-between {
	justify-content: space-between;
	justify-items: space-between;
}

.justify-start {
	justify-content: start;
	justify-items: start;
}

.align-top {
	align-items: start;
	align-content: start;
}

.align-bottom {
	align-items: end;
	align-content: end;
}

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

.flex-no-wrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-grid {
    display:grid;
    gap: 1rem;
    justify-content: space-between;
    align-content: center;
}
.d-grid_4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   }
.d-grid_2 {
    grid-template-columns: repeat(auto-fit, minmax(calc(50% - 1rem), 1fr));
   }
.d-grid_3 {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
   }
.d-grid_single {
    grid-template-columns: repeat(auto-fit, minmax(100%, auto));
   }
.d-grid_layers {
	grid-template-areas: grid_layer;
}
.d-grid > * {
    grid-area: grid_layer;
    }

.pt_15 {
    padding-top: 1.5rem;
}
.pt_2 {
    padding-top: 2rem;
}
.pt_3 {
    padding-top: 3rem;
}
.pt_4 {
    padding-top: 4rem;
}
.pt_5 {
    padding-top: 5rem;
}
.pt_6 {
    padding-top: 6rem;
}

.pb_15 {
    padding-bottom: 1.5rem;
}
.pb_2 {
    padding-bottom: 2rem;
}
.pb_3 {
    padding-bottom: 3rem;
}
.pb_4 {
    padding-bottom: 4rem;
}
.pb_5 {
    padding-bottom: 5rem;
}
.pb_6 {
    padding-bottom: 6rem;
}

.r-4 {
   border-radius: 4px;
}

.r-8 {
   border-radius: 8px;
}

.r-16 {
   border-radius: 16px;
}

.r-24 {
   border-radius: 24px;
}

.r-32 {
   border-radius: 32px;
}

.margin-auto {
    margin:auto;
}

.mt_0 {
    margin-top:0;
}

.mt_05 {
    margin-top: 0.5rem;
 }
.mt_15 {
	   margin-top: 1.5rem;
	}
.mt_2 {
	   margin-top: 2rem;
	}
.mt_3 {
	   margin-top: 3rem;
	}
.mt_4 {
	   margin-top: 4rem;
	}
.mt_5 {
	   margin-top: 5rem;
	}
.mt_6 {
	   margin-top: 6rem;
	}


.mb_05 {
	   margin-bottom: 0.5rem;
	}
.mb_15 {
	   margin-bottom: 1.5rem;
	}
.mb_2 {
    margin-bottom: 2rem;
}
.mb_3 {
    margin-bottom: 3rem;
}
.mb_4 {
    margin-bottom: 4rem;
}
.mb_5 {
    margin-bottom: 5rem;
}
.mb_6 {
    margin-bottom: 6rem;
}

.gap_2 {
    gap:2rem;
}

.gap_4 {
    gap:4rem;
}

.margin_0-auto {
	margin: 0 auto;
}

.bold {
font-weight: 700;
font-family: var(--font-bold);
}

.semibold {
font-weight: 600;
}

.medium {
font-weight: 500;
}

.position-absolute {
    position: absolute;
}

.position-relative {
    position: relative;
}
.position-sticky {
    position: sticky;
    position: -webkit-sticky;
}

.position-static {
    position: static;
}

.position-fixed {
    position: fixed;
}

.white-text, p.white-text {
    color: white !important;
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.order_1 {
    order: 1;
}

.order_2 {
    order: 2;
}

.order_3 {
    order: 3;
}

.lg-number-wrap {
   font-family: var(--font-titling);
   font-weight: 300;
   font-size: 4.5rem;
   line-height: 1.2;
   text-align: center;
   color: var(--accent-color-hover);
   letter-spacing: 0px;
   margin: 2rem 0 1.5rem 0;
    display: block;
    color: var(--accent-color);
}

.large-numbers p.subtitle {
    text-align: center !important;
    color: var(--lightest-blue);
    font-family: var(--font-medium);
}

#video {
    min-width: 70vw;
}

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .youtube-video {
        width: 100%;
    }
  }
#video p {
    width: 100%;
    text-align: center;
    margin: 2rem auto;
    min-width: 70vw;
}

/*BUTTON STYLES*/

button {
    border: none;
    outline: none;
}

.buttons.d-flex {
    gap: 1rem;
    margin: 4rem 0;
}


@media (max-width: 991px) {
    .buttons.d-flex {
        margin: 4rem 0 4rem 0;
    }
  }

.btn, .wp-element-button, form .action-button {
    font-family: var(--font-medium);
    display: inline-block;
    text-align: center;
    background-color: var(--accent-color);
    border: 1px solid transparent;
    color: var(--main-dark);
    width: auto;
    border-radius: 24px;
    font-size: 1rem;
    text-decoration: none;
    padding: .875rem 1.75rem;
    letter-spacing: -0.1px;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    min-width: 200px;
}

form select.form-input-dropdown {
    background-color: #FFFFFF1a;
    width: 100%;
    height: 48px;
    border-radius: 16px;
    border: none;
    margin: 0.6rem 3px 0 3px;
    padding: 0 1rem;
    font-size: 1rem;
    color: white;
}

.btn.btn-sm {
    padding: .36rem .6rem;
}

.btn:hover, .wp-element-button:hover {
    color: white;
    background-color: var(--accent-color-hover);
}
.btn.btn-large, .wp-element-button.btn-large {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
}
.btn.btn-wide {
    padding: .875rem 2.5rem;
}
.btn.btn-outline, .wp-element-button-outline {
    background: transparent;
    color: var(--main-light);
    border: 1px solid var(--main-light);
}
.btn.btn-outline:hover, .wp-element-button-outline:hover, .wp-block-button.is-style-outline
> .wp-block-button__link:not(.has-text-color, .has-background):hover {
    background: var(--accent-color);
    color: var(--main-dark);
    border-color: var(--accent-color);
}

.btn.btn-white, .wp-element-button.white {
    background-color: var(--main-light);
    color: var(--main-dark);
}
.btn.btn-white:hover, .wp-element-button.white:hover {
    background-color: var(--accent-color);
    color: var(--main-dark);
    border-color: var(--accent-color);
}

.btn.btn-outline-white, .wp-element-button-outline.white {
    background-color: transparent;
    color: var(--main-light);
    border-color: var(--main-light);
}


@media (max-width: 991px) {
    .btn {
        margin: 1.5rem auto;
        text-align: center;
        display: block;
    }
  }

/*CONTAINER STYLES*/


.container.container-sm {
    width: 100%;
    max-width: 800px;
}
.container.container-lg {
    width: 100%;
    max-width: 1350px;
	padding: .3rem 1.5rem;
}
.container.container-full {
    width: 100%;
    max-width: unset;
}

.container.mt_6 {
    margin-top: 6rem;
}

.full-height {
    height: 100vh;
}

.background {
    background-color: #0E1015;
}

.full-bleed {
    --fullwidth-color: #0E1015;
    box-shadow: 0 0 0 100vmax var(--fullwidth-color);
    clip-path: inset(0 -100vmax);
    background-color: var(--fullwidth-color);
}

.max-width-900 {
    max-width: 900px !important;
}

.charter-webp, .boat-webp {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    background-position: 0 100%;
    z-index: -1;
    margin-left: -260px;
    overflow: hidden;
    min-width: 100vw;
    background: linear-gradient(0deg, #001417 45.83%, #000 99.76%);
}

.charter-webp img {
    height: auto;
    width: 100%;
    position: absolute;
    display: block;
    left:0;
    right:0;
    bottom:0;
    max-width: 1920px;
}

.boat-webp img {
    height: 100%;
    width: auto;
    position: absolute;
    display: block;
    left:0;
    right:0;
    bottom:0;
    max-width: 1920px;
}


@media (max-width: 991px) {
    .boat-webp img {
        max-width: unset;
        transform: translateX(-40%);
    }
  }

.book-webp img {
    width: 100%;
    height: auto;
    position: absolute;
    display: block;
    top:0;
    left:0;
    right:0;
    z-index: -1;
}

.boat-schema img {
    max-width: 280px;
    margin: 0 auto;
}


@media (max-width: 991px) {
    .boat-schema img {
        max-width: 100%;
    }
  }

.logo-footer {
    display: none;
}

aside.nav {
    position: relative;
    display: block;
    width: 100%;
    max-width: 260px;
    max-height: 100vh;
    min-width: 260px;
    margin: 0;
    padding: 0;
    z-index: 999;
}

nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
    max-height: 100vh;
    height: calc(100% - 8rem);
    margin: 2rem 1.5rem 4rem 1.5rem;
    padding-bottom: 4rem;
}

nav a {
    color: var(--main-light);
    margin-left: 36px;
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
}

nav a:hover, nav .nav-link.active {
    color: var(--accent-color-hover);
}

nav .nav-link.active {
    font-family: var(--font-medium);
}

.nav-link::before, nav .nav-link.active:before {
    content: " ";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    margin-left: -26px;
    border: 1.5px solid var(--main-light);
    top:50%;
    transform: translateY(-50%);
    transition: all .2s ease-in;
}

nav a:hover > .nav-link::before, nav .nav-link.active:before, .nav-link:hover::before  {
    border-color: var(--accent-color-hover);
    border-radius: 50%;
    border: 1.5px solid var(--accent-color-hover);
    width: 16px;
    height: 16px;
    margin-left: -32px;
    transition: all .2s ease-in;
    transform-origin: center;
}

nav a.button-nav, nav a.logo {
    margin-left: 0;
    width: 100%;
}

nav a.logo img {
    width: 100%;
    max-width: 130px;
    height: auto;
}

nav a.button-nav .btn {
    width: 100%;
    text-transform: none;
}

.footer-fixed {
    max-height: 48px;
    width: calc(100% - 3rem);
    margin: 0 auto 1rem;
    position: fixed;
    z-index: 9990;
    bottom: 0;
    left:0;
    right: 0;
}

.footer-fixed img {
    width: 42px;
    height: auto;
}

.central-footer {
    max-width: 1000px;
    margin: 0 auto .6rem auto;
    width: 100%;
    align-items: center;
    position: relative;
    z-index:9999;
}

.central-footer > div.d-flex.socials {
    flex-wrap: nowrap;
}

.footer-links {
    display: flex;
    gap:2rem;
}

footer {
    background-color: transparent;
    max-height: 56px;
    height: 48px;
    border: none;
    margin-bottom: 0;
}

.about-full-bg {
    position: absolute;
    display: block;
    content: " ";
    top:0;
    left:0;
    right:0;
    height: 100%;
    width: 100%;
    background: radial-gradient(54.08% 81.81% at 50% 38.95%, rgba(0, 0, 0, 0.00) 0%, #0E1015 99.76%), linear-gradient(176deg, #0E1015 3.42%, #22415D 28.2%, #212E37 62.47%, #1E3346 82.33%, #0E1015 105.24%);
}
.about-full-bg img {
    opacity: 0;
}

.link {
    color: var(--accent-color-hover);
    font-family: var(--font-medium);
}

.link:hover {
    color: var(--accent-color);
}

.link img {
    transform: rotate(0);
    transition: all .2s ease-in;
}

.link:hover img {
    transform: rotate(45deg);
    transition: all .2s ease-in;
}

.small-slider {
    position: relative;
    margin: 0 0 2rem 0;
    padding: 1.5rem;
    z-index: 999;
    gap: .5rem;
}


.small-slider-about {
    position: absolute;
    top: -20px;
    margin: 0 0 2rem 0;
    padding: 0;
    z-index: 999;
    gap: .5rem;
    max-width: 250px;
    right: -20px;
}


@media (min-width: 991px) {
    .small-slider {
        top:-50%;
    }
  }

.small-slider > div {
    flex: 1 0 100%;
}

.small-slider .person, .large-slider .person, .text-slider .person, .small-slider-about .person {
    margin-right: 1.2rem;
    margin-bottom: 2rem;
    border-radius: 34px;
    padding: 1.5rem;
    background: linear-gradient(334deg, rgba(252, 252, 252, 0.05) -8.53%, rgba(255, 255, 255, 0.01) 327.38%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.small-slider .person {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: start;
    color: var(--main-light);
    align-items: start;
    padding: 1rem;
    margin-bottom: .5rem;
    margin-right: 0;
    border: 1.5px solid #ffffff1a;
    width: 100%;
    flex: 1 1 25%;
}


.small-slider-about .person {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: start;
    color: var(--main-light);
    align-items: start;
    padding: 1rem;
    margin-bottom: .5rem;
    margin-right: 0;
    border: 1.5px solid #ffffff1a;
    width: 100%;
    max-width: 250px;
}

.text-slider {
    justify-content: space-between;
    align-content: space-between;
}

.text-slider .person {
    max-width: 32%;
    text-align: center;
    align-self: stretch;
    font-size: 1.2rem;
    font-family: var(--font-medium);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    align-content: space-between;
    margin: 2rem auto;
    flex-grow: 1;
}


@media (max-width: 991px) {
    .text-slider .person {
        max-width: unset;
        width: 100%;
        margin: .5rem auto;
    }
    .small-slider .person{
        flex: 1 1 100%;
    }
  }

.small-slider .person .profile, .small-slider-about .person .profile{
    width: 68px;
    height: 68px;
    margin: -8px 0 -8px -8px;
    border-radius: 24px;
    object-fit: cover;
}

.captain {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    display: flex;
}

.hero .small-slider .person img {
    height: 38px;
    width: auto;
}

.above-fold .small-slider .person .profile{
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 24px;
    object-fit: cover;
}

.hero .small-slider {
    max-width: 300px;
    top:6rem;
    right: 2.5rem;
}

.hero .small-slider .person {
    width: auto;
    height: auto;
    margin: .25rem 0;
    width: 100%;
    background: linear-gradient(334deg, rgba(252, 252, 252, 0.45) -8.53%, rgba(255, 255, 255, 0.31) 327.38%);
}

.large-slider .person .profile {
    width: 68px;
    height: 68px;
    margin: 0 1.2rem 0 0;
    border-radius: 24px;
    object-fit: cover;
}

.small-slider .person .name, .small-slider-about .person .name {
    font-family: var(--font-medium);
    font-size: 1rem;
}
.small-slider .person .position, .small-slider-about .person .position {
    font-family: var(--font-regular);
    font-size: 1rem;
}


.hero .small-slider .person {
    color: var(--main-dark);
    font-size: 1rem;
}

.large-slider {
    position: relative;
    bottom: 0;
    left: 0;
    width: calc(100% - 1.5rem);
    margin: 2rem auto;
    height: calc(300px + 4rem);
    z-index: 999;
    justify-content: space-between;
    margin-left:1.5rem;
    display: flex;
}

.large-slider .person {
    width: calc(100% - 4rem);
    margin: 0 1.2rem 0 0;
    background-color: #ffffffba;
}

.large-slider .person .name {
    margin-left:3px;
    color: var(--main-dark);
    font-family: var(--font-bold);
}

.large-slider .testimonial p {
    color: var(--main-dark);
}

.stars {
    height: 21px;
    width: auto;
}

.person-header {
    display: flex;
    width: 100%;
    margin-bottom: 2rem;
    text-align: left;
    justify-content: flex-start;
    color: var(--main-dark);
}

div[class^="bento-"] > span {
    position: absolute;
    font-size: 2.5rem;
    color: var(--main-light);
    font-family: var(--font-titling);
    font-weight: 700;
    z-index: 3;
    top:0;
    left:0;
    margin: 1.5rem;
    line-height: 1.1;
    text-align: left;
    max-width: 80%;
    overflow-wrap: break-word;
}

div[class^="bento-"] {
    transition: all .2s ease-in;
    cursor: pointer;
    font-size: 3rem;
    color: var(--main-light);
    font-family: var(--font-titling);
    font-weight: 700;
    overflow-wrap: break-word;
    padding: 0;
}

.bento-left::after, .bento-right::after, .bento-top::after, .bento-bottom::after  {
    content: " ";
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    border-radius: 20px !important;
    opacity: .3;
    background: linear-gradient(180deg, #7FC1DD 0%, rgba(127, 193, 221, 0.00) 100%), rgb(125, 124, 124) 50% / cover no-repeat;
    transition: all .2s ease-in;
}

.bento-left:hover::after, .bento-right:hover::after, .bento-top:hover::after, .bento-bottom:hover::after {
    opacity: .8;
    transition: all .2s ease-in;
}

div[class^="bento-"]:hover {
    transition: all .2s ease-in;
}

.bento-center-horizontal {
    gap: 1rem;
}

.bento-grid {
    gap:1rem;
    padding:0;
    margin: 0;
    width: 100%;
}

.bento-grid > div:not(.horizontal) {
    height: 436px;
    overflow: hidden;
    width: 32%;
    position: relative;
}

.bento-grid div.horizontal {
    height: 210px;
    overflow: hidden;
    width: 100%;
    position: relative;
    flex-grow: 1;
    display: block;
}

.bento-grid > div, .bento-center-horizontal > div {
    border-radius: 20px;
    flex-grow: 1;
}

.bento-right {
    background-image: url('/wp-content/themes/generatepress_child/assets/images/a-wr.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 290px;
    transition: all .2s ease-in;
}

.bento-top {
    background-image: url('/wp-content/themes/generatepress_child/assets/images/a-md.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}

.bento-bottom {
    background-image: url('/wp-content/themes/generatepress_child/assets/images/a-kyk.webp');
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}

.bento-left {
    background-image: url('/wp-content/themes/generatepress_child/assets/images/a-wb.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 290px;
    transition: all .2s ease-in;
}

.bento-left:hover {
    transition: all .2s ease-in;
}


@media (max-width: 991px) {        
    .bento-grid div.horizontal {
        height: 120px;
        overflow: hidden;
        width: 100%;
        position: relative;
        flex-grow: 0;
        display: block;
    }

    .bento-center-horizontal {
        height: 260px;
    }
  }

.activities-icons img {
    height: 95px;
    width: auto;
}

.hero .txt {
    z-index: 2;
}

.hero .tempslider {
    z-index: 1;
}

.plus-button {
    font-size: 2rem;
    font-family: var(--font-medium);
    color: var(--main-dark);
    padding: 0.23rem .95rem;
    line-height: 1.3;
    border-radius: 24px;
    background-color: var(--accent-color);
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    margin: 0;
    line-height: 1.2;
}

.plus-button.close {
    padding: 0.1rem 1.1rem;
}

.specifications {
    border-radius: 20px;
    border: 1px solid #7FC1DD;
    background: rgba(14, 16, 21, 0.23);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    margin:2rem auto;
    position: relative;
}

.specifications h4 {
    margin-bottom: 0.25rem;
    cursor: pointer;
}

.specs-contents {
    display: none;
    height: 0;
    transition: all .2s ease-in;
}

.specs-contents.open {
    display: flex;
    height: auto;
    transition: all .2s ease-in;
}

.specifications .item-name {
    margin-right: 1rem;
    font-family: var(--font-medium);
}

.specifications .item-desc {
    max-width: 50%;
}

.hero.hero-small {
    margin: 6rem auto 0 auto;
}

.about-boat .activities-icons {
    gap: 2rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
}

.about-boat .activities-icons > div{
    gap: .1rem;
    display: flex;
    flex-direction: column;
}

.about-boat .activities-icons img {
    height: 48px;
    width: auto;
}

.about-boat .activities-icons p {
    font-size: 1.3rem;
    text-align: center;
    font-family: var(--font-medium);
}

.max-paragraph {
    max-width: 800px;
    margin: 1.5rem auto;
}

.virtual-tour {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .virtual-tour {
        min-height: 200px;
    }
  }

/*END OF BASE STYLING FOR WEBSITE*/

/*SLIDER OF IMAGES*/

.tempslider > .item{
  position: absolute;
  opacity: 0;
  z-index: 0;
  width:100%;
  height: 100%;
  top:0;
  left:0;
  overflow:hidden;
}
.tempslider > .item.active{
  opacity: 1;
  z-index:10;
}
.tempslider .tempslider-nav{
  width:100%;
  height: 40px;
  position: absolute;
  z-index: 100;
  text-align:center;
  bottom:0;
  left:0;
}

.tempslider .tempslider-nav a{
  display: inline-block;
  margin:5px;
  width:15px;
  height:15px;
  background: transparent;
  border: 1px solid var(--main-light);
  overflow: hidden;
  border-radius:50%;
}
.tempslider .tempslider-nav a:hover{
  opacity: .9;
}
.tempslider .tempslider-nav a.active{
    background: var(--main-light);
  opacity: 1;
}
.tempslider .item.active .item-content > img{
  animation-name: fadeUp;
  animation-duration: 0.5s;
  object-fit: cover;
  position: relative;
}

.tempslider .tempslider-nav.white {
    margin-bottom: 1.5rem;
    --main-dark: #FFFFFF;
  }

.tempslider .item.active .item-content > .slider-bottom-info > .left-info, .tempslider .item.active .item-content > .slider-bottom-info > .right-info {
    animation-name: fadeUp;
    animation-duration: 0.5s;
    object-fit: cover;
    position: relative;
  }

.slider-bottom-info * {
    font-size: .75rem;
    color: var(--main-dark);
    text-align: left;
}

.slider-bottom-info {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    width: 100%;
    min-width: 100%;
    min-height: 25%;
    left:0;
    right:0;
    background-image: url('/wp-content/themes/generatepress_child/assets/images/slider-footer.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top;
}

.left-info {
    position: relative;
    left:0;
}

.left-info, .right-info {
    position: relative;
    bottom: -1rem;
}

.right-info {
    min-width: 28%;
}

@keyframes fadeUp {
  0% {
    padding-top: 60px;
    opacity: 0;
  }
  100% {
    padding-top: 0;
    opacity: 1;
  }
}

.tempslider {
    width: 55%;
    position: relative;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -3rem;
    margin-left: -5%;
    margin-right: 0%;
  color: #000;
  border-radius: 16px;
}
.tempslider > .item {
  text-align: center;
  border-radius: 6px;
}
.hiddenitem {
    opacity: 0;
    position: relative;
    display: block;
    margin-bottom:-10px;
  }

.tempslider > .item .item-content {
  padding: 0px;
  border-radius: 6px;
}

.card {
    /*background-color: #ffffff07;*/
    padding: 0;
    border-radius: 1rem;
    flex: 0 1 23%;
    transition: all .3s ease-out;
    align-items:stretch;
    display: flex;
    flex-direction: column;
}

.card .text {
    padding:1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.card img {
    border-radius: 1rem;
    transform: scale(.92);
    margin: 0;
    transition: all .3s ease-in;
}

.card .text p {
    font-size: .875rem;
}

.card .btn.btn-white {
    margin-top: auto;
}

.card:hover {
    transition: all .3s ease-in;

    img {
        transform: scale(1);
        transition: all .3s ease-in;
    }
}


@media (max-width: 991px) {
    .card {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }
    .card h4 {
        text-align: center;
    }
    .tempslider {
        width: 90%;
        margin: 2rem auto;
        position: relative;
    }
  }

/*FONT STYLING*/

@font-face {
    font-family: "Bw Glenn Sans Black";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Black.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Black.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Black Italic";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Black-Italic.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Black-Italic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Bold";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Bold.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Black.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Bold Italic";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Bold-Italic.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Black-Italic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Medium";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Medium.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Medium Italic";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Medium-Italic.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Medium-Italic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Regular.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Italic";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Regular-Italic.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Regular-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Light";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Light.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Light Italic";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Light-Italic.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Light-Italic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Thin";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Thin-Light.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Thin-Light.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bw Glenn Sans Thin Italic";
    src: url("assets/fonts/bw-glenn-sans/Bw-Glenn-Sans-Thin-Italic.otf") format("opentype");
    src: url("assets/fonts/bw-glenn-sans/alt/Bw-Glenn-Sans-Thin-Italic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/*RESPONSIVE DESIGN*/


@media (max-width: 991px) {
    .flex-column {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex-row {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    aside.nav {
        display: none;
    }

    .flex-item-half, .flex-item-half-sm, .flex-item-third, .flex-item-half-plus {
        width: 100%;
        margin: 1rem auto;
       flex:0 1 100%;
    }

    .flex-item-half:first-of-type {
       margin-right: auto;
    }

    .flex-item-half-plus .btn {
        text-align: center;
        margin: 2rem auto;
        display: block;
    }

    .main-container {
        max-width: 100vw;
    }

    .container:not(.site) {
        width: 100%;
        max-width: 100%;
        padding: 4rem 1.3rem 0 1.3rem;
        margin: 0 auto;
    }

    .tempslider {
        width: 100%;
        margin: 0 auto 2rem auto;
        position: relative;
    }

    .bento-grid > div:not(.horizontal) {
        height: 260px;
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 0;
        }

    .bento-grid > div:not(.bento-center-horizontal) {
        height: 120px;
        overflow: hidden;
        width: 100%;
        position: relative;
        min-width: 100%;
    }

    .bento-grid .bento-center-horizontal {
        height: 260px;
        overflow: hidden;
        width: 100%;
        position: relative;
        min-width: 100%;
    }

    div[class^="bento-"] > span {
        font-size: 2.4rem;
    }

    .full-height {
        height: auto;
    }

    h1 {
        font-size: 2.3rem;
        text-align: center;
        width: 100%;
    }

    h2 {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }

    .subheading {
        text-align: center;
    }
    
    .about-boat p.subtitle, .about-boat h3:not(.text-center) {
        text-align: left;
    }

    #about-stella p.subtitle, #contact p.subtitle, #about-stella h3 {
        text-align: center;
    }

    .about-boat h2 {
        text-align: center;
    }

    .btn {
        width: 80%;
        margin: 0 auto;
    }

    .activities-icons {
        gap:1rem;
    }

    .activities-icons:last-of-type {
        margin-bottom: 10rem;
    }

    .activities-icons img {
        margin-bottom: 2rem;
    }

    .about-boat .activities-icons {
        gap: 1.5rem;
        align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    margin-top: 0rem;
    }

    footer .flex-row {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .flex-row > div:not(.spacer) {
        margin:2rem auto;
    }

    div.spacer {
        display: none;
    }

    .footer-links {
        order:1;
    }
    .d-flex.socials {
        order: 2;
    }
    .central-footer > p {
        order: 3;
        margin-bottom: 6rem;
        margin-top: 2rem;
    }

    .logo-footer {
        width: 180px;
        margin: 2rem auto;
        display: block;
    }

    .footer-fixed {
        background-color: var(--main-dark);
        padding: 1.5rem;
        bottom: 0;
        width: 100vw;
        z-index: 99999;
        margin-bottom: 0;
    }

    .social-btn {
        width: auto;
        height: 38px;
    }

    .hero.hero-small {
        margin: 0rem auto;
    }

    .txt {
        margin: 2rem auto;
    }

    #about-stella.gap_4 {
        gap:0;
    }

    #amenities .gap_2 {
        gap: .5rem;
    }

    .order_1 {
        order: 1 !important;
    }

    .order_2 {
        order: 2 !important;
    }

    #onboard-activities p.subtitle {
        text-align: center;
    }

    .top-nav .top-nav-link {
        position: static;
    }

    .top-nav .nav-dropdown {
        width: 90vw;
        position: absolute;
        bottom: 48px;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 auto;
    }
  }


/*CF' MLS FORM*/
form {
position: relative;
}
form label {
position: relative;
display: block;
top:0%;
left:0;
color: var(--accent-color-hover);
font-family: var(--font-titling);
font-size: 1.2rem;
text-align: left;
margin: 0 auto .6rem auto;
}
form .label-subscript, .time-input {
font-family: var(--font-body);
font-size: 1rem;
color: white;
font-weight: 400;
}

form .label-subscript {
padding-top: 1rem;
}

form input.form-input {
background-color: #FFFFFF1a;
width: 100%;
height: 48px;
border-radius: 16px;
border: none;
margin: 0.6rem 3px 0 3px;
padding: 0 1rem;
font-size: 1rem;
color: white;
}

.wpcf7-list-item {
margin:0 1rem 0 0;
}

.small-form form .form-input {
margin:0.6rem 0;
}
@media (min-width: 991px) {
    .small-form {
    padding-left: 2rem;
    }
}

form textarea.form-input {
background-color: #FFFFFF1a;
width: 100%;
height: 140px;
border-radius: 16px;
border: none;
margin: 0rem 3px 1.2rem 3px;
padding: 1rem;
font-size: 1rem;
color: white;
}

.form-input {
max-width: calc(100% - 6px);
margin-left: 1.5px !important;
}


form label .wpcf7-list-item-label {
font-family: var(--font-medium);
color: var(--main-light);
font-size: 1rem;
margin-left: .5rem;
letter-spacing: .57px;
}

form .checkbox  input[type="radio"] ~ .wpcf7-list-item-label {
display: inline-block;
height: auto;
padding: .75rem 1rem;
margin: 5px auto 0 auto;
border-radius: 16px;
cursor: pointer;
}

form .checkbox#agree-to-contact label {
padding:0;
font-size:1rem;
height: 24px;
margin-bottom: 0;
visibility: visible !important;
}

form .checkbox.yesno .wpcf7-list-item input[type="radio"] ~ .wpcf7-list-item-label, form .checkbox.yesno .wpcf7-list-item input[type="checkbox"] ~ .wpcf7-list-item-label, form .checkbox-tile .wpcf7-list-item input[type="checkbox"] ~ .wpcf7-list-item-label {
background-color: #12a4c571;
display: inline-block;
height: auto;
padding: 1rem;
border-radius: 16px;
/*margin: 0rem 1rem 2.6rem auto;*/
}

form .checkbox.yesno .wpcf7-list-item.first .wpcf7-list-item-label {
background-color: #12a4c571;
/*margin: 0rem 1rem 2.6rem auto;*/
}
form .checkbox.yesno .wpcf7-list-item.last .wpcf7-list-item-label {
background-color: #EF3C3C71;
/*margin: 0rem auto 2.6rem 1rem;*/
}

form .checkbox.yesno .wpcf7-list-item.last input[type="radio"]:checked ~ .wpcf7-list-item-label, form .checkbox.yesno .wpcf7-list-item.last input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
    background-color: #ef3c3cd1;
}

form .checkbox.yesno .wpcf7-list-item.first input[type="radio"]:checked ~ .wpcf7-list-item-label, form .checkbox.yesno .wpcf7-list-item.first input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
    background-color: #12a4c5fe;
}

form .checkbox-tile .wpcf7-list-item input[type="checkbox"]:checked ~ .wpcf7-list-item-label {
    background-color: #12a4c5fe;
}

form input.form-input-fullw {
    border-radius: 16px;
    padding: .6rem 1rem;
    color: #FFF;
}

form .drinks p {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

form .drinks p label {
    margin: 0 auto 0 0;
}

@media (max-width: 991px) {
    form .drinks p {
        flex-direction: column;
    }
    form button {
        width: 100%;
    }
    form .drinks p label {
        margin: 0;
    }
  }

form .drinks p .wpcf7-form-control-wrap:last-of-type {
    width: 60%;
}

form .drinks p .wpcf7-form-control-wrap input[type="text"] {
    width: 100%;
}

form input.form-input-fullw.mt_1 {
    margin-top: 1rem;
}

form input.form-input-third {
    border-radius: 16px;
    padding: .6rem 1rem;
    color: #FFF;
    width: 100%;
    max-width: 8ch;
    margin-right: 1rem;
}
form input.form-input-fullw:focus, form input.form-input:focus {
    border-radius: 16px;
    padding: .6rem 1rem;
    color: #FFF;
    background-color: #ffffff2e;
}
form .flex-item-third p{
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-between;
-ms-flex-pack: space-between;
justify-content: space-between;
-webkit-align-content: flex-start;
-ms-flex-line-pack: flex-start;
align-content: flex-start;
-webkit-align-items: flex-start;
-ms-flex-align: flex-start;
align-items: flex-start;
width: auto;
}

form .flex-item-half {
flex:0 1 calc(50% - .5rem);
}

  /*STYLE THE CHECKBOX AND RADIO AS CHECKBOX*/
  /* Hide the browser's default checkbox */
form input[type="checkbox"], form input[type="radio"] {
    position: absolute;
    visibility: hidden;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  form #agree-to-contact input[type="checkbox"]{
    visibility: visible;
    width: 24px;
    height: 24px;
    margin-right: 2rem;
  }
  form #agree-to-contact .wpcf7-list-item-label {
        margin-left: 2rem;
    }

.contact-slider.flex-item-third, .three-numbers .flex-item-third {
    margin-right:0;
    margin-top:0;
  }
.contact-slider h1 {
    width: 90%;
}

.contact-slider {
    background-image: url('/wp-content/themes/generatepress_child/assets/images/book-now.webp');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    padding: 2rem 1rem;
    margin-top: 2rem;
    height: 80%;
}


@media (max-width: 991px) {
    .contact-slider {
        height: auto;
        order: 2;
    }
  }

  .three-numbers label {
    margin-left:0px;
  }

  /*MY CUSTOM FORM EDITS END*/

  .wpcf7-form{
    position: relative;
    /* border : 1px solid #eaeaea; */
    overflow: hidden;
    display: block !important;
  }
  .wpcf7-form .fieldset-cf7mls{
    border: none;
    background: none;
  }
  .wpcf7 form.sent .wpcf7-response-output {
      display: block;
  }
  .cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
    margin: 25px 0px 26px;
    padding: 13px 15px;
  }
  .cf7mls_next.action-button {
    font-family: var(--font-medium);
    display: inline-block;
    text-align: center;
    background-color: var(--accent-color);
    border: 1px solid transparent;
    color: var(--main-light);
    width: auto;
    border-radius: 24px;
    font-size: 1rem;
    text-decoration: none;
    padding: .875rem 1.75rem;
    letter-spacing: -0.1px;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    min-width: 200px;
    margin: 25px 0px 26px;
    position: relative;
  }
  .cf7mls_back.action-button {
    background-color: #e3e3e3;
    font-family: var(--font-medium);
    display: inline-block;
    text-align: center;
    border: 1px solid transparent;
    color: var(--main-light);
    width: auto;
    border-radius: 24px;
    font-size: 1rem;
    text-decoration: none;
    padding: .875rem 1.75rem;
    letter-spacing: -0.1px;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    min-width: 200px;
    position: relative;
  }
  .fieldset-cf7mls .wpcf7-form-control.wpcf7-cf7mls_preview_step {
      background-color: #27ae60;
      border: 0 none;
      border-radius: 3px;
      color: white;
      cursor: pointer;
      font-weight: bold;
      margin: 26px 0px 32px;
      padding: 13px 5px;
      min-width: 100px;
      position: relative;
  }
  .cf7mls_back.action-button {
    margin-right: 10px;
    float: left;
  }
  
  .cf7mls_next.action-button:hover,
  .cf7mls_back.action-button:hover,
  .fieldset-cf7mls .wpcf7-form-control.wpcf7-cf7mls_preview_step:hover {
      opacity: 0.8;
  }
  .fieldset-cf7mls .cf7mls_back{
    float: left;
  }
  .fieldset-cf7mls .cf7mls_next {
    float: left;
  }
  
  form.cf7mls input.wpcf7-form-control.wpcf7-submit {
    border-radius: 3px;
    padding: 13px 29px;
    font-weight: bold;
    margin: 16px 0px 26px;
    float: right;
    /* background-color: #0073aa; */
    /* color: #ffffff; */
  }
  
  form.cf7mls input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: 0.8;
  }
  
  
  .cf7mls_reviewing_overlay {
      position: fixed;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 100;
      display: none;
  }
  
  form.wpcf7-form.cf7mls_reviewing {
      position: relative;
      z-index: 999999;
      background-color: #fff;
  }
  form.wpcf7-form.cf7mls_reviewing:before{
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.8);
    width: 100000px;
    height: 100000px;
    left: -30000px;
    top: -30000px;
    z-index: 1;
  }
  form.wpcf7-form.cf7mls_reviewing > *{
    position: relative;
    z-index: 3;
  }
  form.wpcf7-form.cf7mls_reviewing .cf7mls_close_preview {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 0;
  }
  form.wpcf7-form.cf7mls_reviewing:after{
    content: '';
    position: absolute;
    top: -5px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: #ffffff;
    z-index: 2;
  }
  /*
   * Animation
  */
  /*
  button.cf7mls_btn:not(.disabled):before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -11px;
    width: 20px;
    height: 20px;
    border: 4px solid;
    border-left-color: transparent;
    border-radius: 50%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -moz-animation-name: rotate;
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  button.cf7mls_btn:not(.disabled):after {
    content: '';
    display: inline-block;
    height: 100%;
    width: 0px;
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -moz-transition-duration: 0.75s;
    -o-transition-duration: 0.75s;
    -webkit-transition-duration: 0.75s;
    transition-duration: 0.75s;
    -moz-transition-property: width;
    -o-transition-property: width;
    -webkit-transition-property: width;
    transition-property: width;
  }
  button.cf7mls_btn:not(.disabled).sending {
    pointer-events: none;
    cursor: not-allowed;
  }
  button.cf7mls_btn:not(.disabled).sending:not(.expand) {
    text-align: left;
  }
  button.cf7mls_btn:not(.disabled).sending:before {
    -moz-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  button.cf7mls_btn:not(.disabled).sending:after {
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    width: 20px;
  }
  
  @keyframes rotate {
    0% {
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  */
  .wpcf7-form .fieldset-cf7mls .cf7mls-btns {
    min-height: 80px;
  }
  .cf7mls_next.action-button img {
    width: 20px;
    position: relative;
    margin-left: 5px;
    vertical-align: middle;
  }
  .cf7mls_next.action-button.sending img {
    display: inline-block !important;
  }
  .cf7mls_next.action-button:focus,
  .cf7mls_back.action-button:focus {
      outline: none;
  }
  .fieldset-cf7mls-wrapper{
    position: relative;
    overflow: hidden;
    padding-right: 3px;
  }
  .fieldset-cf7mls-wrapper .fieldset-cf7mls{
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 800ms cubic-bezier(0.680, 0, 0.265, 1); /* older webkit */
  -webkit-transition: all 800ms cubic-bezier(0.680, -0.550, 0.265, 1.550); 
     -moz-transition: all 800ms cubic-bezier(0.680, -0.550, 0.265, 1.550); 
       -o-transition: all 800ms cubic-bezier(0.680, -0.550, 0.265, 1.550); 
          transition: all 800ms cubic-bezier(0.680, -0.550, 0.265, 1.550); /* easeInOutBack */
  
  -webkit-transition-timing-function: cubic-bezier(0.680, 0, 0.265, 1); /* older webkit */
  -webkit-transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550); 
     -moz-transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550); 
       -o-transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550); 
          transition-timing-function: cubic-bezier(0.680, -0.550, 0.265, 1.550); /* easeInOutBack */
  }
  .cf7mls-no-moving-animation .fieldset-cf7mls-wrapper .fieldset-cf7mls {
    transition: none;
  }
  .fieldset-cf7mls-wrapper .cf7mls_back_fs{
    position: absolute;
    left: 0;
    top: 15px;
    transform: translate(-110%,0);
    -webkit-transform: translate(-110%,0);
    -moz-transform: translate(-110%,0);
  }
  .fieldset-cf7mls-wrapper .cf7mls_current_fs ~ .fieldset-cf7mls{
    position: absolute;
    left: 0;
    top: 15px;
    transform: translate(110%,0);
    -webkit-transform: translate(110%,0);
    -moz-transform: translate(110%,0);
  }
  .wpcf7-form .cf7mls_progress_bar ~ .fieldset-cf7mls-wrapper fieldset {
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 2px;
    margin-bottom: 20px;
  }
  .fieldset-cf7mls-wrapper .cf7mls_current_fs{
    opacity: 1;
    visibility: visible
  }
  .fieldset-cf7mls.cf7mls_preview_fs {
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    position: relative;
  }
  .fieldset-cf7mls-wrapper .wpcf7-not-valid-tip {
    font-size: 13px;
  }
  .fieldset-cf7mls-wrapper div.wpcf7-validation-errors {
    border: none;
    display: block;
    color: #f00;
    font-size: 13px;
    padding-left: 0px;
    margin-left: 0px;
  }
  .fieldset-cf7mls-wrapper div.wpcf7-validation-errors .wpcf7-icon-wraning {
    display: block;
    float: left;
    margin-right: 8px;
    margin-top: 2px;
    fill: #f00;
  }
  .fieldset-cf7mls-wrapper .fieldset-cf7mls span.ajax-loader {
    position: absolute;
    right: 39px;
    margin-top: 33px;
  }
  @media only screen and (max-width: 767px) {
    .fieldset-cf7mls input[type="radio"],
    .fieldset-cf7mls input[type="checkbox"]{
      width: auto;
    }
    .fieldset-cf7mls input, .wpcf7-form .fieldset-cf7mls textarea{
      width: 100%;
    }
  }
  

  /*NUMBER COUNTER STYLES*/
  
.input-number {
    width: 80px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    display: flex;
  }

input[type="date"] {
    width: 120px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    display: flex;
    height: 40px;
    border-radius: 16px;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--main-light);
    background-color: #ffffff1a;
  }

  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="tel"], input[type="number"], textarea, select {
    color: var(--main-light);
    background-color: #ffffff1a;
    border:0;
    }
  
  .input-number,
  .input-number-decrement,
  .input-number-increment {
    border: 1px solid --accent-color;
    height: 40px;
    user-select: none;
  }
  
  .input-number-decrement,
  .input-number-increment {
    display: inline-block;
    width: 30px;
    line-height: 38px;
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
  }
  .input-number-decrement:active,
  .input-number-increment:active {
    background: var(--accent-color-hover);
  }
  
  .input-number-decrement {
    border-right: none;
    border-radius: 4px 0 0 4px;
  }
  
  .input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
  }

  /*DFUSE ORIGINAL STYLES*/

  .site-header {
    display: none;
  }

  .grid-container {
    max-width: unset;
  }

  .site-content .content-area {
    width: 100%;
  }

  .separate-containers .site-main {
    margin:0;
  }

  .copyright-bar {
    width:100%;
  }

  .site-info {
    background-color: transparent;
  }

  @media (min-width: 991px) {
    .site-main {
        padding-right: 4rem;
    }
  }
button, html input[type="button"], input[type="reset"], input[type="submit"], a.button, a.wp-block-button__link:not(.has-background) {
    color: var(--main-dark);
    background-color: var(--accent-color);
    }

button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, a.button:hover, button:focus, html input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, a.button:focus, a.wp-block-button__link:not(.has-background):active, a.wp-block-button__link:not(.has-background):focus, a.wp-block-button__link:not(.has-background):hover {
    color: var(--main-dark);
    background-color: var(--accent-color-hover);
}

.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .one-container .container, .separate-containers .paging-navigation, .inside-page-header {
    background-color: var(--main-dark);
}

main > p:first-of-type {
    display: none;
}


.separate-containers.both-right .site-main, .separate-containers.right-sidebar .site-main, .site .site-content .content-area .site-main {
    margin: 0 auto;
}

.about-boat .main-container.d-flex {
    max-width: 1600px;
}


/* CSS styles */
.carousel {
    width: 100%;
    margin-bottom: 20px;
}

.carousel-cell {
    width: 500px; /* Set the width of each cell */
    height: 500px; /* Set the height of each cell */
    margin: 52px 10px 52px 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative; /* Position for hover effect */
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    transition: all 0.3s;
}

.carousel-cell img {
    min-width: 100%; /* Ensure the image fills its parent container */
    min-height: 100%; /* Ensure the image fills its parent container */
    object-fit: cover; /* Cover entire container */
}

.carousel-cell:hover {
    transform: scale(1.2);
    z-index: 9999;
    transition: all 0.3s;
}

/*STYLING FAQ*/

.ewd-ufaq-faqs {
    max-width: 1200px;
    margin: 2rem auto;
}

.ewd-ufaq-faqs h3 {
    font-size: 1.2rem;
    font-family: var(--font-medium);
    color: var(--accent-color);
}

.ewd-ufaq-faqs .ewd-ufaq-faq-title-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
}

div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
    float: right !important;
}

.ewd-ufaq-faq-body .ewd-ufaq-faq-categories {
    display: none;
}

.ewd-ufaq-faq-body {
    padding-left: 25px !important;
}

.ewd-ufaq-post-margin.ewd-ufaq-faq-post, .ewd-ufaq-post-margin.ewd-ufaq-faq-post > p {
    font-size: 1rem;
}

h1.entry-title {
    text-align: center;
}

.terms {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.gap-1 {
	gap:1rem;
}


@media (max-width: 768px) {
	form .flex-row {
		flex-direction:column;
		width:100%;
		text-align:center;
		justify-content:center;
	}
	
	form *, form label {
		text-align:center;
		margin-right: auto;
		margin-left: auto;
	}
	
	form {
		max-width: 85vw;
	}
}

@media (max-width: 991px) {
    .terms {
        max-width: 90%;
    }

    footer .footer-links {
        flex-direction: column;
    }
  }