/*///////////////////////////////////////*/
/* ///// STYLE GLOBAL ///////////////// */
/*/////////////////////////////////////*/

/*
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
*/

html {
    box-sizing: border-box;
    * {
        box-sizing: border-box;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000;
}

body p {
    line-height: 30px;
    margin-bottom: 15px;
    color: #000;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

main {
    clear: both;
}

.container-large {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.container-medium {
    width: calc(100% - 60px);
    max-width: 1364px;
    margin: 0 auto;
}

.container-small {
    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 0 auto;
}

.flex-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dynamic-padding-left,
.dynamic-padding-right {
    opacity: 0;
    transition: 200ms ease-in-out;
}

.default-btn,
.form-submit {
    min-width: 275px;
    text-align: center;
    padding: 11px 30px 9px;
    font-size: 16px;
    font-weight: 900;
    border: none;
    text-decoration: none;
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
}

.default-btn.primary,
.form-submit {
    color: #fff;
    background: #F39517;
}

.default-btn.primary:hover,
.form-submit:hover {
    background: #000;
}

/*///////////////////////////////////////*/
/* ///// HEADER /////////////////////// */
/*/////////////////////////////////////*/

header {
    position: relative;
    background: #fff;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

header .region-header {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

header .block-superfish {
    width: auto;
}

/*Navigation principale*/
#superfish-main {
    display: flex;
}

#superfish-main li {
    display: inline-block;
    float: none;
}

#superfish-main li a {
    color: #393939;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 25px;
    line-height: 75px;
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

#superfish-main li a:hover,
#superfish-main li a.is-active:hover {
    color: #F39517;
}

#superfish-main li a.is-active {
    color: #393939;
}

#superfish-main li#main-standardfront-page a {
    text-indent: 1000px;
    overflow: hidden;
    max-width: 80px;
    background: url('../images/svg/homepage-link.svg') no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// TITRE DE PAGE //////////////// */
/*/////////////////////////////////////*/
.block-page-title-block {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.block-page-title-block h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

/*///////////////////////////////////////*/
/* ///// BREADCRUMBS ////////////////// */
/*/////////////////////////////////////*/
.block-system-breadcrumb-block {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto 50px;
}

.block-system-breadcrumb-block li,
.block-system-breadcrumb-block li a {
    font-size: 12px;
    line-height: 16px;
    color: #242424;
    text-decoration: none;
}

.block-system-breadcrumb-block li a:hover {
    text-decoration: underline;
}

.block-system-breadcrumb-block li:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 8px;
    background: url('../images/svg/arrow-breadcrumbs.svg') no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// PAGE 404 ///////////////////// */
/*/////////////////////////////////////*/
#block-404 {
    width: calc(100% - 60px);
    max-width: 1088px;
    margin: 0 auto;
    padding: 120px 0;
}

#block-404 h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

#block-404 .sous-titre {
    color: #333;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/*///////////////////////////////////////*/
/* ///// SLIDER ACCUEIL /////////////// */
/*/////////////////////////////////////*/
.view-slider-accueil {
    position: relative;
}

.view-slider-accueil .swiper-slide {
    min-height: 685px;
    display: flex;
    align-items: center;
}

.view-slider-accueil .swiper-slide .contenu {
    max-width: 40%;
}

.view-slider-accueil .swiper-slide .contenu .titre {
    font-size: 32px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.view-slider-accueil .swiper-slide .contenu .texte {
    margin-bottom: 35px;
}

.view-slider-accueil .swiper-button-prev {
    width: 25px;
    height: 45px;
    left: 5%;
    background: url('../images/svg/arrow-slider-prev.svg') no-repeat center;
}

.view-slider-accueil .swiper-button-next {
    width: 25px;
    height: 45px;
    right: 5%;
    background: url('../images/svg/arrow-slider-next.svg') no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// PARTENAIRES ACCUEIL ////////// */
/*/////////////////////////////////////*/
.view-id-partenaires.view-display-id-accueil {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-id-partenaires.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.view-id-partenaires.view-display-id-accueil .seo-text {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
    margin-bottom: 50px;
    max-width: 810px;
    text-align: center;
}

.view-id-partenaires.view-display-id-accueil .view-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

/*///////////////////////////////////////*/
/* ///// CONTACT FORM ///////////////// */
/*/////////////////////////////////////*/

.contact-form {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 40px auto 0;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form form .field--type-list-string,
.contact-form form .field--type-string,
.contact-form form .field--type-email {
    width: 32%;
}

.contact-form form .field--type-list-string .form-radios {
    display: flex;
    flex-wrap: wrap;
}

.contact-form form .field--type-list-string .form-radios .form-type-radio:not(:last-of-type) {
    margin-right: 40px;
}

.contact-form form .form-item {
    margin-bottom: 0;
}

.contact-form form label {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #242424;
}

.contact-form form .field--type-string-long {
    width: 100%;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form select {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form textarea {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form .form-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*CHECKBOX*/
input[type=checkbox]:checked,
input[type=checkbox]:disabled:checked,
input[type=radio]:checked,
input[type=radio]:disabled:checked {
    background-color: #F39517;
}

input[type=checkbox]:hover,
input[type=checkbox]:focus,
input[type=radio]:hover,
input[type=radio]:focus {
    border: 2px solid #C2C2C2;
}

input[type=checkbox],
input[type=radio] {
    margin: 0 10px 0 0;
}

input[type=checkbox]:before,
input[type=radio]:before {
    font-family: 'Font Awesome 5 Free';
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    margin-top: -2px;
    font-weight: 700;
    border-radius: 0;
    padding-left: 0.5px;
    padding-top: 2px;
    text-align: center;
    background: #fff;
    font-size: 11px;
    color: #F39517;
    border: 3px solid #F39517;
    cursor: pointer;
    margin-left: -2px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

input[type=radio]:before {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

input[type=radio]:checked:before {
    color: #F39517;
    content: "\f111";
}

input[type=checkbox]:checked:before {
    content: "";
    background: #F39517;
    outline: solid 3px #fff;
    outline-offset: -6px;
}

/*///////////////////////////////////////*/
/* ///// LISTE ACTUALITES ///////////// */
/*/////////////////////////////////////*/
.view-actualites {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 120px auto;
}

.view-actualites .view-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.view-actualites .view-content .views-row {
    width: 100%;
    max-width: 352px;
    margin: 15px 5px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.view-actualites .view-content .views-row:hover {
    box-shadow: 0 3px 20px rgba(0, 0, 0, .25);
}

.view-actualites .view-content .views-row .image {
    height: 178px;
}

.view-actualites .view-content .views-row .contenu {
    padding: 0 25px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-actualites .view-content .views-row .contenu .date {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 25px;
    background: #242424;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.view-actualites .view-content .views-row .contenu .titre {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.view-actualites .view-content .views-row .contenu .resume {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
}

.view-actualites .view-content .views-row .contenu .lire-la-suite {
    font-size: 16px;
    color: #F39517;
    margin-top: 20px;
    text-decoration: underline;
}

.view-actualites.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.view-actualites.view-display-id-accueil .flex-center {
    margin-top: 70px;
}

/*///////////////////////////////////////*/
/* ///// PAGE ACTUALITE /////////////// */
/*/////////////////////////////////////*/

.node--type-actualite {
    width: 90%;
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 25px;
}

.node--type-actualite .date {
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 35px;
    background: #242424;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.node--type-actualite h1 {
    font-size: 29px;
    line-height: 36px;
    font-weight: 700;
    color: #242424;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.node--type-actualite .breadcrumb ol {
    text-align: center;
    margin-top: 10px;
}

.node--type-actualite .texte {
    margin-bottom: 40px;
}

/*///////////////////////////////////////*/
/* ///// PAGE DE CONTENU ////////////// */
/*/////////////////////////////////////*/

.node--type-contenu {

}

/*///////////////////////////////////////*/
/* ///// MAP FOOTER /////////////////// */
/*/////////////////////////////////////*/
#blockMap {
    min-height: 570px;
    margin-top: 180px;
}

/*///////////////////////////////////////*/
/* ///// FOOTER /////////////////////// */
/*/////////////////////////////////////*/

footer {
    clear: both;
    color: #fff;
    background: #393939;
}

.not-frontpage footer {
    margin-top: 120px;
}

/*Menu footer*/
.menu--footer {
    padding: 60px 0;
}

.menu--footer .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu--footer .menu li a {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 5px 25px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/*Copyright*/
footer .gl-copy {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    max-width: 705px;
    margin: 0 auto;
    border-top: 1px solid #fff;
}

footer .gl-copy img {
    margin-bottom: -5px;
}

footer .gl-copy a {
    color: #fff;
}

/*///////////////////////////////////////*/
/* ///// MASQUAGE ADMIN MENU ////////// */
/*/////////////////////////////////////*/

#toolbar-administration {
    display: none;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0;
}

body,
.adminimal-admin-toolbar.toolbar-fixed.toolbar-vertical {
    padding: 0 !important;
}

/*///////////////////////////////////////*/
/* //// GALERIE PARAGRAPHE //////////// */
/*/////////////////////////////////////*/
.galerie-paragraphe .grid__item,
.galerie-paragraphe .grid__col-sizer {
    width: calc(25% - 24px);
}

.galerie-paragraphe .grid__gutter-sizer {
    width: 24px;
}

.galerie-paragraphe .grid__item {
    margin-bottom: 24px;
}

/*///////////////////////////////////////*/
/* //////////// WEBFORMS ////////////// */
/*/////////////////////////////////////*/
.webform-submission-form {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 40px auto 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.webform-submission-form .form-item {
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.webform-submission-form .form-type-textfield,
.webform-submission-form .form-type-email,
.webform-submission-form .form-type-tel,
.webform-submission-form .form-type-select {
    width: calc(50% - 15px);
    margin-bottom: 40px;
}

.webform-submission-form .form-type-textarea {
    width: 100%;
}

.webform-submission-form .form-textarea-wrapper {
    width: 100%;
}

.webform-submission-form .form-type-checkbox {
    margin-top: 40px;
}

.webform-submission-form .form-type-checkbox label {
    padding-left: 35px;
    margin-top: -15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.webform-submission-form .form-actions {
    margin-top: 15px;
    width: 100%;
}

.webform-submission-form .form-actions .form-submit {
    margin-top: 20px;
}

.webform-submission-form .form-item .fieldset-legend,
.webform-submission-form .form-item label {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="number"],
.webform-submission-form select {
    height: 68px;
    line-height: 68px;
    border: solid 1px #333;
    border-radius: 15px;
    padding: 0 30px;
    width: 100%;
}

.webform-submission-form textarea {
    border: solid 1px #333;
    border-radius: 15px;
    padding: 25px 35px;
}

.webform-submission-form input[type="text"]:focus,
.webform-submission-form input[type="email"]:focus,
.webform-submission-form input[type="tel"]:focus,
.webform-submission-form input[type="number"]:focus,
.webform-submission-form select {
    outline: none;
}

/*///////////////////////////////////////*/
/* // MISE EN PAGE PARAGRAPHES //////// */
/*/////////////////////////////////////*/
.paragraphes .para-item {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 100px auto;
    clear: both;
}
.intro {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto 50px;
    clear: both;
}
/*Swiper paragraphes*/
.paragraphes .swiper-paragraphe {
    width: 100%;
    margin: 25px auto;
    position: relative;
}
.paragraphes .swiper-paragraphe .swiper-button-prev {
    width: 40px;
    height: 45px;
    left: 1%;
    background: url(../images/svg/arrow-slider-prev-white.svg) no-repeat center;
}

.paragraphes .swiper-paragraphe .swiper-button-next {
    width: 40px;
    height: 45px;
    right: 1%;
    background: url(../images/svg/arrow-slider-next-white.svg) no-repeat center;
}

/*Paragraphe pleine largeur*/
.paragraphes .para-item.full-width {
    width: 100%;
    max-width: none;
    padding: 120px 0;
}
.paragraphes .para-item.full-width .container-para {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.paragraphes h2,
.paragraphes h3,
.paragraphes h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.paragraphes h3 {
    font-size: 20px;
    line-height: 26px;
}
.paragraphes h4 {
    font-size: 18px;
    line-height: 22px;
}
.paragraphes p,
.paragraphes li,
.intro p{
    font-size: 15px;
    line-height: 34px;
    color: #393939;
}
.paragraphes p {
    margin-bottom: 15px;
}
.para-photo-legende {
    margin: 5px 0 15px 0;
    text-align: center;
    font-size: 12px;
}
/*photo à droite*/
.pos-photo-3 .container-para {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
.pos-photo-3 .para-desc {
    margin-right: 5%;
}
/*photo à gauche*/
.pos-photo-4 .container-para {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pos-photo-4 .para-photos {
    margin-right: 5%;
}
/*photo en haut et en bas*/
.para-item-photo-contenu .para-photos {
    display: flex;
    flex-wrap: wrap;
}
.pos-photo-1 .para-photos .para-photo,
.pos-photo-2 .para-photos .para-photo {
    margin: 10px;
}
.para-item-photo-contenu .para-photos .para-photo img,
.para-item-photo-contenu .para-photos .para-photo img {
    height: 200px;
    width: auto;
}
img[data-align="center"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
img[data-align="right"] {
    float: right;
}
img[data-align="left"] {
    float: left;
}
.paragraphes table tr td {
    padding: 10px;
    border: 1px solid #eee;
}
.paragraphes table {
    margin-bottom: 30px;
}
.layout-content ul {
    padding-left: 27px;
    margin-bottom: 15px;
}
.layout-content ul li {
    font-size: 16px;
    line-height: 30px;
    list-style-type: none;
    position: relative;
    padding-left: 17px;
}
.layout-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

/*Début accordéon*/
.para-item-accordeon .elements {
    overflow: hidden;
}
.para-item-accordeon .element {
    border-bottom: solid 1px #000;
}
.para-item-accordeon .titre-elem {
    cursor: pointer;
    position: relative;
    padding: 20px 30px 20px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.para-item-accordeon .titre-elem:after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    ;
    width: 18px;
    height: 18px;
    background: url('../images/svg/accordeon-open.svg') no-repeat center;
}
.para-item-accordeon .titre-elem.active:after {
    background: url('../images/svg/accordeon-close.svg') no-repeat center;
}
.para-item-accordeon .texte-elem {
    max-height: 0;
    overflow: hidden;
    line-height: 24px;
    text-align: justify;
}
.para-item-accordeon .texte-elem.active {
    max-height: 2000px;
    overflow: visible;
    margin-bottom: 20px;
}
/*Fin accordéon*/


/*Documents*/
.paragraphes .documents a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding-left: 55px;
    line-height: 40px;
    color: #707070;
    border-bottom: solid 1px #d8d8d8;
}

.paragraphes .documents a:last-of-type {
    border-bottom: none;
}

.paragraphes .documents a.type-xls {
    background: url('../images/svg/picto-xls.svg') no-repeat 17px center;
}

.paragraphes .documents a.type-doc {
    background: url('../images/svg/picto-doc.svg') no-repeat 17px center;
}

.paragraphes .documents a.type-ppt {
    background: url('../images/svg/picto-ppt.svg') no-repeat 17px center;
}

.paragraphes .documents a.type-pdf {
    background: url('../images/svg/picto-pdf.svg') no-repeat 17px center;
}

/* Home page */
.frontpage { --home-ink: #000; --home-text: #1a1a1a; --home-blue: #bfdcf4; --home-sand: #e8dfc9; }
.home-page { overflow: hidden; color: var(--home-ink); }
.home-shell {
    width: calc(100% - 60px);
    max-width: 1364px;
    margin-left: auto;
    margin-right: auto;
}
.home-page h1, .home-page h2, .home-page h3 { margin: 0; color: var(--home-ink); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; }
.home-page h1 { font-size: clamp(44px, 5.8vw, 88px); line-height: .99; letter-spacing: -2.2px; }
.home-page h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -1.12px; }
.home-page h3 { font-size: 34px; line-height: 1.08; letter-spacing: -.51px; }
.home-page h1 span, .home-page h2 span { color: #1d1d1d; }
.home-page p { max-width: 570px; color: var(--home-text); font-family: 'Geist', sans-serif; font-size: 16px; line-height: 1.8; }
.home-eyebrow { margin: 0 0 22px; color: #202020; font-family: 'Geist', sans-serif; font-size: 11px !important; font-weight: 600; letter-spacing: 2.2px; line-height: normal !important; text-transform: uppercase; }
.home-button { display: inline-flex; min-height: 42px; box-sizing: border-box; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid #1d1d1d; border-radius: 0; color: #111; font-family: 'Geist', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.76px; text-decoration: none; text-transform: uppercase; transition: background .2s, color .2s; }
.home-button:hover { background: #111; color: #fff; }
.home-button--dark { background: #111; color: #fff; }
.home-button--dark:hover { background: transparent; color: #111; }
.home-button--light { border-color: #fff; color: #fff; }
.home-button--light:hover { background: #fff; color: #111; }
.home-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.frontpage header { box-shadow: none; }
.frontpage header .region-header { height: 79px; max-width: none; margin: auto; padding: 0 56px; }
.frontpage .palais-logo { position: relative; display: inline-flex; flex-direction: column; padding-left: 22px; color: #111; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: -1px; line-height: .88; text-decoration: none; text-transform: uppercase; }
.frontpage .palais-logo::before, .frontpage .palais-logo::after { position: absolute; left: 0; width: 19px; height: 1px; background: #111; content: ''; transform: rotate(-42deg); transform-origin: left; }
.frontpage .palais-logo::before { top: 7px; }
.frontpage .palais-logo::after { top: 22px; }
.frontpage .palais-logo small { margin-top: 4px; font-size: 7px; letter-spacing: 1.7px; }
.frontpage #superfish-main li a { padding: 0 14px; color: #111; font-size: 10px; line-height: 79px; }
.frontpage #superfish-main li#main-standardfront-page { display: none; }

.home-hero { background: linear-gradient(104deg, #f4faff 0%, #fff 68%); }
.home-hero__grid { display: grid; grid-template-columns: 44.2% 55.8%; width: 100%; max-width: none; min-height: 878px; }
.home-hero__content { align-self: center; width: 100%; max-width: none; padding: 70px 0 70px max(30px, calc((100vw - 1320px) / 2)); box-sizing: border-box; }
.home-hero__content > p:not(.home-eyebrow) { max-width: 430px; margin: 25px 0 0; line-height: 1.75; }
.home-hero__content h1 { width: 600px; }
.home-hero__content .home-eyebrow { display: flex; align-items: center; gap: 14px; }
.home-hero__content .home-eyebrow::before { display: block; width: 45px; height: 1px; background: currentColor; content: ''; }
.home-hero__visual { position: relative; overflow: hidden; clip-path: polygon(15.368% 0, 100% 0, 100% 100%, 0 100%); }
.home-hero__visual img { width: 100%; height: 100%; min-height: 878px; object-fit: cover; filter: sepia(.05) saturate(.82); }

.home-intro { display: grid; grid-template-columns: 31% 1fr; gap: 11%; align-items: center; min-height: 860px; padding: 132px max(30px, calc((100vw - 1320px) / 2)) 126px; width: 100%; max-width: none; }
.home-intro__visual { height: 470px; overflow: hidden; }
.home-intro__visual img { width: 100%; height: 100%; object-fit: cover; }
.home-intro__content { max-width: 470px; }
.home-intro__content h2 { margin-bottom: 26px; }
.home-intro__content p { margin: 0 0 14px; }
.home-figures { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; max-width: none; margin: 0; padding: 100px max(30px, calc((100vw - 1320px) / 2)) 140px; box-sizing: border-box; }
.home-figures > div { min-height: 64px; padding: 0 22px; border-left: 1px solid #e1e1e1; text-align: center; }
.home-figures > div:first-child { border-left: 0; }
.home-figures strong, .home-figures span { display: block; }
.home-figures strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; font-weight: 600; line-height: 1; }
.home-figures span { margin-top: 6px; font-size: 9px; }

.home-destination { display: grid; grid-template-columns: 49.17% 50.83%; height: 860px; background: var(--home-blue); }
.home-destination__content { display: flex; align-items: center; justify-content: flex-start; padding: 80px 70px 80px max(30px, calc((100vw - 1546px) / 2)); }
.home-destination__content > div { max-width: 620px; }
.home-destination__content h2 { margin-bottom: 26px; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.06; letter-spacing: -1.04px; }
.home-destination__content p { margin-bottom: 28px; }
.home-destination__visual { height: 860px; overflow: hidden; }
.home-destination__visual img { display: block; width: 100%; height: 100%; object-fit: cover; }

.home-spaces { width: calc(100% - 60px); max-width: 1546px; padding: 0 0 125px; }
.home-spaces > h2 { margin-bottom: 72px; }
.home-spaces > .home-eyebrow { position: relative; z-index: 2; margin: 0 0 -13px; }
.home-space-feature { position: relative; display: flex; align-items: flex-start; width: 100%; min-height: 560px; margin: 0 0 145px; padding-left: 398px; box-sizing: border-box; }
.home-space-feature__card { position: absolute; z-index: 2; top: 65px; left: 0; width: 494px; min-height: 379px; box-sizing: border-box; padding: 47px 44px 44px; background: var(--home-sand); clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0 91%); }
.home-space-feature__card h3 { margin-bottom: 23px; }
.home-space-feature__card .home-eyebrow { margin-bottom: 25px; color: #5a5245; }
.home-space-feature__card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin: 0 0 27px; padding: 0; color: #1a1a1a; font-family: 'Geist', sans-serif; font-size: 14px; line-height: 1.25; list-style: none; }
.home-space-feature__card li::before { content: '⌁'; margin-right: 9px; color: #5a5245; }
.home-space-feature > img { width: 880px; max-width: none; height: 520px; object-fit: cover; }
.home-space-list { width: calc(100% - 224px); margin: 0; border-top: 1px solid #ddd; }
.home-space-list a { display: grid; grid-template-columns: 2fr 1.75fr 1.4fr .75fr 2fr 24px; gap: 16px; align-items: center; min-height: 81px; border-bottom: 1px solid #ddd; color: #111; font-family: 'Geist', sans-serif; font-size: 13px; text-decoration: none; }
.home-space-list strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -.36px; }
.home-space-list b { font-size: 22px; font-weight: 400; }

.home-technical { min-height: 860px; padding: 132px 0; box-sizing: border-box; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.16)), url('../../quiberon_congres_theme/images/interface/galerie-4.jpg') center / cover; color: #fff; }
.home-technical h2 { margin-bottom: 25px; color: #fff; }
.home-technical p { max-width: 490px; }
.home-technical .home-eyebrow { color: #fff; }
.home-technical__tags { font-family: 'Geist', sans-serif; font-size: 11px !important; font-weight: 600; letter-spacing: 1.76px; }
.home-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; padding: 95px 0; align-items: center; }
.home-gallery img { width: 100%; height: 220px; object-fit: cover; }
.home-gallery img:nth-child(even) { height: 280px; }

.home-contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--home-sand); }
.home-contact__content { padding: 72px max(40px, calc((100vw - 1120px) / 2)); padding-right: 70px; }
.home-contact__content h2 { font-size: 38px; letter-spacing: -1.4px; }
.home-contact__subtitle { margin: 6px 0 30px; font-family: 'Poppins', sans-serif; font-size: 10px !important; letter-spacing: 1.2px; text-transform: uppercase; }
.home-contact__details { display: flex; gap: 65px; margin-bottom: 30px; }
.home-contact__details p { margin: 0; font-size: 12px; }
.home-contact__map { min-height: 390px; }
.home-contact__map .block { height: 100%; }
.home-contact__map #blockMap { width: 100%; height: 100%; min-height: 390px; }
.frontpage footer { background: var(--home-sand); }
