/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2426 {
    padding: var(--sectionPadding);
    background-color: #f5f5f7;
  }
  #services-2426 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 26.25rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-2426 .cs-topper {
    color: var(--accent);
  }
  #services-2426 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-2426 .cs-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: var(--primary);
  }
  #services-2426 .cs-text {
    margin-top: 1rem;
    color: var(--primary);
    opacity: 0.8;
  }
  #services-2426 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.9vw, 1.25rem);
  }
  #services-2426 .cs-item {
    list-style: none;
    width: 100%;
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #services-2426 .cs-item:hover .cs-border {
    opacity: 1;
  }
  #services-2426 .cs-link {
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 1.5rem 1rem;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
  }
  #services-2426 .cs-picture {
    width: 100%;
    height: 100vw;
    max-height: 26.25rem;
    display: block;
    position: relative;
  }
  #services-2426 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #services-2426 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-align: center;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    transition: color 0.3s;
  }
  #services-2426 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: center;
    margin: 0;
    color: var(--primary);
    opacity: 0.8;
  }
  #services-2426 .cs-border {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #services-2426 .cs-border:before {
    content: '';
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2426 .cs-border:after {
    content: '';
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2426 .cs-border1:before {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--accent) 0%, rgba(0, 0, 0, 0) 78%);
  }
  #services-2426 .cs-border1:after {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(0, 0, 0, 0) 78%);
  }
  #services-2426 .cs-border2:before {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 22%, var(--accent) 100%);
    top: auto;
    bottom: 0;
  }
  #services-2426 .cs-border2:after {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 22%, var(--accent) 100%);
    left: auto;
    right: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2426 .cs-container {
    max-width: 80rem;
  }
  #services-2426 .cs-item {
    grid-column: span 4;
  }
  #services-2426 .cs-link {
    /* 12px - 20px */
    padding: clamp(0.75rem, 1.5vw, 1.25rem);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2426 .cs-item:hover:before {
    opacity: 1;
  }
  #services-2426 .cs-item:hover .cs-h3 {
    color: var(--accent);
  }
}

