/* Import Google font - Poppins
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  display: bloc;
  padding: 0 10px;
  margin: auto;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  width:1178px;
  color: #545454;
  font-family: 'Roboto';
}



/* HEADER */

#header{
  background-image: url(img/banner-bk.png);  /* Tu peux changer le bandeau image ici */
  position: relative;
  height:443px;
}

#header img{
 /* position: absolute;
  top:0;
  left: 0; */
}

#header #logo{
  height: 50px;
  margin: 35px;
  z-index:1;
}

#header #mif{
  position: relative;
  float: right;
  margin-right: 25px;
  top: 75px;
}

#header #slogan{
  position: relative;
  float: right;
  margin-right: -106px;
  top: 219px;
}

#header #flag{
  height: 40px;
  width: 90px;
  position: absolute;
  top: 20px;
  right: 20px;
}

#header #flag #flag_es{
  height: 40px;
  width: 40px;
  display: bloc;
}

#header #flag #flag_b{
  height: 40px;
  width: 40px;
  display: bloc;
}

/* BANDEAU INTRO */

#bandeau-intro{
  //background-image: url(img/header-background.png);
  background-color: #ffffff;
  text-align: center;
  padding: 30px;
}
#bandeau-intro h3{
  font-weight: 700;
}



/* CARACTERISTIQUES PRINCIPALES */

#bloc{
  background-color: #175E5C;
  text-align: center;
}

#bloc .sousbloc{
  text-align: center;
  color: white;
  margin: 30px 0;
  height: 150px;
  width: 250px;
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 100;
}

#bloc .sousbloc img{
  margin-bottom: 20px;
  height: 100px;
}

svg{
fill: red;
}


/* BLOCS DE CONTENU DETAILLE (ORANGE) */

#right-column, #left-column{
  height: auto;
  width: 579px; /* largeur des blocs oranges */
  color: #ffffff; /* couleur du texte */
}

#right-column h2, #left-column h2{
  font-size: 20px; /* taille des titres */
  text-transform: uppercase; /* majuscules forcées */
}

#right-column p, #left-column p{
  font-size: 18px; /* taille du texte dans les paragraphes */
  padding-top: 0 !important;
  width: 500px; /* largeur de la zone de texte */
}

#right-column{
  //background-color: red;
  float: right; /* on place la colonne de droite à droite alignée en haut avec la colonne de gauche */
}

#left-column{
  //background-color: yellow;
}

.lighter{
  background-color: #E18E74; /* couleur des blocs orange clair */
  height: 325px; /* hauteur des blocs orange clair */
}

.darker{
  background-color: #DE7655; /* couleur des blocs orange foncé */
}

#right-column div, #left-column div, #right-column img, #left-column img{
  height: 325px; /* hauteur des blocs orange et des images */
  //background-color: green;
}

#right-column h2, #right-column p{
  padding: 20px 0px 20px 30px; 
}

#left-column h2, #left-column p{
  padding: 20px 0px 20px 130px;
  
}

#right-column .deco{
  position: absolute;
  opacity: 0.50;
  margin-left: 379px;
  margin-top: 125px;
  object-position: 70px 80px;
  height: 200px;
}

#left-column .deco{
  opacity: 0.50;
  height: 250px;
  position: absolute;
  object-position: -70px -70px;
}



/* CITATION KINE */

#quote{
  background-color: white;
  height: auto;
  padding: 30px 100px;
}

#quote p{
  text-align: center;
  font-size: 22px;
}

#quote h5{
  text-align: right;
  font-size: 12px;
}



/* POINTS DE VENTE */

#right-bloc{
  height: 484px;
  width: 579px;
  // background-color: red;
  float: right;
  color: #ffffff;
  background-color: #175E5C;
  padding: 50px;
}

#right-bloc p{
  padding: 10px;
}

#right-bloc li{
  list-style: inside;
  padding: 5px;
}

#right-bloc h2{
  text-transform: uppercase;
  margin-bottom: 20px;
}

#left-bloc img{
  width: 579px;
}


/* FORMULAIRE DE CONTACT */

::selection{
  color: #fff;
  background: #175E5C;
}

.wrapper{
  margin: auto;
  width: 715px;
  background: #fff;
}
.wrapper h1{
  font-size: 22px;
  font-weight: 800;
  padding: 20px 30px;
  text-align: center;
  text-transform: uppercase;
}
.wrapper form{
  margin: 35px 30px;
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 18px;
  font-size: 16px;
  border: 1px solid #ccc;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #ccc;
}
.field input:focus,
.message textarea:focus{
  padding-left: 16px;
  border: 2px solid #175E5C;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #0D6EFD;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 18px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  padding: 13px 25px;
  background: #175E5C;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #DE7655;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}
@media (max-width: 600px){
  .wrapper header{
    text-align: center;
  }
  .wrapper form{
    margin: 35px 20px;
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea{
    resize: none;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
  }
}



/* FOOTER */

#footer{
  background-color: #333333;
  height: 70px;
  text-align: center;
}

#footer #footer-logo img{
  width: 120px;
}

#footer #facebook img{
  width: 15px;
}

#footer #footer-mif img{
  width: 80px;
  float: right;
}


#footer .sousbloc{
  display: inline-block;
  margin: 20px 20px 0px 20px;
  vertical-align: middle;
}

#footer a{
  outline: none;
  text-decoration: none;
  color: #ffffff;
}

#footer a:focus {
  color: #ffffff;
}

#footer a:hover {
  color: #DE7655;
}

#footer a:active {
  color: #175E5C;
}



/* MENTIONS LEGALES */

#mentions-legales{
  padding: 50px 0;
}

}
