body {
  background-color: #0B4A6F;
}

a {
  text-decoration: none;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10% 0;
  flex-direction: column;
  gap: 5rem;
}

.heading-container {
  text-align: center;
  color: white;
}

.heading-1 {
  font-size: 4.8rem;
}

.sub-heading {
  font-size: 2rem;
}

.form-container {
  display: flex;
  border-radius: 12px;
  width: 80%;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1215686275);
}

.form {
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: white;
  gap: 1.5rem;
  width: 50%;
}
.form:focus {
  outline: #0086C9 1px solid;
}

.form__input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 90%;
}

.form__label {
  color: #344054;
  font-size: 1.4rem;
}

.form__input {
  padding: 1rem 1.4rem;
  border: none;
  border-radius: 12px;
  outline: #D0D5DD 1px solid;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
  color: #667085;
  font-size: 1.4rem;
}

.form__input[type=desc] {
  height: 10rem;
  resize: none;
}

.form__submit-btn {
  border: none;
  color: white;
  background-color: #0086C9;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 3.4rem;
  border-radius: 8px;
  cursor: pointer;
}
.form__submit-btn:hover {
  background-color: #026AA2;
}

.reachUs-part {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
  padding: 5%;
  background-color: #0086C9;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.reachUs-part__heading-1 {
  font-size: 2rem;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  text-wrap: wrap;
}

.white-strip {
  position: absolute;
  background-color: #0b4a6f;
  width: 100%;
  bottom: 0;
  height: 25%;
  z-index: -1;
}

@media (max-width: 800px) {
  .main-section {
    padding: 15% 5%;
  }
  .form__input-container {
    width: 100%;
  }
  .form-container {
    width: 100%;
    flex-direction: column;
  }
  .form {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
  }
  .reachUs-part {
    width: 100%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 0;
  }
  .form {
    width: 100%;
  }
  .reachUs-part {
    width: 100%;
  }
}
@media (max-width: 630px) {
  .form-container {
    flex-direction: column;
  }
  .form__input-container {
    width: 100%;
  }
  .form {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
  }
  .form input:focus, .form textarea:focus {
    outline: #0086C9 1px solid;
  }
  .reachUs-part {
    width: 100%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 0;
  }
}
@media (max-width: 500px) {
  .heading-1 {
    font-size: 4rem;
  }
  .sub-heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 430px) {
  .main-section {
    padding: 20% 5%;
  }
}
@media (max-width: 315px) {
  .main-section {
    padding: 27% 5%;
  }
  .heading-1 {
    font-size: 3.5rem;
  }
  .sub-heading {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=contactUs.css.map */