:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    background-color: #060808;
}
.white-color{
  color:white!important
}

                            


                                                     

:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 900;
    color: #7393B3;
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 65.75rem;
    margin: 0 0 1rem 0;
    color: white;
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: white;
}
                            















/*-- -------------------------- -->
<---     HEADER   -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }
    body.scroll #cs-navigation .cs-top-container {
        gap: 0;
    }
    body.scroll #cs-navigation .cs-top-social {
        height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
    }
    #cs-navigation {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #060808;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
    }
    #cs-navigation.cs-active .cs-li {
        transform: translateY(0);
        opacity: 1;
    }
    #cs-navigation .cs-top-bar {
        width: 100%;
        display: none;
        justify-content: center;
        align-items: center;
    }
    #cs-navigation .cs-top-container {
        width: 100%;
        /* 16px - 20px */
        padding: clamp(1rem, 2.5vw, 1.25rem) 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    #cs-navigation .cs-contact-group {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 2.5rem;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #cs-navigation .cs-contact-link {
        display: none;
    }
    #cs-navigation .cs-container {
        width: 100%;
        /* 16px - 20px */
        padding: clamp(1rem, 2.5vw, 1.25rem) 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #7393B3;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    #cs-navigation .cs-logo {
        width: auto;
        /* 24px - 32px */
        height: clamp(4rem, 3vw, 2rem);
        margin: 0 auto 0 0;
        padding: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1;
        z-index: 10;
    }
    #cs-navigation .cs-logo img {
        width: auto;
        height: 100%;
    }
    #cs-navigation .cs-nav {
        order: 2;
    }
    #cs-navigation .cs-toggle {
        /* 48px - 56px */
        width: clamp(5rem, 7.2vw, 3.5rem);
        height: clamp(3rem, 7.2vw, 3.5rem);
        margin: 0 0 0 auto;
        background-color: transparent;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.6s;
    }
    #cs-navigation .cs-toggle.cs-active {
        transform: rotate(180deg);
    }
    #cs-navigation .cs-active .cs-line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2 {
        top: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    }
    #cs-navigation .cs-active .cs-line3 {
        bottom: 100%;
        opacity: 0;
    }
    #cs-navigation .cs-box {
        /* 24px - 28px */
        width: clamp(2.5rem, 2.5vw, 1.75rem);
        height: 1.75rem;
        position: relative;
    }
    #cs-navigation .cs-line {
        width: 100%;
        height: 3px;
        border-radius: 2px;
        background-color: #fafbfc;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #cs-navigation .cs-line1 {
        top: 0;
        transform-origin: center;
        transition:
            transform 0.5s,
            top 0.3s,
            left 0.3s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line2 {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition:
            top 0.3s,
            left 0.3s,
            transform 0.5s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line3 {
        bottom: 0;
        transition:
            bottom 0.3s,
            opacity 0.3s;
    }
    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: 100vh;
        padding-bottom: 3rem;
        opacity: 0;
        background-color: #7393B3;
        box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        transform: scaleY(0);
        transform-origin: top;
        transition:
            transform 0.4s,
            opacity 0.3s;
    }
    #cs-navigation .cs-ul {
        margin: 0;
        padding: 3rem 0 0 0;
        width: 100%;
        height: auto;
        max-height: 65vh;
        overflow: scroll;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    #cs-navigation .cs-li {
        list-style: none;
        margin-right: 0;
        /* transition from these values */
        transform: translateY(-4.375rem);
        opacity: 0;
        transition:
            transform 0.6s,
            opacity 0.9s;
    }
    #cs-navigation .cs-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #cs-navigation .cs-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #cs-navigation .cs-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #cs-navigation .cs-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #cs-navigation .cs-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #cs-navigation .cs-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #cs-navigation .cs-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #cs-navigation .cs-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #cs-navigation .cs-li-link {
        /* 16px - 24px */
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        line-height: 1.2em;
        text-decoration: none;
        margin: 0;
        color:white;
        display: inline-block;
        position: relative;
    }
    #cs-navigation .cs-li-link:before {
        /* active state underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: none;
        bottom: -0.125rem;
        left: 0;
    }
    #cs-navigation .cs-li-link.cs-active:before {
        display: block;
    }
    #cs-navigation .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #1a1a1a;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }
    #cs-navigation .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;
    }
    #cs-navigation .cs-button-solid:hover {
        color: #fff;
    }
    #cs-navigation .cs-button-solid:hover:before {
        width: 100%;
    }
    #cs-navigation .cs-button-solid {
        margin: 0;
        display: none;
    }
    #cs-navigation .cs-call {
        text-decoration: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        position: relative;
    }
    #cs-navigation .cs-call:before {
        /* light green circle that animates on hover */
        content: "";
        width: 3rem;
        height: 3rem;
        background: #eff1f0;
        border-radius: 1.5rem;
        opacity: 1;
        position: absolute;
        display: block;
        top: 50%;
        left: 0;
        z-index: -1;
        transform: translateY(-50%);
        transition:
            width 0.3s,
            height 0.3s,
            border-radius 0.3s;
    }
    #cs-navigation .cs-call .cs-wrapper {
        width: 3.5rem;
        height: 3.5rem;
      
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #cs-navigation .cs-call .cs-icon {
        width: 3.25rem;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }
    #cs-navigation .cs-call .cs-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #cs-navigation .cs-call .cs-header {
        font-size: 0.875rem;
        line-height: 1.2em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #cs-navigation .cs-call .cs-link-content {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-navigation .cs-button-solid {
        display: block;
    }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    #cs-navigation .cs-li {
        text-align: center;
        width: 100%;
        display: block;
    }
    #cs-navigation .cs-dropdown {
        position: relative;
        color: var(--bodyTextColorWhite);
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
        height: auto;
        opacity: 1;
        visibility: visible;
        margin: 0.75rem 0 0 0;
        padding: 0.75rem 0;
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
        opacity: 1;
        color: var(--headerColor);
    }
    #cs-navigation .cs-dropdown .cs-li-link {
        position: relative;
        transition: opacity 0.3s;
    }
    #cs-navigation .cs-drop-icon {
        width: 0.9375rem;
        height: auto;
        position: absolute;
        top: 50%;
        right: -1.25rem;
        transform: translateY(-50%);
    }
    #cs-navigation .cs-drop-ul {
        width: 100%;
        height: 0;
        margin: 0;
        padding: 0;
        background-color: var(--primary);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        transition:
            padding 0.3s,
            margin 0.3s,
            height 0.3s,
            opacity 0.3s,
            visibility 0.3s;
    }
    #cs-navigation .cs-drop-li {
        list-style: none;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2vw, 1.25rem);
        color: #fff;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation .cs-dropdown {
        position: relative;
    }
    #cs-navigation .cs-dropdown:hover {
        cursor: pointer;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-ul {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-li {
        opacity: 1;
        transform: translateY(0);
    }
    #cs-navigation .cs-drop-icon {
        width: 0.9375rem;
        height: auto;
        display: inline-block;
    }
    #cs-navigation .cs-drop-ul {
        min-width: 12.5rem;
        margin: 0;
        padding: 0;
        background-color: #fff;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
        border-bottom: 5px solid var(--primary);
        /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
        position: absolute;
        top: 100%;
        z-index: -100;
        transform: scaleY(0);
        transform-origin: top;
        transition:
            transform 0.3s,
            visibility 0.3s,
            opacity 0.3s;
    }
    #cs-navigation .cs-drop-li {
        list-style: none;
        font-size: 1rem;
        text-decoration: none;
        opacity: 0;
        width: 100%;
        height: auto;
        display: block;
        transform: translateY(-0.625rem);
        transition:
            opacity 0.6s,
            transform 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(10) {
        transition-delay: 0.5s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(11) {
        transition-delay: 0.55s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(12) {
        transition-delay: 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(13) {
        transition-delay: 0.65s;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
        font-size: 1rem;
        white-space: nowrap;
        line-height: 1.5em;
        text-transform: capitalize;
        text-decoration: none;
        width: 100%;
        padding: 0.75rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        color: var(--bodyTextColor);
        display: block;
        transition:
            color 0.3s,
            background-color 0.3s;
    }
    #cs-navigation .cs-li-link.cs-drop-link:hover {
        color: var(--primary);
        background-color: #f7f7f7;
    }
    #cs-navigation .cs-li-link.cs-drop-link:before {
        display: none;
    }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation {
        width: 100%;
        padding: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #060808;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
    }
    #cs-navigation .cs-top-bar {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #cs-navigation .cs-top-container {
        width: 100%;
        max-width: 80rem;
        padding: 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    #cs-navigation .cs-contact-group {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
    }
    #cs-navigation .cs-contact-link {
        text-decoration: none;
        padding-right: 1.875rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        position: relative;
        perspective: 200px;
        transform-style: preserve-3d;
    }
    #cs-navigation .cs-contact-link:nth-of-type(2) {
        display: none;
    }
    #cs-navigation .cs-contact-link:hover .cs-wrapper {
        transform: rotateY(180deg);
    }
    #cs-navigation .cs-wrapper {
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        position: relative;
        z-index: 1;
        transition: transform 0.6s;
    }
    #cs-navigation .cs-wrapper:before {
        /* backgorund color in pseudo so we can use the primary color variable and use opacity */
        content: "";
        width: 100%;
        height: 100%;
   
        opacity: 0.1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
    }
    #cs-navigation .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }
    #cs-navigation .cs-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #cs-navigation .cs-header {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: white;
        display: block;
    }
    #cs-navigation .cs-link-content {
        font-size: 0.875rem;
        line-height: 1.2em;
        font-weight: 400;
        margin: 0;
        color: white;
        display: block;
    }
    #cs-navigation .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: black;
        min-width: 9.375rem;
        padding: 0 3rem;
        background-color:white;
        border-radius: 20px;
        border: 2px solid white;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: ease-in-out 0.3s;
    }
    #cs-navigation .cs-button-solid:hover{
        color: #fff;
        border: 2px solid white;
        background-color: transparent;
    }


    #cs-navigation .cs-bottom-bar {
        width: 100%;
        background-color: #7393B3;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #cs-navigation .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        padding: 0 1rem;
        /* prevents padding from affectin gheight */
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        position: relative;
    }
    #cs-navigation .cs-toggle {
        display: none;
    }
    #cs-navigation .cs-logo {
        width: 18.4%;
        max-width: 12.3125rem;
        height: 3.75rem;
        /* margin-right auto pushes everything away from it to the right */
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
        object-fit: contain;
    }
    #cs-navigation .cs-ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 2.25rem;
    }
    #cs-navigation .cs-li {
        list-style: none;
        padding: 2.25rem 0;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #cs-navigation .cs-li-link {
        font-size: 1rem;
        text-transform: uppercase;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
        position: relative;
        transition: ease-in 0.6s;
    }
    #cs-navigation .cs-li-link:hover {
        color: white;
        font-weight:700;
    }
    #cs-navigation .cs-li-link.cs-active {
        font-weight: 700;
        color: white;
    }
    #cs-navigation .cs-call {
        text-decoration: none;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        position: relative;
        perspective: 200px;
        transform-style: preserve-3d;
    }
    #cs-navigation .cs-call:hover:hover .cs-wrapper {
        transform: rotateY(180deg);
    }
    #cs-navigation .cs-call .cs-wrapper {
        width: 3.5rem;
        height: 3.5rem;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.6s;
    }
    #cs-navigation .cs-call .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }
    #cs-navigation .cs-call .cs-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #cs-navigation .cs-call .cs-header {
        font-size: 0.875rem;
        line-height: 1.2em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #cs-navigation .cs-call .cs-link-content {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 75rem) {
    #cs-navigation .cs-contact-link:nth-of-type(2) {
        display: flex;
    }
}
/* Larger Desktop - 1200px */
@media only screen and (min-width: 100rem) {
    #cs-navigation .cs-donate {
        display: flex;
        margin-left: auto;
    }
    #cs-navigation .cs-nav-button {
        margin: 0;
    }
}

        













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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1858 {
      /* 200px - 300px - leaving extra space for the navigation */
      padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem;
      /* prevents the topper line from causing an overflow */
      overflow: hidden;
      background-color: #060808;
      position: relative;
      z-index: 1;
      
    }
    #hero-1858 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      /* 120px - 200px */
      gap: clamp(4.5rem, 15vw, 12.5rem);
    }
    #hero-1858 .cs-content {
      text-align: center;
      width: 100%;
      max-width: 65.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #hero-1858 .cs-title {
      /* 49px - 84px */
     font-size: clamp(2.0625rem, 6vw, 5.25rem);
    }
    #hero-1858 .cs-title,
    #hero-1858 .cs-text {
      color: var(--bodyTextColorWhite);
      font-weight: 700;
    }
    #hero-1858 .cs-text {
      margin-bottom: 2rem;
              font-weight: 500;
    }
   
    #hero-1858 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: black;
        min-width: 9.375rem;
        padding: 0.25rem 3rem;
        background-color:white;
        border-radius: 20px;
        border: 2px solid white;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: ease-in-out 0.3s;
    }
    #hero-1858 .cs-button-solid:hover{
        color: #fff;
        border: 2px solid white;
        background-color: transparent;
    }









    #hero-1858 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex
