:root {
    --primary-h: 0;
    /* hue */
    --primary-s: 0%;
    /* saturation */
    --primary-l: 96%;
    /* lightness */
    --accent-h: 208;
    /* hue */
    --accent-s: 100%;
    /* saturation */
    --accent-l: 18%;
    /* lightness */
    --text-h: 208;
    /* hue */
    --text-s: 100%;
    /* saturation */
    --text-l: 18%;
    /* lightness */
    --background-h: 0;
    /* hue */
    --background-s: 0%;
    /* saturation */
    --background-l: 100%;
    /* lightness */
    --primary-font: "Lora", serif;
    --secondary-font: "DM Serif Text", serif;
    --h1-font-size: 3.8125rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 1.5rem;
    --headings-line-height: 1.333333;
    --link-color: var(--accent-color);
    --border-radius: 0.5rem;
    --button-border-radius: 0.125rem;
    --transition: 0.3s all ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="title"] {
    font-family: var(--secondary-font);
    font-weight: 400;
}

.erreur .erreur,
.divGenerateurErreur .erreur {
    display: block;
    padding-bottom: .5rem;
    color: var(--error-color);
    float: right;
    font-size: 13px;
}

.relativer {
    position: relative;
}

.card {
    position: relative;
    display: block;
}

.card a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 4;
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card:hover img {
    transform: scale(1.15);
    transition: var(--transition);
}

.nowrap {
    flex-wrap: nowrap;
}

.m-10 {
    margin-top: 10px;
}

.gap-12 {
    gap: 12px;
}

.relative {
    position: relative;
}

@media screen and (min-width: 993px) {
    .top-bar {
        padding: 9px 0 28px;
    }
    .fold .view-contact {
        display: none;
    }
    .index-page .section {
        padding-top: 7.5rem;
        padding-bottom: 7.5rem;
    }
}

@media screen and (max-width: 992px) {
    .fold .view-contact {
        margin-block: 8px;
        text-align: center;
    }
}


/* ********************************************BOUTON****************************************** */

.btn.accent {
    border: 1px solid var(--accent-color);
    padding: 16px 24px;
}

.btn.accent:hover,
.btn.accent:focus {
    background-color: white;
    color: var(--accent-color);
}

.btn.outlined {
    padding-top: 15px;
    padding-bottom: 15px;
    border: 2px solid var(--accent-color);
    padding-inline: 24px;
    color: var(--accent-color);
    font-weight: 600;
}

.btn.outlined:hover {
    background-color: var(--accent-color);
    color: white;
}

@media screen and (min-width: 601px) {
    .btn.accent,
    .btn.outlined {
        width: auto;
    }
}


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

@media (max-width: 1065px) and (min-width: 993px) {
    .main-header-content .brand img {
        max-width: 138px;
    }
    .header-content .nav#main-nav>ul>li>a {
        padding: 0.5rem;
    }
}

@media screen and (min-width: 993px) {
    .main-header-content {
        padding-block: 16px;
        border-block: 1px solid var(--accent-color);
    }
    .header-content #nav-container {
        margin: 0;
        padding: 0;
    }
    .header-content .nav#main-nav>ul {
        display: flex;
        justify-content: flex-end;
        align-items: stretch;
        width: auto;
    }
    .header-content .nav#topbar-nav ul {
        gap: 25px;
    }
    .header-content .nav#topbar-nav ul li.sous_menu ul.dropdown {
        gap: inherit;
    }
    .header-content .nav#main-nav>ul>li>a {
        color: var(--text-color);
    }
    .header-content .nav#main-nav>ul>li>a {
        position: relative;
        padding: 0.5rem;
        height: 100%;
    }
    .header-content .nav#topbar-nav>ul>li>a {
        position: relative;
        padding: 10px 0.5rem;
        height: 100%;
        color: var(--accent-color);
    }
    .header-content .nav#main-nav>ul>li>a::before,
    .header-content .nav#topbar-nav>ul>li>a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 2px;
        background-color: var(--accent-color);
        width: 0;
        transition: var(--transition);
    }
    .header-content .nav#main-nav>ul>li>a.selected:before,
    .header-content .nav#main-nav>ul>li>a:hover:before,
    .header-content .nav#topbar-nav>ul>li>a.selected:before,
    .header-content .nav#topbar-nav>ul>li>a:hover:before {
        width: 100%;
        left: 0;
        right: 0;
    }
    .header-content .nav .dropdown a {
        font-size: 0.85rem;
        color: var(--text-color);
    }
    .header-content .nav .dropdown a:hover {
        color: var(--accent-color);
    }
    .no-menu-desktop {
        display: none;
    }
    .header-content .nav ul li.sous_menu ul.dropdown>li a.selected {
        color: var(--accent-color);
    }
}

