/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #steps-1675 {
        padding: 0;
        padding-top: 9rem;
    }

    #steps-1675 .cs-container {
        width: 100%;
        /* changes to 1920px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #steps-1675 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #steps-1675 .cs-text {
        /* Override.  cs-topper cs-title and first cs-text should be removed and put into your global css sheet so it can control every instance of them on your site and is consistent. This selector is a section specific override that stays inside this stitch */
        max-width: 32.625rem;
    }

    #steps-1675 .cs-card-group {
        margin: 0;
        padding: 0;
        display: grid;
        justify-items: center;
        align-items: stretch;
        grid-auto-flow: row;
    }

    #steps-1675 .cs-item {
        list-style: none;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        /* bottom border */
    }

    #steps-1675 .cs-item::after {
        content: "";
        width: 100%;
        height: 1px;
        /* to change the color of the bottom border, adjust the second color (at 50%). the first and third will blend the color to transparent */
        /* note you'll also have to change the color in the tablet media query when the lines go vertical */
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
        opacity: .6;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    #steps-1675 .cs-item:first-of-type {
        padding-top: 0;
    }

    #steps-1675 .cs-item:last-of-type {
        padding-bottom: 0;
    }

    #steps-1675 .cs-item:last-of-type::after {
        content: none;
    }

    #steps-1675 .cs-number {
        /* 80px - 100px */
        font-size: clamp(5rem, 1vw, 6.25rem);
        font-weight: 900;
        line-height: 1.2em;
        color: var(--primary);
        opacity: 0.62;
        display: block;
    }

    #steps-1675 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.2em;
        margin: -1.9375rem 0 1rem 0;
        color: var(--headerColor);
        z-index: 10;
    }

    #steps-1675 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2vw, 1rem);
        line-height: 1.5em;
        text-align: left;
        margin: 0;
        color: var(--bodyTextColor);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #steps-1675 .cs-container {
        max-width: 120rem;
    }

    #steps-1675 .cs-card-group {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    #steps-1675 .cs-item {
        /* 24px - 60px */
        padding: clamp(1.5rem, 3vw, 3.75rem);
        /* the specificity of the mobile .cs-item means we need to explicitly define the first and last items here, too */
    }

    #steps-1675 .cs-item::after {
        width: 1px;
        height: 100%;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
        opacity: .6;
        right: 0;
        left: initial;
    }

    #steps-1675 .cs-item:first-of-type,
    #steps-1675 .cs-item:last-of-type {
        /* 24px - 60px */
        padding: clamp(1.5rem, 3vw, 3.75rem);
    }
}


/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-1262 .cs-icon-dark {
        background-color: white;
    }

    #pricing-1262 {
        padding: var(--sectionPadding);
        padding-top: 9rem;
        /* clips svg graphic from overflowing the section */
        overflow: hidden;
        position: relative;
        z-index: 1;
        transform-style: preserve-3d;
    }

    #pricing-1262 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px, changes to 20px at large desktop */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        perspective: 1100px;
    }

    #pricing-1262 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 40.1875rem;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        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;
        /* 46px - 56px */
        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.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        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;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #f1f1f4;
        border-radius: 0.5rem;
        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(--secondary);
        margin: 0 1.5rem;
        position: relative;
        /* prevent flexbox from squishing it */
        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 {
        /* 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-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;
    }

    #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%;
        margin: 0;
        padding: 0;
        background-color: #fff;
        border-radius: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        -webkit-backface-visibility: hidden;
        /* Safari */
        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: 1.5rem 0 0 0;
        /* prevents padding and border from affecting height and width */
        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: #14142b;
        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-icon {
        filter: none;
        opacity: 1;
    }

    #pricing-1262 .cs-item.cs-popular .cs-button-transparent {
        background-color: var(--secondary);
        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: var(--secondary);
        overflow: hidden;
        border-radius: 0.25rem;
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        /* same as cs-item padding top */
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1;
    }

    #pricing-1262 .cs-popular-tag:before {
        /* background color overlay */
        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 > .cs-plan-icon {
        width: 80%
    }

    #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 {
        /* background color */
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.2;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
    }

    #pricing-1262 .cs-package.cs-premium {
        color: var(--secondary) !important;
    }

    #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 {
        /* 14px - 16px */
        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 {
        /* 14px - 16px */
        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;
        /* push everything to the top so if the li goes to two lines the icon stays at the top */
        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;
        display: block;
    }

    #pricing-1262 .button-solid {
        width: 100%;
    }

    #pricing-1262 .cs-button-transparent {
        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: white;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border: 1px solid 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;
        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.25rem;
        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;
    }

    #pricing-1262 .bold {
        font-weight: bold;
        color: white;
    }

    #pricing-1262 .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;
        margin-top: 1rem;
        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;
    }

    #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 .3s;
    }

    #pricing-1262 .cs-button-solid:hover:before {
        width: 100%;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pricing-1262 .cs-container {
        max-width: 80rem;
        /* remove the position so the svg waves wrapper can be positioned relative to the section container for tablet so it hugs the right edge of the screen. We set it back to relative at 1024px so it can then be positioned relative to the container again so it hugs the right edge of the container with the pricing cards */
        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: 1.5rem 0 0 1.5rem;
    }

    #pricing-1262 .cs-option2 .cs-item:nth-of-type(2) {
        border-radius: 0 1.5rem 1.5rem 0;
    }

    #pricing-1262 .cs-item {
        width: 50%;
        border-radius: 1.5rem 0 0 1.5rem;
    }

    #pricing-1262 .cs-item:nth-of-type(2) {
        border-radius: 0 1.5rem 1.5rem 0;
    }

    #pricing-1262 .cs-waves-wrapper {
        /* changes to 740px at large desktop */
        width: 55vw;
        height: 100%;
        left: auto;
        right: 0;
        bottom: auto;
        top: 0;
        transform: none;
    }
}