;
        justify-content: center;
    }
    #hero-1858 .cs-item {
      text-align: left;
      list-style: none;
      width: 100%;
      margin: 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      /* 24px - 40px */
      padding: clamp(1.5rem, 3vw, 2.5rem);
      background-color: #7393B3;
      box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      grid-column: span 12;
      grid-row: span 1;
      gap: 1.25rem;
      position: relative;
      z-index: 1;
      max-width:800px;
    }
    #hero-1858 .cs-picture {
      width: 100%;
      height: 10rem;
      display: block;
      /* causes the image to grow to it's "auto" size, but won't shrink. the cs-info fills the remaining space */
      flex: 1 0 auto;
    }
    #hero-1858 .cs-picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    #hero-1858 .cs-h3 {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
      font-weight: bold;
      line-height: 1.2em;
      text-align: inherit;
      /* 8px - 16px */
      margin: 0 0 clamp(0.5rem, 1.2vw, 1rem) 0;
      color: var(--bodyTextColorWhite);
    }
    #hero-1858 .cs-item-text {
      font-size: 1rem;
      line-height: 1.5em;
      margin: 0;
      padding: 0;
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
    }
 
    #hero-1858 .cs-link{
        font-size: 1rem;
        line-height: clamp(2rem, 1.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: black;
        min-width: 9.375rem;
        padding: 0.25rem 3rem;
        background-color: white;
        border-radius: 20px;
        border: 2px solid white;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: ease-in-out 0.3s;
        margin-top: 15px;
    }
    #hero-1858 .cs-link:hover{
        color: #fff;
        border: 2px solid white;
        background-color: transparent;
    }


    #hero-1858 .cs-link:hover img {
      transform: translateX(0.25rem);
    }
    #hero-1858 .cs-link img {
      transition: transform 0.3s;
    }
    #hero-1858 .cs-background {
      width: 100%;
      height: 50%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
    }
    #hero-1858 .cs-background:before {
      /* Overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
      opacity: 0.7;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #hero-1858 .cs-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  /* Large Phone/Tablet - 500px */
  @media only screen and (min-width: 31.25rem) {
    #hero-1858 .cs-item {
      flex-direction: row;
      align-items: stretch;
    }
    #hero-1858 .cs-picture {
      height: auto;
      min-height: 8.75rem;
      max-width: 8.75rem;
    }
    #hero-1858 .cs-info {
      align-self: center;
    }
    #hero-1858 .cs-background {
      height: 60%;
    }
  }
  /* Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #hero-1858 .cs-item {
      grid-column: span 6;
    }
    #hero-1858 .cs-background {
      height: 70%;
    }
  }
                


/*-- -------------------------- -->
<---   About Intro    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbsr-684 {
        padding: var(--sectionPadding);
        /* clips the zigzag graphic so it does cause overflows */
        overflow: hidden;
        padding-top: 0px;
        margin-top: -100px;

    }
    #sbsr-684 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbsr-684 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sbsr-684 .cs-text {
        margin-bottom: 1rem;
    }
    #sbsr-684 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbsr-684 .cs-button-solid {
      font-size: 1.1rem;
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 600;
      text-align: center;
      margin: 0;
      color: white;
      min-width: 9.375rem;
      padding: 0.25rem 3rem;
      background-color: #7393B3;
      border-radius: 30px;
      border: 3px solid #7393B3;
      display: inline-block;
      position: relative;
      z-index: 1;
      box-sizing: border-box;
      transition: ease-in-out 0.3s;
}
#sbsr-684 .cs-button-solid:hover{
  border: 3px solid #7393B3;
      background-color: transparent;
      color: white;
}

    #sbsr-684 .cs-image-group {
        /* everything inside the image group is in ems so the font size will scale them down.  Font size minimum is tied to view width size, and grows until it reaches 75% of the value on em */
        font-size: min(2.3vw, 0.75em);
        width: 39.5em;
        height: 51.25em;
        position: relative;
        z-index: 1;
    }
    #sbsr-684 .cs-picture {
        width: 19.125em;
        height: 22.5em;
        overflow: hidden;
        display: block;
        position: absolute;
    }
    #sbsr-684 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #sbsr-684 .cs-picture1 {
        top: 0em;
        left: 0;
    }
    #sbsr-684 .cs-picture2 {
        top: 5em;
        right: 0;
    }
    #sbsr-684 .cs-picture3 {
        bottom: 5em;
        left: 0;
    }
    #sbsr-684 .cs-picture4 {
        bottom: 0em;
        right: 0;
    }
    #sbsr-684 .cs-graphic {
        display: none;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbsr-684 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }
    #sbsr-684 .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #sbsr-684 .cs-graphic {
        width: 61.4375em;
        height: auto;
        display: block;
        position: absolute;
        bottom: 10.3125em;
        left: -2em;
        z-index: -1;
        /* flips it horizontally */
        transform: scaleX(-1);
    }
}

                                




