
:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #744974;
    --primaryLight: #E3D2E3;
    --secondary: #ce9bce;
    --secondaryLight: #f7f3ee;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif ;
}
.skip-to-main-content-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: black;
    color: black;
    opacity: 0;
  }
  .skip-to-main-content-link:focus {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    color:white;
  }
  

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
    font-family: 'Space Grotesk', sans-serif;

}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
    font-family: 'Montserrat', sans-serif;
}

.cs-h3 {
    font-family: 'Space Grotesk',sans-serif;
}

p {
    font-family: 'Montserrat', sans-serif;
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
      transform: translate(-50%, -50%);
      opacity: 1;
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
      transform: translate(-50%, -150%);
      opacity: 0;
  }
  body.scroll #dark-mode-toggle .cs-moon {
      fill: #1a1a1a;
  }
  body.cs-open #dark-mode-toggle .cs-moon {
      fill: #1a1a1a;
  }
  #dark-mode-toggle {
      display: block;
      position: absolute;
      bottom: 1rem;
      right: 4.75rem;
      width: 3rem;
      height: 3rem;
      background: transparent;
      border: none;
      overflow: hidden;
      padding: 0;
      z-index: 1000;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1.25rem;
      height: 1.25rem;
      pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
      z-index: 2;
      transition:
          transform 0.3s,
          opacity 0.3s,
          fill 0.3s;
      fill: #fff;
  }
  #dark-mode-toggle .cs-sun {
      z-index: 1;
      transform: translate(-50%, 100%);
      opacity: 0;
      transition:
          transform 0.3s,
          opacity 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #dark-mode-toggle .cs-moon {
      fill: #1a1a1a;
  }
  #dark-mode-toggle {
      position: relative;
      transform: none;
      bottom: auto;
      right: auto;
      margin: 0;
  }
  #dark-mode-toggle:hover {
      cursor: pointer;
  }
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

