/*************** HERO ********************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-998 {
        min-height: 100vh;
        /* 144px - 280px */
        padding: clamp(9rem, 25.95vw, 17.5rem) 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        position: relative;
    }
    #hero-998 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #hero-998 .cs-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #hero-998 .cs-topper {
        /* 16px - 31px */
        font-size: clamp(1rem, 4.3vw, 1.9375rem);
        white-space: nowrap;
        line-height: 1.2em;
        width: 100%;
        /* 12px - 24px */
        margin: 0 0 clamp(0.75rem, 3vw, 1.5rem);
        color: var(--bodyTextColorWhite);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 1rem;
    }
    #hero-998 .cs-topper:before {
        /* left line */
        content: "";
        width: 100%;
        max-width: 6.25rem;
        height: 2px;
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #hero-998 .cs-topper:after {
        /* right line */
        content: "";
        width: 100%;
        max-width: 6.25rem;
        height: 2px;
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #hero-998 .cs-logo {
        width: 100%;
        max-width: 17.5rem;
        margin: 1rem 0 1.5rem 0;
        display: block;
    }
    #hero-998 .cs-logo img {
        width: 100%;
        height: auto;
    }
    #hero-998 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        max-width: 32.375rem;
        /* 24px - 48px */
        margin: 0 0 clamp(1.5rem, 3vw, 3rem) 0;
        color: var(--bodyTextColorWhite);
    }
    #hero-998 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #hero-998 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #000;
        opacity: 0.8;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #hero-998 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-998 .cs-logo {
        max-width: 22rem;
        margin: 1rem 0 1.5rem 0;
    }
}
/* Desktop Parallax - 1400px */
@media only screen and (min-width: 87.5rem) {
    #hero-998 .cs-background {
        background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Hero/table.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* makes parallax effect */
        background-attachment: fixed;
    }
    #hero-998 .cs-background img {
        display: none;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #hero-998 .cs-background:before {
        /* background color overlay */
        opacity: 0.9;
    }
}

