/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2410 {
    /* 180px - 200px top */
    /* 60px - 120px bottom */
    padding: clamp(11.25rem, 16.82vw, 12.5rem) 1rem clamp(3.75rem, 8vw, 7.5rem);
    /* clips the svg wave from overflowing */
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 6.5rem;
  }
  #hero-2410:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.2;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-2410 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
  #hero-2410 .cs-content {
    max-width: 34.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #hero-2410 .cs-topper {
    font-size: 1rem;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #hero-2410 .cs-title {
    /* 39px - 72px */
    font-size: clamp(2.4375rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    /* 23 characters including spaces wide */
    max-width: 23ch;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #hero-2410 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33.1875rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
    color: var(--bodyTextColor);
  }
  #hero-2410 .cs-button-solid {
    --gradientmix: color-mix(in lab, var(--primary), black 49%);
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    margin: 0;
    min-width: 9.375rem;
    padding: 0 1.75rem;
    background-color: var(--primary);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--gradientmix) 99%);
    border-radius: 6.25rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #hero-2410 .cs-button-solid:before {
    content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #2a2a2a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
  }
  #hero-2410 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-2410 .cs-image-group {
    /* we use ems for everything inside the cs-image-group so they pull their value for em from the cs-image-group container that we set.  This min-max property lets us tie the font size to the view width of the screen and grows proportionally with every pixel wide the screen gets until the value the view width units = .75em, resets at small desktop */
    font-size: min(1.7vw, .55rem);
    width: 52.1875em;
    height: 52.25em;
    /* prevents flexbox from squishing it */
    flex: none;
    position: relative;
    z-index: 2;
  }
  #hero-2410 .cs-picture {
    width: 39.6875em;
    height: 52.25em;
  }
  #hero-2410 .cs-picture img {
    width: 100%;
    height: 100%;
  }
  #hero-2410 .cs-wave {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-2410 {
    text-align: left;
  }
  #hero-2410 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #hero-2410 .cs-content {
    width: 40vw;
    /* prevents flex-box from squishing it */
    flex: none;
    align-items: flex-start;
  }
  #hero-2410 .cs-title,
  #hero-2410 .cs-text {
    text-align: left;
  }
  #hero-2410 .cs-image-group {
    font-size: min(1vw, 1rem);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-2410 .cs-container {
        padding-top: 4rem;
    }
}
/* Large Desktop - 1400px */
@media only screen and (min-width: 87.5rem) {
  #hero-2410 {
    padding-bottom: 10vw;
  }
}