/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #steps-2013 {
      padding: var(--sectionPadding);
      overflow: hidden;
      position: relative;
    }
    #steps-2013::before {
      /* backgorund color */
      content: "";
      width: 100%;
      height: 100%;
      background-color: #F5F5F5;
      opacity: 0.05;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #steps-2013 .cs-container {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 44rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #steps-2013 .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;
    }
    #steps-2013 .cs-text {
      max-width: 56.25rem;
    }
    #steps-2013 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      /* 16px - 20px */
      gap: clamp(1rem, 2vw, 1.25rem);
      position: relative;
    }
    #steps-2013 .cs-item {
      text-align: center;
      list-style: none;
      width: 100%;
      padding: clamp(1.5rem, 3.1vw, 2rem) clamp(1rem, 2.3vw, 2rem);
      background-color: #7393B3;
      border-radius: 0.5rem;
      border: 1px solid transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
      grid-column: span 12;
      position: relative;
      transition: border 0.3s;
    }
    #steps-2013 .cs-item:hover {
      border: 1px solid white;
    }
    #steps-2013 .cs-item:hover .cs-h3 {
      color: white;
    }
    #steps-2013 .cs-icon {
      width: 3rem;
      height: auto;
      margin-bottom: 1rem;
      display: block;
    }
    #steps-2013 .cs-h3 {
      font-size: 1.25rem;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0 0 1rem 0;
      color: white;
      transition: color 0.3s;
    }
    #steps-2013 .cs-item-text {
      font-size: 1rem;
      line-height: 1.5em;
      text-align: inherit;
      margin: 0 0 1.5rem 0;
      color: white
    }
    #steps-2013 .cs-number-wrapper {
      width: 3rem;
      height: 3rem;
      margin-top: auto;
      margin-bottom: -1.5rem;
      padding: 0.625rem;
      background-color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1;
    }
    #steps-2013 .cs-number {
      font-size: 1.25rem;
      font-weight: 700;
      color: black;
    }
    #steps-2013 .cs-picture {
      width: 100%;
      /* 140px - 180px */
      height: clamp(12.75rem, 18vw, 11.25rem);
      display: block;
      flex: none;
    }
    #steps-2013 .cs-picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0.5rem;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #steps-2013 .cs-container {
      max-width: 80rem;
    }
    #steps-2013 .cs-item {
      grid-column: span 4;
    }
  }
                                  









     /*testimonal section */

     .testimonials-bubble_list{
        grid-column-gap: 2rem;
        grid-row-gap: 16px;
        flex-direction: column;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        align-items: center;
        width: 175rem;
        padding-left: 1rem;
        padding-right: 1rem;
        display: grid;
    }
    .testimonials-bubble_item{
        background-color: #7393B3;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

        border-radius: 1rem;
        padding: 1.5rem;
    }
    .testimonials_content-top {
        grid-column-gap: 16px;
        color:white;
        grid-row-gap: 16px;
        grid-template-rows: auto;
        grid-template-columns: max-content 1fr;
        grid-auto-columns: 1fr;
        align-items: center;
        margin-bottom: .75rem;
        font-size: .875rem;
        line-height: 1.2;
        display: flex;
        flex-direction: row;
    }
    .testimonials_avatar{
        object-fit: cover;
        border-radius: 100%;
        width: 3rem;
        height: 3rem;
    }
    .text-color-deepblue{
        color:white;
    }
    
    .text-style-p22 {
      color:white;
        letter-spacing: 0;
        font-family: p22-mackinac-pro, sans-serif;
        font-weight: 400;
        line-height: 1.3;
        font-size:1.125rem;
        margin-bottom:15px;
    }
    
    
    .google-stars{
      width:100px;
    }
    
    
    
    
    /*marquee section */
    
    .test-header-section{
        display: flex;
   align-items: center;
    justify-content: center;
flex-direction: column;
    width: 100%;
    padding-top:100px;
    
    }
    
    .marquee {
      width: 100vw;
     /* Adjust to fit your content */
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      padding-top:150px;
    }
    .marquee-two {
        width: 100vw;
       /* Adjust to fit your content */
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
        flex-direction:row-reverse;
        padding-top:10px;
      }
    .marquee-content {
      display: flex;
      overflow: visible;
      grid-column-gap:0rem ;
      justify-content: flex-start;
      align-items: center;
      width: 350rem;
      margin-bottom:2rem;
      
    }
    .marquee-content-two{
        display: flex;
      overflow: visible;
      grid-column-gap:0rem ;
      justify-content: flex-start;
      align-items: center;
      width: 350rem;
      margin-bottom:2rem;
      flex-direction: row-reverse;
    }
    .testimonial-item {
      display: inline-block;
      margin-right: 20px; /* Adjust spacing between items */
    }
    
    .testimonial-item img {
      max-width: 150px; /* Adjust size */
      margin-right: 10px;
    }
    .marquee-two{
        padding-bottom:100px
       }
    @media screen and (max-width:360px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       
    }
    
    @media screen and (min-width:360.1px) and (max-width:413.9px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
     }
    
     @media screen and (min-width: 414px) and (max-width: 480px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
      .marquee-text-real{
        font-size: 2.5em;
      }
     }
    
     @media screen and (min-width: 480.1px) and (max-width: 600px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       .marquee-header{
        width: 100%;
            align-items: center;
            text-align: center;
            display: flex;
            justify-content: center;
       }
      .marquee-text-real{
        font-size: 3.4em;
            line-height: 70px;
            max-width: 630px;
      }
      .marquee-text-paragraph-real{
        max-width: 650px;
        font-size: 1.3em;
        line-height: 40px;
      }
      .marquee-text-paragraph{
        align-items: center;
        text-align: center;
        display: flex;
        justify-content: center;
      }
      .marquee-text-text-all{
        max-width: none;
      }
     }
     @media screen and (min-width: 600.1px) and (max-width: 820px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       .marquee-header{
        width: 100%;
            align-items: center;
            text-align: center;
            display: flex;
            justify-content: center;
       }
      .marquee-text-real{
        font-size: 4em;
            line-height: 70px;
            max-width: 630px;
      }
      .marquee-text-paragraph-real{
        max-width: 650px;
        font-size: 1.5em;
        line-height: 40px;
      }
      .marquee-text-paragraph{
        align-items: center;
        text-align: center;
        display: flex;
        justify-content: center;
      }
      .marquee-text-text-all{
        max-width: none;
      }
     }
     @media screen and (min-width: 820.1px) and (max-width: 1000px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       .marquee-header{
        width: 100%;
            align-items: center;
            text-align: center;
            display: flex;
            justify-content: center;
            max-width: none;
       }
      .marquee-text-real{
        font-size: 4em;
            line-height: 70px;
            max-width: 630px;
      }
      .marquee-text-paragraph-real{
        max-width: 650px;
        font-size: 1.5em;
        line-height: 40px;
      }
      .marquee-text-paragraph{
        align-items: center;
        text-align: center;
        display: flex;
        justify-content: center;
      }
      .marquee-text-text-all{
        max-width: none;
      }
       
     }
     @media screen and (min-width: 1000.1px) and (max-width: 1299.9px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       .marquee-header{
        width: 100%;
            align-items: center;
            text-align: center;
            display: flex;
            justify-content: center;
            max-width: none;
       }
      .marquee-text-real{
        font-size: 4em;
            line-height: 70px;
            max-width: 630px;
      }
      .marquee-text-paragraph-real{
        max-width: 650px;
        font-size: 1.5em;
        line-height: 40px;
      }
      .marquee-text-paragraph{
        align-items: center;
        text-align: center;
        display: flex;
        justify-content: center;
      }
      .marquee-text-text-all{
        max-width: none;
      }
       
     }
    
     @media screen and (min-width: 1300px) and (max-width: 1499.9px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       .marquee-header{
        width: 100%;
            align-items: center;
            text-align: center;
            display: flex;
            justify-content: center;
            max-width: none;
       }
      .marquee-text-real{
        font-size: 4em;
            line-height: 70px;
            max-width: 630px;
      }
      .marquee-text-paragraph-real{
        max-width: 650px;
        font-size: 1.5em;
        line-height: 40px;
      }
      .marquee-text-paragraph{
        align-items: center;
        text-align: center;
        display: flex;
        justify-content: center;
      }
      .marquee-text-text-all{
        max-width: none;
      }
       
     }
     @media screen and (min-width: 1500px){
        .marquee {
            padding-top: 30px;
        }
       .section-all-of-marquee-text{
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
       }
       .marquee-header{
        width: 100%;
            align-items: center;
            text-align: center;
            display: flex;
            justify-content: center;
            max-width: none;
       }
      .marquee-text-real{
        font-size: 4em;
            line-height: 70px;
            max-width: 630px;
      }
      .marquee-text-paragraph-real{
        max-width: 650px;
        font-size: 1.5em;
        line-height: 40px;
      }
      .marquee-text-paragraph{
        align-items: center;
        text-align: center;
        display: flex;
        justify-content: center;
      }
      .marquee-text-text-all{
        max-width: none;
      }
     }
    
    




     .color-profile-letter{
      padding: 10px; /* Adjust as needed for spacing */
    width: 40px; /* Set width */
    height: 40px; /* Set height equal to width */
    color: white;
    border-radius: 50%; /* Makes it a circle */
     /* Use your desired background color */
    font-size: 15px;
    display: flex; /* Aligns the text within the circle */
    justify-content: center; /* Centers text horizontally */
    align-items: center; 
     }



     .color-profile-red {
      background: red;
  }
  
  .color-profile-green {
      background: green;
  }
  
  .color-profile-yellow {
      background: red;
  }
  
  .color-profile-orange {
      background: orange;
  }
  
  .color-profile-purple {
      background: purple;
  }
  
  .color-profile-pink {
      background: pink;
  }
  
  .color-profile-brown {
      background: brown;
  }
  
  .color-profile-teal {
      background: teal;
  }
  
  .color-profile-gray {
      background: gray;
  }
  
  .color-profile-gold {
      background: green;
  }
  
  

  










  