/************* ANNOUNCEMENTS *************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #events-1139 {
        /* centers buttons */
        text-align: center;
        padding: var(--sectionPadding);
        background-color: #fff;
        position: relative;
        z-index: 1;
    }
    #events-1139 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 49rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #events-1139 .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;
    }
    #events-1139 .cs-title {
        /* max width of 18 characters, incldues spaces between words */
        max-width: 23ch;
    }
    #events-1139 .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    #events-1139 .cs-item {
        text-align: left;
        list-style: none;
        border-radius: 1rem;
        overflow: hidden;
        background-color: #f7f7f7;
        border: 1px solid #e8e8e8;
        grid-column: span 4;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        transition:
            box-shadow 0.3s,
            transform 0.3s;
    }
    #events-1139 .cs-item:hover {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    #events-1139 .cs-item:hover .cs-picture img {
        opacity: 0.3;
        transform: scale(1.1);
    }
    #events-1139 .cs-picture {
        width: 100%;
        height: 11.25rem;
        background-color: #1a1a1a;
        border-bottom: 4px solid var(--primary);
        overflow: hidden;
        display: block;
        /* prevents flexbox from squsihing it */
        flex: none;
        position: relative;
        z-index: 1;
    }
    #events-1139 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition:
            transform 0.6s,
            opacity 0.3s;
    }
    #events-1139 .cs-flex {
        height: 100%;
        padding: 1.5rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }
    #events-1139 .cs-date {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        text-align: inherit;
        margin: 0;
        padding: 0.5rem 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        border-radius: 0.5rem 0.5rem 0 0;
        color: #fff;
        display: inline-block;
        position: absolute;
        left: 1.5rem;
        bottom: 100%;
        z-index: 2;
    }
    #events-1139 .cs-details {
        margin: 0 0 0.75rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
    }
    #events-1139 .cs-time,
    #events-1139 .cs-location {
        font-size: 0.875rem;
        line-height: 1.5em;
        color: #767676;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.25rem;
    }
    #events-1139 .cs-icon {
        width: 1.5rem;
        height: auto;
    }
    #events-1139 .cs-h3 {
        font-size: 1.25rem;
        text-align: inherit;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--headerColor);
        margin: 0 0 1.25rem 0;
        transition: color 0.3s;
    }
    #events-1139 .cs-link {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        text-decoration: none;
        margin-top: auto;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #events-1139 .cs-link:hover .cs-arrow {
        transform: translateX(0.25rem);
    }
    #events-1139 .cs-arrow {
        width: 1.25rem;
        height: auto;
        transition: transform 0.3s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #events-1139 .cs-content {
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    #events-1139 .cs-title {
        margin: 0;
    }
    #events-1139 .cs-card-group {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    #events-1139 .cs-item {
        grid-column: 2 /span 2;
    }
    
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
    #events-1139 .cs-container {
        max-width: 80rem;
    }
    #events-1139 .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
    }
    #events-1139 .cs-item {
        grid-column: span 1;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #events-1139:before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--dark);
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    body.dark-mode #events-1139 .cs-topper {
        color: var(--primary);
    }
    body.dark-mode #events-1139 .cs-title,
    body.dark-mode #events-1139 .cs-text,
    body.dark-mode #events-1139 .cs-h3,
    body.dark-mode #events-1139 .cs-link,
    body.dark-mode #events-1139 .cs-time,
    body.dark-mode #events-1139 .cs-location {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #events-1139 .cs-text,
    body.dark-mode #events-1139 .cs-item-text,
    body.dark-mode #events-1139 .cs-time,
    body.dark-mode #events-1139 .cs-location {
        opacity: 0.8;
    }
    body.dark-mode #events-1139 .cs-item {
        background-color: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    body.dark-mode #events-1139 .cs-item:before {
        opacity: 0.3;
    }
    body.dark-mode #events-1139 .cs-picture {
        border-color: #fff;
    }
    body.dark-mode #events-1139 .cs-date {
        background-color: #fff;
    }
    body.dark-mode #events-1139 .cs-date {
        color: var(--primary);
    }
    body.dark-mode #events-1139 .cs-arrow,
    body.dark-mode #events-1139 .cs-floater {
        filter: grayscale(1) brightness(1000%);
    }
}

