/*
 * General
 * -----------------------------
*/

* {
    box-sizing: border-box !important;
}

html {
    font-size: 14px;
    line-height: 20px;
    overflow-x: hidden !important;
}

html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}

.page-wrapper main {
flex: 1;
}


body {
    font-family: var(--font-lisible-inter);
    font-size: 14px !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    color: var(--color-typo-noir);
    line-height: 20px;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-sec-blanccasse);
}

h1 {
    font-family: var(--font-elegante-garamond);
    font-size: 3.65rem;
    line-height: 4rem;
    font-weight: 900;
    color: var(--color-prim-vert);
    margin-bottom: 7px;
}

h2 {
    font-family: var(--font-elegante-garamond);
    font-size: 1.9rem;
    line-height: 2.1rem;
    font-weight: 900;
    color: var(--color-prim-vert);
    margin-bottom: 25px;
}

h3 {
    font-family: var(--font-elegante-garamond);
    font-size: 1.75rem;
    line-height: 1.9rem;
    font-weight: 800;
    color: var(--color-typo-noir);
    margin-bottom: 20px;
}

h4 {
    font-family: var(--font-elegante-garamond);
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 700;
    color: var(--color-typo-noir);
    margin-bottom: 15px;
}

h5 {
    font-family: var(--font-elegante-garamond);
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 700;
    color: var(--color-typo-noir);
    margin-bottom: 15px;
}

h6 {
    font-family: var(--font-elegante-garamond);
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 700;
    color: var(--color-typo-noir);
    margin-bottom: 15px;
}

strong {
    font-weight: bold;
}

.contenu-utilisateur p {
    text-align: justify;
    margin-bottom: 20px;
}

.contenu-utilisateur p:last-of-type {
    margin-bottom: 0;
}

.contenu-utilisateur a {
    /* font-weight: 900 !important; */
    text-decoration: none;
    color: var(--color-typo-vert);
}

.contenu-utilisateur a:hover {
    text-decoration: underline;
}

.contenu-utilisateur strong {
    font-weight: 700;
}

.contenu-utilisateur em {
    font-style: italic;
}

.contenu-utilisateur ul,
.contenu-utilisateur ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.contenu-utilisateur ul:first-child,
.contenu-utilisateur ol:first-child {
    margin-bottom: 5px;
}

.contenu-utilisateur ul li {
    line-height: 1.3rem;
    list-style-type: disc;
    padding-left: 10px;
}

.contenu-utilisateur ul li ul li {
    list-style-type: circle;
}

.contenu-utilisateur ul li ul li ul li {
    list-style-type: square;
}

.contenu-utilisateur ol li {
    line-height: 1.3rem;
    list-style-type: decimal;
    padding-left: 10px;
}

.contenu-utilisateur ol li ol li {
    list-style-type: lower-alpha;
}

.contenu-utilisateur ol li ol li ol li {
    list-style-type: upper-roman;
}

.contenu-utilisateur blockquote {
    display: inline-block;
    width: auto;
    background-color: var(--white);
    padding: 30px 70px;
    margin-bottom: 26px;
    position: relative;
    border-radius: 10px;
}

.contenu-utilisateur blockquote:before {
    content: '\f10d';
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 35px;
    color: var(--color-sec-beigeclair);
    position: absolute;
    left: 20px;
    top: 25px;
    opacity: 0.35;
}

.contenu-utilisateur blockquote:after {
    content: '\f10e';
    font-family: var(--fontawesome);
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 35px;
    color: var(--color-sec-beigeclair);
    position: absolute;
    right: 20px;
    bottom: 25px;
    opacity: 0.35;
}

