/* 
** Ce fichier regroupe toutes les class CSS utilisées pour le site ;
*/
@import url('font-kumbh-sans.css');

:root {
    --color-primary: #344897;   
    --color-primary-rgb: 52, 72, 151;
    --color-primary-foreground: #fff;
    --color-primary-contrast: #03246C;

    --color-secondary: #85B633;
    --color-secondary-rgb: 133, 182, 51;
    --color-secondary-foreground: #fff;

    --color-tertiary: #EFCD86;

    --color-text: #3F3F3F;
    --color-text-dark: #000;
    --color-text-muted: #696969;
    --color-primary-foreground: #fff;
    --color-text-dark-foreground: #D9D9D9;
    --color-border: #ADADAD;
    --color-bg: #fff;
    --color-bg-muted: #D7DCF4;
    --color-bg-dark: #F5F5F4;

    --border-radius: 0;
    --box-shadow: 0 4px 10px rgba(0,0,0,.05);
    --box-shadow-dark: 0 4px 10px rgba(0,0,0,.1);

    --header-height: 870px;
}

html,
body {
    font-family: 'Kumbh Sans', sans-serif !important;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}
html,
body,
p {
    color: var(--color-text);
    line-height: 26px;
    font-weight: 300;
    font-size: 17px;
    font-family: 'Kumbh Sans', sans-serif;
}
body {
    position: relative;
}
section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
strong {
    font-weight: 600;
}
h1, h2 {
    color: var(--color-bg2);
    margin-bottom: 25px;
    font-family: 'Kumbh Sans', sans-serif;
}
h1 {
    font-size: 74px;
    line-height: 1.5;
}
h2 {
    font-size: 58px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-primary);
}
h2 span {
    font-size: 35px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-text);
    display: block;
}
h3 {
    font-size: 34px;
    line-height: 54px;
    margin-bottom: 0;
}
h4 {
    font-size: 20px;
}
a {
    color: var(--color-primary);
}
.pretitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: .5px;
    color: var(--color-primary);
}
.pretitle-before {
    position: relative;
}
.pretitle-before::before {
    content: " ";
    height: 1px;
    width: 53px;
    right: calc(100% + 20.5px);
    top: 13px;
    position: absolute;
    background-color: var(--color-primary-foreground);
}
.bi.bi-list:before {
    content: "\F479";
}
.bi.bi-x:before {
    content: "\F62A";
}
.text-p {
    font-size: 19px;
    font-weight: 300;
    line-height: 30px;
    color: var(--color-text);
    margin-bottom: 38px;
}
.text-lg {
    font-size: 21px;
    line-height: 30px;
}
.subheading {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
}
::marker {
    font-size: 16px;
}
.text-underline {
    text-decoration: underline;
}
.color-primary {
    color: var(--color-primary) !important;
}
.color-secondary {
    color: var(--color-secondary) !important;
}
.color-blue {
    color: #60ade8 !important;
}
.color-text {
    color: var(--color-text) !important
}
.bg-primary {
    background: var(--color-primary) !important;
}
.bg-secondary {
    background: var(--color-seondary) !important;
}
.br-primary {
    border-radius: 9px;
}
.icon-lg {
    font-size: 38px;
}
.fs-14 {
    font-size: 14px;
    line-height: 22px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
body .block .fs-21 {
    font-size: 21px;
    line-height: 20px
}
.fw-400 {
    font-weight: 400;
}
.lh-40 {
    line-height: 40px;
}
.flex-1 {
    flex: 1;
}
.flex-none {
    flex: none;
}
.h2-sm {
    font-size: 37px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 19px;
}
.img-fluid {
    object-fit: cover;
    object-position: center;
}
.img-responsive {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: var(--border-radius);
}
.img-square {
    padding-top: 100%;
}
.img-landscape {
    padding-top: 70%;
}
.img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(12, 1fr); */
    gap: 12px 10px;
    height: 100%;
}
.img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.img-grid img:nth-child(1) { grid-area: 1 / 2 / 9 / 3; }
.img-grid img:nth-child(2) { grid-area: 1 / 1 / 7 / 2; }
.img-grid img:nth-child(3) { grid-area: 7 / 1 / 13 / 2; }
.img-grid img:nth-child(4) { grid-area: 9 / 2 / 13 / 3; }

.img-grid.img-grid-2 img:nth-child(1) { grid-area: 1 / 2 / 8 / 3; }
.img-grid.img-grid-2 img:nth-child(2) { grid-area: 8 / 2 / 13 / 3; }
.img-grid.img-grid-2 img:nth-child(3) { grid-area: 1 / 1 / 6 / 2; }
.img-grid.img-grid-2 img:nth-child(4) { grid-area: 6 / 1 / 13 / 2; } 

/* Navigation & Navbar */

.nav-logo {
    flex: none;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.nav-logo a {
    text-decoration: none;
    transition: all .2s ease;
    display: inline-block;
    padding: 0;
}
.nav-logo a img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

nav {
    z-index: 1024;
    background: transparent;
    position: relative;
    padding: 0;
}
nav.nav-wrapper {
    z-index: 1025;
    padding-top: 16px;
    padding-bottom: 16px;
}
nav.nav-wrapper .container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
nav .nav-content {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
nav .nav-content ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    flex: 1;
    padding: 0;
    width: 100%;
}
nav .nav-content ul .nav-link {
    padding: 0;
    text-decoration: none;
    position: relative;
    line-height: 29px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .7px;
    background-color: transparent;
    -webkit-appearance: none;
    border: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-dark);
}
nav .nav-content ul .nav-link img {
    transition: all .12s ease-in-out;
}
nav .nav-content ul .nav-link[aria-expanded="true"] img {
    transform: rotate(180deg);
}
nav .nav-content ul .nav-link:not(.active):hover {
    color: #868787;
}
nav .nav-content ul .nav-link.active {
    color: var(--color-primary);
    font-weight: 800;
}
nav .nav-link-btn {
    border: 2px solid var(--color-primary);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 13px 32.51px;
    border-radius: 50px;
    line-height: 23px;
    transition: all .2s ease-in-out;
    color: var(--color-primary-foreground);
    background-color: var(--color-primary);
    display: inline-block;
    line-height: 17px;
}
nav .nav-link-btn:hover {
    background-color: var(--color-primary-foreground);
    color: var(--color-primary);
}
.nav-menu-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    border: 1px solid var(--color-primary);
    -webkit-appearance: none;
    font-size: 24px;
    z-index: 1;
    border-radius: 50px;
}

