  /*-- -------------------------- -->
  <---     Mobile Navigation      -->
  <--- -------------------------- -*/
  
  /* Mobile - 1023px */
  @media only screen and (max-width: 1299.5px) {
    body.cs-open {
      overflow: hidden;
    }
    #cs-navigation {
      width: 100%;
      padding: 0.75rem 1rem 0 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      background-color: #fff;
      box-shadow: #504545;
      position: fixed;
      z-index: 100;
      transition: transform 0.3s;
    }
    #cs-navigation.cs-active .cs-link {
      color: var(--bodyTextColorWhite);
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
      opacity: 1;
      transform: scaleY(1);
      transition-delay: 0.1s;
    }
    #cs-navigation.cs-active .cs-li {
      transform: translateY(0);
      opacity: 1;
    }
    #cs-navigation.scroll {
      transform: translateY(-3rem);
    }
    #cs-navigation.scroll #dark-mode-toggle {
      top: 4.25rem;
      right: 4.875rem;
    }
    #cs-navigation .cs-location {
      margin: 0;
      padding: 0;
      position: relative;
      transition: height 0.3s, padding-bottom 0.3s, opacity 0.3s;
      z-index: -3;
    }
    #cs-navigation .cs-top-social {
      display: none;
    }
    #cs-navigation .cs-top-bar {
      padding-bottom: 0.75rem;
      position: relative;
      z-index: 1;
    }
    #cs-navigation .cs-top-bar:before {
      /* grey line */
      content: '';
      width: 100vw;
      height: 1px;
      background: #EFF1F0;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 50%;
      z-index: -2;
      transform: translateX(-50%);
      transition: opacity 0.3s;
    }
    #cs-navigation .cs-bottom-bar {
      height: auto;
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    #cs-navigation .cs-logo {
      height: 2.5rem;
      width: auto;
      display: block;
    }
    #cs-navigation .cs-logo img {
      height: 100%;
      width: auto;
    }
    #cs-navigation .cs-logo-wrapper {
      width: auto;
      height: 100%;
      position: relative;
      z-index: 1;
      perspective: 700px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transition: opacity 0.3s, transform 0.6s;
    }
    #cs-navigation .cs-dark {
      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-desktop {
      display: none;
    }
    #cs-navigation .cs-item {
      font-size: 1rem;
      line-height: 1.5rem;
      list-style: none;
      margin: 0;
      color: #585B5D;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
    }
    #cs-navigation .cs-remove {
      display: none;
    }
    #cs-navigation .cs-icon {
      width: 1.25rem;
      height: auto;
      display: block;
    }
    #cs-navigation .cs-header {
      display: none;
    }
    #cs-navigation .cs-link {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-align: inherit;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      transition: color 0.3s;
    }
    #cs-navigation .cs-toggle {
      width: 3rem;
      height: 3rem;
      margin: 0;
      background-color: #F3F3F3;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #cs-navigation .cs-active .cs-line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2 {
      top: 50%;
      transform-origin: center;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    }
    #cs-navigation .cs-active .cs-line3 {
      bottom: 100%;
      opacity: 0;
    }
    #cs-navigation .cs-box {
      width: 1.25rem;
      height: 0.75rem;
      position: relative;
    }
    #cs-navigation .cs-line {
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #585B5D;
      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 {
      width: 0.75rem;
      bottom: 0;
      left: 0;
      transform: none;
      transition: bottom 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-contact-wrapper,
    #cs-navigation .cs-tablet,
    #cs-navigation .cs-button-border {
      display: none;
    }
  }
  /* Tablet - 650px - 1024px */
  @media only screen and (min-width: 40.625rem) and (max-width: 1299.5px) {
    #cs-navigation .cs-location {
      display: flex;
      justify-content: flex-end;
      flex-direction: row;
    }
    #cs-navigation .cs-top-bar {
      padding-bottom: 0.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    #cs-navigation .cs-logo {
      margin-right: auto;
      order: 1;
    }
    #cs-navigation .cs-item {
      position: relative;
    }
    #cs-navigation .cs-item:nth-of-type(2):after {
      display: none;
    }
    #cs-navigation .cs-item:after {
      /* divider line */
      content: '';
      width: 1px;
      height: 100%;
      margin: 0 1rem;
      background: #CFD0D1;
      opacity: 1;
      position: relative;
      display: block;
    }
    #cs-navigation .cs-top-social {
      height: 2rem;
      visibility: visible;
      opacity: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    }
    #cs-navigation .cs-social-link {
      text-decoration: none;
      width: 2rem;
      height: 2rem;
      background-color: #f7f7f7;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #cs-navigation .cs-social-icon {
      width: 0.75rem;
      height: auto;
      opacity: 0.6;
      display: block;
    }
    #cs-navigation .cs-bottom-bar {
      gap: 1rem;
    }
    #cs-navigation .cs-li-link {
      font-size: 1.5rem;
    }
    #cs-navigation .cs-nav-button {
      text-decoration: none;
      margin-right: 2rem;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      order: 2;
      position: relative;
      perspective: 200px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-nav-button:hover .cs-wrapper {
      transform: rotateY(180deg);
    }
    #cs-navigation .cs-nav-button .cs-wrapper {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      /* prevents flexbox from squishing it */
      flex: none;
      position: relative;
      z-index: 1;
      transition: transform 0.6s;
    }
    #cs-navigation .cs-nav-button .cs-wrapper:before {
      /* backgorund color in pseudo so we can use the primary color variable and use opacity */
      content: "";
      width: 100%;
      height: 100%;
      background-color: #F3F3F3;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #cs-navigation .cs-nav-button .cs-icon {
      width: 1.5rem;
      height: auto;
      display: block;
      transition: transform 0.3s;
    }
    #cs-navigation .cs-nav-button .cs-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #cs-navigation .cs-nav-button .cs-header {
      font-size: 0.875rem;
      line-height: 1.5em;
      margin: 0;
      color: #585B5D;
      display: block;
    }
    #cs-navigation .cs-nav-button .cs-link-content {
      font-size: 1rem;
      line-height: 1.5em;
      font-weight: 700;
      margin: 0;
      color: var(--headerColor);
      display: block;
    }
    #cs-navigation .cs-nav {
      order: 4;
    }
  }
  /* Inbetween - 1024px */
  @media only screen and (min-width: 1024px) {
    #cs-navigation .cs-bottom-bar {
      justify-content: flex-start;
      padding: 0;
    }
    #cs-navigation .cs-remove {
      display: flex;
    }
    #cs-navigation .cs-toggle {
      display: none;
    }
    #cs-navigation .cs-nav {
      order: 2;
    }
    #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;
      /* 24px - 28px */
      padding: clamp(1.5rem, 2.1vw, 1.75rem) 0;
      /* prevent flexbox from squishing it */
      flex: none;
    }
    #cs-navigation .cs-li:last-of-type {
      /* pushes the button to the far roght */
      margin-left: auto;
      padding: 0;
    }
    #cs-navigation .cs-li-link {
      font-size: 1rem;
      line-height: 1.5em;
      text-transform: uppercase;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: block;
      position: relative;
      transition: color 0.3s;
    }
    #cs-navigation .cs-li-link.cs-active,
    #cs-navigation .cs-li-link:hover {
      color: var(--primary);
    }
    #cs-navigation .cs-nav-button {
      display: none;
    }
  }
  
  /*-- -------------------------- -->
  <---   Mobile Navigation Menu   -->
  <--- -------------------------- -*/
  
  /* Small Desktop - 1024px */
  @media only screen and (max-width: 1023.5px) {
    #cs-navigation .cs-ul-wrapper {
      width: 100%;
      opacity: 0;
      background-color: #fff;
      box-shadow: inset #504545;
      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 3rem 0;
      width: 100%;
      height: auto;
      max-height: 65vh;
      overflow: hidden;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
    }
    #cs-navigation .cs-li {
      text-align: center;
      list-style: none;
      width: 100%;
      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-link {
      /* 16px - 24px */
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      text-transform: uppercase;
      line-height: 1.2em;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: inline-block;
      position: relative;
    }
    #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
    }
  }
  
  /*-- -------------------------- -->
  <---     Desktop Navigation     -->
  <--- -------------------------- -*/
  
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 1300px) {
    #cs-navigation {
      /* 136px tall */
      --headerHeight: 8.5rem;
      width: 100%;
      padding: 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      background-color: #fff;
      box-shadow: #504545;
      display: flex;
      position: fixed;
      z-index: 10000;
      transition: height 0.3s, background-color 0.3s;
    }
    #cs-navigation.scroll .cs-top-bar {
      height: 0;
      opacity: 0;
      overflow: hidden;
    }
    #cs-navigation.scroll .cs-top-bar:before {
      width: 0;
    }
    #cs-navigation.scroll .cs-middle {
      height: 5rem;
    }
    #cs-navigation.scroll .cs-logo,
    #cs-navigation.scroll .cs-contact-wrapper {
      height: 5rem;
    }
    #cs-navigation.scroll .cs-logo img {
      max-height: 5rem;
    }
    #cs-navigation.scroll .cs-toggle {
      margin-top: 0;
    }
    #cs-navigation .cs-toggle {
      display: none;
    }
    #cs-navigation .cs-logo {
      width: 20%;
      max-width: 21.25rem;
      height: var(--headerHeight);
      border-right: 1px solid #E7E7E8;
      padding: 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100;
      transition: height 0.3s;
    }
    #cs-navigation .cs-logo img {
      width: 80%;
      max-width: 16.25rem;
      height: auto;
      max-height: 7.5rem;
      box-sizing: border-box;
      /* 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;
      transition: max-height 0.3s, opacity 0.3s, transform 0.6s;
    }
    #cs-navigation .cs-logo-wrapper {
      width: auto;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      perspective: 700px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
    }
    #cs-navigation .cs-dark {
      position: absolute;
      top: 0;
      left: 50%;
      z-index: -1;
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transform: rotateX(180deg) translateX(-50%);
    }
    #cs-navigation .cs-mobile {
      display: none;
    }
    #cs-navigation .cs-top-bar {
      width: 100%;
      height: 3.5rem;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      transition: height 0.3s, opacity 0.3s, transform 0.3s;
    }
    #cs-navigation .cs-top-bar:before {
      /* grey line */
      content: '';
      height: 1px;
      background: #E7E7E8;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: -2.5rem;
      right: -2.5rem;
      z-index: -2;
      transition: width 0.3s;
    }
    #cs-navigation .cs-top-social {
      height: 2rem;
      visibility: visible;
      opacity: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    }
    #cs-navigation .cs-social-link {
      text-decoration: none;
      width: 2rem;
      height: 2rem;
      background-color: #f7f7f7;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
    }
    #cs-navigation .cs-social-link:hover {
      background-color: var(--primary);
    }
    #cs-navigation .cs-social-icon {
      width: 0.75rem;
      height: auto;
      opacity: 0.6;
      display: block;
    }
    #cs-navigation .cs-location {
      display: flex;
      flex-direction: row;
    }
    #cs-navigation .cs-item {
      list-style: none;
      margin: 0;
      display: flex;
      align-items: center;
      flex: none;
      justify-content: flex-start;
      gap: 0.25rem;
      position: relative;
    }
    #cs-navigation .cs-item:last-of-type:after {
      display: none;
    }
    #cs-navigation .cs-item:hover .cs-picture {
      transform: scale(1.1);
    }
    #cs-navigation .cs-item:after {
      /* divider line */
      content: '';
      width: 1px;
      height: 100%;
      /* 24px - 44px */
      margin: 0 1.5rem;
      background: #EFF1F0;
      opacity: 1;
      position: relative;
      display: block;
    }
    #cs-navigation .cs-link {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-align: inherit;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      transition: color 0.3s;
    }
    #cs-navigation .cs-link:hover {
      text-decoration: underline;
    }
    #cs-navigation .cs-middle {
      width: 100%;
      height: var(--headerHeight);
      padding: 0 2.5rem 0 2.5rem;
      transition: height 0.3s;
    }
    #cs-navigation .cs-nav {
      order: -1;
    }
    #cs-navigation .cs-bottom-bar {
      width: 100%;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 2rem;
    }
    #cs-navigation .cs-desktop-button {
      text-decoration: none;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 1rem;
      order: 2;
      position: relative;
      perspective: 200px;
      transform-style: preserve-3d;
    }
    #cs-navigation .cs-desktop-button:hover .cs-wrapper {
      transform: rotateY(360deg);
    }
    #cs-navigation .cs-wrapper {
      width: 3.5rem;
      height: 3.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      /* prevents flexbox from squishing it */
      flex: none;
      position: relative;
      z-index: 1;
      transition: transform 0.6s;
    }
    #cs-navigation .cs-wrapper:before {
      /* backgorund color in pseudo so we can use the primary color variable and use opacity */
      content: "";
      width: 100%;
      height: 100%;
      background-color: #F3F3F3;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #cs-navigation .cs-button-icon {
      width: 1.25rem;
      height: auto;
      display: block;
      transition: transform 0.3s;
    }
    #cs-navigation .cs-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    #cs-navigation .cs-header {
      font-size: 0.875rem;
      line-height: 1.5em;
      margin: 0;
      color: #585B5D;
      display: block;
    }
    #cs-navigation .cs-link-content {
      font-size: 1rem;
      line-height: 1.5em;
      font-weight: 700;
      margin: 0;
      color: var(--headerColor);
      display: block;
    }
    #cs-navigation .cs-nav-button,
    #cs-navigation .cs-button-border {
      display: none;
    }
    #cs-navigation .cs-contact-wrapper {
      width: 18%;
      max-width: 18.375rem;
      height: var(--headerHeight);
      border-left: 1px solid #E7E7E8;
      display: flex;
      justify-content: center;
      align-items: center;
      flex: none;
      transition: height 0.3s;
    }
  }
  /* Small Desktop - 1500px */
  @media only screen and (min-width: 1500px) {
    #cs-navigation .cs-nav {
      margin-right: auto;
    }
    #cs-navigation .cs-button-border {
      font-size: 1rem;
      line-height: 2.875rem;
      text-decoration: none;
      text-transform: uppercase;
      padding: 0 1.75rem;
      color: var(--headerColor);
      border: 1px solid var(--headerColor);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.625rem;
      transition: color 0.3s, background-color 0.3s;
    }
    #cs-navigation .cs-button-border:hover {
      background-color: var(--headerColor);
      color: #fff;
    }
    #cs-navigation .cs-button-border:hover .cs-icon {
      filter: grayscale(1) brightness(1000%);
    }
    #cs-navigation .cs-button-border .cs-icon {
      width: 1.25rem;
    }
  }
   
  /*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-143 {
        /* Centers button */
        text-align: center;
        /* 144px - 300px - leaving extra space for the navigation */
        padding: clamp(6rem, 19vw, 14rem) 1rem 0;
        /* 130px - 450px */
        padding-bottom: clamp(11rem, 27vw, 24rem);
        position: relative;
        z-index: 1;
        /* Prevents white rectangle pseudos from overlapping the sections below */
        overflow: hidden;
    }
    #hero-143:before {
        /* Left side of the triangle */
        content: "";
        width: 31.25rem;
        /* make really long so it covers the whole screen all the way to desktop */
        height: 250rem;
        background: #fff;
        opacity: 1;
        transform: rotate(-67deg);
        transform-origin: center;
        position: absolute;
        display: block;
        bottom: -139.6875rem;
        /* this makes the right edge sit at the 50% line at all times */
        right: 50%;
        z-index: 0;
    }
    #hero-143:after {
        /* Right side of the triangle */
        content: "";
        width: 31.25rem;
        height: 250rem;
        background: #fff;
        opacity: 1;
        transform: rotate(67deg);
        transform-origin: center;
        position: absolute;
        display: block;
        bottom: -139.6875rem;
        /* this makes the left edge sit at the 50% line at all times */
        left: 50%;
        z-index: 0;
    }
    #hero-143 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-143 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #504545;
        opacity: 0.7;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-143 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #hero-143 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #hero-143 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 auto clamp(1rem, 4vw, 1.5rem);
        color: #fff;
        position: relative;
    }
    #hero-143 .cs-title:after {
        /* Divider Line */
        content: "";
        /* 60px - 100px */
        width: clamp(3.75rem, 9.5vw, 6.25rem);
        /* 4px - 8px */
        height: clamp(0.25rem, 0.8vw, 0.5rem);
        /* 16px - 24px */
        margin: clamp(1rem, 4vw, 1.5rem) auto clamp(1rem, 4vw, 1.5rem);
        background: var(--primary);
        opacity: 1;
        position: relative;
        display: block;
    }
    #hero-143 .cs-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 1.95vw, 1.5625rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 800px */
        max-width: clamp(29rem, 60vw, 50rem);
        margin: 0 auto;
        /* 40px - 48px */
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        color: #fff;
    }
    #hero-143 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        margin: auto;
        color: #1a1a1a;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #hero-143 .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;
    }
    #hero-143 .cs-button-solid:hover {
        color: #fff;
    }
    #hero-143 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Desktop - 1300px (To make image background parallax) */
