/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-843 {
    /* 175px - 260px top */
    padding: clamp(10.9375rem, 20vw, 16.25rem) 1.2rem clamp(6.25rem, 12vw, 12vw);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #banner-843 .cs-container {
    text-align: center;
    max-width: 80rem;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
  }
  #banner-843 .cs-int-title {
    font: 700 clamp(2.4375rem, 6.4vw, 3.8125rem)/1.2em var(--font-rem);
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #banner-843 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-843 .cs-background:before {
    /* background color overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary-light);
    opacity: 0.8;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-843 .cs-background img {
    width: 100%;
    height: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #banner-843 .cs-wave {
    /* we're stretching the svg wider than the viewport so it's taller and has more of a presence */
    width: 48rem;
    height: auto;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-843 .cs-wave {
    width: 100%;
    left: 0;
    transform: none;
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-2195 {
    padding: var(--sectionPadding);
    background-color: #EDEAE4;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #contact-2195 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 48rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #contact-2195 .cs-content {
    text-align: center;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-2195 .cs-title {
    max-width: 27ch;
  }
  #contact-2195 .cs-form {
    width: 100%;
    max-width: 42.5rem;
    /* prevents flexbox from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
  }
  #contact-2195 .cs-label {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    grid-column: span 12;
    gap: 0.25rem;
  }
  #contact-2195 .cs-label:last-of-type {
    margin-bottom: 1.25rem;
  }
  #contact-2195 .cs-input {
    font-size: 1rem;
    width: 100%;
    /* 46px - 56px */
    height: clamp(2.875rem, 6vw, 3.5rem);
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    padding: 0;
    padding-left: 1.5rem;
    background-color: #ffffff;
    color: #767676;
    border: none;
  }
  #contact-2195 .cs-input::placeholder {
    color: #767676;
  }
  #contact-2195 .cs-select {
    /* as the select arrow/date calendar icon are not affected by padding, we can use a transparent border on the select element to pad the arrow as much as we need */
    border-right: 1.5rem solid rgba(0, 0, 0, 0);
  }
  #contact-2195 .cs-textarea {
    font-family: inherit;
    min-height: 7.5rem;
    padding-top: 1rem;
  }
  #contact-2195 .cs-submit {
    border: none;
    z-index: 1;
    position: relative;
    display: inline-block;
    background-color: var(--secondary);
    width: auto;
    padding: 0 3.125rem;
    text-decoration: none;
    font-size: 1rem;
    line-height: 3.125em;
    font-weight: bold;
    border-radius: 8px;
    white-space: nowrap;
    color: #FAFAFA;
    transition: background-color 0.3s;
    text-align: center;
    grid-column: span 12;
  }
  #contact-2195 .cs-submit:hover {
    background-color: var(--primary);
  }
  #contact-2195 .cs-floater {
    height: auto;
    display: none;
    position: absolute;
    z-index: -1;
  }
  #contact-2195 .cs-flower2 {
    transform: rotateY(180deg);
  }
  #contact-2195 .cs-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }
  #contact-2195 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contact-2195 .cs-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-2195 .cs-container {
    max-width: 80rem;
  }
  #contact-2195 .cs-form {
    /* 464px - 680px */
    max-width: clamp(29rem, 58vw, 42.5rem);
  }
  #contact-2195 .cs-label {
    grid-column: span 6;
  }
  #contact-2195 .cs-label:last-of-type {
    grid-column: span 12;
  }
  #contact-2195 .cs-button-solid {
    width: auto;
    margin: auto;
  }
  #contact-2195 .cs-floater {
    /* 173px - 432px */
    width: clamp(10.8125rem, 25vw, 27rem);
    display: block;
    /* 54px - 08px */
    bottom: clamp(3.375rem, 6vw, 6.75rem);
    left: -2rem;
  }
  #contact-2195 .cs-flower2 {
    right: -2rem;
    bottom: 3.375rem;
    left: auto;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-2195 .cs-label {
    grid-column: span 12;
  }
}

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