: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: #e7b53c;
    --primaryLight: #e7b53c;
    --secondary: #e7b53c;
    --secondaryLight: #e7b53c;
    --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;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

*, *: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;
}

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

/* Apply Poppins for Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold */
}

/* Apply Inter for Body Text */
body, p, span, li, a {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
}

/*-- -------------------------- -->
<---     Scroll to Top Button   -->
<--- -------------------------- -*/
.scroll-to-top {
  display: none; /* Initially hidden */
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #e7b53c; /* Gold color matching your theme */
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth animation */
  z-index: 1000;
}

.scroll-to-top.visible {
  display: flex; /* Make it visible */
  justify-content: center;
  align-items: center;
  transform: translateY(0); /* Slide into view */
  opacity: 1; /* Fully visible */
}

.scroll-to-top:hover {
  background-color: #c99629; /* Slightly darker on hover */
  transform: translateY(0) scale(1.1); /* Scale up slightly on hover */
}

.fa-chevron-up:before {
    color: #fff;
}

/*? Content Flair */
/*-- -------------------------- -->
<---         List Style         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    #list-1405 {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #list-1405 .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;
    }
    #list-1405 .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;
    }
}

#list-1405 .cs-li-light {
        font-size: var(--bodyFontSize);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        color: #fff;
        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; */
    }
/*-- -------------------------- -->
<---         Title              -->
<--- -------------------------- -*/

/* 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;
        /* padding-top: 100px; */
    }
    #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);
    }
}

/*-- -------------------------- -->
<---  Scroll to Top Button End  -->
<--- -------------------------- -*/

/* SCROLL-SPY ADDITION: Add these styles to your existing CSS */

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Ensure sections don't get hidden behind fixed header */
section[id] {
  /* Adjust this value based on your header height - accounting for mobile/desktop differences */
  scroll-margin-top: 8rem; /* adjust if needed based on your header height */
}

/* SCROLL-SPY ADDITION: Active state for navigation links */
#cs-navigation .cs-li-link.is-active {
  color: var(--primary);
  font-weight: 700;
}

/* SCROLL-SPY ADDITION: Optional underline animation for active item */
#cs-navigation .cs-li-link {
  position: relative;
}

#cs-navigation .cs-li-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 220ms ease;
}

#cs-navigation .cs-li-link.is-active::after {
  width: 100%;
}