/* Header */

header {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
}
header.header-simple {
    padding-top: 40px;
    padding-bottom: 0;
}
header.header-simple h1 {
    font-size: 42px;
    line-height: 42px;
    color: var(--color-text-dark);
    margin-bottom: 0;
    text-align: center;
}
header.featured-header {
    padding-top: 344px;
    padding-bottom: 127px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
header.featured-header img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
header.featured-header h1 {
    font-size: 52px;
    line-height: 54px;
    font-weight: 500;
    text-align: center;
    display: block;
    width: 491px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}
header.featured-header h1 .title-pre {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .6px;
    line-height: 22px;
    display: block;
    text-align: center;
}
header.featured-header h1 .title-primary {
    font-size: 44px;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}
header.featured-header h1 .title-post {
    font-size: 39px;
    font-weight: 200;
    line-height: 37px;
    display: block;
    text-align: center;
}
header.featured-header h1 .title-post::before {
    content: " ";
    width: 105px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 13px;
    display: block;
}
header.featured-header h1 span {
    font-size: 64px;
    line-height: 54px;
    font-weight: 700;
}
header.featured-header .header-btn {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #fff;
    border-left: 2px solid #fff;
    transition: all .2s ease-in-out;
    padding: 7px 7px 7px 27px;
    border-radius: 0 50px 50px 0;
    display: inline-block;
}
header.featured-header .header-btn::after {
    content: " ";
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url('../img/icon/arrow-right.png');
    background-size: contain;
    background-position: center;
    margin-left: 25px;
    vertical-align: -5px;
}
header.featured-header .header-btn:hover {
    background-color: rgba(255,255,255,.2);
    text-decoration: none;
    backdrop-filter: blur(3px);
}
header.featured-header .header-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 291px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    width: 100%;
    max-width: 1026px;
}
header .featured-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
header.header-small {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
}
header.featured-header.header-small img {
    opacity: .65;
}
header.header-small .header-subtitle {
    margin-bottom: 0;
}
header h1 {
    line-height: 72px;
    font-size: 70px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 33px;
    margin-top: 0;
}
header p {
    line-height: 24px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 33px;
}
.header-content {
    padding-top: 31px;
    padding-bottom: 95px;
}
.header-content h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    color: var(--color-text);
}
.header-content h1 span {
    color: var(--color-primary);
}
.header-content p {
    color: var(--color-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 20px;
}
.header-content .btn.btn-primary {
    background-color: var(--color-primary);
    border-color: none;
    border-radius: 50px;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
}
header .btn.btn-primary:hover {
    background-color: var(--color-secondary);
}

details {
    background-color: var(--color-bg-muted);
}
details summary {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    padding: 10px 15px;
    transition: all .15s ease-in-out;
    font-weight: 500;
    font-size: 16px;
}
details summary svg {
    transition: all .15s ease-in-out;
}
details summary:hover {
    background-color: var(--color-secondary);
}
details[open] summary svg {
    transform: rotate(180deg);
}
details .details-content {
    padding: 10px 15px;
}

/* Footer */

footer {
    font-size: 12px;
    position: relative;
    z-index: 18;
}
footer .footer-bottom {
    padding: 60px 41px 53px 50px;
    background-color: var(--color-primary);
}
footer * {
    color: var(--color-primary-foreground);
    transition: all .2s;
}
footer .footer-logo {
    filter: brightness(10);
}
footer h3 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    line-height: 24px;
    margin-bottom: 40px;
    position: relative;
}
footer h3::before {
    content: " ";
    width: 53px;
    height: 1px;
    background-color: var(--color-primary-foreground);
    position: absolute;
    bottom: -17px;
    left: 0;
}
footer p,
footer a,
footer div,
footer address {
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    opacity: 1;
}
footer a {
    text-decoration: none;
}
footer a:hover {
    color: var(--color-primary-foreground);
}
footer ul,
footer li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
footer .footer-bottom ul li {
    margin-bottom: 11px;
    font-weight: 500;
}
footer hr {
    margin-top: 69px;
    margin-bottom: 42px;
    border-color: var(--color-secondary);
}
footer .copyright {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px
}
footer .copyright,
footer .copyright a,
footer .copyright p {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-primary);
}
footer .btn.btn-tertiary:first-child {
    background-color: var(--color-primary-foreground);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
footer .btn.btn-tertiary:first-child svg path {
    fill: var(--color-primary)
}
footer .btn.btn-tertiary:first-child:hover {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}
footer .btn.btn-tertiary:first-child:hover svg path {
    fill: var(--color-primary-foreground)
}

/* Map */

.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 27.78%;
    overflow: hidden;
    z-index: 2;
}
.map-wrapper #map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib:not(:first-child) {
    display: none;
}

/* Article Item */

.article-item {
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-dark);
    background-color: #fff;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.article-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.article-item h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 24px;
}
.article-item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
}

/* Breadcrumb */
nav:has(.breadcrumb) {
    padding-top: 15px;
    padding-bottom: 0
}
.breadcrumb {
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    margin-bottom: 8px;
}
.breadcrumb .breadcrumb-item {
    color: var(--color-primary)
}
.breadcrumb .breadcrumb-item.active {
    color: var(--color-text-dark)
}

/* Pagination */

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
}
.pagination-btn {
    width: auto;
    height: 40px;
    padding: 3px 16px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    color: var(--color-text-dark);
    background-color: rgba(var(--color-primary-rgb), .06);
    text-decoration: none;
    transition: all .2s ease-in-out;
    border: none;
    border-radius: 50px;
}
.pagination-btn:hover {
    color: var(--color-primary-foreground);
    background-color: var(--color-secondary);
    text-decoration: none;
}
.pagination-btn.active {
    font-weight: 600;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.rating-stars {
    display: flex;
    gap: 6px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.rating-stars svg {
    width: 17px;
    height: 17px;
    fill: #EED200;
}
.rating-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 13px;
}
.rating-wrapper .rating-rate {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--color-primary);
}
.rating-wraper .rating-total {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text)
}

