/* 
    Created on : 8 janv. 2024, 15:03:02
    Author     : carlito
*/

@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Exo+2:400,900|Roboto&display=swap);


html {
    height: 100%;
    font-size: 100%;
    font-family: 'Roboto', sans-serif;
}

body {
    height: 100%;
    min-height: 100vh;
    margin: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(106, 105, 105);
}

h1 {
    font-family: 'Exo 2', sans-serif;
}

a {
    color: #424242;
}

h2 {
    font-size: 1.4em;
    color: #4c4c4c;
    margin: 50px 0 20px;
}

h3 {
    font-size: 1.1em;
    font-weight: 500;
    color: #262626;
    text-transform: uppercase;
    border-left: solid 8px #8cbe23;
    padding-left: 10px;
    margin: 40px 0 10px;
}

h4 {
    border: solid 2px #8cbe23;
    padding: 10px;
    text-align: center;
    color: #343434;
}

p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #5d5d5d;
}

li {
    color: #5d5d5d;
}

hr {
    border: none;
}

hr:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background: #8cbe23;
    background: linear-gradient(90deg, rgb(140 190 35) 0%, rgb(0 0 0 / 0%) 100%);
}

.Color1 {
    color: #8cbe23 !important;
}

.Color2 {
    color: #fff !important;
}

.MTop25 {
    margin-top: 25px;
}

.MTop50 {
    margin-top: 50px;
}

