@charset "UTF-8";
/*@font-face {
    font-family: 'Avenir';
    src: url(polices/fontawesome/webfonts/Avenir.otf);
}*/

h2 {
    margin-block-end:0cm;
}

.accueil{
    text-align: center;
    position: relative;
    position:absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 367px;
}

/*----------------------------------------------------Desktop---------------------------------------------*/
@media only screen and (min-width: 1024px) {

    .titre1 {
        color: rgb(129, 155, 180);
        font-family:'Avenir';
        text-align: center;
        font-size: 45px;
    }

    .titre2 {
        color: rgb(131, 135, 148);
        font-family: 'Avenir';
        text-align: center;
        font-size: 45px;
        margin-left:7px;
    }

    .soumettreButton {
        -webkit-appearance: none; -moz-appearance: none;
        text-align: center;
        background-color: rgb(244, 170, 74);
        border: none;
        border-radius: 0px 6px 6px 0px;
        height: 34px;
        width: 20px;
        float: left;
        margin-left: 2%;
        margin-top: 12px;
        box-shadow: 0px 0px 2px 0px grey; 
    }

    .motdepassClass {
        text-align: center;
        float: left;
        width: 262px;
        height: 28px;
        margin-left: 49px;
        margin-top: 12px;
        margin-right: 2%;     
    }

    input{
        width: 100%;
        height:100%;
    }

    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
        outline: none;
    }

    .textConnection {
        text-align: center;
        float: left;
        -webkit-appearance: none; -moz-appearance: none;
    }
}


/*---------------------------------------------------Tablet-------------------------------------------------------*/
@media only screen and (min-width: 768px) {
    .titre1 {
        color: rgb(129, 155, 180);
        font-family:'Avenir';
        text-align: center;
        font-size: 45px;
    }
    
    .titre2 {
        color: rgb(131, 135, 148);
        font-family: 'Avenir';
        text-align: center;
        font-size: 45px;
        margin-left:7px;
    }

    .soumettreButton {
        -webkit-appearance: none; -moz-appearance: none;
        text-align: center;
        background-color: rgb(244, 170, 74);
        border: none;
        border-radius: 0px 6px 6px 0px;
        height: 34px;
        width: 20px;
        float: left;
        margin-left: 10px;
        margin-top: 12px;
        box-shadow: 0px 0px 2px 0px grey; 
    }
    
    .motdepassClass {
        text-align: center;
        float: left;
        width: 262px;
        height: 28px;
        margin-left: 49px;
        margin-top: 12px;
        margin-right: 10px;
    }

    input{
        width: 100%;
        height:100%;
    }
    
    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
    outline: none;
    }

    .textConnection {
        text-align: center;
        float: left;
    }

}


/*-----------------------------------------------CellPhone-------------------------------------------*/
@media only screen and (min-width: 0px) {
    .titre1 {
        color: rgb(129, 155, 180);
        font-family:'Avenir';
        text-align: center;
        font-size: 45px;
    }
    
    .titre2 {
        color: rgb(131, 135, 148);
        font-family: 'Avenir';
        text-align: center;
        font-size: 45px;
        margin-left:7px;
    }

    .soumettreButton {
        -webkit-appearance: none; -moz-appearance: none;
        text-align: center;
        background-color: rgb(244, 170, 74);
        border: none;
        border-radius: 0px 6px 6px 0px;
        height: 34px;
        width: 20px;
        float: left;
        margin-left: 10px;
        margin-top: 12px;
        box-shadow: 0px 0px 2px 0px grey; 
        cursor: pointer;
    }
    
    .motdepassClass {
        text-align: center;
        float: left;
        width: 255px;
        height: 28px;
        margin-left: 49px;
        margin-top: 12px;
        margin-right: 10px;
    }

    input {
        width: 100%;
        height:100%;
    }
    
    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
    outline: none;
    }

    .textConnection {
        text-align: center;
        float: left;
    }

}


/*------------------------SLIDESHOW---------------------*/
.slideshow-container {
  max-width: 100%; /*pour largeur de base 1240px*/
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}