/*blur images */


.blue-main,.main-blue{
    color:#74B6EF
  }
  .who-header-main{
    font-size: 40px;
    text-align: center;
    max-width: 1240px;
    line-height: 80px;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
  }
  .service-blur-section{
    padding-top:0px;
  }
  .service-wrapper-three{
    z-index: 3;
    width: 100%;
    height: 100%;
    text-shadow: 0 1px 30px rgba(0, 0, 0, .2);
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    position: relative;
    gap: 100px;
  }
  .service-card-bottom{
    grid-row-gap: 1.25rem;
    text-shadow: 0 1px 30px #002761;
    flex-direction: column;
    display: flex;
  }
  .service-bottom-bottom{
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  .service-header-wrap{
    color: #fff;
    text-align: left;
    letter-spacing: .25px;
    /* -webkit-text-stroke-width: .75px; */
    font-size: 25px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
  }
  .service-card-img-popup img{
    width:45px;
  }
  .head-popup{
    font-size: 55px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
  }
  .service-card-paragraph-pop{
    font-size: 16px;
    line-height: 35px;
    font-family: 'Inter';
  }
  .service-ontop-card-container{
    background-image:url(computer-img.jpg);
   background-repeat: no-repeat;
    background-size: 100%;
    color:white;
    padding:3rem;
    position: relative;
    width: 40%;
    padding-bottom: 36px;
    max-height: 80vw;
    
  }
  .web-desgin-service{
    background-image: url(../photos/haircuts.webp);
  }
  .copywriting-service{
    background-image: url(../photos/line-ups.webp)
  }
  .seo-service{
    background-image: url(../photos/fades.jpeg)
  }
  .sink-service{
    background-image: url(../photos/beard-trims.webp)!important;
  }
  
  
  h4{
    margin:0px
  }
  
  h6{
    margin:0px;
  }

  .head-popup{
    margin-bottom: -15px;
  }
  .blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7393B3, #6a8ab0, #6181ad, #5878aa, #4f6fa7);
    z-index: 1;
    mix-blend-mode: multiply;
    transition: 0.4s ease-in;
  }
  .word-pop-up-wrapper{
    z-index: 5;
  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding: 2rem;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transition: 0.2s ease-in;
    text-align:center
  
  }
  .full-blue-popup{
   
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(30px);
        background-image: linear-gradient(202deg, #003566 96%, rgba(22, 22, 22, .69) 100%, rgba(170, 0, 0, .6));
        z-index: 1;
        mix-blend-mode: multiply;
        opacity: 0;
        transition: 0.2s ease-in;
    
  }
  .service-img-icon{
   height: 20px;
  }
  .service-icon-main{
    width:30px
  }
  .word-pop-up-wrapper{
    opacity: 0;
  }
  .service-blur-wrapper{
    z-index: 3;
    width: 100%;
    height: auto;
    text-shadow: 0 1px 30px rgba(0, 0, 0, .2);
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    position: relative;
  
  }
  
  
  .gutter-icon-service{
    width: 50px!important;;
  }
  
  @media screen and (max-width:360px) {
    .service-bottom-bottom{
        flex-direction: column;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:200px;
        background-size: cover;
        padding:1rem;
        gap:70px;
        display: flex;
    }
    .word-pop-up-wrapper{
        grid-row-gap: 1rem;
    }
    .head-popup{
        font-size: 35px;
    }
    .service-card-paragraph-pop{
        line-height: 24px;
    }
  }
  
  
  @media screen and (min-width:360.1px) and (max-width:413.9px){
    .service-bottom-bottom{
        flex-direction: column;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:220px;
        background-size: cover;
        padding:1rem;
        gap:70px;
        display: flex;
    }
    .service-icon-main{
        width:45px;
    }
    .service-card-bottom {
        grid-row-gap: 3rem;
    }
    .word-pop-up-wrapper{
        grid-row-gap: 1rem;
    }
    .head-popup{
        font-size: 50px;
    }
    .service-header-wrap{
        font-size: 35px;
    }
    .service-card-paragraph-pop{
        line-height: 35px;
    }
   
  }
  
  
  @media screen and (min-width:414px) and (max-width:480px) {
    .service-bottom-bottom{
        flex-direction: column;
    }
    .service-ontop-card-container{
        width:100%;
        display: flex;
        min-height: 275px;
        background-size: cover;
        padding:1rem;
        gap:70px;
    }
    .service-icon-main{
        width:45px;
    }
    .service-card-bottom {
        grid-row-gap: 3rem;
    }
    .word-pop-up-wrapper{
        grid-row-gap: 1rem;
    }
    .head-popup{
        font-size: 50px;
    }
    .service-header-wrap{
        font-size: 35px;
    }
    .service-card-paragraph-pop{
        line-height: 35px;
    }
  }
  
  
  @media (min-width:480.1px) and (max-width:820px){
    .service-bottom-bottom{
        flex-direction: column;
        align-items: center;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:300px;
        padding:1rem;
        max-width: 550px;
        gap:70px;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:300px;
        padding:1rem;
        gap:70px;
    }
    .service-blur-wrapper{
        gap: 130px;
    }
    .service-card-bottom{
        grid-row-gap: 3rem;
    }
    .service-icon-main{
        width: 50px;
    }
    .service-header-wrap{
        font-size: 35px
    }
    .service-card-paragraph-pop{
        font-size: 18px;
    }
  }
  
  @media screen and (min-width:820.1px) and (max-width:1100px){
    .service-bottom-bottom{
        flex-direction: row;
        align-items: center;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:350px;
       
        padding-left: 30px;
        padding-bottom: 25px;
        background-size: cover;
        max-width: 550px;
        gap:100px;
        display: flex;
    }
   
    .service-icon-main{
        width: 30px;
    }
    .service-header-wrap{
        font-size: 25px;
    }
   
    .service-card-paragraph-pop{
        line-height: 28px;
    }
    .word-pop-up-wrapper{
        grid-row-gap: 1rem;
    }
    .head-popup{
        font-size: 45px;
    }
  }
  
  @media screen and (min-width:1100.1px) and (max-width:1300px){
    .service-bottom-bottom{
        flex-direction: row;
        align-items: center;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:400px;
        padding:3rem;
      
        padding-left: 30px;
        padding-bottom: 25px;
        background-size: cover;
        max-width: 550px;
        gap:100px;
        display: flex;
    }
    
    .service-icon-main{
        width: 34px;
    }
    .service-header-wrap{
        font-size: 32px;
    }
   
  
    .service-card-paragraph-pop{
        line-height: 30px;
    }
  
  }
    @media screen and (min-width:1300.1px) and (max-width:1500px){
        .service-bottom-bottom{
            flex-direction: row;
            align-items: center;
        }
        .service-ontop-card-container{
            width:100%;
            min-height:500px;
            padding:3rem;
          
            padding-bottom: 20px;
            background-size: cover;
            max-width: 550px;
            padding-left: 30px;
            display: flex;
        }
        .service-blur-wrapper{
            gap: 120px;
        }
        .service-icon-main{
            width: 36px;
        }
        .service-header-wrap{
            font-size: 34px;
        }
        .service-card-bottom{
            grid-row-gap: 2rem;
        }
    }
  
  @media screen and (min-width:1500px){
    .service-bottom-bottom{
        flex-direction: row;
        align-items: center;
    }
    .service-ontop-card-container{
        width:100%;
        min-height:520px;
        padding:3rem;
       
        padding-bottom: 20px;
        background-size: cover;
        max-width: 550px;
        padding-left: 30px;
        gap:110px;
        display: flex;
    }
    
    .service-icon-main{
        width: 36px;
    }
    .service-header-wrap{
        font-size: 34px;
    }
    .service-card-bottom{
        grid-row-gap: 2rem;
    }
    }
  
  
  
  
  
  
    /*service section re-do */
    @media screen and (max-width: 413.9px) {
        .wrapper-all-mission {
            max-width: none!important;
        }
        .header-and-mission-paragrap {
            margin-bottom: 70px;
            max-width: 100% !important;
            width: 100% !important;
        }
        .top-one-wrapper {
            flex-direction: column!important;
        }
        .service-button {
            font-size: 22px;
            padding: 22px 40px;
            font-weight: 600;
        }
    }
    @media screen and (min-width: 414px) and (max-width: 480px) {
        .wrapper-all-mission {
            max-width: none!important;
        }
        .header-and-mission-paragrap {
            margin-bottom: 70px;
            max-width: 100% !important;
            width: 100% !important;
        }
        .top-one-wrapper {
            flex-direction: column!important;
        }
        .service-button {
            font-size: 22px;
            padding: 22px 40px;
            font-weight: 600;
        }
    }
    @media screen and (min-width: 480.1px) and (max-width: 820px) {
        .wrapper-all-mission {
            max-width: none!important;
        }
        .header-and-mission-paragrap {
            margin-bottom: 70px;
            max-width: 100% !important;
            width: 100% !important;
        }
        .top-one-wrapper {
            flex-direction: column!important;
        }
        .service-button {
            font-size: 22px;
            padding: 22px 45px;
            font-weight: 600;
        }
    }
    @media screen and (min-width: 820.1px) and (max-width: 1100px) {
        .top-one-wrapper{
            row-gap:70px;
        }
        .wrapper-all-mission {
            max-width: none!important;
        }
        .header-and-mission-paragrap {
            max-width: 100% !important;
            width: 100% !important;
            margin-bottom:0px;
        }
    }
    @media screen and (min-width: 1100.1px) and (max-width: 1300px) {
        .top-one-wrapper{
            row-gap:80px;
            flex-direction: column!important;
        }
        .header-and-mission-paragrap {
            max-width: 100% !important;
            width: 100% !important;
        }
    }
    @media screen and (min-width: 1300.1px) and (max-width: 1500px) {
        .top-one-wrapper{
            row-gap:80px;
            flex-direction: column!important;
        }
        .header-and-mission-paragrap {
            
            max-width: 100% !important;
            width: 100% !important;
        }
    }
    @media screen and (min-width: 1500.1px) {
        .header-and-mission-paragrap {
            max-width: 100%!important;
            width: 100%!important;
        }
        .top-one-wrapper{
            row-gap:80px;
            flex-direction: column!important;
  
        }
    }
  
     /*service section re-do two*/
  
     @media screen and (max-width:360px){
       .junk-service{
        padding-top: 80px;
    padding-bottom: 80px;
       }
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
        }
        .service-header-junk-wrap{
            color: black;
          margin-bottom: 20px;
        }
        .service-paragraph{
          width: 100%;
      display: flex;
      justify-content: center;
        }
        .service-paragraph-real{
          color: #4e4b66;
      max-width: 750px;
        }
        
        .wrap-for-services-popup{
            display: flex;
    flex-direction: column;
    row-gap: 15px;
    
    width: 100%;
        }
        .service-wrap-real{
          
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 16px;
    line-height: 30px;
        }
        .service-top-number{
            font-size: 1.5em;
        }
     }
  
     @media screen and (min-width:360.1px) and (max-width:413.9px){
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 80px;
    padding-bottom: 80px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .wrap-for-services-popup{
            display: flex;
    flex-direction: column;
    row-gap: 15px;
    
    width: 100%;
        }
        .service-wrap-real{
       
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 16px;
    line-height: 30px;
        }
        .service-top-number{
            font-size: 1.5em;
        }
     }
  
     @media screen and (min-width: 414px) and (max-width: 480px){
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 80px;
    padding-bottom: 100px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .wrap-for-services-popup{
            display: flex;
    flex-direction: column;
    row-gap: 15px;
    
    width: 100%;
        }
        .service-wrap-real{
         
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 16px;
    line-height: 30px;
        }
        .service-top-number{
            font-size: 1.5em;
        }
        .service-header-wrap {
            font-size: 2.1em;
        }
     }
  
     @media screen and (min-width: 480.1px) and (max-width: 820px){
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 80px;
    padding-bottom: 100px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
    max-width: 550px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .wrap-for-services-popup{
            display: flex;
    flex-direction: column;
    row-gap: 15px;
   
    width: 100%;
        }
        .service-wrap-real{
        
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 1.2em;
    line-height: 30px;
        }
        .service-header-wrap {
            font-size: 3em;
        }
        .service-top-number{
            font-size: 1.5em;
        }
     }
  
     @media screen and (min-width: 820.1px) and (max-width: 1000px){
       
        .top-one-wrapper {
            width: 100%;
        }
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 100px;
    padding-bottom: 100px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
    max-width: 550px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .service-bottom-bottom {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .wrap-for-services-popup{
            display: flex;
            flex-direction: row;
            gap: 20px;
            max-width: 880px;
            width: 100%;
        }
        .service-wrap-real{
        
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 1.2em;
    line-height: 30px;
        }
        .service-header-wrap {
            font-size: 2.3em;
        }
        .service-top-number{
            font-size: 1.5em;
        }
        .junk-serive-mover{
            margin-top: 60px;
            align-items: center;
            justify-content: center;
        }
     }
     @media screen and (min-width: 1000.1px) and (max-width: 1150px){
        .top-one-wrapper {
            width: 100%;
        }
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 120px;
    padding-bottom: 120px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    max-width: 750px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .service-bottom-bottom {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        .wrap-for-services-popup{
            display: flex;
            flex-direction: column;
            gap: 20px;
         
            width: 100%;
        }
        .service-wrap-real{
        
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 1.2em;
    line-height: 30px;
        }
        .service-header-wrap {
            font-size: 1.8em;
        }
        .service-top-number{
            font-size: 1.5em;
        }
        .junk-service-btn-small-mover{
            max-width: 350px;
        }
        .junk-serive-mover{
            margin-top: 60px;
            align-items: center;
            justify-content: center;
        }
       
     }
     @media screen and (min-width: 1150.1px) and (max-width: 1299.9px){
        .top-one-wrapper {
            width: 100%;
        }
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 120px;
    padding-bottom: 120px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    max-width: 950px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .service-bottom-bottom {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        .wrap-for-services-popup{
            display: flex;
            flex-direction: column;
            gap: 20px;
         
            width: 100%;
        }
        .service-wrap-real{
        
    font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 1.2em;
    line-height: 30px;
        }
        .service-header-wrap {
            font-size: 1.6em;
        }
        .service-top-number{
            font-size: 1.5em;
        }
        .junk-service-btn-small-mover{
            max-width: 350px;
        }
        .junk-serive-mover{
            margin-top: 60px;
            align-items: center;
            justify-content: center;
        }
       
     }
     @media screen and (min-width: 1300px) and (max-width: 1499.9px){
        .top-one-wrapper {
            width: 100%;
        }
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 140px;
    padding-bottom: 140px;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    max-width: 950px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .service-bottom-bottom {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        .wrap-for-services-popup{
            display: flex;
            flex-direction: column;
            gap: 20px;
         
            width: 100%;
        }
        .service-wrap-real{
            font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
         
            
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 1.2em;
    line-height: 30px;
        }
        .service-header-wrap {
            font-size: 2.4em;
        }
        .service-top-number{
            font-size: 1.5em;
        }
        .junk-serive-mover{
            margin-top: 60px;
            align-items: center;
    justify-content: center;
        }
       
     }
     @media screen and (min-width: 1500px){
        .top-one-wrapper {
            width: 100%;
        }
        .wrapper-all-mission {
            max-width: none !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .junk-service{
            padding-top: 140px;
            padding-bottom: 140px;
    max-width: 1700px;
        margin-left: auto;
        margin-right: auto;
        }
        .container-service{
            padding-left: 15px;
    padding-right: 15px;
        }
        .service-top-text-all{
            display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
    max-width: 1200px;
        }
        .service-header-junk-wrap{
          color: black;
        margin-bottom: 20px;
      }
      .service-paragraph{
        width: 100%;
    display: flex;
    justify-content: center;
      }
      .service-paragraph-real{
        color: #4e4b66;
    max-width: 750px;
      }
        .service-bottom-bottom {
            display: flex;
            flex-direction: row;
            gap: 15px;
        }
        .wrap-for-services-popup{
            display: flex;
            flex-direction: column;
            gap: 20px;
         
            width: 100%;
        }
        .service-wrap-real{
        
            font-size: clamp(1.9375rem, 3.9vw, 3.0625rem);;
           
        }
        .service-paragraph-real{
    font-weight: 600;
    margin: 0px;
    font-size: 1.2em;
    line-height: 30px;
        }
        .service-header-wrap {
            font-size: 2.9em;
        }
        .service-top-number{
            font-size: 1.5em;
        }
        .junk-serive-mover{
            margin-top: 100px;
        }
     }
  
  
  




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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-453 {
    /* centers the inline-block button */
    text-align: center;
    padding: var(--sectionPadding);
  }
  #gallery-453 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #gallery-453 .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;
  }
  #gallery-453 .cs-button-group {
    width: 100%;
    max-width: 37.5rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 1.5rem;
  }
  #gallery-453 .cs-button {
    font-size: 1rem;
    line-height: 1.5em;
    padding: 0 0 0 1rem;
    color: white;
    background-color: transparent;
    border: none;
    position: relative;
    transition: color 0.3s;
  }
  #gallery-453 .cs-button:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #7393B3;
    /* starting value, this will animate to 1 when the button is hovered, and when the active class is on it */
    opacity: 0;
    /* prevents mouse from interacting with it */
    pointer-events: none;
    position: absolute;
    display: block;
    top: 50%;
    /* start -20px left of the button */
    left: -1.25rem;
    transform: translateY(-50%);
    /* transition to and from the active class styles on hover*/
    transition: opacity 0.3s,
                    left 0.3s;
  }
  #gallery-453 .cs-button:hover {
    color: white;
    cursor: pointer;
  }
  #gallery-453 .cs-button:hover:before {
    left: 0;
    opacity: 1;
  }
  #gallery-453 .cs-button.cs-active {
    /* when the button is active, add these styles to the button and its pseudo */
    font-weight: 700;
    color: #7393b3;
  }
  #gallery-453 .cs-button.cs-active:before {
    /* animate to these values when the cs-active class is added to the button and on hover */
    left: 0;
    opacity: 1;
  }
  #gallery-453 .cs-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #gallery-453 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 3vw, 4rem);
    opacity: 1;
    visibility: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    left: 0;
    /* 16px - 20px */
    gap: clamp(1rem, 1vw, 1.25rem);
    transition: transform 0.7s,
                opacity 0.3s,
                visibility 0.5s,
                top 0.3s,
                left 0.3s;
    /* makes the transform scaling origin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: left top;
  }
  #gallery-453 .cs-gallery.cs-hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the bottom:0 value, the gallery won't go past that posiiton when it animates */
    bottom: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0) scaleX(0);
  }
  #gallery-453 .cs-gallery.cs-hidden .cs-image {
    /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
    transform: translateY(2.1875rem);
    opacity: 0;
  }
  #gallery-453 .cs-image {
    border-radius: 0.25rem;
    width: clamp(47%, 42.5vw, 48.5%);
    /* changes at tablet */
    aspect-ratio: 0.72985782;
    /* clips the image corners */
    overflow: hidden;
    display: block;
    position: relative;
    /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate from their hidden styles */
    transform: translateY(0rem);
    opacity: 1;
    transition: opacity 0.6s,
                transform 0.6s;
  }
  #gallery-453 .cs-image:nth-of-type(1) {
    /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
    transition-delay: 0.15s;
  }
  #gallery-453 .cs-image:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  #gallery-453 .cs-image:nth-of-type(3) {
    transition-delay: 0.45s;
  }
  #gallery-453 .cs-image:nth-of-type(4) {
    transition-delay: 0.6s;
  }
  #gallery-453 .cs-image:nth-of-type(5) {
    transition-delay: 0.75s;
  }
  #gallery-453 .cs-image:nth-of-type(6) {
    transition-delay: 0.9s;
  }
  #gallery-453 .cs-image:nth-of-type(7) {
    transition-delay: 1.05s;
  }
  #gallery-453 .cs-image:nth-of-type(8) {
    transition-delay: 1.2s;
  }
  #gallery-453 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 48rem) {
  #gallery-453 .cs-container {
    max-width: 80rem;
  }
  #gallery-453 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #gallery-453 .cs-flex {
    width: 50%;
  }
  #gallery-453 .cs-title {
    margin: 0;
  }
  #gallery-453 .cs-button-group {
    width: auto;
  }
  #gallery-453 .cs-gallery {
    justify-content: space-between;
  }
  #gallery-453 .cs-image {
    /* 171px - 305px */
    width: clamp(10.6875rem, 23.3%, 19.0625rem);
    aspect-ratio: 0.71529412;
  }
}





