/**********************************************************************************/
/* REGLES GLOBALES DU SITE */
/**********************************************************************************/
html {
    font-size: 62.5%;
    /* overflow-x: hidden; */
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    color: #000033;
    /* overflow-x: hidden; */
}
body.loadAjax * {
    cursor: wait !important;
}
.noScroll {
    overflow: hidden;
}
#divGlobale {
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Calibri Light, sans-serif;
    background: #FFFFFF;
}
.w100 {width: 100%}
.w95 {width: 95%;}
.w90 {width: 90%;}
.w85 {width: 85%;}
.w80 {width: 80%;}
.w75 {width: 75%;}
.w70 {width: 70%;}
.w65 {width: 65%;}
.w60 {width: 60%;}
.w55 {width: 55%;}
.w50 {width: 50%;}
.w45 {width: 45%;}
.w40 {width: 40%;}
.w35 {width: 35%;}
.w30 {width: 30%;}
.w25 {width: 25%;}
.w20 {width: 20%;}
.w15 {width: 15%;}
.w10 {width: 10%;}
.w5 {width: 5%;}

.mauto {
    margin: auto;
}
.flex {
    display: flex;
}
.centerFlex {
    justify-content: center;
}
.none {
    display: none;
}
.block {
    display: block;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.souligne {
    text-decoration: underline;
}
.erreurForm {
    display: block;
    font-size: 1.2rem;
    color: red;
}
.div2En1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}
header, footer {
    color: #FFFFFF;
}
header a, footer a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}
a:hover, label:hover {
    cursor: pointer;
}
footer a:hover {
    text-decoration: underline;
}
input[type="submit"]:hover {
    cursor: pointer;
}
section {
    width: 80%;
    margin: 2rem auto;
}
h3 {
    font-family: 'Museo Slab 700';
    font-size: 2.2rem;
    font-weight: normal;
    text-transform: uppercase;
}
section article {
    font-size: 1.4rem;
}
#filAriane {
    width: 90%;
    margin: 1rem auto 3rem auto;
    font-size: 1.4rem;
    color: #000033;
}
#filAriane a {
    margin: 0 0.3rem;
    color: #000033;
    text-decoration: none;
}
aside form h4 {
    margin: 1rem 0;
    padding-bottom: 1.8rem;
    font-family: 'HMS Gilbert Script';
    font-size: 5.8rem;
    font-weight: normal;
    line-height: 0.5;
    text-align: center;
    border-bottom: 1px #FFFFFF solid;
}
#showAll {
    padding-bottom: 2rem;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    color: white;
}
input:not([type="submit"]) {
    height: 3rem;
    text-align: center;
    border: none;
}
input[type="text"], input[type="date"], select {
    min-width: 20%;
    height: 3rem;
}
.fixedHeader {
    background: #21688E !important;
    box-shadow: 0px 6px 11px -5px #000;
}
/* .fixedHeader #topHeader {
    align-items: center;
} */
.flatpickr-calendar {
    font-family: Calibri;
}
.flatpickr-calendar .flatpickr-day {
    border-radius: 0;
}
.inputCalendrier .input-button {
    align-self: center;
    justify-content: center;
    display: inline-block;
    padding: 0.8rem 1.2rem;
    line-height: 1;
    text-decoration: none;
    border-left: 1px solid #000000;
    background: #FFFFFF;
    cursor: pointer;
}
.input-button .fa-calendar {
    color: #007F00;
}
.input-button .fa-times {
    color: #CC0000;
}
.boutonReservation,
.boutonFavori {
    display: flex;
    align-items: center;
    align-self: flex-end;
    justify-content: space-around;
    padding: 1.5rem 2.5rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    font-family: Calibri;
    font-weight: bold;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
}
.boutonReservation span {
    margin-right: 0.5rem;
}
.boutonFavori {
    width: 22rem;
}
.slider ul a {
    text-decoration: none;
}
.slider .glide__slides {
    overflow: visible !important;
}
.carouselPromotion .glide__slides {
    overflow: hidden;
}
.carouselPromotion .glide__bullet {
    width: 1.1rem;
    height: 1.1rem;
}
.slider ul img:hover {
    -webkit-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.28);
    -moz-box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.28);
    box-shadow: 0px 0px 15px 3px rgba(0,0,0,0.28);
}
@keyframes pulse {
	10% {
        transform: scale(1.1)
    }
}
#boutonRetourTop {
    position: fixed;
    bottom: 6rem;
    right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-family: Calibri;
    font-size: 2rem;
    line-height: 1;
    border: none;
    background: #FF6633;
    color: #FFFFFF;
    border-radius: 2rem;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 30;
    animation:pulse 1.5s infinite;
}
#boutonRetourTop.show {
    opacity: 1;
    visibility: visible;
  }