@media screen and (min-width: 1200px) {
    .header-content .nav#main-nav>ul {
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .header-content .nav ul li.no-menu {
        display: block;
    }
    .header-content .nav#topbar-nav li:not(.opened) a {
        padding: .75rem 5%;
        text-decoration: none;
        border-bottom: solid 1px #ebebeb;
    }
    .header-content .nav .sous_menu .btnMenuLevel2,
    .header-content .nav .sous_menu .btnMenuLevel3 {
        color: var(--accent-color);
    }
    .view-contact {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .menu-mobile .btn-menu {
        height: 3rem;
        color: var(--accent-color);
        border: none;
        background: none;
        transition: color 0.3s;
    }
    .header-content .nav ul li a.selected {
        color: var(--accent-color);
        background-color: var(--primary-color);
    }
    .menu-mobile {
        height: 6.5rem;
        z-index: 10;
        background-color: var(--background-color);
        transition: all .3s;
    }
    .header-content #nav-container {
        margin-top: 6.5rem;
    }
    .header-content .nav>ul>.sous_menu.opened>a,
    .header-content .nav .dropdown>.sous_menu.opened>a {
        height: 6.5rem;
        color: var(--accent-color);
    }
    .header-content .nav .dropdown,
    .header-content .nav .ssdropdown {
        top: 6.5rem;
    }
    .header-content .nav ul li a.selected {
        background-color: transparent;
    }
    header address {
        margin: 15px 0px;
    }
}


/* BRAND */


/* ===== */

.brand a {
    display: inline-block;
    transition: opacity .3s;
}

.brand a:hover {
    opacity: .75;
}

header .brand img.footer-only,
footer .brand img.header-only,
.rappel_telephonique .brand img.footer-only {
    display: none;
}


/* SLIDER */


/* ====== */

.slider-slick {
    width: 100%;
    background-color: var(--background-color);
    position: relative;
    z-index: 0;
}

.slider-slick .slick {
    height: 100%;
    margin-bottom: 0;
}

