/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #8cbfa8;         /* pastel sage green — main accent */
    --primaryLight: #b8d9c9;    /* soft mint — hover states, tag backgrounds */
    --primaryDark: #5a9e82;     /* deeper green — borders, active states */
    --secondary: #c9dfd5;       /* very soft green — subtle backgrounds */
    --secondaryDark: #4a7c65;   /* dark green — emphasized text, links */
    --headerColor: #2b3a32;     /* deep forest — headings */
    --bodyTextColor: #3d4d44;   /* muted dark green-grey — body text */
    --lineColor: #c2d6cc;       /* soft sage — dividers */
    --bodyTextColorWhite: #ffffff;
    --largeFontSize: 3.5rem;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --heroFontSize: clamp(3rem, 6vw, 5rem);
    --headerFontSize: clamp(2.75rem, 5vw, 4rem);
    --headerTwoFontSize: clamp(2.25rem, 4vw, 3rem);
    --headerThreeFontSize: clamp(1.75rem, 3vw, 2.25rem);
    --headerFourFontSize: clamp(1.375rem, 2.5vw, 1.625rem);
    --headerFiveFontSize: clamp(1.125rem, 2vw, 1.375rem);
    --headerSixFontSize: clamp(1rem, 1.5vw, 1.125rem);
    --bodyFontSize: clamp(1rem, 1.5vw, 1.0625rem);
    --mediumFontSize: clamp(0.875rem, 2vw, 1rem);
    --regularFontSize: clamp(0.75rem, 2vw, 0.875rem);
    --smallFontSize: clamp(0.625rem, 2vw, 0.75rem);
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(2.25rem, 6vw, 2.5rem) 1rem;
    --cardPadding: clamp(1rem, 2vw, 1.25rem);
    --sectionGap: clamp(2rem, 4vw, 2.5rem);
    --boxCardShadow: 0 -4px 24px 0 rgba(22, 22, 22, 0.25), 0 20px 24px 0 rgba(22, 22, 22, 0.25);
    --app-height: 100vh;
    --newsWidth: 2000px;
    --newsHolderLeft: 30vw;
  }
  /* Fraunces (headings) + Figtree (body) */
  @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Figtree:wght@300;400;500;600;700&display=swap');

    /* roboto-regular - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''), url('../assets/fonts/roboto-v29-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../assets/fonts/roboto-v29-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-700 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(''), url('../assets/fonts/roboto-v29-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../assets/fonts/roboto-v29-latin-700.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-900 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: local(''), url('../assets/fonts/roboto-v29-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../assets/fonts/roboto-v29-latin-900.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Figtree', Arial, sans-serif;
    color: var(--bodyText);
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
  }
  body {
    background-image: url('../assets/images/bg-all.png');
    background-size: contain;
  }
  main {
    background-color: rgba(245, 245, 245, 0.85);
    flex: 1;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.01em;
  }
  p,
  li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    margin: 0;
    text-decoration: none;
    color: var(--bodyTextColor);
  }
  a {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    color: var(--bodyTextColor);
  }
  .cs-sidebar a {
    color: var(--bodyTextColor);
    text-decoration: none;
  }
  p,
  li {
    color: var(--bodyTextColor);
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  p > a {
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
  }
  .cs-item div > p:not(:first-child) {
    margin-top: 1rem;
  }
  input {
    border: 1px solid #767676;
  }
  input,
  input::placeholder {
    font-size: var(--mediumFontSize);
    text-align: start;
  }
  .cs-highlight-author {
    color: var(--secondaryDark);
  }
  .cs-bold {
    font-weight: bold;
  }
  .button-inline {
    font-size: var(--mediumFontSize);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    margin: auto;
    text-align: center;
    padding: 0.75em 1.5em;
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    color: var(--bodyText);
    transition: color 0.3s;
    transition-delay: 0.1s;
  }
  .button-inline:hover {
    color: #fff;
  }
  .button-inline:hover:before {
    width: 100%;
  }
  .button-inline:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    width: 0;
    transition: width 0.3s;
  }
  .line {
    width: 85%;
    background: var(--lineColor);
    height: 1px;
    margin: 0 auto;
    max-width: 850px;
    opacity: 0.7;
  }
  .line.line-full {
    width: 100%;
  }
  .line.card-image-line {
    position: absolute;
    margin: 0!important;
    top: 0;
    width: calc(100% - var(--cardPadding)*2);
  }
  .button-solid {
    margin-top: auto;
    font-size: var(--mediumFontSize);
    text-decoration: none;
    display: flex;
    align-items: center;
    width: auto;
    line-height: 3.57142857em;
    height: 2.85714286em;
    text-align: center;
    padding: 0 1.42857143em;
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    border-radius: 4px;
    color: white;
    transition: color 0.3s;
    transition-delay: 0.1s;
  }
  .cs-button-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--mediumFontSize);
    border: 1px solid var(--bodyTextColor);
    padding: 0.75em 1.5em;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: var(--bodyText);
    transition: color 0.3s;
    transition-delay: 0.1s;
  }
  .cs-button-link:hover {
    color: #fff;
  }
  .cs-button-link:hover .filter-green {
    filter: invert(96%) sepia(100%) saturate(0%) hue-rotate(346deg) brightness(102%) contrast(104%);
  }
  .cs-button-link:hover:before {
    width: 100%;
  }
  .cs-button-link:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    width: 0;
    transition: width 0.3s;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
  .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;
  }
  h1.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  h2.cs-title {
    font-size: var(--headerTwoFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  h3.cs-title {
    font-size: var(--headerThreeFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  h4.cs-title {
    font-size: var(--headerFourFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  h5.cs-title {
    font-size: var(--headerFiveFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  h6.cs-title {
    font-size: var(--headerSixFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  .cs-top-section {
    padding-top: 6.25rem !important;
  }
  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  .cs-title-card-wrapper {
    flex: 1;
  }
  .cs-invisible {
    visibility: hidden;
  }
  .cs-d-none {
    display: none;
  }
  .cs-arrow-wrapper .cs-arrow,
  .cs-arrow-wrapper .cs-image-selector {
    cursor: pointer;
  }
  .cs-filter-wrapper {
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: center;
    user-select: none;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: auto;
  }
  .cs-filter-wrapper div {
    width: 100%;
    white-space: nowrap;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
  }
  .cs-filter-wrapper div.active {
    color: var(--secondaryDark);
  }
  .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 16px - 20px */
    gap: 1rem;
  }
  .cs-card-group .cs-item {
    /* changed to left at desktop */
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 32.625rem;
    margin: 0;
    padding: 0;
    background-color: var(--bodyTextColorWhite);
    box-shadow: var(--boxCardShadow);
    flex: 0 0 calc(100%);
  }
  .cs-card-group .cs-item .cs-flex-group {
    height: 100%;
    width: 100%;
    padding: var(--cardPadding);
    /* prevents padding from affect height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-name {
    font-size: var(--headerSixFontSize);
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.25rem 0;
    color: var(--headerColor);
    display: block;
    width: 100%;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-desc {
    font-size: var(--bodyFontSize);
    margin: 0.9375rem 0 0 0;
    line-height: 1.5em;
    font-weight: 400;
    text-align: left;
    color: var(--bodyTextColor);
    display: block;
    width: 100%;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-desc .read-more-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: max-content;
    background-color: white;
    font-size: var(--mediumFontSize);
    color: var(--secondaryDark);
    cursor: pointer;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-desc .read-more-btn img {
    width: 35px;
    height: 35px;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-desc.show-more .read-more-btn {
    position: relative;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-timeline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: var(--regularFontSize);
    width: 100%;
    line-height: 1.5em;
    font-weight: 400;
    text-align: left;
    color: var(--bodyTextColor);
  }
  .cs-card-group .cs-item .cs-flex-group .line:not(:last-child) {
    margin: 0.9375rem 0 0.9375rem 0;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-item-filters {
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-item-filters .cs-filter {
    font-size: var(--regularFontSize);
    display: flex;
    align-items: center;
    justify-items: center;
    padding: 0.25rem 0.25rem;
    background-color: #F5F5F5;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-item-social {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  .cs-card-group .cs-item .cs-flex-group .cs-item-social a {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--regularFontSize);
    color: var(--bodyTextColor);
  }
  .cs-card-group.out-of-reach .cs-item {
    outline: 2px solid var(--primary);
  }
  .cs-caption-slider-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  .cs-caption-slider-wrapper .cs-text-caption {
    height: 24px;
    display: none;
  }
  .cs-arrow-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .cs-image-slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
  }
  .cs-image-slider .cs-image-selector {
    width: 8px;
    height: 8px;
    background-color: var(--Neutral-Gray, #8D8D8D);
    border-radius: 100%;
  }
  .cs-image-slider .cs-image-selector.active {
    background-color: var(--lineColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .cs-card-group .cs-item .cs-flex-group .cs-desc .read-more-btn {
    bottom: 0;
    right: 0;
  }
}
/* Desktop */
@media only screen and (min-width: 64rem) {
  .cs-top-section {
    padding-top: 7.8125rem !important;
  }
  .line {
    width: 50%;
  }
  .cs-sidebar {
    position: sticky;
    top: 6.5em;
  }
  .cs-filter-wrapper {
    padding: 0;
    color: var(--bodyTextColor);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    text-align: left;
    overflow: auto;
  }
  .cs-filter-wrapper div {
    width: 100%;
    white-space: wrap;
  }
  .cs-filter-wrapper div.active {
    background-color: transparent;
    border-left: 4px solid var(--secondary);
    border-bottom: none;
    color: var(--bodyTextColor);
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    padding: 0;
    margin: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: 0.85vw;
  }
}
/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile - Top Drop Down */
@media only screen and (max-width: 1023px) {
  #navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    height: auto;
  }
  #navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #navigation .container {
    padding: 0.8125em 0;
    width: 96%;
  }
  #navigation .logo {
    display: inline-block;
    height: 1.875em;
    width: auto;
  }
  #navigation .logo img {
    width: auto;
    height: 100%;
  }
  #navigation .logo .light {
    display: none;
  }
  #navigation .logo .dark {
    display: block;
  }
  #navigation .hamburger-menu {
    position: absolute;
    right: 0em;
    border: none;
    height: 3em;
    width: 3em;
    z-index: 100;
    display: block;
    background: transparent;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.3s;
  }
  #navigation .hamburger-menu span {
    height: 2px;
    width: 1.875em;
    background-color: #000;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s;
  }
  #navigation .hamburger-menu span:before {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: #000;
    opacity: 1;
    top: -6px;
    left: 0;
    transition: width 0.3s, left 0.3s, top 0.3s, transform 0.5s;
  }
  #navigation .hamburger-menu span:after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 80%;
    background: #000;
    opacity: 1;
    top: 6px;
    left: 0;
    transition: width 0.3s, left 0.3s, top 0.3s, transform 0.3s;
  }
  #navigation .hamburger-menu.clicked span {
    background-color: transparent;
  }
  #navigation .hamburger-menu.clicked span:before {
    width: 100%;
    transform: translate(-50%, -50%) rotate(225deg);
    left: 50%;
    top: 50%;
  }
  #navigation .hamburger-menu.clicked span:after {
    width: 100%;
    transform: translate(-50%, -50%) rotate(-225deg);
    left: 50%;
    top: 50%;
  }
  #navigation #navbar-menu {
    position: fixed;
    right: 0;
    padding: 0;
    width: 100%;
    border-radius: 0 0 0.375em 0.375em;
    z-index: -1;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #fff;
    top: 4em;
    padding-top: 0;
    height: 0;
    transition: height 0.3s, padding-top 0.3s, top 0.3s;
  }
  #navigation #navbar-menu ul {
    padding: 0;
    perspective: 700px;
  }
  #navigation #navbar-menu ul li {
    list-style: none;
    margin-bottom: 1.5em;
    text-align: center;
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(-0.4375em) rotateX(90deg);
    transition: opacity 0.5s, transform 0.5s;
  }
  #navigation #navbar-menu ul li:nth-of-type(1) {
    transition-delay: 0.1s;
  }
  #navigation #navbar-menu ul li:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #navigation #navbar-menu ul li:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  #navigation #navbar-menu ul li:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  #navigation #navbar-menu ul li:nth-of-type(5) {
    transition-delay: 0.5s;
  }
  #navigation #navbar-menu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--bodyText);
    font-size: 1.1875em;
    text-align: center;
    display: inline-block;
    position: relative;
    font-weight: bold;
  }
  #navigation #navbar-menu ul li a.active:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.42105263em;
    background: var(--primary);
    opacity: 1;
    bottom: 0.26315789em;
    border-radius: 0.21052632em;
    left: -0.31578947em;
    right: -0.31578947em;
    z-index: -1;
  }
  #navigation #navbar-menu.open {
    height: 23.53846154em;
    padding-top: 1.25em;
    z-index: -100;
  }
  #navigation #navbar-menu.open ul li {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