.Width100Max1200 {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.Width100Max1000 {
    width: 100%;
    max-width: 1000px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

::selection {
    background-color: #444;
    color: white;
}

.bulle {
    background-color: #8cbe23;
    color: #fff;
    border-radius: 50%;
    width: auto;
    padding: 3px;
}

/* Firefox */
::-moz-selection {
    background-color: #444;
    color: white;
}

.MaxHeight {
    max-height: 280px;
    overflow-y: auto;
    position: relative;
}

.introSlide {
    height: 100vh;
    width: 100vw;
    padding: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.introSlide .content {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000000d4;
    background: linear-gradient(#00000099, #6daa3757), #000000a6;
    text-align: -webkit-center;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 752px) {
    .introSlide .content {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
    }

}

.introSlide .content img {
    width: 20%;
    height: auto;
    position: relative;
    margin: 330px 40% 50px 40%;
    filter: drop-shadow(0px 0px 39px #ffffff9c);
}

@media screen and (max-width: 900px) {
    .introSlide .content img {
        width: 30%;
        margin: 200px 35% 50px 35%;
    }
}

@media screen and (max-width: 752px) {
    .introSlide .content img {
        width: 40%;
        min-width: 250px;
        margin: unset;
    }
}

.introSlide .content p {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    color: #94c766;
    max-width: 800px;
    width: 70%;
    height: auto;
    text-align: center;
    position: relative;
    margin: auto;
    padding: 10px;
    border-style: solid;
    border-width: 0 5px;
    border-color: #6daa37;
}

.introSlide .content p::first-line {
    text-transform: uppercase;
}

@media screen and (max-width: 752px) {
    .introSlide .content p {
        margin: unset;
    }
}

/*scoll-down*/
.introSlide .content .scroll-downs {
    position: absolute;
    /*top: 0;*/
    right: 0;
    bottom: 80px;
    left: 0;
    margin: auto;
    width: 34px;
    height: 55px;
}

.introSlide .content .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #6daa37;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.introSlide .content .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #f7c253;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/*scoll-down*/

.BackgroundColor1 {
    background: #3a3a3a !important;
}

.header {
    /*height: 100px;*/
    background: #fff;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: #d0dec3;
}



.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.sticky+main {
    padding-top: 12em;
}

main {
    transition: all 1s;
    position: relative;
    clear: both;
    width: 100%;
}

.FullMaxWidth {
    width: 100%;
    display: flex;
    position: relative;
}

.AlignCenter {
    text-align: center;
}

.MainTitle {
    position: relative;
    font-size: 2.5em;
    margin-left: auto;
    margin-right: auto;
    color: #6d7954;
    width: 100%;
    max-width: 1200px;
    display: block;
}

@media screen and (max-width: 1190px) {
    .MainTitle {
        font-size: 2em;
    }
}

@media screen and (max-width: 752px) {
    .MainTitle {
        font-size: 1.5em;
    }
}

.BGColor1 {
    background: #e5e8df;
}

.BGColor2 {
    background: #8cbe23;
}

.BGGradient1::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, #dedbdb, #ffffff, #ffffff00);
    z-index: 0;
}

@media screen and (max-width: 991px) {
    .BGGradient1::before {
        background-image: linear-gradient(to right, #dedbdb, #ffffff, #ffffff8a);
    }
}

.TopPage {
    transition: all 1s;
    position: relative;
    clear: both;
    width: 100%;
}

.ContentTopPage {
    padding: 2%;
    width: 96%;
    position: relative;
    clear: both;
    display: flex;
    justify-content: center;

}

.ContentTopPageTitle {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    @include center();
}

@mixin center() {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.title {
    position: relative;
    color: #8cbe23;
    line-height: 1em;
    padding: 80px 5%;
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    display: grid;
    justify-content: center;
}

.title span,
.title h1 {
    font-size: 3.5em;
    line-height: 0.8em;
    padding: 15px 0% 5px;
    margin: 30px 0 0;
    font-weight: 600;
}

.title_small {
    padding: 10px 5%;
    display: grid;
    justify-content: center;
}

.title_small h1 small {
    display: block;
    margin: 9px 0 0;
}

.title img {
    margin: auto;
    max-width: 250px;
    width: 60%;
}

.title p {
    font-size: 1em;
    font-weight: 100;
    color: #fdd216;
    line-height: 0em;
}

.PagePresta .title span {
    margin-bottom: 20px;
}

.PageLegal .title span {
    margin-bottom: 20px;
}

.PageComWeb .title span {
    margin-bottom: 20px;
}


.BreadCrump {
    width: 100%;
    display: block;
    background: #ffffff17;
    border: solid 1px #ffffff0f;
    float: left;
    align-items: center;
}

.BreadCrump ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
}

.BreadCrump li {
    margin: 0 0 0 10px;
    padding: 10px 0;
    list-style: none;
}

.BreadCrump li::before {
    content: "⁞";
    color: #6daa37;
}

.BreadCrump a {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    font-size: 0.7em;
    transition: all 0.3s;
}

.BreadCrump a:hover {
    color: #6daa37;
}

.contentIntro {
    padding: 2%;
    width: 96%;
    position: relative;
    clear: both;
    display: flex;
    justify-content: center;
    background-size: auto 100%;
    background-position: right center;
}

.homeIntro {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.homeIntroTitreIext {
    width: 50%;
    margin: 0 0 5em 0;
}

.homeIntroTitreIext h1 {
    clear: both;
    float: left;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.homeIntroTitreIext h1 small {
    clear: both;
    float: left;
    font-weight: lighter;
    color: #8a8a8a;
    font-size: 0.7em;
    margin-top: 2em;
}

.homeIntroText {
    width: 50%;
    clear: left;
    padding-right: 10px;
    margin-bottom: 50px;
}

.contentMain {
    padding: 2%;
    width: 96%;
    position: relative;
    clear: both;
    display: inline-block;
    justify-content: center;
}

.contentMain h1 {
    margin-top: 0;
    margin-bottom: 40px;
    border-right: solid 5px #6d7954;
    border-left: solid 5px #6d7954;
}

.contentMain h1 small {
    font-size: 0.65em;
}

.ContentMainTextLeft {
    position: relative;
    max-width: 740px;
    float: left;
    padding-left: calc((100vw - 1200px) / 2);
    margin-right: 5%;
}

.ContentMainTextRight {
    position: relative;
    width: 45%;
    max-width: 740px;
    float: left;
    margin-right: 5%;
}

.MainTextLeft {
    width: 100%;
    margin: 0 0 5em 0;
}

.MainTextLeft li {
    font-size: 1.1em;
    line-height: 1.6em;
    padding-left: 15px;
    list-style: none;
}

.MainTextLeft li::before {
    content: "▶";
    color: #6daa37;
    margin-right: 10px;
}

.embedYoutube {
    float: left;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 50px 0;
}

.embedYoutube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.ContentMainRight {
    width: 30%;
    float: left;
    position: sticky;
    top: 300px;
    margin-bottom: 80px;
    border-bottom: solid 10px #8cbe23;
}

.ContentMainRight img {
    width: 100%;
}

.ContentMainLeft {
    width: 45%;
    margin-right: 5%;
    float: left;
    position: sticky;
    top: 180px;
    margin-bottom: 50px;
    border-bottom: solid 10px #8cbe23;
}

.ContentMainLeft img {
    width: 100%;
}

.OpacColorBG {
    background-color: #000000d4;
    background: linear-gradient(#00000099, #6daa3757), #000000a6;
    overflow: hidden;
}

.ImgBG {
    position: absolute;
    background-size: cover;
    background-position-y: center;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(4px);
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

.rslides2Zoom {
    position: absolute;
    z-index: 10;
    background: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #8cbe23;
    filter: drop-shadow(0px 0px 4px black);
    opacity: 0;
    transition: all 0.5s;
}

.rslides2Zoom:hover {
    opacity: 1;
    background: #00000080;
}

.rslides2Zoom::before {
    content: "⇳";
    font-size: 10em;
    rotate: 45deg;
}

.rslides2Zoom span {
    display: none;
}

.rslides2 {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: -29%;
}

.rslides2 li {
    -webkit-backface-visibility: hidden;
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
}

.rslides2 div {
    width: 100%;
    position: relative;
    padding-top: 100%;
}

.rslides2 img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
    height: calc(100% /1.4);
    position: absolute;
    object-fit: cover;
    top: 0px;
    max-width: 100%;
}

.PaginationRow {
    padding: 2%;
    width: 96%;
    position: relative;
    clear: both;
    display: flex;
    justify-content: center;
}

.ContentPagination {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a {
    position: relative;
    float: left;
    text-align: center;
    padding: 6px 9px;
    margin: 10px;
    min-width: 30px;
    line-height: 1.42857143;
    color: #3a3a3a;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
}

.pagination>li>:hover {
    scale: 120%;
}

.pagination>li>a::before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px #00000047;
    border-radius: 50%;
    width: 100%;
    padding-bottom: 100%;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.pagination>li:first-child>a {
    margin-left: 0;
}

.pagination>.active>a {
    z-index: 3;
    color: #fff;
    cursor: not-allowed;
}

.pagination .active a::before {
    background: #8cbe23;
}

.pagination>.disabled>a {
    color: #777;
    cursor: not-allowed;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX CONTACT FORM XXXXXXXXXXXXXXXXXXXXXXXX */

.Form50 {
    width: 45%;
    margin: 0 2.5%;
    float: left;
}

.Form100 {
    width: 95%;
    margin: 0 2.5%;
    float: left;
}

@media (max-width: 700px) {

    .Form50,
    .Form100 {
        width: 95%;
    }
}

.form-group {
    position: relative;
    margin-bottom: 45px;
}

.form-group input,
.form-group textarea {
    padding: 10px 2.5%;
    display: block;
    width: 95%;
    border: none;
    border-bottom: 1px solid #ffffff;
    background: transparent;
    font-family: inherit;
    font-size: 1em;
    color: black;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group label {
    color: #ffffff;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
input:invalid~label,
textarea:invalid~label {
    font-size: 14px;
    background: #8cbe23;
    padding: 5px;
}

.form-group input:focus~label,
input:valid~label,
.form-group textarea:focus~label,
textarea:valid~label {
    top: -20px;
    font-size: 14px;
    color: #ffffff !important;
}

input:valid+span:before,
textarea:valid+span:before {
    position: absolute;
    content: '✓';
    margin-left: -65%;
    font-weight: bolder;
    color: #ff4754;
}


.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #ffffff;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active state */
input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.form-sec3 {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    padding: 0 2.5%;
}

.form-sec3 label {
    cursor: pointer;
}

.form-sec3 label:hover .checkbox__check {
    background: #ff475447;
}

.checkbox__input {
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox__input:checked+.checkbox__check {
    background: #ff4754;
    stroke-dashoffset: 0;
}

.checkbox__check {
    margin-right: 9px;
    border: 0.2rem solid #ffffff;
    background: #8cbe23;
    stroke: #f9f9f9;
    stroke-dasharray: 25;
    stroke-dashoffset: 25;
    stroke-linecap: round;
    stroke-width: 0.2rem;
    border-radius: 0.2rem;
    fill: none;
    transition: background 0.4s, stroke-dashoffset 0.6s;
}

.form-sec3 label,
.form-sec3 p {
    font-size: 0.9em;
    color: #262626;
    line-height: 1.5em;
    margin: 0;
}

.form-sec3 label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.form-sec3 button {
    padding: 15px;
    text-decoration: none;
    background: #fff;
    color: #8cbe23;
    border-radius: 10px;
    font-size: 1.2em;
    transition: all 0.3s;
    border: none;
    margin: 40px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-sec3 button:hover {
    transform: scale(1.1);
    background: #ff4754;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX CONTACT FORM XXXXXXXXXXXXXXXXXXXXXXXX */

@media (max-width: 1400px) {
    .homeIntroTitreIext {
        width: 50%;
        margin: 0 0 5em 5%;
    }

    .homeIntroText {
        width: 50%;
        margin: 0 0 5em 5%;
    }
}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .intro .content img {
        width: 20%;
        margin: 182px 40% 50px 40%;
    }

    .contentIntro {
        background-position-x: 300px;
        background-position-y: center;
    }

    .contentMain {
        padding: 6%;
        width: 86%;
    }

    .ContentMainTextLeft {
        width: 55%;
    }

    .ContentMainRight {
        width: 40%;
    }
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .intro .content img {
        width: 30%;
        margin: 270px 35% 10% 35%;
    }

    .contentIntro {
        background-image: none;
    }

    .homeIntroTitreIext {
        width: 90%;
        margin: 0 0 5em 5%;
        text-align: center;
    }

    .homeIntroText {
        width: 90%;
    }

    .title span,
    .title h1 {
        font-size: 2.5em;
    }

    .ContentMainTextLeft,
    .ContentMainTextRight {
        width: 100%;
        max-width: none;
    }

    .MainTextLeft {
        margin: 0 0 2em 0;
    }

    .MainTextLeft h4 {
        font-size: unset;
        margin: unset;
        letter-spacing: unset;
    }

    .ContentMainRight,
    .ContentMainLeft {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 15px;
    }

    .ContentMainLeft {
        top: 0px;
        position: relative;
    }

    .rslides2Zoom {
        position: relative;
        width: 80%;
        padding: 2% 10%;
        height: auto;
        text-decoration: none;
        color: #8cbe23;
        font-size: 0.8em;
        filter: none;
        opacity: 1;
    }

    .rslides2Zoom::before {
        display: none;
    }

    .rslides2Zoom span {
        display: block;
    }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    h4 {
        font-size: 2em;
        margin: 80px 0 0 2%;
        letter-spacing: -2px;
    }

    h4 small {
        top: -27px;
        left: -9px;
    }

    .intro .content img {
        width: 30%;
        margin: 270px 35% 10% 35%;
    }

    .title span,
    .title h1 {
        font-size: 2em;
    }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 575.98px) {
    .intro .content img {
        width: 50%;
        margin: 175px 25% 10% 25%;
    }

    .intro .content p {
        font-size: 1rem;
    }

    .title span,
    .title h1 {
        font-size: 1.5em;
    }

    .BreadCrump ul {
        display: none;
    }
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Modale XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* Décrire l'animation */
@keyframes slideDownFadeIN {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0px;
        opacity: 1;
    }
}

/* Foncer l'arrière-plan de la fenêtre modale */
.modal {
    display: none;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 95%);
}

/* Afficher la fenêtre modale lorsqu'elle est ciblée par un lien supprimer */
.modal:target {
    display: table;
    position: fixed;
    z-index: 1010;
}

/* la fenêtre modale  */
.modal-dialog {
    display: table-cell;
    vertical-align: middle;
}

/* Le contenu de la modale */
.modal-dialog .modal-content {
    position: relative;
    padding: 0;
    margin: 0;
    outline: 0;
    text-align: justify;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: slideDownFadeIN;
    animation-duration: 0.5s;
}

/* Bouton servant à fermer la fenêtre modale */
.closebtn {
    text-decoration: none;
    float: right;
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}

.containerModal {
    padding: 0px;
}

.containCloseModal {
    position: absolute;
    right: 5%;
    z-index: 1001;
    text-shadow: 0px 2px 5px #000;
    rotate: 0deg;
    transition: all 0.5s;
}

.closebtn:hover,
.closebtn:focus {
    /* color: #000; */
    rotate: 45deg;
    text-decoration: none;
    cursor: pointer;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Modale XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Slider XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

#sliderRea {
    position: relative;
    overflow: hidden;
    margin: 0px auto;
    border-radius: 4px;
}

#sliderRea ul {
    position: relative;
    margin: 0;
    padding: 0;
    /* height: 200px; */
    list-style: none;
}

#sliderRea ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    /* background: #ccc; */
    text-align: center;
    /* line-height: 300px; */
}

#sliderRea ul li img {
    height: 90vh;
}

@media (max-width: 991.98px) {
    #sliderRea ul li img {
        width: 90vw;
        height: auto;
    }
}

a.control_prev,
a.control_next {
    position: absolute;
    top: 40%;
    z-index: 999;
    display: block;
    padding: 20px;
    width: auto;
    height: auto;
    background: #8cbe23;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
}

a.control_prev:hover,
a.control_next:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
}

a.control_prev {
    border-radius: 0 2px 2px 0;
}

a.control_next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

.slider_option {
    position: relative;
    margin: 10px auto;
    width: 160px;
    font-size: 18px;
}

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Slider XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Lien RPEE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
.copyright {
    text-align: center;
    padding: 10px 0;
}

/* Conteneur centré */
#reseau-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 40px;
    margin: 8px 2px;
    display: flex;
}
@media (max-width: 1020px) {
    .ligne2 .copyright span {
        position: inherit!important;
        float: inherit!important;
    }
}
@media (max-width: 991.98px) {
    #reseau-container {
        margin: 25px auto;
    }
}

/* Bloc de positionnement */
#reseau {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Lien avec animation + centrage absolu */
#reseau a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 25px;
    background-color: #5F5F5F;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    line-height: 25px;
    border-radius: 5px;
    background-image: url(https://www.reseau-proeco-energies.fr/API/img/logo_reseau_16x16.png);
    background-repeat: no-repeat;
    background-position: 4px 4px;
    transition: all 0.5s;
    overflow: hidden;
}

/* Effet de hover */
#reseau a:hover {
    background-color: #65b046;
}

/* Titre animé */
#reseau h3 {
    position: absolute;
    left: 25px;
    top: 0;
    margin: 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    transition: top 0.2s;
    border-left: inherit!important;
    padding-left: inherit!important;
}

/* Paragraphe animé  */
#reseau p {
    position: absolute;
    left: 25px;
    top: 25px;
    font-size: 12px;
    margin: 0;
    color: #fff;
    transition: top 0.5s;
}

/* Animation au survol */
#reseau a:hover h3 {
    top: -25px;
}

#reseau a:hover p {
    top: 4px;
}
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Fin lien RPEE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */

