@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Aclonica|Raleway|Oswald|Roboto|Poppins:400,500,600,700|Oleo+Script&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----------------------- */
/* ---- Scroll Smooth ---- */
/* ----------------------- */
html {
    scroll-behavior: smooth;
}

/* --------------- HEADER --------------- */

/* ------------------------- */
/* -- BARRE DE NAVIGATION -- */
/* ------------------------- */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #1E2D3B;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    padding: 5px 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    height: 82px;
}
header .logo {
    font-size: 25px;
    font-family: 'Aclonica';
    color: #fff;
    line-height: 20px;
    text-decoration: none;
}
header .logo:hover{
    color: white;
}
header .navbar ul {
    list-style: none;
}
header .navbar ul li {
    position: relative;
    float: left;
    margin-top: 16px;
}
header .navbar ul li a {
    font-size: 22px;
    font-family: 'Oswald';
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px;
    color: #fff;
    display: block;
    transition: all 0.3s ease-in 0s;
    text-decoration: none;
}
header .navbar ul li a:hover {
    background: #fff;
    color: #1E2D3B;
}
header .navbar ul li ul {
    position: absolute;
    left: -6px;
    width: 250px;
    background: #eeeeee;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border-radius: 8px;
    padding-left: 0px;
}

/* -- Sub level items -- */
header .navbar ul li ul li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
    text-align: left;
    left: 0px;
    margin: 0px; padding: 0px;
}
header .navbar ul li ul li a{
    font-family: Helvetica, Arial, sans-serif;
    text-transform: none;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    letter-spacing: 0;
    left: 0px;
}
header .navbar ul li ul li a:hover{
    background: #fff;
    color: #1E2D3B;
}
header .navbar ul li ul li:first-child a:hover{
    background: #fff;
    color: #1E2D3B;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
header .navbar ul li ul li:last-child a:hover{
    background: #fff;
    color: #1E2D3B;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
header .navbar ul li ul li ul {
    left: 200px;
    top: 0;
}
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
    display: initial;
}

/* -- MENU SMARTPHONE -- */
#menu-bar {
    display: none;
}
header label {
    display: none;
}

/* BOUTON SMARTPHONE */
.menu-btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    /* border: 3px solid #fff; */
}
.menu-btn_burger{
    width: 50px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(47, 144, 255, 0.2);
    transition: all .5s ease-in-out;
}
.menu-btn_burger::before,
.menu-btn_burger::after{
    content: " ";
    position: absolute;
    width: 50px;
    height: 6px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(47, 144, 255, 0.2);
    transition: all .5s ease-in-out;
}
.menu-btn_burger::before{
    transform: translateY(-16px);
}
.menu-btn_burger::after{
    transform: translateY(16px);
}
/* BOUTON SMARTPHONE ANIMATION */
.menu-btn.open .menu-btn_burger{
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}
.menu-btn.open .menu-btn_burger::before{
    transform: rotate(45deg) translate(35px, -35px);
}
.menu-btn.open .menu-btn_burger::after{
    transform: rotate(-45deg) translate(35px, 35px);
}

/* MENU RESPONSIVE SMARTPHONE */
@media(max-width:830px) {
    header {
        padding: 5px 20px;
    }
    header label {
        display: initial;
    }
    header .navbar {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        text-align: center;
        background: #446686;
        border-top: 1px solid rgba(0, 0, 0, .1);
        display: none;
    }
    header .navbar ul li {
        width: 100%;
    }
    header .navbar ul li ul:default{
        display: none;
    }
    header .navbar ul li ul {
        position: relative;
        width: 100%;
    }
    header .navbar ul li ul li {
        background: #1E2D3B;
        width: 100%;
    }
    header .navbar ul li ul li a{
        background: #1E2D3B;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
    }
    header .navbar ul li ul li a:hover{
        background: #fff;
        color: #1E2D3B;
        border-radius: 8px;
    }
    header .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }
    #menu-bar:checked ~ .navbar {
        display: initial;
    }
}

/* --------------------- */
/* ------ Arrows ------- */
/* --------------------- */
header .navbar ul li a .arrow {
    color: inherit;
    border-style: solid; 
    border-width: 2px 2px 0 0;
    padding: 4px;
    transform: rotate(135deg);
    margin-top: -8.5px;
    margin-left: 4px;
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    overflow: hidden;/*for IE6*/
}
/*@keyframes topItemAnimation {
    from {opacity: 0; transform:translate3d(0, -60px, 0);}
    to {opacity: 1; transform:translate3d(0, 0, 0);}
}


/* --------------- BODY --------------- */

