/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1377 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }
    #services-1377 .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-1377 .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-1377 .cs-topper {
        color: var(--primary);
    }
    #services-1377 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #services-1377 .cs-item {
        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 - 24px */
        padding: clamp(1rem, 1.8vw, 1.5rem);
        /* 24px - 32px */
        padding-top: clamp(1.5rem, 2.3vw, 2rem);
        background-color: #fff;
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        grid-column: span 12;
        gap: 3rem;
        position: relative;
        z-index: 1;
        transition: background-color 0.3s;
    }
    #services-1377 .cs-item:hover {
        background-color: var(--primary);
    }
    #services-1377 .cs-item:hover .cs-icon,
    #services-1377 .cs-item:hover .cs-arrow {
        filter: grayscale(1) brightness(1000%);
    }
    #services-1377 .cs-item:hover .cs-h3 {
        color: #fff;
    }
    #services-1377 .cs-item:hover .cs-arrow-wrapper {
        border-color: #fff;
    }
    #services-1377 .cs-icon {
        width: auto;
        height: 2.5rem;
        transition: filter 0.3s;
    }
    #services-1377 .cs-link {
        text-decoration: none;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        gap: 0.625rem;
    }
    #services-1377 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        font-weight: bold;
        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;
        transition: color 0.3s;
    }
    #services-1377 .cs-arrow-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 arrow */
        flex-shrink: 0;
        transition: border-color 0.3s;
    }
    #services-1377 .cs-arrow {
        width: auto;
        height: 0.75rem;
        transition: filter 0.3s;
    }
}
/* In between - 500px */
@media only screen and (min-width: 31.25rem) {
    #services-1377 .cs-item {
        grid-column: span 6;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1377 .cs-item {
        text-align: left;
        align-items: flex-start;
        grid-column: span 3;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #services-1377 .cs-link {
        flex-direction: row;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-1377 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #services-1377 .cs-item {
        background-color: var(--medium);
    }
    body.dark-mode #services-1377 .cs-item:hover {
        background-color: var(--primary);
    }
    body.dark-mode #services-1377 .cs-item:hover .cs-icon,
    body.dark-mode #services-1377 .cs-item:hover .cs-arrow {
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #services-1377 .cs-item:hover .cs-h3 {
        color: #fff;
    }
    body.dark-mode #services-1377 .cs-item:hover .cs-arrow-wrapper {
        border-color: #fff;
    }
    body.dark-mode #services-1377 .cs-topper {
        color: var(--secondary);
    }
    body.dark-mode #services-1377 .cs-title,
    body.dark-mode #services-1377 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #services-1377 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }
}
/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #content-page-1398 {
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #content-page-1398 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 4vw, 4rem);
        position: relative;
    }
    #content-page-1398 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #content-page-1398 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #content-page-1398 h2,
    #content-page-1398 h3,
    #content-page-1398 h4,
    #content-page-1398 h5,
    #content-page-1398 h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page-1398 h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page-1398 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-1398 h4,
    #content-page-1398 h5,
    #content-page-1398 h6 {
        font-size: 1.25rem;
    }
    #content-page-1398 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-1398 .cs-no-margin {
        margin: 0;
    }
    #content-page-1398 .cs-color {
        color: var(--primary);
    }
    #content-page-1398 p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page-1398 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-1398 p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
        filter: brightness(120%);
    }
    #content-page-1398 ol,
    #content-page-1398 ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page-1398 ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page-1398 ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #content-page-1398 img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page-1398 .cs-image-group {
        width: 100%;
        display: none;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.6vw, 1.25rem);
        position: relative;
    }
    #content-page-1398 .cs-flex {
        position: relative;
    }
    #content-page-1398 .cs-background {
        width: 100%;
        height: 100%;
        /* 32px - 48px */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #content-page-1398 .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: cover;
        display: block;
    }
    #content-page-1398 .cs-box {
        text-align: left;
        width: 100%;
        max-width: 12.5rem;
        padding: 2rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        /* 48px - 80px */
        border-radius: 2rem;
        display: none;
        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);
    }
    #content-page-1398 .cs-box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #content-page-1398 .cs-desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #content-page-1398 .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.265rem, 1fr));
        align-items: center;
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #content-page-1398 .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;
    }
    #content-page-1398 .cs-item:before {
        display: none;
    }
    #content-page-1398 .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;
    }
    #content-page-1398 .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #content-page-1398 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #content-page-1398 .cs-item-text:last-of-type {
        margin: 0;
    }
    #content-page-1398 .cs-ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #content-page-1398 .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;
    }
    #content-page-1398 .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;
    }
    #content-page-1398 .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 36.375em;
        height: 34.8125em;
        display: none;
        position: absolute;
        /* changes to auto at larger desktop */
        left: -16.25em;
        /* changes to -220px at large desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #content-page-1398 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 29em;
        height: 29em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #content-page-1398 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 22.875em;
        height: 22.875em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-1398 .cs-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page-1398 .cs-content {
        width: 50%;
        max-width: 42.125rem;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #content-page-1398 .cs-image-group {
        width: 44%;
        max-width: 33.875rem;
        display: flex;
    }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
    #content-page-1398 .cs-content {
        width: 53%;
    }
    #content-page-1398 .cs-image-group {
        width: 43%;
    }
    #content-page-1398 .cs-box {
        display: flex;
    }
    #content-page-1398 .cs-bubbles {
        font-size: 1em;
        margin-right: 37.5rem;
        display: block;
        left: auto;
        right: 50%;
        bottom: -13.75rem;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-page-1398 {
        background-color: var(--dark);
    }
    body.dark-mode #content-page-1398 .cs-title,
    body.dark-mode #content-page-1398 .cs-text,
    body.dark-mode #content-page-1398 h2,
    body.dark-mode #content-page-1398 h3,
    body.dark-mode #content-page-1398 h4,
    body.dark-mode #content-page-1398 h5,
    body.dark-mode #content-page-1398 h6,
    body.dark-mode #content-page-1398 li,
    body.dark-mode #content-page-1398 p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #content-page-1398 .cs-color,
    body.dark-mode #content-page-1398 a {
        color: var(--primaryLight);
    }
    body.dark-mode #content-page-1398 p,
    body.dark-mode #content-page-1398 li {
        color: #ebebeb;
    }
    body.dark-mode #content-page-1398 .cs-item {
        background-color: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    body.dark-mode #content-page-1398 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #content-page-1398 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #content-page-1398 .cs-picture {
        border-color: var(--dark);
        background-color: var(--dark);
    }
    body.dark-mode #content-page-1398 .cs-bubbles:before {
        border-color: rgba(255, 255, 255, 0.2);
    }
}

                                

/*-- -------------------------- -->
<---         PRICING            -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
    #pricing-1262 {
        padding: var(--sectionPadding);
        overflow: hidden;
        position: relative;
        z-index: 1;
        transform-style: preserve-3d;
    }
  
    #pricing-1262 .cs-container {
        width: 100%;
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        perspective: 1100px;
    }
  
    #pricing-1262 .cs-content {
        text-align: left;
        width: 100%;
        max-width: 40.1875rem;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
  
    #pricing-1262 .cs-text {
        margin-bottom: 1rem;
    }
  
    #pricing-1262 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
  
    #pricing-1262 .cs-button-solid {
        font-size: 1rem;
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        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);
        overflow: hidden;
        border-radius: 0.75rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }
  
    #pricing-1262 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
  
    #pricing-1262 .cs-button-solid:hover:before {
        width: 100%;
    }
  
    #pricing-1262 .cs-toggle-group {
        width: 100%;
        max-width: 25.875rem;
        margin: 0;
        padding: 0.75rem;
        box-sizing: border-box;
        background-color: #f1f1f4;
        border-radius: 0.75rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
  
    #pricing-1262 .cs-plan {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5em;
        margin: 0;
        padding: 0;
        color: var(--headerColor);
    }
  
    #pricing-1262 .cs-plan:hover {
        cursor: pointer;
    }
  
    #pricing-1262 .cs-toggle {
        width: 3.25rem;
        height: 2rem;
        border-radius: 2.5rem;
        background-color: var(--headerColor);
        margin: 0 1.5rem;
        position: relative;
        flex: none;
    }
  
    #pricing-1262 .cs-toggle:hover {
        cursor: pointer;
    }
  
    #pricing-1262 .cs-toggle.active:before {
        opacity: 1;
    }
  
    #pricing-1262 .cs-toggle.active .cs-toggle-switch {
        left: 1.4375rem;
    }
  
    #pricing-1262 .cs-toggle:before {
        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-1262 .cs-toggle-switch {
        width: 1.625rem;
        height: 1.625rem;
        display: block;
        border-radius: 50%;
        filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.06)) drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.1875rem;
        transition: left 0.3s;
        background: #fff;
    }
  
    #pricing-1262 .cs-ul-wrapper {
        position: relative;
        z-index: 10;
        perspective: 1200px;
    }
  
    #pricing-1262 .cs-ul-wrapper.cs-active .cs-option1 {
        transform: rotateY(180deg);
    }
  
    #pricing-1262 .cs-ul-wrapper.cs-active .cs-option2 {
        transform: rotateY(360deg);
    }
  
    #pricing-1262 .cs-option2 {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: rotateY(180deg);
    }
  
    #pricing-1262 .cs-option2 .cs-item {
        border-radius: 0 1.5rem 0 0;
    }
  
    #pricing-1262 .cs-option2 .cs-item:nth-of-type(2) {
        border-radius: 0 0 0 1.5rem;
    }
  
    #pricing-1262 .cs-card-group {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        background-color: #fff;
        border-radius: 1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: transform 0.8s;
    }
  
    #pricing-1262 .cs-item {
        text-align: left;
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 1.5rem 1.5rem;
        background-color: #fff;
          border: 1px solid #dad9e3;
        border-radius: 1rem 0 0 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: relative;
        z-index: 1;
    }
  
    #pricing-1262 .cs-item:nth-of-type(2) {
        border-radius: 0 0 1.5rem 0;
    }
  
    #pricing-1262 .cs-item.cs-popular {
        background-color: #1a1a1a;
        border: none;
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-popular-tag {
        display: inline-flex;
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-package, #pricing-1262 .cs-item.cs-popular .cs-price, #pricing-1262 .cs-item.cs-popular .cs-duration, #pricing-1262 .cs-item.cs-popular .cs-item-text, #pricing-1262 .cs-item.cs-popular .cs-li {
        color: var(--bodyTextColorWhite);
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-item-text, #pricing-1262 .cs-item.cs-popular .cs-li {
        opacity: 0.8;
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-icon {
        filter: none;
        opacity: 1;
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-button-transparent {
        background-color: var(--primary);
        color: var(--bodyTextColorWhite);
        border: none;
        transition: color 0.3s;
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-button-transparent:before {
        background-color: #fff;
    }
  
    #pricing-1262 .cs-item.cs-popular .cs-button-transparent:hover {
        color: var(--primary);
    }
  
    #pricing-1262 .cs-popular-tag {
        font-size: 0.875rem;
        line-height: 1.2em;
        text-align: center;
        width: auto;
        margin: 0;
        padding: 0.25rem 0.75rem;
        box-sizing: border-box;
        color: #fff;
        overflow: hidden;
        border-radius: 0.25rem;
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1;
    }
  
    #pricing-1262 .cs-popular-tag:before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.16;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
  
    #pricing-1262 .cs-picture {
        width: 4.75rem;
        height: 4.75rem;
        margin-bottom: 1.5rem;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
  
    #pricing-1262 .cs-picture:before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.2;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
    }
  
    #pricing-1262 .cs-package {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        display: block;
    }
  
    #pricing-1262 .cs-price {
        font-size: 2.4375rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 900;
        margin: 0 0 0.75rem;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
  
    #pricing-1262 .cs-duration {
        font-size: 0.875rem;
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: var(--headerColor);
    }
  
    #pricing-1262 .cs-item-text {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-align: inherit;
        margin: 0 0 2rem;
        color: var(--bodyTextColor);
    }
  
    #pricing-1262 .cs-ul {
        margin: 0 0 2rem;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
  
    #pricing-1262 .cs-li {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.5rem;
    }
  
    #pricing-1262 .cs-li.cs-disabled {
        opacity: 0.5;
    }
  
    #pricing-1262 .cs-li.cs-disabled .cs-icon {
        filter: grayscale(1) brightness(300%);
    }
  
    #pricing-1262 .cs-icon {
        width: 1.5rem;
        height: auto;
        filter: grayscale(1);
        opacity: 0.5;
        display: block;
    }
  
    #pricing-1262 .button-solid {
        width: 100%;
    }
  
    #pricing-1262 .cs-button-transparent {
        font-size: 1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: var(--primary);
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: transparent;
        border: 1px solid var(--primary);
        border-radius: 0.75rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: color 0.3s, border-color 0.3s, background-color 0.3s;
    }
  
    #pricing-1262 .cs-button-transparent:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.75rem;
        transition: width 0.3s;
    }
  
    #pricing-1262 .cs-button-transparent:hover {
        color: #fff;
        border-color: #000;
        background-color: #000;
    }
  
    #pricing-1262 .cs-button-transparent:hover:before {
        width: 100%;
    }
  
    #pricing-1262 .cs-waves-wrapper {
        width: 100vw;
        height: 65%;
        display: block;
        position: absolute;
        bottom: -6.25rem;
        left: 50%;
        z-index: -10;
        transform: translateX(-50%);
    }
  
    #pricing-1262 .cs-waves-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
  
    /* Add this to your CSS file */
      #pricing-1262 .cs-coming-soon-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.99); /* Light blurry effect */
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 10;
          border-radius: inherit;
      }
  
      #pricing-1262 .cs-coming-soon-text {
          color: white;
          font-size: 1.5rem;
          font-weight: bold;
          text-transform: uppercase;
          background-color: var(--primary);
          padding: 0.5rem 1rem;
          border-radius: 0.25rem;
  
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      /* Make the content behind overlay slightly dimmed */
      #pricing-1262 .cs-item.cs-popular {
          position: relative;
      }
  }
  
  @media only screen and (min-width: 48rem) {
    #pricing-1262 .cs-container {
        max-width: 80rem;
        position: initial;
    }
  
    #pricing-1262 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        flex-wrap: nowrap;
    }
  
    #pricing-1262 .cs-option2 .cs-item {
        border-radius: 1rem 0 0 1rem;
  
    }
  
    #pricing-1262 .cs-option2 .cs-item:nth-of-type(2) {
        border-radius: 0 1rem 1rem 0;
    }
  
    #pricing-1262 .cs-item {
        width: 50%;
        border-radius: 1rem 0 0 1rem;
    }
  
    #pricing-1262 .cs-item:nth-of-type(2) {
        border-radius: 0 1rem 1rem 0;
    }
  
    #pricing-1262 .cs-waves-wrapper {
        width: 55vw;
        height: 100%;
        left: auto;
        right: 0;
        bottom: auto;
        top: 0;
        transform: none;
    }
  }
  
  @media only screen and (min-width: 64rem) {
    #pricing-1262 .cs-container {
        max-width: 80rem;
        position: relative;
        z-index: 1;
    }
  
    #pricing-1262 .cs-waves-wrapper {
        height: 140%;
        top: 50%;
        transform: translateY(-50%);
    }
  }
  
  @media only screen and (min-width: 81.25rem) {
    #pricing-1262 .cs-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.25rem;
    }
  
    #pricing-1262 .cs-ul-wrapper {
        width: 62%;
        max-width: 46.25rem;
        flex: none;
    }
  
    #pricing-1262 .cs-waves-wrapper {
        max-width: 46.25rem;
        width: 100%;
    }
  }
  