
  
  /*-- -------------------------- -->
  <---          Banner            -->
  <--- -------------------------- -*/
  
  /* Mobile - 360px */
  @media only screen and (min-width: 0rem) {
    #banner-1519 {
      padding: var(--sectionPadding);
      /* 190px - 268px */
      padding-top: clamp(11.875rem, 25vw, 16.75rem);
      /* 100px - 150px */
      padding-bottom: clamp(6.25rem, 12vw, 9.375rem);
      /* clips the line from causing overflow issues for going off screen */
      overflow: hidden;
      position: relative;
      z-index: 1;
      background-color: var(--primary);
    }
    #banner-1519 .cs-container {
      text-align: center;
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /* 8px - 12px */
      gap: clamp(0.5rem, 1vw, 0.75rem);
    }
    #banner-1519 .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-1519 .cs-breadcrumbs {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #banner-1519 .cs-link {
      font-size: 1rem;
      line-height: 1.2em;
      text-decoration: none;
      color: var(--bodyTextColor);
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #banner-1519 .cs-link:last-of-type {
      /* remove the chevron on the last list item */
    }
    #banner-1519 .cs-link:last-of-type::after {
      display: none;
    }
    #banner-1519 .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-chevron.svg");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      display: block;
    }
    #banner-1519 .cs-link.cs-active {
      color: var(--primary);
    }
    #banner-1519 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #banner-1519 .cs-background:before {
      /* gradient overlay */
      content: '';
      width: 100%;
      height: 100%;
      background: #FFF3EC;
      opacity: .8;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #banner-1519 .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-1519 .cs-mask {
      --maskBG: #ffffff;
      width: 100%;
      height: auto;
      display: block;
      position: absolute;
      bottom: -1px;
      left: 0;
      z-index: 100;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #banner-1519 .cs-background:before {
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 243, 236, 0.9) 23.05%, rgba(255, 243, 236, 0) 80.08%);
      opacity: 1;
    }
  }