/* SCROLL-SPY ADDITION: Desktop-only scroll-spy (mobile keeps existing cs-active behavior) */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-li-link.cs-active {
    /* Remove the default active styling on desktop, let is-active handle it */
    color: var(--headerColor);
  }
  
  #cs-navigation .cs-li-link.is-active {
    color: var(--primary);
    font-weight: 700;
  }
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
.logo {
    width: auto;
    height: auto;
    max-width: 100%; /* Adjust percentage as needed */
}
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
      overflow: hidden;
    }
    body.scroll #cs-navigation {
      width: 100%;
      max-width: 100%;
      top: 0;
    }
    body.scroll #cs-navigation:before {
      border-radius: 0;
    }
    body.scroll #cs-navigation .cs-ul-wrapper {
      top: 100%;
    }
    #cs-navigation {
      width: 94%;
      max-width: 80rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      /* 12px - 24px */
      padding: clamp(0.75rem, 2vw, 1.5rem);
      /* 12px - 24px */
      border-radius: clamp(0.75rem, 2vw, 1.5rem);
      position: fixed;
      top: 2rem;
      left: 50%;
      z-index: 10000;
      transform: translateX(-50%);
      transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
    }
    #cs-navigation:before {
      /* background color */
      content: "";
      width: 100%;
      height: 100%;
      background: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      opacity: 1;
      /* 12px - 24px */
      border-radius: 2em;
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: transform 0.2s, border-radius 0.3s ease-in-out;
    }
    #cs-navigation.cs-active:before {
      transform: translateX(-50%) scale(1.03);
    }
    #cs-navigation.cs-active .cs-toggle {
      transform: rotate(180deg);
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
      transform: scaleY(1);
      transition-delay: 0.15s;
    }
    #cs-navigation.cs-active .cs-li {
      opacity: 1;
      transform: translateY(0);
    }
    #cs-navigation .cs-container {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1.5rem;
    }
    #cs-navigation .cs-logo {
      width: auto;
      max-width: 12.5rem;
      height: 100%;
      margin: 0 auto 0 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      z-index: 10;
    }
    #cs-navigation .cs-logo img {
      width: 123px;
      height: 64px;
      /* 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-toggle {
      width: 3.5rem;
      height: 3.5rem;
      margin: 0 0 0 auto;
      background-color: #1a1a1a;
      border: none;
      border-radius: 0.25rem;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 10;
      transition: transform 0.6s;
    }
    #cs-navigation .cs-nav {
      /* sends it to the right in the 3rd position */
      order: 3;
    }
    #cs-navigation .cs-contact-group {
      display: none;
      position: relative;
      z-index: 10;
    }
    #cs-navigation .cs-phone {
      font-size: 1rem;
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: #ffffff;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s, color 0.3s;
      background-color: var(--primary);
      padding: 0.7em 1em;
      border-radius: 2em;
      transition: background-color 0.5s ease, box-shadow 0.5s ease;
    }
    #cs-navigation .cs-phone:hover {
      background-color: #1a1a1a;
      transition: 0.5s;
      box-shadow: 0 0 15px #363636; /* Glowing effect */
    }
    #cs-navigation .cs-phone-icon {
      width: 1.5rem;
      height: auto;
      display: block;
    }
    #cs-navigation .cs-social {
      display: none;
    }
    #cs-navigation .cs-active .cs-line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2 {
      top: 50%;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
      transform-origin: center;
    }
    #cs-navigation .cs-active .cs-line3 {
      opacity: 0;
      bottom: 100%;
    }
    #cs-navigation .cs-box {
      /* 24px - 28px */
      width: clamp(1.5rem, 2vw, 1.75rem);
      height: 1rem;
      position: relative;
    }
    #cs-navigation .cs-line {
      width: 100%;
      height: 2px;
      background-color: #fafbfc;
      border-radius: 2px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    #cs-navigation .cs-line1 {
      top: 0;
      transition: transform 0.5s, top 0.3s, left 0.3s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-direction: normal;
      animation-fill-mode: forwards;
      transform-origin: center;
    }
    #cs-navigation .cs-line2 {
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      transition: top 0.3s, left 0.3s, transform 0.5s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-direction: normal;
      animation-fill-mode: forwards;
    }
    #cs-navigation .cs-line3 {
      bottom: 0;
      transition: bottom 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-ul-wrapper {
      width: 100%;
      height: auto;
      padding-bottom: 2.4em;
      background-color: #fff;
      border-radius: 0 0 1.5rem 1.5rem;
      position: absolute;
      top: 85%;
      left: 0;
      z-index: -1;
      overflow: hidden;
      transform: scaleY(0);
      transition: transform 0.4s;
      transform-origin: top;
    }
    #cs-navigation .cs-ul {
      width: 100%;
      height: auto;
      max-height: 65vh;
      margin: 0;
      padding: 4rem 0 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 1.25rem;
      overflow: auto;
    }
    #cs-navigation .cs-li {
      text-align: center;
      list-style: none;
      width: 100%;
      margin-right: 0;
      opacity: 0;
      /* transition from these values */
      transform: translateY(-70/16rem);
      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(1rem, 2.5vw, 1.5rem);
      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);
    }
    #cs-navigation .cs-li-link:hover {
      color: var(--primary);
    }
    #cs-navigation .cs-button-solid {
      display: none;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #cs-navigation .cs-contact-group {
      display: block;
    }
  }
  /*-- -------------------------- -->
  <---     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 {
      color: var(--bodyTextColorWhite);
      position: relative;
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
      height: auto;
      margin: 0.75rem 0 0 0;
      padding: 0.75rem 0;
      opacity: 1;
      visibility: visible;
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
      opacity: 1;
    }
    #cs-navigation .cs-dropdown .cs-li-link {
      position: relative;
      transition: opacity 0.3s;
    }
    #cs-navigation .cs-drop-icon {
      width: 0.9375rem;
      height: auto;
      position: absolute;
      top: 50%;
      right: -1.25rem;
      transform: translateY(-50%);
    }
    #cs-navigation .cs-drop-ul {
      width: 100%;
      height: 0;
      margin: 0;
      padding: 0;
      background-color: var(--primary);
      opacity: 0;
      display: flex;
      visibility: hidden;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 0.75rem;
      overflow: hidden;
      transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
    }
    #cs-navigation .cs-drop-li {
      list-style: none;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 2vw, 1.25rem);
      color: #fff;
    }
  }
  /* Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #cs-navigation .cs-dropdown {
      position: relative;
    }
    #cs-navigation .cs-dropdown:hover {
      cursor: pointer;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-ul {
      opacity: 1;
      visibility: visible;
      transform: scaleY(1);
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-li {
      opacity: 1;
      transform: translateY(0);
    }
    #cs-navigation .cs-drop-icon {
      width: 0.9375rem;
      height: auto;
      display: inline-block;
    }
    #cs-navigation .cs-drop-ul {
      min-width: 12.5rem;
      margin: 0;
      padding: 0;
      background-color: #fff;
      box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
      opacity: 0;
      border-bottom: 5px solid var(--primary);
      border-radius: 0 0 1.5rem 1.5rem;
      visibility: hidden;
      /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
      position: absolute;
      top: 100%;
      z-index: -100;
      overflow: hidden;
      transform: scaleY(0);
      transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
      transform-origin: top;
    }
    #cs-navigation .cs-drop-li {
      font-size: 1rem;
      text-decoration: none;
      list-style: none;
      width: 100%;
      height: auto;
      opacity: 0;
      display: block;
      transform: translateY(-0.625rem);
      transition: opacity 0.6s, transform 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(1) {
      transition-delay: 0.05s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(2) {
      transition-delay: 0.1s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(3) {
      transition-delay: 0.15s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(4) {
      transition-delay: 0.2s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(5) {
      transition-delay: 0.25s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(6) {
      transition-delay: 0.3s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(7) {
      transition-delay: 0.35s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(8) {
      transition-delay: 0.4s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(9) {
      transition-delay: 0.45s;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
      font-size: 1rem;
      line-height: 1.5em;
      text-transform: capitalize;
      text-decoration: none;
      white-space: nowrap;
      width: 100%;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      padding: 0.75rem;
      color: var(--headerColor);
      display: block;
      transition: color 0.3s, background-color 0.3s;
    }
    #cs-navigation .cs-li-link.cs-drop-link:hover {
      color: var(--bodyTextColorWhite);
      background-color: var(--primary);
    }
    #cs-navigation .cs-li-link.cs-drop-link:before {
      display: none;
    }
  }
  /*-- -------------------------- -->
  <---     Desktop Navigation     -->
  <--- -------------------------- -*/
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    body.scroll #cs-navigation {
      width: 100%;
      max-width: 100%;
      border-radius: 0;
      top: 0;
    }
    #cs-navigation {
      width: 94%;
      max-width: 90rem;
      height: 6rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      /* 12px - 24px */
      padding: clamp(0.75rem, 2vw, 1.5rem) 0;
      background-color: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      /* 12px - 24px */
      border-radius: 3em;
      display: flex;
      align-items: center;
      position: fixed;
      top: 2rem;
      left: 50%;
      z-index: 10000;
      transform: translateX(-50%);
      transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
    }
    #cs-navigation .cs-container {
      width: 100%;
      max-width: 90rem;
      margin: auto;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }
    #cs-navigation .cs-toggle {
      display: none;
    }
    #cs-navigation .cs-logo {
      width: 18.4%;
      max-width: 21.875rem;
      height: 2rem;
      /* margin-right auto pushes everything away from it to the right */
      margin: 0 auto 0 0;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      z-index: 100;
    }
    #cs-navigation .cs-logo img {
      width: auto;
      height: 4em;
      /* 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;
      padding-left: 60px;
    }
    #cs-navigation .cs-contact-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
    }
    /* lp */
    #cs-navigation .cs-phone {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: #ffffff;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.3s, color 0.3s;
      background-color: var(--primary);
      padding: 0.7em 1em;
      border-radius: 0.5em;
      transition: background-color 0.5s ease, box-shadow 0.5s ease;
    }
    #cs-navigation .cs-phone:hover {
      background-color: #1a1a1a;
      transition: 0.5s;
      box-shadow: 0 0 15px #363636; /* Glowing effect */
      color: var(--primary);
    }  
    #cs-navigation .cs-phone-icon {
      width: 1.5rem;
      height: auto;
      display: block;
    }
    #cs-navigation .cs-social {
      height: 2rem;
      opacity: 1;
      display: none;
      visibility: visible;
      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: 2.5rem;
      height: 2.5rem;
      background-color: #e9e9e9;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s;
      font-size: 1.4rem;
    }
    #cs-navigation .cs-social-link:hover {
      background-color: var(--primary);
    }
    #cs-navigation .cs-social-link:hover .cs-social-icon {
      opacity: 1;
      filter: grayscale(1) brightness(10000%);
    }
    #cs-navigation .cs-social-icon {
      height: auto;
      opacity: 0.6;
      display: block;
      transition: opacity 0.3s;
      color: #141414;
    }
    #cs-navigation .cs-ul-wrapper {
      height: 100%;
      display: flex;
      align-items: center;
      /* absolutely positioned to be dead center */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    #cs-navigation .cs-ul {
      width: 100%;
      height: 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;
      height: 100%;
      padding: 0;
      display: flex;
      align-items: center;
      /* prevent flexbox from squishing it */
      flex: none;
    }
    #cs-navigation .cs-li-link {
      font-size: 1.2rem;
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: var(--headerColor);
      display: block;
      position: relative;
      transition: color 0.3s;
    }
    #cs-navigation .cs-li-link:hover {
      color: var(--primary);
    }
    /* #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
    } */
    #cs-navigation .cs-button-solid {
      font-size: 1rem;
      font-weight: 700;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-align: center;
      text-decoration: none;
      min-width: 9.375rem;
      margin: 0;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      padding: 0 2rem;
      color: #fff;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    #cs-navigation .cs-button-solid:before {
      content: "";
      width: 0%;
      height: 100%;
      background: #fff;
      opacity: 1;
      position: absolute;
      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%;
    }
  }
  /* Large Desktop - 1300px */
  @media only screen and (min-width: 81.25rem) {
    #cs-navigation .cs-social {
      display: flex;
    }
  }