body,
html {
  margin: 0;
  padding: 0;
}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  @keyframes floatAnimation {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-0.5rem);
      }
      100% {
          transform: translateY(0);
      }
  }
  @keyframes floatAnimation2 {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-0.7rem);
      }
      100% {
          transform: translateY(0);
      }
  }
  body.cs-open {
      overflow: hidden;
  }
  body.cs-open #cs-navigation:before {
      height: 100%;
  }
  body.cs-open #cs-navigation .cs-toggle:before {
      top: 0px;
      left: -2px;
      opacity: 0.3;
  }
  body.cs-open #cs-navigation .cs-toggle:after {
      bottom: -5px;
      right: -5px;
      opacity: 0.3;
  }
  body.cs-open #cs-navigation .cs-top-bar:before {
      background-color: #000;
  }
  body.cs-open #cs-navigation .cs-top-link {
      color: var(--headerColor);
  }
  body.cs-open #cs-navigation .cs-default {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.cs-open #cs-navigation .cs-onscroll {
      transform: rotateX(360deg);
      opacity: 1;
  }
  body.scroll #cs-navigation:before {
      height: 100%;
  }
  body.scroll #cs-navigation .cs-top-bar {
      height: 0;
  }
  body.scroll #cs-navigation .cs-top-link {
      opacity: 0;
  }
  body.scroll #cs-navigation .cs-default {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.scroll #cs-navigation .cs-onscroll {
      transform: rotateX(360deg);
      opacity: 1;
  }
  #cs-navigation {
      width: 100%;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      position: fixed;
      z-index: 10000;
  }
  #cs-navigation:before {
      /* on scroll background */
      content: "";
      width: 100%;
      height: 0%;
      background: #fff;
      opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
      transition: height 0.3s;
  }
  #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 {
      transform: translateY(0);
      opacity: 1;
  }
  #cs-navigation .cs-top-bar {
      width: 100%;
      height: 3.3125rem;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      transition: height 0.3s;
  }
  #cs-navigation .cs-top-bar:before {
      /* divider line */
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      opacity: 0.1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s;
  }
  #cs-navigation .cs-top-container {
      width: 100%;
      padding: 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3.125rem;
  }
  #cs-navigation .cs-top-contact {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
  }
  #cs-navigation .cs-top-link {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: #f7f7f7;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      transition:
          opacity 0.3s,
          color 0.3s;
  }
  #cs-navigation .cs-link-icon {
      width: 1rem;
      height: auto;
      display: block;
  }
  #cs-navigation .cs-container {
      width: 100%;
      padding: 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }
  #cs-navigation .cs-logo {
      width: 13.0625rem;
      height: auto;
      margin: 0 auto 0 0;
      padding: 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      z-index: 10;
      transform-style: preserve-3d;
      perspective: 500px;
  }
  #cs-navigation .cs-logo img {
      width: 100%;
      height: auto;
      /* 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-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transition:
          opacity 0.3s,
          transform 0.6s;
  }
  #cs-navigation .cs-onscroll {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transform: rotateX(180deg);
      transition:
          opacity 0.3s,
          transform 0.6s;
  }
  #cs-navigation .cs-top-logo {
      display: none;
  }
  #cs-navigation .cs-toggle {
      width: 3rem;
      height: 3rem;
      margin: 0 0 0 auto;
      background-color: var(--primary);
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
  }
  #cs-navigation .cs-toggle:before {
      /* floating bubble when opened */
      content: "";
      width: 70%;
      height: 70%;
      border-radius: 50%;
      border: 1px solid #000;
      opacity: 0;
      position: absolute;
      display: block;
      top: 4px;
      left: 4px;
      z-index: -1;
      animation-name: floatAnimation;
      animation-duration: 7s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      transition:
          left 0.6s,
          top 0.3s,
          opacity 0.6s;
      transition-delay: 0.2s;
  }
  #cs-navigation .cs-toggle:after {
      /* floating bubble when opened */
      content: "";
      width: 50%;
      height: 50%;
      border-radius: 50%;
      border: 1px solid #000;
      opacity: 0;
      position: absolute;
      display: block;
      bottom: 4px;
      right: 4px;
      z-index: -1;
      transition:
          bottom 0.6s,
          right 0.3s,
          opacity 0.6s;
      animation-name: floatAnimation2;
      animation-duration: 5s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      transition-delay: 0.3s;
  }
  #cs-navigation .cs-active .cs-line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
      top: 50%;
      transform-origin: center;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation .cs-active .cs-line3 {
      bottom: 100%;
      opacity: 0;
  }
  #cs-navigation .cs-box {
      /* 24px - 28px */
      width: clamp(1.5rem, 2vw, 1.75rem);
      height: 1rem;
      position: relative;
  }
  #cs-navigation .cs-line {
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #fafbfc;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
      top: 0;
      transform-origin: center;
      transition:
          transform 0.5s,
          top 0.3s,
          left 0.3s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-fill-mode: forwards;
      animation-direction: normal;
  }
  #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-fill-mode: forwards;
      animation-direction: normal;
  }
  #cs-navigation .cs-line3 {
      bottom: 0;
      transition:
          bottom 0.3s,
          opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
      width: 100%;
      height: auto;
      padding-bottom: 3rem;
      opacity: 0;
      background-color: #fff;
      box-shadow: inset rgba(0, 0, 0, 0.05) 0px 8px 24px;
      border-radius: 0 0 1.25rem 1.25rem;
      overflow: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: -1;
      transform: scaleY(0);
      transform-origin: top;
      transition:
          transform 0.4s,
          opacity 0.3s;
  }
  #cs-navigation .cs-ul {
      margin: 0;
      padding: 3rem 0 0 0;
      width: 100%;
      height: auto;
      max-height: 65vh;
      overflow: scroll;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
  }
  #cs-navigation .cs-li {
      width: 100%;
      text-align: center;
      list-style: none;
      margin-right: 0;
      /* transition from these values */
      transform: translateY(-4.375rem);
      opacity: 0;
      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 {
      /* 16px - 24px */
      font-size: clamp(1.5rem, 2.5vw, 1.5rem);
      line-height: 1.2em;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: inline-block;
      position: relative;
      font-family: 'Montserrat',sans-serif;

  }
  #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
      color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
      display: none;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation:before {
      background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-top-bar:before {
      background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-top-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-toggle:before,
  body.dark-mode #cs-navigation .cs-toggle:after {
      border-color: rgba(255, 255, 255, 0.8);
  }
  body.dark-mode #cs-navigation .cs-ul-wrapper {
      background-color: var(--dark);
      box-shadow: inset rgba(255, 255, 255, 0.05) 0px 8px 24px;
  }
  body.dark-mode #cs-navigation .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
  }
  body.dark-mode.scroll #cs-navigation .cs-default {
      transform: rotateX(0deg);
      opacity: 1;
  }
  body.dark-mode.scroll #cs-navigation .cs-onscroll {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.dark-mode.cs-open #cs-navigation .cs-default {
      transform: rotateX(0deg);
      opacity: 1;
  }
  body.dark-mode.cs-open #cs-navigation .cs-onscroll {
      transform: rotateX(180deg);
      opacity: 0;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-li {
      text-align: center;
      width: 100%;
      display: block;
      
  }
  #cs-navigation .cs-dropdown {
      position: relative;
      color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
      height: auto;
      opacity: 1;
      visibility: visible;
      margin: 0.75rem 0 0 0;
      padding: 0.75rem 0;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
      opacity: 1;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-icon {
      transform: translateY(-50%) rotate(-90deg);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
      position: relative;
      transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
      width: 1.5rem;
      height: auto;
      /* makes it black */
      filter: grayscale(1) brightness(20%);
      position: absolute;
      top: 50%;
      right: -1.5rem;
      transform: translateY(-50%);
      transition: transform 0.2s;
  }
  #cs-navigation .cs-drop-ul {
      width: 100%;
      height: 0;
      margin: 0;
      padding: 0;
      background-color: var(--primary);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      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 {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 2vw, 1.25rem);
      color: #fff;
  }
}
/* Dark Mode - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation .cs-drop-icon {
      filter: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-li:hover .cs-drop-icon {
      transform: rotate(-90deg);
  }
  #cs-navigation .cs-dropdown {
      position: relative;
  }
  #cs-navigation .cs-dropdown:hover {
      cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
      transform: scaleY(1);
      opacity: 1;
      visibility: visible;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
      opacity: 1;
      transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
      width: 1.5rem;
      height: auto;
      display: inline-block;
      transition: transform 0.3s;
  }
  #cs-navigation .cs-drop-ul {
      min-width: 12.5rem;
      margin: 0;
      padding: 0;
      background-color: #fff;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
      border-bottom: 5px solid var(--primary);
      border-radius: 0 0 0.625rem 0.625rem;
      box-sizing: border-box;
      /* 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;
      transform: scaleY(0);
      transform-origin: top;
      transition:
          transform 0.3s,
          visibility 0.3s,
          opacity 0.3s;
  }
  #cs-navigation .cs-drop-li {
      list-style: none;
      font-size: 1rem;
      text-decoration: none;
      opacity: 0;
      width: 100%;
      height: auto;
      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-drop-li:nth-of-type(10) {
      transition-delay: 0.5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
      transition-delay: 0.55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
      transition-delay: 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
      transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
      font-size: 1rem;
      white-space: nowrap;
      line-height: 1.5em;
      text-decoration: none;
      width: 100%;
      padding: 0.75rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      color: var(--headerColor);
      display: block;
      transition:
          color 0.3s,
          background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
      background-color: #f7f7f7;
      color: var(--headerColor);
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
      display: none;
  }
}
/* Dark Mode - 1024px */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
      background-color: var(--dark);
      border-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-li.cs-dropdown:hover .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li.cs-dropdown:hover .cs-li-link:hover {
      color: var(--primary);
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  /* on scroll animations */
  body.scroll #cs-navigation {
      /* translate the whole navigation UP by the exact same height as the cs-top-bar (86px) so we can get that off screen and not have a tall clunky navbar. Then we translate the cs-logo DOWN so it lowers itself to be positioned centered in the cs-container, when it's not. It's just an illusion we create */
      transform: translateY(-5.375rem);
  }
  body.scroll #cs-navigation:before {
      height: 100%;
  }
  body.scroll #cs-navigation .cs-logo {
      transform: translateY(5rem);
  }
  body.scroll #cs-navigation .cs-top-bar:before {
      background-color: rgba(0, 0, 0, 0.4);
  }
  body.scroll #cs-navigation .cs-default {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.scroll #cs-navigation .cs-onscroll {
      transform: rotateX(360deg);
      opacity: 1;
  }
  body.scroll #cs-navigation .cs-top-link {
      color: var(--headerColor);
  }
  body.scroll #cs-navigation .cs-li-link {
      color: var(--headerColor);
  }
  body.scroll #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
  }
  body.scroll #cs-navigation .cs-li:hover .cs-li-link {
      color: var(--primary);
  }
  body.scroll #cs-navigation .cs-li.cs-dropdown .cs-li-link {
      color: var(--headerColor);
  }
  body.scroll #cs-navigation .cs-drop-icon {
      filter: grayscale(1) brightness(0);
  }
  #cs-navigation {
      width: 100%;
      padding: 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      position: fixed;
      z-index: 10000;
      transition: transform 0.3s;
  }
  #cs-navigation:before {
      /* on scroll background */
      content: "";
      width: 100%;
      height: 0%;
      background: #fff;
      opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
      transition: height 0.3s;
  }
  #cs-navigation .cs-top-bar {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      height: 120px;
  }
  #cs-navigation .cs-top-bar:before {
      /* divider line */
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      opacity: 0.1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
  }
  #cs-navigation .cs-top-container {
      width: 100%;
      max-width: 80rem;
      padding: 1.25rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 3.125rem;
      position: relative;
      z-index: 1;
  }
  #cs-navigation .cs-top-contact {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1.5rem;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-top-link {
      font-size: 1rem;
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: #f7f7f7;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s;
  }
  #cs-navigation .cs-top-link:hover {
      text-decoration: underline;
  }
  #cs-navigation .cs-link-icon {
      width: 1rem;
      height: auto;
      display: block;
  }
  #cs-navigation .cs-container {
      width: 100%;
      /* same height as the cs-ul-wrapper */
      height: 4.5rem;
      max-width: 80rem;
      margin: auto;
      padding: 0 1rem;
      /* prevents padding from affectin gheight */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1.5rem;
      position: relative;
  }
  #cs-navigation .cs-toggle {
      display: none;
  }
  #cs-navigation .cs-logo {
      width: 18.4%;
      /* height: 2.5rem; */
      /* 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: flex-start;
      position: relative;
      perspective: 500px;
      transform-style: preserve-3d;
      z-index: 100;
      transition: transform 0.3s;
  }
  #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-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transition:
          opacity 0.3s,
          transform 0.6s;
  }
  #cs-navigation .cs-onscroll {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transform: rotateX(180deg);
      transition:
          opacity 0.3s,
          transform 0.6s;
  }
  #cs-navigation .cs-bottom-logo {
      display: none;
  }
  #cs-navigation .cs-ul-wrapper {
      /* absolutely positioned to be dead center */
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
  }
  #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: 1.5rem 0;
      /* prevent flexbox from squishing it */
      flex: none;
      font-family: 'Montserrat',sans-serif;

  }
  #cs-navigation .cs-li-link {
      /* 14px - 16px */
      font-size: clamp(1.5rem, 0.6vw, 1rem);
      line-height: 1.5rem;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColorWhite);
      display: flex;
      align-items: center;
      position: relative;
      transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
      color: var(--primaryLight);
  }
  #cs-navigation .cs-li-link.cs-active {
      color: var(--primaryLight);
  }
  #cs-navigation .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 2rem;
      border-radius: 3rem;
      overflow: hidden;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #fff;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
      color: #1a1a1a;
  }
  #cs-navigation .cs-button-solid:hover:before {
      width: 100%;
  }
  #cs-navigation .cs-nav-button {
      line-height: 2.875rem;
  }
}
/* Dark Mode - 1024px */
@media only screen and (min-width: 64rem) {
  body.dark-mode.scroll #cs-navigation .cs-li.cs-dropdown .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation:before {
      background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-default {
      transform: rotateX(0deg);
      opacity: 1;
  }
  body.dark-mode #cs-navigation .cs-onscroll {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.dark-mode #cs-navigation .cs-top-bar:before {
      background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-top-link,
  body.dark-mode #cs-navigation .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
  }
  body.dark-mode #cs-navigation .cs-li:hover .cs-li-link {
      color: var(--primary);
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
      filter: none;
  }
}

                              

                                  

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-2rem);
      }
      100% {
          transform: translateY(0);
      }
  }
  @keyframes floatAnimation2 {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-3rem);
      }
      100% {
          transform: translateY(0);
      }
  }
  #landing {
      /* 250px - 500px - leaving extra space for the navigation */
      padding: clamp(15.625rem, 35.95vw, 25rem) 1rem 0;
      /* 200px - 250px */
      padding-bottom: clamp(12.5rem, 16.5vw, 15.625rem);
      box-sizing: border-box;
      overflow: hidden;
      position: relative;
      z-index: 1;
  }
  #landing:before {
      /* Overlay */
      content: "";
      width: 100%;
      height: 30%;
      background: -webkit-gradient(
          linear,
          left top,
          left bottom,
          from(#000000),
          to(rgba(0, 0, 0, 0))
      );
      background: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
      background: linear-gradient(
          to bottom,
          #000000 0%,
          rgba(0, 0, 0, 0) 100%
      );
      opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 2;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
  }
  #landing .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
  }
  #landing .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      max-width: 39.375rem;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
  }
  #landing .cs-topper {
      font-size: 1.25rem;
      line-height: 1.2em;
      text-transform: uppercase;
      text-align: inherit;
      letter-spacing: 0.1em;
      font-weight: 700;
      color: #e8e8e8;
      margin-bottom: 0.5rem;
      display: block;
  }
  #landing .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 700;
      line-height: 1.2em;
      text-align: inherit;
      max-width: 20ch;
      margin: 0 0 1rem 0;
      color: #fff;
      position: relative;

  }
  #landing .cs-text {
      font-size: 1.25rem;
      line-height: 1.5em;
      text-align: inherit;
      width: 100%;
      /* 464px - 622px */
      max-width: clamp(29rem, 60vw, 38.785rem);
      margin: 0 0 2.5rem 0;
      color: #e8e8e8;
  }
  #landing .cs-button-solid {
      font-size: 1rem;
      line-height: 3.5rem;
      text-decoration: none;
      font-weight: 700;
      overflow: hidden;
      margin: 0;
      color: #fff;
      padding: 0 3rem;
      border-radius: 1.875rem;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
  }
  #landing .cs-button-solid:before {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 0%;
      background: #fff;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
  }
  #landing .cs-button-solid:hover {
      color: var(--primary);
  }
  #landing .cs-button-solid:hover:before {
      width: 100%;
  }
  #landing .cs-bubbles {
      /* this scales the children inside of it down. They're all in ems so they pull from the parent font size for their value of em, in this case, the value of em is tied to the viewwidth size and stops growing when the font size is equal to 1em, which it pulls from the nearst parent with a declred font size (which is the html tag, and that tag is 16px by default) */
      font-size: min(2vw, 0.5em);
      position: absolute;
      z-index: -1;
  }
  #landing .cs-bubbles1 {
      width: 42.5em;
      height: 45.25em;
      right: -11.875rem;
      /* changes to 172 at large desktop */
      top: 0;
  }
  #landing .cs-bubbles1:before {
      /* white border bubble */
      content: "";
      width: 38.875em;
      height: 38.875em;
      background: transparent;
      border: 1px solid #fff;
      border-radius: 50%;
      opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      animation-name: floatAnimation;
      animation-duration: 7s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
  }
  #landing .cs-bubbles1:after {
      content: "";
      width: 34.125em;
      height: 34.125em;
      background: var(--primary);
      opacity: 0.8;
      border-radius: 50%;
      display: block;
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -1;
      animation-name: floatAnimation2;
      animation-duration: 10s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
  }
  #landing .cs-bubbles2 {
      width: 20.625rem;
      height: 29.75rem;
      /* changes to 160px at larger desktop */
      left: -13.75rem;
      /* removed at larger desktop */
      bottom: -16.25rem;
  }
  #landing .cs-bubbles2:before {
      /* white border bubble */
      content: "";
      width: 20.625rem;
      height: 20.625rem;
      background: transparent;
      border: 1px solid #fff;
      border-radius: 50%;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      right: 0;
      animation-name: floatAnimation;
      animation-duration: 5s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
  }
  #landing .cs-bubbles2:after {
      content: "";
      width: 16.25rem;
      height: 16.25rem;
      background: var(--primary);
      opacity: 0.8;
      border-radius: 50%;
      display: block;
      position: absolute;
      top: 0;
      right: 2.5rem;
      z-index: -1;
      animation-name: floatAnimation2;
      animation-duration: 14s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
  }
  #landing .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
  }
  #landing .cs-background:before {
      /* Overlay */
      content: "";
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0.4;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 1;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
  }
  #landing .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      /* makes the top of the image start at the top of the parent */
      object-position: top;
      filter: brightness(0.35);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #landing .cs-container {
      align-items: flex-start;
  }
  #landing .cs-content {
      text-align: left;
      align-items: flex-start;
  }
  #landing .cs-bubbles {
      font-size: 1em;
  }
  #landing .cs-bubbles1 {
      /* changes to auto at large desktop */
      right: -26.75rem;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #landing .cs-bubbles1 {
      /* 200px - 450px */
      margin-left: clamp(12.5rem, 20vw, 28.125rem);
      top: 10.75rem;
      right: auto;
      left: 50%;
  }
}
/* Large Desktop Parallax Effect - 1600px */
@media only screen and (min-width: 100rem) {
  #landing .cs-background {
    background: url("../assets/home/iphone-1852901_640.jpg");
    background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
  }
  #landing .cs-background img {
      display: none;
  }
}
/* Larger Desktop - 1800px */
@media only screen and (min-width: 112.5rem) {
  #landing .cs-bubbles2 {
      margin-right: 50rem;
      right: 50%;
      left: auto;
      top: 13.125rem;
      bottom: auto;
  }
}

                              
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

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

    #service-overview .cs-title,
    #service-overview .cs-text {
        max-width: 100%;
    }
    #service-overview .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #service-overview .cs-item {
        width: 100%;
        text-align: center;
        list-style: none;
        /* margin top value to match the negative margin value of the .cs-icon-wrapper */
        margin: 2.75rem 0 0 0;
        /* 24px - 64px bottom */
        /* 24px - 40px left & right */
        padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 6vw, 1rem);
        background-color: #f7f3ee;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        grid-column: span 12;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #service-overview .cs-item:hover .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    #service-overview .cs-item:hover .cs-item-text {
        color: var(--bodyTextColorWhite);
        opacity: 0.9;
    }
    #service-overview .cs-item:hover .cs-background {
        opacity: 1;
    }
    #service-overview .cs-icon-wrapper {
        width: 5.5rem;
        height: 5.5rem;
        margin: -2.75rem 0 2.25rem 0;
        background-color: var(--primary);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }
    #service-overview .cs-icon {
        width: 2.5rem;
        height: auto;
    }
    #service-overview .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: bold;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #service-overview .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        max-width: 18.75rem;
        margin: 0 0 2rem 0;
        padding: 0;
        color: var(--bodyTextColor);
    }
    #service-overview .cs-link {
        text-decoration: none;
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: bold;
        margin: 0;
        padding: 0;
        color: var(--primary);
        position: relative;
        transition: color 0.3s;
        background-color: #f7f3ee;
    }
    #service-overview .cs-link:hover {
        color: #fff;
    }
    #service-overview .cs-link:before {
        /* underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0rem;
        left: 0;
    }
    #service-overview .cs-background {
        width: 100%;
        height: 100%;
        opacity: 0;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: opacity 0.3s;
    }
    #service-overview .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #1a1a1a;
        opacity: 0.84;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #service-overview .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
    #service-overview .cs-waves {
        width: 100%;
        height: 13.875rem;
        background-color: var(--primary);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
    #service-overview .cs-waves img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #service-overview .cs-container {
        max-width: 90rem;
    }
    #service-overview .cs-item {
        grid-column: span 6;
    }
}
/* Large Desktop - 1024px */
@media only screen and (min-width: 81.25rem) {
    #service-overview .cs-item {
        grid-column: span 3;
    }
}
  /*-- -------------------------- -->
<---           Quote            -->
<--- -------------------------- -*/

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

    #quote .cs-topper:before {
        /* yellow line */
        content: "";
        width: 3.125rem;
        height: 2px;
        background: var(--secondary);
        opacity: 1;
        display: block;
    }
    #quote .cs-quote {
        /* 31px - 49px */
        font-size: 1.5rem;
        line-height: 1.2em;
        font-weight: 900;
        margin: 0;
        color: var(--headerColor);
    }
    #quote .cs-name {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.7vw, 1.25rem);
        line-height: 1.2em;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        color: var(--secondary);
        display: block;
        letter-spacing: 0.01em;
    }
}

