/* CONTACT FORM */
/* .contact-form {
  width: 100%;
  position: relative;
} */


form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  position: relative;
}

form>*,
form>.form-group {
  width: 100%;
  flex-basis: 100%;
}

.form-group label,
.form-group input {
  width: 100%;
}

@media (min-width: 900px) {
  .form-group.half {
    width: calc(50% - .5rem);
    flex-basis: calc(50% - .5rem);
  }
}



input,
textarea {
  width: 100%;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 0.6rem;
  /* border: 1px solid transparent; */


  background: #fff;
  color: #242a33;

  font-family: inherit;
  /* font-size: 16px; */
  line-height: 1.5;
  font-weight: normal;

  -webkit-appearance: none;
  /* removes inner shadow on form inputs on ios safari */
}

::placeholder {
  color: #667077;
  opacity: 1;
  /* Firefox */
}

textarea {
  display: block;
  resize: none;
}

input:focus,
textarea:focus,
.form-control-textarea:focus {
  outline: none;
  /* Removes blue border on focus */
}

input:hover,
.form-control-textarea:hover {
  /* border-bottom: 1px solid rgba(190, 190, 190, 0.258); */
}


.submit-message {
  display: none;
  color: #ffffff;
  background-color: #1919199e;
  position: absolute;
  margin: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.is-submited .submit-message {
  display: flex;
}