/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-51 {
    padding-top: 150px;
    padding-bottom: 150px;
      position: relative;
  }
  #cta-51 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-51 .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;
  }

  #cta-51 .cs-title {
      color: var(--bodyTextColorWhite);
  }
  #cta-51 .cs-text {
    color: white;
    opacity: 0.8;
    max-width: 30.625rem;
  }
  #cta-51 .cs-text:last-of-type {
      margin-bottom: 2rem;
  }
  #cta-51 .cs-button-solid {
    font-size: 1.1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        margin: 0;
        color: white;
        min-width: 9.375rem;
        padding: 0.25rem 3rem;
        background-color: #7393B3;
        border-radius: 30px;
        border: 3px solid #7393B3;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: ease-in-out 0.3s;
  }
  #cta-51 .cs-button-solid:hover{
    border: 3px solid #7393B3;
        background-color: transparent;
        color: white;
  }



  #cta-51 .cs-picture {
      height: 100%;
      width: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
  }
  #cta-51 .cs-picture:before {
      /* black color overlay */
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background: #000;
      opacity: 0.8;
      top: 0;
      left: 0;
      z-index: 1;
  }
  #cta-51 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
  }
}

                              














     /*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .mission-nav .cs-button-solid{
      font-size: 1.1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: white;
    min-width: 9.375rem;
    padding: 0.4rem 3rem;
    background-color: #7393B3;
    border-radius: 30px;
    border: 3px solid #7393B3;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: ease-in-out 0.3s;
    margin-top: 100px;
}
  
.mission-nav .cs-button-solid:hover{
  border: 3px solid #7393B3;
  background-color: transparent;
  color:white;
}
  
  
  
  
  
  
  #meet-team-1794 {
      padding: var(--sectionPadding);
      background-color: #1a1a1a;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    #meet-team-1794 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #meet-team-1794 .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;
      gap: 1.5rem;
    }
    #meet-team-1794 .cs-title {
      max-width: 20ch;
      margin: 0;
      color: var(--bodyTextColorWhite);
    }
    #meet-team-1794 .cs-text {
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
    }
  
    #meet-team-1794 .cs-button-solid {
      font-size: 1.1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        margin: 0;
        color: white;
        min-width: 9.375rem;
        padding: 0.25rem 3rem;
        background-color: #7393B3;
        border-radius: 30px;
        border: 3px solid #7393B3;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: ease-in-out 0.3s;
       
    }
    #meet-team-1794 .cs-button-solid:hover{
      border: 3px solid #7393B3;
        background-color: transparent;
        color: white;
    }


    #meet-team-1794 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: grid;
      flex-direction: column;
      grid-template-columns: repeat(9, 1fr);
      gap: 1.5rem;
      position: relative;
    }
    #meet-team-1794 .cs-item {
      list-style: none;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      grid-column: span 12;
      /* 16px - 20px */
      gap: clamp(1rem, 2vw, 1.25rem);
      position: relative;
    }
    #meet-team-1794 .cs-item:hover .cs-picture img {
      opacity: 0.4;
      transform: scale(1.2);
    }
    #meet-team-1794 .cs-item:hover .cs-link {
      opacity: 1;
      transform: translateY(0);
    }
    #meet-team-1794 .cs-item:hover .cs-link:hover {
      /* we need to add the hover styles for the cs-link inside the cs-item hover for specifcity. There's a transform none on the cs-link when we hover over the cs-item, so for the transform to work when we hover over the cs-link, we add it while the hover is active on the cs-item. This allows it to be more specific and override the transform 0 it adds to the cs-link */
      transform: scale(1.15);
      transition: transform 0.3s;
      transition-delay: 0;
    }
    #meet-team-1794 .cs-item:hover .cs-job {
      color: #7393B3;
    }
    #meet-team-1794 .cs-image-group {
      width: 100%;
      height: auto;
      margin: 0;
      position: relative;
      z-index: 1;
      aspect-ratio: 0.91691395;
      flex: 1 0 0;
    }
    #meet-team-1794 .cs-picture {
      width: 100%;
      height: 100%;
      background-color: #000;
      /* removed at tablet */
      aspect-ratio: 328/260;
      /* clips the img corners */
      /* clips img tag from overflowing it on hover */
      display: block;
      position: relative;
      overflow: hidden;
    }
    #meet-team-1794 .cs-picture img {
      width: 100%;
      height:100%;
      object-fit: cover;
      /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
      object-position: top;
      position: absolute;
      top: 0;
      left: 0;
      transition: transform 0.7s, opacity 0.3s;
    }
    #meet-team-1794 .cs-social {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 1;
    }
    #meet-team-1794 .cs-link {
      width: 2.5rem;
      height: 2.5rem;
      padding: 0.5rem;
      background-color: #F7F7F7;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transform: translateY(-1rem);
      transition: transform 0.6s, opacity 0.6s;
    }
    #meet-team-1794 .cs-link:nth-of-type(2) {
      transition-delay: 0.08s;
    }
    #meet-team-1794 .cs-link:nth-of-type(3) {
      transition-delay: 0.16s;
    }
    #meet-team-1794 .cs-icon {
      width: 1.25rem;
      height: auto;
      display: block;
    }
    #meet-team-1794 .cs-info {
      width: 100%;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      transition: background-color 0.3s;
    }
    #meet-team-1794 .cs-name {
      font-size: 1.25rem;
      text-transform: uppercase;
      font-weight: 700;
      line-height: 1.2em;
      margin: 0;
      color: var(--bodyTextColorWhite);
      display: block;
      transition: color 0.3s;
    }
    #meet-team-1794 .cs-job {
      font-size: 1rem;
      line-height: 1.2em;
      margin: 0;
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
      display: block;
      transition: color 0.3s;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #meet-team-1794 .cs-content {
      text-align: left;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
    }
    #meet-team-1794 .cs-card-group {
      /* 16px - 20px */
      column-gap: clamp(1rem, 2vw, 1.25rem);
      row-gap: 2.5rem;
    }
    #meet-team-1794 .cs-item {
      grid-column: span 4;
    }
    #meet-team-1794 .cs-picture {
      /* 400px - 440px */
      height: clamp(25rem, 50vw, 27.5rem);
      aspect-ratio: initial;
    }
  }
  /* Large Desktop - 1300px */
  @media only screen and (min-width: 64rem) {
    #meet-team-1794 .cs-item {
      grid-column: span 3;
    }
  }
                                  






















  /*-- -------------------------- -->
<---           Menu             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-menu-group-1040 {
      text-align: center;
      height: auto;
      padding: var(--sectionPadding);
 
  }
  #cs-menu-group-1040 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 34.375rem;
      margin: auto;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
      position: relative;
  }
  #cs-menu-group-1040 .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;
  }
  #cs-menu-group-1040 .cs-icon-wrapper {
      width: 100%;
      margin: 0 0 0.75rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      position: relative;
  }
  #cs-menu-group-1040 .cs-icon-wrapper:before {
      /* left line */
      content: "";
      width: 50%;
      max-width: 9.375rem;
      height: 1px;
      background: #b4b2c7;
      opacity: 0.2;
      position: relative;
      display: block;
  }
  #cs-menu-group-1040 .cs-icon-wrapper:after {
      /* right line */
      content: "";
      width: 50%;
      max-width: 9.375rem;
      height: 1px;
      background: #b4b2c7;
      opacity: 0.2;
      position: relative;
      display: block;
  }
  #cs-menu-group-1040 .cs-icon {
      width: 40%;
      /* 100px - 180px */
      max-width: clamp(6.25rem, 18vw, 11.25rem);
      height: auto;
      /* prevents flexbox from squishing it */
      flex: none;
  }
  #cs-menu-group-1040 .cs-title {
      font-size: var(--headerFontSize);
      font-weight: 900;
      line-height: 1.2em;
      text-align: inherit;
      max-width: 43.75rem;
      margin: 0 0 1rem 0;
      color: var(--bodyTextColorWhite);
      position: relative;
  }
  #cs-menu-group-1040 .cs-title {
      margin: 0 0 2rem;
  }
  #cs-menu-group-1040 .cs-hidden {
      display: none;
  }
  #cs-menu-group-1040 .cs-button-group {
      width: auto;
      max-width: 62.5rem;
      margin: 0 1rem;
      /* 16px - 28px top & bottom */
      /* 32px - 48px left & right */
      padding: clamp(1rem, 3vw, 1.75rem) clamp(2rem, 4vw, 3rem);
      border-radius: 4.375rem;
      background-color: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: inline-flex;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
      /* 24px - 36px */
      column-gap: clamp(1.5rem, 2vw, 2.25rem);
      row-gap: 0.75rem;
  }
  #cs-menu-group-1040 .cs-button {
      font-size: 1rem;
      line-height: 1.5em;
      font-weight: 400;
      margin: 0;
      padding: 0;
      color: #fafbfc;
      background: transparent;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      transition:
          color 0.3s,
          font-weight 0.3s,
          color 0.3s;
  }
  #cs-menu-group-1040 .cs-button:hover {
      color: #7393b3;
      cursor: pointer;
  }
  #cs-menu-group-1040 .cs-button:after {
      /* active state icon */
      content: "";
      position: relative;
      display: block;
      width: 0;
      /* 16px - 24px */
      height: clamp(1rem, 3vw, 1.5rem);
      background: url("../photos/long-leaf-blue-inner.svg");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition:
          width 0.3s,
          opacity 0.3s,
          margin-left 0.3s;
  }
  #cs-menu-group-1040 .cs-button.cs-active {
      color: var(--bodyTextColorWhite);
      font-weight: 700;
  }
  #cs-menu-group-1040 .cs-button.cs-active:after {
      width: clamp(1.5625rem, 3vw, 2.25rem);
      opacity: 1;
      /* 8px - 16px */
      margin-left: clamp(0.5rem, 0.5vw, 1rem);
  }
  #cs-menu-group-1040 .cs-menu {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 32px - 64px */
      gap: clamp(2rem, 6vw, 4rem);
  }
  #cs-menu-group-1040 .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;
      position: relative;
      z-index: 20;
  }
  #cs-menu-group-1040 .cs-card-group {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      column-gap: 1.25rem;
      /* 32px - 60px */
      row-gap: clamp(2rem, 6vw, 3.75rem);
  }
  #cs-menu-group-1040 .cs-item {
      list-style: none;
      width: 100%;
      max-width: 36.25rem;
      margin: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* 16px - 36px */
      gap: clamp(1rem, 3vw, 2.25rem);
  }
  #cs-menu-group-1040 .cs-picture {
      /* 76px - 160px */
      width: clamp(4.75rem, 14vw, 10rem);
      height: clamp(4.75rem, 14vw, 10rem);
      overflow: hidden;
      display: block;
      flex: none;
      position: relative;
  }
  #cs-menu-group-1040 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* makes it act like a background image */
      object-fit: cover;
  }
  #cs-menu-group-1040 .cs-h3 {
      /* 16px - 24px */
      font-size: clamp(1rem, 2vw, 1.5rem);
      line-height: 1.2em;
      font-weight: 700;
      text-align: left;
      /* 8px - 16px */
      margin: 0 0 clamp(0.5rem, 1.5vw, 1rem);
      color: var(--bodyTextColorWhite);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      gap: 0.75rem;
  }
  #cs-menu-group-1040 .cs-h3:after {
      content: "";
      width: 50%;
      height: 1px;
      background: #b4b2c7;
      opacity: 0.2;
      position: relative;
      display: block;
      order: 1;
  }
  #cs-menu-group-1040 .cs-name {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.5625rem);
      line-height: 1.2em;
      width: auto;
      max-width: 70%;
      color: var(--bodyTextColorWhite);
      flex: none;
  }
  #cs-menu-group-1040 .cs-price {
      /* 16px - 25px */
      font-size: clamp(1rem, 2vw, 1.5625rem);
      /* 28px - 46px */
      line-height: clamp(1.75rem, 4vw, 2.875rem);
      font-weight: 700;
      /* 8px - 12px */
      padding: 0 clamp(0.5rem, 1vw, 0.75rem);
      color: white;
      background-color: transparent;
      border-radius: 5rem;
      border: 2px solid #b4b2c7;
      display: flex;
      align-items: center;
      order: 3;
  }
  #cs-menu-group-1040 .cs-item-p {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 2vw, 1rem);
      line-height: 1.5em;
      text-align: left;
      margin: 0;
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
  }
  #cs-menu-group-1040 .cs-button-solid {
    font-size: 1.1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: white;
    min-width: 9.375rem;
    padding: 0.25rem 3rem;
    background-color: #7393B3;
    border-radius: 30px;
    border: 3px solid #7393B3;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: ease-in-out 0.3s;
}
#cs-menu-group-1040 .cs-button-solid:hover{
  border: 3px solid #7393B3;
  background-color: transparent;
  color: white;
}

}
/* Mobile - 359px */
@media only screen and (max-width: 22.4375rem) {
  #cs-menu-group-1040 .cs-picture {
      /* removed the picture on smaller devices so everything fits on the screen better */
      display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-menu-group-1040 .cs-container {
      max-width: 80rem;
  }
  #cs-menu-group-1040 .cs-card-group {
      flex-direction: row;
      justify-content: space-between;
      flex-wrap: wrap;
      column-gap: 1.25rem;
  }
  #cs-menu-group-1040 .cs-item {
      width: 48.5%;
  }
}

                 







