.mainSection {
  width: 100%;
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter";
}

.contactSection {
  min-height: 80vh;
  width: 80%;
  max-width: 1100px;
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px 100px;
}

.contactInformation {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contactHeaders {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contactSubHeader {
  font-size: 16px;
  font-weight: 700;
  color: #f35163;
}

.contactHeader {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1px;
}

.contactDes {
  font-size: 13.5px;
  color: #3f3e3e;
  line-height: 1.4;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contactDetails {
  display: flex;
  flex-direction: column;
}

.contactDetailHeader {
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
}

.contactDetail {
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 450;
  letter-spacing: 0.6px;
}

.contactDetails a {
  padding: 10px 0 0;
  word-break: break-all;
}

.contactDetails a:hover {
  color: #6951f3;
  transition: all 0.4s;
}

.contactDetail i {
  height: 35px;
  width: 35px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .contactAdress{
  font-style: italic;
} */

.contactDetail address {
  padding: 2px;
  letter-spacing: 0.5px;
}

.contactForm {
  width: 100%;
  flex: 1 1 400px;
  padding: 30px 45px;
  box-shadow: 0 5px 20px 0 rgba(185, 185, 185, 0.145);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.formHeaders {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.4;
}

.formHeader {
  font-size: 24px;
  font-weight: 500;
}

.formDes {
  font-size: 13px;
  color: #3f3e3e;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formInput {
  font-size: 13px;
  color: #3f3e3e;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.formInput input,
.formInput textarea {
  padding: 7px 15px;
  font-size: 13px;
  font-family: "Inter";
  border: none;
  border-radius: 5px;
  background: #f1f1f1;
}

.formInput input:focus,
.formInput textarea:focus {
  outline: none;
}

.formInput textarea {
  resize: none;
}

.form button {
  margin: 10px 0 5px;
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 7px;
  color: #fff;
  background: #000;
  font-size: 14px;
  font-family: "Inter";
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.form button:hover {
  opacity: 0.8;
  font-weight: 700;
  transition: 0.4s all;
}

/* map */
.map {
  width: 100%;
  height: 400px;
}

/* responsive */

@media (max-width: 1200px) {
  .mainSection {
    padding: 80px 0 0;
  }
  .contactSection {
    padding-bottom: 80px;
  }
}

@media (max-width: 900px) {
  .mainSection {
    padding: 60px 0 0;
  }

  .contactSection {
    width: 85%;
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .contactHeaders {
    line-height: normal;
  }

  .contactSubHeader {
    font-size: 14px;
  }

  .contactHeader {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .mainSection {
    padding: 40px 0 0;
  }

  .contactInformation {
    padding: 0 10px;
  }
  .contactForm {
    padding: 20px;
  }

  .formHeader {
    font-weight: 600;
    font-size: 20px;
  }

  .contactDetailHeader{
    font-size: 15px;
  }
}

/* extra */

.successMessage {
  color: #008000e1;
  font-size: 12px;
}

.errorMessage {
  color: #fc1010;
  font-size: 13px;
}

.hidden {
  display: none;
}