/* Masonry Grid */
.masonry-grid-wrapper {
    display: flex;
    justify-content: center;
    width: calc(100% + 29px);
    max-width: 1395px;
    margin-left: -14.5px;
    margin-right: -14.5px;
    position: relative;
    z-index: 1;
    margin-top: 70px;
}
.masonry-grid-column {
    padding-left: 14.5px;
    padding-right: 14.5px;
    display: flex;
    flex-direction: column;
    gap: 29px;
}
.masonry-grid-column:nth-child(1) {
    width: 44.3727598566%;
    flex: 0 0 44.3727598566%;
}
.masonry-grid-column:nth-child(2) {
    width: 28.1720430108%;
    flex: 0 0 28.1720430108%;
    padding-top: 29px;
}
.masonry-grid-column:nth-child(3) {
    width: 27.4551971326%;
    flex: 0 0 27.4551971326%;
}
.masonry-grid-column .masonry-grid-item img {
    border-radius: 9px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.masonry-grid-column:nth-child(1) .masonry-grid-item:nth-child(1) img {
    aspect-ratio: 590/541;
}
.masonry-grid-column:nth-child(1) .masonry-grid-item:nth-child(2) img {
    aspect-ratio: 590/539;
}
.masonry-grid-column:nth-child(2) .masonry-grid-item:nth-child(1) img,
.masonry-grid-column:nth-child(2) .masonry-grid-item:nth-child(2) img {
    aspect-ratio: 364/280;
}
.masonry-grid-column:nth-child(3) .masonry-grid-item:nth-child(1) img {
    aspect-ratio: 354/564;
}

.section-bg {
    padding-top: 99px;
    padding-bottom: 111px;
    position: relative;
    z-index: 1;
    background-image: url('../img/09.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-bg::before {
    content: " ";
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0,0,0,.6);
}
.section-bg * {
    color: #fff;
    z-index: 1;
    position: relative;
}
.section-bg h2 {
    position: relative;
    margin-bottom: 35px;
}
.section-bg h2 img {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(calc(-50% - 400px));
    filter: brightness(10)
}

.masonry-block {
    background-color: var(--color-primary);
    padding: 54px 58px 50px 67px;
    display: flex;
    gap: 70px;
    border-radius: 9px;
    position: absolute;
    right: 14.5px;
    bottom: 35px;
    max-width: 809px;
    width: 100%;
}
.masonry-block .masonry-block-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
}
.masonry-block h3 {
    font-size: 37px;
    line-height: 37px;
    font-weight: 700;
    margin-bottom: 22px;
}
.masonry-block h3 span {
    font-size: 25px;
    line-height: 31px;
    font-weight: 500;
}
.masonry-block p {
    line-height: 27px;
    margin-bottom: 22px;
}

.section-map {
    position: relative;
    padding-top: 165px;
    padding-bottom: 70px;
}
.section-map #map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.section-map .block {
    background: var(--color-primary-foreground);
    padding: 63px 35px 60px 42px;
    border-radius: 9px;
    flex-direction: column;
    align-items: flex-start;
}
.section-map .block h2 {
    font-size: 25px;
    line-height: 31px;
    font-weight: 700
}
.section-map .block p {
    font-size: 17px;
    line-height: 21px;
    font-weight: 400
}
.section-map .block .btn.btn-primary {
    padding: 11px 34.31px;
    line-height: 25px;
}

.section-cta {
    border-radius: 9px;
    overflow: hidden;
    display: flex;
    font-weight: 400;
}
.section-cta p {
    font-weight: 400;
    margin-bottom: 25px;
}
.section-cta ul {
    padding-left: 15px;
    margin-bottom: 30px;
}
.section-cta-img {
    width: 56.839%;
    position: relative;
    overflow: hidden;
}
.section-cta-img img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.section-cta-content {
    background-color: var(--color-primary);
    width: 43.161%;
    padding: 100px 35px 114px 74px;
    position: relative;
}
.section-cta-content .section-cta-content-bg {
    width: 341px;
    height: 287px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    filter: grayscale(0.9) brightness(1.2) contrast(1.6) hue-rotate(145deg);
    opacity: .55;
}
.section-cta-content * {
    color: #fff;
    z-index: 1;
    position: relative;
}
.section-cta-content h2 {
    font-size: 43px;
    line-height: 50px;
    margin-bottom: 22px;
}
.section-cta-content h2 span {
    font-size: 35px;
    line-height: 33px;
    color: var(--color-bg-muted);
}
.section-cta-lg .section-cta-img {
    width: 42%;
}
.section-cta-lg .section-cta-content {
    width: 58%
}


/* Sections */

.contact-form {
    background-color: #868787;
    padding: 36px;
}
.section-reinsurance {
    padding-top: 51px;
    padding-bottom: 35px;
}
.section-catalog {
    padding-top: 80px;
    padding-bottom: 120px;
}
.section-products {
    padding-top: 139px;
    padding-bottom: 159px;
}
.section-products h2 {
    margin-bottom: 39px;
}
.section-products .btn-link {
    margin-bottom: 23px;
}
.section-primary {
    background-color: var(--color-primary);
    padding-top: 65px;
    padding-bottom: 65px;
}
.section-primary .pretitle,
.section-primary h2 {
    color: #fff;
}
.section-muted {
    background-color: var(--color-bg-dark);
    padding-top: 100px;
    padding-bottom: 100px;
    font-weight: 500;
}
.section-muted h2 {
    color: var(--color-primary);
}
.section-muted-bg {
    position: relative;
}
.section-muted-bg::before {
    content: " ";
    width: 615px;
    height: 595px;
    position: absolute;
    bottom: -64px;
    left: 50%;
    transform: translateX(-717px) rotate(2deg);
    z-index: 0;
    background-image: url('../img/fleur2.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Praticien Card */

.praticien-card {
    background-color: var(--color-bg-muted);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.praticien-card .praticien-name {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 12px;
}

.section-reservation {
    padding-top: 0;
    margin-top: -261px;
    padding-bottom: 0;
}
.section-reservation .container {
    max-width: 1160px;
}
.reserve-wrapper {
    padding-top: 178px;
}
.reserve-header {
    background-color: var(--color-bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    position: relative;
}
.reserve-header .reserve-img {
    position: absolute;
    bottom: -8px;
    left: -46px;
    width: 374px;
    height: 234px;
}
.reserve-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}
.reserve-content {
    padding: 33px 78px 41px 78px;
    background-color: var(--color-primary);
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 43px;
    position: relative;
    z-index: 1;
}
.reserve-content .form-group {
    margin-bottom: 0;
}
.reserve-content > .form-group:nth-child(1),
.reserve-content > .form-group:nth-child(2) {
    flex: 0 0 26.695%;
}
.reserve-content .form-group {
    margin-bottom: 0;
}
.reserve-content .form-group label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-bg-muted);
    margin-bottom: 10px;
}
.reserve-content .form-group input {
    background-color: #fff;
    border: none;
    border-radius: 9px;
    height: 46px;
    padding: 11px 23px;
    width: 100%;
    color: #747474;
    -webkit-appearance: none;
}
.reserve-content .reserve-btn {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary-foreground);
    background-color: var(--color-primary-contrast);
    padding: 0 34px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border-radius: 50px;
    height: 47px;
}

