/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0.1
*/

/* TEMP */

.hide {
    display: none;
}

/* GLOBAL */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --green: #8DBDB4;
    --blue: #0E2A3A;
    --beige: #F7F6F3;
    --blue-grey: #62747F;
    --font-body: "inter-variable", sans-serif;
    --font-title: "haboro-condensed", serif;
    --font-size-h1: 3.5em;
    --font-size-h2: 3em;
    --font-size-h3: 1.3em;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    --box-shadow: 0px 3px 21px #00000017;
    --transition: 0.5s ease;
}

@media (max-width: 850px) {
    :root {
        --font-size-h1: 2.2em;
        --font-size-h2: 1.8em;
        --font-size-h3: 1.2em;
    }
}


body,
.body-font {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
}

strong {
    font-weight: var(--weight-semibold);
}

.bold {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
    font-family: var(--font-title);
    font-weight: var(--weight-extrabold);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

.green {
    color: var(--green);
}

.button:not(.open-video),
input[type='submit'] {
    font-size: 10px !important;
    letter-spacing: .15em;
    padding: 0.8em 2.2em;
    border: 0px solid transparent;
}

.button:hover {
    box-shadow: none;
    opacity: 0.7;
    outline: none;
}

.button.primary {
    color: #102D3E !important;
}

.header-button .button {
    background-color: #fff;
    color: #000000;
}

.header-button .button:hover {
    box-shadow: none;
    opacity: 0.7;
    outline: none;
}

.nav-uppercase>li>a {
    font-weight: 400;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

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

.dark .nav-vertical li li.menu-item-has-children>a,
.dark .nav-vertical-fly-out>li>a,
.dark .nav-vertical>li>ul li a,
.dark .nav>li.html,
.dark .nav>li>a,
.nav-dark .is-outline,
.nav-dark .nav>li>a,
.nav-dark .nav>li>button,
.nav-dropdown.dark .nav-column>li>a,
.nav-dropdown.dark>li>a {
    color: hsla(0, 0%, 100%, 1);
}

.icon-angle-right::before {
    font-size: 20px;
    content: "arrow_circle_right";
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.button:not(.icon)>span+i {
    margin-left: .1em;
    margin-right: -.15em;
}

.subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.phone {
    font-size: 0.85em;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
}

.phone::before {
    content: "mobile";
    font-family: "Material Symbols Outlined";
    color: var(--green);
    line-height: 1;
}

.radius img {
    border-radius: 25px;
}

.banner.radius.efoil,
.banner.radius.efoil .banner-bg {
    border-radius: 88px !important;
}

.gimmick {
    max-width: 115px;
}

.button.open-video {
    border: 1px solid;
}

.button.open-video {
    background-color: transparent;
}

.gradient {
    background: linear-gradient(to bottom, #ffffff 0%, #FEFBF8 70%);
}


/*********************************************/


/******* CUSTOM SELECT SECTION START *********/


/*********************************************/

select {
    border: none !important;
    background-color: inherit !important;
    border-bottom: 1px solid var(--green);
    padding: 10px !important;
    width: 200px !important;
    cursor: pointer !important;
}

.custom-select2.select-form .select-selected {
    margin: 0 !important;
    font-size: 11px !important;
}

.custom-select2.select-form .select-items {
    right: 0 !important;
    left: 0 !important;
    top: 48px !important
}

.custom-select2 {
    position: relative;
}

.custom-select2 select {
    display: none;
}

.custom-select2 .select-selected {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    letter-spacing: 0;
    font-size: 10px;
    position: relative;
    min-width: 200px;
    color: var(--blue);
    background-color: var(--white);
    border-radius: 10px;
    height: 40px;
    padding-left: 15px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-weight: 500;
}

.custom-select2 .select-selected svg {
    width: 15px;
    margin-right: 5px;
}

.custom-select2 .select-selected::after {
    content: "";
    position: absolute;
    color: var(--blue);
    right: 13px;
    display: inline-block;
    height: 0;
    width: 0;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--blue);
    border-left: 5px solid transparent;
    transform: rotate(180deg);
    transition: var(--transition);
}

.custom-select2 .select-selected.select-arrow-active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select2 .select-selected.select-arrow-active::after {
    content: "";
    transform: rotate(0);
    transition: var(--transition);
}

.custom-select2 .select-selected:focus {
    outline: auto
}

.custom-select2 .select-selected .arrow {
    width: 15px;
    transform: rotate(90deg);
    position: absolute;
    right: 10px
}

.custom-select2 .select-hide {
    display: none;
}

.custom-select2 .select-items {
    position: absolute;
    background-color: var(--white);
    border-top: 1px solid var(--green);
    top: 40px;
    left: 0;
    right: 0;
    color: var(--green);
    z-index: 2;
    font-family: var(--font-body);
    letter-spacing: 0;
    font-size: 12px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-select2 .select-items div {
    padding: 15px;
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 0;
    cursor: pointer;
}

.custom-select2 .select-items div:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.custom-select2 .select-items div:hover {
    background-color: rgba(37, 45, 95, 0.15);
}


/*********************************************/


/******** CUSTOM SELECT SECTION END **********/


/*********************************************/


/*********************************************/


/******* NAUTIC SEARCH SECTION START *********/


/*********************************************/

.nautic-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.nautic-search-wrapper .nautic-search-form {
    background-color: rgba(28, 60, 74, 0.25);
    padding: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.nautic-search-wrapper .nautic-search-form .form-group {
    width: 33%;
    margin-right: 15px;
}

.nautic-search-wrapper .nautic-search-form .form-group:last-child {
    margin-right: 0;
}

.nautic-search-wrapper .nautic-search-form .form-group input,
.nautic-search-wrapper .nautic-search-form .form-group select,
.nautic-search-wrapper .nautic-search-form .form-group button {
    margin: 0;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 10px;
    border-radius: 10px !important;
    border: none;
    color: var(--blue);
    height: 40px;
    padding-left: 20px;
}

.nautic-search-wrapper .nautic-search-form .form-group input::placeholder {
    color: var(--blue);
}

.nautic-search-wrapper .nautic-search-form .form-group input {
    background-color: var(--white);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%238DBDB4'><path d='M200-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v560q0 33-23.5 56.5T760-80H200Zm0-80h560v-400H200v400Zm0-480h560v-80H200v80Zm0 0v-80 80Z'/></svg>");
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: left 12px center;
    padding-left: 32px;
    font-weight: 500;
}

.nautic-search-wrapper .nautic-search-form .form-group input.filled {
    background-image: none !important;
    padding-left: 15px;
}

.easepick-wrapper {
    z-index: 99999 !important;
}

.nautic-search-wrapper .nautic-search-form .form-group .btn-search {
    width: 100%;
    background-color: var(--green);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nautic-search-wrapper .nautic-search-form .form-group .btn-search:hover {
    background-color: rgba(141, 189, 180, 0.7);
    box-shadow: inherit;
}

.nautic-search-wrapper .nautic-search-form .form-group .btn-search svg {
    margin-right: 5px;
    width: 15px;
}

@media (max-width: 767px) {
    .nautic-search-wrapper .nautic-search-form {
        flex-direction: column;
    }

    .nautic-search-wrapper .nautic-search-form .form-group {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .nautic-search-wrapper .nautic-search-form .form-group:last-child {
        margin-bottom: 0;
    }

    .nautic-search-wrapper .nautic-search-form .form-group input {
        text-align: center;
        background-image: none;
    }

    .nautic-search-wrapper .nautic-search-form .select-selected {
        justify-content: center;
    }

    .nautic-search-wrapper .nautic-search-form .select-selected svg {
        display: none;
    }
}


/*********************************************/


/******** NAUTIC SEARCH SECTION END **********/


/*********************************************/


/*********************************************/


/******** TESTIMONIES SECTION START **********/


/*********************************************/

.testimonies-container {
    position: relative;
}

@media (min-width: 575px) {
    .testimonies-wrapper {
        margin-right: calc(-50vw + 40%) !important;
        overflow: hidden;
    }
}

.testimonies-wrapper .owl-testimonies .owl-stage-outer {
    overflow: inherit;
}

.testimonies-wrapper .owl-testimonies .owl-item {
    background-color: var(--beige);
    padding: 25px;
    border-radius: 25px;
    position: relative;
}

.testimonies-wrapper .owl-testimonies .owl-item p {
    padding-bottom: 50px;
    color: var(--blue-grey);
}

.testimonies-wrapper .owl-testimonies .owl-item .author-wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 25px;
}

.testimonies-wrapper .owl-testimonies .owl-item .author-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonies-container .customNav {
    position: absolute;
    right: 50px;
    top: -80px;
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .testimonies-container .customNav {
        right: 0px;
        top: inherit;
        bottom: -60px;
    }
}

.testimonies-container .customNav .customTestimoniesPrevBtn {
    border: 1px solid var(--blue);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.testimonies-container .customNav .customTestimoniesNextBtn {
    transform: rotate(180deg);
    border: 1px solid var(--green);
    background-color: var(--green);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.star-rating span:before,
.star-rating:before,
.woocommerce-page .star-rating:before {
    color: #FFB000;
    font-size: 13px;
}

.testimonies-wrapper .owl-stage-outer {
    font-size: 13px;
}

.testimonies-wrapper .author .name {
    color: #0E2A3A;
    font-weight: bold;
}

.testimonies-wrapper svg {
    width: 13px;
    height: 13px;
}

.note {
    max-width: 100px;
}


/*********************************************/


/********* TESTIMONIES SECTION END ***********/


/*********************************************/

.services-grid.row-collapse>.col {
    padding: 2.5px !important;
}


/*********************************************/


/********* FICHE BOAT ***********/


/*********************************************/

.services-bar.stack {
    background-color: #F7F6F3;
    padding: 10px 20px;
    border-radius: 25px;
}

.featured_item-template-default .text h2 {
    font-size: 38px;
}

.featured_item-template-default .col-inner ul li {
    margin-left: 0em;
}

.featured_item-template-default ul {
    list-style: none;
}


/* REASSURANCE */

.icon-box .has-icon-bg .icon .icon-inner {
    background-color: var(--fs-color-primary);
}

.icon-box .has-icon-bg i,
.icon-box.has-icon-bg svg,
.icon-box .has-icon-bg svg path {
    fill: #fff;
}


/* BOATS */

.boats .box-image .image-cover {
    position: relative;
    /* ancre pour l'absolu */
}


/* La galerie remplit entièrement la zone "cover" */

.boats .box-image .image-cover .featured-item-gallery {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}


/* Assurer que Flickity occupe la hauteur dispo (sinon viewport=0) */

.boats .box-image .image-cover .featured-item-gallery,
.boats .box-image .image-cover .featured-item-gallery .flickity-viewport,
.boats .box-image .image-cover .featured-item-gallery .flickity-slider {
    height: 100% !important;
    border-radius: 25px;
}


/* Chaque slide prend toute la largeur + hauteur */

.boats .box-image .image-cover .featured-item-gallery__cell {
    width: 100%;
    height: 100%;
}


/* Images uniformes (même ratio visuel) */

.boats .box-image .image-cover .featured-item-gallery__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Dots */

.boats .box-image .image-cover .featured-item-gallery .flickity-page-dots {
    bottom: 10px;
}

.boats .box-image .image-cover .featured-item-gallery .flickity-page-dots .dot {
    width: 6px;
    height: 6px;
    margin: 0 4px;
    opacity: .35;
    background-color: #fff !important;
}

.boats .flickity-page-dots .dot {
    border: 3px solid #fff !important;
}

.boats .box-image .image-cover .featured-item-gallery .flickity-page-dots .dot.is-selected {
    opacity: .95;
}

.boats .featured-item-excerpt {
    padding: 15px 0px;
}

.boats .featured-item-price {
    font-size: 16px;
}

.boats .icons {
    color: #000000;
}

.boats .icons-sep {
    color: #DADADA;
    margin: 0 3px;
}

.boats .box-text-inner {
    padding: 10px 30px 10px 30px;
    font-size: 12px;
}


/* Blog */

.category .blog-wrapper {
    padding-top: 0px;
}

.blog-wrapper .section.dark {
    margin-bottom: 60px !important;
}

.entry-content.single-page {
    max-width: 800px;
    margin: auto;
}

.post-categories-pills>* {
    --stack-gap: 1rem;
}

a.pill {
    background-color: #F4F4F4;
    padding: 10px 20px;
    border-radius: 25px;
    color: #62747F;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .15s ease, background-color .15s ease, transform .15s ease;
}

a.pill:hover,
a.pill.active {
    color: var(--green);
}

.box-text .box-text-inner p {
    color: #62747F !important;
}


/* FOOTER */

.absolute-footer {
    display: none;
}

.widget>ul>li+li,
ul.menu>li+li {
    border-top: 0px solid #ececec;
}

.shortcode-menu {
    text-transform: uppercase;
}

.dark ul.menu li,
.desc-footer {
    color: #fff !important;
    font-size: 11px;
}

.desc-footer p {
    line-height: 18px !important;
    font-size: 11px;
}

#footer * {
    letter-spacing: 0.1em;
}


/*************** FORM ***************/

label,
legend {
    font-size: .85em;
    font-weight: 400;
}

.wpcf7-list-item-label,
.wpcf7 .wpcf7-not-valid-tip {
    text-align: left;
}

.wpcf7-form .wpcf7-spinner {
    display: none !important;
}

.wpcf7-form .container-submit {
    margin-top: 20px;
}

.wpcf7-form-control-wrap {
    padding: 0 5px;
}

.wpcf7-form-control-wrap ::placeholder {
    color: #62747F;
}

.select-resize-ghost,
.select2-container .select2-choice,
.select2-container .select2-selection,
input[type=date],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
select,
textarea {
    background-color: #F6F6F6;
    border: 1px solid #F6F6F6;
    box-shadow: none;
    color: #62747F !important;
    font-size: 14px;
    height: 3em;
    padding: 0.7em 1em;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
    background-color: #F6F6F6;
    box-shadow: none;
    color: #000 !important;
    opacity: 1 !important;
    outline: 0;
}

[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid #333;
    border-radius: 0;
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    margin-bottom: 0;
    flex-shrink: 0;
    padding: 0px !important;
}

[type=checkbox]:hover {
    border-color: #000;
}

[type=checkbox]:checked {
    background-color: #000;
    border-color: #000;
}

.wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 0px;
}

.wpcf7 .wpcf7-not-valid-tip {
    background-color: transparent;
    font-size: 0.75em;
    margin-bottom: 10px;
}

.wpcf7 .wpcf7-not-valid-tip:after {
    display: none;
}

.wpcf7-form {
    max-width: 500px;
    margin: 40px auto;
}

input[type='submit'] {
    color: #000;
}


/*************** TARIFS ***************/

.tarifs p.bold span::after {
    content: " € / mois";
    font-size: 10px;
    vertical-align: super;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.surtitre {
    font-size: 12px !important;
    letter-spacing: .15em;
    font-weight: 600;
}


/* FAQ */

.accordion .toggle {
    left: auto;
    right: 0;
    margin-right: 5px;
    margin-left: 5px;
    top: 0.6em;
}

.toggle i {
    font-size: 16px;
    color: #0E2A3A;
}

.accordion-title {
    border-top: 1px solid #86949C;
    font-size: 16px;
    padding: 0.8em 2.3em;
    font-weight: 600;
    color: #0C2838 !important;
}

.accordion-title.active {
    background-color: transparent;
    font-weight: 600;
}


/* TABS */

.tabbed-content .nav-line-bottom a {
    font-size: 12px;
}

.tabbed-content .nav-line-bottom li {
    margin: 10px 30px;
}

.tabbed-content .nav>li.active>a {
    font-weight: 600;
}


/* BLOG */

.module-blog img,
.module-blog .overlay {
    border-radius: 25px;
}

.module-blog .blog-post-inner .is-divider {
    height: 0px;
}

.module-blog .from_the_blog_excerpt {
    font-size: 0.85em;
}

.owl-carousel.owl-blog .owl-item .col {
    height: 100%;
    display: flex;
    padding: 0 5px 30px;
}


/* le wrapper coupe tout ce qui sort À GAUCHE */

.blog-slider-wrapper {
    position: relative;
    overflow: hidden;
    /* coupe à gauche */
}


/* mais on autorise le débordement interne (sinon Owl le masque) */

.blog-slider-wrapper .owl-stage-outer {
    overflow: visible !important;
}


/* IMPORTANT :
   on décale le carrousel vers la gauche d'une valeur = stagePadding
   -> plus rien ne dépasse à gauche, mais ça dépasse à droite.
*/

.blog-slider-wrapper .owl-stage {
    margin-left: calc(var(--owl-pad, 0px) * -1);
}




.post-categories-pills.items-stretch {
    align-items: center;
}

@media (max-width: 850px) {

    .post-categories-pills {
        margin-bottom: 25px;
    }

    .off-canvas-right .mfp-content {
        background-color: #335460 !important;

    }

}