/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1450 {
    padding: var(--sectionPadding);
    padding-bottom: 14vw;
  }
  #content-1450 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content-1450 .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;
  }
  #content-1450 .cs-title,
  #content-1450 .cs-text {
    max-width: 100%;
  }
  #content-1450 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem 0;
  }
  #content-1450 .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 3rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #content-1450 .cs-button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width .3s;
  }
  #content-1450 .cs-button-solid:hover:before {
    width: 100%;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-366 {
        padding: var(--sectionPadding);
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-4px);
        }
        70% {
            transform: translateY(4px);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes InAndOut {
        0% {
            transform: translateY(3.75rem) scale(1);
            opacity: 1;
        }
        30% {
            transform: translateY(1.875rem) scale(0.8);
            opacity: 1;
        }
        60% {
            transform: translateY(0.625rem) scale(0.5);
            opacity: 0.2;
        }
        100% {
            transform: translateY(0rem) scale(0.2);
            opacity: 0;
        }
    }
    @keyframes InAndOut2 {
        0% {
            transform: translateY(4.375rem) scale(1);
            opacity: 1;
        }
        30% {
            transform: translateY(2.5rem) scale(0.8);
            opacity: 1;
        }
        60% {
            transform: translateY(1.25rem) scale(0.6);
            opacity: 1;
        }
        100% {
            transform: translateY(0rem) scale(0.4);
            opacity: 0;
        }
    }
    #services-366 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-366 .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-366 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        /* 16px - 20px */
        column-gap: clamp(1rem, 2vw, 1.25rem);
    }
    #services-366 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 31.25rem;
        /* 20px - 40px top & bottom */
        /* 16px - 32px left & right */
        padding: clamp(1.25rem, 3.5vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        box-sizing: border-box;
        transition: background-color 0.3s;
    }
    #services-366 .cs-item:hover {
        background-color: var(--primary);
    }
    #services-366 .cs-item:hover .cs-icon-wrapper:before,
    #services-366 .cs-item:hover .cs-bubble:before,
    #services-366 .cs-item:hover .cs-icon-wrapper:after,
    #services-366 .cs-item:hover .cs-bubble:after {
        background-color: #449ffc;
    }
    #services-366 .cs-item:hover .cs-icon {
        /* makes it white on hover */
        filter: grayscale(1) brightness(1000%);
    }
    #services-366 .cs-item:hover .cs-h3 {
        color: #fff;
    }
    #services-366 .cs-item:hover .cs-item-text {
        color: #fff;
    }
    #services-366 .cs-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #services-366 .cs-icon-wrapper {
        width: 6.125rem;
        height: 7.5rem;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
    }
    #services-366 .cs-icon-wrapper:before {
        /* Small Bubble */
        content: "";
        width: 1.6875rem;
        height: 1.6875rem;
        border-radius: 50%;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0.1875rem;
        animation-name: InAndOut;
        animation-duration: 1.6s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        transition: background-color 0.3s;
    }
    #services-366 .cs-icon-wrapper:after {
        /* Small Bubble */
        content: "";
        width: 1.6875rem;
        height: 1.6875rem;
        border-radius: 50%;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        top: 0.6875rem;
        right: 0.3125rem;
        animation-name: InAndOut2;
        animation-duration: 2s;
        animation-delay: 0.3s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        transition: background-color 0.3s;
    }
    #services-366 .cs-bubble {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    #services-366 .cs-bubble:before {
        /* Big Bubble */
        content: "";
        width: 3.9375rem;
        height: 3.9375rem;
        border-radius: 50%;
        background: #e5f2ff;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0.25rem;
        left: 0rem;
        animation-name: floatAnimation2;
        animation-duration: 12s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        transition: background-color 0.3s;
    }
    #services-366 .cs-bubble:after {
        /* Big Bubble */
        content: "";
        width: 3.125rem;
        height: 3.125rem;
        border-radius: 50%;
        background: #e5f2ff;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.25rem;
        right: 0rem;
        animation-name: floatAnimation2;
        animation-duration: 10s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        transition: background-color 0.3s;
    }
    #services-366 .cs-icon {
        width: 4.5rem;
        height: auto;
        position: relative;
        z-index: 10;
        width: 125%;
        height: auto;
        
    }
    #services-366 .cs-h3 {
        font-size: 1.25rem;
        font-weight: 900;
        text-align: center;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #services-366 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }
    #services-366 .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.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #services-366 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #2a2a2a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #services-366 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-366 .cs-card-group {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1362 {
        padding: var(--sectionPadding);
        position: relative;
        overflow: hidden;
        z-index: 1;
        background-color: #f7f7f7;
    }
    #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(--primary);
    }
    #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: #fff;
        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: 2.5rem;
        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;
        /* 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.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #sbs-1362 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #2a2a2a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #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 */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* 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: 1rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        /* 48px - 80px */
        border-radius: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        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: 4rem;
        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;
        margin-left: 1rem;
        color: var(--bodyTextColorWhite);
    }
}