/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-1466 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
  }
  #faq-1466 .cs-container {
    width: 100%;
    /* chnages to 1280px at desktop */
    max-width: 39.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 108px */
    gap: clamp(3rem, 8vw, 6.75rem);
  }
  #faq-1466 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
  }
  #faq-1466 .cs-title {
    margin: 0 0 2rem;
    /* 20 characters wide including spaces */
    max-width: 20ch;
  }
  #faq-1466 .cs-faq-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-self: center;
  }
  #faq-1466 .cs-faq-item {
    list-style: none;
    width: 100%;
    /* 20px - 24px */
    padding: clamp(1.25rem, 2vw, 1.5rem) 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
    border-bottom: 1px solid #e8e8e8;
  }
  #faq-1466 .cs-faq-item.active {
    border-color: #7393b3;
  }
  #faq-1466 .cs-faq-item.active .cs-button {
    color: #7393b3;;
  }
  #faq-1466 .cs-faq-item.active .cs-button:before {
    background-color: #7393b3;
    transform: rotate(315deg);
  }
  #faq-1466 .cs-faq-item.active .cs-button:after {
    background-color: #7393b3;
    transform: rotate(-315deg);
  }
  #faq-1466 .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
  }
  #faq-1466 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    padding: 0;
    border: none;
    background: transparent;
    color: white;
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-1466 .cs-button:hover {
    cursor: pointer;
  }
  #faq-1466 .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: #7393B3;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 0.25rem;
    transform: rotate(45deg);
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
    transition: transform 0.5s;
  }
  #faq-1466 .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color:#7393B3;
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 0.0625rem;
    transform: rotate(-45deg);
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
    transition: transform 0.5s;
  }
  #faq-1466 .cs-button-text {
    width: 90%;
    display: block;
  }
  #faq-1466 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: white;
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
  #faq-1466 .cs-picture {
    width: 100%;
    /* 300px - 498px */
    height: clamp(18.75rem, 65vw, 31.125rem);
    display: block;
    position: relative;
  }
  #faq-1466 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq-1466 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #faq-1466 .cs-content {
    width: 45vw;
    /* prevents flexbox from squsihing it */
    flex: none;
    align-self: center;
  }
  #faq-1466 .cs-picture {
    height: auto;
    min-height: 42.375rem;
    order: 1;
  }
}
                                