@media only screen and (min-width: 81.25rem) {
    #hero-143 {
        background: url("assets/images/background.jpg?v=1");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* makes the parallax effect */
        background-attachment: fixed;
    }
    #hero-143 .cs-background img {
        display: none;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #h-services-143 {
        /* 40px - 100px */
        padding: 0 1em clamp(2.5rem, 7.9vw, 6.25rem) 1rem;
        position: relative;
        /* give a higher z index than the hero so it can sit on top */
        z-index: 10;
    }
    #h-services-143 .cs-card-group {
        width: 100%;
        max-width: 29.0625rem;
        margin: 0 auto 0;
        /* negative margin pulls it up on top of the hero section */
        /* -46px to -76px - we're calculating whatever clamp is and multiplying by -1
            to make the value negative since clamp doesn't work with negative values */
        margin-top: calc(clamp(5rem, 20vw, 7rem) * -1);
        /* 40px - 60px top and bottom, 16px - 44px left & right */
        padding: clamp(2.5rem, 4.7vw, 3.75rem) clamp(1rem, 5.3vw, 2.75rem);
        box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.05);
        border-radius: 0.3125rem;
        border-top: 8px solid var(--primary);
        background-color: #fff;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
    }
    #h-services-143 .cs-item {
        list-style: none;
        margin: 0 auto 2rem;
        width: 100%;
        max-width: 22.5rem;
    }
    #h-services-143 .cs-item:last-of-type {
        margin-bottom: 0;
    }
    #h-services-143 .cs-icon {
        /* 68px - 88px */
        width: clamp(4.25rem, 8.8vw, 5.5rem);
        /* 68px - 88px */
        height: clamp(4.25rem, 8.8vw, 5.5rem);
        margin: auto;
        /* 20px - 24px */
        margin-bottom: clamp(1.25rem, 5vw, 1.5rem);
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #h-services-143 .cs-icon img {
        /* 44px - 52px */
        width: clamp(2.75rem, 5.8vw, 3.25rem);
        height: auto;
    }
    #h-services-143 .cs-title {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: center;
        margin: 0 auto 0.5rem;
        color: var(--headerColor);
    }
    #h-services-143 .cs-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5em;
        max-width: 22.5rem;
        margin: 0 auto;
        color: var(--bodyTextColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #h-services-143 .cs-card-group {
        max-width: 49rem;
        /* -76px to -320px - we're calculating whatever clamp is and multiplying by -1
               to make the value negative since clamp doesn't work with negative values */
        margin-top: calc(clamp(4rem, 20vw, 20rem) * -1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 2.5rem;
    }
    #h-services-143 .cs-item {
        width: 45%;
        max-width: 19.625rem;
    }
    #h-services-143 .cs-item:last-of-type {
        margin-bottom: 2rem;
    }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #h-services-143 .cs-card-group {
        max-width: 80rem;
        flex-wrap: nowrap;
    }
    #h-services-143 .cs-item {
        margin: 0;
    }
    #h-services-143 .cs-item:last-of-type {
        margin-bottom: 0;
    }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

  }
  #sbs-578 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 7vw, 4rem);
  }
  #sbs-578 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      max-width: 32.625rem;
      /* moved section padding to the .cs-content so we can have the cs-picture be full width on mobile without the padding preventing it from doing so */
      padding: var(--sectionPadding);
      padding-top: 0;
      /* prevents padding from affecting width and height */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
  }

  #sbs-578 .cs-text {
      margin-bottom: 1rem;
  }
  #sbs-578 .cs-text:last-of-type {
      margin-bottom: 2rem;
  }
  #sbs-578 .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;
  }
  #sbs-578 .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;
  }
  #sbs-578 .cs-button-solid:hover:before {
      width: 100%;
  }
  #sbs-578 .cs-picture {
      display: block;
      position: relative;
      width: 100%;
      height: 18.75rem;
  }
  #sbs-578 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
  }

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-578 {
      padding: var(--sectionPadding);
  }
  #sbs-578 .cs-container {
      flex-direction: row;
      justify-content: flex-start;
      /* 60px - 128px */
      gap: clamp(3.75rem, 10vw, 8rem);
  }
  #sbs-578 .cs-content {
      width: 53%;
      /* reset the padding, add the section padding back to the section container */
      padding: 0;
  }
  #sbs-578 .cs-picture {
      width: 70vw;
      max-width: 50.875rem;
      /* 518px - 700px */
      height: clamp(32.375rem, 63vw, 43.75rem);
      /* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
      margin: 0 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1rem, 2.4vw, 1.75rem);
      position: relative;
  }
  #sbs-578 .cs-picture:before {
      /* yellow box */
      content: "";
      width: 50%;
      height: 60%;
      background: var(--secondary);
      opacity: 1;
      display: block;
      position: absolute;
      /* 16px - 28px, wrapped in calc function to multiple by negative 1 and get a negative clamp value */
      bottom: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
      left: calc(clamp(1rem, 2.4vw, 1.75rem) * -1);
  }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-64 {
      /* Centers Button */
      text-align: center;
      padding: var(--sectionPadding);
      background-color: #ffa200;
  }
  #reviews-64 .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-64 .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-64 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* changes to a clamp at tablet */
      gap: 1.5rem;
  }
  #reviews-64 .cs-item {
      list-style: none;
      width: 100%;
      max-width: 25.8125rem;
      /* padding left & right 16px - 32px */
      padding: 0 clamp(1rem, 2.1vw, 2rem);
      /* 20px - 40px */
      padding-bottom: clamp(1.25rem, 4.7vw, 2.5rem);
      margin: 0;
      background: #fff;
      box-shadow: -1px 21px 39px 0px rgba(0, 0, 0, 0.05);
      /* prevent padding from adding to the height and width */
      box-sizing: border-box;
  }
  #reviews-64 .cs-img {
      /* 116px - 136px */
      width: clamp(7.25rem, 18vw, 8.5rem);
      /* 20px - 24px */
      height: clamp(1.25rem, 3.2vw, 1.5rem);
      margin: 0 auto 1.5rem;
      display: block;
      transform: translateY(-0.8125rem);
  }
  #reviews-64 .cs-name {
      font-size: 1.25rem;
      line-height: 1.2em;
      text-align: center;
      font-weight: 700;
      margin: 0;
      color: var(--headerColor);
      display: block;
  }
  #reviews-64 .cs-desc {
      font-size: 1rem;
      line-height: 1.2em;
      text-align: center;
      margin: 0 0 1rem;
      color: var(--label);
      display: block;
  }
  #reviews-64 .cs-item-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.6vw, 1rem);
      line-height: 1.5em;
      margin: auto;
      color: var(--bodyTextColor);
  }
  #reviews-64 .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: #504545;
      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;
  }
  #reviews-64 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #ffffff;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
  }
  #reviews-64 .cs-button-solid:hover:before {
      width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-64 .cs-card-group {
      flex-direction: row;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      /* 16px - 20px */
      column-gap: clamp(1rem, 1.5vw, 1.25rem);
      row-gap: 2.875rem;
  }
  #reviews-64 .cs-item {
      /* we do this so it's stackable. You can add new any number of reviews you want and they will stack and center in the middle. We dont use grid because if you have an odd number of reviews, they don't stay centered.  They align with their grid lines. If you want 4 reviews in a row, lower the width under 22.5vw to get the desired sizes fit 4 in a row and then stack when you add more*/
      width: clamp(31.5%, 30vw, 32.3%);
  }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-322 {
      padding: var(--sectionPadding);
      position: relative;
      z-index: 1;
  }
  #contact-322 .cs-container {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 34.375em;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 3.25rem;
  }
  #contact-322 .cs-content {
      text-align: left;
  }

  #contact-322 .cs-form {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
  }
  #contact-322 .cs-label {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      width: 100%;
      color: var(--headerColor);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 0.25rem;
  }
  #contact-322 .cs-input {
      font-size: 1rem;
      width: 100%;
      height: 3.5rem;
      padding: 0;
      padding-left: 1.5rem;
      border-radius: 0.5rem;
      color: var(--headerColor);
      background-color: #f7f7f7;
      border: none;
      /* prevents padding from adding to height and width */
      box-sizing: border-box;
  }
  #contact-322 .cs-input::placeholder {
      color: #ffffff;
      opacity: 0.6;
  }
  #contact-322 .cs-textarea {
      min-height: 7.5rem;
      padding-top: 1.5rem;
      margin-bottom: 0.75rem;
      font-family: inherit;
  }
  #contact-322 .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;
  }
  #contact-322 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #ffa200;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
  }
  #contact-322 .cs-button-solid:hover:before {
      width: 100%;
  }
  #contact-322 .cs-submit {
      text-transform: uppercase;
      width: 17.6875rem;
      color: #ffffff;
      background-color: var(--secondaryLight);
      border: none;
      transition: color 0.3s;
  }
  #contact-322 .cs-submit:hover {
      color: #fff;
      cursor: pointer;
  }
  #contact-322 .cs-right {
      width: 100%;
      /* 16px - 24px */
      padding: clamp(1rem, 3.5vw, 1.5rem);
      border-radius: 1.5rem;
      background-color: var(--primary);
      display: flex;
      /* prevents padding from adding to height and width */
      box-sizing: border-box;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      /* 24px - 32px */
      gap: clamp(1.5rem, 4vw, 2rem);
  }
  #contact-322 .cs-map {
      width: 100%;
      /* 300px - 425px */
      height: clamp(18.75rem, 63.4vw, 26.5625rem);
      border-radius: 1.5rem;
      /* clips the corners of the img tag */
      overflow: hidden;
      position: relative;
      display: block;
  }
  #contact-322 .cs-map:before {
      content: "";
      position: absolute;
      display: block;
      /* 32px - 48px */
      width: clamp(2rem, 4vw, 3rem);
      height: clamp(2rem, 4vw, 3rem);
      background: url("");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 1;
      /* 148px - 220px */
      top: clamp(9.25rem, 30.7vw, 13.75rem);
      /* push to the center line of the div */
      left: 50%;
      /* push X amount of pixels from it's current position off the center line */
      margin-left: 0.625rem;
      z-index: 10;
  }
  #contact-322 .cs-map img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
  }
  #contact-322 .cs-contact-group {
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      gap: 1rem;
  }
  #contact-322 .cs-item {
      list-style: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
  }
  #contact-322 .cs-header {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--secondaryLight);
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.25rem;
  }
  #contact-322 .cs-link,
  #contact-322 .cs-hours {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      color: var(--bodyTextColorWhite);
      transition: color 0.3s;
  }
  #contact-322 .cs-link:hover {
      color: var(--secondaryLight);
  }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
  #contact-322 .cs-contact-group {
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-322 .cs-container {
      max-width: 80rem;
      flex-direction: row;
      justify-content: space-between;
      gap: 3.25rem;
  }
  #contact-322 .cs-content {
      max-width: 32.625rem;
  }
  #contact-322 .cs-title,
  #contact-322 .cs-topper {
      text-align: left;
      margin-left: 0;
  }
  #contact-322 .cs-title {
      max-width: 32.625rem;
  }
  #contact-322 .cs-email,
  #contact-322 .cs-phone {
      width: 48%;
  }
  #contact-322 .cs-button-solid {
      margin-left: 0;
  }
  #contact-322 .cs-right {
      width: 51.6%;
      max-width: 41.125rem;
      /* prevent flexbox from squishing it */
      flex: none;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1154 {
      padding: var(--sectionPadding);
      position: relative;
      z-index: 1;
  }
  #footer-1154 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  #footer-1154 .cs-top {
      width: 100%;
      /* 32px - 40px */
      margin-bottom: clamp(2rem, 4vw, 2.5rem);
      padding-bottom: clamp(2rem, 4vw, 2.5rem);
      border-bottom: 1px solid #e8e8e8;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
  }
  #footer-1154 .cs-ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      row-gap: 0.5rem;
      /* 28px - 40px */
      column-gap: clamp(1.75rem, 4vw, 2.5rem);
  }
  #footer-1154 .cs-li {
      list-style: none;
  }
  #footer-1154 .cs-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      transition: color 0.3s;
  }
  #footer-1154 .cs-link:hover {
      color: var(--primary);
  }
  #footer-1154 .cs-logo {
      width: 10.5rem;
      height: auto;
      display: block;
  }
  #footer-1154 .cs-logo-img {
      width: 100%;
      height: auto;
      display: block;
  }
  #footer-1154 .cs-bottom {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
  }
  #footer-1154 .cs-social {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
  }
  #footer-1154 .cs-social-li {
      list-style: none;
  }
  #footer-1154 .cs-social-link {
      width: 2rem;
      height: 2rem;
      background-color: #e8e8e8;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
  }
  #footer-1154 .cs-social-link:hover {
      background-color: var(--primary);
  }
  #footer-1154 .cs-social-link:hover .cs-social-icon {
      filter: grayscale(1) brightness(1000%);
      opacity: 1;
  }
  #footer-1154 .cs-social-icon {
      width: 0.75rem;
      height: auto;
      display: block;
      opacity: 0.6;
      transition: opacity 0.3s;
  }
  #footer-1154 .cs-copyright {
      font-size: 1rem;
      line-height: 1.5em;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
  }
  #footer-1154 .cs-copyright-link {
      font-size: inherit;
      text-decoration: none;
      color: inherit;
      transition: color 0.3s;
  }
  #footer-1154 .cs-copyright-link:hover {
      color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1154 .cs-top {
      flex-direction: row;
      justify-content: space-between;
  }
  #footer-1154 .cs-bottom {
      flex-direction: row;
      justify-content: space-between;
  }
}
                              
                                                           
                              
                                