body.dark-mode .cs-button-solid {
    background-color: var(--secondaryLight);
    color: #1a1a1a;
}
body.dark-mode .cs-button-solid:before {
    background-color: #fff;
}
.cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
}
.cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
}
.cs-button-solid:hover:before {
    width: 100%;
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #Story-Quote .cs-container,
    #AboutRPsbsr-328 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #Story-Quote .cs-content,
    #AboutRPsbsr-328 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #Story-Quote .cs-text:last-of-type,
    #AboutRPsbsr-328 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #Story-Quote .cs-quote,
    #AboutRPsbsr-328 .cs-quote {
        margin: 0 0 2rem 0;
        padding: clamp(1rem, 3vw, 2rem);
        /* background-color: #f7f7f7; */
        background-color: var(--secondaryLight);
        border-radius: 1rem;
        position: relative;
    }
    #Story-Quote .cs-quote-text,
    #AboutRPsbsr-328 .cs-quote-text {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0 0 1rem;
        color: #767676;
        display: block;
    }
    #Story-Quote .cs-name,
    #AboutRPsbsr-328 .cs-name {
        font-size: 1rem;
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0 0 0.25rem;
        color: var(--headerColor);
        display: block;
    }
    #Story-Quote .cs-job,
    #AboutRPsbsr-328 .cs-job {
        font-size: 0.875rem;
        line-height: 1.5em;
        color: #767676;
        display: block;
    }
    #Story-Quote .cs-quote-icon,
    #AboutRPsbsr-328 .cs-quote-icon {
        /* 60px - 136px */
        width: clamp(3.75rem, 10vw, 8.5rem);
        height: auto;
        position: absolute;
        bottom: 0rem;
        /* 16px - 32px */
        right: clamp(1rem, 4vw, 2rem);
    }
    #Story-Quote .cs-image-group,
    #AboutRPsbsr-328 .cs-image-group {
        /* scaling the font size with the view width */
        font-size: min(2.31vw, 0.7em);
        /* using ems so we can use font size to scale the whole section */
        width: 39.4375em;
        height: 39.75em;
        position: relative;
    }
    #Story-Quote .cs-picture,
    #AboutRPsbsr-328 .cs-picture {
        border-radius: 1.5em;
        /* clips img tag corners */
        overflow: hidden;
        position: absolute;
        display: block;
    }
    #Story-Quote .cs-picture img,
    #AboutRPsbsr-328 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes image act like a background image */
        object-fit: cover;
    }
    #Story-Quote .cs-picture1,
    #AboutRPsbsr-328 .cs-picture1 {
        width: 32.625em;
        height: 36.3125em;
        left: 0;
        top: 0;
    }
    #Story-Quote .cs-picture2,
    #AboutRPsbsr-328 .cs-picture2 {
        width: 22em;
        height: 22em;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
        /* 6px - 12px */
        border: clamp(0.375em, 1.5vw, 0.75em) solid #ffffff;
        right: 0;
        bottom: 0;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #Story-Quote .cs-container,
    #AboutRPsbsr-328 .cs-container {
        flex-flow: row;
        justify-content: space-between;
        gap: 3.25rem;
    }
    #Story-Quote .cs-image-group,
    #AboutRPsbsr-328 .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
    }
    #Story-Quote .cs-content,
    #AboutRPsbsr-328 .cs-content {
        margin: 0;
    }
}