/* TESTING  */
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services {
        background-color: #fff;
        padding: var(--sectionPadding);
    }
    #services .cs-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        /* changes to 1440px at large desktop */
        max-width: calc(824 / 16 * 1rem);
        width: 100%;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services .cs-content {
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        width: 100%;
        /* set text align to left if content needs to be left aligned */
        text-align: center;
    }

    #services .cs-title {
        max-width: 20ch;
    }
    #services .cs-card-group {
        display: grid;
        align-items: stretch;
        grid-template-columns: repeat(12, 1fr);
        margin: 0;
        width: 100%;
        padding: 0;
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #services .cs-item {
        z-index: 1;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: #f7f3ee;
        width: 100%;
        list-style: none;
        text-align: left;
        grid-column: span 12;
    }
    #services .cs-item:hover .cs-picture img {
        transform: scale(1.2);
    }
    #services .cs-item:hover .cs-h3,
    #services .cs-item:hover .cs-link {
        color: var(--primary);
    }
    #services .cs-item:hover .cs-arrow {
        filter: initial;
    }
    #services .cs-picture {
        position: relative;
        display: block;
        /* 180px - 240px */
        height: clamp(11.25rem, 24vw, 15rem);
        width: 100%;
        /* clips the image from overflowing parent on hover */
        overflow: hidden;
    }
    #services .cs-picture img {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        transition: transform 0.65s;
    }
    #services .cs-info {
        display: flex;
        flex-direction: column;
        padding: calc(24 / 16 * 1rem);
    }
    #services .cs-h3 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        line-height: 1.5em;
        font-weight: 700;
        color: var(--headerColor);
        transition: background-color 0.3s;
        text-align: center;
        margin: 0 0 calc(12 / 16 * 1rem) 0;
        transition: color 0.3s;
    }
    #services .cs-item-text {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        color: black;
        text-align: center;
        margin: 0;
    }
    #services .cs-link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-decoration: none;
        font-size: calc(16 / 16 * 1rem);
        line-height: 1.2em;
        font-weight: 700;
        color: var(--headerColor);
        text-align: inherit;
        margin-top: calc(20 / 16 * 1rem);
        transition: color 0.3s;
    }
    #services .cs-link:hover .cs-arrow {
        transform: translateX(0.25rem);
    }
    #services .cs-arrow {
        filter: grayscale(1) brightness(0);
        display: block;
        height: auto;
        width: calc(20 / 16 * 1rem);
        transition:
            filter 0.3s,
            transform 0.3s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services .cs-item {
        grid-column: span 6;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #services .cs-container {
        max-width: calc(1440 / 16 * 1rem);
    }
    #services .cs-item {
        grid-column: span 3;
    }
}

