<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ---&gt;&gt;&gt; ACCUEIL : SLIDER &lt;&lt;&lt;--- */

/*#Slider_Accueil_Container .corner {
    z-index: 1;
}*/
#Slider_Accueil_Container {
  position: relative;
  overflow: hidden;
}

#Slider_Accueil {
  position: relative;
  height: calc(90vh - 200px)!important;
  margin: auto;
}
@media (max-width: 920px) {
    #Slider_Accueil {
      position: relative;
      height: calc(90vh - 100px)!important;
      margin: auto;
    }
}

@media (max-width: 600px) {
  #Slider_Accueil {
    height: 23vh!important;
  }
}

#Slider_Accueil .slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.parallax {
  position: relative;
  overflow: hidden;
}

#decalage_header {
  height:150px;
}

#Slider_Accueil .slide .bg_img {
  height: 100% !important;
  width: 100% !important;
  background-repeat: no-repeat;
  background-size: cover;
}

body .lSSlideOuter .lSPager.lSpg {
  position: absolute;
  right: 25px;
  bottom: 5px;
  -webkit-transform: inherit !important;
  transform: inherit !important;
  display: flex;
}

body .lSSlideOuter .lSPager.lSpg &gt; li.active a, body .lSSlideOuter .lSPager.lSpg &gt; li:hover a {
  background-color: #8C1D40;
}

body .lSSlideOuter .lSPager.lSpg &gt; li a {
  height: 12px;
  width: 12px;
  z-index: 1;
}

body .lSSlideOuter .lSPager.lSpg &gt; li {
  padding: 0 5px;
}

.lSSlideOuter:hover .lSAction &gt; a {
  opacity: 0.5;
  visibility: visible;
}

body .lSAction &gt; a {
  opacity: 0;
  visibility: hidden;
  background-image: url("../images/control.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 60px;
  width: 60px;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.lSSlideOuter .lSAction &gt; a:hover {
  opacity: 0.8;
}

body .lSAction &gt; .lSNext {
  background-position: center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*------- SLIDER CSS (OLD) ------*/

/* .slideshow-wrap Ã&nbsp; mettre dans le css de la page en question */

.slideshow-inner {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: absolute;
}

.slideshow-inner &gt; ul {
    list-style: none;
    height: 100%;
    /* width gÃ©rÃ©e dans le JS */
    overflow: hidden;
    position: relative;
    top: 0px;
    -webkit-transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* --------------- MES SLIDES ---------------- */

/* slides size */

.slides {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* --------------- /MES SLIDES ---------------- */

/*Tailles des Slides*/

.slideshow-inner &gt; ul &gt; li {
    /* width gÃ©rÃ©e dans le JS */
    height: 100%;
    display: flex;
    position: relative;
    float: left;
    background-color: black;
}

.slideshow-wrap:hover label.arrows {
    opacity: 0.7;
}

.slideshow-wrap .conteneur-interne {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* On cache les boutons radio d'origine et on les place au centre du slider pour l'ancre */

.slideshow-wrap .input_radio_button {
    position: absolute;
    top: 50%;
    right: 50%;
    visibility: hidden;
}

/* Pour en crÃ©er de nouveaux avec un autre style */

.slideshow-wrap .label_radio_button {
    opacity: 0;
    z-index: 1;
    margin: 10px 5px 10px 5px;
    height: 12px;
    width: 12px;
    background-color: black;
    border-radius: 25px;
    cursor: pointer;
    /*
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
    */
    -webkit-transition: background-color 0.4s;
    -moz-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
    bottom: 25px;
}

/* Style au click */

.slideshow-wrap .label_radio_button:active {
    background-color: grey;
    bottom: 26px;
}

/* Style au checked */

.slideshow-wrap .conteneur-interne .input_radio_button:checked + label {
    background-color: #8C1D40;
}

.slideshow-wrap .label_radio_button.first {
    margin-left: 25px;
}
.slideshow-wrap .label_radio_button.last {
    margin-right: 25px;
}

/* DÃ©calage des images de fond au click (100% = une image) voir JS */

.slideshow-wrap .input_radio_button#button-0:checked ~ .slideshow-inner &gt; ul {
    left: 0%;
}

label.arrows {
    /* FlÃ¨che des boutons Gauche / Droite */
    font-family: "WebSymbolsRegular";
    font-size: 25px;
    padding: 17px 24px;
    border-radius: 45px;
    z-index: 2;
    color: rgb(255, 255, 240);
    position: absolute;
    top: 50%;
    margin-top: -25px;
    display: none;
    opacity: 0;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
}

.slideshow-wrap label.arrows:hover {
    opacity: 1;
}

label.arrows:active {
    margin-top: -23px;
}

/* CONTENU - LIEN */

.lien_visuel {
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */


@media (max-width: 800px) {
    
    .slideshow-wrap .label_radio_button {
        height: 15px;
        width: 15px;
        margin : 10px 5px 0px 5px;
    }
}

@media (max-width: 600px) {    
    #Slider_Accueil .slide .bg_img {
      background-size: contain;
    }   
    
    body .lSAction &gt; a {
    top: 70%;
    height: 30px;
    width: 30px;
    } 
    body .lSSlideOuter .lSPager.lSpg {

    bottom: -10px;
    }    
}
</pre></body></html>