/*64px max*/
/*48px max*/
/*24px max*/
/*20px max*/
/*16px max*/
.contact-hero {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #081935;
  color: #FFFFFF;
}
@media (max-width: 63.9375em) {
  .contact-hero {
    padding-bottom: 60px;
    padding-top: 40px;
  }
}

.contact-hero__description {
  max-width: 870px;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  margin-bottom: 70px;
}
@media (max-width: 39.9375em) {
  .contact-hero__description {
    margin-bottom: 40px;
  }
}

.contact-hero__description p {
  margin: 0;
  font-size: clamp(1.875rem, 0.3305084746rem + 3.0508474576vw, 3rem);
}
@media (max-width: 39.9375em) {
  .contact-hero__description p {
    font-size: 26px;
  }
}

.contact-hero__our-hive-title {
  font-size: 36px;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  color: #FFF48B;
}
@media (max-width: 39.9375em) {
  .contact-hero__our-hive-title {
    font-size: 24px;
  }
}

.contact-hero__our-hive-description {
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
  margin: 0px;
  padding-bottom: 10px;
  font-weight: 200;
}

.contact-hero__our-hive-description span {
  font-weight: 600;
}

main {
  background-color: #081935;
}

.contact-form__container {
  background-color: #0a1b38;
  max-width: 1797px;
}

/* contact-form block */
.contact-form {
  display: flex;
  overflow: hidden;
  width: 100%;
}

/* contact-form__left - for the form section */
.contact-form__left {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 110px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 63.9375em) {
  .contact-form__left {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* contact-form__right - for the image section */
.contact-form__right {
  flex: 1;
  background-image: url("../assets/contact-img-bee.png"); /* Placeholder image, replace with your actual image */
  background-size: cover;
  background-position: center;
}

/* contact-form__title */
.contact-form__title {
  font-size: 36px;
  margin-bottom: 40px;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  color: #FFF48B;
}

/* contact-form__group */
.contact-form__group {
  margin-bottom: 25px;
}

/* contact-form__label */
.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(0.8rem, 0.3601694915rem + 1.0169491525vw, 1rem);
}

/* Custom Dropdown Styling */
.select-box {
  position: relative;
}

.options-container {
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #ccc;
  border-top: none;
  background-color: #fff;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  padding: 14px;
  font-size: 1.1em;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #333;
}
@media (max-width: 39.9375em) {
  .options-container {
    padding: 12px;
    font-size: 0.8em;
  }
}

.select-box.active .options-container {
  max-height: 300px; /* Adjust as needed */
  opacity: 1;
}

.selected {
  cursor: pointer;
  background-color: #f1f1f1;
  border-radius: 4px;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.checkbox-item {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-item:hover {
  background-color: #e9e9e9;
}

.checkbox-item input[type=checkbox] {
  accent-color: #007bff;
}

/* contact-form__input */
.contact-form__input,
.contact-form__textarea {
  width: calc(100% - 20px); /* Account for padding */
  padding: 14px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  background-color: #f0f0f0; /* Light grey background for input fields */
  color: #333;
}
@media (max-width: 63.9375em) {
  .contact-form__input,
  .contact-form__textarea {
    width: 100%; /* Full width on smaller screens */
    padding: 8px 6px;
  }
}

/* contact-form__textarea */
.contact-form__textarea {
  resize: vertical;
  min-height: 70px;
}

/* contact-form__button */
.contact-form__button {
  background-color: #BFECE5;
  color: #000;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-start; /* Align button to the start */
}
@media (max-width: 39.9375em) {
  .contact-form__button {
    padding: 12px 30px;
    font-size: 0.8em;
  }
}

@media (min-width: 871px) {
  .contact-form__container {
    display: flex;
    align-items: end;
    justify-content: end;
  }
  .contact-form {
    align-self: end;
    max-width: 90em;
    padding-inline: 0;
  }
  .contact-form__left {
    padding-left: 40px;
  }
}
/* Responsive adjustments */
@media (max-width: 870px) {
  .contact-form {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    height: auto; /* Auto height for mobile */
  }
  .contact-form__left,
  .contact-form__right {
    flex: none; /* Remove flex sizing */
    width: 100%; /* Full width */
  }
  .contact-form__left {
    padding: 40px;
    margin: 0px;
  }
  .contact-form__right {
    min-height: 350px; /* Ensure image section is visible on mobile */
    background-size: cover;
    height: auto;
  }
  .contact-form__title {
    font-size: 2em;
  }
}
.contact-other-ways {
  background-color: #FFF48B;
  padding-bottom: 70px;
  padding-top: 70px;
}
@media (max-width: 63.9375em) {
  .contact-other-ways {
    padding-top: 40px;
    padding-bottom: 35px;
  }
}
@media (max-width: 39.9375em) {
  .contact-other-ways {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.contact-other-ways__title {
  font-size: clamp(1.875rem, 0.3305084746rem + 3.0508474576vw, 3rem);
  margin-bottom: 45px;
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  color: #003F48;
  letter-spacing: -0.5px;
}

.contact-other-ways__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 63.9375em) {
  .contact-other-ways__list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.contact-other-ways__item {
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 63.9375em) {
  .contact-other-ways__item svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 39.9375em) {
  .contact-other-ways__item svg {
    width: 34px;
    height: 34px;
  }
}

.contact-other-ways__link {
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
}

.contact-other-ways__cta {
  text-align: center;
}

.contact-other-ways__cta__desc {
  padding: 80px 0;
  margin: 0;
  font-size: clamp(1.875rem, 0.3305084746rem + 3.0508474576vw, 3rem);
  color: #FFF48B;
  font-weight: 600;
}
@media (max-width: 63.9375em) {
  .contact-other-ways__cta__desc {
    padding: 50px 0;
  }
}
@media (max-width: 39.9375em) {
  .contact-other-ways__cta__desc {
    padding: 30px 0;
    font-size: 24px;
  }
}

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