/*-- -------------------------- -->
<---    Side By Side Reverse    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #AboutRPsbsr-328 {
        background-color: #f7f7f7;
    }
    #AboutRPsbsr-328 .cs-picture1 {
        left: auto;
        right: 0;
    }
    #AboutRPsbsr-328 .cs-picture2 {
        right: auto;
        left: 0;
    }
    #AboutRPsbsr-328 .cs-quote {
        background-color: rgba(0, 0, 0, 0.05);
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #AboutRPsbsr-328 .cs-image-group {
        /* sends it to the right in the 2nd position */
        order: 2;
    }
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #AboutStrip-328 {
        padding: var(--sectionPadding);
        background-color: #1a1a1a;
    }
    #AboutStrip-328 .cs-stat-group {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 37.5rem;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2.5rem;
    }
    #AboutStrip-328 .cs-item {
        list-style: none;
        width: 18.125rem;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    #AboutStrip-328 .cs-item:hover .cs-picture {
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        transform: scale(1.05);
    }
    #AboutStrip-328 .cs-picture {
        width: 5rem;
        height: 5rem;
        /* 12px - 20px */
        margin-right: clamp(0.75rem, 3vw, 1.25rem);
        border-radius: 50%;
        border: 1px solid var(--secondaryLight);
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition:
            background-color 0.3s,
            box-shadow 0.3s,
            transform 0.6s;
    }
    #AboutStrip-328 .cs-flex-group {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    #AboutStrip-328 .cs-icon {
        width: 2.0625rem;
        height: auto;
    }
    #AboutStrip-328 .cs-header {
        font-size: 1.25rem;
        color: var(--bodyTextColorWhite);
        font-weight: 900;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        display: block;
    }
    #AboutStrip-328 .cs-link,
    #AboutStrip-328 .cs-hours {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-decoration: none;
        color: #828282;
        display: block;
        transition: color.3s;
    }
    #AboutStrip-328 .cs-link:hover {
        color: var(--primary);
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #AboutStrip-328 .cs-stat-group {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 1.25rem;
        row-gap: 2rem;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #AboutStrip-328 .cs-stat-group {
        max-width: 80rem;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #Aboutsbs-328 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }
    #Aboutsbs-328 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #Aboutsbs-328 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* outline: 2px solid red; */
        /* centers content horizontally, set to flex-start to left align */
        /* align-items: center; */
    }
    #Aboutsbs-328 .image-diff{
        align-items: center;
    }
    /* #Aboutsbs-328 .cs-content .cs-topper{
        align-items: flex-start;
    } */
    #Aboutsbs-328 .cs-text {
        margin-bottom: 1rem;
    }
    #Aboutsbs-328 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #Aboutsbs-328 .cs-circles {
        width: 100%;
        /* changes at desktop */
        max-width: 23.375rem;
        margin: auto;
        /* 40px - 48px */
        margin-top: clamp(2.5rem, 3vw, 3rem);
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #Aboutsbs-328 .cs-circle {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: 1;
        aspect-ratio: 1;
    }
    #Aboutsbs-328 .cs-ring-wrapper {
        position: relative;
        margin: 0 0 0.5rem 0;
    }
    #Aboutsbs-328 .cs-number {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        font-weight: 900;
        /* prevents mouse from interacting with it */
        pointer-events: none;
        line-height: 1.2em;
        color: var(--headerColor);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #Aboutsbs-328 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.4vw, 1rem);
        line-height: 1.5em;
        text-align: left;
        width: 100%;
        color: var(--bodyTextColor);
    }
    #Aboutsbs-328 .cs-circle .cs-desc  {
        font-size: var(--subtitleFontSize);
    }
    #Aboutsbs-328 .cs-ring {
        --ring-width: 6px;
        width: calc(100% - var(--ring-width));
        aspect-ratio: 1;
        overflow: visible;
        pointer-events: none;
        rotate: -90deg;
        scale: 1 -1;
    }
    #Aboutsbs-328 .cs-ring circle {
        fill: none;
        stroke: (#f7f7f7);
        stroke-width: var(--ring-width);
    }
    #Aboutsbs-328 .cs-ring circle:last-of-type {
        stroke: var(--primary);
        stroke-linecap: round;
        stroke-dasharray: calc(var(--ratio) * 314%) 314%;
        transition: stroke-dasharray 1s;
    }
    #Aboutsbs-328 .cs-circle:hover .cs-ring {
        --ratio: 0 !important;
    }
    #Aboutsbs-328 .cs-picture {
        /* set font size to scale with view width, stopping at 68% the value of em */
        font-size: min(2.16vw, 0.68em);
        width: 32.5em;
        height: 42.5em;
        /* margin top and bottom to match the exact amount the grey square overflows the parent for consistent spacing */
        margin: 3em 0;
        position: relative;
        display: block;
    }
    #Aboutsbs-328 .cs-picture:before {
        /* grey box */
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 0.75rem;
        background: #bababa;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transform: rotate(15deg);
    }
    #Aboutsbs-328 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: 0.625rem;
        object-fit: cover;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #Aboutsbs-328 .cs-container {
        max-width: 80rem;
        /* set to horizontal arrangement */
        flex-direction: row;
        justify-content: center;
        /* 77px - 160px */
        gap: clamp(4.8125rem, 11vw, 10rem);
    }
    #Aboutsbs-328 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
    #Aboutsbs-328 .cs-picture {
        font-size: min(1.1vw, 1em);
        margin: 3.5em 0 3.5em 5em;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #Aboutsbs-328 .cs-circles {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    #Aboutsbs-328 .cs-ring-wrapper {
        /* breaks the children out of the container.  They can now be arrnaged as if thy are all children of the cs-circle */
        display: contents;
    }
    #Aboutsbs-328 .cs-ring {
        /* make the ring position absolute so it can sit on top of the other elements that are centered relatively in the cs-circle */
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }
    #Aboutsbs-328 .cs-number {
        /* make the number relative positioning so it and the cs-desc can position themselves around each other */
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    #Aboutsbs-328 .cs-desc {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
    }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #AboutContact-328 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }
    #AboutContact-328 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3.25rem;
    }
    #AboutContact-328 .cs-topper {
        color: var(--secondaryLight);
    }
    #AboutContact-328 .cs-title{
        color: var(--bodyTextColorWhite);
    }
    #AboutContact-328 .cs-text{
        color: var(--bodyTextColorWhite);
        padding-bottom: 2em;
    }
    

    #AboutContact-328 .cs-content {
        text-align: left;
    }
    #AboutContact-328 .cs-form {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #AboutContact-328 .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #AboutContact-328 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        border-radius: 0.5rem;
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #AboutContact-328 .cs-input::placeholder {
        color: #f7f7f7;
        opacity: 0.5;
    }
    #AboutContact-328 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #AboutContact-328 .cs-submit {
        width: 17.6875rem;
        color: var(--bodyTextColorWhite);
        background-color: var(--secondary);
        border: none;
        transition: color 0.3s;
    }
    #AboutContact-328 .cs-submit:hover {
        cursor: pointer;
    }
    #AboutContact-328 .cs-right {
        width: 100%;
        /* 16px - 24px */
        padding: clamp(1rem, 3.5vw, 1.5rem);
        border-radius: 1.5rem;
        background-color: rgba(255, 255, 255, 0.12);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        display: flex;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        /* 24px - 32px */
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    #AboutContact-328 .cs-map {
        width: 100%;
        /* 300px - 425px */
        height: clamp(18.75rem, 63.4vw, 26.5625rem);
        border-radius: 1.5rem;
        /* clips the corners of the img tag */
        overflow: hidden;
        position: relative;
        display: block;
    }
    #AboutContact-328 .cs-map:before {
        content: "";
        position: absolute;
        display: block;
        /* 32px - 48px */
        width: clamp(2rem, 4vw, 3rem);
        height: clamp(2rem, 4vw, 3rem);
        background: url("https://csimg.nyc3.digitaloceanspaces.com/Contact-Page/pin-red.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
        /* 148px - 220px */
        top: clamp(9.25rem, 30.7vw, 13.75rem);
        /* push to the center line of the div */
        left: 50%;
        /* push X amount of pixels from it's current position off the center line */
        margin-left: 0.625rem;
        z-index: 10;
    }
    #AboutContact-328 .cs-map img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #AboutContact-328 .cs-contact-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    #AboutContact-328 .cs-item {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    #AboutContact-328 .cs-header {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--secondaryLight);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.25rem;
    }
    #AboutContact-328 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        color: var(--bodyTextColorWhite);
        transition: color 0.3s;
    }
    #AboutContact-328 .cs-link:hover {
        color: var(--secondary);
    }
    #AboutContact-328 .cs-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        z-index: -1;
    }
    #AboutContact-328 .cs-background:before {
        /* top right box */
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.92;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #AboutContact-328 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #AboutContact-328 .cs-contact-group {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #AboutContact-328 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 3.25rem;
    }
    #AboutContact-328 .cs-content {
        max-width: 32.625rem;
    }
    #AboutContact-328 .cs-title,
    #AboutContact-328 .cs-topper {
        text-align: left;
        margin-left: 0;
    }
    #AboutContact-328 .cs-title {
        max-width: 32.625rem;
    }
    #AboutContact-328 .cs-email,
    #AboutContact-328 .cs-phone {
        width: 48%;
    }
    #AboutContact-328 .cs-button-solid {
        margin-left: 0;
    }
    #AboutContact-328 .cs-right {
        width: 51.6%;
        max-width: 41.125rem;
        /* prevent flexbox from squishing it */
        flex: none;
    }
}
/* Desktop - 1300px - Parallax Effect */
@media only screen and (min-width: 81.25rem) {
    #AboutContact-328 {
        background: url("/img/tax-documents-desk-desktop.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* makes parallax effect */
        background-attachment: fixed;
    }
}