section {
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

/* ------------------------------- */
/* - Titre Accueil Image de font - */
/* ------------------------------- */
section:nth-of-type(1) #parallax{
    /* background-image: url(/images/bg/BG03.jpg); */
    background-image: url(https://www.ma2eco.com/imagesOpti/bg/Maison-Autonome-MA2eco.com-bg03.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 5px;
}

/* AUTRES PHOTOS ACCUEIL

https://images.pexels.com/photos/7031414/pexels-photo-7031414.jpeg?cs=srgb&dl=pexels-max-vakhtbovych-7031414.jpg&fm=jpg
https://images.pexels.com/photos/323775/pexels-photo-323775.jpeg?cs=srgb&dl=pexels-expect-best-323775.jpg&fm=jpg
https://images.pexels.com/photos/1732414/pexels-photo-1732414.jpeg?cs=srgb&dl=pexels-alex-staudinger-1732414.jpg&fm=jpg
https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?cs=srgb&dl=pexels-binyamin-mellish-106399.jpg&fm=jpg
https://images.pexels.com/photos/6527069/pexels-photo-6527069.jpeg?cs=srgb&dl=pexels-max-vakhtbovych-6527069.jpg&fm=jpg
https://images.pexels.com/photos/7195287/pexels-photo-7195287.jpeg?cs=srgb&dl=pexels-max-vakhtbovych-7195287.jpg&fm=jpg
https://cdn.pixabay.com/photo/2019/06/13/19/10/pool-house-4272310_960_720.jpg
https://cdn.pixabay.com/photo/2018/10/28/12/44/interior-3778708_960_720.jpg
https://cdn.pixabay.com/photo/2019/02/25/13/04/house-4019638_960_720.jpg

https://cdn.pixabay.com/photo/2017/05/20/20/22/clouds-2329680_960_720.jpg
*/

section h4{
    font-size: 45px;
    font-family: 'Raleway', Arial, sans-serif;
    text-transform: uppercase; /* MAJUSCULE */
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 0px;
}

section h4.petit{
    padding-bottom: 0px;
    font-size: 35px;
}

.logotitre{
    font-family: 'Aclonica', sans-serif;
    padding-top: 100px;
}

.paragimgfondp{
    font-size: 35px;
    font-family: 'Raleway', Arial, sans-serif;
}

section div.texteaccueil{
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    text-shadow: black 0.1em 0.1em 0.2em;
}


/* ----------------------------------- */
/* --- Partie PA Diagramme --- */
/* ----------------------------------- */
section:nth-of-type(2){
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Ponton-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    /*background-attachment: fixed;*/
    color: #fff;
    text-align: center;
    position: relative;
}
.imgdiag{
    height: 70vh;
    width: auto;
}

/* -------------------------------------------------- */
/* --- Partie PA Recyclage de l'Eau Image de font --- */
/* -------------------------------------------------- */
section:nth-of-type(3){
    /* background-image: url(https://images.pexels.com/photos/40784/drops-of-water-water-nature-liquid-40784.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260); */
    /* background-image: url(https://images.pexels.com/photos/325328/pexels-photo-325328.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260); */
    background-image: url(/imagesOpti/fond/Recyclage-de-l-eau-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* --------------------------------------------------- */
/* --- Partie PA Plafonds Chauffants Image de font --- */
/* --------------------------------------------------- */
section:nth-of-type(4){
    background-image: url(/imagesOpti/fond/Plafonds-Chauffants-Rafraichissants-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* ----------------------------------------- */
/* --- Partie PA Isolation Image de font --- */
/* ----------------------------------------- */
section:nth-of-type(5){
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/imagesOpti/fond/Isolation-Fine-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* ------------------------------------------------------------ */
/* --- Partie PA ISM Image de font --- */
/* ------------------------------------------------------------ */
section:nth-of-type(6){
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/imagesOpti/fond/ISMstockage.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* ----------------------------------------------- */
/* --- Partie PA Panneau Hybride Image de font --- */
/* ----------------------------------------------- */
section:nth-of-type(7){
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/imagesOpti/fond/Panneau-Solaire-Hybride-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* ------------------------------------------------------- */
/* --- Partie PA Panneaux Photovoltaique Image de font --- */
/* ------------------------------------------------------- */
section:nth-of-type(8){
    background-image: url(/imagesOpti/fond/Panneau-Solaire-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}


/* ---------------------------------------------- */
/* --- Partie PA Pompe à Chaleur Image de font --- */
/* ---------------------------------------------- */
section:nth-of-type(9){
    background-image: url(/imagesOpti/fond/Pompe-a-Chaleur-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* https://images.pexels.com/photos/235734/pexels-photo-235734.jpeg?cs=srgb&dl=pexels-pixabay-235734.jpg&fm=jpg */

/* ----------------------------------------- */
/* --- Partie PA Domotique Image de font --- */
/* ----------------------------------------- */
section:nth-of-type(10){
    background-image: url(/imagesOpti/fond/Domotique-Maison-Autonome-MA2eco.com.webp);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

/* https://cdn.pixabay.com/photo/2019/01/30/07/45/web-3963945_960_720.jpg */
/* https://images.pexels.com/photos/3781568/pexels-photo-3781568.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260 */

/* ----------------------------------------- */
/* ----------- Partie PA CITATION ---------- */
/* ----------------------------------------- */
section:nth-of-type(11){
    background: #fff;
    height: auto;
}
#myCarousel .carousel-item{
    padding: 30px 30px 90px;
}
#myCarousel .carousel-item h3{
    color: #1E2D3B;
    font-style: italic;
}
#myCarousel .carousel-item h4{
    color: #555;
    font-style: italic;
    font-size: small;
    text-transform: none;
}
.slide{
    width: 100% !important;
}


/* ----------------------------------------- */
/* ----------- Partie PA A PROPOS ---------- */
/* ----------------------------------------- */
section:nth-of-type(12){
    background: #eee;
    height: auto
}

.apropos{
    width: 100%;
    max-width: 720px;
    height: auto;
    display:block;
    color: #555;
    background-color: #eee;
    padding-bottom: 30px;
    margin: 0 auto;
    padding-left: 15px;
    text-indent: -15px;
}
.apropos p {
    text-align: left;
    font-size: 20px;
    text-align: justify;
}

/* ------------------------------------------- */
/* ----------- Partie PA PARTENAIRE ---------- */
/* ------------------------------------------- */
section:nth-of-type(13){
    background: #fff;
    height: auto
}

.partenaire{
    width: 100%;
    max-width: 750px;
    height: auto;
    display:block;
    color: #555;
    background-color: #fff;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
    margin: 0 auto;
}
.partenaire2{
    width: 100%;
    max-width: 750px;
    height: auto;
    display:block;
    color: #555;
    background-color: #fff;
    text-align: center;
    padding-bottom: 30px;
    margin: 0 auto;
}
.partenaire p {
    text-align: left;
    font-size: 20px;
}
.partlogo {
    max-width: 180px;
    min-width: 80px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* ------------------------------------------------- */
/* ----------- Partie PA ON PARLE DE NOUS ---------- */
/* ------------------------------------------------- */
/*
section:nth-of-type(13){
    background: #eee;
    height: auto
}
*/
.onparledenous{
    width: 100%;
    max-width: 750px;
    height: auto;
    display:block;
    color: #555;
    background-color: #eee;
    text-align: center;
    padding-bottom: 30px;
    margin: 0 auto;
}
.onparledenous p {
    text-align: left;
    font-size: 20px;
}


/* ------------------------------- */
/* ----------- Ancrage ----------- */
/* ------------------------------- */
/*
#eau{
    margin-top: -80px;
    padding-top: 80px;
}
#isolation{
    margin-top: -80px;
    padding-top: 80px;
}
#pchauffant{
    margin-top: -80px;
    padding-top: 80px;
}
#chauffeau{
    margin-top: -80px;
    padding-top: 80px;
}
#photov{
    margin-top: -80px;
    padding-top: 80px;
}
#pompe{
    margin-top: -80px;
    padding-top: 80px;
}
#domotique{
    margin-top: -80px;
    padding-top: 80px;
}
*/
#apropos{
    margin-top: -80px;
    padding-top: 80px;
}

/* -------------------------------- */
/* ---- Habillage page accueil ---- */
/* -------------------------------- */
.barhaut {
    width: 100%;
    position: relative;
    z-index: 3;
    padding-top: 80px;
    background-color: rgba(0, 0, 0, 0.8);
    text-shadow: black 0.1em 0.1em 0.2em;
    border-top: 2px solid #696969;
    margin-bottom: 0px !important;
}
.barhaut2 {
    width: 100%;
    padding-top: 80px;
    position: relative;
    z-index: 3;
    border-top: 5px solid #bcbcbc;
}
.rectangleg {
    width: 35vw;
    height: 64.3vh;
    position: relative;
    float: left;
    /* background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.8)); */
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 90%, rgba(255,255,255,0) 100%);
    padding-top: 30px;
    margin-top: 0px !important;
}
.rectangleg p {
    color: black;
    text-align: left;
    margin-left: 40px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    text-indent: -12px;
}
.barbas {
    width: 100%;
    height: 100px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    overflow: hidden;
}

/* -------------------------- */
/* -------- Hexagone -------- */
/* -------------------------- */
.barbas .angledroit{
    position: absolute;
    bottom: 0;
    right: 0;
}
.angledroit{
    position: absolute;
    bottom: 0;
    right: 0;
}

/* -------------------------- */
/* -------- QR Code --------- */
/* -------------------------- */
.rectangler{
    width: 185px;
    position: relative;
    float: right;
    margin-top: 0px !important;
    margin-right: 0px !important;
}
    .rectangler .taille{
        width: 180px;
    }
    .rectangler p{
        color: white;
        font-family: 'Oleo Script', cursive;
        font-size: x-large;
    }

/*------------------------*/
/*--- Flèche 1ere page ---*/
/*------------------------*/
html body [iconfont="ETmodules"]::before {
    font-family: "ETmodules";
}
[icon]::before {
    font-weight: normal;
    content: attr(icon);
}
.fleche {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2hldnJvbl90aGluX2Rvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiBmaWxsPSJ3aGl0ZSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE3LjQxOCw2LjEwOWMwLjI3Mi0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwYzAuMjcsMC4yNjgsMC4yNzEsMC43MDEsMCwwLjk2OWwtNy45MDgsNy44M2MtMC4yNywwLjI2OC0wLjcwNywwLjI2OC0wLjk3OSwwbC03LjkwOC03LjgzYy0wLjI3LTAuMjY4LTAuMjctMC43MDEsMC0wLjk2OWMwLjI3MS0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwTDEwLDEzLjI1TDE3LjQxOCw2LjEwOXoiLz48L3N2Zz4=);
    background-size: contain;
    background-repeat: no-repeat;
}
.fleche-lien {
    cursor: pointer;
    height: 60px;
    width: 80px;
    margin: 0px 0 10px -40px;
    line-height: 60px;
    position: absolute;
    left: 50%;
    bottom: 0px;
    color: #FFF;
    text-align: center;
    font-size: 70px;
    z-index: 2;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);

    -webkit-animation: fleche_move_down 2s ease-in-out infinite;
    -moz-animation:    fleche_move_down 2s ease-in-out infinite;
    animation:         fleche_move_down 2s ease-in-out infinite;
}
/*animated scroll arrow animation*/
@-webkit-keyframes fleche_move_down {
    0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,20px); opacity: 0; }
}
@-moz-keyframes fleche_move_down {
    0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,20px); opacity: 0; }
}
@keyframes fleche_move_down {
    0%   { transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,20px); opacity: 0; }
}


/* ----------------------------------- */
/* --------- Flèche page bas --------- */
/* ----------------------------------- */
.fleche2 {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2hldnJvbl90aGluX2Rvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiBmaWxsPSJ3aGl0ZSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE3LjQxOCw2LjEwOWMwLjI3Mi0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwYzAuMjcsMC4yNjgsMC4yNzEsMC43MDEsMCwwLjk2OWwtNy45MDgsNy44M2MtMC4yNywwLjI2OC0wLjcwNywwLjI2OC0wLjk3OSwwbC03LjkwOC03LjgzYy0wLjI3LTAuMjY4LTAuMjctMC43MDEsMC0wLjk2OWMwLjI3MS0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwTDEwLDEzLjI1TDE3LjQxOCw2LjEwOXoiLz48L3N2Zz4=);
    background-size: contain;
    background-repeat: no-repeat;
}
.fleche-lien2 {
    cursor: pointer;
    height: 60px;
    width: 80px;
    margin: 20px 0 0 -40px;
    line-height: 60px;
    position: absolute;
    left: 50%;
    color: #FFF;
    font-size: 70px;
    z-index: 2;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);

    -webkit-animation: fleche_move_down 2s ease-in-out infinite;
    -moz-animation:    fleche_move_down 2s ease-in-out infinite;
    animation:         fleche_move_down 2s ease-in-out infinite;
}
/*animated scroll arrow animation*/
@-webkit-keyframes fleche_move_down {
    0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,20px); opacity: 0; }
}
@-moz-keyframes fleche_move_down {
    0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,20px); opacity: 0; }
}
@keyframes fleche_move_down {
    0%   { transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,20px); opacity: 0; }
}

