



/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1378 {
        padding: var(--sectionPadding);
    }
    #services-1378 .cs-container {
        width: 100%;
        max-width: 65rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1378 .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-1378 .cs-content {
        margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }
    #services-1378 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        column-gap: clamp(1rem, 2vw, 1.25rem);
        /* 72px - 84px */
        row-gap: clamp(4.5rem, 6vw, 5.25rem);
    }
    #services-1378 .cs-item {
        /* change to left if you want text aligned to the left */
        text-align: center;
        list-style: none;
        width: 100%;
        /* 210px - 305px */
        min-height: clamp(13.125rem, 30vw, 19.0625rem);
        margin: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        /* 16px - 40px */
        padding: clamp(1rem, 3vw, 2.5rem);
        padding-top: 0;
        background-color: var(--secondaryLight);
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: span 12;
        position: relative;
        z-index: 1;
        transition: background-color 0.3s;
    }
    @media (hover: hover) {
    #services-1378 .cs-item:hover {
        background-color: var(--primaryLight);
    }
    #services-1378 .cs-item:hover .cs-picture {
        background-color: var(--primary);
    }
    #services-1378 .cs-item:hover .cs-icon,
    #services-1378 .cs-item:hover .cs-arrow {
        filter: grayscale(1) brightness(1000%);
    }
    #services-1378 .cs-item:hover .cs-h3,
    #services-1378 .cs-item:hover .cs-item-text {
        color: #fff;
    }
    #services-1378 .cs-item:hover .cs-item-text {
        opacity: 0.8;
    }
    #services-1378 .cs-item:hover .cs-link {
        border-color: #fff;
    }

    }
    #services-1378 .cs-picture {
        width: 5.5rem;
        height: 5.5rem;
        margin: -2.75rem 0 clamp(1.75rem, 3vw, 2.25rem) 0;
        box-sizing: border-box;
        background-color: var(--primary);
        border: 2px solid #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s background-color;
    }
    #services-1378 .cs-icon {
        width: 2.5rem;
        height: auto;
        transition: filter 0.3s;
    }
    #services-1378 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.51rem);
        line-height: 1.2em;
        text-align: inherit;
        /* if a word is too long for the card, break it onto a new line */
        word-break: break-word;
        margin: 0 0 0.75rem;
        transition: color 0.3s;
    }
    #services-1378 .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0 0 2rem;
        color: var(--bodyTextColor);
        transition: 0.3s color;
    }
    #services-1378 .cs-title {
font-size: clamp(1.9375rem, 3.9vw, 2.5625rem);

    }
    #services-1378 .cs-link {
        text-decoration: none;
        width: 4rem;
        height: 4rem;
        color: var(--headerColor);
        border: 1px solid #bababa;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents the parent flexbox from shrinking the arrow */
        flex-shrink: 0;
        gap: 0.625rem;
        transition: border-color 0.3s;
    }
    #services-1378 .cs-arrow {
        width: auto;
        height: 0.75rem;
        transition: filter 0.3s;
    }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
    #services-1378 .cs-item {
        grid-column: span 6;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-1378 .cs-item {
        grid-column: span 4;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-1378 .cs-item {
        background-color: var(--medium);
    }
    body.dark-mode #services-1378 .cs-item:hover {
        background-color: var(--accent);
    }
    body.dark-mode #services-1378 .cs-item:hover .cs-icon,
    body.dark-mode #services-1378 .cs-item:hover .cs-arrow {
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #services-1378 .cs-item:hover .cs-h3 {
        color: #fff;
    }
    body.dark-mode #services-1378 .cs-item:hover .cs-arrow-wrapper {
        border-color: #fff;
    }
    body.dark-mode #services-1378 .cs-title,
    body.dark-mode #services-1378 .cs-text,
    body.dark-mode #services-1378 .cs-h3,
    body.dark-mode #services-1378 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #services-1378 .cs-text,
    body.dark-mode #services-1378 .cs-item-text {
        opacity: 0.8;
    }
    body.dark-mode #services-1378 .cs-picture {
        background-color: var(--accent);
    }
    body.dark-mode #services-1378 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }
}

                                