/*-- -------------------------- -->
<---     Navigation - End       -->
<--- -------------------------- -*/

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-358 {
        /* Centers button */
        text-align: center;
        /* 150px - 350px */
        padding: clamp(9rem, 14vw, 14.875rem) 1rem;
        padding-bottom: 0;
        position: relative;
        z-index: 1;
        /* prevents overflow from the lines extending past the screen width */
        overflow: hidden;
    }
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-1em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.7;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
    @keyframes ripple {
        0% {
            transform: scale(0.8);
            opacity: 1;
        }
        100% {
            transform: scale(2.5);
            opacity: 0;
        }
    }
    #hero-358 {
    background-color: #1a1a1a;
    }    
    #hero-358 .cs-background {
        /* Background Image */
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-358 .cs-background:before {
        /* White Color Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 0.85;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-358 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes image act like a background-image */
        object-fit: cover;
        /* places the top of the image at the top of the parent */
        object-position: top;
    }
    #hero-358 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 48px - 64px */
        gap: clamp(3rem, 7vw, 4rem);
    }
    #hero-358 .cs-flex-group {
        max-width: 39.125rem;
        margin: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        box-sizing: border-box;
    }
    #hero-358 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #hero-358 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: center;
        width: 100%;
        margin: 0 auto 1rem;
        color: var(--headerColor);
        position: relative;
        color: #fafbfc;
    }
    #hero-358 .cs-accent {
        color: var(--primaryLight);
    }
    #hero-358 .cs-text {
        font-size: 1.25rem;
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* changes to 442px at desktop */
        max-width: 43.75rem;
        /* 32px - 40px */
        margin: 0 auto clamp(2rem, 4vw, 2.5rem);
        /* 24px - 40px */
        margin-bottom: 0;
        /* margin-bottom: clamp(1.75rem, 4vw, 2.5rem); */
        color:#c0c0c0
    }
    
    /* Availability Box Styles */
    #hero-358 .cs-availability-box {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1rem auto 1.5rem;
        max-width: fit-content;
        position: relative;
    }
    #hero-358 .cs-availability-blob {
        width: 0.75rem;
        height: 0.75rem;
        background-color: var(--secondary);
        border-radius: 50%;
        margin-right: 0.75rem;
        flex-shrink: 0;
        animation: pulse 2s ease-in-out infinite;
        position: relative;
        z-index: 2;
    }
    #hero-358 .cs-availability-blob::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: var(--secondary);
        animation: ripple 2s infinite;
        z-index: -1;
    }
    #hero-358 .cs-availability-blob::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: var(--secondary);
        animation: ripple 2s infinite 1s;
        z-index: -1;
    }
    #hero-358 .cs-availability-text {
        font-size: 1rem;
        color: var(--secondary);
        margin: 0;
        font-weight: 500;
        text-align: center;
    }
    
    #hero-358 .cs-button-group {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    #hero-358 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        width: 11.25rem;
        text-decoration: none;
        font-weight: 700;
        border-radius: 0.5rem;
        /* clips corners of the before element */
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0;
        background-color: var(--secondary);
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-358 .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;
    }
    #hero-358 .cs-button-solid:hover {
    color:#1a1a1a;
    transition: 0.5s;
    }
    #hero-358 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-358 .cs-button-transparent {
        text-decoration: none;
        width: auto;
        /* 46px - 56px */
        height: clamp(2.875rem, 5.5vw, 3.5rem);
        margin: 0;
        padding: 0;
        color: var(--primaryLight);
        background-color: transparent;
        box-sizing: border-box;
        display: inline-flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    #hero-358 .cs-button-transparent:before {
        /* white hover box */
        content: "";
        /* 46px - 56px */
        width: clamp(2.875em, 5.5vw, 3.5em);
        background: #fff;
        border-radius: 2.5rem;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        transition:
            width 0.3s,
            box-shadow 0.6s;
    }
    #hero-358 .cs-button-transparent:hover .cs-number {
        color: #1a1a1a;
    }
    #hero-358 .cs-button-transparent:hover:before {
        width: 107%;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    #hero-358 .cs-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    #hero-358 .cs-tag {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        margin-bottom: 0.25rem;
        color: #767676;
    }
    #hero-358 .cs-number {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        margin-bottom: 0.25rem;
        color: #fafbfc;
    }
    #hero-358 .cs-number:hover {
        color:#1a1a1a;
    }
    #hero-358 .cs-picture {
        /* 46px - 56px */
        width: clamp(2.875rem, 5.5vw, 3.5rem);
        height: clamp(2.875rem, 5.5vw, 3.5rem);
        margin-right: 0.5rem;
        background-color: var(--primaryLight);
        border-radius: 50%;
        border: 6px solid #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #hero-358 .cs-img {
        width: 1.5rem;
        height: auto;
    }
    #hero-358 .cs-image-group {
        font-size: min(1.6vw, 0.7em);
        /* using ems so we can scale this container with a font size */
        width: 51.9375em;
        height: 42.125em;
        position: relative;
    }
    #hero-358 .cs-splash {
        position: absolute;
        width: 49.4375em;
        height: 38.5em;
        top: 1.25em;
        right: -2.5em;
    }
    #hero-358 .cs-person {
        width: auto;
        height: 100%;
        position: relative;
    }
    #hero-358 .cs-person img {
        width: 100%;
        height: auto;
    }
    #hero-358 .cs-icon-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 7.5em;
        height: 7.5em;
        border-radius: 50%;
        background-color: var(--primaryLight);
        position: absolute;
        left: 4.125em;
        bottom: 6.8125em;
        z-index: 100;
        animation-name: floatAnimation2;
        animation-duration: 4s;
        animation-delay: 0.2s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #hero-358 .cs-icon {
        font-size: clamp(1.5rem, 5vw, 3.25rem); /* Scales dynamically */
        color: #fff;
    }
    
}

