:root {
    --header-height: 226px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

html {
    overflow-y: scroll !important;
}

body {
    font-family: "Lato", sans-serif;
    font-size:20px; 
    color:#072a66;
    font-weight: 400;
    margin: 0;
    background-color:#ffffff;
    line-height: 1.4;
}

@media (max-width:600px) {
    body {font-size:18px;}
}


#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}



.wrapper-header{
    display: flex;
    flex-direction: row;
    align-items: center;

    position: relative;
    z-index: 1000000000;

    max-width: 1920px;
    margin: 0 auto;

    font-size: 20px;

    height: var(--header-height);

    background-image: linear-gradient(to bottom, #e5edf3 50%, transparent 50%);
}

body.page-accueil .wrapper-header {
    background: none;
}


/* HEADER LOGO */
.wrapper-header div.logo {
    flex-shrink: 0;
    --scale: 1;
    z-index: 100000;
}

.wrapper-header div.logo img {
   vertical-align: top;
   width: 15em;
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);

    padding: 1.5em 2em;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}


/* HEADER TOP */
.wrapper-header .header-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    align-items: center;
    position: absolute;
    top: 0.9em;
    right: 1em;
    z-index: 3;
}


/* MENU */
.wrapper-menu{
    text-align: center;
    position: relative;
    z-index: 2;

    margin-left: auto;
}
.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-end;
    width: max-content;
    margin-left: auto;
    background: rgba(7, 42, 102, 0.9);
    box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.2);
}
.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-menu .menu-item > a,
.wrapper-menu .menu-item > span{
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-size: 1.3em;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0.8em 1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* ON HOVER */
.wrapper-menu .menu-item:hover > a,
.wrapper-menu .menu-item:hover > span {
    color: rgb(7, 42, 102);
    background: #ffd446;
}

/* ON SELECTED */
.wrapper-menu .menu-item.selected > a,
.wrapper-menu .menu-item.selected > span {
    color: rgb(7, 42, 102);
    background: #ffc200;
}

.wrapper-menu .menu span div.menu-arrow {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.wrapper-menu .menu-item:hover .menu-arrow {
    filter: brightness(0) saturate(100%) invert(13%) sepia(32%) saturate(5284%) hue-rotate(210deg) brightness(92%) contrast(100%);
} 
.wrapper-menu .menu-item.selected .menu-arrow {
    filter: brightness(0) saturate(100%) invert(13%) sepia(32%) saturate(5284%) hue-rotate(210deg) brightness(92%) contrast(100%);
} 

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: -1;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}


.wrapper-menu .sousmenu::before {
    content: '';
    position: absolute;
    top: 0px;
    height:10px;
    left: 0px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0) 10px);
}
.wrapper-menu .sousmenu a{
    color: #072a66;
    text-decoration: none;
    padding: 15px 15px;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 18px;
    font-weight: 500;
}

.wrapper-menu .sousmenu a:hover{
    background: rgba(26, 40, 66, 0.15);
}

.wrapper-menu .sousmenu .selected a {
    background: #ffc200;
    color: #072a66;
}

.wrapper-menu .menu li:hover > ul{
    display: block;
}


/* HEADER TOP TEL */
a.header-top-tel {
    font-weight: 900;
    font-family: "Lato", sans-serif;
    font-size: 1em;
    color: #072a66;
    text-decoration: none;
    padding: 0.4em 0.7em;
    background: #ffc200;
    border-radius: 5px;
}
a.header-top-tel img {
    height: 0.8em;
    vertical-align: -0.1em;
    margin-right: 0.3em;
}

a.header-top-tel:hover {
    background: #ffd446;
}

body.page-accueil a.header-top-tel {
    box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.4);
}



/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    bottom: 26px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    padding: 15px;
    background-color: #ffc200;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    transition: background 0.2s ease;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #072a66;

    transition: transform 0.2s ease;
}


.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -8px); /* 8px + 2px de la hauteur*/
}
.wrapper-header .burger-btn .line:last-child{
    transform: translate(-50%, 6px);
}
.wrapper-header.open .burger-btn .line:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}
.wrapper-header.open .burger-btn .line:nth-child(2){
    transform: translate(-50%, -50%) scaleX(0);
}
.wrapper-header.open .burger-btn .line:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}