/*-- -------------------------- -->
<---       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);
        background: var(--secondaryLight);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #sbs-1362 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 30.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-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: var(--secondary);
        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;
        font-weight: 700;
        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;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #sbs-1362 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #sbs-1362 .cs-button-solid:hover {
        color: var(--primary);
    }
    #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;
        box-sizing: border-box;
        background-color: var(--primary);
        border-radius: 1rem;
        border-top-left-radius: 0rem;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 0rem;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        position: absolute;
        bottom: clamp(0.75rem, 1.9vw, 12rem);
        align-items: center;
    }














    
    #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);
        display: flex;
        flex-direction: column;
        gap: .35rem;

    }
    #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 #1a1a1a;
        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-delay: 2s; 
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #sbs-1362 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 16.25em;
        height: 16.25em;
        background: var(--primary);
        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-delay: 2s; /* Start AFTER hero loads */
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-1362 .cs-container {
        max-width: 70rem;
        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;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {

    body.dark-mode #sbs-1362 {

        background: var(--medium)
    }


    body.dark-mode #sbs-1362 .cs-topper {
        color: var(--primary);
    }
    body.dark-mode #sbs-1362 .cs-title,
    body.dark-mode #sbs-1362 .cs-text,
    body.dark-mode #sbs-1362 .cs-li,
    body.dark-mode #sbs-1362 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #sbs-1362 .cs-text,
    body.dark-mode #sbs-1362 .cs-li,
    body.dark-mode #sbs-1362 .cs-item-text {
        opacity: 0.8;
    }
    body.dark-mode #sbs-1362 .cs-item {
        background-color: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    body.dark-mode #sbs-1362 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #sbs-1362 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #sbs-1362 .cs-bubbles:before {
        border-color: rgba(255, 255, 255, 0.2);
    }
}
                                



    

    


#sbs-1362 .cs-box-desc {
    font-size: 1.3rem;
    font-weight: 200;
}


#sbs-1362 .cs-box-title {
    font-size: 1.5rem;
    font-weight: 600;
}




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

/* 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);
        }
    }
    #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: 65rem;
        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-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(16.5rem, 30vw, 21.25rem);
        margin: auto;
        border-radius: 1.5rem;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #gallery-1374 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
        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: var(--secondaryLight);
        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;
                font-weight: 500;
        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: 1.75rem;
        filter: brightness(.3);
        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%;
    }
    #gallery-1374 .cs-bubbles {
        width: 25.9375rem;
        height: 34.125rem;
        position: absolute;
        left: -10.25rem;
        bottom: 2.125rem;
        z-index: -1;
    }
    #gallery-1374 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 21.3125rem;
        height: 21.3125rem;
        background: transparent;
        opacity: 1;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-delay: 2s; /* Start AFTER hero loads */
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
    #gallery-1374 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 21.3125rem;
        height: 21.3125rem;
        background: var(--primary);
        opacity: 0.1;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-delay: 2s; /* Start AFTER hero loads */
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
    #gallery-1374 .cs-item {
        grid-column: span 6;
    }
}
/* Dark Mode */