/* Logo Section */

.logo-carousel-wrapper { 
    width: 100%; 
}

.logo-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.logo-slide img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-dots { 
    display: none; 
}


/* Block */

.block {
    background-color: var(--color-bg-muted);
    border-radius: 9px;
    position: relative;
    display: flex;
}
.block .block-body {
    padding: 42px 42px 41px 163px;
}
.block .block-img-float {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 184px;
    height: 184px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: -9px -10px 0 25px var(--color-bg-dark);
}
.block h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    color: var(--color-text-dark);
    margin-top: 0;
    margin-bottom: 10px;
}
.block p {
    font-size: 17px;
    line-height: 29px;
    font-weight: 400;
    color: var(--color-text);
}
.block p strong {
    font-size: 19px;
    line-height: 29px;
    font-weight: 700;
    color: var(--color-text-dark);
}
.block .block-start {
    width: 54.95%;
    flex: 0 0 54.95%;
}
.block .block-end {
    border-radius: 0 9px 9px 0;
    width: 45.05%;
    flex: 0 0 45.05%;
    object-fit: cover;
    object-position: center bottom;
}
.block-end.block-car {
    background-image: url('../img/08.jpg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.block-primary {
    background-color: rgba(var(--color-primary-rgb), .1);
    padding: 5px 25px;
    border-radius: 10px;
}
.block-white {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}
.block-white p {
    font-weight: 500;
    margin-bottom: 0
}
.block-white .block-body {
    padding: 40px 53px 33px 38px;
}
.block-white .map {
    width: 100%;
    height: auto;
    aspect-ratio: 387/219;
    position: relative;
}
.block-white .map div[id^="map"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.block-muted {
    border-radius: 15px;
    background-color: var(--color-bg-muted);
    padding: 18px 20px;
}
.block-filter {
    background-color: transparent;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.block-filter .btn-filter,
.nav-filter .btn-filter {
    padding: 5px 10px 5px 36px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    color: var(--color-text-dark);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border: none;
    border-radius: 8px;
    background-color: rgba(var(--color-primary-rgb), .06);
    color: var(--color-text-dark);
    text-align: left;
    transition: all .12s ease-in-out;
    position: relative;
}
.block-filter label.btn-filter input {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}
.block-filter label.btn-filter::before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23fff" class="bi bi-square" viewBox="0 0 16 16"><path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z"/></svg>');
    position: absolute;
    top: 9px;
    left: 12px;
}
.block-filter label.btn-filter:has(input[type="checkbox"]:checked)::before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="%23fff" class="bi bi-check-square-fill" viewBox="0 0 16 16"><path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm10.03 4.97a.75.75 0 0 1 .011 1.05l-3.992 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.75.75 0 0 1 1.08-.022z"/></svg>');
}
.block-filter .btn-filter:hover,
.nav-filter .btn-filter:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary-foreground);
    font-weight: 600;
}
.block-filter .btn-filter.active::before {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" fill="%23fff" class="bi bi-check" viewBox="0 0 16 16"><path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/></svg>');
    position: absolute;
    top: 7px;
    left: 8px;
}
.block-filter .btn-filter.active,
.nav-filter .btn-filter.active,
.block-filter label.btn-filter:has(input[type="checkbox"]:checked) {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    border-color: var(--color-primary);
}
.block-filter .block-filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Carousel */
.carousel-wrapper {
    width: 100%;
    position: relative;
    margin-top: 69px;
}
.carousel-wrapper:hover .carousel-btn-wrapper {
    opacity: 1;
}
.carousel-img-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    gap: 65px;
}
.carousel-img-wrapper .carousel-img {
    width: calc(25% - 48.75px);
    min-width: calc(25% - 48.75px);
    height: 100%;
    position: relative;
    transition: 0.3s cubic-bezier(.79,.03,0,.99);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #F4F6FF;
    padding: 43.5px 27.5px;
    border-radius: 9px;
}
.carousel-img-wrapper .carousel-img strong {
    font-size: 16px;
    font-weight: 700;
}
.carousel-img-wrapper .carousel-img span,
.carousel-img-wrapper .carousel-img p {
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 0;
}
.carousel-img-wrapper strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 25px;
    display: block;
    text-align: center;
}
.carousel-img-wrapper p {
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    color: var(--color-text);
}
.carousel-btn-wrapper {
    width: auto;
    position: absolute;
    top: -10px;
    right: 0;
    transform: translateY(-100%);
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    opacity: 0;
    transition: all .12s ease-in-out;
}
.carousel-btn-wrapper div {
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border-radius: 100%;
    width: 35px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease-in-out;
    border-radius: 50%;
    padding: 5px;
    width: 44px;
    height: 44px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 20px;
    line-height: 16px;
}
.carousel-btn-wrapper div:hover {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}
.carousel-btn-wrapper div:not(div.disabled):active i {
    opacity: 0.7;
}
  /* Disabled Button */
.carousel-btn-wrapper > div.disabled i {
    cursor: no-drop;
    opacity: 0.3;
}
.carousel-wrapper:hover .carousel-btn-wrapper div {
    opacity: 1;
}
  
.carousel-pagination {
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 45px;
}
.carousel-pagination span {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #D9D9D9;
    transition: 0.3s ease-in-out;
    opacity: 1;
}
.carousel-pagination span.active {
    background-color: var(--color-primary);
}