/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-358 {
        padding-bottom: 10rem;
    }
    #hero-358 .cs-container {
        flex-direction: row;
        justify-content: flex-start;
    }
    #hero-358 .cs-flex-group {
        justify-content: flex-start;
        margin: 0;
    }
    #hero-358 .cs-topper,
    #hero-358 .cs-title,
    #hero-358 .cs-text {
        text-align: left;
        margin-left: 0;
    }

    #hero-358 .cs-text {
        max-width: 27.625rem;
        margin-bottom: 0;
    }
    
    /* Desktop alignment for availability box */
    #hero-358 .cs-availability-box {
        justify-content: flex-start;
        margin-left: 0;
        margin-top: 1.15rem;
        margin-bottom: 2rem;
    }
    #hero-358 .cs-availability-text {
        text-align: left;
    }
    
    #hero-358 .cs-button-group {
        justify-content: flex-start;
    }
    #hero-358 .cs-image-group {
        font-size: min(1.4vw, 1em);
        position: absolute;
        bottom: -9.375em;
        right: -8.5625em;
    }
}

/* Mobile adjustments */
@media only screen and (max-width: 630px) {
  #hero-358 .cs-topper {
    margin-top: 1.2em;
  }
  
  /* Make availability text smaller on small screens */
  #hero-358 .cs-availability-text {
    font-size: 0.9rem;
  }
  #hero-358 .cs-availability-blob {
    width: 0.625rem;
    height: 0.625rem;
    margin-right: 0.625rem;
  }
}

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