/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-710 {
      padding: var(--sectionPadding);
      padding-bottom: 3.125rem;
      background-color: #7393B3;
      position: relative;
      z-index: 1;
  }
  #cs-footer-710 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  #cs-footer-710 .cs-logo-wrapper {
      width: 100%;
  }
  #cs-footer-710 .cs-logo {
      width: 100%;
      max-width: 13.125rem;
      height: auto;
      margin-right: auto;
      display: flex;
        justify-content: flex-start;
  }
  #cs-footer-710 .cs-logo img {
      width: auto;
      height: 100px;
  }
  #cs-footer-710 .cs-top {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      /* 64px - 100px */
      column-gap: clamp(4rem, 9vw, 6.25rem);
      row-gap: 2rem;
  }
  #cs-footer-710 .cs-ul {
      margin: 0;
      padding: 0;
      width: auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
      flex: none;
  }
  #cs-footer-710 .cs-contact-ul {
      /* we remove the :before animated underline from the contact list and replace it with an underline.  The animated line doesn't work well on this section */
      width: 100%;
      max-width: 100%;
      gap: 0.75rem;
  }
  #cs-footer-710 .cs-contact-ul .cs-link:hover {
      text-decoration: underline;
  }
  #cs-footer-710 .cs-contact-ul .cs-link:before {
      display: none;
  }
  #cs-footer-710 .cs-li {
      list-style: none;
      margin: 0;
      display: block;
  }
  #cs-footer-710 .cs-header {
      font-size: 1rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0 0 1.5rem 0;
      color: #fff;
      display: block;
  }
  #cs-footer-710 .cs-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: #fff;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      position: relative;
  }
  #cs-footer-710 .cs-link:hover:before {
      width: 100%;
  }
  #cs-footer-710 .cs-link:before {
      /* on hover underline */
      content: "";
      width: 0%;
      height: 1px;
      background: currentColor;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
      transition: width 0.3s;
  }
  #cs-footer-710 .cs-block {
      display: block;
  }
  #cs-footer-710 .cs-icon {
      width: 1.5rem;
      height: auto;
      margin: -0.0625rem 0.75rem 0 0;
  }
  #cs-footer-710 .cs-middle {
      width: 100%;
      /* changes at tablet */
      max-width: 28.125rem;
      /* 60px - 100px */
      margin: clamp(3.75rem, 8vw, 6.25rem) 0 0 0;
      /* 24px - 40px */
      padding-bottom: clamp(1.25rem, 5vw, 2.5rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
  }
  #cs-footer-710 .cs-nav {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      column-gap: 2.5rem;
      row-gap: 0.5rem;
  }
  #cs-footer-710 .cs-nav-li {
      list-style: none;
  }
  #cs-footer-710 .cs-nav-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColorWhite);
      position: relative;
  }
  #cs-footer-710 .cs-nav-link:hover:before {
      width: 100%;
  }
  #cs-footer-710 .cs-nav-link:before {
      /* on hover underline */
      content: "";
      width: 0%;
      height: 1px;
      background: currentColor;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
      transition: width 0.3s;
  }
  #cs-footer-710 .cs-social {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
  }
  #cs-footer-710 .cs-social-li {
      list-style: none;
  }
  #cs-footer-710 .cs-social-link {
      width: 2rem;
      height: 2rem;
      background-color: transparent;
      border: 1px solid #f6e5db;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
  }
  #cs-footer-710 .cs-social-link:hover {
      background-color: #f6e5db;
  }
  #cs-footer-710 .cs-social-link:hover .cs-default {
      display: none;
  }
  #cs-footer-710 .cs-social-link:hover .cs-hover {
      display: block;
  }
  #cs-footer-710 .cs-social-icon {
      width: 0.75rem;
      height: auto;
      display: block;
  }
  #cs-footer-710 .cs-hover {
      display: none;
  }
  #cs-footer-710 .cs-bottom {
      width: 100%;
      margin: 0;
      /* 24px - 40px, matches the cs-middle padding bottom */
      padding: clamp(1.25rem, 5vw, 2.5rem) 0 0 0;
      border-top: 1px solid rgba(186, 186, 186, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
  }
  #cs-footer-710 .cs-copyright {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-align: center;
      width: 70%;
      margin: 0;
      color: var(--bodyTextColorWhite);
      display: block;
  }
  #cs-footer-710 .cs-copyright-link {
      font-size: inherit;
      line-height: inherit;
      text-decoration: none;
      margin: 0;
      color: inherit;
      display: inline-block;
  }
  #cs-footer-710 .cs-copyright-link:hover {
      text-decoration: underline;
  }
  #cs-footer-710 .cs-graphic {
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      /* makes it act like a background image */
      object-fit: cover;
      position: absolute;
      z-index: -1;
  }
}
/* inbetween - 600px */
@media only screen and (min-width: 37.5rem) {
  #cs-footer-710 .cs-top {
      justify-content: flex-end;
  }
  #cs-footer-710 .cs-ul {
      width: auto;
  }
  #cs-footer-710 .cs-contact-ul {
      width: 15rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-footer-710 .cs-top {
      flex-wrap: nowrap;
  }
  #cs-footer-710 .cs-logo-wrapper {
      width: 80%;
      margin-right: auto;
  }
  #cs-footer-710 .cs-middle {
      max-width: 100%;
  }
}
/* Small Desktop 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-710 .cs-middle {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
  }
}
                              

ul{
  list-style: none;
}


.side-fixed-icons {
    width:fit-content;
  position: fixed;
  left: -30px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.side-fixed-icons li {
  margin-bottom: 15px;
}

.side-fixed-icons div {
  
  width: 40px;
  height:40px;
  text-align: center;
  padding: 10px 0;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
    justify-content: center;
    align-items: center;
}
.sliding-icon{
  width:22px
}
.sliding-facebook{
  background:#336699;
}
.sliding-tiktok{
  background:black;

}
.sliding-youtube{
  background:#CC3333;
}
.sliding-instagram{
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

}
.side-fixed-icons div:hover {
  cursor: pointer;
}

.side-fixed-icons div a {
  position: absolute;
  width: 0;
  color: #fff;
  background: #0D79EE;
  right: calc(100% - 1px);
  top: 0;
  white-space: nowrap;
  padding: 7px;
  font-size: .835em;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  -ms-border-radius: 4px 0 0 4px;
  -o-border-radius: 4px 0 0 4px;
  transition: .4s ease-out;
  -webkit-transition: .4s ease-out;
  -moz-transition: .4s ease-out;
  -ms-transition: .4s ease-out;
  -o-transition: .4s ease-out;
  transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
      transform-origin: right;
  overflow: hidden;
  opacity: .8;
  height: 100%;
}

.side-fixed-icons div:focus {
  outline: 0;
}

.side-fixed-icons div span {
  color: #fff;
}

.side-fixed-icons .left-no-border-radius {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  -ms-border-radius: 0 4px 4px 0;
  -o-border-radius: 0 4px 4px 0;
}

.side-fixed-icons .left-no-border-radius a {
  width: auto;
  transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  opacity: 1;
}