/************** ABOUT/HISTORY ************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1450 {
    padding: var(--sectionPadding);
  }
  #content-1450 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #content-1450 .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;
  }
  #content-1450 .cs-title,
  #content-1450 .cs-text {
    max-width: 100%;
  }
  #content-1450 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 2rem 0;
  }
  #content-1450 .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: #fff;
    min-width: 9.375rem;
    padding: 0 3rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #content-1450 .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;
  }
  #content-1450 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #content-1450 .cs-title,
  body.dark-mode #content-1450 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #content-1450 .cs-topper {
    color: var(--primary);
  }
  body.dark-mode #content-1450 .cs-text {
    opacity: .8;
  }
}

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

    #gallery-1086 .cs-title {
        margin: 0;
    }
    #gallery-1086 .cs-image-group {
        width: 100%;
        /* changes to 1280px at large desktop */
        max-width: 49rem;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(20, minmax(9vw, 1fr));
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #gallery-1086 .cs-picture {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }
    #gallery-1086 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #gallery-1086 .cs-picture1 {
        grid-column: 1 / span 6;
        grid-row: span 4;
    }
    #gallery-1086 .cs-picture2 {
        grid-column: 7 / span 6;
        grid-row: span 5;
    }
    #gallery-1086 .cs-picture3 {
        grid-column: 1 / span 6;
        grid-row: 5 / span 6;
    }
    #gallery-1086 .cs-picture4 {
        grid-column: 7 / span 6;
        grid-row: 6 / span 5;
    }
    #gallery-1086 .cs-picture5 {
        grid-column: 1 / span 6;
        grid-row: 11 / span 4;
    }
    #gallery-1086 .cs-picture6 {
        grid-column: 7 / span 6;
        grid-row: 11 / span 5;
    }
    #gallery-1086 .cs-picture7 {
        grid-column: 1 / span 6;
        grid-row: 15 / span 6;
    }
    #gallery-1086 .cs-picture8 {
        grid-column: 7 / span 6;
        grid-row: 16 / span 5;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #gallery-1086 .cs-image-group {
        grid-template-rows: repeat(20, minmax(6rem, 1fr));
    }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #gallery-1086 .cs-image-group {
        max-width: 80rem;
        height: 49.0625rem;
        grid-template-rows: repeat(12, 1fr);
    }
    #gallery-1086 .cs-picture1 {
        grid-column: 1 / span 3;
        grid-row: 1 / span 7;
    }
    #gallery-1086 .cs-picture2 {
        grid-column: 4 / span 3;
        grid-row: 1 / span 10;
    }
    #gallery-1086 .cs-picture3 {
        grid-column: 7 / span 3;
        grid-row: 1 / span 5;
    }
    #gallery-1086 .cs-picture4 {
        grid-column: 10 / span 3;
        grid-row: 1 / span 7;
    }
    #gallery-1086 .cs-picture5 {
        grid-column: 1 / span 3;
        grid-row: 8 / span 13;
    }
    #gallery-1086 .cs-picture6 {
        grid-column: 4 / span 3;
        grid-row: 11 / span 10;
    }
    #gallery-1086 .cs-picture7 {
        grid-column: 7 / span 3;
        grid-row: 6 / span 15;
    }
    #gallery-1086 .cs-picture8 {
        grid-column: 10 / span 3;
        grid-row: 8 / span 13;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #gallery-1086 .cs-title {
        color: var(--bodyTextColorWhite);
    }
}

/************ VIEW MENU BLOCK ************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-697 {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    z-index: 1;
  }
  #cta-697 .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-697 .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;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #cta-697 .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: #000;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--secondary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-697 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #cta-697 .cs-button-solid:hover:before {
    width: 100%;
  }
  #cta-697 .cs-button-solid:hover {
    color: #fff;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cta-697 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #cta-697 {
        background-color: var(--mediumDark);
    }
    body.dark-mode #cta-697 .cs-button-solid {
        background-color: var(--primary);
        color: #fff;
    }
}

/************* LOGOS/TAP LIST ************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #logos-1896 {
    /* 60px - 120px top & bottom */
    /* 16px - 40px left & right */
    padding: clamp(3.75rem, 8vw, 7.5rem) clamp(1rem, 2vw, 2.5rem);
    background-color: #FFF;
  }
  #logos-1896 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #logos-1896 .cs-title {
    font-size: 1.5625rem;
    font-weight: 700;
    margin: 0;
  }
  #logos-1896 .cs-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-self: stretch;
  }
  #logos-1896 .cs-logo {
    width: 45%;
    max-width: 12.5rem;
    height: auto;
    margin: 0;
    mix-blend-mode: darken;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #logos-1896 .cs-logo {
    width: 15%;
    /* the max width becomes whatever the actual width of the image is */
    max-width: max-content;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #logos-1896 .cs-logo-wrapper {
    justify-content: space-between;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #logos-1896 .cs-title {
    color: var(--headerColor);
  }
}

