@charset "UTF-8";
/* CSS Document */
/* color
bleu:  #4094C1
jaune:  #FAD26E
rouge:  #E96861
vert clair:  #D1F7D5
vert: #38A56F
gris:  #E3DFE8
vert bleu : #09BAAE
rose: #FDD7AB
noir: #2F2F2F
bleu pale: #B1D8FF
orange: #D96B43f
*/
/* font
Source code pro-Bold / 700
Source code pro-Semi-bold / 600
Roboto-Bold / 700
Roboto-Regular / 400
Roboto-Light / 300
*/
/*------------------Bandeau--------------------------*/
html {
  background-color: #B1D8FF;
}
.form-background {
  background: #D96B43;
}
.wrapper-form {
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
  display: flex;
  flex-direction: column;
  height: calc(100% - 100px);
  z-index: 400;
  position: absolute;
}
.label-form {
  border-top: 2px dashed #B1D8FF;
  display: block;
  font: normal normal 25px/23px 'robotoregular', sans-serif;
  color: #B1D8FF;
  padding: 30px 15px 1px 26px;
  text-transform: uppercase;
}
.label-form-1 {
  display: block;
  font: normal normal 25px/23px 'robotoregular', sans-serif;
  color: #B1D8FF;
  padding: 30px 15px 1px 26px;
  text-transform: uppercase;
}
.area-form {
  background: #B1D8FF;
  font: normal 300 1.3rem/1.8rem 'robotolight', sans-serif, Arial;
  padding: 6px;
  /*text-align: justify;*/
  color: #D96B43;
  margin: 15px 26px 15px 26px;
  width: 87.5% !important;
}
.item-entete {
  background: #D96B43;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: -0.03em;
  color: #B1D8FF;
  border-radius: 0px 30px 0px 0px;
  padding: 10px 26px 10px 26px;
  height: 123px;
  display: flex;
  font: 600 20px/90% 'source_code_proregular', Arial;
  align-items: center;
  align-content: center;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 1;
}
.item-entete h2 {
  line-height: 40px;
}
.form-text {
  font: normal 400 1.5rem/2rem 'Roboto-Regular', sans-serif, Arial;
  padding: 30px 60px 30px 26px;
  background: #B1D8FF;
  color: #B1D8FF;
}
.item-1 h3 {
  font: normal 300 1.3rem/1.8rem 'robotolight', sans-serif, Arial;
  padding: 15px 15px 15px 26px;
  color: #B1D8FF;
  display: block;
}
#form-intro {
  color: #D96B43;
  border-top: 2px dashed #B1D8FF;
  display: block;
  font: normal normal 25px/38px 'robotoregular', sans-serif;
  padding: 10px 26px;
  text-transform: uppercase;
}
#form-intro span {}
@media screen and (min-width:750px) {
  .label-form {
    padding: 30px 15px 1px 40px;
    text-transform: uppercase;
  }
  .label-form-1 {
    padding: 30px 15px 1px 40px;
  }
  .area-form {
    margin: 15px 40px;
  }
  .item-entete {
    white-space: nowrap;
    padding: 0px 40px 0px 40px !important;
    height: 160px;
  }
  .item-entete h2 {
    line-height: 40px;
  }
  .form-text {
    padding: 30px 60px 30px 40px;
  }
  .item-1 h3 {
    padding: 15px 15px 15px 40px;
  }
  #form-intro {
    padding: 40px 40px;
  }
  .button-return {
    margin: 26px 40px !important;
  }
  .button-send {
    margin: 26px 40px !important;
  }
}
@media screen and (min-width:992px) {
  .label-form {
    padding: 30px 15px 1px 60px;
    text-transform: uppercase;
  }
  .label-form-1 {
    padding: 30px 15px 1px 60px;
  }
  .area-form {
    margin: 15px 60px;
  }
  .item-entete {
    white-space: nowrap;
    font: 600 normal 40px/97% 'source_code_proregular', Arial;
    padding: 0px 40px 0px 60px !important;
    height: 199px;
  }
  .item-entete h2 {
    line-height: 60px;
  }
  .form-text {
    padding: 30px 60px 30px 60px;
  }
  .item-1 h3 {
    padding: 15px 15px 15px 60px;
  }
  #form-intro {
    padding: 40px 60px;
  }
  .button-return {
    margin: 26px 60px !important;
  }
  .button-send {
    margin: 26px 60px !important;
  }
}
/*-----------Bouton Carte------------*/
.button-return {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 10rem;
  color: #2F2F2F;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .15rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #bcbcbe;
  font: 600 20px/25px 'robotoregular', sans-serif, Arial;
  text-decoration: none;
  margin: 26px 26px;
}
.button-return:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10rem;
  z-index: -2;
}
.button-return:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #2F2F2F;
  transition: all .3s;
  border-radius: 10rem;
  z-index: -1;
}
.button-return:hover {
  color: #fff;
}
.button-return:hover:before {
  width: 100%;
}
.container-return {
  padding-top: 0px;
  width: 100%;
  text-align: left;
}
.container-send {
  padding-top: 0px;
  width: 100%;
  text-align: right;
}
.button-send {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 10rem;
  color: #2F2F2F;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .15rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #bcbcbe;
  font: 600 20px/25px 'robotoregular', sans-serif, Arial;
  text-decoration: none;
  margin: 26px 26px;
}
.button-send:hover {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 10rem;
  color: white;
  text-transform: uppercase;
  background-color: black;
  font-size: 1rem;
  letter-spacing: .15rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #bcbcbe;
  font: 600 20px/25px 'robotoregular', sans-serif, Arial;
  text-decoration: none;
  margin: 26px 26px;
}
.g-recaptcha {
  margin: 0 auto;
  padding-left: 26px;
}
@media screen and (min-width:750px) {
  .g-recaptcha {
    padding-left: 40px;
  }
}
@media screen and (min-width:992px) {
  .g-recaptcha {
    padding-left: 60px;
  }
}