body.page-accueil .burger-btn {
    box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.4);
}


@media (max-width: 1485px) {
    :root {
        --header-height: 204px;
    }
    .wrapper-header {
        font-size: 18px;
    }
}
@media (max-width: 1350px) {
    :root {
        --header-height: 180px;
    }
    .wrapper-header {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    :root {
        --header-height: 145px;
    }
    .wrapper-header a.logo {
        padding: 1em 1.5em;
    }
    .wrapper-header div.logo img {
        width: 13em;
    }

    .wrapper-menu {
        margin-top: 2.5em;
    }
}


@media (max-width: 1120px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        padding-inline: 0.7em;
    }
}


@media (max-width: 1050px) {
    .wrapper-menu .menu-item > a, .wrapper-menu .menu-item > span {
        padding-inline: 0.6em;
        font-size: 1.2em;
    }
}

@media (max-width: 980px) {
    .wrapper-header a.logo {
        padding-inline: 0.8em;
    }
}


@media (max-width: 940px) {    

    .wrapper-header:not(.showslidemenu),
    .wrapper-header:not(.showslidemenu) .wrapper-menu{
        transition: none;
    }

    body.nav-open{
        height: 100vh;
        height: 100dvh;
        overflow-y: hidden;
    }

    .wrapper-header .burger-btn{
        display: block;
    }

    .wrapper-header .header-bottom {
        background: #072a66;
        height: 6.25em;
    }

    .wrapper-header .wrapper-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 100000;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        opacity: 0;
        padding: 0;
        transition: opacity 0.2s ease;
        opacity: 0;
        pointer-events: none; 
        height: 100vh;      
        height: 100dvh;
        margin-top: 0;      
    } 

    .wrapper-header.open .wrapper-menu{
        opacity: 1;
        pointer-events: all;
    }

    .wrapper-header .wrapper-menu .menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 10px 60px 10px 10px;
        height: 100%;
        background: #072a66;
        transform: translateX(100%);
        min-width: 240px;
        transition: transform 0.2s ease-out;
        transform-origin: top right;
        max-width: 350px;
        margin-left: auto; 
        overflow: auto;
    }
    .wrapper-header.open .wrapper-menu .menu {
        transform: translateX(0);
        counter-reset: menu-item;
    }


    .wrapper-header .wrapper-menu .menu a,
    .wrapper-header .wrapper-menu .menu span {
        padding: 10px;
        width: 100%;
        text-align: left;
        height: auto;
        counter-increment: menu-item;
        
    }

    .wrapper-header .menu > li {
        width: 100%;
    }
    .wrapper-header .wrapper-menu a{
        position: relative;
    }
    .wrapper-header .menu-item:hover {
        background: inherit;
    }

    .wrapper-header .wrapper-menu .sousmenu{
        position: static;
        box-shadow: none;
        display: block;
        background: transparent;
        padding-left: 15px;
        transform: none;
    }
    .wrapper-header .sousmenu::before {
        content: none;
    }
    .wrapper-header .menu-item:hover.closed .sousmenu,
    .wrapper-header .menu-item.closed .sousmenu {
        display: none;
    }
    .wrapper-header .menu-item.closed div.menu-arrow {
        transform: rotate(-90deg);
    }

    .wrapper-header .wrapper-menu .sousmenu a{
        font-weight: 500;
        padding: 10px 10px;
        text-align: left;
        font-size: 16px;
        text-transform: none;
        color: #fff;
    }

    .wrapper-menu .menu span div.menu-arrow {
        position: static;
        transform: none;
        margin-left: 5px;
    }

    .wrapper-header .burger-btn {
        top: 10px;
        
    }
    .wrapper-header .header-top {
        right: 56px;
        top: 10px;
    }

    a.header-top-tel {
        height: 36px;
        line-height: 36px;
        padding-block: 0;
    }
}

@media (max-width: 500px) {
    :root {
        --header-height: 112px;
    }
    .wrapper-header div.logo img {
        width: 10em;
    }
}

