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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1785 {
        /* 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;
        position: relative;
        z-index: 1;
    }

    #hero-1785 .cs-topper {
        color: var(--highlight);
    }

    #hero-1785 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 3rem;
    }

    #hero-1785 .cs-content {
        text-align: center;
        width: 100%;
        max-width: 46.875rem;
    }

    #hero-1785 .cs-title {
        /* 49px - 84px */
        font-size: clamp(2.2rem, 6vw, 4.8rem);
        margin: 1rem auto;
    }

    #hero-1785 .cs-title,
    #hero-1785 .cs-text {
        color: var(--bodyTextColorWhite);
    }

    #hero-1785 .cs-text {
        margin: 2rem auto;
    }

    #hero-1785 .cs-button-group {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    #hero-1785 .cs-button-solid {
        font-size: 1rem;
        font-weight: 700;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-align: center;
        text-decoration: none;
        min-width: 12.5rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        padding: 0 1.5rem;
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }

    #hero-1785 .cs-button-solid:before {
        content: "";
        width: 0%;
        height: 100%;
        background: #000;
        opacity: 1;
        border-radius: 0.25rem;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }

    #hero-1785 .cs-button-solid:hover:before {
        width: 100%;
    }

    #hero-1785 .cs-graphic {
        width: 100%;
        min-width: 120rem;
        height: auto;
        object-fit: cover;
        position: absolute;
        bottom: 0;
        left: 50%;
        z-index: 0;
        transform: translateX(-50%);
    }

    #hero-1785 .cs-graphic-dark {
        display: none;
    }

    #hero-1785 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }

    #hero-1785 .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-1785 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
    #hero-1785 {
        /* this ties the padding bottom value to the size of the screen width. The wider the image gets the taller it gets, meaning it will get clsoer and closer to the content. This makes the padding bottom value grow with the screen size so it accounts for the growing height of the svg graphic getting taller */
        padding-bottom: 14vw;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1193 {
        padding: var(--sectionPadding);
        position: relative;
        overflow: hidden;
    }

    #faq-1193 .cs-container {
        width: 100%;
        /* chnages to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }

    #faq-1193 .cs-content {
        text-align: left;
        width: 100%;
        max-width: 39.375rem;
    }

    #faq-1193 .cs-title {
        /* 20 characters wide including spaces */
        max-width: 20ch;
        margin: 0 0 2rem 0;
    }

    #faq-1193 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }

    #faq-1193 .cs-faq-item {
        list-style: none;
        width: 100%;
        background-color: #f7f7f7;
        padding: 1.25rem;
        box-sizing: border-box;
        transition: border-bottom 0.3s;
    }

    #faq-1193 .cs-faq-item.active {
        border-color: var(--primaryLight);
    }

    #faq-1193 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }

    #faq-1193 .cs-faq-item.active .cs-button:before {
        background-color: var(--primaryLight);
        transform: rotate(315deg);
    }

    #faq-1193 .cs-faq-item.active .cs-button:after {
        background-color: var(--primaryLight);
        transform: rotate(-315deg);
    }

    #faq-1193 .cs-faq-item.active .cs-item-p {
        height: auto;
        padding-top: 1rem;
        opacity: 1;
    }

    #faq-1193 .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: var(--headerColor);
        display: block;
        width: 100%;
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }

    #faq-1193 .cs-button:hover {
        cursor: pointer;
    }

    #faq-1193 .cs-button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--headerColor);
        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-1193 .cs-button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--headerColor);
        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-1193 .cs-button-text {
        width: 90%;
        display: block;
    }

    #faq-1193 .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: var(--bodyTextColor);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        transition:
            opacity 0.3s,
            padding-bottom 0.3s;
    }

    #faq-1193 .cs-image-group {
        width: 100%;
        max-width: 36.625rem;
        /* Changes to auto at desktop */
        height: 32.5rem;
        /* 32px - 48px */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        position: relative;
    }

    #faq-1193 .cs-background {
        width: 100%;
        height: 100%;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }

    #faq-1193 .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: cover;
        display: block;
    }

    #faq-1193 .cs-picture {
        display: block;
        position: absolute;
        z-index: 1;
    }

    #faq-1193 .cs-picture1 {
        width: 32.625em;
        height: 38.0625em;
        top: 0;
        left: 0;
    }

    #faq-1193 .cs-picture1 img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #faq-1193 .cs-picture2 {
        width: 25em;
        height: 40.625em;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        bottom: 0;
        right: 0;
    }

    #faq-1193 .cs-picture2 img {
        width: auto;
        height: 100%;
        max-height: 40.625rem;
        object-fit: contain;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #faq-1193 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    #faq-1193 .cs-content {
        width: 55%;
    }

    #faq-1193 .cs-image-group {
        font-size: min(1.4vw, 1em);
        height: auto;
        min-height: 42.375rem;
    }

    #faq-1193 .cs-picture1 {
        height: 90%;
    }
}