/*-- -------------------------- -->
<---         What I Do         --->
<--- -------------------------- -*/
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #RTsbs-249,
    #RTsbsr-249,
    #RTsbst-249 {
        padding: 0 1em;
        position: relative;
        z-index: 1;
    }
    #RTsbs-249 .cs-container,
    #RTsbsr-249 .cs-container,
    #RTsbst-249 .cs-container {
        width: 100%;
        /* changes to 1280px on tablet */
        max-width: 34.375rem;
        padding: var(--sectionPadding);
        padding-top: 4em;
        padding-left: 0;
        padding-right: 0;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 108px */
        gap: clamp(3rem, 8vw, 6.75rem);
        position: relative;
    }
    #RTsbs-249 .cs-content,
    #RTsbsr-249 .cs-content,
    #RTsbst-249 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        /* changes at tablet */
        max-width: 27.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #RTsbs-249 .cs-title,
    #RTsbsr-249 .cs-title,
    #RTsbst-249 .cs-title {
        max-width: 20ch;
    }
    #RTsbs-249 .cs-text,
    #RTsbsr-249 .cs-text,
    #RTsbst-249 .cs-text {
        margin-bottom: 1rem;
        opacity: 0.8;
    }
    #RTsbs-249 .cs-text:last-of-type,
    #RTsbsr-249 .cs-text:last-of-type,
    #RTsbst-249 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #RTsbs-249 .cs-button-solid,
    #RTsbsr-249 .cs-button-solid,
    #RTsbst-249 .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;
    }
    #RTsbs-249 .cs-button-solid:before,
    #RTsbsr-249 .cs-button-solid:before,
    #RTsbst-249 .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;
    }
    #RTsbs-249 .cs-button-solid:hover:before,
    #RTsbsr-249 .cs-button-solid:hover:before,
    #RTsbst-249 .cs-button-solid:hover:before {
        width: 100%;
    }
    #RTsbs-249 .cs-picture,
    #RTsbsr-249 .cs-picture,
    #RTsbst-249 .cs-picture {
        width: 100%;
        max-width: 27.125rem;
        margin: 0;
        /* border: 1px solid #f1f1f4; */
        position: relative;
        display: block;
        /* width divided by height */
        aspect-ratio: 1;
        /* prevents border from adding to height and width */
        box-sizing: border-box;
    }
    #RTsbs-249 .cs-picture img,
    #RTsbsr-249 .cs-picture img,
    #RTsbst-249 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 0.5em;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #RTsbs-249 .cs-container,
    #RTsbsr-249 .cs-container,
    #RTsbst-249 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-top: 4em;
    }
    #RTsbs-249 .cs-lines,
    #RTsbsr-249 .cs-lines,
    #RTsbst-249 .cs-lines {
        height: 100%;
        width: 35%;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    #RTsbs-249 .cs-lines:before,
    #RTsbsr-249 .cs-lines:before,
    #RTsbst-249 .cs-lines:before {
        /* Right Line */
        content: "";
        width: 1px;
        height: 100%;
        background: -moz-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        /* flips vertically */
        transform: scaleY(-1);
    }
    #RTsbs-249 .cs-lines:after,
    #RTsbsr-249 .cs-lines:after,
    #RTsbst-249 .cs-lines:after {
        /* Right Line */
        content: "";
        width: 1px;
        height: 100%;
        background: -moz-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        /* flips vertically */
        transform: scaleY(-1);
    }
    #RTsbs-249 .cs-picture,
    #RTsbsr-249 .cs-picture,
    #RTsbst-249 .cs-picture {
        /* 344px - 434px */
        width: clamp(21.5rem, 37.5vw, 27.125rem);
        flex: none;
    }
    #RTsbs-249 .cs-content,
    #RTsbsr-249 .cs-content,
    #RTsbst-249 .cs-content {
        max-width: 33.875rem;
        margin: 0;
        width: 45%;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0em) {
    #RTsbsr-249 {
        padding: 0 1rem;
    }
    #RTsbsr-249 .cs-container {
        /* 60px - 100px top and bottom */
        padding: clamp(3.75rem, 7.82vw, 6.25rem) 0;
    }
    #RTsbsr-249 .cs-container:before {
        /* Left Line */
        content: "";
        width: 1px;
        height: 100%;
        background: linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        background: -webkit-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
    }
    #RTsbsr-249 .cs-container:after {
        /* Right Line */
        content: "";
        width: 1px;
        height: 100%;
        background: -moz-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        /* flips vertically */
        transform: scaleY(-1);
    }
    #RTsbsr-249 .cs-lines {
        display: none;
    }
    #RTsbsr-249 .cs-background {
        /* Background Image */
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #RTsbsr-249 .cs-background:before {
        /* Black Color Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.6;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #RTsbsr-249 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes image act like a background-image */
        object-fit: cover;
    }
    #RTsbsr-249 .cs-topper {
        color: var(--primaryLight);
    }
    #RTsbsr-249 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    #RTsbsr-249 .cs-text {
        color: var(--bodyTextColorWhite);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48em) {
    #RTsbsr-249 .cs-lines {
        height: 100%;
        width: 35%;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    #RTsbsr-249 .cs-lines:before {
        /* Right Line */
        content: "";
        width: 1px;
        height: 100%;
        background: -moz-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        /* flips vertically */
        transform: scaleY(-1);
    }
    #RTsbsr-249 .cs-lines:after {
        /* Right Line */
        content: "";
        width: 1px;
        height: 100%;
        background: -moz-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            top,
            rgba(250, 251, 252, 0.5) 0%,
            rgba(250, 251, 252, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        /* flips vertically */
        transform: scaleY(-1);
    }
    #RTsbsr-249 .cs-picture {
        margin: 0;
        order: 2;
    }
}
/* Desktop - 1500px (Parallax Effect) */
@media only screen and (min-width: 93.75em) {
    #RTsbsr-249 {
        background-image: url("../images/Home/img/Designs_1_09.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* creates the parallax effect */
        background-attachment: fixed;
    }
    #RTsbsr-249 .cs-background img {
        display: none;
    }
}
                                