#boutonRetourTop:hover {
    cursor: pointer;
    transform: scale(0.9);
    background: #FF9933;
}
#boutonRetourTop span {
    transform: rotate(-90deg);
}
#imagesMosaique {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.imageMosaique img {
    object-fit: cover;
    width: 10rem;
    height: 10rem;
    margin: 1rem 0;
}
.mosaiquePop {
    position: absolute;
    left: 10%;
    display: none;
    width: 35%;
    margin: -9rem 0;
    border: 5px solid #E8E8E8;
    border-radius: 0.5rem;
    transform: scale(1.25);
    transition: cubic-bezier(0.19, 1, 0.22, 1);
}
.imageMosaique:hover {
    cursor: pointer;
    transform: scale(1.3);
}
.imageMosaique:hover + .mosaiquePop {
    display: block;
}
select {
    position: relative;
    display: block;
    width: 100%;
    min-height: 2.5rem;
    margin: 0;
    padding: 0.3rem 2rem 0.3rem 0.3rem;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    color:#000033;
    border: none;
    background: #FFFFFF;
    text-overflow: ellipsis;
    text-align: center;
    border-radius: 2rem;
}
select::-ms-expand {
    display: none;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        padding-right: 1.8rem;
    }
}
.select {
    position: relative;
    display: block;
    margin: 0.5rem 0;
}
.select::after {
    position: absolute;
    content: "";
    top: 45%;
    right: 1rem;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000000 transparent transparent transparent;
}
/**********************************************************************************/
/* MODALS */
/**********************************************************************************/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,0.8);
    font-family: Calibri;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
}  
.modal p {
    margin: 0.5rem;
}
.modal.is-visible {
    visibility: visible;
    opacity: 1;
    z-index: 50;
} 
.modal-dialog {
    position: relative;
    max-width: 80rem;
    min-width: 40rem;
    max-height: 80vh;
    border-radius: 5px;
    background: #FFFFFF;
    overflow: auto;
    cursor: default;
    border: 1px solid black;
    box-shadow: 5px 5px 18px -1px #000000;
}
.modal-header {
    font-size: 5rem;
    color: #4D99D6;
}
.modal-dialog > * {
    padding: 0.2rem;
}
.modal-header,
.modal-footer {
    margin: 0 !important;
    padding: 0.6rem 0;
}
.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important;
    padding: 5rem 0 3rem 0;
}
.modal-header p {
    font-family: Calibri;
    font-weight: bold;
    text-transform: uppercase;
}
.modal-header .close-modal {
    font-size: 1.5rem;
}
.modal-content {
    margin: 1rem 0 3rem 0;
    padding: 0 2rem;
    text-align: center;
    color: #066991;
}
.modal-content p {
    width: 50rem;
}
.modal-content button {
    height: 5rem;
    padding: 0 6rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}