.slide-img {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.slide-img.slide-01 {
    background: linear-gradient(hsla(0, 0%, 0%, 0.5), hsla(0, 0%, 0%, 0.5)), url(../assets/gifs/slider/slide-01.jpg);
}

.slide-img.slide-02 {
    background-image: url('../assets/gifs/slider/slide-02.jpg');
}

.slide-img.slide-03 {
    background-image: url('../assets/gifs/slider/slide-03.jpg');
}

.slide-img .container .bloc {
    height: 500px;
}

.slide-content {
    margin-block: 14rem;
    position: relative;
}

.slide-content .title-1,
.slide-content .title-2 {
    margin: 0;
}

.slide-content p {
    margin-block: 12px;
    color: hsla(0, 0%, 96%, 1);
}


/* Keyframes */

@keyframes slideInLeft {
    from {
        left: -100%;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}


/* état par défaut : invisible, décalé à gauche */

.slide-img .container::before {
    position: absolute;
    content: "";
    background: hsla(208, 100%, 18%, 0.43);
    top: 0;
    height: 100%;
    left: -100%;
    /* hors écran */
    opacity: 0;
    width: 50%;
    /* valeur par défaut */
}


/* déclencheur au scroll */

.slide-img.in-view .container::before {
    animation: slideInLeft 1s ease forwards;
    opacity: 1;
    left: 0;
}


/* Responsive */

@media (max-width: 1201px) and (min-width: 993px) {
    .slide-img .container::before {
        width: 65vw;
    }
}

@media screen and (min-width: 1201px) {
    .slide-img .container::before {
        width: 50%;
    }
}

@media screen and (max-width: 992px) {
    .slide-content p {
        max-width: 80%;
    }
}

@media screen and (max-width: 600px) {
    .slide-content p {
        max-width: 100%;
    }
    .slide-content {
        margin-block: 8rem;
    }
}


/*============= Encart Valeurs ==================*/

.encart-valeurs {
    position: relative;
    background-color: var(--primary-color);
}

.slick-valeurs {
    margin-top: 60px;
    row-gap: 54px;
}

.card-pf {
    padding: 9px 24px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    transition: 0.6s;
    border-bottom: 2px solid var(--accent-color);
    height: 100%;
}

.card-text {
    line-height: 25px;
    font-size: 16px;
    color: hsla(221, 13%, 46%, 1);
}

.encart-valeurs .pf-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 30.2px;
    color: hsla(0, 0%, 12%, 1);
}

@media screen and (min-width: 993px) {
    .encart-valeurs .row p {
        margin: 0;
    }
}


/*============= BLOC 01 ==================*/

h1.h1-geoloc {
    margin: 0;
    position: relative;
}

h1.h1-geoloc span::before,
.title-1.h1-geoloc span::before,
h2::before {
    content: '';
    width: 82px;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: var(--accent-color);
}

h2 {
    position: relative;
}

@media screen and (min-width: 993px) {
    h2 {
        margin-top: 0;
    }
}


/* ******************************************** ENCART PRESTATION ****************************************** */

.title-2 {
    margin: 0;
}

#encart-prestations img {
    border-radius: var(--border-radius);
}

.s-titre {
    font-weight: 600;
}

.mt-64 {
    margin-top: 64px;
}

.prestations-card {
    padding: 24px 24px 44px;
    transition: var(--transition);
    border: 1px solid hsla(0, 0%, 69%, 1);
    border-radius: var(--border-radius);
}

.prestations-card-title a {
    font-size: 24px;
    text-decoration: none;
    color: hsla(0, 0%, 12%, 1);
}

.prestations-card:hover {
    background-color: var(--accent-color);
    color: white;
}

.prestations-card:hover .prestations-card-title a,
.prestations-card:hover .link-presta {
    color: white;
}

.link-presta {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media screen and (min-width:993px) {
    .slick-prestations {
        display: flex;
        flex-direction: column;
        row-gap: 24px;
    }
    .prestations-card-content .description {
        position: relative;
        min-height: 65px;
    }
}

@media screen and (max-width:992px) {
    .prestations-card {
        padding: 24px 8px 44px;
    }
    .prestations-card-title a {
        font-size: 22px;
    }
    .prestations-card-content .description {
        position: relative;
        min-height: 125px;
    }
    .prestations-card-content .description {
        position: relative;
        min-height: 80px;
    }
}


/* ******************************************* Bloc 02 ******************************************** */

#bloc-02 .btn-contact {
    margin-top: 48px;
}


/* ******************************************** ENCART AVIS ****************************************** */

.avis-encart-card-text {
    margin-left: 20%;
}

.slick-avis {
    margin-top: 64px;
}

.encart-avis .avis-card.js-more .avis-card-text::after {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f6fa);
}


/* ******************************************* Bloc 03 ******************************************** */

@media screen and (min-width: 993px) {
    #bloc-03 img,
    #bloc-07 img {
        position: absolute;
        width: 44vw;
        top: 0;
        transform: translate(0%);
        left: 0;
        max-width: none;
        object-position: left;
    }
}