@media only screen and (min-width: 0rem) {
    body.dark-mode #gallery-1374 .cs-title,
    body.dark-mode #gallery-1374 .cs-text,
    body.dark-mode #gallery-1374 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #gallery-1374 .cs-text {
        opacity: 0.8;
    }
   body.dark-mode #gallery-1374 .cs-desc {
        color: #767676;
    }


  body.dark-mode  #gallery-1374 .cs-item-text {

    background-color: var(--medium);
  }
}

                                








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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-1384 {
        padding: var(--sectionPadding);
        /* clips the cs-floater and prevents it from causing overflow issues */
        overflow: hidden;
        background-color: var(--secondaryLight);
        position: relative;
        z-index: 1;
    }
    #pricing-1384 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 198px - 214px, 48px and 64px + the 150px negative margin to on the cs-flex. We add that negative marign value to the regular standard gap spacing so there's the proper standard spacing between the cs-content and the cs-card to account for the cs-flex pulling the cs-content closer to it with a negative margin */
        gap: clamp(12.375rem, 18vw, 13.375rem);
    }
    #pricing-1384 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #pricing-1384 .cs-title {
        max-width: 20ch;
    }
    #pricing-1384 .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 16px - 20px */
        column-gap: clamp(1rem, 2.3vw, 1.25rem);
        /* 166px - 170px */
        row-gap: clamp(10.375rem, 20vw, 10.625rem);
    }
    #pricing-1384 .cs-item {
        text-align: center;
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0 2.5rem 2.5rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #pricing-1384 .cs-item.cs-popular .cs-flex {
        background-color: var(--primary);
    }
    #pricing-1384 .cs-item.cs-popular .cs-tag {
        display: flex;
    }
    #pricing-1384 .cs-item.cs-popular .cs-package,
    #pricing-1384 .cs-item.cs-popular .cs-price,
    #pricing-1384 .cs-item.cs-popular .cs-duration {
        color: var(--bodyTextColorWhite);
    }
    #pricing-1384 .cs-item.cs-popular .cs-duration {
        opacity: 0.8;
                font-weight: 700;
    }
    #pricing-1384 .cs-item.cs-popular .cs-button-transparent {
        background-color: var(--primary);
        color: #fff;
        transition:
            color 0.3s,
            border-color 0.6s,
            background-color 0.3s;
    }
    #pricing-1384 .cs-item.cs-popular .cs-button-transparent:hover {
        border-color: #1a1a1a;
        background-color: #1a1a1a;
    }
    #pricing-1384 .cs-flex {
        /* 196px - 250px */
        width: clamp(12.25rem, 25vw, 15.625rem);
        height: clamp(12.25rem, 25vw, 15.625rem);
        margin-top: -9.375rem;
        border-radius: 50%;
        background-color: var(--secondaryLight);
        border: 3px solid var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #pricing-1384 .cs-tag {
        font-size: 0.8125rem;
        color: var(--headerColor);
        text-transform: uppercase;
        /* keeps the text in one line, won't jump to two lines */
        white-space: nowrap;
        font-weight: 700;
        padding: 0.5rem;
        gap: 0.25rem;
        border-radius: 50px;
        background-color: #fff;
        /* clips the corners of the pseudo element */
        overflow: hidden;
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        bottom: -0.25rem;
        transform: translateX(-50%);
    }
    #pricing-1384 .cs-tag:before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.3;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #pricing-1384 .cs-icon {
        width: 1.25rem;
        height: auto;
        display: flex;
    }
    #pricing-1384 .cs-package {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        /* 4px - 8px */
        margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
    }
    #pricing-1384 .cs-price {
        /* 31px - 49px */
        font-size: clamp(1.9375rem, 4vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: inherit;
        margin: 0;
        padding: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    #pricing-1384 .cs-duration {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        text-align: inherit;
        margin: 0;
        /* 4px - 8px */
        padding: clamp(0.25rem, 1vw, 0.5rem) 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #pricing-1384 .cs-duration-plus {
        font-size: 2rem;
        line-height: 1.5em;
        font-weight: 400;
        text-align: inherit;
        margin: 0;
        /* 4px - 8px */
        padding: clamp(0.25rem, 1vw, 0.5rem) 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #pricing-1384 .cs-ul {
        width: 100%;
        margin: 2.5rem 0 2.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        position: relative;
    }
    #pricing-1384 .cs-li {
        font-size: 1rem;
        list-style: none;
        line-height: 1.5em;
        font-weight: 400;
        text-align: inherit;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #pricing-1384 .cs-li.cs-disabled {
        opacity: 0.5;
        text-decoration: line-through;
    }
    #pricing-1384 .cs-button-transparent {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: var(--primary);
        padding: 0 3rem;
        border-radius: 1.875rem;
        border: 1px solid var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #pricing-1384 .cs-button-transparent:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #pricing-1384 .cs-button-transparent:hover {
        color: var(--bodyTextColorWhite);
        border-color: #1a1a1a;
    }
    #pricing-1384 .cs-button-transparent:hover:before {
        width: 100%;
    }
    #pricing-1384 .cs-button-transparent {
        /* this is the section specific override if you choose to pull out the cs-button-transparent and place it in a global stylesheet to resue acorss the entire site */
        margin-top: auto;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pricing-1384 .cs-container {
        max-width: 80rem;
    }
    #pricing-1384 .cs-container .cs-card-group {
        flex-direction: row;
        align-items: stretch;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #pricing-1384 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #pricing-1384 .cs-title,
    body.dark-mode #pricing-1384 .cs-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #pricing-1384 .cs-text {
        opacity: 0.8;
    }
    body.dark-mode #pricing-1384 .cs-flex {
        background-color: var(--dark);
    }
    body.dark-mode #pricing-1384 .cs-ul:before {
        opacity: 0.5;
    }
    body.dark-mode #pricing-1384 .cs-item {
        background-color: var(--medium);
    }
    body.dark-mode #pricing-1384 .cs-item.cs-popular .cs-button-transparent {
        background-color: #fff;
        color: var(--primary);
    }
    body.dark-mode #pricing-1384 .cs-item.cs-popular .cs-button-transparent:hover {
        background-color: #1a1a1a;
    }
    body.dark-mode #pricing-1384 .cs-package {
        color: var(--primary);
    }
    body.dark-mode #pricing-1384 .cs-price,
    body.dark-mode #pricing-1384 .cs-duration,
    body.dark-mode #pricing-1384 .cs-li {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #pricing-1384 .cs-duration,
    body.dark-mode #pricing-1384 .cs-li {
        opacity: 0.8;
    }
    body.dark-mode #pricing-1384 .cs-button-transparent {
        background-color: var(--primary);
        color: #fff;
        border: none;
        transition:
            color 0.3s,
            background-color 0.3s;
    }
    body.dark-mode #pricing-1384 .cs-button-transparent:hover {
        background-color: #1a1a1a;
    }
}








