/* Catalogue */
.catalog-sort-btn {
    padding: 5px 30px 5px 10px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    width: 100%;
    color: var(--color-text-dark);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    border: none;
    border-radius: 8px;
    background-color: rgba(var(--color-primary-rgb), 0);
    color: var(--color-text-dark);
    text-align: left;
    transition: all .12s ease-in-out;
    position: relative;
    z-index: 10;
}
.catalog-sort-btn:after {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-expand" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M3.646 9.146a.5.5 0 0 1 .708 0L8 12.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708m0-2.292a.5.5 0 0 0 .708 0L8 3.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708"/></svg>');
    position: absolute;
    top: 10px;
    right: 7px;
    border: none;
}
.catalog-sort-btn:hover {
    background-color: rgba(var(--color-primary-rgb), .07);
}
.nav-filter {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}
.nav-filter .btn-filter {
    text-align: center;
    background-color: var(--color-bg);
    border: 1px solid var(--color-text-dark);
}

/* Modal */
.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.modal-header {
    border-bottom: 0;
}
.modal-footer {
    border-top: 0;
    padding-top: 0;
}
.modal-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 0;
}

/* Actualite Item */

.actualite-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    position: relative;
    background-color: var(--color-bg-dark);
}
.actualite-item:before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 25px;
    background-color: rgba(var(--color-primary-rgb), .2);
    backdrop-filter: blur(8px);
    z-index: -1;
    opacity: 0;
    transition: all .2s ease-in-out;
}
a.actualite-item:hover {
    text-decoration: none;
}
a.actualite-item:hover:before {
    opacity: 1;
}
.actualite-item img {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 356/231;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.actualite-item h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}
.actualite-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--color-text);
    margin-bottom: 0;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.actualite-item .actualite-btn {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 18px;
    padding: 10px 20px;
    border: 1px solid var(--color-text-dark);
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .12s ease-in-out;
    background-color: var(--color-primary);
}
.actualite-item .actualite-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-primary-foreground);
}
.row-actualites {
    margin-left: -32px;
    margin-right: -32px;
    margin-top: 30px;
}
.row-actualites > div[class^="col-"] {
    padding-left: 32px;
    padding-right: 32px;
}

/* Logements */
.logement-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 9px;
    background-color: var(--color-bg-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
}
a.logement-item {
    transition: all .2s ease-in-out;
    text-decoration: none;
}
a.logement-item:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -10px rgba(0,0,0,.4);
}
.logement-item .logement-img {
    aspect-ratio: 422/291;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.logement-item .logement-content {
    padding: 32px 26px 48px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.logement-item h2,
.logement-item h3 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    line-height: 40px;
    margin: 0;
}
.logement-item .logement-subtitle {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 17px;
}
.logement-item p {
    line-height: 25px;
    font-size: 16px;
    font-weight: 400;
}
.logement-description {
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.logement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-right: 90px;
    margin-bottom: 32px;
}
.logement-features span {
    display: inline-block;
    flex: none;
    line-height: 19px;
    font-size: 16px;
    font-weight: 400;
}
.logement-features span::before {
    content: " ";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    margin-right: 7px;
    display: inline-block;
    flex: none;
    aspect-ratio: 1/1;
}
.logement-item .btn.btn-secondary {
    border: none;
    padding: 10px 46px;
    line-height: 21px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}
.service-item .service-item-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary-foreground);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 17px;
}
.service-item h3 {
    color: var(--color-text);
    background-color: var(--color-bg-muted);
    font-size: 23px;
    font-weight: 600;
    line-height: 29px;
    margin: 0;
    width: 213px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
}
.service-item p {
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin-top: 26px;
}

/* Offer Item */

.offer-item {
    background-color: var(--color-bg-muted);
    padding: 20px 25px;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    transition: all .12s ease-in-out;
}
.offer-item .offer-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 5px;
}
a.offer-item:hover {
    text-decoration: none;
    background-color: rgba(var(--color-primary-rgb), .1);
    box-shadow: 0 4px 12px rgba(0,0,0,.02);
}

.label {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    padding: 2px 10px;
    border-radius: 90px;
    width: auto;
    font-size: 14px;
    font-weight: 600;
}
.gap-10 {
    gap: 5px;
}

/* Article */

article h2,
article h3,
article h4,
article h5,
article h6 {
    color: var(--color-text);
    font-weight: 500;
    margin-top: 1.5em;
    margin-bottom: .75em;
}
article h1 {
    color: var(--color-secondary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: .75em;
}
article,
article p {
    font-size: 18px;
    line-height: 1.6em;
    color: rgba(var(--color-text-rgb), .8)
}

/* WYSIWYG */

.article-wp ul,
.article-wp ol {
    margin-top: 40px;
    margin-bottom: 40px;
}
.article-wp .wys-featured-img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}
.article-wp .wys-img-left {
    float: left;
    margin: 5px 30px 15px 0;
    border-radius: 8px;
}
.article-wp .wys-img-right {
    float: right;
    margin: 5px 0 15px 30px;
    border-radius: 8px;
}
.article-wp .wys-highlighted {
    margin: 40px auto;
    font-size: 24px;
    line-height: 34px;
    font-style: italic;
    width: 85%;
    color: var(--color-primary-foreground);
    background-color: var(--color-primary);
    padding: 20px 25px;
    border-radius: 10px;
}
.wys-title {
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    color: var(--color-secondary);
}
.article-wp a {
    color: var(--color-primary);
}

/* Map */

.mapcontainer a {
    transition: all .2s;
    cursor: pointer;
}
.mapcontainer a:hover {
    fill: var(--color-primary) !important;
}

/* Buttons */