/*-- -------------------------- -->
<---          Projects          -->
<--- -------------------------- -*/

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

  #projects-604 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 16px - 20px */
      gap: clamp(1rem, 1.8vw, 1.25rem);
      row-gap: 2.5rem;
  }
  #projects-604 .cs-item {
      list-style: none;
      width: 100%;
      margin: 0;
      padding: 0;
  }
  #projects-604 .cs-info {
      width: 100%;
      /* 350px - 450px */
      min-height: clamp(21.875rem, 34vw, 28.125rem);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      /* 32px - 100px top */
      /* 16px - 24px left & right */
      padding: clamp(2rem, 8vw, 6.25rem) clamp(1rem, 1.8vw, 1.5rem) 6.25rem;
      border-radius: 0.5rem;
      /* clips the img tag corners */
      overflow: hidden;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      position: relative;
  }
  #projects-604 .cs-link {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }
  #projects-604 .cs-link:hover .cs-header,
  #projects-604 .cs-link:focus .cs-header,
  #projects-604 .cs-link:hover .cs-item-text,
  #projects-604 .cs-link:focus .cs-item-text {
      visibility: visible;
      transform: translateY(0);
      opacity: 1;
      height: 100%;
      transition:
          transform 0.6s,
          visibility 0.3s,
          opacity 0.6s;
  }
  #projects-604 .cs-link:hover .cs-number,
  #projects-604 .cs-link:focus .cs-number {
      padding-bottom: 0.9375rem;
  }
  #projects-604 .cs-link:hover .cs-number:before,
  #projects-604 .cs-link:focus .cs-number:before {
      width: 50rem;
      height: 31.25rem;
      opacity: 0.9;
  }
  #projects-604 .cs-link:hover .cs-background img,
  #projects-604 .cs-link:focus .cs-background img {
      transform: scale(1.1);
  }
  #projects-604 .cs-header {
      /* 28px - 40px */
      font-size: clamp(1.75rem, 3.2vw, 2.5rem);
      line-height: 1.2em;
      font-weight: 700;
      height: 0;
      /* 16px - 24px bottom */
      margin: 0 0 clamp(1rem, 1.8vw, 1.5rem);
      color: var(--bodyTextColorWhite);
      opacity: 0;
      visibility: hidden;
      transform: translateY(2.5rem);
      transition:
          transform 0.2s,
          visibility 0.1s,
          opacity 0.2s,
          height 0.4s;
      transition-delay: 0.1s;
  }
  #projects-604 .cs-item-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-align: left;
      width: 100%;
      max-width: 25rem;
      height: 0;
      margin: 0;
      color: var(--bodyTextColorWhite);
      opacity: 0;
      visibility: hidden;
      transform: translateY(6.25rem);
      transition:
          transform 0.3s,
          visibility 0.3s,
          opacity 0.3s,
          height 0.4s;
      transition-delay: 0.2s;
  }
  #projects-604 .cs-number {
      /* 24px - 32px */
      font-size: clamp(1.5rem, 2vw, 2rem);
      /* 60px - 80px */
      line-height: clamp(3.75rem, 9vw, 5rem);
      font-weight: 700;
      width: clamp(3.75rem, 7vw, 5rem);
      height: clamp(3.75rem, 7vw, 5rem);
      margin: 0;
      padding: 0;
      color: var(--bodyTextColorWhite);
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 0;
      left: 0;
      transition: padding-bottom 0.3s;
  }
  #projects-604 .cs-number:before {
      content: "";
      width: 100%;
      height: 100%;
      background: var(--primary);
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
      transition:
          width 0.6s,
          height 0.6s,
          opacity 0.3s;
      z-index: -1;
      border-radius: 5px;
  }
  #projects-604 .cs-h3 {
      /* 20px - 24px */
      font-size: clamp(1.25rem, 2.5vw, 1.5rem);
      line-height: 1.2em;
      font-weight: 700;
      margin: 0;
      padding: 0;
      color: var(--headerColor);
      display: block;
  }
  #projects-604 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      /* clips img tag when it scales on hover */
      overflow: hidden;
      top: 0;
      left: 0;
      z-index: -1;
  }
  #projects-604 .cs-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      transition: transform 0.8s;
  }
  #projects-604 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    border-radius: 0.5rem;
  }
  #projects-604 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #1a1a1a;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 0.5rem;
  }
  #projects-604 .cs-button-solid:hover {
    color: #fff;
  }
  #projects-604 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #projects-604 .cs-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }
  #projects-604 .cs-flex-group {
      width: 45%;
  }
  #projects-604 .cs-text {
      width: 48vw;
  }
  #projects-604 .cs-card-group {
      flex-direction: row;
      align-items: stretch;
      flex-wrap: wrap;
      justify-content: center;
  }
  #projects-604 .cs-item {
      width: clamp(31.86%, 30vw, 32.28%);
  }
}