.modal-content .close-modal {
    background: #009BD9;
}
.modal-content .close-modal:hover {
    border: 1px solid #009BD9;
    background: #FFFFFF;
    color: #009BD9;
}
.modal-content .refuse-modal {
    background: #E30613;
}
.modal-content .refuse-modal:hover {
    border: 1px solid #E30613;
    background: #FFFFFF;
    color: #E30613;
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[data-animation] .modal-dialog {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
}
[data-animation].is-visible .modal-dialog {
    opacity: 1;
    transition-delay: 0.2s;
}
[data-animation="slideInOutDown"] .modal-dialog {
    transform: translateY(100%);
}
[data-animation="slideInOutTop"] .modal-dialog {
    transform: translateY(-100%);
}
[data-animation="slideInOutLeft"] .modal-dialog {
    transform: translateX(-100%);
}
[data-animation="slideInOutRight"] .modal-dialog {
    transform: translateX(100%);
}
[data-animation="zoomInOut"] .modal-dialog {
    transform: scale(0.2);
}
[data-animation="rotateInOutDown"] .modal-dialog {
    transform-origin: top left;
    transform: rotate(-1turn);
}
[data-animation="mixInAnimations"].is-visible .modal-dialog {
    animation: mixInAnimations 2s 0.2s linear forwards;
}
[data-animation="slideInOutDown"].is-visible .modal-dialog,
[data-animation="slideInOutTop"].is-visible .modal-dialog,
[data-animation="slideInOutLeft"].is-visible .modal-dialog,
[data-animation="slideInOutRight"].is-visible .modal-dialog,
[data-animation="zoomInOut"].is-visible .modal-dialog,
[data-animation="rotateInOutDown"].is-visible .modal-dialog {
    transform: none;
}
@keyframes mixInAnimations {
    0% {
        transform: translateX(-100%);
    }

    10% {
        transform: translateX(0);
    }

    20% {
        transform: rotate(20deg);
    }

    30% {
        transform: rotate(-20deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(10deg);
    }

    70% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(5deg);
    }

    90% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/**********************************************************************************/
/* POP-UP CALCUL QF & CALENDRIER */
/**********************************************************************************/
#afficheQf, 
#afficheCalendrier {
    display: none;
}
#articleFormulaireQf, 
#articleCalendrier {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    text-align: center;
    background: rgba(0,0,0,0.7);
}
#afficheQf:checked ~ #articleFormulaireQf, 
#afficheCalendrier:checked ~ #articleCalendrier {
    display: flex;
}
#articleFormulaireQf form,
#calendrierListeColonies {
    width: 40%;
    margin: auto;
    padding: 0.5rem;
    background: #FFFFFF;
    border-radius: 2rem;
}
#articleFormulaireQf form fieldset,
#articleCalendrier fieldset {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2rem;
}
.formQf fieldset {
    border: 2px solid #FF6633;
}
.formQf h4 {
    margin: 3rem auto 1rem auto;
    font-family: 'Gotham';
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF6633;
}
.formQf .sectionParagrapheQF {
    text-align: justify;
}
.formQf .sectionFormQF {
    width: 100%;
}
.formQf .sectionFormQF .calculQF {
    display: flex;
    align-items: center;
}
.formQf .sectionFormQF .calculQF p {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
}
.formQf input:not([type="submit"]) {
    width: 35%;
    height: 3rem;
    margin: 1.5rem auto;
    border-radius: 2rem;
    border: 2px solid #FF6633;
}
.formQf button {
    width: 6rem;
    height: 6rem;
    margin: 1rem auto;
    border: none;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #FF6633;
    border-radius: 50%;
    transform: rotate(90deg);
    cursor: pointer;
}
.formQf button:hover {
    background: #FF9933;
}
.formQf #resultatQf {
    width: 35%;
    margin: 1.5rem auto;
    padding: 0.6rem;
    text-align: center;
    border-radius: 10rem;
    border: 2px solid #FF6633;
}
.formQf label {
    color: #FF6633;
}
#afficheCartePlateformes {
    width: 100%;
}
#articleFormulaireQf #formQfAccueil label {
    margin: 1rem auto 4rem auto;
    font-size: 1.2rem;
    text-decoration: underline;
}
#articleCalendrier 
#calendrierListeColonies h4 {
    width: 100%;
    font-family: 'Gotham';
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF6633;
}
#divCartePoints {
    display: flex;
    flex-direction: column;
    margin: 2rem auto;
    padding: 1rem;
    background: #FFFFFF;
}
#divCartePoints #cartes {
    display: block;
    height: 100%;
}
#divCartePoints #cartes img {
    width: 40%;
}
#divCartePoints #calendrier img {
    width: 50%;
}
#articleCalendrier label {
    margin: 1rem auto;
    font-size: 1.2rem;
    text-decoration: underline;
}
/**********************************************************************************/
/* PAGES MAINTENANCE */
/**********************************************************************************/
#pageMaintenance {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40rem;
    color: #000000;
}
#pageMaintenance p {
    padding: 2rem;
    font-size: 2.5rem;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 0.5rem;
}
/**********************************************************************************/
/* HEADER */
/**********************************************************************************/
header {
    position: relative;
    height: 400px;
    /* overflow: hidden; */
}
header .background {
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center top;
}
header .header {
    position: fixed;
    top: 0;
    left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	z-index: 5;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0) 100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#topHeader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}