.btn {
    border: none;
    padding: 9px 26px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    transition: all .2s;
    text-align: center;
    border: none;
    width: auto;
    /* height: 60px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn.btn-primary {
    background-color: var(--color-primary-contrast);
    color: var(--color-primary-foreground);
    font-size: 17px;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
} 
.btn.btn-primary:hover {
    background-color: var(--color-primary-foreground);
    color: var(--color-primary-contrast);
} 
.btn.btn-secondary {
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 10px 33px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 17px;
}
.btn.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.btn.btn-secondary img {
    transition: all .2s;
}
.btn.btn-secondary:hover img {
    filter: invert(1) brightness(10);
}
.btn.btn-tertiary {
    font-size: 17px;
    font-weight: 600;
    font-family: "Kumbh Sans", sans-serif;
    line-height: 43px;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    transition: all .1s ease-in-out;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    position: relative;
    padding: 7px 45px 7px 30px;
    border-radius: 50px;
} 
.btn.btn-tertiary:hover {
    background-color: var(--color-secondary);
} 
.btn-link {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none;
    transition: all .2s;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
}
.btn-link img {
    transition: all .2s;
}
.btn-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}
.btn-link:hover img {
    filter: invert(1);
}
.btn i,
.btn .bi {
    vertical-align: 1px;
    margin-right: 4px;
}
.btn:focus,
button:focus {
    outline: none;
}
.btn-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 10px;
    background-color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}
.btn-icon i {
    margin-right: 0 !important;
}
.btn-icon:hover {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-secondary);
}
.group-btn {
    display: flex;
    flex-direction: row;
    gap: 5px;
}
#scrollTopButton {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    border: 1px solid var(--color-primary-foreground);
    appearance: none;
    -webkit-appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1032;
    font-size: 22px;
    transition: all .12s ease-in-out;
}
#scrollTopButton i::before {
    font-weight: 800 !important;
}
#scrollTopButton:hover {
    background-color: var(--color-secondary);
}

/* Inputs */

.form-control {
    border-radius: 2px;
    height: 40px;
    padding: 5px 10px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
}
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary),
                0 0 0 4px rgba(var(--color-primary-rgb), .2);
}
.form-check-input {
    margin-top: 5px;
}
select.form-control {
    padding: 2px 8px;
}
.form-group label {
    font-size: 14px;
    line-height: 24px;
    color: var(--color-text);
    margin-bottom: 0;
    font-weight: 500;
}
label[required]::after,
label[required="required"]::after {
    content: " *";
    color: var(--color-secondary);
}

/* Breadcrumb */
.breadcrumb-item {
    font-weight: 500;
    font-size: 16px;
}

/* Dropdowns */

.dropdown-menu {
    border-color: transparent;
    padding: 8px;
    box-shadow: none;
    overflow: hidden;
    margin-top: 10px;
    background-color: var(--color-bg);
    border-radius: 15px;
    box-shadow: 0 5px 14px 0px rgba(0,0,0,.15);
}
.dropdown-item {
    font-size: 16px;
    padding: 4px 10px;
    font-weight: 500;
    transition: all .2s;
    border-radius: 8px;
    color: var(--color-text);
}
.dropdown-item:hover {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}
.dropdown-item.active, 
.dropdown-item:active {
    color: #fff;
    background-color: var(--color-primary);
}
.dropdown-submenu {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    padding-left: 6px;
}

/* Responsive ; Media Query */

@media (max-width:1199px) {
    h2 {
        font-size: 48px;
    }
    h2 span {
        font-size: 32px;
        line-height: 50px;
    }
    nav .nav-content ul {
        gap: 4px;
    }
    nav .nav-link-btn {
        font-size: 18px;
        padding: 8px 15px;
        letter-spacing: -1px;
        margin-left: 32px;
    }
    nav .nav-link-btn span {
        display: none;
    }
    nav .nav-content ul .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }
    header.featured-header .header-btn {
        font-size: 18px;
        padding: 7px 7px 7px 23px;
    }
    header.featured-header .header-btn::after {
        margin-left: 10px;
        vertical-align: -8px;
    }
    nav .nav-content ul .nav-link {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 14pxs;
    }
    .section-reservation .container {
        max-width: 910px;
    }
    .reserve-header .reserve-img {
        aspect-ratio: 561 / 351;
        width: 254px;
        height: auto;
    }
    .reserve-content {
        padding: 30px;
        gap: 20px;
    }
    .logo-featured {
        width: 200px;
    }
    .logement-item .btn.btn-secondary {
        padding: 10px 20px;
    }
    .logement-item .logement-content {
        padding: 20px;
    }
    .section-cta-img {
        width: 46.839%;
    }
    .section-cta-content {
        width: 53.161%;
        padding: 50px 35px;
    }
    .pretitle-before::before {
        width: 14px;
    }
    .section-cta-content h2 {
        font-size: 40px;
    }
    .block .block-body {
        padding: 42px 42px 41px 133px;
    }
    .btn.btn-tertiary {
        padding: 7px 35px 7px 30px;
    }
    .carousel-img-wrapper {
        gap: 30px;
    }
    .carousel-img-wrapper .carousel-img {
        width: calc(25% - 22.5px);
        min-width: calc(25% - 22.5px);
    }
}
@media (max-width:991px) {
    :root {
        --header-height: 600px;
    }
    h2 {
        font-size: 42px;
    }
    h2 span {
        font-size: 25px;
    }
    .text-lg {
        font-size: 19px;
        line-height: 28px;
    }
    nav {
        padding: 20px;
    }
    nav .nav-logo a img {
        max-width: 200px;
        width: 200px;
    }
    nav .nav-content {
        position: fixed;
        top: 0;
        background-color: var(--color-bg);
        width: 100vw;
        height: 100vh;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        z-index: 0;
        left: 0;
        padding: 0;
        flex-direction: column;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: all .2s;
    }
    nav .nav-content ul {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        gap: 40px;
        padding: 150px 20px 15px;
        border-top: none;
    }
    nav .nav-content ul li {
        width: calc(100% - 10px);
        text-align: left;
    }
    nav .nav-content li.menu-contact {
        order: 9;
    }
    nav .nav-content ul li .nav-link {
        width: 100%;
        padding: 12px;
        text-align: left;
        font-size: 22px;
    }
    nav .nav-link-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    nav .nav-content .dropdown-menu {
        position: relative !important;
        width: 100%;
        transform: none !important;
    }
    nav .nav-btn {
        width: calc(100% + 44px);
        margin: 0 -22px;
    }
    nav .nav-content.opened {
        opacity: 1;
        transform: scaleY(1);
    }
    nav.nav-wrapper .container {
        justify-content: space-between;
    }
    nav .nav-menu li .nav-link {
        color: var(--color-primary);
    }
    nav .nav-menu li .nav-link.active {
        color: var(--color-primary);
        font-weight: 700;
    }
    header.featured-header:not(.header-small) {
        padding-top: 320px;
    }
    header.featured-header h1 {
        font-size: 38px;
        line-height: 34px;
    }
    header.featured-header h1 span {
        font-size: 36px;
        line-height: 48px;
    }
    header.featured-header .header-subtitle {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 60px;
    }
    header.featured-header .header-btn {
        margin-top: 10px;
        font-size: 18px;
        line-height: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        background-color: rgba(0,0,0,.4);
        backdrop-filter: blur(4px);
    }
    header.featured-header .header-btn::after {
        margin-left: auto;
    }
    header.featured-header .header-btn:hover {
        background-color: rgba(0,0,0,.6);
    }
    .nav-menu-btn.bi-x {
        color: var(--color-primary);
        background-color: var(--color-primary-foreground);
    }
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .map-wrapper {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
        z-index: 2;
    }
    .section-logo .row {
        gap: 10px 5px;
    }
    .pretitle {
        font-size: 14px;
    }
    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #b4b4b4;
        margin-top: 0;
    }
    .section-logo .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 !important;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .section-logo .row::-webkit-scrollbar {
        display: none;
    }
    .section-logo .col-5 {
        flex: 0 0 60% !important;
        max-width: 60% !important;
        scroll-snap-align: center;
        padding: 0 12px;
    }
    .logo-carousel-wrapper {
        position: relative;
        overflow: hidden;
    }
    .reserve-header .reserve-img {
        width: 174px;
        left: -6px;
    }
    .reserve-content {
        flex-wrap: wrap;
    }
    .reserve-content .reserve-btn {
        width: 100%;
    }
    .reserve-content > .form-group:nth-child(1), 
    .reserve-content > .form-group:nth-child(2) {
        flex: 0 0 30%;
    }
    .section-cta {
        flex-direction: column;
    }
    .section-cta-img {
        width: 100% !important;
        aspect-ratio: 16 / 9;
    }
    .section-cta-content {
        width: 100% !important;
    }
    .block {
        flex-wrap: wrap;
    }
    .block .block-start,
    .block .block-end {
        width: 100%;
        flex: 0 0 100%;
    }
    .block .block-end {
        aspect-ratio: 16/9;
        border-radius: 0 0 9px 9px;
    }
    .block .block-img-float {
        top: 0;
        left: 40px;
        width: 130px;
        height: 130px;
        transform: translateY(-50%);
        box-shadow: 8px -10px 0 25px var(--color-bg-dark);
    }
    .block .block-start .block-body {
        padding: 92px 40px 30px 40px;
    }
    .section-muted .block {
        margin-top: 50px;
    }
    .section-bg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .section-bg h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .section-bg h2 img {
        position: static;
        bottom: unset;
        left: unset;
        transform: none;
    }
    .masonry-grid-wrapper {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
    .masonry-grid-column {
        flex-direction: row;
    }
    .masonry-grid-column:nth-child(1),
    .masonry-grid-column:nth-child(2) {
        width: 100%;
        flex: 0 0 auto;
    }
    .masonry-grid-column:nth-child(3) {
        width: 30%;
        flex: 0 0 auto;
        padding-top: 29px;
    }
    .masonry-block {
        max-width: calc(100% - 58px);
        width: 90%;
        margin-left: auto;
        margin-top: -320px;
        position: relative;
        bottom: unset;
        gap: 50px;
    }
    .carousel-img-wrapper {
        gap: 20px;
    }
    .carousel-img-wrapper .carousel-img {
        width: calc(33% - 4px);
        min-width: calc(32% - 4px);
    }
    .section-map {
        padding-top: 50px;
        padding-bottom: 500px;
    }
}

