.contactForm .border-bottom-only {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #666;
  border-radius: 0;
  padding: 10px 0;
  color: #fff;
  box-shadow: none;
  transition: border-bottom-color 0.2s ease;
}

.contactForm .border-bottom-only::placeholder {
  color: var(--white);
}

.contactForm .border-bottom-only:hover {
  border-bottom-color: #888;
}

.contactForm .border-bottom-only:focus,
.contactForm .border-bottom-only:active {
  outline: none;
  border-bottom: 1px solid #E3644B !important;
  box-shadow: none !important;
  background-color: transparent;
}

.contactForm textarea.border-bottom-only {
  resize: vertical;
  font-family: inherit;
}

.disclaimer-text {
  font-size: 0.875rem;
  color: #999;
  margin-top: 15px;
}

.contactForm .form-check {
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .contactForm .border-bottom-only {
    padding: 0.651vw 0;
  }
  .form-control {
    margin-bottom: 1.042vw;
    font-size: 1.042vw;
  }
}

/* --------------------------------------------------------------------------- */

.contactInfo {
  padding: 0 20px;
}

/* .contactInfo h5, */
.contact-heading {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #464646;
}

.contactInfo span {
  display: block;
  margin-bottom: 20px;
      font-size: 1.125rem;
      font-weight: 200;
}
.contactInfo-Details a,
.contactInfo-Details span {
    overflow-wrap: break-word;
    word-break: break-word;
}

.contactInfo-Details .d-flex {
    /* min-width: 0; */
}
@media (max-width: 768px) {
  .contactInfo {
    padding: 25px 15px 0px;
  }
  /* .contactInfo h5, */
  .contact-heading {
    margin-top: 15px;
    padding-bottom: 7px;
  }
  .contactInfo span {
    margin-bottom: 15px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .contactInfo {
    padding: 0 1.302vw;
  }
  /* .contactInfo h5, */
  .contact-heading {
    margin-bottom: 1.302vw;
    padding-bottom: 0.651vw;
  }
  .contactInfo span {
    margin-bottom: 1.302vw;
    font-size: 1.318vw;
  }
}

/* --------------------------------------------------------------------------- */

.contact-banner {
  background: url("../assets/contact-banner1.webp") no-repeat center top/cover;
  color: #fff;
  padding: 40px 40px;
  position: relative;
  border-radius: 20px;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(38, 38, 38, 0) 0%,
    rgba(38, 38, 38, 0.85) 100%
  );
  z-index: 1;
  border-radius: 20px;
}

.contact-banner .content {
  position: relative;
  z-index: 2;
  width: 77%;
  margin: 0 auto;
  padding: 40px 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .contact-banner {
    padding: 20px;
  }
  .contact-banner::before {
    border-radius: 20px;
  }
  .contact-banner .content {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
    min-height: 200px;
  }
}

@media (min-width: 1200px) {
  .contact-banner {
    padding: 2.732vw;
    border-radius: 1.464vw;
  }
  .contact-banner::before {
    border-radius: 1.464vw;
  }
  .contact-banner .content {
    width: 61%;
    margin: 0 auto;
    padding: 2.732vw 0;
    min-height: 16.276vw;
  }
}