@media (max-width: 460px) {
    a.header-top-tel span {
        display: none;
    }
    a.header-top-tel img {
        margin-right: 0;
    }
}

.wrapper-full-footer {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 4px 0px rgba(0,0,0,0.2)
}


.wrapper-footer {
    color: #454a4e;
    position: relative;
    font-weight: 500;

    background: url('i/footer.svg') no-repeat bottom left;
    background-size: auto 80%;

}

.wrapper-footer .logo-footer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
}

.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
}
.wrapper-footer a:hover {
    color: #072a66;
} 


/* FOOTER */
.wrapper-footer-inner {
    position: relative;

    display: flex;
    flex-direction: row;
    position: relative;

    padding: clamp(40px, 10vw, 100px) 0 clamp(40px, 10vw, 150px);

    margin: 0 auto;

    z-index: 1;

    max-width:1720px;
}


.footer-1, .footer-2, .footer-3 {
    width: 100%;
}

.wrapper-footer-inner .footer-inner {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    max-width: 360px;
}

.footer-inner h3 {
    text-align: center;
    color: #072a66;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: "Lato", sans-serif;
}

.footer-inner p {
    margin: 0;
}
.footer-inner address {
    font-style: normal;
    font-weight: 400;
}

.wrapper-footer .footer-lien-plan {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
}