@media (min-width:768px) {
}
@media (min-width:992px) {
    .nav-menu-btn {
        display: none;
    }
    nav .nav-logo {
        flex: none;
        width: 220px;
    }
    nav .nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        white-space: nowrap;
    }
    nav .nav-menu li .nav-link.active {
        font-weight: 500;
    }
    nav .nav-content ul {
        gap: 25px;
    }
    nav .nav-content ul li:first-child,
    nav .nav-content ul li:last-child {
        margin-left: auto;
    }
    .block-muted {
        padding: 36px 48px;
    }
    .section-map .col-lg-4 {
        flex: 0 0 34.184%;
        max-width: 34.184%;
    }
    .pb-sp {
        padding-bottom: 61px;
    }
    header.featured-header.header-small h1 {
        width: 550px;
    }
}
@media (max-width:1399px) {
    header.featured-header .header-btn {
        font-size: 22px;
    }
    nav .nav-content ul {
        gap: 16px;
    }
    nav .nav-content ul .nav-link {
        font-size: 17px;
    }
    .masonry-grid-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .masonry-block {
        right: 34.5px;
    }
    .section-muted-bg::before {
        transform: translateX(-653px) rotate(2deg);
    }
}
@media (min-width:992px) and (max-width:1199px) {
    nav .nav-content ul .nav-link {
        font-size: 15px;
    }
}
@media (min-width:1200px) {
    .container {
        max-width: 1185px;
    }
    nav .nav-logo {
        flex: none;
        width: 380px;
    }
}
@media (min-width:1300px) {
    .container {
        max-width: 1220px;
    }
}
@media (max-width:1299px) {
    .section-muted-bg::before {
        width: 635px;
        height: 635px;
        bottom: -65px;
        transform: translateX(-644px) rotate(2deg);
    }
}
@media (max-width:1199px) {
    .section-muted-bg::before {
        width: 665px;
        height: 665px;
        bottom: -65px;
        transform: translateX(-547px) rotate(2deg);
    }
}
@media (min-width:1400px) {
    .container {
        max-width: 1334px;
    }
    .container-fluid {
        padding-left: 25px;
        padding-right: 25px;
    }
    .container-large {
        max-width: 1397px;
    }
}
@media (max-width:991px) {
    :root {
        --header-height: 600px;
    }
    html, body, p {
        font-size: 15px;
    }
    nav {
        padding: 20px;
    }
    nav .nav-content {
        position: fixed;
        top: 0;
        background-color: var(--color-bg);
        width: 100vw;
        height: 100vh;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        z-index: 0;
        left: 0;
        padding: 0;
        flex-direction: column;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: all .2s;
    }
    nav .nav-content ul {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
        padding: 150px 20px 15px;
        border-top: none;
    }
    nav .nav-content ul li {
        width: calc(100% - 10px);
        text-align: left;
    }
    nav .nav-content ul li .nav-link {
        width: 100%;
        padding: 12px;
        text-align: left;
        font-size: 16px;
    }
    nav .nav-link-btn {
        margin-left: 0;
    }
    nav .nav-content .dropdown-menu {
        position: relative !important;
        width: 100%;
        transform: none !important;
    }
    nav .nav-btn {
        width: calc(100% + 44px);
        margin: 0 -22px;
    }
    nav .nav-content.opened {
        opacity: 1;
        transform: scaleY(1);
    }
    nav.nav-wrapper .container {
        justify-content: space-between;
    }
    nav .nav-menu li .nav-link {
        color: var(--color-primary);
    }
    nav .nav-menu li .nav-link.active {
        color: var(--color-primary);
        font-weight: 700;
    }
    .nav-menu-btn.bi-x {
        color: var(--color-primary);
    }
    header.header-simple {
        padding-top: 40px;
    }
    header.featured-header .header-btn {
        display: flex;
        justify-content: space-between;
    }
    header.featured-header.header-small .header-subtitle {
        margin-bottom: 0;
    }
    header.featured-header.header-small {
        padding-bottom: 60px;
    }
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .map-wrapper {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
        z-index: 2;
    }
    .actualite-item p {
        font-size: 14px;
        line-height: 21px;
    }
    .offer-item .offer-title {
        font-size: 18px;
        line-height: 28px;
    }
    .section-muted-bg::before {
        transform: translateX(-63vw) rotate(2deg);
    }
}
@media (max-width:767px) {
    html,
    body {
        overflow-x: hidden;
    }
    h1 {
        font-size: 68px;
    }
    h2 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 18px;
    }
    header.featured-header .header-img-featured h1 {
        font-size: 36px;
    }
    .section-header p {
        font-size: 14px;
    }
    article, article p {
        font-size: 16px;
    }
    .reserve-content {
        flex-direction: column;
        gap: 15px;
    }
    .reserve-content > .form-group {
        width: 100%;
    }
    .reserve-header .reserve-img {
        display: none;
    }
    .masonry-block {
        padding: 30px;
        gap: 30px;
    }
    .masonry-block .masonry-block-icons {
        gap: 36px;
    }
    .masonry-block h3 {
        font-size: 28px;
        line-height: 30px;
    }
    .masonry-block h3 span {
        font-size: 20px;
        line-height: 26px;
    }
    .masonry-block p {
        line-height: 20px;
        margin-bottom: 5px;
    }
    .btn.btn-primary {
        padding: 12px 25px;
    }
    .carousel-img-wrapper .carousel-img {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}