/* Desktop - 1024px */
@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%);
    }
}

/* Large Desktop - 1300px */
@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%;
    }
}


/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1333 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }

    #contact-1333 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        /* 48px - 80px */
        gap: clamp(3rem, 6vw, 5rem);
        position: relative;
    }

    #contact-1333 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #contact-1333 .cs-title {
        max-width: 23ch;
        margin: 0 0 1.75rem 0;
    }

    #contact-1333 .cs-form {
        width: 100%;
        max-width: 40.625rem;
        /* 32px - 48px top and bottom */
        /* 16px - 60px left and right */
        padding: clamp(2rem, 5.18vw, 3rem) clamp(1rem, 5vw, 3.75rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        gap: 0.75rem;
    }

    #contact-1333 .cs-form .cs-title {
        /* 16px - 28px */
        margin: 0 0 clamp(1rem, 3vw, 1.75rem) 0;
    }

    #contact-1333 .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }

    #contact-1333 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #fff;
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }

    #contact-1333 .cs-input::placeholder {
        color: #767676;
        opacity: 0.6;
    }

    #contact-1333 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        /* 16px - 28px */
        margin: 0 0 clamp(1rem, 3vw, 1.75rem) 0;
        font-family: inherit;
    }

    #contact-1333 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: white;
        border: none;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        overflow: hidden;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }

    #contact-1333 .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;
    }

    #contact-1333 .cs-button-solid:hover {
        color: #fff;
    }

    #contact-1333 .cs-button-solid:hover:before {
        width: 100%;
    }

    #contact-1333 .cs-submit {
        width: 100%;
        min-width: 17.6875rem;
        border-radius: .25rem;
    }

    #contact-1333 .cs-submit:hover {
        cursor: pointer;
    }

    #contact-1333 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #contact-1333 .cs-faq-item {
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
        transition: border-bottom 0.3s;
    }

    #contact-1333 .cs-faq-item.active {
        border-color: var(--primary);
    }

    #contact-1333 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }

    #contact-1333 .cs-faq-item.active .cs-button:before {
        transform: rotate(180deg);
    }

    #contact-1333 .cs-faq-item.active .cs-button:after {
        opacity: 0;
        transform: rotate(360deg);
    }

    #contact-1333 .cs-faq-item.active .cs-item-p {
        height: auto;
        /* 20px - 24px bottom */
        /* 16px - 24px left & right */
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem) 0;
        opacity: 1;
    }

    #contact-1333 .cs-button {
        font-size: 1rem;
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        /* 16px - 24px */
        padding: clamp(1rem, 2vw, 1.5rem);
        padding-left: 0;
        border: none;
        background: transparent;
        color: var(--headerColor);
        display: block;
        width: 100%;
        position: relative;
        transition: background-color 0.3s,
        color 0.3s;
    }

    #contact-1333 .cs-button:hover {
        cursor: pointer;
    }

    #contact-1333 .cs-button:before {
        /* plus sign */
        content: "";
        width: 0.75rem;
        height: 0.125rem;
        background: var(--headerColor);
        opacity: 1;
        position: absolute;
        display: block;
        top: 50%;
        right: 0.25rem;
        transition: transform 0.3s;
    }

    #contact-1333 .cs-button:after {
        /* plus sign */
        content: "";
        width: 0.75rem;
        height: 0.125rem;
        background: var(--headerColor);
        opacity: 1;
        position: absolute;
        display: block;
        top: 50%;
        right: 0.25rem;
        transform: rotate(90deg);
        transform-origin: center;
        transition: opacity 0.5s,
        transform 0.3s;
    }

    #contact-1333 .cs-button-text {
        width: 80%;
        display: block;
    }

    #contact-1333 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 90%;
        height: 0;
        margin: 0;
        /* 16px - 24px */
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        opacity: 0;
        color: var(--bodyTextColor);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        transition: opacity 0.3s,
        padding-bottom 0.3s;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1333 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }

    #contact-1333 .cs-form {
        width: 45vw;
    }

    #contact-1333 .cs-submit {
        width: auto;
    }
}