/* Testing */

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-1535 {
    padding: var(--sectionPadding);
    /* 190px - 268px */
    padding-top: clamp(11.875rem, 25vw, 16.75rem);
    /* 100px - 150px */
    padding-bottom: clamp(6.25rem, 12vw, 9.375rem);
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-1535 .cs-container {
    text-align: center;
    width: 100%;
    /* max-width: 34.375rem; */
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }
  #banner-1535 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
    position: relative;
  }
  #banner-1535 .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1535 .cs-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColor);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1535 .cs-link:last-of-type::after {
    display: none;
  }
  #banner-1535 .cs-link:after {
    /* chevron */
    content: '';
    width: 0.4375rem;
    height: 0.75rem;
    margin: 0 1rem;
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/Icons/grey-chevron.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
  }
  #banner-1535 .cs-link.cs-active {
    color: var(--primary);
  }
  #banner-1535 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-1535 .cs-background:before {
    /* gradient overlay */
    content: '';
    width: 100%;
    height: 100%;
    background: #ecf2ff;
    opacity: .8;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1535 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    object-position: top;
  }
  #banner-1535 .cs-mask {
    --maskBG: #ffffff;
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 100;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-1535 .cs-background:before {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(236, 244, 255, 0.9) 23.05%, rgba(171, 219, 247, 0) 80.08%);
    opacity: 1;
  }
}