/*-- -------------------------- -->
<---           About            -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {

    #about {
        padding: var(--sectionPadding);
        background-image: linear-gradient(180deg, #f5f5f7, var(--secondary));
        overflow: hidden;
        position: relative;
    }

    #about .cs-container {
        width: 100%;
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }

    #about .cs-content {
        text-align: left;
        width: 100%;
        max-width: 38.5625rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #about .cs-topper {
        color: var(--accent);
    }

    #about .cs-title {
        color: var(--primary);
    }

    #about .cs-heading {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
    }

    #about .cs-text {
        margin-bottom: 1rem;
    }

    #about .cs-text:last-of-type {
        margin-bottom: 1.5rem;
    }

    #about .cs-button-solid {
        font-size: 1rem;
        font-weight: 700;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-align: center;
        text-decoration: none;
        min-width: 9.375rem;
        margin: 0;
        border-radius: 5em;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        padding: 0 2rem;
        color: var(--secondary);
        background-color: var(--accent);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #about .cs-button-solid:before {
        opacity: 1.5;   
    }
    #about .cs-button-solid:hover {
        background-color: var(--tertiary);
    }
    #about .cs-button-solid:hover:before {
        width: 100%;
    }

    #about .cs-button-solid:hover:before {
        width: 100%;
    }

    #about .cs-h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        line-height: 1.2em;
        text-align: left;
        margin: 0 0 1rem 0;
        color: var(--primary);
    }

    #about .cs-picture-group .cs-picture {
        flex: 1;
    }

    #about .cs-picture {
        width: 100%;
        min-height: 22.625rem;
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 1;
    }

    #about .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }

    #about .cs-content {
        max-width: 36.5rem;
    }

}

@media only screen and (min-width: 48rem) {

    #about .cs-container {
        max-width: 80rem;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-end;
        position: relative;
        z-index: 1;
    }

    #about .cs-content {
        width: 48vw;
    }

}

@media only screen and (min-width: 64rem) {

    #about .cs-content {
        padding: 2.5rem 0;
    }

}

@media only screen and (max-width: 65rem) and (min-width: 48rem) {
    
    #about .cs-picture {
        position: absolute;
        left: 0;
    }
    
    #about .cs-content {
        padding-top: 50px;
        padding-right: 10px;
    }

    #featured-service .cs-content {
        padding-top: 50px;
    }

    #about::before {
        display: none;
    }

}
@media only screen and (min-width: 1200px) {

    #about .cs-picture {
        margin-right: -6.125rem;
    }

}
@media only screen and (min-width: 48rem) {

    #about {
        padding-left: 0;
    }

    #about .cs-content {
        padding-left: 9.375rem;
        max-width: 35.1875rem;
        box-sizing: border-box;
    }

    #about .cs-picture {
        max-width: 100vw;
        margin-right: -6.125rem;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        position: absolute;
        height: 100%;
        width: 60vw;
        right: 50%;
    }

}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-471:after {
        display: block;
        left: auto;
        top: 3.5625rem;
        right: -17.5625rem;
    }
    #stats-471 .cs-card-group {
        justify-content: space-between;
    }
}
/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1585 {
    background-color: var(--secondary);
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #sbs-1585 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #sbs-1585 .cs-picture {
    width: 100%;
    height: clamp(25rem, 80vw, 47rem);
    display: block;
    position: relative;
  }
  #sbs-1585 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #sbs-1585 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    justify-content: center;
  }
  #sbs-1585 .cs-topper {
    color: var(--accent);
  }
  #sbs-1585 .cs-title {
    /* 26 characters wide including spaces */
    max-width: 26ch;
    margin: 0;
  }
  #sbs-1585 .cs-h3 {
    font-size: 1.3rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1585 .cs-card-group {
    width: 100%;
    /* 550px - 630px */
    max-width: clamp(34.375rem, 50vw, 39.375rem);
    padding: 0;
    /* 24px - 40px */
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
    display: grid;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
  }
  #sbs-1585 .cs-item {
    list-style: none;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1585 .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #sbs-1585 .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1585 .cs-h4 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1585 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-1585 .cs-ul {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1585 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-1585 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    border-radius: 5em;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: var(--secondary);
    background-color: var(--accent);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #sbs-1585 .cs-button-solid:before {
    opacity: 1.5;   
  }
  #sbs-1585 .cs-button-solid:hover {
     background-color: var(--tertiary);
  }
  #sbs-1585 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1585 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1585 .cs-content {
    width: 50%;
    max-width: 39.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-1585 .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #sbs-1585 .cs-item {
    grid-column: span 6;
  }
  #sbs-1585 .cs-picture {
    height: auto;
    min-height: 32.8125rem;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1585 .cs-content {
    padding: 5.25rem 0;
    align-self: center;
  }
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1587 {
    background-color: var(--secondary);
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #sbs-1587 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #sbs-1587 .cs-picture {
    width: 100%;
    height: clamp(25rem, 80vw, 47rem);
    display: block;
    position: relative;
  }
  #sbs-1587 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #sbs-1587 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    justify-content: center;
  }
  #sbs-1587 .cs-topper {
    color: var(--accent);
  }
  #sbs-1587 .cs-title {
    /* 26 characters wide including spaces */
    max-width: 26ch;
    margin: 0;
  }
  #sbs-1587 .cs-h3 {
    font-size: 1.3rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1587 .cs-card-group {
    width: 100%;
    /* 550px - 630px */
    max-width: clamp(34.375rem, 50vw, 39.375rem);
    padding: 0;
    /* 24px - 40px */
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
    display: grid;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
  }
  #sbs-1587 .cs-item {
    list-style: none;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1587 .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #sbs-1587 .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1587 .cs-h4 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1587 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-1587 .cs-ul {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1587 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-1587 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    border-radius: 5em;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: var(--secondary);
    background-color: var(--accent);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #sbs-1587 .cs-button-solid:before {
    opacity: 1.5;   
  }
  #sbs-1587 .cs-button-solid:hover {
     background-color: var(--tertiary);
  }
  #sbs-1587 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1587 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1587 .cs-content {
    width: 50%;
    max-width: 39.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-1587 .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #sbs-1587 .cs-item {
    grid-column: span 6;
  }
  #sbs-1587 .cs-picture {
    height: auto;
    min-height: 32.8125rem;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1587 .cs-content {
    padding: 5.25rem 0;
    align-self: center;
  }
}
/*-- -------------------------- -->
<---         Portfolio          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #portfolio {
        background-color: var(--secondary);
        padding: var(--sectionPadding);
    }

    #portfolio .cs-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 34.375rem;
        width: 100%;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #portfolio .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 80rem;
        width: 100%;
        text-align: left;
    }
    #portfolio .cs-topper {
    color: var(--accent);
  }
    #portfolio .cs-text {
        z-index: 1;
        position: relative;
        max-width: 40rem;
    }

    #portfolio .cs-text:after {
        position: relative;
        content: "";
        opacity: 1;
        display: block;
        margin-top: 1.5rem;
        background: var(--primary);
        height: 1px;
        width: 100%;
        opacity: 0.2;
    }

    #portfolio .cs-title {
        max-width: 20ch;
    }

    #portfolio .cs-card-group {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        margin: 0;
        padding: 0;
        gap: clamp(1rem, 2vw, 1.5rem);
        row-gap: 2rem;
    }

    #portfolio .cs-item {
        list-style: none;
        grid-column: span 12;
    }

    #portfolio .cs-item:hover .cs-picture {
        transform: scale(1.06);
    }

    #portfolio .cs-link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    #portfolio .cs-link:hover {
        text-decoration: none;
    }

    #portfolio .cs-picture {
        z-index: -1;
        position: relative;
        display: block;
        border-radius: 1rem;
        margin: 0 0 0rem;
        height: clamp(12.5rem, 25vw, 16.875rem);
        width: 100%;
        overflow: hidden;
        transition: transform 0.65s;
    }

    #portfolio .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        padding: 0 1.25rem;
    }

    #portfolio .cs-h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--headerColor);
    }

    #portfolio .cs-item-text {
        display: block;
        margin-bottom: 1.5rem;
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        color: var(--bodyTextColor);
        text-align: inherit;
    }

    #portfolio .cs-button-solid {
        margin-top: auto;
        justify-self: flex-end;
    }

    #portfolio .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    border-radius: 5em;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: var(--secondary);
    background-color: var(--accent);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #portfolio .cs-button-solid:before {
    opacity: 1.5;   
  }
  #portfolio .cs-button-solid:hover {
     background-color: var(--tertiary);
  }
  #portfolio .cs-button-solid:hover:before {
    width: 100%;
  }
}

@media only screen and (min-width: 48rem) {
    #portfolio .cs-container {
        max-width: 80rem;
    }

    #portfolio .cs-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #portfolio .cs-text {
        padding: 0.75rem 0 0.75rem 1.5rem;
    }

    #portfolio .cs-text:after {
        order: -1;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0 1.5rem 0 0;
        height: 100%;
        width: 1px;
    }

    #portfolio .cs-flex {
        max-width: 40rem;
        width: 40vw;
        text-align: left;
        flex: none;
    }

    #portfolio .cs-title {
        margin: 0;
    }

    #portfolio .cs-item {
        grid-column: span 4;
    }
}

/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1586 {
    background-color: var(--secondary);
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #sbs-1586 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #sbs-1586 .cs-picture {
    width: 100%;
    height: clamp(25rem, 80vw, 47rem);
    display: block;
    position: relative;
  }
  #sbs-1586 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #sbs-1586 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    justify-content: center;
    order: 1;
  }
  #sbs-1586 .cs-topper {
    color: var(--accent);
  }
  #sbs-1586 .cs-title {
    /* 26 characters wide including spaces */
    max-width: 26ch;
    margin: 0;
  }
  #sbs-1586 .cs-h3 {
    font-size: 1.3rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1586 .cs-card-group {
    width: 100%;
    /* 550px - 630px */
    max-width: clamp(34.375rem, 50vw, 39.375rem);
    padding: 0;
    /* 24px - 40px */
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
    display: grid;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
  }
  #sbs-1586 .cs-item {
    list-style: none;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1586 .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #sbs-1586 .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1586 .cs-h4 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1586 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-1586 .cs-ul {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1586 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-1586 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    border-radius: 5em;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: var(--secondary);
    background-color: var(--accent);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #sbs-1586 .cs-button-solid:before {
    opacity: 1.5;   
  }
  #sbs-1586 .cs-button-solid:hover {
     background-color: var(--tertiary);
  }
  #sbs-1586 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1586 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1586 .cs-content {
    width: 50%;
    max-width: 39.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-1586 .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #sbs-1586 .cs-item {
    grid-column: span 6;
  }
  #sbs-1586 .cs-picture {
    height: auto;
    min-height: 32.8125rem;
    /* sends it to the right in the 2nd position */
    order: 1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1586 .cs-content {
    padding: 5.25rem 0;
    align-self: center;
  }
}
/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #stats-471 {
        padding: var(--sectionPadding);
        background-color: var(--accent);
        /* clips the glowing orbs from causing overflow issues when they overflow the container */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #stats-471:before,
    #stats-471:after {
        /* glowing orbs */
        content: "";
        width: 28.3125rem;
        height: 20.8125rem;
        background: var(--secondary);
        opacity: 0.16;
        -webkit-filter: blur(182px);
        filter: blur(182px);
        position: absolute;
        display: block;
        top: -4.125rem;
        left: -14.1875rem;
        z-index: -1;
    }
    #stats-471:after {
        display: none;
    }
    #stats-471 .cs-container {
        width: 100%;
        max-width: 59.6875rem;
        margin: auto;
    }
    #stats-471 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 3.75rem;
    }
    #stats-471 .cs-item {
        list-style: none;
        width: 47%;
        max-width: 15rem;
        margin: 0;
        padding: 0 0.75rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #stats-471 .cs-icon {
        /* 50px - 76px */
        width: clamp(3.125rem, 6vw, 4.75rem);
        height: auto;
        margin: 0 0 1.25rem;
        display: block;
    }
    #stats-471 .cs-number {
        /* 31px - 61px */
        font-size: clamp(1.9375rem, 4.3vw, 3.8125rem);
        line-height: 1.2em;
        text-align: center;
        font-weight: 400;
        margin: 0 0 0.25rem 0;
        color: var(--bodyTextColorWhite);
    }
    #stats-471 .cs-desc {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.15rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        color: var(--bodyTextColorWhite);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-471:after {
        display: block;
        left: auto;
        top: 3.5625rem;
        right: -17.5625rem;
    }
    #stats-471 .cs-card-group {
        justify-content: space-between;
    }
}
/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1210 {
    padding: var(--sectionPadding);
    background-color: var(--secondary);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #steps-1210 .cs-container {
    /* changes to 1280px at tablet */
    max-width: 44rem;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1210 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #steps-1210 .cs-topper {
    color: var(--accent);
  }
  #steps-1210 .cs-title {
    color: var(--primary);
  }
  #steps-1210 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    max-width: 40.625rem;
    width: 100%;
    margin: 0;
    color: var(--primary);
    opacity: 0.8;
  }
  #steps-1210 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #steps-1210 .cs-item {
    text-align: center;
    list-style: none;
    /* 8px - 48px */
    padding: 0 clamp(0.5rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    grid-column: span 12;
  }
  #steps-1210 .cs-item:last-of-type:after {
    display: none;
  }
  #steps-1210 .cs-item:after {
    /* content property isn't set until 768px, to hide the line on mobile */
    /* 120px - 200px */
    content: "";
    width: clamp(7.5rem, 14vw, 12.5rem);
    height: 5.625rem;
    background: url(/svgs/line.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    display: none;
    position: absolute;
    top: 0;
    left: clamp(11.5rem, 24vw, 20rem);
  }
  #steps-1210 .cs-number {
    font-size: 1.25rem;
    font-weight: bold;
    width: 5.5rem;
    height: 5.5rem;
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 4vw, 2rem);
    color: var(--primary);
    background-color: #f5f5f7;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #steps-1210 .cs-icon {
    width: 2.5rem;
    height: auto;
    display: block;
  }
  #steps-1210 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--primary);
  }
  #steps-1210 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    max-width: 25.8125rem;
    margin: 0;
    color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-1210 .cs-container {
    max-width: 80rem;
  }
  #steps-1210 .cs-item {
    grid-column: span 4;
  }
  #steps-1210 .cs-item:after {
    display: block;
  }
}
                                                                
/*-- -------------------------- -->
<---       Call To Action       -->
<--- -------------------------- -*/

/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta-2443 {
    padding: var(--sectionPadding);
    background-color: var(--accent);
    position: relative;
    z-index: 1;
  }
  #cta-2443 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }
  #cta-2443 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    gap: 2rem;
  }
  #cta-2443 .cs-title {
    font-size: clamp(3.8125rem, 8vw, 7.5rem);
    margin: 0;
    color: var(--bodyTextColorWhite);
    flex: none;
  }
  #cta-2443 .cs-text {
    margin-bottom: 1rem;
    color: var(--bodyTextColorWhite);
  }
  #cta-2443 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-2443 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    border-radius: 5em;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: var(--primary);
    background-color: var(--secondary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cta-2443 .cs-button-solid:before {
    opacity: 1.5;  
  }
  #cta-2443 .cs-button-solid:hover {
     background-color: var(--tertiary);
     color: var(--secondary); 
  }
  #cta-2443 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-2443 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-2443 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.08;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-2443 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #cta-2443 .cs-flex {
    max-width: 23.25rem;
  }
}

                                                                                                                              