/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #connect {
      padding: var(--sectionPadding);
    }
    #connect .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #connect .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;
    }
    #connect .cs-title,
    #connect .cs-text {
      max-width: 100%;
    }
    #connect .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin: 0 0 2rem 0;
    }
    #connect .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;
    }
    #connect .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;
    }
    #connect .cs-button-solid:hover:before {
      width: 100%;
    }
  }
          
  /*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/
/* 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: black;
      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;
    }
  }
                                  
                                
/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #websites-blog {
      padding: var(--sectionPadding);
    }
    #websites-blog .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #websites-blog .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;
    }
    #websites-blog .cs-title,
    #websites-blog .cs-text {
      max-width: 100%;
    }
    #websites-blog .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin: 0 0 2rem 0;
    }
    #websites-blog .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: 1.875rem;
      overflow: hidden;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
    }
    #websites-blog .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;
    }
    #websites-blog .cs-button-solid:hover:before {
      width: 100%;
    }
  }
                                  
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pl-essentials {
      padding: var(--sectionPadding);
      background-color: #f7f7f7;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #pl-essentials .cs-container {
      width: 100%;
      max-width: 80em;
      margin: auto;
      display: flex;
      flex-direction: column;
      justify-content: stretch;
      align-items: center;
    }
    #pl-essentials .cs-content {
      text-align: center;
      width: auto;
      max-width: 72.5rem;
      padding: 1.5rem 1rem 7.5rem;
      /* clips the pseudo element */
      overflow: hidden;
      border: 1px solid var(--primary);
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
      position: relative;
    }
    #pl-essentials .cs-content ul {
        text-align: left;
    }
    #pl-essentials .cs-topper {
      color: var(--secondary);
    }
    #pl-essentials .cs-card-group {
      list-style: none;
      width: 100%;
      /* 48px - 64px */
      margin: clamp(3rem, 6vw, 4rem) 0 0;
      padding: 0;
      display: grid;
      justify-items: center;
      grid-template-columns: repeat(2, 1fr);
      /* 16px - 20px */
      column-gap: clamp(1rem, 2vw, 1.25rem);
      /* 32px - 40px */
      row-gap: clamp(2rem, 4vw, 2.5rem);
    }
    #pl-essentials .cs-item {
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* 16px - 24px */
      gap: clamp(1rem, 2vw, 1.5rem);
    }
    #pl-essentials .cs-item:hover .cs-icon {
      filter: invert(1) brightness(1000%);
    }
    #pl-essentials .cs-item:hover .cs-wrapper {
      background-color: var(--primary);
      border-color: var(--primary);
    }
    #pl-essentials .cs-wrapper {
      width: fit-content;
      padding: 1.875rem;
      border: 1px solid #e8e8e8;
      border-radius: 6.25rem;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s, border-color 0.3s;
    }
    #pl-essentials .cs-icon {
      width: 3rem;
      height:3rem;
      display: block;
    }
    #pl-essentials .cs-h3 {
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0;
      color: var(--headerColor);
    }
    #pl-essentials .cs-picture {
      width: 100%;
      height: 36.5625rem;
      margin: -3.75rem 0 0;
      /* clips the img corners */
      overflow: hidden;
      display: block;
      position: relative;
      z-index: 1;
    }
    #pl-essentials .cs-picture img {
      width: 100%;
      height: 100%;
      /* adding padding to the img allows us to offset the sides of the image */
      padding: 0 1.5rem;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #pl-essentials .cs-container {
      justify-content: center;
      align-items: flex-start;
      position: relative;
    }
    #pl-essentials .cs-content {
      text-align: left;
      width: 80%;
      margin: 0;
      /* 32px - 80px */
      padding: clamp(2rem, 6vw, 5rem);
      /* 120px - 300px */
      padding-right: clamp(7.5rem, 21vw, 18.75rem);
      align-items: flex-start;
    }
    #pl-essentials .cs-card-group {
      grid-template-columns: repeat(3, 1fr);
    }
    #pl-essentials .cs-picture {
      /* 224px - 513px */
      width: clamp(14rem, 36vw, 32.0625rem);
      height: 100%;
      position: absolute;
      top: 3.75rem;
      right: 0;
      bottom: 0;
    }
    #pl-essentials .cs-picture img {
      /* 32px - 100px */
      padding: clamp(2rem, 7vw, 6.25rem) 0;
    }
  }
      
  /*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-essentials {
        padding: var(--sectionPadding);
        /* clips the cs-floater and prevents it from causing overflow issues */
        overflow: hidden;
        background-color: #f7f7f7;
        position: relative;
        z-index: 1;
    }
    #pricing-essentials .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 3vw, 4rem);
    }
    #pricing-essentials .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #pricing-essentials .cs-content .goals {
        text-align: left;
    }

    #pricing-essentials .cs-title {
        max-width: 20ch;
    }
    #pricing-essentials .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #pricing-essentials .cs-item {
        text-align: center;
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
    }
    #pricing-essentials .cs-item.cs-popular .cs-flex {
        background-color: var(--primary);
    }
    #pricing-essentials .cs-item.cs-popular .cs-tag {
        display: flex;
    }
    #pricing-essentials .cs-item.cs-popular .cs-package,
    #pricing-essentials .cs-item.cs-popular .cs-price,
    #pricing-essentials .cs-item.cs-popular .cs-duration {
        color: var(--bodyTextColorWhite);
    }
    #pricing-essentials .cs-item.cs-popular .cs-duration {
        opacity: 0.8;
    }
    #pricing-essentials .cs-item.cs-popular .cs-button-transparent {
        background-color: var(--primary);
        color: #fff;
        transition:
            color 0.3s,
            border-color 0.6s,
            background-color 0.3s;
    }
    #pricing-essentials .cs-item.cs-popular .cs-button-transparent:hover {
        border-color: #1a1a1a;
        background-color: #1a1a1a;
    }
    #pricing-essentials .cs-flex {
        /* 196px - 250px */
        width: clamp(12.25rem, 25vw, 15.625rem);
        height: clamp(12.25rem, 25vw, 15.625rem);
        margin-bottom: -6.25rem;
        border-radius: 19%;
        background-color: #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #pricing-essentials .cs-tag {
        font-size: 0.8125rem;
        color: var(--headerColor);
        text-transform: uppercase;
        /* keeps the text in one line, won't jump to two lines */
        white-space: nowrap;
        font-weight: 700;
        padding: 0.5rem;
        gap: 0.25rem;
        border-radius: 50px;
        background-color: #fff;
        /* clips the corners of the pseudo element */
        overflow: hidden;
        display: none;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        bottom: -0.25rem;
        transform: translateX(-50%);
    }
    #pricing-essentials .cs-tag:before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.3;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #pricing-essentials .cs-icon {
        width: 1.25rem;
        height: auto;
        display: flex;
    }
    #pricing-essentials .cs-package {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        /* 4px - 8px */
        margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
    }
    #pricing-essentials .cs-price {
        /* 31px - 49px */
        font-size: clamp(1.9375rem, 4vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: inherit;
        margin: 0;
        padding: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    #pricing-essentials .cs-duration {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        text-align: inherit;
        margin: 0;
        /* 4px - 8px */
        padding: clamp(0.25rem, 1vw, 0.5rem) 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #pricing-essentials .cs-info {
        width: 100%;
        padding: 5.375rem 2.5rem 2.5rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #pricing-essentials .cs-ul {
        width: 100%;
        margin: 2.5rem 0 2.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        position: relative;
    }
    #pricing-essentials .cs-li {
        font-size: 1rem;
        list-style: none;
        line-height: 1.5em;
        font-weight: 400;
        text-align: inherit;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #pricing-essentials .cs-li.cs-disabled {
        opacity: 0.5;
    }
    #pricing-essentials .cs-button-transparent {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: var(--primary);
        padding: 0 3rem;
        border-radius: 1.875rem;
        border: 1px solid var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #pricing-essentials .cs-button-transparent:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #pricing-essentials .cs-button-transparent:hover {
        color: var(--bodyTextColorWhite);
        border-color: #1a1a1a;
    }
    #pricing-essentials .cs-button-transparent:hover:before {
        width: 100%;
    }
    #pricing-essentials .cs-button-transparent {
        /* this is the section specific override if you choose to pull out the cs-button-transparent and place it in a global stylesheet to resue acorss the entire site */
        margin-top: auto;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pricing-essentials .cs-container {
        max-width: 80rem;
    }
    #pricing-essentials .cs-container .cs-card-group {
        flex-direction: row;
        align-items: stretch;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #pricing-essentials .cs-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    #pricing-essentials .cs-content {
        text-align: left;
        width: 47%;
        align-items: flex-start;
    }
    #pricing-essentials .cs-info {
        min-height: 27rem;
    }
}

                                
                                
  /* END TESTING */