@media (max-width:575px) {
    .nav-logo a {
        font-size: 18vw;
        line-height: 5vw;
    }
    .nav-logo a span {
        font-size: 10vw;
    }
    .text-p {
        font-size: 18px;
        line-height: 28px;
    }
    .header-content {
        padding-top: 90px;
        padding-bottom: 100px;
    }
    header h1 {
        font-size: 50px;
        line-height: 54px;
    }
    header.header-simple h1 {
        font-size: 32px;
    }
    header.featured-header .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    header.featured-header h1 .title-primary {
        font-size: 28px;
        line-height: 34px;
    }
    header.featured-header h1 .title-pre {
        font-size: 13px;
        line-height: 15px;
        white-space: wrap;
    }
    header.featured-header h1 .title-post {
        font-size: 34px;
        line-height: 28px;
    }
    header.featured-header h1 .title-post::before {
        content: none;
    }
    nav .nav-content ul {
        padding-top: 100px;
    }
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .reserve-header {
        height: auto;
        padding: 10px;
    }
    .reserve-header h2 {
        font-size: 16px;
        line-height: 21px;
        text-align: center;
    }
    .h2-sm {
        font-size: 26px;
        line-height: 30px;
    }
    h2 span {
        font-size: 22px;
        line-height: 25px;
    }
    .text-lg {
        font-size: 16px;
        line-height: 20px;
    }
    .logement-item h2 {
        font-size: 22px;
        line-height: 30px;
    }
    .logement-item .logement-subtitle {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .section-cta-content {
        padding: 30px 25px;
    }
    .section-cta-content h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .section-cta-content h2 span {
        font-size: 24px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .section-cta-content .section-cta-content-bg {
        width: 180px;
        height: auto;
        aspect-ratio: 341 / 287;
    }
    .section-muted {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .service-item h3 {
        font-size: 20px;
        min-height: 38px;
    }
    .pretitle-before::before {
        width: 17px;
        right: calc(100% + 8px);
    }
    .block h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .block .block-start .block-body {
        padding: 92px 25px 30px 25px;
    }
    .btn.btn-tertiary {
        padding: 7px 20px 7px 20px;
        font-size: 16px;
        line-height: 30px;
        gap: 10px;
    }
    .btn.btn-tertiary img {
        width: 30px;
        height: 30px;
    }
    .btn.btn-secondary {
        padding: 8px 25px;
    }
    #scrollTopButton i {
        height: 30px;
    }
    .section-bg h2 {
        margin-bottom: 20px;
    }
    .masonry-grid-wrapper {
        margin-top: 40px;
    }
    .masonry-grid-column {
        gap: 15px;
    }
    .masonry-grid-column:nth-child(2) {
        margin-top: 15px;
        padding-top: 0;
    }
    .masonry-block {
        flex-direction: column;
        right: 14.5px;
        max-width: calc(100% - 29px);
        width: 100%;
        margin-top: 15px;
    }
    .masonry-block .btn.btn-primary {
        font-size: 13px;
        padding: 10px 20px;
    }
    .masonry-block .masonry-block-icons {
        flex-direction: row;
    }
    .masonry-block .masonry-block-icons img {
        max-width: 30px;
        height: auto;
        aspect-ratio: 1/1;
    }
    .masonry-block h3 {
        font-size: 22px;
        line-height: 26px;
    }
    .masonry-block h3 span {
        font-size: 18px;
        line-height: 23px;
    }
    .masonry-grid-column:nth-child(3) {
        display: none;
    }
    .carousel-img-wrapper .carousel-img {
        width: 100%;
        min-width: 100%;
    }
    .carousel-btn-wrapper {
        opacity: 1;
    }
    .carousel-btn-wrapper div {
        width: 38px;
        height: 38px;
    }
    .section-map .block {
        padding: 25px;
    }
    footer .copyright {
        flex-direction: column;
        gap: 8px;
    }
}