/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #meet-team-1332 {
        padding: var(--sectionPadding);
        overflow: hidden;
    }
    #meet-team-1332 .cs-container {
        width: 100%;
        /*max-width: 90rem;*/
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #meet-team-1332 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        /*max-width: 40.625rem;*/
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #meet-team-1332 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #meet-team-1332 .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(--headerColor);
        position: relative;
    }
    #meet-team-1332 .cs-color {
        color: var(--primary);
    }
    #meet-team-1332 .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        /*max-width: 40.625rem;*/
        margin: 0;
        color: var(--bodyTextColor);
    }
    #meet-team-1332 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
        position: relative;
    }
    #meet-team-1332 .cs-item {
        list-style: none;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    #meet-team-1332 .cs-item:hover {
        cursor: pointer;
    }
    #meet-team-1332 .cs-item:hover .cs-picture:before {
        opacity: 1;
    }
    #meet-team-1332 .cs-item:hover .cs-picture img {
        transform: scale(1.1);
    }
    #meet-team-1332 .cs-item:hover .cs-name {
        color: #eda708;
    }
    #meet-team-1332 .cs-picture {
        width: 100%;
        /* 320px - 412px */
        height: clamp(20rem, 90vw, 25.75rem);
        /* clips img tag from overflowing it on hover */
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 1;
    }
    #meet-team-1332 .cs-picture:before {
        /* defualt gradient */
        content: "";
        width: 100%;
        height: 50%;
        background: -moz-linear-gradient(
            top,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.94) 65%,
            rgba(26, 26, 26, 0.94) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            top,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.94) 65%,
            rgba(26, 26, 26, 0.94) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(17, 17, 17, 0.94) 65%,
            rgba(26, 26, 26, 0.94) 100%
        );
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        transition: opacity 0.3s;
    }
    #meet-team-1332 .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;
        z-index: -1;
        transition: transform 0.7s;
    }
    #meet-team-1332 .cs-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        bottom: 1.5rem;
        left: 0;
        z-index: 10;
    }
    #meet-team-1332 .cs-name {
        /* 20px - 25px */
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: #f6e5db;
        display: block;
        transition: color 0.3s;
    }
    #meet-team-1332 .cs-job {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin-right: 0;
        color: #f7f7f7;
        display: block;
    }
}
/* In-between - 550px */
@media only screen and (min-width: 34.375rem) {
    #meet-team-1332 .cs-card-group {
        align-items: stretch;
    }
    #meet-team-1332 .cs-item {
        width: 48.3%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #meet-team-1332 .cs-item {
        width: 31.7%;
    }
}
/* Large Desktop - 1200px */
@media only screen and (min-width: 75rem) {
    #meet-team-1332 .cs-card-group {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    #meet-team-1332 .cs-item {
        width: 100%;
    }
    #meet-team-1332 .cs-item:hover .cs-picture:before {
        opacity: 1;
    }
    #meet-team-1332 .cs-item:hover .cs-info {
        opacity: 1;
        bottom: 1.5rem;
    }
    #meet-team-1332 .cs-item:hover .cs-name,
    #meet-team-1332 .cs-item:hover .cs-job {
        transform: translateY(0);
    }
    #meet-team-1332 .cs-picture:before {
        opacity: 0;
    }
    #meet-team-1332 .cs-info {
        opacity: 0;
        bottom: -3.125rem;
        transition:
            opacity 0.3s,
            bottom 0.6s;
    }
    #meet-team-1332 .cs-name,
    #meet-team-1332 .cs-job {
        transform: translateY(1rem);
        transition:
            color 0.3s,
            transform 0.3s;
    }
    #meet-team-1332 .cs-job {
        transition: transform 0.9s;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #meet-team-1332 .cs-title,
    body.dark-mode #meet-team-1332 .cs-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #meet-team-1332 .cs-text {
        opacity: 0.8;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1203 {
        /* 150px - 350px */
        padding: clamp(9rem, 25.95vw, 10rem) 1rem;
        padding-bottom: 0;
        position: relative;
        z-index: 1;
        /* prevents overflow from the arrow graphic */
        overflow: hidden;
    }
    #hero-1203:before {
        /* black bar */
        content: "";
        width: 100%;
        /* 100px - 200px */
        height: clamp(6.25rem, 29vw, 12.5rem);
        background: #1a1a1a;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
    }
    #hero-1203 .cs-container {
        width: 100%;
        /*max-width: 80rem;*/
        margin: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 48px - 64px */
        gap: clamp(3rem, 7vw, 4rem);
    }
    #hero-1203 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        /*max-width: 39.375rem;*/
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #hero-1203 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #hero-1203 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        width: 100%;
        /*max-width: 17ch;*/
        margin: 0 0 1rem;
        color: var(--headerColor);
        position: relative;
    }

    #hero-1203 .cs-text {
        font-size: 1.25rem;
        line-height: 1.5em;
        width: 100%;
        /*max-width: 43.75rem;*/
        /* 28px - 40px */
        /*margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);*/
        color: var(--bodyTextColor);
    }
    #hero-1203 .cs-button-solid {
        font-size: 1rem;
        text-align: center;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        width: 11.25rem;
        text-decoration: none;
        font-weight: 700;
        /* clips corners of the before element */
        overflow: hidden;
        margin: 0;
        color: #1a1a1a;
        padding: 0;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #hero-1203 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #hero-1203 .cs-button-solid:hover {
        color: #fff;
    }
    #hero-1203 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-1203 .cs-picture {
        width: 100%;
        /* changes to 866px at desktop */
        /*max-width: 34.0625rem;*/
        height: auto;
        display: flex;
        align-items: flex-end;
        position: relative;
    }
    #hero-1203 .cs-picture img {
        width: 30%;
        height: auto;
    }
    #hero-1203 .cs-floater {
        /* changes to 1465px at desktop */
        width: 59.6875rem;
        height: auto;
        opacity: 0.08;
        display: block;
        position: absolute;
        right: 0;
        top: 40%;
        z-index: -1;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-1203:before {
        height: 16.125rem;
    }
    #hero-1203 .cs-container {
        margin-left: 5rem;
    }
    #hero-1203 .cs-picture {
        width: 70%;
        /*max-width: 54.125rem;*/
    }
    #hero-1203 .cs-floater {
        width: 91.5625rem;
        top: 30%;
    }

    #hero-1203 .intro {
        /* 39px - 61px */
        width: 50% !important;
        max-width: 100% !important;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-1203 {
        padding-bottom: 12.5rem;
    }
    #hero-1203:before {
        height: 100%;
        width: 40vw;
        margin-left: 20.8125rem;
        left: 50%;
    }
    #hero-1203 .cs-container {
        flex-direction: row;
        justify-content: flex-start;
        /* remove the positioning so the cs-picture is now absolutely positioned to the next parent with a declared position - the #hero section container. Now we can position it off the bottom edge of the parent container */
        position: initial;
        margin-left: 5rem;
    }
    #hero-1203 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
    #hero-1203 .intro {
        /* 39px - 61px */
        width: 50% !important;
        max-width: 100% !important;
    }
    #hero-1203 .cs-picture {
        width: 54.125rem;
        height: 52.625rem;
        margin-left: 0.625rem;
        position: absolute;
        left: 50%;
        bottom: 0;
    }
    #hero-1203 .cs-picture img {
        bottom: 60%;
        left: 0;
        width: 75%;
        height: 75%;
        position: absolute;
        object-fit: contain;
    }
    #hero-1203 .cs-floater {
        margin-right: -20.8125rem;
        top: 8.75rem;
        right: 50%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #hero-1203:before {
        background-color: rgba(0, 0, 0, 0.6);
    }
    body.dark-mode #hero-1203 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #hero-1203 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #hero-1203 .cs-text {
        color: var(--bodyTextColorWhite);
        opacity: 0.9;
    }
}

                                