/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
    padding: 0 1rem;
    padding-top: clamp(9rem, 25vw, 12.5rem);
    padding-bottom: clamp(6.25rem, 14vw, 10rem);
    position: relative;
    z-index: 1;
  }
  #banner-712 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #banner-712 .cs-int-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
    color: #fff;
    position: relative;
  }
  #banner-712 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-712 .cs-background:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-712 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-401 {
    padding: var(--sectionPadding);
  }
  #contact-401 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #contact-401 .cs-content {
    text-align: left;
    width: 100%;
  }
  #contact-401 .cs-title {
    margin: 0 0 1.5rem;
  }
  #contact-401 .cs-form {
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #contact-401 .cs-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  #contact-401 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0 1rem;
    color: var(--headerColor);
    background-color: #f7f7f7;
    border: none;
    margin-top: 0.5rem;
  }
  #contact-401 .cs-input::placeholder {
    color: #767676;
  }
  #contact-401 .cs-textarea {
    font-family: inherit;
    min-height: 10rem;
    padding-top: 1rem;
  }
  #contact-401 .cs-button-solid {
    width: 100%;
    border: none;
    margin-top: 1rem;
  }
  #contact-401 .cs-right-section {
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  #contact-401 .cs-contact-group {
    width: 100%;
    padding: 2rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #contact-401 .cs-item {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  #contact-401 .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0.5rem;
    color: var(--headerColor);
  }
  #contact-401 .cs-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  #contact-401 .cs-link:hover {
    color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-401 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  #contact-401 .cs-content {
    max-width: 39.375rem;
  }
  #contact-401 .cs-right-section {
    width: 45%;
    max-width: 25rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #contact-401 .cs-input {
    background-color: var(--medium);
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #contact-401 .cs-input::placeholder {
    color: #b4b2c7;
  }
  body.dark-mode #contact-401 .cs-contact-group {
    background-color: var(--medium);
  }
  body.dark-mode #contact-401 .cs-header {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #contact-401 .cs-link {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
}

/*-- -------------------------- -->
<---           Map              -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #map-section {
    width: 100%;
    height: 25rem;
    position: relative;
  }
  #map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #map-section {
    height: 31.25rem;
  }
}