#bloc-03 h3 {
    font-size: 33px;
    margin-top: 45px;
}

#bloc-03 em,
#bloc-06 em {
    display: block;
    background: var(--primary-color-90);
    padding: 24px;
    font-style: normal;
}


/* ******************************************** ENCART CONTACT ****************************************** */

#encart-contact {
    background: linear-gradient(270deg, hsla(208, 100%, 18%, 0.69), hsla(208, 100%, 18%, 0.69)), url(../assets/gifs/bg-encart-contact.jpg);
    background-size: cover;
    background-position: center;
    padding: 48px;
}

.contact-card-title {
    font-family: var(--primary-font);
    font-weight: 600;
    margin-top: 16px;
}

#encart-contact .btn-contact {
    margin-top: 48px;
}

#encart-contact .btn.accent {
    background-color: white;
    color: var(--accent-color);
}

#encart-contact .btn.accent:hover {
    background-color: var(--accent-color);
    border-color: white;
    color: white;
}

#encart-contact .reseaux-sociaux {
    width: max-content;
    margin: 0;
}

#encart-contact .reseaux-sociaux svg {
    fill: white;
}

.contact-card {
    margin-bottom: 30px;
}


/* ******************************************* Bloc 04 & bloc 5 ******************************************** */

#bloc-04 img {
    max-height: 400px;
    object-fit: cover;
    margin-top: 48px;
}


/* ******************************************** ENCART ACTUALITES ****************************************** */

.actualites-card {
    transition: var(--transition);
    padding: 30px;
    border: 1px solid var(--accent-color);
}

.actualites-card:hover {
    background-color: var(--accent-color);
    color: white;
}

.slick-actualites {
    margin-block: 60px;
}

.actualites-card-image img {
    height: 324px;
    object-fit: cover;
}

.actualites-card-title a {
    font-size: 24px;
    text-decoration: none;
    color: var(--accent-color);
    line-height: 24px;
    font-weight: 600;
}

.actualites-card:hover .actualites-card-title a,
.actualites-card:hover .actualites-card-text,
.actualites-card:hover .lire-plus {
    color: white;
}

.actualites-card-text {
    margin-block: 8px;
    color: var(--accent-color);
}

.lire-plus {
    text-decoration: none;
    color: var(--accent-color);
}

.actualites-card-content {
    margin-top: 20px;
}

.actualites-card:hover .actualites-card-image a::before {
    background: hsla(0, 0%, 0%, 0.3);
}


/* ******************************************* Bloc 06 ******************************************** */

@media screen and (min-width: 993px) {
    #bloc-06 img {
        position: absolute;
        width: 44vw;
        top: 0;
        transform: translate(0%);
        right: 0;
        max-width: none;
        object-position: left;
    }
}


/* ******************************************* ENCART FORMULAIRE ******************************************** */

.info-pratique {
    padding: 48px 80px;
}

.info-pratique .title-2 {
    margin-bottom: 24px;
}

.box {
    box-shadow: 0px 4px 24px 0px hsla(0, 0%, 0%, 0.1);
}

.form {
    padding: 48px;
}

#encart-formulaire {
    background-color: hsla(0, 0%, 96%, 1);
    z-index: 1;
    position: relative;
}

#encart-formulaire .reseaux-sociaux svg path {
    fill: white;
}

#encart-formulaire .contact-card-title {
    color: white;
    margin-bottom: 12px;
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 600;
}

#encart-formulaire .reseaux-sociaux {
    margin-bottom: 80px;
}

#encart-formulaire iframe {
    height: 100%;
}

#encart-formulaire .googlemapssearch {
    height: 445px;
}

input:not([type]),
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
textarea {
    border-radius: 8px;
    border-color: hsla(0, 0%, 82%, 1);
}

.form .btn.accent {
    border-radius: 8px;
}

