/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1184 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
        position: relative;
        z-index: 1;
    }
    #contact-1184 .cs-container {
        width: 100%;
        /* changes to 100% at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        /* 48px - 80px */
        gap: clamp(3rem, 6vw, 5rem);
    }
    #contact-1184 .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;
    }

    #contact-1184 .cs-title {
        margin: 0 0 2rem 0;
    }
    #contact-1184 .cs-form {
        width: 100%;
        /* 24px - 48px top and bottom */
        /* 24px - 32px left and right */
        padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-1184 .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-1184 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #f7f7f7;
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #contact-1184 .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contact-1184 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-1184 .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;
        border: none;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }
    #contact-1184 .cs-button-solid: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;
    }
    #contact-1184 .cs-button-solid:hover {
        color: #fff;
    }
    #contact-1184 .cs-button-solid:hover:before {
        width: 100%;
    }
    #contact-1184 .cs-submit {
        min-width: 17.6875rem;
        border-radius: 0;
    }
    #contact-1184 .cs-submit:hover {
        cursor: pointer;
    }
    #contact-1184 .cs-background {
        width: 100%;
        height: 80vw;
        max-height: 28.125rem;
        display: block;
        position: relative;
    }
    #contact-1184 .cs-background img {
        width: 100%;
        height: 90%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 48rem) {
    #contact-1184 {
        padding-left: 0;
        padding-right: 0;
    }
    #contact-1184 .cs-container {
        max-width: 100%;
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        /* 16px - 52px */
        gap: clamp(1rem, 2vw, 3.25rem);
    }
    #contact-1184 .cs-content {
        width: 45%;
        max-width: 33.875rem;
        flex: none;
    }
    #contact-1184 .cs-background {
        height: auto;
        max-height: 100%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #contact-1184 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #contact-1184 .cs-title,
    body.dark-mode #contact-1184 .cs-text,
    body.dark-mode #contact-1184 .cs-header,
    body.dark-mode #contact-1184 .cs-link {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #contact-1184 .cs-link {
        opacity: 0.8;
    }
    body.dark-mode #contact-1184 .cs-form {
        background-color: var(--medium);
    }
    body.dark-mode #contact-1184 .cs-label {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #contact-1184 .cs-input {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #contact-1184 .cs-input::placeholder {
        color: #fff;
        opacity: 0.5;
    }
}

                                /*-- -------------------------- -->
<---          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: #f7f7f7;
        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;
    }
    #pricing-1384 .cs-item.cs-popular .cs-button-transparent {
        background-color: var(--bodyTextColorWhite);
      
        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(--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: 60px;
         
        /* 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%;
     
        opacity: 0.3;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -5;
       
    }
    #pricing-1384 .cs-icon {
        width: 4.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;
        color: var(--bodyTextColorWhite);
    }
    #pricing-1384 .cs-price {
        /* 31px - 49px */
        font-size: clamp(1.9375rem, 2vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: inherit;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColorWhite);
        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(--bodyTextColorWhite);
        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;
    }
    #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: var(--primary);
        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(--primary);
    }
    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: var(--primary);
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #pricing-1384 .cs-item.cs-popular .cs-button-transparent:hover {
        background-color: var;
    }
    body.dark-mode #pricing-1384 .cs-package {
        color: var(--bodyTextColorWhite);
    }
    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: #1a1a1a;
        color: #fff;
        border: none;
        transition:
            color 0.3s,
            background-color 0.3s;
    }
    body.dark-mode #pricing-1384 .cs-button-transparent:hover {
        background-color: #1a1a1a;
        
    }
}

                                