/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-1262 {
      padding: var(--sectionPadding);
      /* clips svg graphic from overflowing the section */
      overflow: hidden;
      position: relative;
      z-index: 1;
      transform-style: preserve-3d;
    }
    #pricing-1262 .cs-container {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px, changes to 20px at large desktop */
      gap: clamp(3rem, 6vw, 4rem);
      position: relative;
      perspective: 1100px;
    }
    #pricing-1262 .cs-title {
      color: var(--bodyTextColor);
    }
    #pricing-1262 .cs-topper {
      color: var(--primary);
    }
    #pricing-1262 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      max-width: 40.1875rem;
      margin-right: auto;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
    }
    #pricing-1262 .cs-text {
      margin-bottom: 1rem;
    }
    #pricing-1262 .cs-text:last-of-type {
      margin-bottom: 2rem;
    }
    #pricing-1262 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      min-width: 9.375rem;
      padding: 0 1.5rem;
      background-color: var(--primary);
      overflow: hidden;
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
    }
    #pricing-1262 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #pricing-1262 .cs-button-solid:hover:before {
      width: 100%;
    }
    #pricing-1262 .cs-toggle-group {
      width: 100%;
      max-width: 25.875rem;
      margin: 0;
      padding: 0.75rem;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      background-color: #f1f1f4;
      border-radius: 0.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #pricing-1262 .cs-plan {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.5em;
      margin: 0;
      padding: 0;
      color: var(--primary);
    }
    #pricing-1262 .cs-plan:hover {
      cursor: pointer;
    }
    #pricing-1262 .cs-toggle {
      width: 3.25rem;
      height: 2rem;
      border-radius: 2.5rem;
      background-color: var(--primaryLight);
      margin: 0 1.5rem;
      position: relative;
      /* prevent flexbox from squishing it */
      flex: none;
    }
    #pricing-1262 .cs-toggle:hover {
      cursor: pointer;
    }
    #pricing-1262 .cs-toggle.active:before {
      opacity: 1;
    }
    #pricing-1262 .cs-toggle.active .cs-toggle-switch {
      left: 1.4375rem;
    }
    #pricing-1262 .cs-toggle:before {
      /* top right box */
      content: "";
      width: 100%;
      height: 100%;
      background: var(--primary);
      opacity: 0;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      border-radius: 2.5rem;
      transition: opacity 0.3s;
    }
    #pricing-1262 .cs-toggle-switch {
      width: 1.625rem;
      height: 1.625rem;
      display: block;
      border-radius: 50%;
      filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.06)) drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0.1875rem;
      transition: left 0.3s;
      background: #fff;
    }
    #pricing-1262 .cs-ul-wrapper {
      position: relative;
      z-index: 10;
      perspective: 1200px;
    }
    #pricing-1262 .cs-ul-wrapper.cs-active .cs-option1 {
      transform: rotateY(180deg);
    }
    #pricing-1262 .cs-ul-wrapper.cs-active .cs-option2 {
      transform: rotateY(360deg);
    }
    #pricing-1262 .cs-option2 {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transform: rotateY(180deg);
    }
    #pricing-1262 .cs-option2 .cs-item {
      border-radius: 0 1.5rem 0 0;
    }
    #pricing-1262 .cs-option2 .cs-item:nth-of-type(2) {
      border-radius: 0 0 0 1.5rem;
    }
    #pricing-1262 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      background-color: #fff;
      border-radius: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      /* prevents flexbox from squishing it */
      flex: none;
      -webkit-backface-visibility: hidden; /* Safari */
      backface-visibility: hidden;
      transition: transform 0.8s;
    }
    #pricing-1262 .cs-item {
      text-align: left;
      list-style: none;
      width: 100%;
      margin: 0;
      padding: 1.5rem 1.5rem;
      background-color: #fff;
      border: 1px solid #dad9e3;
      border-radius: 1.5rem 0 0 0;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: relative;
      z-index: 1;
    }
    #pricing-1262 .cs-item:nth-of-type(2) {
      border-radius: 0 0 1.5rem 0;
    }
    #pricing-1262 .cs-item.cs-popular {
      background-color: #14142b;
      border: none;
    }
    #pricing-1262 .cs-item.cs-popular .cs-popular-tag {
      display: inline-flex;
    }
    #pricing-1262 .cs-item.cs-popular .cs-package,
    #pricing-1262 .cs-item.cs-popular .cs-price,
    #pricing-1262 .cs-item.cs-popular .cs-duration,
    #pricing-1262 .cs-item.cs-popular .cs-item-text,
    #pricing-1262 .cs-item.cs-popular .cs-li {
      color: var(--bodyTextColorWhite);
    }
    #pricing-1262 .cs-item.cs-popular .cs-item-text,
    #pricing-1262 .cs-item.cs-popular .cs-li {
      opacity: 0.8;
    }
    #pricing-1262 .cs-item.cs-popular .cs-icon {
      filter: none;
      opacity: 1;
    }
    #pricing-1262 .cs-item.cs-popular .cs-button-transparent {
      background-color: var(--primary);
      color: var(--bodyTextColorWhite);
      border: none;
      transition: color 0.3s;
    }
    #pricing-1262 .cs-item.cs-popular .cs-button-transparent:before {
      background-color: #fff;
    }
    #pricing-1262 .cs-item.cs-popular .cs-button-transparent:hover {
      color: var(--primary);
    }
    #pricing-1262 .cs-popular-tag {
      font-size: 0.875rem;
      line-height: 1.2em;
      text-align: center;
      width: auto;
      margin: 0;
      padding: 0.25rem 0.75rem;
      box-sizing: border-box;
      color: #ff9b7d;
      overflow: hidden;
      border-radius: 0.25rem;
      display: none;
      justify-content: center;
      align-items: center;
      position: absolute;
      /* same as cs-item padding top */
      top: 1.5rem;
      right: 1.5rem;
      z-index: 1;
    }
    #pricing-1262 .cs-popular-tag:before {
      /* background color overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: var(--primary);
      opacity: 0.16;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #pricing-1262 .cs-picture {
      width: 4.75rem;
      height: 4.75rem;
      margin-bottom: 1.5rem;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    #pricing-1262 .cs-picture:before {
      /* background color */
      content: "";
      width: 100%;
      height: 100%;
      background: var(--primary);
      opacity: 0.2;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
    }
    #pricing-1262 .cs-package {
      font-size: 1.25rem;
      line-height: 1.2em;
      text-align: inherit;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
      color: var(--primary);
      display: block;
    }
    #pricing-1262 .cs-price {
      font-size: 2.4375rem;
      line-height: 1.2em;
      text-align: inherit;
      font-weight: 900;
      margin: 0 0 0.75rem;
      color: var(--primary);
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
    }
    #pricing-1262 .cs-duration {
      font-size: 0.875rem;
      line-height: 1.5em;
      font-weight: 400;
      margin: 0;
      color: var(--headerColor);
    }
    #pricing-1262 .cs-item-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-align: inherit;
      margin: 0 0 2rem;
      color: var(--bodyTextColor);
    }
    #pricing-1262 .cs-ul {
      margin: 0 0 2rem;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    #pricing-1262 .cs-li {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      list-style: none;
      line-height: 1.5em;
      width: 100%;
      margin: 0;
      padding: 0;
      color: var(--bodyTextColor);
      display: flex;
      justify-content: flex-start;
      /* push everything to the top so if the li goes to two lines the icon stays at the top */
      align-items: flex-start;
      gap: 0.5rem;
    }
    #pricing-1262 .cs-li.cs-disabled {
      opacity: 0.5;
    }
    #pricing-1262 .cs-li.cs-disabled .cs-icon {
      filter: grayscale(1) brightness(300%);
    }
    #pricing-1262 .cs-icon {
      width: 1.5rem;
      height: auto;
      opacity: 1;
      display: block;
    }
    #pricing-1262 .button-solid {
      width: 100%;
    }
    #pricing-1262 .cs-button-transparent {
      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: var(--primary);
      min-width: 9.375rem;
      padding: 0 1.5rem;
      background-color: transparent;
      border: 1px solid var(--primary);
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      transition: color 0.3s, border-color 0.3s, background-color 0.3s;
    }
    #pricing-1262 .cs-button-transparent: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;
    }
    #pricing-1262 .cs-button-transparent:hover {
      color: #fff;
      border-color: #000;
      background-color: #000;
    }
    #pricing-1262 .cs-button-transparent:hover:before {
      width: 100%;
    }
    #pricing-1262 .cs-waves-wrapper {
      width: 100vw;
      height: 65%;
      display: block;
      position: absolute;
      bottom: -6.25rem;
      left: 50%;
      z-index: -10;
      transform: translateX(-50%);
    }
    #pricing-1262 .cs-waves-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #pricing-1262 .cs-container {
      max-width: 80rem;
      /* remove the position so the svg waves wrapper can be positioned relative to the section container for tablet so it hugs the right edge of the screen. We set it back to relative at 1024px so it can then be positioned relative to the container again so it hugs the right edge of the container with the pricing cards */
      position: initial;
    }
    #pricing-1262 .cs-card-group {
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
      flex-wrap: nowrap;
    }
    #pricing-1262 .cs-option2 .cs-item {
      border-radius: 1.5rem 0 0 1.5rem;
    }
    #pricing-1262 .cs-option2 .cs-item:nth-of-type(2) {
      border-radius: 0 1.5rem 1.5rem 0;
    }
    #pricing-1262 .cs-item {
      width: 50%;
      border-radius: 1.5rem 0 0 1.5rem;
    }
    #pricing-1262 .cs-item:nth-of-type(2) {
      border-radius: 0 1.5rem 1.5rem 0;
    }
    #pricing-1262 .cs-waves-wrapper {
      /* changes to 740px at large desktop */
      width: 55vw;
      height: 100%;
      left: auto;
      right: 0;
      bottom: auto;
      top: 0;
      transform: none;
    }
  }
  /* Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #pricing-1262 .cs-container {
      max-width: 80rem;
      position: relative;
      z-index: 1;
    }
    #pricing-1262 .cs-waves-wrapper {
      height: 140%;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  /* Large Desktop - 1300px */
  @media only screen and (min-width: 81.25rem) {
    #pricing-1262 .cs-container {
      flex-direction: row;
      justify-content: space-between;
      gap: 1.25rem;
    }
    #pricing-1262 .cs-ul-wrapper {
      width: 62%;
      max-width: 46.25rem;
      flex: none;
    }
    #pricing-1262 .cs-waves-wrapper {
      max-width: 46.25rem;
      width: 100%;
    }
  }
  

  /*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-384 {
    padding: var(--sectionPadding);
    position: relative;
    background-color: var(--primary);
  }
  #cta-384 .cs-background {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-blend-mode: multiply;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-384 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
  #cta-384 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    padding-bottom: 14vw;
  }
  #cta-384 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 27.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #cta-384 .cs-text {
    margin-bottom: 1rem;
  }
  #cta-384 .cs-topper {
    color: var(--secondary);
  }
  #cta-384 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #cta-384 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-384 .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: black;
    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-384 .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-384 .cs-button-solid:hover:before {
    width: 100%;
  } */
  #cta-384 .cs-image-group {
    /* everything is in ems so we can scale the container down with a font size */
    font-size: min(2.6vw, .8em);
    width: 33.9375em;
    height: 28.75em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cta-384 .cs-bucket {
    width: 33.9375em;
    height: auto;
    display: block;
    position: relative;
  }
  #cta-384 .cs-bucket img {
    width: 100%;
    height: auto;
  }
  #cta-384 .cs-powder {
    width: 30.3125em;
    height: auto;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
  }
  #cta-384 .cs-powder img {
    width: 100%;
    height: auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-384 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #cta-384 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #cta-384 .cs-image-group {
    font-size: min(1.45vw, 1em);
  }
}
  
  /*-- -------------------------- -->
  <---          Footer            -->
  <--- -------------------------- -*/
  /* Mobile - 360px */
  @media only screen and (min-width: 0rem) {
    #cs-footer-842 {
      padding: var(--sectionPadding);
      /* 30px - 50px */
      padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
      background-color: #000000;
      position: relative;
      z-index: 2;
    }
    #cs-footer-842 .cs-wave {
      width: 100%;
      height: auto;
      position: absolute;
      left: 0;
      bottom: 99%;
      
      z-index: 5;
    }
    #cs-footer-842 .cs-container {
      width: 100%;
      /* reset on tablet */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
      column-gap: 3rem;
      row-gap: 2rem;
    }
    #cs-footer-842 .cs-logo-group {
      /* takes up all the space, lets the other ul's wrap below it */
      width: 100%;
      position: relative;
    }
    #cs-footer-842 .cs-logo {
      width: 13.125rem;
      height: auto;
      margin: 0 0 1.5rem 0;
      display: block;
    }
    #cs-footer-842 .cs-logo-img {
      width: 100%;
      height: auto;
    }
    #cs-footer-842 .cs-social {
      display: inline-flex;
      justify-content: flex-start;
      gap: 0.75em;
    }
    #cs-footer-842 .cs-social-link {
      width: 2rem;
      height: 2rem;
      background-color: #484848;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      transition: transform 0.3s, background-color 0.3s;
    }
    #cs-footer-842 .cs-social-link:hover {
      background-color: var(--primaryLight);
      transform: translateY(-0.1875rem);
    }
    #cs-footer-842 .cs-social-link:hover .cs-social-img {
      filter: grayscale(1) brightness(1000%);
    }
    #cs-footer-842 .cs-social-img {
      height: 0.75rem;
      width: auto;
      display: block;
    }
    #cs-footer-842 .cs-header {
      font-size: 1.25rem;
      line-height: 1.5em;
      font-weight: 700;
      margin: 0 0 1.25rem 0;
      color: var(--bodyTextColorWhite);
      display: block;
      position: relative;
    }
    #cs-footer-842 .cs-ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    #cs-footer-842 .cs-ul-1 {
      width: 100%;
      max-width: 21.875rem;
      flex-direction: row;
      justify-content: space-between;
      flex-wrap: wrap;
      column-gap: 2rem;
    }
    #cs-footer-842 .cs-ul-1 .cs-li {
      width: 44%;
    }
    #cs-footer-842 .cs-li {
      list-style: none;
    }
    #cs-footer-842 .cs-link {
      font-size: 1rem;
      text-decoration: none;
      line-height: 1.5em;
      text-align: left;
      color: #bababa;
      display: inline-flex;
      align-items: flex-start;
      gap: 0.5rem;
      transition: color 0.3s;
    }
    #cs-footer-842 .cs-link:hover {
      color: var(--primaryLight);
    }
    #cs-footer-842 .cs-icon {
      width: 1.25rem;
      height: auto;
      margin-right: 0.125rem;
      display: block;
    }
    #cs-footer-842 .cs-bottom {
      text-align: center;
      width: 100%;
      max-width: 80rem;
      /* 48px - 64px */
      margin: clamp(3rem, 7vw, 4rem) auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid #484848;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }
    #cs-footer-842 .cs-credit,
    #cs-footer-842 .cs-bottom-link,
    #cs-footer-842 .cs-credit-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      width: auto;
      margin: 0;
      color: #bababa;
      display: inline-block;
      position: relative;
      transition: color 0.3s;
    }
    #cs-footer-842 .cs-credit {
      width: 100%;
    }
    #cs-footer-842 .cs-credit-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      width: auto;
      margin: 0;
      color: #bababa;
      display: inline-block;
      position: relative;
    }
    #cs-footer-842 .cs-credit-link:hover {
      color: var(--primary);
    }
    #cs-footer-842 .cs-bottom-links {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #cs-footer-842 .cs-bottom-link {
      display: flex;
      align-items: center;
    }
    #cs-footer-842 .cs-bottom-link:hover {
      color: var(--primary);
    }
    #cs-footer-842 .cs-bottom-link:last-of-type:before {
      /* seperator */
      content: "";
      width: 1px;
      height: 0.875rem;
      margin: 0 0.75rem;
      background: currentColor;
      opacity: 1;
      display: block;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #cs-footer-842 .cs-container {
      max-width: 80rem;
      /* 48px - 64px */
      row-gap: clamp(3rem, 7vw, 4rem);
    }
    #cs-footer-842 .cs-bottom {
      justify-content: space-between;
      flex-wrap: nowrap;
    }
    #cs-footer-842 .cs-credit {
      text-align: left;
    }
    #cs-footer-842 .cs-bottom-links {
      justify-content: flex-end;
    }
  }
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #cs-footer-842 .cs-container {
      /* pushes all flex children to the top */
      align-items: flex-start;
      justify-content: flex-end;
      flex-wrap: nowrap;
    }
    #cs-footer-842 .cs-logo-group {
      width: 30%;
      max-width: 25rem;
      /* pushes everything to the right of it as far as possible in a flexbox */
      margin-right: auto;
    }
    #cs-footer-842 .cs-text {
      width: 100%;
    }
    #cs-footer-842 .cs-social {
      flex-direction: row;
      position: relative;
      top: auto;
      right: auto;
    }
  }