@media screen and (max-width: 992px) {
    #encart-formulaire .reseaux-sociaux ul {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .info-pratique {
        padding: 48px 0px;
    }
    .form {
        padding: 48px 0;
    }
    .btn-rdv {
        margin-top: 12px;
    }
}


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

.label-footer {
    font-weight: 600;
}

.horaire {
    margin-block: 1rem;
}

footer .reseaux-sociaux svg path {
    fill: hsla(0, 0%, 0%, 1);
}

#footer-nav {
    padding-block: 24px;
}

footer .section {
    padding-top: 3rem !important;
}

a.lien-maps {
    display: flex;
    flex-direction: column;
}

a.lien-maps:hover {
    opacity: 0.7;
}

span.lien-maps {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-direction: column;
}

#footer-nav .nav {
    margin-block: 10px;
}

#footer-nav .nav ul li.sous_menu ul.dropdown {
    position: absolute;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: max-content;
    min-width: 100%;
    margin: 0;
    padding: 0;
    font-weight: normal;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

#footer-nav .nav ul li.sous_menu>a::after {
    content: '\e5cf';
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin: -.125em 0 0 .25em;
    font-family: var(--icon-font);
    line-height: 0;
}

#footer-nav nav a {
    font-weight: 400;
    line-height: 24px;
}

footer nav a:hover {
    color: var(--primary-color-10);
}

#footer-nav .nav ul li a.selected,
#footer-nav .nav ul li:hover>a {
    text-decoration: underline;
}

#footer-nav .nav>ul>li {
    margin-bottom: 8px;
}

#footer-nav .nav ul li.sous_menu ul.dropdown>li:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

#footer-nav .nav ul li.sous_menu {
    position: relative;
}

#footer-nav .nav ul li.sous_menu:hover ul.dropdown {
    display: flex;
}

#footer-nav .nav ul li.sous_menu ul.dropdown>li a {
    padding: 0.5rem;
    margin: 0;
    font-size: 13px;
    display: block;
    color: var(--accent-color);
}

#footer-nav .no-menu {
    display: none;
}

@media screen and (min-width: 993px) {
    #footer-nav .nav>ul {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 1.5rem;
        margin: 0;
    }
    footer #footer-nav .nav ul li.sous_menu ul.dropdown {
        bottom: 100%;
    }
    img.footer-only {
        margin-top: -40px;
    }
}

@media screen and (max-width: 992px) {
    .footer-contact {
        margin-top: 20px;
    }
    footer .brand {
        text-align: center;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        row-gap: 12px;
        text-align: center;
    }
    #footer-nav .nav>ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 1.5rem 0;
        flex-direction: column;
    }
    footer #footer-nav .nav ul li.sous_menu ul.dropdown {
        display: none;
    }
    #footer-nav .nav ul li.sous_menu>a::after {
        display: none;
    }
}


/* ******************************************* PAGE INTERNE ******************************************** */

.bg-hero::before,
.hero-interne::before,
.hero-interne::after,
.bg-hero::after {
    position: absolute;
    content: "";
    background: url('../assets/gifs/slider/slide-01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    height: 100%;
    z-index: -1;
    background-position: center;
    margin: 0 auto;
}

.page-interne .bg-hero::after,
.hero-interne::after {
    background: linear-gradient(0deg, rgba(20, 59, 96, 0.71), rgba(20, 59, 96, 0.71)), linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.map-container {
    margin-bottom: 32px;
}

.politique-de-confidentialite h2 {
    margin-block: 16px;
}

.img-bloc img {
    width: auto !important;
    margin: 0 auto !important;
}

.sc-content .ac-doubleColonne.bg-hero,
.hero-interne {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 421px;
    margin-bottom: 48px;
    margin-top: -1.4rem;
}

nav#fil_ariane,
#fil_ariane {
    margin-bottom: 48px;
}

.contact-page .hero-interne {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 447px;
    margin-bottom: 48px;
    margin-top: 0;
}

.hero-interne h1,
.bg-hero h1,
.hero-interne .title-1 {
    text-align: left;
    color: white;
}

.page-interne #encart-contact,
.page-interne #encart-formulaire {
    width: 100vw;
    top: 0;
    height: 100%;
    position: relative;
    padding-block: 6.5rem;
}