.contenu-utilisateur blockquote p {
    width: 100%;
    text-align: center;
    color: var(--color-typo-gris);
    font-size: 1.15rem;
    line-height: 1.3rem;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.contenu-utilisateur p img.size-full,
.contenu-utilisateur a img.size-full {
    display: inline-block;
    width: auto !important;
    max-width: 100% !important;
    height: auto;
    border: none !important;
}

.contenu-utilisateur p img.aligncenter,
.contenu-utilisateur a img.aligncenter {
    display: inline-block;
    margin: auto;
}

.contenu-utilisateur p img,
.contenu-utilisateur a img {
    max-width: 100%;
    height: auto;
}

.bkg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bkg-contain {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

a.stretched-link {
    display: block;
}

sup, sub {
    font-size: 0.55em !important;
}

.clear {
    clear: both !important;
}

.hide-this {
    display: none !important;
}

/* End of Général */


/*
 * Content
 * -----------------------------
 */

 /* --- Overlay --- */
.overlay.o-0 {
    background: rgba(0, 0, 0, 0) !important;
}
.overlay.o-10 {
    background: rgba(0, 0, 0, 0.1) !important;
}
.overlay.o-20 {
    background: rgba(0, 0, 0, 0.2) !important;
}
.overlay.o-30 {
    background: rgba(0, 0, 0, 0.3) !important;
}
.overlay.o-40 {
    background: rgba(0, 0, 0, 0.4) !important;
}
.overlay.o-50 {
    background: rgba(0, 0, 0, 0.5) !important;
}
.overlay.o-60 {
    background: rgba(0, 0, 0, 0.6) !important;
}
.overlay.o-70 {
    background: rgba(0, 0, 0, 0.7) !important;
}
.overlay.o-80 {
    background: rgba(0, 0, 0, 0.8) !important;
}
.overlay.o-90 {
    background: rgba(0, 0, 0, 0.9) !important;
}


/* --- CTA --- */
a.cta {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 2px;
}

a.cta.green {
    color: var(--color-typo-vert);
}
a.cta.pink {
    color: var(--color-ui-rose);
}

a.cta.primary,
button.cta.primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 55px;
    padding: 2px 40px 0 40px;
    background-color: var(--color-prim-vert);
    color: var(--white);
    font-family: var(--font-lisible-nunito);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    padding-top: 2px;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

a.cta.primary.green {
    background-color: var(--color-typo-vert);
}
a.cta.primary.pink {
    background-color: var(--color-ui-rose);
}
a.cta.primary.pink.reverse {
    color: var(--color-ui-rose);
    background-color: var(--color-prim-rose);
}

a.cta.outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 55px;
    padding: 2px 40px 0 40px;
    background-color: transparent;
    color: var(--color-prim-vert);
    border: 1px solid var(--color-prim-vert);
    font-family: var(--font-lisible-nunito);
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    padding-top: 2px;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
a.cta.outline:hover {
    background-color: var(--color-prim-vert);
    color: var(--white);
}

a.cta.outline.green {
    border-color: var(--color-typo-vert);
    color: var(--color-typo-vert);
}
a.cta.outline.green:hover {
    background-color: var(--color-typo-vert);
    color: var(--white);
}

a.cta.outline.pink {
    border-color: var(--color-ui-rose);
    color: var(--color-ui-rose);
}
a.cta.outline.pink:hover {
    background-color: var(--color-ui-rose);
    color: var(--white);
}

/* End of Content */



/*
 * Banner Section
 * -----------------------------
*/

section.banner-section .banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: url('') no-repeat center center/cover;
    display: flex;
    align-items: flex-start;
    color: var(--white);
    margin-top: -100px;
    margin-bottom: 20px;
    padding-top: 200px;
}

section.banner-section .banner .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

section.banner-section .banner .content {
    position: relative;
    z-index: 1;
}

section.banner-section .banner .content .title {
    font-family: var(--font-elegante-garamond);
    font-size: 4.5rem;
    line-height: 1;
    font-weight: normal;
    font-variant: normal;
    color: var(--white);
}

section.banner-section .breadcrumb {
    margin-bottom: 10px;
}

section.banner-section .breadcrumb span {
    color: var(--color-typo-vert);
    font-family: var(--font-lisible-nunito);
    font-size: 1.1rem;
    padding: 0 10px;
}
section.banner-section .breadcrumb span:first-of-type {
    padding-left: 0;
}


section.banner-section .breadcrumb a {
    color: var(--color-typo-vert);
    font-weight: bold;
}

section.banner-section .breadcrumb .breadcrumb_last {
    color: var(--color-ui-vert);
    font-weight: normal;
}

@media screen and (max-width: 991px) {
    section.banner-section .banner {
        min-height: 220px;
        padding-top: 130px;
    }
    section.banner-section .banner .content .title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 575px) {
    section.banner-section .banner .content .title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    section.banner-section .breadcrumb {
        padding: 0 20px;
    }
}

/* End of Banner Section */

/*
 * Slick Slider
 * -----------------------------
*/

.slick-arrow-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-ui-vert);
    cursor: pointer;
    padding: 0;
}

.slick-prev.slick-arrow-custom {
    left: -40px;
}

.slick-next.slick-arrow-custom {
    right: -40px;
}

.slick-arrow-custom:hover {
    color: var(--color-typo-vert);
}


.slick-dots {
    text-align: center;
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 0;
    line-height: 0;
    display: block;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: var(--color-ui-vert);
    transform: scale(1.2);
}


/* End of Slick Slider */


/*
 * Page 404
 * -----------------------------
*/
.page-404 .background-page {
    margin-top: 70px;
    margin-bottom: 70px;
    text-align: center;
}

.page-404 .background-page p.desc {
    text-align: center !important;
}

.page-404 .background-page img.img-404 {
    display: block;
    margin: 25px 0 15px 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
}

/* End of 404 */