.footer-inner .footer-email {
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.footer-reseaux {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    background-color: #ffc200;
    width: max-content;
    margin: 1em auto 0;
    padding: 8px 12px 6px;
    border-radius: 8px;
}
.footer-reseaux img {
    vertical-align: top;
}


.footer-2 strong {
    text-transform: uppercase;
    font-weight: 900;
    margin-top: 5px;
    display: inline-block;
}
.footer-2 em {
    text-transform: uppercase;
    font-style: italic;
    margin-top: 5px;
    display: inline-block;
}



.footer-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-3 ul li a {
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    padding: 1px 0;
}


div.mentions {
    position: relative;
    margin: auto;
    text-align: center;
    padding: clamp(30px, 4vw, 70px) 20px clamp(30px, 4vw, 70px) 20px;

    background: linear-gradient(to bottom, #072a65, #183b77);
    color: #fff;    
    font-size: 18px;
}


div.mentions a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
div.mentions a:hover {
    color: #ffc200;
}


@media (max-width: 1000px) {
    .wrapper-footer-inner {
        flex-wrap: wrap;
    }
    .footer-1 {
        width: 100%;
        margin-top: 0;
    }
    .footer-2,.footer-3 {
        width: 50%;
    }

}
@media (max-width: 550px) {
    .wrapper-footer {
        background-size: 80% auto;
    }

    .wrapper-footer-inner {
        padding-top: 65px;
    }
    
    .footer-1, .footer-2, .footer-3, .footer-4 {
        width: 100%;
    }

    .wrapper-footer-inner .footer-inner {
        padding: 20px;
        margin: 0 auto;
        text-align: center;
        font-size: 18px;
    }

    .footer-inner h3 {
        text-align: center;
        font-size: 24px;
    }

    .wrapper-footer .footer-logos {
        flex-direction: column;
        gap: 25px;
    }
    .wrapper-footer .footer-logos img {
        height: 70px;
        width: auto;
    }
}


/* CONTENU */

input.form_submit,
a.bouton {
    display: inline-block;
    color: #072a66;
    background: #ffc200;

    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-decoration: none;
    padding: 0.7em 1em;
    font-size: 1em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;

    border: none;
    border-radius: 0.4em;

    transition: background 0.2s ease, color 0.2s ease;
}

input.form_submit:hover,
a.bouton:hover {
    background: #ffd446;
}

a.bouton-arrow {
    display: inline-block;
    color: #fff;
    background: transparent;
    border: none;
    text-decoration: none;
    padding: 0.5em 0;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

a.bouton-arrow::after {
    content: '';
    height: 1.25ch;
    width: 0.75ch;
    background: white;
    display: inline-block;
    margin-left: 0.5em;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transition: transform 0.2s ease;
}

a.bouton-arrow:hover::after {
    transform: translateX(20%);
}


.formulaire-envoyer input.form_submit {
    padding: 8px 18px;
    font-size: 18px;
    cursor: pointer;
    background: #db0000;
    color: #fff;
}

@media (max-width: 720px) {
    a.bouton {
        border-width: 2px;
    }
}




.wrapper-site {
    /* overflow: hidden; */ /* Quand il est activé le sticky ne fonctionne plus */
}



.wrapper-contenu {
    z-index: 1;
    position: relative;
}

.wrapper-boxed-contenu {
    max-width: 1180px;
    margin: auto;
}

.wrapper-boxed {
}

.boxed {
    max-width: 1480px;
    margin: auto;
}

div.padding { padding:50px 30px 60px 30px;}


@media (max-width:900px) {
    div.padding {
        padding:40px 20px 60px 20px;
    }
}
@media (max-width:660px) {
    div.padding { 
        padding:40px 15px 60px 15px;
    }
}




h1,h2.h1 {
    position: relative;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.05;
    color: #072a66;
    text-transform: uppercase;
    margin: 0;
    font-family: "Lato", sans-serif;
}

span.dl {
    display: block;
    color: #8f99a2;
    font-size: 1.3em;
    line-height: 0.6;
    font-weight: 500;
    margin-top: -0.1em;
    text-transform: none;
    font-family: "Reman", cursive;
    text-shadow: 0px 0.015em  0px #8f99a2;
}


h2 {
    font-family: "Lato", sans-serif;
    margin: 0;
    font-weight: 900;
    color: #2d69a0;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 44px) * 36/44);
    margin-bottom: -1rem;
    text-transform: uppercase;
}

h3 {  
    font-family: "Lato", sans-serif;
    margin: 0;
    font-weight: 700;
    color: #8f99a2;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 44px) * 36/44);
    margin-bottom: -1rem;
    text-transform: uppercase;
}






.justify  { text-align:justify;}
div.center  { text-align:center;}


a.lien:link,
a.lien:visited {
    color: #2D69A0;
    font-weight: 800;
    text-decoration: none;
}

a.lien:hover {
    color: #072a66;
    text-decoration: none;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#2D69A0; font-weight:800; text-decoration:none; }
a.lienpetit:hover{color:#072a66;text-decoration:none;}

span.petit {
    font-size: 16px;
}



.list-3-columns {-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;}

.list-2-columns {-webkit-column-count: 2; 
-moz-column-count: 2;
column-count: 2;}



@media (max-width:800px) {
    .list-3-columns {-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;}
}
@media (max-width:490px) {
    .list-3-columns, .list-2-columns {-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;}
}



ul.list-3-columns li, ul.list-2-columns li {-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;}





ul.puce {
    margin: 0;
    padding: 0;
	margin-top:5px;
	margin-bottom:5px;
    padding-left:10px;
}
ul.puce > li {
    position: relative;
    list-style-type:none;
    padding-left: 16px;
    overflow: hidden;
}
ul.puce > li::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 11px;
    background: url(i/puce.svg) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
}



ul.images {
    padding:0px;
    margin:0;
    list-style-type:none;
}

ul.images li {
    float:left;
}

ul.images div.i {
    display:block;
    margin:auto;
    text-align:center;
}

ul.n2 li {width:50%;}
ul.n3 li {width:33.33%;}
ul.n4 li {width:25%;}
ul.n5 li {width:20%;}

ul.n2 li, ul.n3 li, ul.n4 li, ul.n5 li {padding-left:10px;padding-right:10px;}


@media (max-width:880px) {
    ul.n4 li {width:50%;margin-bottom:20px;}
}




@media (max-width:560px) {
	ul.n2 li, ul.n3 li, ul.n4 li, ul.n5 li {width:100%;margin-bottom:20px;}
	ul.images li {float:none;}
}



input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
  width: 90%;
  width: 100%;
  background: rgb(255, 255, 255);
  border: none;
  padding: 5px;
  color: #072a66;
  border: 1px solid #072a66;
  border-radius: 0;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=url]:focus-visible,
input[type=password]:focus-visible,
textarea:focus-visible {
    border-radius: 0;
}



div.right { float:right; padding-left:16px; max-width: 100%;}
div.left { float:left; padding-right:16px;max-width: 100%;}

div.right-responsive {float:right; padding-left:16px;max-width:100%;}
div.left-responsive {float:left; padding-right:16px;max-width:100%;}

div.right-responsive-xl {float:right; padding-left:16px;max-width:100%;}
div.left-responsive-xl {float:left; padding-right:16px;max-width:100%;}


@media (max-width:800px) {
    div.right-responsive-xl {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
    div.left-responsive-xl {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
}

@media (max-width:560px) {
    div.right-responsive {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
    div.left-responsive {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
}


div.dessous {clear:both;height: 0px;}


.obligatoire {font-size:15px; color:#ba0000; font-weight:bold; }

input.contact,textarea.contact {color:#072a66; background-color:#f4f7f8; border:solid #072a66 1px; font-size:15px;}

input.contact_pb,textarea.contact_pb {  color:#072a66; background-color:#f4f7f8; border:solid #ff0000 1px; font-size:15px;}
input.frmsubmit {  background-color:#ba0000; border:#ba0000 1px solid; height:22px; width:90px; cursor:hand;  font-size:15px; color:#072a66; font-weight:bold;  text-decoration:none;}

.cadresubmit { border:1px #072a66 solid; }

.pagination_inactif { color:#c6bdbd; font-weight:normal; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#072a66; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  {   color:#072a66; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#ba0000;pointer-events: none; }
a.lienpaginations{color: #fff!important;}
a.lienpaginations[href="#"] {pointer-events: none; color: #fff;}

div.pagination {
    background-color: transparent;
    padding: 6px;
    overflow: hidden;
}
div.detail-pagination {background-color:transparent;padding:6px 0;overflow:hidden;}

.arrow-next {
    padding-left:6px;
    display: inline-block;
    vertical-align: middle;
}

.arrow-previous {
    padding-right:6px;
    display: inline-block;
    vertical-align: middle;
}


div.map {
    padding-top: 20px;
}

.form_header {
    background: #072a66;
    padding: 4px 20px!important;
    color:#ffffff;text-align:left;
    text-transform: uppercase;text-align: center;font-weight: 700;
}
form table:nth-of-type(1) {    
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border: 1px solid #dedede;*/
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.formulaire-message-envoye {
    padding: 20px;
    background: #072a66;
    margin-top: 20px;
    color: #fff;
}

sup{
    color: #ba0000;
    font-weight: 700;
    font-size: 16px;
    vertical-align: top;
}
.error{color:#ba0000;font-weight: 600; font-size: 15px;}
.form_label {font-weight:normal;}
.form_input {}
div.form_note {font-style:italic;font-size:10px;}

#form {
    color:#072a66;
    background-position: center center;
    padding: 20px;
}

#form textarea {
    resize: vertical;
    min-height: 50px;
}

.formulaire-envoyer {margin-top:25px;text-align: center;}

.formulaire-champs-requis {
    display: inline-block;
    margin-left: 20px;
    font-size: 12px;
}

img {max-width: 100%;height:auto;}

div.wrapper-padding {padding-left:20px;padding-right:20px;}

@media (max-width:400px) {
	div.wrapper-padding {padding-left:14px;padding-right:14px;}
}

#menu {
    display:none;
}

@media (max-width:500px) {
	div.justify {text-align: left;}
}

a.back-to-top {
    display: none;
    width: 38px;
    height: 38px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 0;
    transform: translateX(-50%);
    bottom: 20px;
    background: #072a66 url("i/arrow-up.svg") no-repeat center center;
    background-size: 20px 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
    transition: all 0.2s ease-in-out 0s;
}

a.back-to-top:hover {
    background-size: 24px 24px;
    background-color: #072a66;
}



iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}



div.galerie-photo {width:33.33%;display:inline-block;vertical-align: top;padding:18px;text-align: center;}

div.galerie-photo img, ul.images img {margin-bottom: 7px;}

@media (max-width:800px) {
    div.galerie-photo {width:50%;}
}


@media (max-width:500px) {
    div.galerie-photo {width:100%;}
}

img.cadrephoto, img.ombre, ul.images img {
    box-shadow: 0px 3px 8px rgba(9, 9, 13, 0.3);
}

a.lien-actu {color:inherit;text-decoration: none;}

div.col1-2 {display:inline-block;vertical-align:top;width:48%;}
div.col2-2 {display:inline-block;vertical-align:top;margin-left:4%;width:48%;}


@media (max-width:700px) { 
    div.col1-2 {display:inline-block;vertical-align:top;width:100%;}
    div.col2-2 {display:inline-block;vertical-align:top;margin-left:0%;width:100%;margin-top:15px;}
}


div.col1-3, div.col2-3, div.col3-3 {display:inline-block;width:30%;vertical-align: top;}
div.col2-3, div.col3-3 {margin-left:5%;}


@media (max-width:880px) {
    div.col1-3, div.col2-3, div.col3-3 {width:50%;margin-bottom: 10px;margin-left:0%;padding-left:2%;padding-right: 2%;}

}

@media (max-width:480px) {
    div.col1-3, div.col2-3, div.col3-3 {width:100%;margin-bottom: 10px;margin-left:0%;}

}


.wrapper-flex-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.wrapper-flex-columns.items-center {
    align-items: center;
}

.wrapper-flex-columns > br {
    display: none;
}

.wrapper-flex-columns .wrapper-col {
    flex: 1;
    min-width: min(450px, 100%);
    position: relative;
}



.style-galerie {
    border:1px solid #d8d8d8;background:rgba(0,0,0,0.05);position:relative;max-width: 760px;
    margin: auto;
}

.wrapper-galerie {
        float: none;
        width:100%;
        max-width:720px;
        margin:auto;margin-bottom: 20px;
    }

.photo_commentaire {display: block;text-align: center;text-decoration: none !important;color:#072a66;padding-top:5px;}


.ilightbox {text-decoration: none;}

.h2-puce {
    vertical-align: -1px;
    padding-right: 3px;
}

.wrapper-bande {}
.wrapper-boxed-bande {max-width: 1180px;margin:auto;}

body label[for="element7i0"] {font-size: 12px;line-height: 1.1;}

div.map iframe {vertical-align: top;}

.actualite-galerie {margin-top:20px; margin-bottom: 20px;}
/* isotope */

.isotope-grid-item { width: 33.33%; }

@media (max-width:1200px) {
    .isotope-grid-item { width: 33%; }
}

@media (max-width:520px) {
    .isotope-grid-item { width: 50%; }
}

@media (max-width:350px) {
    .isotope-grid-item { width: 100%; }
}

.pix-masonry-photo {
    padding: 10px;
    text-align: center;
}


.pswp {z-index: 150000000;}


.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}
.detail-pagination a.lien {
    color: #072a66 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
    font-family: "Barlow", sans-serif;
}

.detail-pagination .back-list {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
}

.detail-pagination .show-next {
    text-align: right;
}


.back-list .lien,
.show-previous .lien {
    padding-left: 2px;
    transition: padding 0.2s ease;
    
}
.back-list .lien:hover,
.show-previous .lien:hover {
    padding-left: 0;
    padding-right: 2px;
}
.show-next .lien {
    padding-right: 2px;
    transition: padding 0.2s ease;
}
.show-next .lien:hover {
    padding-right: 0;
    padding-left: 2px;
}


.liste-pagination {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.liste-pagination > div {
    display: inline-block;
    width: 100%;
}

.liste-pagination > div:first-of-type{text-align: left;}
.liste-pagination > div:nth-of-type(2){text-align: center;}
.liste-pagination > div:last-of-type{text-align: right;}

.liste-pagination a.lien {
    color:#072a66 !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
}


@media (max-width: 700px) {
    .detail-pagination .show-previous {width: 100%;}
    .detail-pagination .show-next {width: 100%;}
}






.form_label {
    
    font-weight: 500;
}


.form label[for="element7i0"] {font-size: 13px;color: #c6c6c6;}


.div-centre {text-align: center;}
.div-centre h2 {display: inline-block;}



.pswp {z-index: 1500000000 !important;}




/* BANDEAU SWIPER */
.pix-bandeau-swiper {
    aspect-ratio: 1920 / 1000;
    position: relative;
    user-select: none;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;

    margin-top: calc(-1 * var(--header-height));
}

.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 1000;
    background-position: center center;
    background-size: cover;
}
.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pix-bandeau-swiper .swiper-slide {
    position: relative;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 15%;
    right: 50%;
    width: fit-content;
    max-width: 90%;
    right: 0;
    text-align: right;
    pointer-events: none;
    font-size: clamp(10px, 1.5vw, 30px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(40px);
    background-color: rgba(255, 255, 255, 0.8);

    border-right: 1.8em solid #084688;
    padding: 2em;
    border-radius: 1em 0 0 1em;
}
.pix-bandeau-swiper .swiper-slide-active .swiper-slogan {
    opacity: 1;
    transform: translateX(0px);
}
.pix-bandeau-swiper .swiper-slogan h3 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 1.8em;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    color: #072a66;
}
.pix-bandeau-swiper .swiper-slogan span {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    margin-top: 0.2em;
    font-style: italic;
    text-transform: uppercase;
    color: #2d69a0;
    line-height: 1;
}


.pix-bandeau-swiper video {
    pointer-events: none;
}
.pix-bandeau-swiper video[poster]{
    height:100%;
    width:100%;
    object-fit: cover;
}


.pix-bandeau-swiper .swiper-button-prev::after,
.pix-bandeau-swiper .swiper-button-next::after {
    content: none;
}
.pix-bandeau-swiper .swiper-button-prev,
.pix-bandeau-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    background: #084688 url('i/arrow-right.svg') no-repeat center center / 25px 25px;
    border-radius: 0px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pix-bandeau-swiper .swiper-button-prev {
    transform: rotate(180deg);
}
.pix-bandeau-swiper:hover .swiper-button-prev,
.pix-bandeau-swiper:hover .swiper-button-next {
    opacity: 0.7;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
}


@media (max-width: 730px) {
    .pix-bandeau-swiper {
        height: 372px;
        aspect-ratio: initial;
    }
}

@media (max-width: 500px) {
    .pix-bandeau-swiper {
        height: 320px;
    }
    .pix-bandeau-swiper .swiper-slogan {
        bottom: 5%;
    }
}


/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(34, 51, 83, 0.1);
    position: relative;
    z-index: 1;
}



/* FORMULAIRES */
.formulaire {
    display: block;
}
.formulaire tbody {
    display: block;
}
.formulaire tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.formulaire th {
    text-align: left;
    padding: 0 20px;
    margin-bottom: 3px;
}
.formulaire td {
    padding: 0 20px;
    line-height: 1;
}
.formulaire td input:not([type="checkbox"]), .formulaire td textarea {
    width: 100%;
}
.formulaire-envoyer {
    text-align: left;
}



/* PIX-BANDE-IMAGE */
.wrapper-bande-image {
    position: relative;
    background: #234681;

    max-width: 1920px;
    margin: 0 auto;

    border-radius: 50px 50px 0 0;
    margin-top: -50px;
}

.wrapper-bande-image-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: clamp(40px, 6vw, 80px) 20px clamp(80px, 8vw, 1200px);
}

.wrapper-bande-image-text h2 {
    color: #fff;
    font-family: "Reman", cursive;
    font-size: clamp(50px, 7vw, 70px);
    text-shadow: 0px 0.015em  0px currentColor;
    line-height: 0.8;
    margin-bottom: 0;
    text-transform: none;
    font-weight: 400;
}

.wrapper-bande-image-text a.bouton {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}



@media (max-width: 800px) {
    .wrapper-bande-image {
        grid-template-columns: 1fr;
    }
    .wrapper-bande-image .wrapper-text {
        padding: 20px;
    }
}





.wrapper-bande-accueil {
    display: grid;
    grid-template-columns: 55% 45%;
}

.bande-accueil-text {
    text-align: center;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    align-self: center;

}

.bande-accueil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.wrapper-activites {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.wrapper-activites .activite {
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
    font-size: 20px;
    padding: 1em;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.wrapper-activites .activite h3 {
    margin: 0;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}

.wrapper-activites .activite img {
    width: 3em;
    height: 3em;
    object-fit: contain;
}

@media (max-width: 1240px) {
    .wrapper-activites {
        gap: 20px 30px;
    }
    .wrapper-activites .activite {
        font-size: 18px;
    }
}

@media (max-width: 750px) {
    .wrapper-bande-accueil {
        grid-template-columns: 1fr;
    }
    .bande-accueil-text {
        padding: 50px 20px 20px;
    }

    .wrapper-activites {
        gap: 15px 20px;
    }
    .wrapper-activites .activite {
        font-size: 16px;
    }
}


/* BANDE ACTUS */
.wrapper-bande-actus {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    background: #234681 url('i/actus.svg') no-repeat right center;
    background-size: auto 100%;

    padding-top: clamp(80px, 8vw, 120px);
    padding-bottom: calc(clamp(80px, 8vw, 120px) * 80/120 + 50px); 
}
.wrapper-bande-actus h2 {
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 2.5vw, 36px);
    margin-bottom: clamp(15px, 2vw, 30px);
    position: relative;
    background: none;
    color: #072a66;
    padding: 0;
    background: #ffc200;

    padding: 0.5em 0.8em;
    border-radius: 10px;
    text-align: center;

    position: absolute;
    left: 50%;
    top: 0;
    max-width: 90%;
    width: max-content;
    transform: translate(-50%, -40%);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}
.wrapper-bande-actus h2 span.dl {
    color: #222222;
    font-size: 0.5em;
}
.wrapper-bande-actus .swiper-actus {
    padding-inline: 60px;
    overflow: hidden;
}
.wrapper-bande-actus .swiper-actus .swiper-slide {
    height: auto;
}
.wrapper-bande-actus .wrapper-actualite {
    height: 100%;
}
.wrapper-bande-actus .pix-card {
    /* max-width: 500px; */
    margin: 0 auto;
    height: 100%;
}


@media (max-width: 1450px) {
    .wrapper-bande-actus .swiper-actus {
        padding-inline: 30px;
    }
}
@media (max-width: 1000px) {
    .wrapper-bande-actus .swiper-actus {
        padding-inline: 20px;
    }
}



/* LOGO CAROUSEL LINEAR INFINITE */
.wrapper-bande-marques {
    overflow: hidden;
    padding: 40px 0;
    background: white;
    white-space: nowrap;
    position: relative;

    margin: -20px auto 80px;
    max-width: 1920px;

    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.15);
}

.marques-slide {
    width: max-content;
    animation: 35s slide infinite linear;
    /* min-width: 100vw; */
    display: inline-block;
    text-align: center;
}


.marques-slide img {
    margin: 0 40px;
}

@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

@media (max-width: 800px) {
    .marques-slide img {
        margin: 0 50px;
    }
}
@media (max-width: 550px) {
    .marques-slide img {
        margin: 0 30px;
    }
}



/* CARD POUR LES ACTUS ETC */
.pix-card {
    position: relative;
    text-decoration: none;
    color: currentColor;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 20px;

    background: #fff;

    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}

.pix-card-image {
    width: 100%;
}
.pix-card-image img {
    vertical-align: top;
    aspect-ratio: 5 / 3.5;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pix-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;

    text-align: center;

    padding: 2.5em 1em 2em;
}

.pix-card-title {
    font-weight: 800;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    font-size: 1.2em;
    color: #072a66;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.pix-card-description {
    font-size: 1em;
    margin: 0;
    margin-top: 0.4em;
    color: #454a4e;
}

.pix-card .voir-plus {
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    color: #072a66;
    background: #ffc200 url('i/plus.svg') no-repeat center center;
    background-size: 1em;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    text-align: center;

    transition: transform 0.2s ease;
}

.pix-card:hover .voir-plus {
    transform:  translate(-50%, calc(-50% - 6px));
}

@media (max-width: 1000px) {
    .pix-card {
        font-size: 20px;
    }
}
@media (max-width: 700px) {
    .pix-card {
        font-size: 18px;
    }
}
@media (max-width: 500px) {
    .pix-card {
        font-size: 16px;
    }
}



.wrapper-liste-actualites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 960px) {
    .wrapper-liste-actualites {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .wrapper-liste-actualites {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



.logo-delacour-batiment {
        text-align: center;
    padding: 0px 20px 40px 0px;
}