* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Spline Sans", sans-serif;
  list-style-type: none;
}

/* ----main_banner---- */
.main_banner {
  background-image: url("../images/Img_contact_us.png");
  background-repeat: no-repeat;
  padding: 32px 120px 96px 120px;
  background-size: cover;
  background-position: right;
}
.bread_crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.bread_crumb a {
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}
.bread_crumb span {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}
.main_banner h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 16px;
}
.main_banner p {
  margin: 0;
  color: #dbdbdb;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}

/* ----contact_us_form_wrapper---- */
.contact_us_form_wrapper {
  padding: 100px 300px;
}
.contact-wrapper {
  background: #fff;
  border: 1px solid #fa5c36;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  margin: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}
.form-group {
  margin-bottom: 24px;
}

label {
  display: flex;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #101010;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
}
input::placeholder,
textarea::placeholder {
  color: #aa9d99;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
}

textarea {
  height: 120px;
  resize: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.checkbox-grid span {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #555555;
  font-weight: 400;
}
.checkbox-grid input {
  width: 16px;
  height: 16px;
}
.checkbox-grid input[type="checkbox"]:checked {
  accent-color: #fa5c36;
}
.checkbox-grid input[type="checkbox"]:checked + span {
  color: #101010;
  font-weight: 500;
}
#contactForm button.btn_2 {
  width: 100% !important;
  margin-top: 32px;
}
.error {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
.right-side {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.right-side h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #344054;
  margin-bottom: 20px;
}
.right-side p {
  display: flex;
  align-items: flex-start;
  margin: 0;
  gap: 12px;
  color: #555555;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
}

@media only screen and (min-width: 1440px) and (max-width: 1900px) {
  /* ----main_banner---- */
  .main_banner {
    padding: 32px 80px 96px 80px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  /* ----main_banner---- */
  .main_banner {
    padding: 32px 60px 76px 60px;
  }
  .main_banner h1 {
    font-size: 40px;
    line-height: 48px;
  }
  /* ----contact_us_form_wrapper---- */
  .contact_us_form_wrapper {
    padding: 76px 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  /* ----main_banner---- */
  .main_banner {
    padding: 28px 40px 52px 40px;
  }
  .main_banner h1 {
    font-size: 36px;
    line-height: 48px;
  }
  /* ----contact_us_form_wrapper---- */
  .contact_us_form_wrapper {
    padding: 56px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* ----main_banner---- */
  .main_banner {
    padding: 20px 32px 52px 32px;
  }
  .bread_crumb {
    margin-bottom: 36px;
  }
  .main_banner h1 {
    font-size: 32px;
    line-height: 40px;
  }
  /* ----contact_us_form_wrapper---- */
  .contact_us_form_wrapper {
    padding: 56px 32px;
  }
  .contact-wrapper {
    border: none;
    padding: 0;
  }
  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .right-side {
    gap: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* ----main_banner---- */
  .main_banner {
    padding: 20px 20px 42px 20px;
    background-position: 75% center;
  }
  .bread_crumb {
    margin-bottom: 28px;
  }
  .main_banner h1 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  /* ----contact_us_form_wrapper---- */
  .contact_us_form_wrapper {
    padding: 48px 20px;
  }
  .contact-wrapper {
    border: none;
    padding: 0;
  }
  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .checkbox-grid {
    display: flex;
    flex-direction: column;
  }
  .right-side {
    gap: 32px;
  }
}
@media only screen and (min-width: 280px) and (max-width: 575px) {
  /* ----main_banner---- */
  .main_banner {
    padding: 20px 16px 32px 16px;
    background-position: 86% center;
  }
  .bread_crumb {
    margin-bottom: 28px;
  }
  .main_banner h1 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  /* ----contact_us_form_wrapper---- */
  .contact_us_form_wrapper {
    padding: 48px 16px;
  }
  .contact-wrapper {
    border: none;
    padding: 0;
  }
  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .checkbox-grid {
    display: flex;
    flex-direction: column;
  }
  .right-side {
    gap: 32px;
  }
}
.phone-input-group {
  position: relative;
}

.iti {
  display: block;
  width: 100%;
}

.iti__input {
  width: 100% !important;
  height: 48px;
  padding: 12px 12px 12px 52px !important;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Spline Sans", sans-serif;
  box-sizing: border-box;
}

.iti__input:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* Style the country dropdown button */
.iti__selected-country {
  padding: 0;
  background-color: transparent;
}

.iti__arrow {
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #6b7280;
}

/* Style the dropdown list */
.iti__country-list {
  position: absolute;
  z-index: 1000;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: scroll;
  width: 300px;
}

.iti__country {
  padding: 10px 12px;
  cursor: pointer;
  outline: none;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: #f3f4f6;
}

/* Search box in dropdown */
.iti__search-input {
  width: calc(100% - 20px);
  padding: 8px 10px;
  margin: 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.iti__search-input:focus {
  outline: none;
  border-color: #d97706;
}

/* Hide the dropdown when not open */
.iti__country-list.iti__hide {
  display: none;
}

/* Divider between preferred countries */
.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #d1d5db;
}

/* Make placeholder text gray */
.iti__input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* Flag styling */
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  padding: 1px;
}

.iti__selected-country {
  position: relative;
  width: 52px;
  height: 100%;
  display: flex;
  align-items: center;
}