.page-interne #encart-formulaire {
    margin-bottom: -3rem;
}

.page-interne .ac-stat .ac-colonne {
    border: 1px dotted var(--primary-color);
    padding: 15px;
    background: var(--background-color);
}

.detail-btn .secondary {
    padding: 14px;
}

.contact-page-coordonnees .tel svg {
    display: none;
}


/* PAGE ACTU DETAIL */

.container_actualite .clear_both {
    margin-bottom: 0px;
}

body.actualites-detail .listing-autres-actus-categorie {
    height: max-content;
    padding: 24px;
    margin-bottom: 24px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
}

body.actualites-detail .listing-autres-actus-categorie .detail-btn {
    text-align: center;
}

#listing-autres-actus-categorie ul li ul {
    padding-left: 0;
}

#listing-autres-actus-categorie ul li ul li {
    list-style: none !important;
}

#listing-autres-actus-categorie ul li a {
    text-decoration: none;
}

#listing-autres-actus-categorie ul li a:hover {
    text-decoration: underline;
}

.fb-like.fb_iframe_widget {
    position: relative;
    top: 6px;
}

.listing-autres-actus-categorie-mois {
    margin-block: 5px;
    display: block;
}

.actualites-listing .recherche_actu #recherche_actu_submit {
    width: 3.2rem;
}


/* pagination actu*/

.paginationControl {
    letter-spacing: normal;
    text-align: center;
    padding: 40px 0 0;
}

.paginationControl a,
.paginationControl span {
    display: inline-block !important;
    padding: 0 10px;
    color: white;
    font-size: 14px;
    line-height: 30px;
    background: var(--primary-color);
    border: 1px solid #dcdde1;
}

.paginationControl a:hover,
.paginationControl span.selected {
    color: white;
    background: var(--accent-color);
}

.paginationControl span.disabled {
    color: #353b48;
    background: #dcdde1;
}

form .btn.accent {
    width: 100%;
}

.block-txt .ac-colonne {
    border: 1px solid var(--primary-color-80);
    padding: 20px;
}

.sc-content .ac-doubleColonne.block-txt .ac-colonne img {
    max-width: 400px;
    margin: auto;
    display: table-row;
    text-align: center;
}

section.ac-doubleColonne.block-txt h3 {
    text-align: center;
}

.contact-page-horaires .row {
    margin-block: .85rem;
}

.page-interne .ac-stat .ac-colonne {
    border: 1px dotted var(--primary-color);
    padding: 15px;
}

.page-interne .ac-stat .title-3 {
    font-size: 21px;
}

.page-interne .ac-colonne em {
    display: block;
    font-style: normal;
    background: var(--primary-color);
    padding: 16px;
}

@media screen and (min-width: 993px) {
    .cp_ville {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .page-interne h2 {
        margin: 15px 0;
    }
    .sc-content .ac-doubleColonne .img-right img {
        padding-left: 80px;
        height: 100%;
        object-fit: cover;
    }
    .sc-content .ac-doubleColonne .img-left img {
        padding-right: 80px;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 992px) {
    .contact-page .hero-interne {
        margin-top: 0;
    }
    .block-txt .ac-colonne {
        border: 1px solid var(--primary-color);
        padding: 20px;
        margin-bottom: 48px;
    }
    .page-interne #encart-formulaire {
        padding-block: 2.5rem;
    }
    .page-interne .ac-stat .ac-colonne {
        margin-bottom: 32px;
    }
}

@media screen and (min-width: 601px) {
    .recherche_actu #recherche_actu_submit {
        margin-left: .5rem;
        width: 3rem;
        padding: 7px;
    }
}