/*-- -------------------------- -->
<---          beyond websites           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #beyondweb {
      padding: var(--sectionPadding);
    }
    #beyondweb .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #beyondweb .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;
    }
    #beyondweb .cs-title,
    #beyondweb .cs-text {
      max-width: 100%;
    }
    #beyondweb .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin: 0 0 2rem 0;
    }
    #beyondweb .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;
    }
    #beyondweb .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;
    }
    #beyondweb .cs-button-solid:hover:before {
      width: 100%;
    }
  }
                                  

/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #steps-584 {
      padding: var(--sectionPadding);
      background-color: var(--primary);
    }
    #steps-584 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #steps-584 .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;
    }
    #steps-584 .cs-title {
      color: var(--bodyTextColorWhite);
    }
    #steps-584 .cs-card-group {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    #steps-584 .cs-item {
      list-style: none;
      min-height: 18.125rem;
      /* 16px - 24px left & right */
      padding: 1rem clamp(1rem, 1.8vw, 1.5rem);
      border-bottom: 1px solid var(--bodyTextColorWhite);
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #steps-584 .cs-item:last-of-type {
      border: none;
    }
    #steps-584 .cs-h3 {
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.2em;
      text-align: left;
      margin: 0 0 0.75rem 0;
      color: var(--bodyTextColorWhite);
      display: block;
    }
    #steps-584 .cs-item-text {
      font-size: 1rem;
      line-height: 1.5em;
      text-align: left;
      margin: 0;
      color: var(--bodyTextColorWhite);
    }
    #steps-584 .cs-number {
      font-size: 3.8125rem;
      font-weight: 900;
      line-height: 1.2em;
      /* auto pushes against other elements in a flexbox, this one forces it to be at the bottom of the flexbox */
      margin: auto 0 0 0;
      color: var(--bodyTextColorWhite);
      display: block;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #steps-584 .cs-container {
      max-width: 80rem;
    }
    #steps-584 .cs-card-group {
      flex-direction: row;
      flex-wrap: wrap;
    }
    #steps-584 .cs-item {
      width: 48%;
    }
    #steps-584 .cs-item:nth-of-type(3) {
      border-bottom: none;
    }
  }
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #steps-584 .cs-card-group {
      flex-wrap: nowrap;
    }
    #steps-584 .cs-item {
      border-bottom: none;
      border-right: 1px solid var(--bodyTextColorWhite);
    }
  }
                                  
/*-- -------------------------- -->
<---         CS-Content         -->
<--- -------------------------- -*/

/* you can place this CSS group in your global stylesheet that is loaded on every page of the site so all you need to do is copy and paste the HTML into any section and it will all work. Or piece it inside the media queries in whatever section you want to add it to. You can also remove the cs-topper, cs-title, and cs-text and if they aren't already in your global stylesheet you can paste them outside these media queries so all cs-topper, cs-title, and cs-text on your site will pull from 1 place. */

/* Mobile */
@media only screen and (min-width: 0rem) {
    #cs-content-831 {
        /* 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;
        background-color: #f7f7f7;
        padding: var(--sectionPadding);
    }
    #cs-content-831 .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;
    }
    #cs-content-831 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #cs-content-831 .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

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

    #pricing-387 .cs-text {
        /* 48px - 64px */
        margin-bottom: clamp(3rem, 3vw, 4rem);
    }
    #pricing-387 .cs-toggle-group {
        width: 12.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #pricing-387 .cs-plan {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        padding: 0;
        color: var(--headerColor);
    }
    #pricing-387 .cs-plan:hover {
        cursor: pointer;
    }
    #pricing-387 .cs-toggle {
        width: 3.5rem;
        height: 1.75rem;
        border-radius: 2.5rem;
        background-color: var(--primary);
        margin: 0 0.75rem;
        position: relative;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #pricing-387 .cs-toggle:hover {
        cursor: pointer;
    }
    #pricing-387 .cs-toggle.active:before {
        opacity: 1;
    }
    #pricing-387 .cs-toggle.active .cs-toggle-switch {
        left: 2rem;
    }
    #pricing-387 .cs-toggle:before {
        /* top right box */
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #ffff -24.69%, var(--primary) 70.23%);
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        border-radius: 2.5rem;
        transition: opacity 0.3s;
    }
    #pricing-387 .cs-toggle-switch {
        width: 1.25rem;
        height: 1.25rem;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.25rem;
        transition: left 0.3s;
        background: #fff;
    }
    #pricing-387 .cs-option-group {
        position: relative;
        /* these two create the 3D illusion */
        perspective: 700px;
        transform-style: preserve-3d;
    }
    #pricing-387 .cs-option-group.option2-active .cs-option1-text {
        opacity: 0;
        transform: scaleY(0);
    }
    #pricing-387 .cs-option-group.option2-active .cs-option2-text {
        top: 0;
        opacity: 1;
    }
    #pricing-387 .cs-option1-text {
        transform-origin: center center;
        transition:
            opacity 0.3s,
            transform 0.3s;
    }
    #pricing-387 #cs-option2-387 {
        position: relative;
    }
    #pricing-387 #cs-option2-387:before {
        /* squiggle arrow */
        content: "";
        position: absolute;
        display: block;
        height: 1.75rem;
        width: 1.75rem;
        background: url("https://csimg.nyc3.digitaloceanspaces.com/Pricing/sqiggle-arrow.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
        top: -0.3125rem;
        right: -2rem;
    }
    #pricing-387 #cs-option2-387:after {
        /* percentage off */
        content: "lower monthly $";
        font-size: 0.75rem;
        line-height: 1.625rem;
        text-transform: uppercase;
        font-weight: 500;
        width: auto;
        height: 1.625rem;
        padding: 0 0.75rem;
        border-radius: 0.5rem;
        background: #e5f2ff;
        box-sizing: border-box;
        color: var(--primary);
        opacity: 1;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        top: -1.875rem;
        right: -4.25rem;
    }
    #pricing-387 .cs-option2-text {
        /* push the text down, outside of the group wrapper and animate back up */
        opacity: 0;
        position: absolute;
        left: 0;
        top: 1.875rem;
        transition:
            opacity 0.3s,
            top 0.6s cubic-bezier(0.42, 0, 0.16, 1.39);
    }
    #pricing-387 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #pricing-387 .cs-item {
        list-style: none;
        /* 20px - 32px top & bottom */
        /* 16px - 32px left & right */
        padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.4vw, 2rem);
        width: 100%;
        max-width: 39.375rem;
        border-radius: 1rem;
        background: #fff;
        border: 1px solid #e8e8e8;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #pricing-387 .cs-item:nth-of-type(2) {
        background-color: #f7f7f7;
    }
    #pricing-387 .cs-item:nth-of-type(2) .cs-option2-text,
    #pricing-387 .cs-item:nth-of-type(2) .cs-option1-text {
        transition-delay: 0.1s;
    }
    #pricing-387 .cs-popular {
        background: var(--primary);
        position: relative;
        /* clips the popular tag */
        overflow: hidden;
        /* send to the top */
        order: -1;
    }
    #pricing-387 .cs-popular:before {
        /* Most Popular Tag */
        content: "Popular";
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.8125rem;
        font-weight: 700;
        width: 10.625rem;
        padding: 0 0.75rem;
        color: var(--bodyTextColorWhite);
        background-color: var(--secondary);
        position: absolute;
        display: block;
        top: 1.25rem;
        right: -3.75rem;
        transform: rotate(42deg);
    }
    #pricing-387 .cs-popular .cs-h3,
    #pricing-387 .cs-popular .cs-item-text,
    #pricing-387 .cs-popular .cs-price,
    #pricing-387 .cs-popular .cs-included,
    #pricing-387 .cs-popular .cs-li,
    #pricing-387 .cs-popular .cs-small {
        color: var(--bodyTextColorWhite);
    }
    #pricing-387 .cs-popular .cs-button-solid {
        background-color: #fff;
        color: var(--primary);
        transition: color 0.3s;
    }
    #pricing-387 .cs-popular .cs-button-solid:before {
        background-color: var(--secondary);
    }
    #pricing-387 .cs-popular .cs-button-solid:hover {
        color: #fff;
    }
    #pricing-387 .cs-popular .cs-li-img {
        /* turns the check mark white */
        filter: brightness(900%);
    }
    #pricing-387 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem;
        padding: 0;
        color: var(--headerColor);
    }
    #pricing-387 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        /* 16px - 24px */
        margin: 0 0 clamp(1rem, 2vw, 1.5rem);
        padding: 0;
        color: var(--bodyTextColor);
    }
    #pricing-387 .cs-option-group {
        position: relative;
        width: 100%;
    }
    #pricing-387 .cs-option-group:after {
        /* top right box */
        content: "";
        width: 100%;
        height: 1px;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        background: linear-gradient(
            90deg,
            rgba(232, 232, 232, 0.2) 0%,
            #e8e8e8 53.78%,
            rgba(232, 232, 232, 0.2) 100%
        );
        opacity: 1;
        position: relative;
        display: block;
    }
    #pricing-387 .cs-price {
        font-size: 3.0625rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--headerColor);
        /* spans are inline, need to add block for margin to work */
        display: block;
        width: 100%;
    }
    #pricing-387 .cs-small {
        font-size: 0.875rem;
        font-weight: 400;
        color: #4e4b66;
    }
    #pricing-387 .cs-included {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        /* 16px - 24px */
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        color: var(--headerColor);
        display: block;
    }
    #pricing-387 .cs-ul {
        padding: 0;
        margin: 0;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
    }
    #pricing-387 .cs-li {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        list-style: none;
        padding: 0;
        margin: 0 0 0.75rem;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #pricing-387 .cs-li:last-of-type {
        margin-bottom: 0;
    }
    #pricing-387 .cs-disabled {
        /* fades out list items that are disabled from the price tier */
        filter: invert(1);
    }
    #pricing-387 .cs-li-img {
        width: 1.25rem;
        height: auto;
        margin-top: 0.1875rem;
        margin-right: 0.5rem;
    }
    #pricing-387 .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 1.5rem;
        background-color: 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;
    }
    #pricing-387 .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;
    }
    #pricing-387 .cs-button-solid:hover:before {
        width: 100%;
    }
    #pricing-387 .cs-button-solid {
        /* cs-button-solid override */
        width: 100%;
        margin: 0 0 1rem 0;
    }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
    #pricing-387 .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        flex-wrap: nowrap;
    }
    #pricing-387 .cs-item {
        width: 100%;
        /* ensures they stay the same height if you add more content */
        align-self: stretch;
    }
    #pricing-387 .cs-popular {
        /* send back to its original order */
        order: unset;
    }
    #pricing-387 #cs-option2-387:before {
        top: -0.625rem;
    }
    #pricing-387 #cs-option2-387:after {
        top: -2.1875rem;
        right: -6.25rem;
    }
}
/* Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #pricing-387 .cs-top-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    #pricing-387 .cs-top-section:after {
        /* top right box */
        content: "";
        width: 100%;
        height: 1px;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        background: linear-gradient(
            90deg,
            rgba(232, 232, 232, 0.2) 0%,
            #e8e8e8 53.78%,
            rgba(232, 232, 232, 0.2) 100%
        );
        opacity: 1;
        position: relative;
        display: block;
    }
    #pricing-387 .cs-option-group {
        margin-right: 5rem;
    }
    #pricing-387 .cs-option-group:after {
        display: none;
    }
    #pricing-387 .cs-ul {
        /* splits the list into 2 columns */
        columns: 2;
        column-gap: 6.875rem;
    }
}

                                    