/*-- -------------------------- -->
<---          Events            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #events-1652 {
        padding: var(--sectionPadding);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    #events-1652 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #events-1652 .cs-image {
        display: flex;
        position: relative;
        width: 100%;
    }

    #events-1652 .cs-picture {
        width: 100%;
        /* 328px - 752px */
        height: clamp(20.5rem, 80vw, 47rem);
        display: block;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border-radius: clamp(2rem, 4vw, 3rem);
    }

    #events-1652 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    #events-1652 .cs-events {
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        /* 40px - 48px top */
        padding: clamp(2.5rem, 4vw, 3rem) clamp(1rem, 5vw, 3rem) clamp(1rem, 5vw, 3rem);
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        border-radius: clamp(2rem, 4vw, 3rem);
        margin-top: 1rem;
    }

    #events-1652 .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #events-1652 .cs-title {
        color: var(--headerColor);
        margin: 0;
    }

    #events-1652 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 3vw, 1.25rem);
    }

    #events-1652 .cs-item {
        list-style: none;
        background-color: #EAEAEA;
        overflow: hidden;
        position: relative;
        z-index: 1;
        text-decoration: none;
        width: 100%;
        /* 16px - 32px */
        padding: clamp(1rem, 2vw, 2rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        /* 16px - 24px */
        gap: clamp(1rem, 2vw, 1.5rem);
        border-radius: clamp(2rem, 4vw, 3rem);
        border: solid 1px #CACACA;
    }

    #events-1652 .cs-date {
        font-size: 1rem;
        line-height: 1.2em;
        /* 80px - 100px */
        width: clamp(5rem, 10vw, 6.25rem);
        height: clamp(5rem, 10vw, 6.25rem);
        color: var(--primaryLight);
        background-color: #111926;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 1;
        flex: none;
        border-radius: clamp(1rem, 4vw, 2rem);
    }

    #events-1652 .cs-date strong {
        font-size: 1.9375rem;
        line-height: 1.2em;
        color: #fff;
    }

    #events-1652 .cs-info-wrapper {
        display: flex;
        flex-direction: column;
        /* 24px - 48px */
        gap: clamp(1.5rem, 3vw, 3rem);
    }

    #events-1652 .cs-info {
        display: flex;
        flex-direction: column;
    }

    #events-1652 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
    }

    #events-1652 .cs-location {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.6vw, 1rem);
        line-height: 1.5em;
        /* 8px -k 24px */
        margin: 0 0 clamp(0.5rem, 2vw, 1.5rem);
        color: var(--bodyTextColor);
    }

    #events-1652 .cs-time {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.6vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    #events-1652 .cs-icon {
        width: 1.5rem;
        height: auto;
    }

    #events-1652 .cs-button-wrapper {
        display: flex;
        position: relative;
        align-items: center;
    }

    #events-1652 .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;
        color: #fff;
        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;
    }

    #events-1652 .cs-button-solid:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width .3s;
    }

    #events-1652 .cs-button-solid:hover:before {
        width: 100%;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #events-1652 .cs-container {
        flex-direction: row;
        align-items: stretch;
    }

    #events-1652 .cs-image {
        width: 45%;
        max-width: 33.875rem;
        height: auto;
        padding-top: 7.5rem;
        /* sends it to the right in the 2nd position */
        order: 2;
    }

    #events-1652 .cs-picture {
        max-height: none;
        height: auto;
    }

    #events-1652 .cs-events {
        min-width: 26.25rem;
        /* 420px - 738px */
        width: clamp(26.25rem, 52.8vw, 46.125rem);
        /* 24px - 48px */
        padding: clamp(1.5rem, 3vw, 3rem);
        justify-content: flex-start;
    }
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #events-1652 .cs-info-wrapper {
        flex-direction: row;
    }
}