/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  #content-page-1535 {
    padding: var(--sectionPadding);
    background-color: #fff;
    /* clips the wave background from causing overflow issues when it goes off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #content-page-1535 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 64px */
    gap: clamp(2.5rem, 4vw, 4rem);
    position: relative;
  }
  #content-page-1535 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 46.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-page-1535 .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #content-page-1535 h2,
  #content-page-1535 h3,
  #content-page-1535 h4,
  #content-page-1535 h5,
  #content-page-1535 h6 {
    font-weight: 700;
    text-align: inherit;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #content-page-1535 h2 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  #content-page-1535 h3 {
    font-size: 1.5rem;
    color: var(--primary);
  }
  #content-page-1535 h4,
  #content-page-1535 h5,
  #content-page-1535 h6 {
    font-size: 1.25rem;
  }
  #content-page-1535 .cs-button-solid {
    margin-bottom: 2rem;
  }
  #content-page-1535 .cs-no-margin {
    margin: 0;
  }
  #content-page-1535 .cs-color {
    color: var(--primary);
  }
  #content-page-1535 p {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
  }
  #content-page-1535 p:last-of-type {
    margin-bottom: 2rem;
  }
  #content-page-1535 p a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: var(--primary);
    filter: brightness(120%);
  }
  #content-page-1535 ol,
  #content-page-1535 ul {
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #content-page-1535 ul li {
    list-style: none;
    color: inherit;
    position: relative;
  }
  #content-page-1535 ul li:before {
    /* custom list bullet */
    content: '';
    width: 3px;
    height: 3px;
    background: currentColor;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 0.625rem;
    left: -0.75rem;
  }
  #content-page-1535 img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* #content-page-1535 .cs-image-group {
    width: 32.625em;
    height: 33.75em;
    display: none;
    position: relative;
    z-index: 1;
  } */
  #content-page-1535 .cs-image-group {
    width: 80vw;
    height: 30rem;
    margin-bottom: 2rem;
    display: block;
    position: relative;
    z-index: 1;
  }
  #content-page-1535 .cs-background {
    width: 100%;
    height: 100%;
    border-radius: 2.5em;
    /* clips the corners of the children around the border radius */
    overflow: hidden;
    /* makes it cover the parent dimensions */
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #content-page-1535 .cs-background img {
    width: 100%;
    height: 100%;
    /* makes it cover the parent like a backgorund image */
    object-fit: cover;
    display: block;
  }
  #content-page-1535 .cs-emblem {
    width: 16em;
    height: auto;
    position: absolute;
    left: -2em;
    /* transform: translateX(-50%); */
    bottom: -2.25em;
    z-index: 10;
    /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);  */
  }
  #content-page-1535 .cs-floater {
    width: 35em;
    height: auto;
    position: absolute;
    left: 9.375em;
    top: 25em;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #content-page-1535 .cs-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  #content-page-1535 .cs-content {
    width: 60%;
    max-width: 43.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #content-page-1535 .cs-image-group {
    font-size: min(1.3vw, 1em);
    width: 32.625em;
    height: 33.75em;
    display: block;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #content-page-1535 .cs-content {
    width: 53%;
  }
}

#Aboutsbs-328 .cs-subtitle {
    margin-top: 1em;
}

/* @media screen and (max-width: 768px) {
  #Aboutsbs-328 .cs-content {
    align-items: flex-start;
  }
} */

/* Mobile override */
/* @media screen and (max-width: 768px) {
  #Aboutsbs-328 .cs-topper {
    text-align: left;
    display: block;
    margin-left: 0;
    outline: 2px solid red;
  }
} */

/* .cs-topper {
  outline: 2px solid red;
} */