/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

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

    #pricing-356 .cs-text {
        /* 48px - 64px */
        margin-bottom: clamp(3rem, 3vw, 4rem);
    }
    #pricing-356 .cs-toggle-group {
        width: 12.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #pricing-356 .cs-plan {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        padding: 0;
        color: var(--headerColor);
    }
    #pricing-356 .cs-plan:hover {
        cursor: pointer;
    }
    #pricing-356 .cs-toggle {
        width: 3.5rem;
        height: 1.75rem;
        border-radius: 2.5rem;
        background-color: var(--primary);
        margin: 0 0.75rem;
        position: relative;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #pricing-356 .cs-toggle:hover {
        cursor: pointer;
    }
    #pricing-356 .cs-toggle.active:before {
        opacity: 1;
    }
    #pricing-356 .cs-toggle.active .cs-toggle-switch {
        left: 2rem;
    }
    #pricing-356 .cs-toggle:before {
        /* top right box */
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #E3D2E3 -24.69%, var(--primaryLight) 126.23%);
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        border-radius: 2.5rem;
        transition: opacity 0.3s;
    }
    #pricing-356 .cs-toggle-switch {
        width: 1.25rem;
        height: 1.25rem;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.25rem;
        transition: left 0.3s;
        background: #fff;
    }
    #pricing-356 .cs-option-group {
        position: relative;
        /* hides the second options when it leaves the container */
        overflow: hidden;
        /* these two create the 3D illusion */
        perspective: 700px;
        transform-style: preserve-3d;
    }
    #pricing-356 .cs-option-group.option2-active .cs-option1-text {
        opacity: 0;
        transform: scaleY(0);
    }
    #pricing-356 .cs-option-group.option2-active .cs-option2-text {
        top: 0;
        opacity: 1;
    }
    #pricing-356 .cs-option1-text {
        transform-origin: center center;
        transition:
            opacity 0.3s,
            transform 0.3s;
    }
    #pricing-356 #cs-option2-356 {
        position: relative;
    }
    #pricing-356 #cs-option2-356:before {
        /* squiggle arrow */
        content: "";
        position: absolute;
        display: block;
        height: 1.75rem;
        width: 1.75rem;
        background: url("https://csimg.nyc3.digitaloceanspaces.com/Pricing/sqiggle-arrow.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
        top: -0.3125rem;
        right: -2rem;
    }
    #pricing-356 #cs-option2-356:after {
        /* percentage off */
        content: "Great Value";
        font-size: 0.75rem;
        line-height: 1.625em;
        /* text-transform: uppercase; */
        font-weight: 500;
        width: auto;
        height: 1.625rem;
        padding: 0 0.75rem;
        border-radius: 0.5rem;
        background: #e5f2ff;
        box-sizing: border-box;
        color: var(--primary);
        opacity: 1;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        top: -1.875rem;
        right: -4.25rem;
    }
    #pricing-356 .cs-option2-text {
        /* push the text down, outside of the group wrapper and animate back up */
        opacity: 0;
        position: absolute;
        left: 0;
        top: 1.875rem;
        transition:
            opacity 0.3s,
            top 0.6s cubic-bezier(0.42, 0, 0.16, 1.39);
    }
    #pricing-356 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #pricing-356 .cs-item {
        list-style: none;
        /* 20px - 32px top & bottom */
        /* 16px - 32px left & right */
        padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.4vw, 2rem);
        width: 100%;
        max-width: 25.8125rem;
        border-radius: 1rem;
        background: #fff;
        border: 1px solid #e8e8e8;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #pricing-356 .cs-item:nth-of-type(2) .cs-option2-text,
    #pricing-356 .cs-item:nth-of-type(2) .cs-option1-text {
        transition-delay: 0.1s;
    }
    #pricing-356 .cs-item:nth-of-type(3) .cs-option2-text,
    #pricing-356 .cs-item:nth-of-type(3) .cs-option1-text {
        transition-delay: 0.2s;
    }
    #pricing-356 .cs-popular {
        background: var(--primary);
        position: relative;
        /* clips the popular tag */
        overflow: hidden;
        /* send to the top */
        order: -1;
    }
    #pricing-356 .cs-popular:before {
        /* Most Popular Tag */
        content: "Popular";
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.8125em;
        font-weight: 700;
        width: 10.625rem;
        padding: 0 0.75rem;
        color: black;
        background-color: var(--primaryLight);
        position: absolute;
        display: block;
        top: 1.25rem;
        right: -3.75rem;
        transform: rotate(42deg);
    }
    #pricing-356 .cs-popular .cs-h3,
    #pricing-356 .cs-popular .cs-item-text,
    #pricing-356 .cs-popular .cs-price,
    #pricing-356 .cs-popular .cs-included,
    #pricing-356 .cs-popular .cs-li,
    #pricing-356 .cs-popular .cs-small {
        color: var(--bodyTextColorWhite);
    }
    #pricing-356 .cs-popular .cs-button-solid {
        background-color: #fff;
        color: var(--primary);
        transition: color 0.3s;
    }
    #pricing-356 .cs-popular .cs-button-solid:before {
        background-color: black;
    }
    #pricing-356 .cs-popular .cs-button-solid:hover {
        color: #fff;
    }
    #pricing-356 .cs-popular .cs-li-img {
        /* turns the check mark white */
        filter: brightness(900%);
    }
    #pricing-356 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem;
        padding: 0;
        color: var(--headerColor);
    }
    #pricing-356 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        /* 16px - 24px */
        margin: 0 0 clamp(1rem, 2vw, 1.5rem);
        padding: 0;
        color: var(--bodyTextColor);
    }
    #pricing-356 .cs-option-group {
        position: relative;
    }
    #pricing-356 .cs-option-group:after {
        /* top right box */
        content: "";
        width: 100%;
        height: 1px;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
        background: linear-gradient(
            90deg,
            rgba(232, 232, 232, 0.2) 0%,
            #e8e8e8 53.78%,
            rgba(232, 232, 232, 0.2) 100%
        );
        opacity: 1;
        position: relative;
        display: block;
    }
    #pricing-356 .cs-price {
        font-size: 3.0625rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--headerColor);
        /* spans are inline, need to add block for margin to work */
        display: block;
    }
    #pricing-356 .cs-small {
        font-size: 0.875rem;
        font-weight: 400;
        color: #4e4b66;
    }
    #pricing-356 .cs-included {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        /* 16px - 24px */
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        color: var(--headerColor);
        display: block;
    }
    #pricing-356 .cs-ul {
        padding: 0;
        margin: 0;
        /* 32px - 40px */
        margin-bottom: clamp(2rem, 4vw, 2.5rem);
    }
    #pricing-356 .cs-li {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        list-style: none;
        padding: 0;
        margin: 0 0 0.75rem;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #pricing-356 .cs-li:last-of-type {
        margin-bottom: 0;
    }
    #pricing-356 .cs-disabled {
        /* fades out list items that are disabled from the price tier */
        filter: grayscale(1);
        opacity: 0.3;
    }
    #pricing-356 .cs-li-img {
        width: 1.25rem;
        height: auto;
        margin-top: 0.1875rem;
        margin-right: 0.5rem;
    }
    #pricing-356 .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 1.5rem;
        background-color: 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;
    }
    #pricing-356 .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;
    }
    #pricing-356 .cs-button-solid:hover:before {
        width: 100%;
    }
    #pricing-356 .cs-button-solid {
        /* cs-button-solid override */
        width: 100%;
        margin: 0 0 1rem 0;
    }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
    #pricing-356 .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #pricing-356 .cs-item {
        width: 100%;
        /* ensures they stay the same height if you add more content */
        align-self: stretch;
    }
    #pricing-356 .cs-popular {
        /* send back to its original order */
        order: unset;
    }
    #pricing-356 #cs-option2-356:before {
        top: -0.625rem;
    }
    #pricing-356 #cs-option2-356:after {
        top: -2.1875rem;
        right: -6.25rem;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #pricing-356 {
        background-color: var(--dark);
    }
    body.dark-mode #pricing-356 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #pricing-356 .cs-title,
    body.dark-mode #pricing-356 .cs-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #pricing-356 .cs-plan {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #pricing-356 .cs-item {
        background: var(--accent);
        border-color: var(--medium);
    }
    body.dark-mode #pricing-356 .cs-popular {
        background: var(--primary);
    }
    body.dark-mode #pricing-356 .cs-h3,
    body.dark-mode #pricing-356 .cs-item-text,
    body.dark-mode #pricing-356 .cs-price,
    body.dark-mode #pricing-356 .cs-included,
    body.dark-mode #pricing-356 .cs-li,
    body.dark-mode #pricing-356 .cs-small {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #pricing-356 .cs-li-img {
        /* make so bright it turns white */
        filter: brightness(900%) grayscale(1);
    }
}

                                   
/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1376 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
    /* clips the waves and lines from cause overflow issues */
    overflow: hidden;
    /* setting the row groups to display: contents causes the child cs-items to "appear" as direct children of the parent .cs-card-group */
    /* therefore, we can set the order of the .cs-items between rows, changing it between mobile and desktop */
  }
  #steps-1376 .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1376 .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;
  }
  #steps-1376 .cs-topper {
    color: #767676;
  }
  #steps-1376 .cs-title {
    max-width: 25ch;
    margin: 0;
  }
  #steps-1376 .cs-group1,
  #steps-1376 .cs-group2 {
    /* the contents of this div are no longer its children. This div acts as if it doesn't exist and their content is now children of the next level parent, in this case, the cs-card-group. That way they can all be arranged together as children under 1 parent div instead of children in two different parent divs */
    display: contents;
  }
  #steps-1376 .cs-card-group {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
    position: relative;
  }
  #steps-1376 .cs-group1 {
    display: contents;
  }
  #steps-1376 .cs-group1 .cs-item:nth-of-type(1) {
    order: 1;
  }
  #steps-1376 .cs-group1 .cs-item:nth-of-type(2) {
    order: 3;
  }
  #steps-1376 .cs-group1 .cs-item:nth-of-type(3) {
    order: 5;
  }
  #steps-1376 .cs-group2 {
    display: contents;
  }
  #steps-1376 .cs-group2 .cs-item:nth-of-type(1) {
    order: 2;
  }
  #steps-1376 .cs-group2 .cs-item:nth-of-type(2) {
    order: 4;
  }
  #steps-1376 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 15rem;
    height: 15rem;
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 1.5rem;
    background-color: #f4f4f4;
    /* clips the :before element from being clickable when it's outside the item and triggering the hover animation */
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s, border-color 0.3s;
  }
  #steps-1376 .cs-item:before {
    content: "";
    width: 9.25rem;
    height: 9.25rem;
    background: #fff;
    opacity: 0;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    left: -7.25rem;
    transform: translateY(6.25rem);
    transition: left 0.3s, transform 0.3s, opacity 0.3s;
  }
  #steps-1376 .cs-item:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  #steps-1376 .cs-item:hover:before {
    opacity: 0.2;
    left: -1rem;
    transform: translateY(0);
  }
  #steps-1376 .cs-item:hover .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  #steps-1376 .cs-item:hover .cs-h3,
  #steps-1376 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  #steps-1376 .cs-item:hover .cs-text {
    opacity: 0.8;
  }
  #steps-1376 .cs-picture {
    width: 6.25rem;
    height: auto;
    margin: 0 0 0.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #steps-1376 .cs-icon {
    width: 2rem;
    height: auto;
  }
  #steps-1376 .cs-h3 {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #steps-1376 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s, opacity 0.3s;
  }
  #steps-1376 .cs-waves {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-1376 .cs-card-group {
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  #steps-1376 .cs-group1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  #steps-1376 .cs-group2 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
  }
  #steps-1376 .cs-item {
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #steps-1376 .cs-waves {
    width: 4.4375rem;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #steps-1376 .cs-waves img {
    width: 100%;
    height: auto;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #steps-1376 .cs-card-group {
    flex-direction: column;
  }
  #steps-1376 .cs-group1 {
    width: 100%;
    /* -8px to -30px, we put the clamp in a calc function to turn it into a negative number and pull down to cause the overlapping effect */
    margin-bottom: calc(clamp(.5rem, 2vw, 1.875rem)*-1);
    flex-direction: row;
  }
  #steps-1376 .cs-group2 {
    width: 100%;
    /* -8px to -30px */
    margin-top: calc(clamp(.5rem, 2vw, 1.875rem)*-1);
    flex-direction: row;
  }
  #steps-1376 .cs-waves {
    width: 110vw;
    max-width: 120rem;
    height: auto;
  }
  #steps-1376 .cs-waves:before {
    /* left continuation line */
    content: "";
    width: 50vw;
    height: 4px;
    background: #e8e8e8;
    opacity: 1;
    display: block;
    position: absolute;
    top: 5.25rem;
    right: 100%;
  }
  #steps-1376 .cs-waves:after {
    /* Right continuation line */
    content: "";
    width: 50vw;
    height: 4px;
    background: #e8e8e8;
    opacity: 1;
    display: block;
    position: absolute;
    top: 5.25rem;
    left: 100%;
  }
}
                                
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews {
      padding: var(--sectionPadding);
    }
    #reviews .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #reviews .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;
    }
    #reviews .cs-title,
    #reviews .cs-text {
      max-width: 100%;
    }
    #reviews .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin: 0 0 2rem 0;
    }
    #reviews .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;
    }
    #reviews .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;
    }
    #reviews .cs-button-solid:hover:before {
      width: 100%;
    }
  }
  /*-- -------------------------- -->
<---          Portfolio           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #portfolio {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        /* Prevents overflow from the image going off screen */
        overflow: hidden;
    }
    #portfolio .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #portfolio .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;
    }

    #portfolio .cs-topper {
        color: var(--primary);
    }
    #portfolio .cs-image-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 1fr;
        /* 16px - 60px */
        gap: clamp(1rem, 4.3vw, 3.75rem);
    }
    #portfolio .cs-link {
        text-decoration: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #portfolio .cs-item {
        list-style: none;
        width: 100%;
        height: 100%;
        margin: 0;
        grid-column: span 12;
    }
    #portfolio .cs-item:hover .cs-h3,
    #portfolio .cs-item:hover .cs-desc {
        color: #fff;
    }
    #portfolio .cs-item:hover .cs-item-text {
        background-color: var(--primary);
    }
    #portfolio .cs-item:hover .cs-icon-wrapper {
        border-color: #fff;
    }
    #portfolio .cs-item:hover .cs-icon {
        filter: brightness(1000%) grayscale(1);
    }
    #portfolio .cs-picture {
        width: 100%;
        /* 344px - 420px */
        height: clamp(21.5rem, 30vw, 26.25rem);
        margin: auto;
        border-radius: 1.5rem;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #portfolio .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #portfolio .cs-item-text {
        /* 16px - 20px top & bottom, 16px - 40px left & right */
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.8vw, 2.5rem);
        background-color: #f7f7f7;
        border-radius: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* makes the item text the element that grows to fill the container */
        flex-grow: 1;
        gap: 1rem;
        transition: background-color 0.3s;
    }
    #portfolio .cs-flex {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    #portfolio .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 1.8vw, 1.5625rem);
        line-height: 1.2em;
        text-align: left;
        margin: 0;
        color: #1a1a1a;
        transition: color 0.3s;
    }
    #portfolio .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.2vw, 1rem);
        line-height: 1.5em;
        color: #1a1a1a;
        transition: color 0.3s;
    }
    #portfolio .cs-icon-wrapper {
        width: 3rem;
        height: 3rem;
        border: 1px solid #bababa;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents the parent flexbox from shrinking the icon */
        flex-shrink: 0;
        transition: border-color 0.3s;
    }
    #portfolio .cs-icon {
        width: auto;
        height: 0.75rem;
        transition: filter 0.3s;
    }
    #portfolio .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: 9.375rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        overflow: hidden;
        padding: 0 1.5rem;
        color: #fff;
        background-color: var(--primary);
        border-radius: 3rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #portfolio .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;
    }
    #portfolio .cs-button-solid:hover:before {
        width: 100%;
    }
    #portfolio .cs-bubbles {
        width: 25.9375rem;
        height: 34.125rem;
        position: absolute;
        right: -10.25rem;
        bottom: -2.875rem;
        z-index: -1;
    }
    #portfolio .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 21.3125rem;
        height: 21.3125rem;
        background: transparent;
        opacity: 1;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
    #portfolio .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 21.3125rem;
        height: 21.3125rem;
        background: var(--primary);
        opacity: 0.1;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
    #portfolio .cs-item {
        grid-column: span 6;
    }
    #portfolio .cs-picture img {
        object-fit: contain;
    }
}

                                
                                  