/*************** REVIEWS *****************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-567 {
        padding: var(--sectionPadding);
    }
    #reviews-567 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #reviews-567 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #reviews-567 .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.5vw, 1.15rem);
    }
    #reviews-567 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 39.375rem;
        /* 32px - 60px top & bottom */
        /* 16px - 48px left & right */
        padding: clamp(2rem, 6.15vw, 3.75rem) clamp(1rem, 4.15vw, 3rem);
        background-color: #f1f1f4;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        position: relative;
    }
    #reviews-567 .cs-stars {
        /* 169px - 189px */
        width: clamp(10.5625rem, 20vw, 11.8125rem);
        height: auto;
        /* 20px - 24px */
        margin-bottom: clamp(1.25rem, 3vw, 1.5rem);
        display: block;
    }
    #reviews-567 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        /* 40px - 64px */
        margin-bottom: clamp(2.5rem, 8vw, 4rem);
        color: var(--bodyTextColor);
    }
    #reviews-567 .cs-flex-group {
        /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
        margin-top: auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1.25rem;
    }
    #reviews-567 .cs-profile {
        width: 5rem;
        height: 5rem;
        border-radius: 50%;
        /* clips image corners to make circle */
        overflow: hidden;
        position: relative;
        display: block;
    }
    #reviews-567 .cs-profile img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes the image behave like a background image */
        object-fit: cover;
    }
    #reviews-567 .cs-name {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.5em;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        display: block;
    }
    #reviews-567 .cs-job {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.6vw, 1rem);
        line-height: 1.2em;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.01em;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-567 .cs-container {
        max-width: 80rem;
    }
    #reviews-567 .cs-card-group {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    #reviews-567 .cs-item {
        width: clamp(48.5%, 46.5vw, 49.5%);
    }
    #reviews-567 .cs-item:last-of-type {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    #reviews-567 .cs-item:last-of-type .cs-item-text {
        text-align: center;
        max-width: 34.375rem;
    }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
    #reviews-567 .cs-card-group {
        flex-wrap: nowrap;
    }
    #reviews-567 .cs-item {
        width: 100%;
        align-items: flex-start;
    }
    #reviews-567 .cs-item:last-of-type {
        align-items: flex-start;
    }
    #reviews-567 .cs-item:last-of-type .cs-item-text {
        text-align: left;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #reviews-567 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #reviews-567 .cs-title,
    body.dark-mode #reviews-567 .cs-text,
    body.dark-mode #reviews-567 .cs-item-text,
    body.dark-mode #reviews-567 .cs-name,
    body.dark-mode #reviews-567 .cs-job {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #reviews-567 .cs-text {
        opacity: 0.8;
    }
    body.dark-mode #reviews-567 .cs-item {
        background-color: var(--accent);
    }
}

/*************** CTA *********************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-strip-719 {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    z-index: 1;
  }
  #contact-strip-719 .cs-stat-group {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 37.5rem;
    margin: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  #contact-strip-719 .cs-item {
    list-style: none;
    width: 18.125rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #contact-strip-719 .cs-item:hover .cs-picture {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: scale(1.1);
  }
  #contact-strip-719 .cs-picture {
    width: 5rem;
    height: 5rem;
    /* 12px - 20px */
    margin-right: clamp(0.75rem, 3vw, 1.25rem);
    border: 1px solid #f6e5db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.6s;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #contact-strip-719 .cs-flex-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  #contact-strip-719 .cs-icon {
    width: 2.5rem;
    height: auto;
  }
  #contact-strip-719 .cs-header {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 0.75rem;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #contact-strip-719 .cs-link,
  #contact-strip-719 .cs-address {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #contact-strip-719 .cs-link:hover {
    text-decoration: underline;
  }
  #contact-strip-719 .cs-background {
    width: 100%;
    height: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
  #contact-strip-719 .cs-stat-group {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1.25rem;
    row-gap: 2rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-strip-719 .cs-stat-group {
    max-width: 80rem;
    justify-content: space-evenly;
    flex-wrap: nowrap;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #contact-strip-719 {
    background-color: var(--medium);
  }
  body.dark-mode #contact-strip-719 .cs-header,
  body.dark-mode #contact-strip-719 .cs-link,
  body.dark-mode #contact-strip-719 .cs-hours {
    color: var(--bodyTextColorWhite);
  }
}