/* === Reset de base === */
* { margin: 0; padding: 0; box-sizing: border-box;}

body { scroll-behavior: smooth;}

/* === Header === */
header { z-index: 1000; position: fixed; top: 0; left: 0; width: 100%; color: white; background: #3B4A42; border-bottom:1px solid white; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease-in-out;}
/* Par défaut, visible */
header.visible { transform: translateY(0);}
/* Caché lors du scroll vers le bas */
header.hidden { transform: translateY(-100%);}

header .container { max-width: 1600px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1rem;}

@media (max-width: 1023px) {
    .logo img.header-logo-mobile { height: 70px;}
    .logo img.header-logo-tablet { display: none;}
}

@media (min-width: 1024px) {
    .logo img.header-logo-mobile { display: none;}
    .logo img.header-logo-tablet { height: 36px;}
}

@media (min-width: 1200px) {
    .logo img.header-logo-tablet { height: 50px;}
}

/* === Bouton Rendez-vous === */
.btn { background: #A4D8B6; color: #3B4A42; padding: 0.5rem; border-radius: 24px; text-decoration: none; font-size: 1rem; font-weight: 400; transition: background 0.3s;}
.btn:hover { text-decoration: underline; color: #3B4A42; background: white;}

@media (min-width: 520px) {
    .btn { padding: 0.5rem 1rem;}
}

/* === Menu Hamburger === */
.hamburger-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; transition: all 0.3s ease;}
.hamburger-menu span { width: 25px; height: 3px; background: white; border-radius: 2px; transition: all 0.3s ease;}

/* Animation cross */
.hamburger-menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg);}
.hamburger-menu.open span:nth-child(2) { opacity: 0;}
.hamburger-menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg);}