/*-- -------------------------- -->
<---           ABOUT            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #about {
        padding: var(--sectionPadding);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #about .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #about .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #about .cs-title {
        /* 23 characters wide including spaces */
        max-width: 26ch;
    }
    #about .cs-text {
        margin-bottom: 1rem;
    }
    #about .cs-text:last-of-type {
        margin-bottom: 1.5rem;
    }
    #about .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
        align-items: center;
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #about .cs-item {
        list-style: none;
        /* 16px - 24px */
        padding: clamp(1rem, 3vw, 1.5rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #about .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    #about .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #about .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #about .cs-ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #about .cs-li {
        font-size: var(--bodyFontSize);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        /* push icon top the top so if the list item goes to two lines the icon stays at the top */
        align-items: flex-start;
        gap: 0.5rem;
    }
    #about .cs-icon {
        width: 1.5rem;
        height: auto;
        /* adds extra space between the icon and top of parent so it's more centered */
        margin-top: 1px;
        display: block;
    }
    #about .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #about .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #about .cs-button-solid:hover {
        color: var(--primary);
    }
    #about .cs-button-solid:hover:before {
        width: 100%;
    }
    #about .cs-image-group {
        width: 100%;
        max-width: 36.625rem;
        /* Changes to auto at desktop */
        /* 32px - 48px */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        position: relative;
    }
    #about .cs-background {
        width: 100%;
        height: 100%;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #about .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: contain;
        display: block;
        filter: none;
    }
    #about .cs-box {
        text-align: left;
        width: 100%;
        max-width: 19rem;
        padding: 2rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        /* 48px - 80px */
        border-radius: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: absolute;
        /* 12px - 20px */
        right: clamp(0.75rem, 1.9vw, 1.5rem);
        /* 12px - 20px */
        bottom: clamp(0.75rem, 1.9vw, 1.5rem);
    }
    #about .cs-box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #about .cs-desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #about .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 26.1875em;
        height: 26.6875em;
        position: absolute;
        /* reset at larger desktop */
        right: -16.25em;
        /* changes to 30px at desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #about .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 20.625em;
        height: 20.625em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #about .cs-bubbles:after {
        content: "";
        width: 16.25em;
        height: 16.25em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #about .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #about .cs-image-group {
        height: auto;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #about .cs-bubbles {
        font-size: min(2.5vw, 1em);
        right: -6.25rem;
        bottom: 0rem;
    }
}
/* Large Desktop 1600px */
@media only screen and (min-width: 100rem) {
    #about .cs-bubbles {
        margin-right: 46.875rem;
        left: auto;
        right: 50%;
    }
}

                                
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer {
      padding: var(--sectionPadding);
      /* 30px - 50px */
      padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
      background-color: #1a1a1a;
      position: relative;
    }
    #footer .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
      column-gap: 4.25rem;
    }
    #footer .cs-logo-group {
      /* takes up all the space, lets the other ul's wrap below it */
      width: 100%;
      /* 40px - 60px */
      margin: 0 0 clamp(2.5rem, 7vw, 3.75rem);
      position: relative;
    }
    #footer .cs-logomark {
      width: auto;
      height: 6.25rem;
      opacity: 0.5;
    }
    #footer .cs-title {
      /* 31px - 39px */
      font-size: clamp(1.9375rem, 7vw, 3.0625rem);
      max-width: 23ch;
      margin: 3rem 0 0.5rem;
      color: var(--bodyTextColorWhite);
    }
    #footer .cs-outline {
      /* 31px - 39px */
      font-size: clamp(1.9375rem, 1vw, 2.4375rem);
      text-transform: uppercase;
      font-weight: 900;
      line-height: 1.2em;
      color: #1a1a1a;
      /* text outline styles */
      -webkit-text-stroke: 1px var(--primary);
    }
    #footer .cs-header {
      font-size: 1.5625rem;
      font-weight: 700;
      line-height: 1.5em;
      margin: 0 0 1rem 0;
      color: var(--bodyTextColorWhite);
      display: block;
      position: relative;
    }
    #footer .cs-logo {
      width: 13.5625rem;
      height: auto;
    }
    #footer .cs-text {
      max-width: 25.75rem;
      margin: 1rem 0 0;
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
    }
    #footer .cs-ul-wrapper {
      margin: 0 0 3.75rem;
    }
    #footer .cs-ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    #footer .cs-ul-contact {
      /* 32px - 40px */
      margin: clamp(2rem, 5vw, 2.5rem) 0 0;
      gap: 2rem;
    }
    #footer .cs-li {
      list-style: none;
    }
    #footer .cs-contact {
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.2em;
      text-decoration: none;
      color: var(--bodyTextColorWhite);
    }
    #footer .cs-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-align: left;
      text-decoration: none;
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
      display: inline-flex;
      align-items: flex-start;
      gap: 0.5rem;
      transition: color 0.3s;
    }
    #footer .cs-link:hover {
      color: var(--primaryLight);
    }
    #footer .cs-bottom {
      width: 100%;
      max-width: 80rem;
      /* 28px - 40px */
      margin: 0 auto;
      padding-top: clamp(1.75rem, 3vw, 2.5rem);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
    }
    #footer .cs-credit,
    #footer .cs-bottom-link,
    #footer .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: var(--bodyTextColorWhite);
      opacity: 0.8;
      display: inline-block;
      position: relative;
      transition: color 0.3s;
    }
    #footer .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: inherit;
      display: inline-block;
      position: relative;
    }
    #footer .cs-credit-link:hover {
      color: var(--primary);
    }
    #footer .cs-bottom-links {
      display: flex;
    }
    #footer .cs-bottom-link {
      display: flex;
      align-items: center;
    }
    #footer .cs-bottom-link:hover {
      color: var(--primary);
    }
    #footer .cs-bottom-link:last-of-type:before {
      /* separator */
      content: "";
      width: 1px;
      height: 0.875rem;
      margin: 0 0.75rem;
      background: currentColor;
      opacity: 1;
      display: block;
    }
  }
  /* Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #footer .cs-container {
      justify-content: flex-end;
    }
    #footer .cs-logo-group {
      width: fit-content;
      margin: 0;
      margin-right: auto;
    }
    #footer .cs-ul-wrapper {
      margin: 0;
    }
    #footer .cs-bottom {
      /* 60px - 80px */
      margin-top: clamp(3.75rem, 6vw, 5rem);
    }
  }