/*-- -------------------------- -->
<---      Projects - End        -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---           About            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-371 {
        padding: var(--sectionPadding);
        overflow: hidden;
    }
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-1em);
        }
        100% {
            transform: translateY(0);
        }
    }
    #sbs-371 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 48px - 56px */
        gap: clamp(3rem, 3vw, 3.5rem);
    }
    #sbs-371 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sbs-371 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-371 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-371 .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: 10px;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #sbs-371 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 10px;
        transition: width 0.3s;
    }
    #sbs-371 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-371 .cs-image-group {
        /* everything in the group is in ems so we can scale them down with this min/max font size tied to the view width */
        font-size: min(2.3vw, 1em);
        width: 36.1875em;
        height: 36.75em;
        position: relative;
        /* sends it to the top above the content */
        order: -1;
    }
    #sbs-371 .cs-splash {
        width: 35.625em;
        height: 36.625em;
        opacity: 0.1;
        position: absolute;
        left: 0.3125em;
        top: 0;
    }
    #sbs-371 .cs-blob {
        width: 24.5em;
        height: 31.0625em;
        position: absolute;
        right: 0em;
        top: 0.625em;
    }
    #sbs-371 .cs-lightning {
        width: 4em;
        height: 6.4375em;
        position: absolute;
        right: 2.5em;
        top: 0.5em;
        transform: rotate(23deg);
    }
    #sbs-371 .cs-left-image {
        width: 13.1875em;
        height: 13.1875em;
        border-radius: 50%;
        /* cover the 1px gap between border and image */
        background-color: #f7f7f7;
        border: 12px solid #f7f7f7;
        /* clips image to the circle */
        overflow: hidden;
        position: absolute;
        left: -0.75em;
        top: 8.1875em;
        z-index: 10;
        animation-name: floatAnimation2;
        animation-duration: 6s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #sbs-371 .cs-left-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
    #sbs-371 .cs-bottom-image {
        width: 11.25em;
        height: 11.25em;
        border-radius: 50%;
        /* cover the 1px gap between border and image */
        background-color: #f7f7f7;
        border: 12px solid #f7f7f7;
        /* clips image to the circle */
        overflow: hidden;
        position: absolute;
        right: 11.25em;
        bottom: -0.75em;
        z-index: 10;
        animation-name: floatAnimation;
        animation-duration: 10s;
        animation-delay: 1s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #sbs-371 .cs-bottom-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
    #sbs-371 .cs-person {
        width: 24.125em;
        height: auto;
        position: absolute;
        right: 2.875em;
        bottom: 4.0625em;
    }
    #sbs-371 .cs-person img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    #sbs-371 .cs-mask {
        width: 23.9375em;
        height: 10.8125em;
        position: absolute;
        right: -2.0625em;
        bottom: 2.6875em;
        z-index: 2;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-371 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    #sbs-371 .cs-ul {
        margin-top: 1rem;
    }
    #sbs-371 .cs-image-group {
        font-size: min(1.1vw, 1em);
        /* prevents flexbox from squishing it */
        flex: none;
    }
}

/*-- -------------------------- -->
<---        About - End         -->
<--- -------------------------- -*/                                

/*-- -------------------------- -->
<---          Why Me            -->
<--- -------------------------- -*/

/* 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);
        }
    }
    #sbsr-1363 {
        padding: var(--sectionPadding);
        padding-top: 0;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #sbsr-1363 .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);
    }
    #sbsr-1363 .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;
    }

    #sbsr-1363 .cs-topper {
        color: #767676;
    }
    #sbsr-1363 .cs-title {
        /* 23 characters wide including spaces */
        max-width: 26ch;
    }
    #sbsr-1363 .cs-text {
        margin-bottom: 1rem;
    }
    #sbsr-1363 .cs-text:last-of-type {
        margin-bottom: 1.5rem;
    }
    #sbsr-1363 .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);
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #sbsr-1363 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #sbsr-1363 .cs-ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .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: 10px;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .cs-button-solid:hover {
        color: var(--primary);
    }
    #sbsr-1363 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbsr-1363 .cs-image-group {
        width: 100%;
        max-width: 36.625rem;
        /* Changes to auto at desktop */
        height: 32.5rem;
        /* 32px - 48px */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        position: relative;
    }
    #sbsr-1363 .cs-background {
        width: 100%;
        height: 100%;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #sbsr-1363 .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: cover;
        display: block;
    }
    #sbsr-1363 .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);
    }
    #sbsr-1363 .cs-box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #sbsr-1363 .cs-desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .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;
    }
    #sbsr-1363 .cs-bubbles:after {
        /* orange bubble */
        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) {
    #sbsr-1363 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #sbsr-1363 .cs-image-group {
        height: auto;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #sbsr-1363 .cs-bubbles {
        font-size: min(2.5vw, 1em);
        right: -6.25rem;
        bottom: 0rem;
    }
}
/* Large Desktop 1600px */
@media only screen and (min-width: 100rem) {
    #sbsr-1363 .cs-bubbles {
        margin-right: 46.875rem;
        left: auto;
        right: 50%;
    }
}

/*-- -------------------------- -->
<---       Why Me - End         -->
<--- -------------------------- -*/ 

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

/* Mobile - 360px */

#contact-983 {
  background-image: url('https://swd.nyc3.cdn.digitaloceanspaces.com/Allan%20Blackett/Image%20/contact4.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#contact-983 .cs-background {
  display: none;
}
@media only screen and (min-width: 0rem) {
  #contact-983 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #contact-983 .cs-container {
    width: 100%;
    /* changes to 1064px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  #contact-983 .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;
  }
  #contact-983 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #contact-983 .cs-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
  }
  #contact-983 .cs-label {
    font-size: 1rem;
    line-height: 1.5em;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    grid-column: span 12;
  }
  #contact-983 .cs-input {
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding-left: 1.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    color: #fff;
    background-color: #484848;
    border: none;
  }
  #contact-983 .cs-input::placeholder {
    padding-top: 1rem;
    color: #fff;
    opacity: 0.5;
  }
  #contact-983 .cs-textarea {
    height: 7.5rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
  }
  #contact-983 .cs-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    grid-column: span 12;
  }
  #contact-983 .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 2rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border-radius: 10px;
  }
  #contact-983 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 10px;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }

#contact-983 .cs-button-solid:hover {
      color: var(--primary);
}

  #contact-983 .cs-button-solid:hover:before {
    width: 100%;
  }
  #contact-983 .cs-submit {
    border: none;
  }
  #contact-983 .cs-submit:hover {
    cursor: pointer;
  }
  #contact-983 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #contact-983 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #contact-983 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-983 .cs-container {
    max-width: 66.5rem;
  }
  #contact-983 .cs-label {
    grid-column: span 4;
  }
  #contact-983 .cs-message {
    grid-column: span 12;
  }
  #contact-983 .cs-wrapper {
    grid-column: span 12;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* VALIDATION CHANGE: Form validation error styles for Allan Blackett contact form */
#contact-983 .cs-input.error {
    border: 2px solid red !important;
}