/* --------------------------------------- */
/* ----------- Animationn texte ---------- */
/* --------------------------------------- */
.effethaut1 {
    animation-name: titre1;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes titre1 {
    0% {
        transform: translateY(3vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.effethaut2 {
    animation-name: titre2;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes titre2 {
    0% {
        transform: translateY(3vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.effethaut3 {
    animation-name: titre3;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes titre3 {
    0% {
        transform: translateY(3vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.effethaut4 {
    animation-name: titre4;
    animation-duration: 1s;
    animation-delay: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes titre4 {
    0% {
        transform: translateY(3vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.effethaut5 {
    animation-name: titre5;
    animation-duration: 2s;
    animation-delay: 2.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}
@keyframes titre5 {
    0% {
        transform: translateY(3vh);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.effetdroit {
    animation-name: texte1;
    animation-duration: 800ms;
    animation-delay: 300ms;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}
@keyframes texte1 {
    0% {
        transform: translateX(-3vh);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* ------------------------- */
/* -------- Boutons -------- */
/* ------------------------- */
.buttonbox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.button {
    transition: all 0.5s;
    position: relative;
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
}
.buttonlink {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: bold;
}
.buttonpage{
    width: 250px;
    margin: 0 auto;
}
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0,0,0,0.5);
    transition: all 0.3s;
}
.button:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
}
.button:hover{
    color: #1E2D3B;
}
.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(30, 45, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.2,1.2);
}
.button:hover::after {
    opacity: 1;
    transform: scale(1,1);
}




/* ---------------- Autre Page ---------------- */


/* ---------------------------------------------- */
/* --- Titre Recyclage de l'Eau Image de font --- */
/* ---------------------------------------------- */
.imgfondb{
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Recyclage-de-l-eau-entete-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
}

div h4{
    font-size: 45px;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 0px;
}
/* ------------------------------------------- */
/* - Titre Plafonds Chauffants Image de font - */
/* ------------------------------------------- */
.imgfondc{
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Plafonds-Chauffants-Rafraichissants-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* --------------------------------- */
/* - Titre Isolation Image de font - */
/* --------------------------------- */
.imgfondd{
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Isolation-Fine-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* --------------------------------------------------- */
/* - Titre Panneau Stockage energie Image de font - */
/* --------------------------------------------------- */
.imgfonde {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/ISMstockage.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* --------------------------------------- */
/* - Titre Panneau Hybride Image de font - */
/* --------------------------------------- */
.imgfondf {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Panneau-Solaire-Hybride-Maison-Autonome-entete-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* ----------------------------------------------- */
/* - Titre panneaux Photovoltaiques de font - */
/* ----------------------------------------------- */
.imgfondg {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Panneau-Solaire-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* ---------------------------------------- */
/* - Titre Pompes à Chaleur Image de font - */
/* ---------------------------------------- */
.imgfondh {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Pompe-a-Chaleur-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* --------------------------------- */
/* - Titre Domotique Image de font - */
/* --------------------------------- */
.imgfondi {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Domotique-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* -------------------------------- */
/* - Titre A Propos Image de font - */
/* -------------------------------- */
.imgfondj {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Contact-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* ------------------------------- */
/* - Titre Contact Image de font - */
/* ------------------------------- */
.imgfondk {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Contact-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* --------------------------------------- */
/* - Titre Confidentialité Image de font - */
/* --------------------------------------- */
.imgfondl {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/Securite-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }
/* --------------------------------------- */
/* - Titre ERS COMPACT Image de font - */
/* --------------------------------------- */
.imgfondm {
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/imagesOpti/fond/ERS-Maison-Autonome-MA2eco.com.webp);
    background-size: cover;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 5px;
    text-align: center;
    }



/* ------------------------------- */
/* -------- Titre couleur -------- */
/* ------------------------------- */
.titregris{
    color: #555;
    background-color: #eee;
}
.titreblanc{
    color: #555;
    background-color: #fff;
}
.titrecontact{
    color: #fff;
    background-color: #1E2D3B;
    text-shadow: 2px 2px 2px rgba(206,89,55,0);
}

/* ---------------------------------- */
/* ------------ Diviseur ------------ */
/* ---------------------------------- */
.trait1{
    width: 100px;
    height: 10px;
    background-color: #6c77fa;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    width:100px;
    height: 5px;
    background-color: #ffa500;
    margin: 0 auto;
}

/* ------------------------------- */
/* --------- Titre Police -------- */
/* ------------------------------- */
h1{
    font-size: 42px !important;
    font-weight: bold !important;
	line-height: 42px !important;
    text-align: center;
    font-family: 'Oswald', sans-serif !important;
	text-shadow: 1px 2px 1px rgba(0,0,0,0.3);
    margin-bottom: 20px !important;
    text-transform: none !important;
}
h5{
    color: #555;
    font-size: 24px;
	line-height: 24px;
    margin-top: 34px !important;
    margin-bottom: 34px !important;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* ------------------------------- */
/* --------- Interligne ---------- */
/* ------------------------------- */
.InterligneS1H{
    height: 50px;
    background-image: linear-gradient(to bottom, #e5e5e5, #eee 06px);
    background-color: #eee;
    display: block;
}
.InterligneS1B{
    height: 50px;
    background-color: #eee;
    display: block;
}
.InterligneS2H{
    height: 50px;
    background-image: linear-gradient(to bottom, #e5e5e5, #fff 06px);
    background-color: white;
    display: block;
}
.InterligneS2B{
    height: 50px;
    background-color: white;
    display: block;
}
.InterligneS3{
    height: 50px;
    background-image: linear-gradient(to bottom, #141414, #1E2D3B 8px);
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}
.InterligneS1HB{
    height: 50px;
    background-image: linear-gradient(to bottom, #e5e5e5, #eee 06px);
    background-color: #eee;
    display: block;
}
.InterligneS2HB{
    height: 50px;
    background-image: linear-gradient(to bottom, #c1c1c1, #fff 06px);
    background-color: white;
    display: block;
}

/* ------------------------------- */
/* --------- Scroll Top ---------- */
/* ------------------------------- */
a#cRetour{
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 20px;
    opacity: 1;
    z-index: 99999;
    transition: all ease-in 0.2s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-decoration: none;
}
a#cRetour:before{ 
    content: "\25b2"; 
}
a#cRetour:hover{
    background: #ffa500;
    transition: all ease-in 0.2s;
}
a#cRetour:focus{
    outline: none;
    border: none;
}
a#cRetour.cInvisible{
    bottom: -35px;
    opacity: 0;
    transition: all ease-in 0.5s;
}
a#cRetour.cVisible{
    bottom: 20px;
    opacity: 1;
}

/* ------------------------------- */
/* ------------ email ------------ */
/* ------------------------------- */
.mail{
    color: #004551;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
}
.mail:hover{
    color: #006677;
}
.mail:active{
    position: relative;
    top: 1px;
}
.contactmail{
    display: block;
    position: static;
}
#contact{
    margin-top: -80px;
    padding-top: 80px;
}

/* Devis */
#devis{
    margin-top: -80px;
    padding-top: 80px;
}

/* ------------------------------- */
/* --- Page Recyclage de l'eau --- */
/* ------------------------------- */
#box{
    width: 100%;
    height: auto;
    background-color: #eee;
}
#box2{
    width: 100%;
    height: auto;
    background-color: #fff;
}

#contenu{
    font:Verdana, Geneva, sans-serif;
    font-size:18px;
    text-align:left;
    height:10px;
    display: table;
    width: 100%;
}
#contenu span{
/* Aligne le texte verticalement au milieu */
    vertical-align:middle;
    display: table-cell;
}
.paragraphe1{
    min-width: 720px;
    max-width: 1080px;
    height: auto;
    color: #555;
    padding: 30px 40px 0px 40px;
    margin: 0 auto;
}
.paragraphe1 p{
    text-align: left;
    font-size: 20px;
    padding-bottom: 20px;
    text-align: justify;
    margin-bottom: 0rem;
}
.paragraphe1 p span{
    font-weight: 800;
}

.paragraphe2{
    min-width: 720px;
    max-width: 1080px;
    height: auto;
    color: #555;
    padding: 30px 40px 0px 40px;
    margin: 0 auto;
}
.paragraphe2 p{
    text-align: left;
    font-size: 20px;
    padding-bottom: 20px;
    text-align: justify;
    margin-bottom: 0rem;
}
.paragraphe2 p span{
    font-weight: 800;
}
.paragraphe3{
    min-width: 720px;
    max-width: 1080px;
    height: auto;
    color: #555;
    padding: 30px 40px 0px 40px;
    margin: 0 auto;
    display: block;
}
.paragraphe4{
    min-width: 720px;
    max-width: 1080px;
    height: auto;
    color: #555;
    padding: 30px 40px 0px 40px;
    margin: 0 auto;
    font-family: serif;
}
.paragraphe4 p{
    text-align: center;
    font-size: 26px;
    padding-bottom: 20px;
}
.paragraphe4 p span{
    font-weight: 800;
}
.paragraphe5{
    min-width: 480px;
    max-width: 720px;
    height: auto;
    color: #555;
    padding: 30px 40px 0px 40px;
    margin: 0 auto;
}
.paragraphe5 p{
    text-align: left;
    font-size: 20px;
    padding-bottom: 20px;
    text-align: justify;
    margin-bottom: 0rem;
}
.paragraphe5 p span{
    font-weight: 800;
}

.horizontal-align {
	vertical-align: top;
    min-width: 720px;
    max-width: 1080px;
	height: auto;
	padding: 0px;
    margin: 0 auto;
	box-sizing: border-box;
	font-size: 0;
	& > * {font-size: initial;}
	
	&.two-items .item1 {width: 60%;}
	&.three-items .item {width: 33.3%;}
	&.four-items .item {width: 25%;}
	
	.item1 {
		display: inline-block;
		vertical-align: top;
		height: auto;
		padding: 15px 25px;
		box-sizing: border-box;	
		background: #eee;
	}
    .item2 {
		display: inline-block;
		vertical-align: top;
		height: auto;
		padding: 15px 25px;
		box-sizing: border-box;	
		background: #eee;
	}
}
.static{
    width: 370px;
    height: auto;
    padding-top: 20px;
}
.margeimg{
    padding-top: 150px;
}

.bold{
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}
.retrait{
    text-indent: -15px;
    padding-left: 15px;
}
.retrait2{
    margin-left: 18px;
}
.imageplaf1 {
    background: url(/imagesOpti/Article/Plafonds-Chauffants-Rafraichissants-Maison-Autonome-MA2eco.com-01.webp) center;
    height: 300px;
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}

.imageers1 {
    background: url(/imagesOpti/Article/Biofluid-ERS-Compact-fonctionnement.webp) center;
    height: 400px;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-size:contain;
    border-radius: 8px;
}

.imageism1{
    background: url(/images/ISM/schemaballon.jpeg) center;
    height: 700px;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-size:contain;
    border-radius: 8px;
}

.imageism2{
    background: url(/images/ISM/ballon-stockage.jpg) center;
    height: 700px;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-size:contain;
    border-radius: 8px;
}

/* https://images.pexels.com/photos/869258/pexels-photo-869258.jpeg?cs=srgb&dl=pexels-flo-maderebner-869258.jpg&fm=jpg */
/* https://images.pexels.com/photos/848618/pexels-photo-848618.jpeg?cs=srgb&dl=pexels-visit-almaty-848618.jpg&fm=jpg */
/* https://images.pexels.com/photos/2405062/pexels-photo-2405062.jpeg?cs=srgb&dl=pexels-tiffany-bui-2405062.jpg&fm=jpg */
/* https://images.pexels.com/photos/3888007/pexels-photo-3888007.jpeg?cs=srgb&dl=pexels-chris-f-3888007.jpg&fm=jpg */

/* ---------------------------------- */
/* - Centrer le texte dans un block - */
/* ---------------------------------- */
p.vert{
    color: #00B050;
    text-align: center;
    margin-left: auto;
    margin-right: 100px;
    width: 400px;
}

p.petit{
    text-align: left;
    font-size: 15px;
    padding-bottom: 5px;
    padding-left: 20px;
    width: 250px;
}

p.petit2{
    text-align: center;
    font-size: 15px;
    padding-bottom: 5px;
    width: 180px;
    display: inline-block;
}

p.petit3{
    text-align: center;
    font-size: 15px;
    padding-bottom: 5px;
    padding-left: 10px;
    width: 240px;
    display: inline-block;
}

p.textalignd{
    text-align: right;
    width: 400px;
    margin-left: auto;
    margin-right: 340px;
    padding: 50px 0 50px 0;
}

p.textaligng{
    text-align: left;
    width: 500px;
    margin-left: auto;
    margin-right: 340px;
    padding: 50px 0 50px 0;
}

.textalignc{
    text-align: center;
}

.imgd{
    max-height: 300px;
    width: auto;
    float: right;
    margin: 0 15px 0 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.imgdi{
    max-height: 250px;
    min-height: 250px;
    width: auto;
    float: right;
    margin: 0 15px 0 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.imgg{
    max-height: 300px;
    width: auto;
    float: left;
    margin: 0 15px 0 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.imgc{
    width: 400px; 
    height: auto;
    margin: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.img{
    width: 150px; 
}

.img2{
    width: 400px; 
    height: auto;
    margin: 10px;
}

.imgd2{
    max-height: 300px;
    width: auto;
    float: right;
    margin: 0 15px 0 15px;
}

.imgg2{
    max-height: 300px;
    width: auto;
    float: left;
    margin: 0 15px 0 15px;
}

.imgpopup{
    float: right;
    margin: 0 15px 0 15px;
}

#cssarrow {
    color:#555;
    border-style:solid; 
    border-width:2px 2px 0 0; 
    padding:3px; 
    transform:rotate(45deg);
    margin-top: 8px;
    margin-right: 10px;
    float: left;
}

/* -------------------------------------- */
/* ----------- IMAGES SLIDER ------------ */
/* -------------------------------------- */
/* CSS pour les slides */
#slider{
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider {
    width: 800px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}
.slides {
    width: 500%;
    height: 500px;
    display: flex;
}
.slides input {
    display: none;
}
.slide {
    width: 20%;
    transition: 2s;
}
.slide img {
    width: 800px;
    height: 500px;
}

/* CSS pour la naviguation manuelle */
.navigation-manual {
    position: absolute;
    width: 800px;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}
.manual-btn {
    border: 2px solid #bababa;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
.manual-btn:not(:last-child) {
    margin-right: 40px;
}
.manual-btn:hover {
    background: #d6d6d6;
}
#radio1:checked ~ .first {
    margin-left: 0;
}
#radio2:checked ~ .first {
    margin-left: -20%;
}
#radio3:checked ~ .first {
    margin-left: -40%;
}
#radio4:checked ~ .first {
    margin-left: -60%;
}

/* CSS le navigation automatique */
.navigation-auto {
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
}
.navigation-auto div {
    border: 2px solid #d6d6d6;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}
#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: #d6d6d6;
}
#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: #d6d6d6;
}
#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: #d6d6d6;
}
#radio4:checked ~ .navigation-auto .auto-btn4 {
    background: #d6d6d6;
}


/* -------------------------------------- */
/* --------------- Footer --------------- */
/* -------------------------------------- */

#footer{
    width: 100%;
    height: auto;
    display: block;
    background-color: #1E2D3B;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 50px;
}

.footer {
    margin-top: 50px;
    padding-bottom: 30px;
    background-color: #1E2D3B;
    text-align: center;
}

/* #footer a .social{
    color: #A9A9A9 !important;
    filter: grayscale(100%);
    transition: all 0.3s ease-in 0s;
}
#footer a:hover .social{
    color: white !important;
}
.marg20{
    margin-right: 20px;
} */


.wrapper {
    margin: 0 auto;
    /* width: 100rem; */
  }
  .wrapper ul {
    list-style: none;
    padding-left: 0rem !important;
  }
  .wrapper ul li {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    /* border-radius: 50%;
    border: 5px solid #A9A9A9; */
    display: inline-block;
    transition: all 0.5s ease;
  }
  .wrapper ul li .fa {
    color: #A9A9A9;
    /* margin-top: 20px; */
    transition: all 0.3s ease;
  }
  /* .wrapper ul li:hover.facebook {
    border: 5px solid white;
    box-shadow: 0 0 15px white;
    transition: all 0.3s ease;
  } */
  .wrapper ul li:hover .fa-facebook {
    color: white;
    /* text-shadow: 0 0 15px white; */
    transition: all 0.3s ease;
  }
  /* .wrapper ul li:hover.twitter {
    border: 5px solid #00aced;
    box-shadow: 0 0 15px #00aced;
    transition: all 0.5s ease;
  } */
  .wrapper ul li:hover .fa-twitter {
    color: white;
    /* text-shadow: 0 0 15px #00aced; */
    transition: all 0.3s ease;
  }
  /* .wrapper ul li:hover.instagram {
    border: 5px solid #bc2a8d;
    box-shadow: 0 0 15px #bc2a8d;
    transition: all 0.5s ease;
  } */
  .wrapper ul li:hover .fa-instagram {
    color: white;
    /* text-shadow: 0 0 15px #bc2a8d; */
    transition: all 0.3s ease;
  }
  /* .wrapper ul li:hover.linkedin {
    border: 5px solid #dd4b39;
    box-shadow: 0 0 15px #dd4b39;
    transition: all 0.5s ease;
  } */
  .wrapper ul li:hover .fa-linkedin {
    color: white;
    /* text-shadow: 0 0 15px #dd4b39; */
    transition: all 0.3s ease;
  }
  /* .wrapper ul li:hover.youtube {
    border: 5px solid #4dc247;
    box-shadow: 0 0 15px #4dc247;
    transition: all 0.5s ease;
  } */
  .wrapper ul li:hover .bi-youtube {
    color: white;
    /* text-shadow: 0 0 15px #4dc247; */
    transition: all 0.3s ease;
  }

  /* media queries */
  /* @media screen and (max-width: 640px){
    .wrapper {
        width: 350px;
    }
    .wrapper ul li{
        margin-top: 10px;
    }
    .wrapper ul li.google{
        margin-left: 60px;
    }
  }
  @media screen and (max-width: 340px){
    .wrapper {
        width: 150px;
    }
    .wrapper ul li{
        margin:15px;
    }
    .wrapper ul li.google{
        margin-left: 15px;
    }
  } */

/*.contact{
    color: white;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.contact:hover{
    text-decoration:underline;
}*/

#footer .texte{
    color: white;
    font-size: 14px;
}

#footer .titre{
    font-family: 'Aclonica', sans-serif;
    font-size: 22px;
    color: white;
    padding-top: 15px;
    margin-bottom: 0px;
}

#footer .copy{
    color: white;
    font-size: 12px;
}

#footer .menu-footer{
    text-transform: uppercase !important;
    text-align: center;
    color: #A9A9A9 !important;
    margin-top: 25px !important;
    font-size: 13px !important;
}

#footer .menu-footer a{
    color: #A9A9A9 !important;
    transition: all 0.3s ease-in 0s;
    text-decoration: none !important;
}
#footer .menu-footer a:hover{
    color: white !important;
}


/* ------------------------------- */
/* ---------- COULEURS ----------- */
/* -------------------------------

Menu
#1E2D3B

effet clair
#6097ca

Footer
#1E2D3B

Bouton Footer
#6c77fa
Hover
#6097ca

*/