
/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2367 {
    /* 116px - 164px top */
    /* 60px - 100px  bottom */
    padding: clamp(7.25rem, 16.82vw, 10.25rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem);
    background-color: #F4F3EF;
    /* clips the svg wave from overflowing */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-2367 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  #hero-2367 .cs-content {
    text-align: left;
    width: 100%;
    /* 24px - 24px top & bottom */
    /* 16px - 60px left & right */
    padding: clamp(1.5rem, 6vw, 3.75rem) clamp(1rem, 6vw, 3.75rem);
    box-sizing: border-box;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  #hero-2367 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 5vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    /* 23 characters including spaces wide */
    max-width: 23ch;
    /* 24px - 32px */
    margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
    padding-bottom: 3rem;
    color: var(--headerColor);
    border-bottom: 1px solid #D2D8DF;
    position: relative;
  }
  #hero-2367 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 20px);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 33.1875rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
    color: var(--bodyTextColor);
  }
  #hero-2367 .cs-button-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* 16px - 20px */
    gap: clamp(1rem, 1.9vw, 1.25rem);
    max-width: 580px;
  }
  #hero-2367 .cs-button-phone {
    font-size: 1rem;
    text-decoration: none;
    font-weight: bold;
    color: var(--headerColor);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #hero-2367 .cs-icon-wrapper {
    /* 46px - 56px */
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero-2367 .cs-picture {
    width: 100%;
    /* 320px - 520px */
    height: clamp(20rem, 80vw, 32.5rem);
    /* 100px - 200px */
    border-radius: 500px 500px 0 0;
    /* clips the img tag corners */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #hero-2367 .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;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-2367 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
  }
  #hero-2367 .cs-content {
    width: 50vw;
    max-width: 42rem;
    /* prevents flex-box from squishing it */
    flex: none;
    align-items: flex-start;
  }
  #hero-2367 .cs-title,
  #hero-2367 .cs-text {
    text-align: left;
  }
  #hero-2367 .cs-picture {
    height: auto;
  }
}
                                