header #logo,
header #burger {
    margin: 2rem;
}
header #logo span {
    font-size: 10rem;
    line-height: 0.3;
}
header #logo img {
    margin-right: 3rem;
}
header #logoEPAF {
    height: 5rem;
}
header #logoASFV {
    height: 6rem;
}
header #burger,
header #croix {
    display: none;
}
header #panier {
    position: relative;
}
header nav {
    display: flex;
    align-items: center;
    height: 3.5rem;
    margin: 1rem 0;
	padding: 0.5rem;
}
header nav a, 
header nav p {
    margin: 0 1rem;
    font-size: 1.6rem;
    font-family: Calibri;
    letter-spacing: 0;
    text-transform: uppercase;
}
header #nav {
	height: 3.5rem;
    margin: 0;
	padding: 0.5rem;
	background: #017cc0;
	border-radius: 0 0 0 1rem;
}
header nav svg,
header nav img {
    fill: #FFFFFF;
    width: 2rem;
    height: 2rem;
    margin-left: 1rem;
}
header .labelHeader {
    display: none;
}
header #videoContainer {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: -100;
}
header #deconnexion {
    display: flex;
    align-items: center;
}
header #deconnexion span {
    margin-left: 1rem;
    font-size: 2rem;
}
header video {
    display: block;
    width: 100%;
}
#topHeader #itemsPanier {
    position: absolute;
    top: -1rem;
    right: -1rem;
    padding: 0.3rem 0.6rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 1rem;
    font-variant-numeric:tabular-nums;
    background: #FF6633;
}
/**********************************************************************************/
/* FOOTER */
/**********************************************************************************/
footer {
    margin-top: 7rem;
    font-family: Calibri;
    font-weight: 300;
}
footer .hautFooter {
    justify-content: space-around;
    font-size: 1.8rem;
    background: #999999;
}
footer .hautFooter p, 
footer .hautFooter a {
    margin: 2.5rem 0;
    font-weight: bold;
    text-transform: uppercase;
}
.hautFooter #lienContact {
    display: inline;
    margin: 0;
}
.hautFooter span {
    font-weight: 300;
}
.hautFooter .pictoReseaux {
    margin: 2rem 0;
}
.hautFooter .pictoReseaux a {
    display: inline-block;
    margin: 0.11rem 0;
}
.hautFooter .pictoReseaux img {
    height: 3rem;
    margin: 0 0.5rem;
}
footer .boutonNewsletter {
    position: relative;
    flex-direction: column;
}
.hautFooter .boutonNewsletter #labelNewsletter {
    padding: 0.8rem 3.5rem;
    margin: 1.5rem 0 0 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    background: #327AC6;
    border: none;
}
.basFooter .triCol:nth-child(n+2) {
    width: 30%;
    padding: 0 2rem;
    background: #999999;
}
.basFooter .triCol {
    border-radius: 0.5rem;
}
.basFooter {
    justify-content: space-around;
    padding: 2rem 5rem;
    font-size: 1.5rem;
    background: #BFBFBF;
}
.basFooter .colonnes {
    display: flex;
    justify-content: space-between;
}
.basFooter .colonnes div {
    width: 45%;
}
.basFooter p, footer .basFooter .lienPrincipal {
    margin: 2rem 0;
    font-weight: 900;
    text-transform: uppercase;
}
.basFooter ul {
    padding: 0 1rem;
    font-size: 1.1rem;
    text-indent: -1rem;
    list-style: none;
}
.basFooter ul li {
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
}
/**********************************************************************************/
/* NEWSLETTER */
/**********************************************************************************/
#inscriptionNewsletter {
    display: none;
    position: absolute;
    top: 5rem;
    font-family: 'Gotham Narrow Medium';
    font-size: 1.3rem !important;
    color: #000033;
    background: #FFCC99;
}
#inscriptionNewsletter .select select {
    border-radius: 0;
}
#inscriptionNewsletter #formConteneur {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 95%;
    margin: auto;
    padding: 0.5rem 0;
}
#inscriptionNewsletter p {
    margin: 0 0.5rem;
    font-weight: 400;
    text-transform: initial;
}
#inscriptionNewsletter ul {
    padding: 0;
    margin: 0.2rem 0;
    font-size: 1.3rem !important;
    color: red;
}
#inscriptionNewsletter label {
    margin: 1rem 0;
}
#inscriptionNewsletter .OneCupNewsletter {
    justify-content: flex-start;
    margin: 0;
}
#inscriptionNewsletter span {
    font-family: 'Gotham Narrow Medium';
    font-size: 1.2rem;
    font-weight: 200;
}
#inscriptionNewsletter input:not([type="checkbox"]):not([type="radio"]){
    -webkit-appearance: initial;
    -moz-appearance: initial;
    -ms-appearance: initial;
    appearance: initial;
    outline: initial;
    width: 99%;
    height: 2.5rem;
    border: initial;
    text-align: left;
    border-radius: 0;
}
#inscriptionNewsletter .hideme {
    visibility: hidden;
    height: 0.3rem;
}
#inscriptionNewsletter select {
    width: 100%;
    margin: 0.1rem 0;
}
#inscriptionNewsletter .labelInput {
    font-weight: 400;
    margin: 1rem 0 0 0;
}
#inscriptionNewsletter input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
    display: inline-block !important;
    width: 1.2rem;
    height: 1.2rem;
    background: #FFFFFF;
    border-radius: 0 !important;
    vertical-align: bottom;
}
#inscriptionNewsletter input[type="checkbox"]:checked:before {
    display: block;
    content: '■';
    color: #000033;
    font-size: 1.4rem;
    line-height: 0.6;
}
#inscriptionNewsletter input[type="submit"] {
    width: 50%;
    height: auto !important;
    margin: auto;
    padding: 0.3rem 0.8rem;
    font-size: 1.8rem;
    text-transform: uppercase !important;
    text-align: center !important;
    color: #FFFFFF;
    background: #FF6633;
    border: none;
    border-radius: 1rem !important;
}
#fermerInscription {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: underline;
}
/**********************************************************************************/
/* AU DESSUS DE 2000PX */
/**********************************************************************************/
/* @media screen and (min-width: 2000px) {
    body {
        max-width: 2000px;
        margin: auto;
        background: beige;
    }
} */
/**********************************************************************************/
/* EN DESSOUS DE 1400PX */
/**********************************************************************************/
@media screen and (max-width: 1400px) {
    .hautFooter, 
    #labelNewsletter,
    .basFooter,
    .basFooter li {
        font-size: 1.4rem !important;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 1300PX */
/**********************************************************************************/
@media screen and (max-width: 1300px) {
    header nav a, header nav p {
        font-size: 1.3rem;
    }
    .basFooter .triCol:nth-child(n+2) {
        background: none;
    }
    .basFooter .colonnes {
        display: block;
    }
    .basFooter .colonnes div {
        width: 100%;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 1100PX */
/**********************************************************************************/
@media screen and (max-width: 1100px) {
    #pageMaintenance {
        width: 95%;
        height: auto;
        margin: 0 auto;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 800PX */
/**********************************************************************************/
@media screen and (max-width: 800px) {
    .modal-dialog {
        position: relative;
        max-width: 80rem;
        min-width: 90%;
        max-height: 80vh;
    }
    .modal-header {
        padding: 1rem 0;
        font-size: 4rem;
    }
    .modal-content p {
        width: auto;
    }
    .modal-content button {
        height: 3.5rem;
        padding: 0 4rem;
    }
    html {
        overflow-x: hidden;
    }
    body {
        overflow-x: hidden;
    }
    .datepicker-here {
        background-size: 7%;
    }
    #filAriane {
        display: none;
    }
    main {
        min-height: 50rem;
    }
    header #logo img {
        height: 5rem;
    }
    header #menu600 {
        margin: 0;
    }
    header .header {
        position: absolute;
    }
    #topHeader {
        background: none;
    }
    header #menu600 #burger {
        display: flex;
        justify-content: flex-end;
    }
    #displayMenu600:checked ~ #menu600 nav #croix {
        display: block;
    }
    header nav {
        position: absolute;
        top: 0;
        right: -80rem;
        display: flex;
        flex-direction: column;
        justify-content: right;
        align-items: flex-end;
        height: auto;
        margin: 0;
        padding-left: 2rem;
        background: rgba(0,0,0,0.4);
        transition: all 500ms; 
    }
    #displayMenu600:checked ~ #menu600 nav {
        right: 0;
    }
    #displayMenu600:checked ~ #menu600 #burger {
        display: none;
    }
    header nav a {
        margin: 1.5rem 0.5rem 1.5rem auto;
        letter-spacing: 0.5px;
    }
    header nav #croix {
        margin-right: 0.5rem;
        font-size: 3.5rem;
        text-align: right;
    }
    header nav p {
        display: none;
    }
    header nav .labelHeader {
        display: inline-block;
    }
    header nav img {
        width: 2.4rem;
    }
    footer {
        margin-top: 2rem;
    }
    footer .hautFooter {
        flex-direction: column;
        text-align: center;
    }
    footer .hautFooter a,
    footer .hautFooter p {
        font-size: 1.5rem;
    }
    footer .pictoReseaux {
        display: flex;
        justify-content: space-around;
    }
    .pictoReseaux img {
        height: 3.5rem !important;
    }
    footer .basFooter {
        flex-direction: column;
        align-items: center;
        padding: 0;
        text-align: center;
    }
    .basFooter .triCol:nth-child(n+2) {
        width: 123%;
        margin: 2rem 0 0 0;
        border-radius: 0;
    }
    .triCol .colonnes {
        flex-direction: column;
        align-items: center;
    }
    .triCol .colonnes div {
        width: 100%;
    }
    .hautFooter .boutonNewsletter #labelNewsletter {
        padding: 1.5rem;
        font-size: 1.5rem;
    }
    .hautFooter .boutonNewsletter #inscriptionNewsletter {
        position: initial;
        margin: 0;
    }
    #inputNewsletter:checked ~ #inscriptionNewsletter {
        height: 100%;
        padding: 0.5rem 0;
    }
    .hautFooter .boutonNewsletter #inscriptionNewsletter input:not(input[type="checkbox"]),
    .hautFooter .boutonNewsletter #inscriptionNewsletter select {
        height: 3.5rem;
    }
    .hautFooter .boutonNewsletter #inscriptionNewsletter input[type="checkbox"] {
        width: 1.5rem;
        height: 1.5rem;
    }
    #inscriptionNewsletter input[type="checkbox"]:checked::before {
        font-size: 2.8rem;
    }
    .hautFooter .boutonNewsletter #inscriptionNewsletter input[type="radio"] {
        display: inline-block !important;
        height: initial !important;
    }
    .hautFooter .boutonNewsletter #inscriptionNewsletter input[type="submit"] {
        width: 17rem;
        margin: 3rem auto 2rem auto;
    }
    #inscriptionNewsletter .labelCheckbox,
    #inscriptionNewsletter span {
        font-size: 1.5rem;
    }
    #articleFormulaireQf form,
    #calendrierListeColonies {
        width: 90%;
    }
    #articleFormulaireQf #formQfAccueil h4 {
        font-size: 1.6rem;
    }
    #articleFormulaireQf #formQfAccueil input:not([type="submit"]) {
        width: 70%;
        margin: 1.5rem auto;
    }
    #articleFormulaireQf #formQfAccueil button {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 3.5rem;
        line-height: 1.3;
    }
    #articleFormulaireQf #formQfAccueil #resultatQf {
        width: 70%;
        margin: 1.5rem auto;
        padding: 0.6rem;
        text-align: center;
        border-radius: 10rem;
    }
    #articleFormulaireQf #formQfAccueil label {
        margin: 1rem auto 4rem auto;
        font-size: 1.2rem;
        text-decoration: underline;
    }
    .imageMosaique img {
        object-fit: initial;
        width: 100%;
        height: auto;
        margin: 1rem 0;
    }
    .imageMosaique:hover {
        transform: none;
    }
    .imageMosaique:hover + .mosaiquePop {
        display: none;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 500PX */
/**********************************************************************************/
@media screen and (max-width:500px) {
    header {
        height: 300px;
    }
    header nav a {
        font-size: 1.7rem;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 400PX */
/**********************************************************************************/
@media screen and (max-width: 400px) {
    header nav {
        flex-direction: column;
        justify-content: right;
        margin: 0;
        background: rgba(0,0,0,0.4);
    }
    .hautFooter .pictoReseaux {
        margin: 2rem 0;
    }
    .hautFooter .pictoReseaux a {
        display: inline-block;
        margin: 0.11rem 0;
    }
    .hautFooter .pictoReseaux img {
        height: 3rem !important;
    }
}
/**********************************************************************************/
/* EN DESSOUS DE 350PX */
/**********************************************************************************/
@media screen and (max-width: 350px) {
    header nav a {
        font-size: 1.3rem;
    }
}