/* Desktop */
@media only screen and (min-width: 0em) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375em rgba(0, 0, 0, 0.3);
    background-color: #fff;
  }
  ::-webkit-scrollbar-track-piece {
    background-color: #fff;
  }
  ::-webkit-scrollbar {
    width: 0.75em;
    height: 0.375em;
    background-color: #fff;
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 0.625em;
    background: var(--primary);
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    position: fixed;
    z-index: 10000;
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active:before {
    height: 150vh;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #cs-navigation .cs-logo {
    height: 4rem;
    margin: 0 auto 0 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo .cs-light {
    display: none;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    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;
    display: block;
  }
  #cs-navigation .cs-toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    opacity: 0;
    bottom: 100%;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #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-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: auto;
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    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:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link:before {
    /* active state indicator - small dot */
    content: "";
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    display: block;
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    opacity: 1;
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #cs-navigation .cs-dropdown {
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
    width: 1.25rem;
    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(--primaryLight);
    opacity: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    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 {
    font-size: var(--mediumFontSize);
    color: var(--bodyTextColorWhite);
  }
}
/* 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 {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
    width: 1.25rem;
    height: auto;
    display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    opacity: 0;
    border-bottom: 5px solid var(--primary);
    visibility: hidden;
    /* 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;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    font-size: 1rem;
    text-decoration: none;
    list-style: none;
    width: 100%;
    height: auto;
    color: var(--bodyTextColor);
    opacity: 0;
    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-li-link.cs-drop-link {
    font-size: var(--mediumFontSize);
    line-height: 1.5em;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--primaryLight);
  }
  #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%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    position: fixed;
    z-index: 10000;
  }
  #cs-navigation .background-color-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 0;
    border-bottom: 1px solid var(--lineColor);
    transition: height 0.3s, box-shadow 0.3s;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    max-width: 15.625rem;
    height: 4.0625rem;
    /* 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;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    gap: 0.25rem;
    position: relative;
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid {
    font-size: var(--mediumFontSize);
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    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.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #cs-navigation .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;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }
  body.scroll #cs-navigation .background-color-div {
    height: 100%;
    box-shadow: 0 4px 24px rgba(43, 58, 50, 0.1);
  }
  body.scroll #cs-navigation .cs-logo .cs-light {
    display: none;
  }
  body.scroll #cs-navigation .cs-logo .cs-dark {
    display: block;
  }
  body.scroll #cs-navigation ul li a,
  body.scroll #cs-navigation ul li > span {
    color: var(--bodyTextColor);
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #footer {
    background-color: rgba(245, 245, 245, 0.85);
    padding: 1.875em 0 1.875em;
    position: relative;
  }
  #footer .line.footer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
  }
  #footer .container {
    display: flex;
    flex-direction: column;
    gap: 0.625em;
  }
  #footer .left-section {
    display: flex;
    flex-direction: column;
    gap: 0.3125em;
    text-align: center;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: auto;
    max-width: 15.625rem;
    height: 4.0625rem;
    text-align: center;
  }
  #footer .left-section .logo img {
    width: 100%;
    height: 100%;
    display: block;
  }
  #footer .left-section p {
    font-size: 0.875em;
    line-height: 1.92857143;
    color: var(--bodyText);
    opacity: 0.9;
    text-align: center;
    width: 100%;
    width: 21.92857143em;
    margin: auto;
  }
  #footer .full-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }
  #footer .full-section .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 15.625rem;
    height: 5.625rem;
  }
  #footer .full-section .logo img {
    width: 100%;
    height: 100%;
    display: block;
  }
  #footer .full-section .credit {
    width: 100%;
    margin: auto 0 auto auto;
    text-align: center;
  }
  #footer .right-section {
    display: flex;
    justify-content: center;
    flex: 1;
  }
  #footer .right-section img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }
  #footer .credit {
    color: var(--bodyText);
    font-size: var(--mediumFontSize);
    width: 100%;
    margin-top: auto;
    text-align: center;
    line-height: 2.25em;
  }
  #footer .credit .copyright {
    display: block;
    font-size: 1em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 96%;
    max-width: 80rem;
    margin: auto;
    padding: 0;
  }
  #footer .left-section {
    display: flex;
    flex-direction: column;
    width: 50em;
    margin: 0;
    text-align: left;
  }
  #footer .left-section .logo {
    text-align: left;
    margin-left: 0;
  }
  #footer .left-section p {
    text-align: left;
    margin-left: 0;
  }
  #footer .full-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  #footer .full-section .credit {
    width: auto;
    text-align: center;
  }
  #footer .right-section {
    margin: 0;
    width: auto;
  }
  #footer .credit {
    text-align: left;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #footer {
    background: #061623;
  }
}
@media only screen and (min-width: 64em) {
  .cs-sidebar.cs-filter-searchable {
    height: 85vh;
    overflow-y: scroll!important;
    width: 23%!important;
    padding-right: 1rem;
  }
}

