/*-- -------------------------- -->
<---           Events           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #events-1424 {
    /* centers buttons */
    text-align: center;
    padding: clamp(3.75rem, 2.82vw, 6.25rem) 1rem;
    position: relative;
    z-index: 1;
  }

  #events-1424 .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-1424 .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-1424 .cs-content-flex {
    max-width: 26.25rem;
    margin-bottom: 2rem;
  }

  #events-1424 .cs-title {
    /* max width of 18 characters, includes spaces between words */
    max-width: 23ch;
  }

  #events-1424 .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;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }

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

  #events-1424 .cs-button-solid:hover {
    color: #fff;
  }

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

  #events-1424 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }

  #events-1424 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
  }

  #events-1424 .cs-item:hover {
    box-shadow: 0px 4px 120px 0px #0000001f;
    border-color: none;
  }

  #events-1424 .cs-item:hover .cs-picture img {
    opacity: 0.3;
    transform: scale(1.1);
  }

  #events-1424 .cs-item:hover .cs-h3 {
    color: var(--primary);
  }

  #events-1424 .cs-picture {
    width: 100%;
    height: 15rem;
    background-color: #1a1a1a;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* prevents flexbox from squishing it */
    flex: none;
  }

  #events-1424 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s, opacity 0.3s;
  }

  #events-1424 .cs-info {
    height: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }

  #events-1424 .cs-date {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0 0.5rem 0.5rem 0;
    display: inline-block;
    position: absolute;
    top: 1rem;
    z-index: 2;
  }

  #events-1424 .cs-details {
    margin: 0 0 0.75rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
  }

  #events-1424 .cs-time,
  #events-1424 .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-1424 .cs-icon {
    width: 1.5rem;
    height: auto;
  }

  #events-1424 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }

  #events-1424 .cs-info-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 1.25rem 0;
    color: var(--bodyTextColor);
  }

  #events-1424 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-decoration: none;
    margin-top: auto;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #events-1424 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }

  #events-1424 .cs-arrow {
    width: 1.25rem;
    height: auto;
    transition: transform 0.3s;
  }
}

/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #events-1424 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }

  #events-1424 .cs-content-flex {
    margin: 0;
  }

  #events-1424 .cs-item {
    flex-direction: row;
  }

  #events-1424 .cs-picture {
    max-width: 17.75rem;
    height: 100%;
  }
}

/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #events-1424 .cs-container {
    max-width: 80rem;
  }

  #events-1424 .cs-content-flex {
    max-width: 39.25rem;
  }

  #events-1424 .cs-item {
    flex-direction: column;
    grid-column: span 4;
  }

  #events-1424 .cs-picture {
    max-width: none;
    height: 12.5rem;
  }
}


.cs-time,
.cs-location {
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #767676;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
}

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

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-843 {
    /* 175px - 260px top */
    padding: clamp(10.9375rem, 20vw, 16.25rem) 1rem clamp(6.25rem, 14vw, 12vw);
    /* clips svg wave from causing overflow issues */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-843 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  #banner-843 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #banner-843 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-843 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.64;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-843 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
  #banner-843 .cs-wave {
    /* we're stretching the svg wider than the viewport so it's taller and has more of a presence */
    width: 48rem;
    height: auto;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    z-index: -1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #banner-843 .cs-wave {
    width: 100%;
    left: 0;
    transform: none;
  }
}
                                /*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-1881 {
    padding: var(--sectionPadding);
    /* 180px - 242px */
    padding-top: clamp(11.25rem, 27vw, 14.125rem);
    /* 60px - 182px */
    padding-bottom: clamp(3.75rem, 14vw, 3.375rem);
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-1881 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #banner-1881 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
    position: relative;
  }
  #banner-1881 .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1881 .cs-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #banner-1881 .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }
  #banner-1881 .cs-link:last-of-type::after {
    display: none;
  }
  #banner-1881 .cs-link:after {
    /* chevron */
    content: "";
    width: 0.4375rem;
    height: 0.75rem;
    margin: 0 1rem;
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/Icons/grey-right-arrow-2.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: relative;
  }
  #banner-1881 .cs-link.cs-active {
    color: var(--bodyTextColor);
  }
  #banner-1881 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-1881 .cs-background:before {
    /* background color overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #FAF6F2;
    opacity: 0.84;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1881 .cs-background img {
    width: 100%;
    height: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #banner-1881 .cs-graphic {
    /* 123px - 227px */
    width: clamp(7.71rem, 22.5vw, 14.19rem);
    height: auto;
    position: absolute;
    top: 1.25rem;
    right: -2rem;
    z-index: -1;
  }
}
                                