#contact-983 .cs-textarea.error {
    border: 2px solid red !important;
}

#contact-983 .cs-label span {
    margin-left: 0;
    padding-left: 0;
}


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

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

/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer-2395 {
    padding: var(--sectionPadding);
    background-color: #1a1a1a;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #footer-2395 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  #footer-2395 .cs-logo {
    width: 90%;
    max-width: 20.0625rem;
    height: auto;
    margin-bottom: 1rem;
    display: block;
  }
  #footer-2395 .cs-logo img {
    width: 123px;
    height: 70px;
  }
  #footer-2395 .cs-text {
    text-align: inherit;
    /* 32px - 40px */
    margin: 0 0 clamp(2rem, 5vw, 2.5rem);
    color: #E8EBEF;
  }
  #footer-2395 .cs-contact-info {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }
  #footer-2395 .cs-header {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    display: block;
  }
  #footer-2395 .cs-contact-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    text-decoration: none;
    margin: 0;
    color: #E8EBEF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  #footer-2395 .cs-contact-link:hover {
    color: var(--primary);
  }
  #footer-2395 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #footer-2395 .cs-social {
    /* 24px - 32px */
    margin-top: clamp(1.5rem, 5vw, 2rem);
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.5rem;
  }
  #footer-2395 .cs-social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #D2D8DF;
    background-color: #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s;
  }
  #footer-2395 .cs-social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  #footer-2395 .cs-social-icon {
     height: auto;
      opacity: 0.6;
      display: block;
      transition: opacity 0.3s;
      color: #141414;
  }
  #footer-2395 .cs-social-link:hover .cs-social-icon {
      opacity: 1;
      filter: grayscale(1) brightness(10000%);
  }
  #footer-2395 .cs-service-group {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
  }
  #footer-2395 .cs-service-group .cs-header {
    margin-bottom: 1.5rem;
  }
  #footer-2395 .cs-ul {
    margin: 0 0 4rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  #footer-2395 .cs-li {
    list-style: none;
    grid-column: span 2;
  }
  #footer-2395 .cs-link,
  #footer-2395 .cs-copyright {
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5em;
    margin: 0;
    color: #E8EBEF;
    display: block;
  }
  #footer-2395 .cs-link {
    transition: color 0.3s;
  }
  #footer-2395 .cs-link:hover {
    color: var(--primary);
  }
  #footer-2395 .cs-terms {
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #footer-2395 .cs-terms .cs-link {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #footer-2395 .cs-terms .cs-link:after {
    content: '';
    width: 4px;
    height: 4px;
    margin-left: 1rem;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    display: block;
  }
  #footer-2395 .cs-terms .cs-link:last-of-type:after {
    display: none;
  }
  #footer-2395 .cs-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #footer-2395 .cs-floater {
    /* 500px -635px */
    width: clamp(31.25rem, 50vw, 39.6875rem);
    height: auto;
    filter: blur(180px);
    opacity: 0.44;
    position: absolute;
    bottom: -1.25rem;
    right: -15rem;
    z-index: -2;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 700px) {
  #footer-2395 .cs-ul {
    column-gap: 4rem;
  }
  #footer-2395 .cs-li {
    grid-column: span 1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #footer-2395 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    /* 48px - 64px */
    column-gap: clamp(3rem, 3.8vw, 4rem);
  }
  #footer-2395 .cs-logo-group {
    width: 33%;
    max-width: 24.125rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #footer-2395 .cs-service-group {
    width: 100%;
    max-width: 42rem;
    height: auto;
    margin: 0;
    padding-top: 0;
    /* 48px - 64px */
    padding-left: clamp(3rem, 5.8vw, 4rem);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  #footer-2395 .cs-terms {
    margin-top: auto;
  }
  #footer-2395 .cs-floater {
    bottom: -13.75rem;
  }
}
/* Large Desktop - 1800px */
@media only screen and (min-width: 1800px) {
  #footer-2395 .cs-floater {
    margin-left: 21.875rem;
    right: auto;
    left: 50%;
  }
}

/*? Project Page */
/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0em) {
  #banner-1004 {
    padding: 0 1rem;
    /* 160px - 245px */
    padding-top: clamp(10rem, 25vw, 15.3125rem);
    padding-bottom: 7.5rem;
    background-color: #000;
    position: relative;
    z-index: 1;
  }
  #banner-1004 .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #banner-1004 .cs-picture {
    width: 100%;
    margin: 0 0 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
  }
  #banner-1004 .cs-picture:before {
    /* left line */
    content: "";
    width: 50%;
    max-width: 9.375rem;
    height: 1px;
    background: #b4b2c7;
    opacity: 1;
    position: relative;
    display: block;
  }
  #banner-1004 .cs-picture:after {
    /* right line */
    content: "";
    width: 50%;
    max-width: 9.375rem;
    height: 1px;
    background: #b4b2c7;
    opacity: 1;
    position: relative;
    display: block;
  }
  #banner-1004 .cs-icon {
    width: 40%;
    /* 100px - 180px */
    max-width: clamp(6.25rem, 18vw, 11.25rem);
    height: auto;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #banner-1004 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.5vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #banner-1004 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #banner-1004 .cs-background {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
  #banner-1004 .cs-background:before {
    /* black overlay box */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.72;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1004 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
                                
/*-- -------------------------- -->
<---       Footer - Ends        -->
<--- -------------------------- -*/