/*-- -------------------------- -->
<---        Recent Posts        -->
<--- -------------------------- -*/

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

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

    #blog-1369 .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: 2rem 0 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        padding: 0 1.5rem;
        color: #fff;
        background-color: var(--primary);
        border: none;
        border-radius: 3rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    #blog-1369 .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;
    }
    #blog-1369 .cs-button-solid:hover:before {
        width: 100%;
    }
    #blog-1369 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1rem;
    }
    #blog-1369 .cs-item {
        list-style: none;
        display: flex;
        flex-direction: column;
        grid-column: span 12;
    }
    #blog-1369 .cs-item:hover .cs-h3,
    #blog-1369 .cs-item:hover .cs-date,
    #blog-1369 .cs-item:hover .cs-category {
        color: #fff;
    }
    #blog-1369 .cs-item:hover .cs-item-text {
        background-color: var(--primary);
    }
    #blog-1369 .cs-item:hover .cs-icon-wrapper {
        border-color: #fff;
    }
    #blog-1369 .cs-item:hover .cs-icon,
    #blog-1369 .cs-item:hover .cs-date-icon {
        filter: brightness(1000%) grayscale(1);
    }
    #blog-1369 .cs-item:hover .cs-icon {
        transform: rotate(45deg);
    }
    #blog-1369 .cs-item:hover .cs-category::before {
        background-color: #fff;
        opacity: 0.2;
    }
    #blog-1369 .cs-link {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        /* if one card has more content then the others, the card will stretch to fill the parent container */
        flex-grow: 1;
        gap: 1rem;
    }
    #blog-1369 .cs-picture {
        width: 100%;
        height: 20rem;
        margin: 0;
        border-radius: 1.5rem;
        display: block;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    #blog-1369 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #blog-1369 .cs-item-text {
        padding: 1.25rem;
        background-color: #f7f7f7;
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* makes the item text the element that grows to fill the container */
        flex-grow: 1;
        transition: background-color 0.3s;
    }
    #blog-1369 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 1.8vw, 1.5625rem);
        line-height: 1.2em;
        text-align: left;
        margin: 0;
        color: #1a1a1a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: color 0.3s;
    }
    #blog-1369 .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;
    }
    #blog-1369 .cs-icon {
        width: auto;
        height: 1.5rem;
        transition:
            filter 0.3s,
            transform 0.3s;
    }
    #blog-1369 .cs-info {
        margin: 1rem 0 0;
        padding: 1rem 0 0;
        border-top: 1px solid #e8e8e8;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #blog-1369 .cs-date {
        font-size: 0.875rem;
        line-height: 1.5em;
        text-align: left;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s;
    }
    #blog-1369 .cs-date-icon {
        width: auto;
        height: 1.5rem;
        transition: filter 0.3s;
    }
    #blog-1369 .cs-category {
        font-size: 0.875rem;
        /* centers the text if the category bullet has to span multiple lines */
        text-align: center;
        padding: 0.25rem 1rem;
        color: #1a1a1a;
        border-radius: 5rem;
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    #blog-1369 .cs-category::before {
        content: "";
        width: 100%;
        height: 100%;
        background: #e8e8e8;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #blog-1369 .cs-bubbles {
        width: 20.0625rem;
        height: 26.4375rem;
        display: none;
        position: absolute;
        top: 8.6875rem;
        right: -8.75rem;
        z-index: -1;
    }
    #blog-1369 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 16.5rem;
        height: 16.5rem;
        background: transparent;
        opacity: 1;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-delay: 2s; /* Start AFTER hero loads */
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
    #blog-1369 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 16.5rem;
        height: 16.5rem;
        background: var(--primary);
        opacity: 0.1;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-delay: 2s; /* Start AFTER hero loads */
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #blog-1369 .cs-item {
        grid-column: span 6;
    }
    #blog-1369 .cs-bubbles {
        display: block;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #blog-1369 .cs-container {
        max-width: 80rem;
    }
    #blog-1369 .cs-bubbles {
        top: 17.5625rem;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #blog-1369 .cs-container {
        flex-direction: row;
    }
    #blog-1369 .cs-content {
        text-align: left;
        max-width: 19.0625rem;
        align-items: start;
    }
    #blog-1369 .cs-bubbles {
        margin-right: -61.875rem;
        top: -1.25rem;
        right: 50%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #blog-1369 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #blog-1369 .cs-title,
    body.dark-mode #blog-1369 .cs-text,
    body.dark-mode #blog-1369 .cs-h3,
    body.dark-mode #blog-1369 .cs-date,
    body.dark-mode #blog-1369 .cs-category {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #blog-1369 .cs-text,
    body.dark-mode #blog-1369 .cs-date,
    body.dark-mode #blog-1369 .cs-category {
        opacity: 0.8;
    }
    body.dark-mode #blog-1369 .cs-button-solid::before {
        background-color: var(--medium);
    }
    body.dark-mode #blog-1369 .cs-item-text {
        background-color: var(--medium);
    }
    body.dark-mode #blog-1369 .cs-category::before {
        background-color: var(--accent);
    }
}

                                




.fake-link {
    font-family: 'Barlow Condensed';
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--secondary);
    /* text-decoration: underline; */
    background-color: var(--primary);
    border-radius: 0.5rem;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Hover background */
.fake-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border-radius: 0.5rem;
    z-index: -2;
    transition: background-color 0.3s ease;
}

.fake-link:hover::before {
    background-color: var(--secondary); /* Set your hover background color here */
    color:#000
}


.fake-link:hover {
    color:#000;
    text-decoration: none;
}

.cs-item:hover .fake-link {
    color: var(--secondary); /* or any other color you want */
    text-decoration: none;
    background-color: var(--primaryDark);
}

.cs-item:hover .fake-link:hover {
    color: var(--headerColor); /* or any other color you want */
}


 .cs-graphic {
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: .02rem;
    left: 0;
    z-index: -4;
    transition: opacity 0.5s, bottom 0.5s;
    
}
.cs-item:hover .cs-graphic {
    opacity: 1;
}


/* Apply grayscale filter when body has .dark-mode */
body.dark-mode .cs-graphic {
  filter: grayscale(1);
}
#services-1378 .cs-item:hover .cs-picture  {

    background-color: #c04a26;
}





