/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* 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);
        }
    }
    #sbs-1362 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 2;
    }
    #sbs-1362 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-1362 .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;
    }

    #sbs-1362 .cs-topper {
        color: var(--accent);
    }
    #sbs-1362 .cs-title {
        /* 23 characters wide including spaces */
        max-width: 26ch;
    }
    #sbs-1362 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-1362 .cs-text:last-of-type {
        margin-bottom: 1.5rem;
    }
    #sbs-1362 .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
        align-items: center;
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #sbs-1362 .cs-item {
        list-style: none;
        /* 16px - 24px */
        padding: clamp(1rem, 3vw, 1.5rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #sbs-1362 .cs-h3 {
        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-1362 .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #sbs-1362 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #sbs-1362 .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-1362 .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-1362 .cs-icon {
        width: 1.5rem;
        height: auto;
        /* adds extra space between the icon and top of parent so it's more centered */
        margin-top: 1px;
        display: block;
    }
    #sbs-1362 .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-1362 .cs-button-solid:before {
        opacity: 1.5;   
    }
    #sbs-1362 .cs-button-solid:hover {
        background-color: var(--tertiary);
    }
    #sbs-1362 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-1362 .cs-image-group {
        width: 100%;
        max-width: 36.625rem;
        /* Changes to auto at desktop */
        height: 32.5rem;
        /* 32px - 48px */
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        position: relative;
    }
    #sbs-1362 .cs-background {
        width: 100%;
        height: 100%;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #sbs-1362 .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: cover;
        display: block;
    }
    #sbs-1362 .cs-box {
        text-align: left;
        width: 100%;
        max-width: 19rem;
        padding: 2rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--accent);
        /* 48px - 80px */
        border-radius: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: absolute;
        /* 12px - 20px */
        right: clamp(0.75rem, 1.9vw, 1.5rem);
        /* 12px - 20px */
        bottom: clamp(0.75rem, 1.9vw, 1.5rem);
    }
    #sbs-1362 .cs-box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #sbs-1362 .cs-desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #sbs-1362 .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 26.1875em;
        height: 26.6875em;
        position: absolute;
        /* changes to 160px at larger desktop */
        right: -16.25em;
        /* changes to 30px at large desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #sbs-1362 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 20.625em;
        height: 20.625em;
        background: transparent;
        border: 1px solid var(--tertiary);
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #sbs-1362 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 16.25em;
        height: 16.25em;
        background: var(--accent);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-1362 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #sbs-1362 .cs-image-group {
        height: auto;
    }
    #sbs-1362 .cs-bubbles {
        font-size: min(2.5vw, 1em);
    }
}
/* Large Desktop 1600px */
@media only screen and (min-width: 100rem) {
    #sbs-1362 .cs-bubbles {
        margin-left: 40.625rem;
        right: auto;
        left: 50%;
        bottom: 1.875rem;
    }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-965 {
        padding: var(--sectionPadding);
        background-size: auto;
        background-position: center;
        background-repeat: repeat;
        background-color: var(--secondary);
        position: relative;
        z-index: 1;
    }
    #services-965 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-965 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 50rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

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

    #services-965 .cs-title,
    #services-965 .cs-text {
        max-width: 100%;
        color: var(--primary);
    }
    #services-965 .cs-text {
        opacity: 0.8;
    }
    #services-965 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.875rem;
    }
    #services-965 .cs-item {
        width: 100%;
        text-align: left;
        list-style: none;
        /* margin top value to match the negative margin value of the .cs-icon-wrapper */
        margin: 2.75rem 0 0 0;
        /* 24px - 64px bottom */
        /* 24px - 40px left & right */
        padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 6vw, 4rem);
        background-color: #f7f7f7;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        grid-column: span 12;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #services-965 .cs-item:hover .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    #services-965 .cs-item:hover .cs-item-text {
        color: var(--bodyTextColorWhite);
        opacity: 0.9;
    }

    #services-965 .cs-item:hover {
        background: var(--accent);
    }
    #services-965 .cs-icon-wrapper {
        width: 5.5rem;
        height: 5.5rem;
        margin: -2.75rem auto 2rem 0;
        background-color: var(--accent);
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        left: calc(clamp(1.5rem, 4vw, 2.5rem) * -1);
    }
    #services-965 .cs-icon {
        width: 2.5rem;
        height: auto;
    }
    #services-965 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: bold;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #services-965 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        max-width: 18.75rem;
        margin: 0 0 2rem 0;
        padding: 0;
        color: var(--bodyTextColor);
    }
    #services-965 .cs-link:hover {
        color: #fff;
    }
    #services-965 .cs-link:before {
        /* underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0rem;
        left: 0;
    }
    #services-965 .cs-background {
        width: 100%;
        height: 100%;
        opacity: 0;
        display: block;
        position: absolute;
        background: var(--accent);
        top: 0;
        left: 0;
        z-index: -1;
        transition: opacity 0.3s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-965 .cs-container {
        max-width: 80rem;
    }
    #services-965 .cs-item {
        grid-column: span 6;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-965 .cs-item {
        grid-column: span 4;
    }
}
/*-- -------------------------- -->
<---         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;
    }
}

@media only screen and (min-width: 0rem) {
    body.dark-mode #portfolio {
        background-color: rgba(0, 0, 0, 0.2);
    }

    body.dark-mode #portfolio .cs-title, body.dark-mode #portfolio .cs-text, body.dark-mode #portfolio .cs-h3, body.dark-mode #portfolio .cs-item-text {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #portfolio .cs-item-text {
        opacity: 0.8;
    }

    body.dark-mode #portfolio .cs-text {
        opacity: 0.8;
    }
}
/*-- -------------------------- -->
<---           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;
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1261 {
        padding: var(--sectionPadding);
        background-color: var(--secondary);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #faq-1261 .cs-container {
        width: 100%;
        /* chnages to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-1261 .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;
    }
    #faq-1261 .cs-topper {
        margin: 0;
        color: var(--accent);
    }
    #faq-1261 .cs-title {
        margin: 0;
        color: var(--primary);
    }
    #faq-1261 .cs-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* 16px - 20px */
        gap: clamp(1rem, 2.4vw, 1.25rem);
    }
    #faq-1261 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.4vw, 1.25rem);
    }
    #faq-1261 .cs-faq-item {
        list-style: none;
        width: 100%;
        background-color: var(--accent);
        border-radius: 0.5rem;
        padding: 0;
        box-sizing: border-box;
        transition: border-bottom 0.3s;
    }
    #faq-1261 .cs-faq-item.active .cs-button {
        color: var(--secondary);
    }
    #faq-1261 .cs-faq-item.active .cs-button:before {
        background-color: var(--secondary);
        transform: rotate(315deg);
    }
    #faq-1261 .cs-faq-item.active .cs-button:after {
        background-color: var(--secondary);
        transform: rotate(-315deg);
    }
    #faq-1261 .cs-faq-item.active .cs-item-p {
        height: auto;
        margin-top: 0.75rem;
        /* 16px - 24px */
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
        color: var(--bodyTextColorWhite);   
        opacity: 1;
    }
    #faq-1261 .cs-faq-item.active .cs-item-p:before {
        /* border top */
        content: "";
        height: 1px;
        background: var(--tertiary);
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 1.5rem;
        right: 1.5rem;
    }
    #faq-1261 .cs-button {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        width: 100%;
        padding: 1.5rem 1.5rem 0;
        border: none;
        background: transparent;
        color: var(--bodyTextColorWhite);
        overflow: hidden;
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        /* 16px - 24px */
        gap: clamp(1rem, 2.5vw, 1.5rem);
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #faq-1261 .cs-button:hover {
        cursor: pointer;
    }
    #faq-1261 .cs-button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 67%;
        right: 1.1875rem;
        transform: rotate(45deg);
        /* animate the transform from the left side of the x axis, and the center of the y */
        transform-origin: left center;
        transition: transform 0.5s;
    }
    #faq-1261 .cs-button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 67%;
        right: 1rem;
        transform: rotate(-45deg);
        /* animate the transform from the right side of the x axis, and the center of the y */
        transform-origin: right center;
        transition: transform 0.5s;
    }
    #faq-1261 .cs-button-text {
        width: 90%;
        padding: 0;
        display: block;
    }
    #faq-1261 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 100%;
        max-width: 33.8125rem;
        height: 0;
        margin: 0;
        /* 16px - 24px */
        padding: 0 1.5rem 1.5rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        opacity: 0;
        color: var(--bodyTextColor);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        position: relative;
        transition:
            opacity 0.3s,
            padding-bottom 0.3s,
            padding-top 0.3s;
    }
    #faq-1261 .cs-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #faq-1261 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}
/* tablet - 768px */
@media only screen and (min-width: 48rem) {
    #faq-1261 .cs-container {
        max-width: 80rem;
    }
    #faq-1261 .cs-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}
/*-- -------------------------- -->
<---       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;
  }
}
                                                                                                