/* === Navigation === */
.navigation ul { display: flex; list-style: none; gap: 2rem;}
.navigation a { padding: 1px 6px; text-decoration: none; color: white; font-weight: 400; position: relative; transition: color 0.3s;}
.navigation a:hover { text-decoration: underline;}
.navigation a.active {  color: #3B4A42; background-color: #A4D8B6; border-radius: 50px;}

@media (max-width: 899px) {
    .navigation { display: none;}
    .navigation.active { display: block; position: absolute; bottom: 0; right: 0; width: 100%;}
}

@media (max-width: 899px) {
    .navigation ul { display: none; flex-direction: column; gap: 1rem; width: 100%;}
    .navigation.active ul { display: flex; position: absolute; top: 100%; right: 0; color: #3B4A42; background: white; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); padding: 2rem;}
    .navigation.active ul a { color: #3B4A42; background-color: transparent;}
    .navigation.active ul a.active { color: white; background-color: #3B4A42;}

    .hamburger-menu { display: flex;}
}

@media (min-width: 900px) {
    .navigation.active ul a { color: white; background-color: transparent;}
    .navigation.active ul a.active { color:  #3B4A42; background-color: #A4D8B6;}
}

/*---REBOOT 2---*/
/*--------------*/
a { color: white; transition: 0.3s; font-weight: bold;}
a:hover { color: #A4D8B6; text-decoration: none;}
a:focus { outline: 2px dashed white; outline-offset: 3px;}

/*---FONT FACE---*/
/*--------------*/
.barlow-condensed-regular {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
 }
 
 .barlow-condensed-semibold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
 }
 
 .roboto-mono {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
 
/*---FONT SIZE---*/
/*--------------*/
:root {
    --font-xs:normal normal 400 0.75rem/1.125rem "Barlow Condensed", sans-serif;
    --font-s:normal normal 400 0.875rem/1.125rem "Barlow Condensed", sans-serif;
    --font-m:normal normal 400 1rem/1.5rem "Barlow Condensed", sans-serif;
    --font-l:normal normal 400 1.5rem/1.75rem "Barlow Condensed", sans-serif;
    --font-xl:normal normal 400 1.75rem/2rem "Barlow Condensed", sans-serif;
    --font-2xl:normal normal 400 2rem/2.5rem "Barlow Condensed", sans-serif;
    --font-3xl:normal normal 400 2.75rem/3.25rem "Barlow Condensed", sans-serif;
    --font-4xl:normal normal 400 4rem/4.50rem "Barlow Condensed", sans-serif;
    --font-5xl:normal normal 400 4.50rem/5.50rem "Barlow Condensed", sans-serif;
    --font-6xl:normal normal 400 5rem/6rem "Barlow Condensed", sans-serif;
 }
 
 h1, .h1 { font: var(--font-3xl);}
 h2, .h2 { font: var(--font-3xl);}
 h3, .h3 { font: var(--font-3xl);}
 h4, .h4 { font: var(--font-xl);}
 h5, .h5 { font: var(--font-m);}
 h6, .h6, body { font: var(--font-m);}
 
 @media (min-width: 768px) {
    h1, .h1 { font: var(--font-5xl);}
    h2, .h2 { font: var(--font-4xl);}
    h3, .h3 { font: var(--font-3xl);}
    h4, .h4 { font: var(--font-2xl);}
    h5, .h5 { font: var(--font-xl);}
    h6, .h6, body { font: var(--font-m);}
 }
 
 @media (min-width: 992px) {
    h1, .h1 { font: var(--font-6xl);}
    h2, .h2 { font: var(--font-5xl);}
    h3, .h3 { font: var(--font-4xl);}
    h4, .h4 { font: var(--font-3xl);}
    h5, .h5 { font: var(--font-2xl);}
    h6, .h6, body { font: var(--font-m);}
 }
 
body { font-family: "Roboto Mono", monospace; font-weight: 200;}
strong { font-weight: 600;}

/*---LAYOUT---*/
/*-----------*/
body { background: #3B4A42; color: white;}

section, .section { padding: 120px 0; /*min-height: 100vh;*/}

.container { margin: 0 auto; padding: 0 15px; max-width: 1600px;}

@media (min-width: 768px) {
    .container { padding: 0 30px;}
}

@media (min-width: 768px) {
    .container { padding: 0 60px;}
}

/*---SPECIFIC STYLE---*/
/*-------------------*/
.d-block { display: block;}

a.link { display:inline-flex; align-items: center; gap:8px;}
a.link span { display:flex; align-items: center;}
a.link span[class^="ico-"] { flex-shrink: 0; width: 20px; height: 20px; background-repeat: no-repeat; background-position: center; background-size: 20px;}

a.link.external { display:inline;}
a.link.external span { display:inline; vertical-align: bottom;}
a.link.external span.ico-external { display:inline-block; position:relative; bottom:2px; margin-left: 4px; background-image: url("img/ico-open-in-new-white.svg"); background-size: auto; background-size: 20px;}
a.link.external:hover span.ico-external { background-image: url("img/ico-open-in-new-secondary.svg"); background-size: auto; background-size: 20px;}

ul.list-unordered { margin-top:24px;}
ul.list-unordered li { position:relative; list-style-type: none; padding-bottom: 16px; padding-left: 24px;}
ul.list-unordered li:before { content: '- '; position:absolute; top:0; left:0;}

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}  
.sr-only-focusable:active,  
.sr-only-focusable:focus { position:static; width:auto; height:auto; overflow:visible; clip:auto; white-space:normal}

/*---HOME---*/
/*---------*/
#home { padding-top: 180px; overflow: hidden;}
#home .container { position: relative; display: flex; flex-direction: column; gap: 60px;}
.illu-home-introduction { position: absolute; z-index: 1; top:0; left: -140px; width: 600px;}
.home-introduction { position:relative; z-index: 2; display: flex; flex-direction: column; gap: 32px;; text-align: center;}
.home-introduction h1 { font-family: "Roboto Mono", monospace; line-height: 1.5; font-weight: 100;}
.home-introduction .home-introduction-signature { text-align: right; font-style: italic;}
.home-introduction .home-introduction-signature span { display: block;}

.home-services ul { display: flex; gap:24px; margin: 0; padding: 0;}
.home-services ul li { list-style-type: none; text-align: center;}
.home-services ul li img { width: 48px;}

.home-actu { padding-top: 32px; padding-bottom:32px; text-align: center; border-top: 1px dashed #A4D8B6; border-bottom: 1px dashed #A4D8B6}

@media (max-width: 768px) {
    .illu-home-introduction { opacity: 0.1;}
    .home-services ul { flex-direction: column;}
    .home-services ul li { width: 100%;}
}

@media (min-width: 769px) {
    .illu-home-introduction { opacity: 0.25;}
    .home-services ul { flex-direction: row;}
    .home-services ul li { width: 33%;}
}

@media (min-width: 992px) {
    .home-introduction { margin:0 auto; width: 75%;}
    .home-services { margin:0 auto; width: 50%;}
}

/*---A PROPOS---*/
/*-------------*/
#a-propos { color: #3B4A42; background-color: white;}
.a-propos-qui { display: flex; flex-direction: column;}
.a-propos-qui-content { display: flex; flex-direction: row; gap: 32px; align-items: center;}
.a-propos-qui-content-photo { border-radius: 70%;}
.a-propos-qui-content-photo img { width: 220px; height: auto; border-radius: 70%;}
.a-propos-qui-content-p { display: flex; flex-direction: column; gap:24px;}
.a-propos-qui-content-p h2:nth-child(1)+p { margin-top:60px;}

@media (max-width: 768px) {
    .a-propos-qui-content { display: flex; flex-direction: column; gap: 32px; align-items: center;}
}

@media (min-width: 769px) {
    .a-propos-qui-content { display: flex; flex-direction: row; gap: 60px; align-items: center;}
}

@media (min-width: 992px) {
    .a-propos-qui { margin:0 auto; width: 75%;}
}

/*---SOINS---*/
/*----------*/
#soins { color: #3B4A42; background-color: white;}

/*#soins h3 span { display: block;}*/

#soins-01 { display: flex; flex-direction: column; gap:60px;}
#soins-01 blockquote { position: relative; margin-top:120px; font-size: 1.2rem; line-height: 1.4; font-style: italic;}
#soins-01 blockquote p { padding-left: 24px;}
#soins-01 blockquote:before { content: ''; position: absolute; top:-52px; left: 0; display: block; width: 48px; height: 48px; background-image: url("img/ico-quote-before.svg");}
#soins-01 blockquote:after { content: ''; position: absolute; bottom:-46px; right: 0; display: block; width: 48px; height: 48px; background-image: url("img/ico-quote-after.svg");}

#soins-01-content-container { padding:20px; width: 100%; background-color: white; border:1px solid #3B4A42; border-radius: 70px;}
#soins-01-content { padding: 64px 24px; border:1px solid #3B4A42; border-radius: 70px;}
#soins-01-p { margin-top:32px; display: flex; flex-direction: column; gap: 24px;}
#soins-01-img { display: none;}

@media (min-width: 992px) {
    #soins-01 { flex-direction: row; gap:60px; }
    #soins-01-heading { width: 50%;}
    #soins-01-content-container { width: 65%;}
    #soins-01-content { padding: 64px;}
    #soins-01-img { display: block; position: relative; margin-top:120px; z-index: 2; width: 100%; max-width: 640px; height: auto; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}
}

#soins-02 { display: flex; flex-direction: row; align-items: center; margin-top:60px;}
#soins-02-content-container { padding:20px; width: 100%; background-color: #3B4A42; border:1px solid #3B4A42; border-radius: 70px;}
#soins-02-content { padding: 64px 24px; color: white; background-color: #3B4A42; border:1px solid white; border-radius: 70px;}
#soins-02-p { margin-top:32px; display: flex; flex-direction: column; gap: 24px;}
#soins-02-img { display: none;}

@media (min-width: 768px) {
    #soins-02-content { padding: 64px;}
    #soins-02-img { display: block; margin-left: -60px; width: 100%; max-width: 240px; height: auto; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}
}

@media (min-width: 992px) {
    #soins-02-content-container { width: 50%;}
    #soins-02-content { padding: 64px;}
}

#soins-03 { display: flex; flex-direction: row; gap: 64px; justify-content: end; align-items: center; margin-top:60px;}
#soins-03-content-container { padding:20px; width: 100%; background-color: white; border:1px solid #3B4A42; border-radius: 70px;}
#soins-03-content { padding: 64px 24px; background-color: white; border:1px solid #3B4A42; border-radius: 70px;}
#soins-03-content p { margin-top:24px;}
#soins-03-img { display: none;}

@media (min-width: 1024px) {
    #soins-03-content-container { width: 60%;}
    #soins-03-content { padding: 64px;}
    #soins-03-img { display: block; position: relative; z-index: 2; margin-right:-120px; width: 100%; max-width: 440px; height: auto; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}
}

#info-important { display: flex; flex-direction: column; align-items: flex-start; gap: 60px; margin-top:120px;}

#traitement-medical{ padding: 24px; background-color: #f5c682; border:1px solid white; border-radius: 70px;}
#traitement-medical-wrapper { display: flex; flex-direction: row; gap: 24px; align-items: center; }
#traitement-medical img { width: 48px;}
#traitement-medical p:first-child { margin-top:0}
#traitement-medical p { margin-top:24px}

#contre-indication { padding: 64px 24px; background-color: #CDE3E3; border:1px solid white; border-radius: 70px;}
#contre-indication-wrapper { display: flex; flex-direction: row; gap: 24px; align-items: flex-start; margin-bottom:24px;}
#contre-indication img { width: 48px;}
#contre-indication p { margin-top:24px}
#contre-indication p:first-child { margin-top:0;}

@media (min-width: 992px) {
    #info-important { flex-direction: row;}
    #traitement-medical { padding: 32px 64px;}
    #contre-indication { padding: 32px 64px;}
}


/*---TARIFS---*/
/*-----------*/
#tarifs { display: flex; align-items: center; }
#tarifs .container { display: flex; flex-direction: column; gap: 60px;}

#tarifs #boxes { display: flex; gap: 40px;}

#tarifs .box { display: flex; flex-direction: column; gap: 32px; padding: 42px 32px; text-align: center; border:1px solid #A4D8B6; border-radius: 70px; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}
#tarifs .box-body { flex: 1 1 auto;}
#tarifs .box-body img { width: 76px;}
#tarifs .box-body h3 { margin: 32px 0; font-weight: 600; line-height: 1.2; text-transform: uppercase;}
#tarifs .box-body h3 span { display: block; font-size: 18px; font-weight: 400;}
#tarifs .box-footer .h3 { font-weight: 600; line-height: 1.2;}
#tarifs .box-footer .h3 span { display: block; font-size: 18px; font-weight: 400;}

@media (max-width: 991px) {
    #tarifs #boxes { flex-direction: column;}
    #tarifs .box { width: 100%;}
}

@media (min-width: 992px) {
    #tarifs h2+p { width: 50%;}
    #tarifs #boxes { flex-direction: row;}
    #tarifs .box { width: 33%; }
}

/*---QUESTIONS---*/
/*---------------*/
#questions { color: #3B4A42; background: #A4D8B6; overflow: hidden;}
#questions .container { position:relative; display: flex; flex-direction: column; gap: 60px;}
.illu-questions { position: absolute; z-index: 1; top:0px; right: -140px; width: 600px; opacity: 0.25;}

/*---QUESTIONS ACCORDION---*/
.accordion { position:relative; z-index: 2; padding: 32px; background: #A4D8B6; border:1px solid #3B4A42; border-radius: 70px; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}

.accordion-item { border-bottom: 1px solid #3B4A42;}
.accordion-item:last-child { border-bottom: none;}
.accordion-item h3 { color: #3B4A42;}
.accordion-item:hover h3 { text-decoration: underline;}

.accordion-header { 
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    position: relative; padding: 32px 0; width: 100%; text-align: left;
    background-color: transparent; outline: none;  border: none; cursor: pointer;}

.accordion-header:focus { outline: 2px dashed #3B4A42; outline-offset: 3px;}

.accordion-content { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease;}
.accordion-item.active .accordion-content { padding: 0 0 32px 0;}
.accordion-content p { margin-top:24px}
.accordion-content p:first-child { margin-top:0}

.accordion-icon img { width: 38px; transition: transform 0.6s ease;}
.accordion-item.active .accordion-icon img { transform: rotate(180deg);}

@media (min-width: 768px) {
    .accordion-icon img { width: 76px;}
}

@media (min-width: 992px) {
    .accordion { margin:0 auto; width: 75%;}
}

/*---QUESTIONS BOX---*/
#questions h2:nth-child(1)+p { margin:60px 0;}
#questions h2, .questions-intro { position:relative; z-index: 2;}
.questions-boxes { display: flex; gap: 40px;}
.questions-box { display: flex; flex-direction: column; gap: 24px; padding: 42px 32px; border:1px solid #3B4A42; border-radius: 70px; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}
.questions-box-body { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center;}
.questions-box h3 { font-weight: 600; line-height: 1.2; text-transform: uppercase;}
.questions-box h3 span { display: block; font-size: 18px; font-weight: 400;} 
.questions-box img { width: 76px;}
.questions-box-footer { text-align: center;}

@media (max-width: 991px) {
    .questions-boxes { flex-direction: column;}
    .questions-box { width: 100%;}
}

@media (min-width: 992px) {
    .questions-intro { display: flex; flex-direction: row; gap: 40px;}
    .questions-intro p { width: 50%;}

    #questions h2:nth-child(1)+p { width: 50%;}

    .questions-boxes { flex-direction: row;}
    .questions-box { width: 33%;}
}

/*---RENDEZ_VOUS---*/
/*----------------*/
#rendez-vous .container { display: flex; flex-direction: column; gap: 60px;}

.rendez-vous-intro { display: flex; gap: 60px;}

.rendez-vous-intro-content { display: flex; flex-direction: column; gap: 32px;}
.rendez-vous-intro-content-p { display: flex; flex-direction: column; gap: 24px;}
.rendez-vous-intro-content-calendar { display: flex; flex-direction: row; align-items: center; gap: 24px; padding: 42px 32px; color: #3B4A42; background-color: #A4D8B6;; border: 1px solid #A4D8B6; border-radius: 70px;}
.rendez-vous-intro-content-calendar img { width: 76px;}
.rendez-vous-intro-content-calendar p { width: 75%;}

@media (max-width: 768px) {
    .rendez-vous-intro { flex-direction: column;}
    .rendez-vous-intro-logo img { width: 100px;}
}

@media (min-width: 769px) {
    .rendez-vous-intro { flex-direction: row;}
    .rendez-vous-intro-logo img { margin-top:32px; width: 160px;}
}

#rendez-vous-boxes { display: flex; gap: 40px; margin-top: 32px;}
.rendez-vous-box { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; padding: 42px 32px; width: 33%; text-align: center; border: 1px solid #A4D8B6; border-radius: 70px; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);}
.rendez-vous-box-body { flex: 1 1 auto;}
.rendez-vous-box-body img { width: 76px;}
.rendez-vous-box-body h3 { margin:32px 0; font-weight: 600; line-height: 1.2; text-transform: uppercase;}
.rendez-vous-box-body h3 span { display: block; font-size: 18px; font-weight: 400;}
.rendez-vous-box-footer .h4 { font-weight: 600; color: #A4D8B6;}
.rendez-vous-box-footer .h4 a { color: #A4D8B6;}
.rendez-vous-box-footer .h4 a:hover { color: white; text-decoration: none;}

.rendez-vous-box-footer a.link.external span.ico-external { display:inline-block; position:relative; bottom:2px; margin-left: 4px; background-image: url("img/ico-open-in-new-secondary.svg"); background-size: auto; background-size: 20px;}
.rendez-vous-box-footer a.link.external:hover span.ico-external { background-image: url("img/ico-open-in-new-white.svg"); background-size: auto; background-size: 20px;}

.rendez-vous-intro-content-calendar a.link.external { color: #3B4A42;}

.rendez-vous-intro-content-calendar a.link.external span.ico-external { display:inline-block; position:relative; bottom:2px; margin-left: 4px; color: #3B4A42; background-image: url("img/ico-open-in-new-primary.svg"); background-size: auto; background-size: 20px;}
.rendez-vous-intro-content-calendar a.link.external:hover span.ico-external { background-image: url("img/ico-open-in-new-primary.svg"); background-size: auto; background-size: 20px;}


@media (max-width: 991px) {
    #rendez-vous-boxes { flex-direction: column;}
    .rendez-vous-box { width: 100%;}
}

@media (min-width: 992px) {
    #rendez-vous-boxes { flex-direction: row;}
    .rendez-vous-box { width: 33%;}
}

/*---FOOTER---*/
/*-----------*/
#footer-main { padding-top:0; min-height: auto; font-size: 16px; background: #3B4A42;}
#footer-main .container { display: flex; flex-direction: column; gap: 40px; text-align: center;}
#footer-main .container>p { font-style: italic;}
#footer-main .container>p span { display: block;}

.footer-services ul { display: flex; gap:24px; margin: 0; padding: 0;}
.footer-services ul li { list-style-type: none; text-align: center;}
.footer-services ul li img { width: 48px;}

@media (max-width: 768px) {
    .footer-services ul { flex-direction: column;}
    .footer-services ul li { width: 100%;}
}

@media (min-width: 769px) {
    .footer-services ul { flex-direction: row;}
    .footer-services ul li { width: 33%;}
}

@media (min-width: 992px) {
    .footer-services { margin:0 auto; width: 50%;}
}

#footer-main hr { width: 100%; border: 1px dashed #A4D8B6;}

.footer-logo { display: block; margin:0 auto 24px auto; width: 100%; max-width: 300px; height: auto;}

ul.footer-legal-info { display: flex; flex-direction: column; gap:12px; margin: 0; padding: 0; list-style-type: none;}
ul.footer-legal-info li.copyright{ margin-top:24px;}

@media (max-width: 768px) {
    #footer-legal { display: flex; flex-direction: column; gap:24px;}
}

@media (min-width: 769px) {
    #footer-legal { display: flex; flex-direction: row; gap:24px;}
    #footer-legal div, #footer-legal ul { width: 33%;}
}

ul.footer-legal-links { display: flex; flex-direction: column; gap:12px; margin: 0; padding: 0; list-style-type: none;}

/*---COOKIES---*/
.cookie-consent-modal .modal-content-wrap .modal-content .modal-body { padding: 0 1rem;}

.cookie-consent-modal .modal-content-wrap .modal-content .modal-header { padding: 0 1rem;}

.cookie-consent-modal .btn { padding: 0.5rem; border-radius: 24px !important; cursor: pointer; transition: 0.3s;}
.cookie-consent-modal .btn:hover {text-decoration: underline;}
.cookie-consent-modal .btn:focus { outline: 2px dashed #3B4A42; outline-offset: 3px;}

.cookie-consent-modal .modal-content-wrap .modal-content { padding: 1rem; max-width: 800px; color: #3B4A42; background: #A4D8B6; border: 1px solid #3B4A42; border-radius: 70px; box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);}
.cookie-consent-modal a { color:#3B4A42 !important;}
.cookie-consent-modal a:after { background: #3604c7;}
.cookie-consent-modal .modal-content-wrap .modal-content .modal-body p:last-child { margin-top: 1rem;}
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-primary { color: #fff; background-color: #3B4A42; border-color: #3B4A42;}
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-primary:hover { color: #fff; background-color: #3B4A42; border-color: #3B4A42;}
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-secondary { color: #3B4A42; background-color: #fff; border-color: #3B4A42;}
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-secondary:hover { color: #3B4A42; background-color: #fff; border-color: #3B4A42;}

@media only screen and (min-width: 768px) {
    .cookie-consent-modal .modal-content-wrap .modal-content { padding: 2rem;}
}

/*---LEGAL PAGES---*/
.legal-pages p { margin-top: 24px;}

.legal-pages h2, .legal-pages .h2 { font: var(--font-3xl) !important;}
.legal-pages h3, .legal-pages .h3 { font: var(--font-2xl);}
.legal-pages h4, .legal-pages .h4 { font: var(--font-l);}

.legal-pages p + h2, .legal-pages ul + h2 { margin-top:60px;}
.legal-pages p + h3 { margin-top:24px;}
.legal-pages p + h4 { margin-top:24px;}
.legal-pages h3 + h4 { margin-top:24px;}

.legal-pages h3 { margin-top:32px;}

.legal-pages a { color: #A4D8B6; transition: 0.3s;}
.legal-pages a:hover { text-decoration: none;}
.legal-pages a:focus { outline: 2px dashed #A4D8B6; outline-offset: 3px;}

.legal-pages a.link.external span.ico-external { display:inline-block; position:relative; bottom:2px; margin-left: 4px; background-image: url("img/ico-open-in-new-secondary.svg"); background-size: auto; background-size: 20px;}
.legal-pages a.link.external:hover span.ico-external { background-image: url("img/ico-open-in-new-secondary.svg"); background-size: auto; background-size: 20px;}
