.contact {
  width: 100%;
}
.contact__info {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 0;
  color: #fff;
  background-color: #131039;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.contact__info h2 {
  margin-bottom: 2rem;
  position: relative;
  font-size: 2em;
  color: white;
}
.contact__info h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
  right: 0;
}
.contact__info h3 {
  margin: 0 auto 0.5rem;
  font-size: 1.4em;
  text-align: center;
  line-height: 1.5em;
}
.contact__info-phone {
  margin: 0.8rem auto;
  width: 80%;
  max-width: 260px;
  height: 3.5rem;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(3, 218, 198, 0.75);
}
.contact__info-phone:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact__info-phone:focus {
  outline: none;
}
.contact__info-phone a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
}
.contact__info-phone a i {
  margin-right: 0.5rem;
}
.contact__info-devis {
  margin: 0.5rem auto 1rem;
  text-align: center;
}
.contact__info-form {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact__info-form > .name,
.contact__info-form .mail,
.contact__info-form .nom,
.contact__info-form .plaque,
.contact__info-form textarea {
  margin-bottom: 3px;
  width: 100%;
  padding: 10px 15px;
  background: #f1f1f1;
  border: 1px solid transparent;
  border-radius: 3px;
  outline: none;
  box-sizing: border-box;
  color: black;
  display: block;
  font-size: 1em;
  font-family: "Raleway", sans-serif;
  max-width: 500px;
  resize: none;
}
.contact__info-form textarea {
  height: 250px;
}
.contact__info-form > .button {
  padding: 0.8rem 1.8rem;
  font-size: 1.2em;
  text-transform: uppercase;
  outline: none;
  border: #fff 2px solid;
  margin-right: 0;
  margin-left: auto;
  color: #fff;
  transition: 0.4s;
  background: transparent;
}
.contact__info-form > .button:hover {
  cursor: pointer;
  background-color: #03dac6;
  border-color: #03dac6;
  transition: 0.4s;
}
.contact__info-form .hidden {
  display: none;
}
.contact__info-form__error {
  margin-bottom: 0.6rem;
  color: #f63737;
}
.contact__info-form #errorMail {
  transform: scale(0);
  height: 0;
}
.contact__info-form .mail:invalid {
  border: 1px solid #f63737;
}
.contact__info-form .mail:invalid ~ #errorMail {
  transform: scale(1);
  height: 100%;
}
.contact__info-form .errorBox {
  border: 1px solid #f63737;
}
@media screen and (min-width: 1001px) {
  .contact__info-form {
    max-width: 100%;
  }
}
.contact__info-form textarea {
  width: 100%;
  min-height: 15em;
  resize: none;
}
.contact__info-form .sendbtn {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__info-form #send,
.contact__info-form .sendbtn {
  margin: 1rem auto 0;
  width: 80%;
  max-width: 260px;
  height: 3.5rem;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(3, 218, 198, 0.75);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.contact__info-form #send:hover,
.contact__info-form .sendbtn:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact__info-form #send:focus,
.contact__info-form .sendbtn:focus {
  outline: none;
}
.contact__info-form-need {
  font-size: 0.8em;
}
.contact__info-form .flicker {
  animation: flicker 0.8s linear;
}

.location {
  margin: 0 auto 5rem;
  max-width: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.location .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #131039;
  border-radius: 15px;
  color: #fff;
  padding: 1.5rem;
  gap: 1rem;
}
.location .card h2 {
  position: relative;
  font-size: 2em;
  font-weight: 600;
}
.location .card h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
  right: 0;
}
.location .card__address {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}
.location .location__map {
  background: url("https://maps.googleapis.com/maps/api/staticmap?scale=1&size=1600x900&style=feature:poi.business|visibility:off&style=feature:water|visibility:simplified&style=feature:road|element:labels.icon|visibility:off&style=feature:road.highway|element:labels|saturation:-90|lightness:25&format=jpg&language=fr&region=FR&markers=color:0xfa8c5c|45.4325193,5.7494876&zoom=16&client=google-presto&signature=oRze_DKel66IoDjJ46Zbdmuppi8") center center/cover;
  max-width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #131039;
  border-radius: 15px;
  color: black;
  padding: 2rem 1.5rem;
  gap: 1rem;
}

@keyframes flicker {
  0% {
    color: red;
  }
  16% {
    color: #fff;
  }
  33% {
    color: red;
  }
  49% {
    color: #fff;
  }
  66% {
    color: red;
  }
  82% {
    color: #fff;
  }
  98% {
    color: red;
  }
}

/*# sourceMappingURL=contact.css.map */
