/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-855 {
    /* 116px - 164px top */
    /* 60px - 100px  bottom */
    padding: 3rem 1rem 3rem;
    background-color: var(--primaryLight);
    /* clips the svg wave from overflowing */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-855 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
  #hero-855 .cs-container .cs-content {
    max-width: 39.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #hero-855 .cs-container .cs-content .cs-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    /* 23 characters including spaces wide */
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #hero-855 .cs-container .cs-content .cs-text {
    /* 16px - 20px */
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33.1875rem;
    /* 28px - 40px */
    color: var(--bodyTextColor);
  }
  #hero-855 .cs-picture {
    height: auto;
    max-width: 100%;
    box-shadow: none;
    max-width: 35.625rem;
  }
  #hero-855 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-855 {
    text-align: left;
  }
  #hero-855 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #hero-855 .cs-container .cs-content {
    width: 40vw;
    /* prevents flex-box from squishing it */
    flex: none;
    align-items: flex-start;
  }
  #hero-855 .cs-container .cs-content .cs-title,
  #hero-855 .cs-container .cs-content .cs-text {
    text-align: left;
  }
  #hero-855 .cs-picture {
    width: 100%;
    /* 100px - 200px */
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
    /* clips the img tag corners */
    overflow: hidden;
    display: block;
    position: relative;
    height: 20rem;
  }
  #hero-855 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes image act as a background image */
    object-fit: cover;
    /* ensures the top of the images is at the top of the container, no heads getting cut off */
    object-position: top;
  }
}
