
@import url('../partial/_variables.css');
@import url('../partial/_header.css');
@import url('../partial/_heros.css');
@import url('../partial/_value.css');
@import url('../partial/_clients.css');
@import url('../partial/_partenaire.css');
@import url('../partial/_propos.css');
@import url('../partial/_certification.css');
@import url('../partial/_servicesD.css');
@import url('../partial/_contact.css');
@import url('../partial/_middle_service.css');
@import url('../partial/_services.css');
@import url('../partial/_galerie.css');
@import url('../partial/_footer.css');

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 5px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #e8eaf6;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #439889;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none !important;
  font-weight: 400;
}

.line_orange {
  width: 100%;
  height: 3px;
  background-color: #fb8c00;
}

/*--------------------------------------------------------------
# All For Header
--------------------------------------------------------------*/

#hauteurHeight {
  width: 100%;
  height: 97vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  display: flex;
}



@media (max-width : 992px) {
  #hauteurHeight {
    height: 70vh !important;
  }
}

.wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  flex-direction: column;
  top: 50%;
  margin:auto;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.wrapper .content{
  margin: 20px 0;
}
.content h1{
  font-size: 20px;
  font-weight: 300;
  color: #212121;
}

form{
  width: 98%;
}
form .field{
  height: 45px;
  width: 100%;
  margin-bottom: 12px;
}
form .field input {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 0 15px;
  outline: none;
  font-size: 17px;
  transition: all 0.3s ease;
}
form .field input:focus {
  border-color: rgb(142,197,252);
}

form .btn {
  height: 50px;
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #004d40;
}
form .btn .layer {
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  transition: all 0.4s ease;
}

form .btn:hover .layer{
  left: 0;
  background-color: #004d40 !important;
}
form .btn button {
  z-index: 1;
  position: relative;
  background: #004d40 !important;;
  padding: 0px!important;
  color: #fff;
  border: 0px;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.wrapper .text{
  margin-top: 5px;
}
.alert{
  margin: -9px 0 12px 0;
  padding: 10px;
  border-radius: 5px;
}
.success-alert{
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}
.error-alert{
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}


