<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
* {
    z-index: 0;
    box-sizing: border-box;
}



p {
    color: #4d4d4d;
    text-align: justify;
}


/* DEBUG */

.box {
    border: solid 1px red;
}


.hidden {
    display: none;
}

/*** SLIDESHOW ***/

.slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  display: flex;
}

.container {
  height: 100%;
  width: 100%;
  min-width: 100%;
  flex-wrap: wrap;
  position: absolute;
  transition: all .4s;
  /*transform: translate3d(-100%, 0, 0);*/
  z-index: -2;
  display:none;
  background-size: cover;
  background-position: center;
}


.slideshow i {
  z-index: 10;
  color:white;
  font-size: 60px;
  cursor: pointer;
}

.nextButton {
  position:absolute;
  top:50%;
  right: 1%;
}

.prevButton {
  position:absolute;
  top:50%;
  left: 1%;
}

.past, .next, .current {
  display: flex;
}

.past, .next {
  z-index: -1;
}

.current {
  z-index:0;
}


.next {
  transform: translate3d(100%, 0, 0);
}

.current {
  transform: translate3d(0, 0, 0);
}
.past {
  transform: translate3d(-100%, 0, 0);
}


.texteEnGros {
    position: absolute;
    left: 10%;
    top: 10%;
}

.texteEnGros h3, .texteEnGros h1 {
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

.texteEnGros h1 {
    margin-top: 10px;
    line-height: 75px;
}


#slide1 {
    background-image: url(images/commerce-full.jpg);
}

#slide2 {
    background-image: url(images/drome.jpg);
}

#slide3 {
    background-image: url(images/fruits.jpg);
}


@media screen and (max-width: 600px) {
    #slide1 {
        background-image: url(images/commerce-full-small.jpg);
    }

    #slide2 {
        background-image: url(images/drome-small.jpg);
    }

    #slide3 {
        background-image: url(images/fruits-small.jpg);
    }

}

@media screen and (max-width: 1400px) {
    #slide1 {
        background-image: url(images/commerce-full-medium.jpg);
    }

    #slide2 {
        background-image: url(images/drome-medium.jpg);
    }

    #slide3 {
        background-image: url(images/fruits-medium.jpg);
    }

}

@media screen and (max-width: 2000px) {
    #slide1 {
        background-image: url(images/commerce-full-high.jpg);
    }

    #slide2 {
        background-image: url(images/drome-high.jpg);
    }

    #slide3 {
        background-image: url(images/fruits-high.jpg);
    }
}



/*** SECTION BEIGE ****/

.sectionBeige {
    z-index: 10;
    width: 100%;

    background-color: #c7aa8b;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.partBeige {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.partBeige * {
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
}

.partBeige i {
    color: white;
    font-size: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.partBeige img {
    max-width: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.partBeige h3 {
    color: #4d4d4d;
    margin-top: 0;
    font-size: 30px;
    border-bottom: solid 1px #4d4d4d;
}

.partBeige p {
    color: #4d4d4d;
    max-width: 250px;
    text-align: justify;
}




/*** EQUIPE ****/

.equipe {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.equipe h1 {
    color: #4d4d4d;
    font-size: 30px;
    margin-right: 40px;
    align-items:center;
}

.personne {
    display: flex;
    flex-direction: column;

}

.personne h3 {
    color: #4d4d4d;
    font-size: 20px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
}

.personne p {
    margin-left: 10px;
    margin-top: -20px;
    font-size: 15px;
}

.personne img {
    height: 320px;
    width: 220px;
}

.textePersonne {
    margin-left: 30px;
    max-width: 300px;
    font-size: 15px;
    font-weight: 500;
}
</pre></body></html>