/* 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;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1374 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        /* Prevents overflow from the image going off screen */
        overflow: hidden;
        
    }
    #gallery-1374 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1374 .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;
    }

    #gallery-1374 .cs-topper {
        color: var(--secondary);
    }
    #gallery-1374 .cs-image-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 1fr;
        /* 16px - 60px */
        gap: clamp(1rem, 4.3vw, 3.75rem);
    }
    #gallery-1374 .cs-link {
        text-decoration: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #gallery-1374 .cs-item {
        list-style: none;
        width: 100%;
        height: 100%;
        margin: 0;
        grid-column: span 12;
    }
    #gallery-1374 .cs-item:hover .cs-h3,
    #gallery-1374 .cs-item:hover .cs-desc {
        color: #fff;
    }
    #gallery-1374 .cs-item:hover .cs-item-text {
        background-color: var(--primary);
    }
    #gallery-1374 .cs-item:hover .cs-icon-wrapper {
        border-color: #fff;
    }
    #gallery-1374 .cs-item:hover .cs-icon {
        filter: brightness(1000%) grayscale(1);
    }
    #gallery-1374 .cs-picture {
        width: 100%;
        /* 344px - 420px */
        height: clamp(21.5rem, 30vw, 26.25rem);
        margin: auto;
        border-radius: 1.5rem;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #gallery-1374 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #gallery-1374 .cs-item-text {
        /* 16px - 20px top & bottom, 16px - 40px left & right */
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.8vw, 2.5rem);
        background-color: #f7f7f7;
        border-radius: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* makes the item text the element that grows to fill the container */
        flex-grow: 1;
        gap: 1rem;
        transition: background-color 0.3s;
    }
    #gallery-1374 .cs-flex {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    #gallery-1374 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 1.8vw, 1.5625rem);
        line-height: 1.2em;
        text-align: left;
        margin: 0;
        color: #1a1a1a;
        transition: color 0.3s;
    }
    #gallery-1374 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.2vw, 1rem);
        line-height: 1.5em;
        color: #1a1a1a;
        transition: color 0.3s;
    }
    #gallery-1374 .cs-icon-wrapper {
        width: 3rem;
        height: 3rem;
        border: 1px solid #bababa;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents the parent flexbox from shrinking the icon */
        flex-shrink: 0;
        transition: border-color 0.3s;
    }
    #gallery-1374 .cs-icon {
        width: auto;
        height: 0.75rem;
        transition: filter 0.3s;
    }
    #gallery-1374 .cs-button-solid {
        font-size: 1rem;
        font-weight: 700;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-align: center;
        text-decoration: none;
        min-width: 9.375rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        overflow: hidden;
        padding: 0 1.5rem;
        color: #fff;
        background-color: var(--primary);
        border-radius: 3rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #gallery-1374 .cs-button-solid:before {
        content: "";
        width: 0%;
        height: 100%;
        background: #000;
        opacity: 1;
        border-radius: 0.25rem;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #gallery-1374 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
    #gallery-1374 .cs-item {
        grid-column: span 6;
    }
}

  /*-- -------------------------- -->
  <---          Pricing           -->
  <--- -------------------------- -*/

  /* Mobile */
  @media only screen and (min-width: 0rem) {
      #pricing-243 {
          padding: var(--sectionPadding);
          
      }
      #pricing-243 .cs-container {
          width: 100%;
          /* changes to 1104px at desktop */
          max-width: 46rem;
          margin: auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          /* 48px - 64px */
          gap: clamp(3rem, 6vw, 4rem);
          
      }
      #pricing-243 .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;
      }

      #pricing-243 .cs-text {
          margin-bottom: 2rem;
      }
      #pricing-243 .cs-toggle-group {
          width: 14.5rem;
          margin: auto;
          display: flex;
          justify-content: center;
          align-items: center;
      }
      #pricing-243 .cs-plan {
          font-size: 1rem;
          line-height: 1.5em;
          margin: 0;
          padding: 0;
          color: var(--headerColor);
      }
      #pricing-243 .cs-plan:hover {
          cursor: pointer;
      }
      #pricing-243 .cs-toggle {
          width: 3.875rem;
          height: 2.25rem;
          border-radius: 2.5rem;
          background-color: var(--headerColor);
          margin: 0 0.75rem;
          position: relative;
          /* prevent flexbox from squishing it */
          flex: none;
      }
      #pricing-243 .cs-toggle:hover {
          cursor: pointer;
      }
      #pricing-243 .cs-toggle.active:before {
          opacity: 1;
      }
      #pricing-243 .cs-toggle.active .cs-toggle-switch {
          left: 2rem;
      }
      #pricing-243 .cs-toggle:before {
          /* top right box */
          content: "";
          width: 100%;
          height: 100%;
          background: var(--primary);
          opacity: 0;
          position: absolute;
          display: block;
          top: 0;
          left: 0;
          border-radius: 2.5rem;
          transition: opacity 0.3s;
      }
      #pricing-243 .cs-toggle-switch {
          width: 1.5rem;
          height: 1.5rem;
          display: block;
          border-radius: 50%;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0.375rem;
          transition: left 0.3s;
          background: #fff;
      }
      #pricing-243 .cs-option-group {
          position: relative;
          /* hides the second options when it leaves the container */
          overflow: hidden;
          /* these two create the 3D illusion */
          perspective: 700px;
          transform-style: preserve-3d;
      }
      #pricing-243 .cs-option-group.option2-active .cs-option1-text {
          opacity: 0;
          transform: scaleY(0);
      }
      #pricing-243 .cs-option-group.option2-active .cs-option2-text {
          top: 0;
          opacity: 1;
      }
      #pricing-243 .cs-option1-text {
          transform-origin: center center;
          transition:
              opacity 0.3s,
              transform 0.3s;
      }
      #pricing-243 .cs-option2-text {
          /* push the text down, outside of the group wrapper and animate back up */
          opacity: 0;
          position: absolute;
          left: 0;
          top: 4.375rem;
          transition:
              opacity 0.3s,
              top 0.6s cubic-bezier(0.42, 0, 0.16, 1.39);
      }
      #pricing-243 .cs-card-group {
          margin: 0;
          padding: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          gap: 1rem;
      }
      #pricing-243 .cs-item {
          list-style: none;
          /* 24px - 32px */
          padding: clamp(1.5rem, 3vw, 2rem);
          width: 100%;
          max-width: 22.25rem;
          border-radius: 0.875rem;
          background: var(--bodyTextColorWhite);
          box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
          /* prevents padding from adding to height and width */
          box-sizing: border-box;
      }
      #pricing-243 .cs-item:nth-of-type(2) .cs-option2-text,
      #pricing-243 .cs-item:nth-of-type(2) .cs-option1-text {
          transition-delay: 0.1s;
      }
      #pricing-243 .cs-item:nth-of-type(3) .cs-option2-text,
      #pricing-243 .cs-item:nth-of-type(3) .cs-option1-text {
          transition-delay: 0.2s;
      }
      #pricing-243 .cs-popular {
          background: var(--primary);
          position: relative;
          /* send to the bottom */
          order: 3;
      }
      #pricing-243 .cs-popular:before {
          /* Most Popular Tag */
          content: "Most Popular";
          font-size: 0.875rem;
          text-align: center;
          line-height: 1.8125rem;
          font-weight: 700;
          padding: 0 0.75rem;
          color: var(--bodyTextColorWhite);
          background-color: var(--headerColor);
          border-radius: 1.875rem;
          position: absolute;
          display: block;
          /* 24px - 32px */
          top: clamp(1.5rem, 3vw, 2rem);
          /* 24px - 32px */
          right: clamp(1.5rem, 3vw, 2rem);
      }
      #pricing-243 .cs-popular .cs-h3,
      #pricing-243 .cs-popular .cs-item-text,
      #pricing-243 .cs-popular .cs-price,
      #pricing-243 .cs-popular .cs-included,
      #pricing-243 .cs-popular .cs-li {
          color: var(--bodyTextColorWhite);
      }
      #pricing-243 .cs-popular .cs-button-solid {
          background-color: var(--bodyTextColorWhite);
          color: var(--primary);
          transition: color 0.3s;
      }
      #pricing-243 .cs-popular .cs-button-solid:hover {
          color: var(--bodyTextColorWhite);
      }
      #pricing-243 .cs-popular .cs-li-img {
          /* turns the check mark white */
          filter: brightness(900%);
      }
      #pricing-243 .cs-h3 {
          font-size: 1.25rem;
          line-height: 1.2em;
          font-weight: 700;
          margin: 0 0 0.75rem;
          padding: 0;
          color: var(--headerColor);
      }
      #pricing-243 .cs-item-text {
          font-size: 1rem;
          line-height: 1.5em;
          margin: 0 0 1.5rem;
          padding: 0;
          color: var(--bodyTextColor);
      }
      #pricing-243 .cs-price {
          font-size: 2.4375rem;
          line-height: 1.2em;
          font-weight: 700;
          margin-bottom: 0.5rem;
          color: var(--headerColor);
          /* spans are inline, need to add block for margin to work */
          display: block;
      }
      #pricing-243 .cs-button-solid {
          font-size: 1rem;
          line-height: 3.5em;
          text-decoration: none;
          font-weight: 700;
          text-align: center;
          margin: auto;
          color: #fff;
          min-width: 9.375rem;
          margin: 0 0 2rem;
          padding: 0 1.5rem;
          background-color: var(--headerColor);
          border-radius: 0.25rem;
          display: block;
          position: relative;
          z-index: 1;
          /* prevents padding from adding to the width */
          box-sizing: border-box;
      }
      #pricing-243 .cs-button-solid:before {
          content: "";
          position: absolute;
          height: 100%;
          width: 0%;
          background: var(--secondary);
          opacity: 1;
          top: 0;
          left: 0;
          z-index: -1;
          border-radius: 0.25rem;
          transition: width 0.3s;
      }

      #pricing-243 > div > ul > li.cs-item.cs-popular > a.cs-button-solid:before {
          background: var(--headerColor);
      }

      #pricing-243 .cs-button-solid:hover:before {
          width: 100%;
      }
      #pricing-243 .cs-included {
          font-size: 1rem;
          line-height: 1.5em;
          font-weight: 700;
          margin-bottom: 0.75rem;
          color: var(--headerColor);
          display: block;
      }
      #pricing-243 .cs-ul {
          padding: 0;
          margin: 0;
      }
      #pricing-243 .cs-li {
          font-size: 1rem;
          line-height: 1.5em;
          list-style: none;
          padding: 0;
          margin: 0 0 0.75rem;
          display: flex;
          justify-content: flex-start;
          align-items: flex-start;
      }
      #pricing-243 .cs-li:last-of-type {
          margin-bottom: 0;
      }
      #pricing-243 .cs-li-img {
          width: 1.25rem;
          height: auto;
          margin-top: 0.1875rem;
          margin-right: 0.5rem;
      }
  }
  /* Tablet 768px */
  @media only screen and (min-width: 48rem) {
      #pricing-243 .cs-card-group {
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: space-between;
      }
      #pricing-243 .cs-item {
          width: 50%;
          /* ensures they stay the same height if you add more content */
          align-self: stretch;
      }
      #pricing-243 .cs-popular {
          width: 100%;
          max-width: 100%;
      }
  }
  /* Small Desktop */
  @media only screen and (min-width: 64rem) {
      #pricing-243 .cs-container {
          max-width: 69rem;
      }
      #pricing-243 .cs-card-group {
          flex-wrap: nowrap;
      }
      #pricing-243 .cs-item {
          width: 100%;
      }
      #pricing-243 .cs-popular {
          max-width: 22.25rem;
          /* remove the order */
          order: unset;
      }
  }
