
/* barlow-condensed-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/barlow-condensed-v12-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-condensed-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/barlow-condensed-v12-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto-v48-latin-regular.woff2') format('woff2'); 
}
  :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: #C84D28;
    --primaryDark: #B94824;
    --bodylight: #f7f7f7;
    --primaryLight: #ff6a3e;
    --secondary: #fff;
    --secondaryLight: #f8f8f8;
    --headerColor: #0a0a0a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #ffffff;
    /* 13px - 16px */
    --topperFontSize: clamp(0.9125rem, 1.6vw, 1.2rem);
    /* 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;
    --headerFont: 'Barlow Condensed', Impact, sans-serif;
    --bodyFont: 'Roboto', Arial, sans-serif;
}

h1, h2 {
    font-family: var(--headerFont); 
 line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.2px;
  word-spacing: 0px;
  text-transform: uppercase;
    color: var(--bodyTextColor);
}
h3, h4 {
     font-family: var(--headerFont); /* Body text uses Arial */
    color: var(--headerColor);
        font-weight: 600;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
*, *:before, *:after {
    box-sizing: border-box;
}
body {
    font-family: var(--bodyFont); /* Body text uses Arial */
    line-height: 1.8; 
    color: var(--bodyTextColor);
    background: var(--secondary);
    touch-action: manipulation;
  }
.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .2em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}
      
.colored-text {
    color: var(--primary);
}
                                     
  .page-container {
    padding: var(--sectionPadding);
    max-width: 1300px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}











/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  @keyframes floatAnimation {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-0.5rem);
      }
      100% {
          transform: translateY(0);
      }
  }
  @keyframes floatAnimation2 {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-0.7rem);
      }
      100% {
          transform: translateY(0);
      }
  }
  body.cs-open {
      overflow: hidden;
  }
  body.cs-open #cs-navigation:before {
      height: 100%;
  }
  body.cs-open #cs-navigation .cs-toggle:before {
      top: 0px;
      left: -2px;
      opacity: 0.3;
  }
  body.cs-open #cs-navigation .cs-toggle:after {
      bottom: -5px;
      right: -5px;
      opacity: 0.3;
  }
  body.cs-open #cs-navigation .cs-top-bar:before {
      background-color: #000;
  }
  body.cs-open #cs-navigation .cs-top-link {
      color: var(--headerColor);
  }
  body.cs-open #cs-navigation .cs-default {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.cs-open #cs-navigation .cs-onscroll {
      transform: rotateX(360deg);
      opacity: 1;
  }
  body.scroll #cs-navigation:before {
      height: 100%;
  }
  body.scroll #cs-navigation .cs-top-bar {
      height: 0;
  }
  body.scroll #cs-navigation .cs-top-link {
      opacity: 0;
  }
  body.scroll #cs-navigation .cs-default {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.scroll #cs-navigation .cs-onscroll {
      transform: rotateX(360deg);
      opacity: 1;
  }
  #cs-navigation {
      width: 100%;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      position: fixed;
      z-index: 10000;
  }
  #cs-navigation:before {
      /* on scroll background */
      content: "";
      width: 100%;
      height: 0%;
      background: #fff;
      opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
      transition: height 0.3s;
  }
  #cs-navigation.cs-active:before {
      height: 150vh;
      opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
      opacity: 1;
      transform: scaleY(1);
      transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
      transform: translateY(0);
      opacity: 1;
  }
  #cs-navigation .cs-top-bar {
      width: 100%;
      display: none;
      height: 3.3125rem;
      overflow: hidden;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      transition: height 0.3s;
  }
  #cs-navigation .cs-top-bar:before {
      /* divider line */
      content: "";
      width: 100%;
      height: 1px;
      background: #fff;
      opacity: 0.1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
      transition: background-color 0.3s;
  }
  #cs-navigation .cs-top-container {
      width: 100%;
      padding: 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3.125rem;
  }
  #cs-navigation .cs-top-contact {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
  }
  #cs-navigation .cs-top-link {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: #f7f7f7;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      transition:
          opacity 0.3s,
          color 0.3s;
  }
  #cs-navigation .cs-link-icon {
      width: 1rem;
      height: auto;
      display: block;
  }
  #cs-navigation .cs-container {
      width: 100%;
      padding: 1rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }
  #cs-navigation .cs-logo {
      width: 11.0625rem;
      height: auto;
      margin: 0 auto 0 0;
      padding: 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      z-index: 10;
      transform-style: preserve-3d;
      perspective: 500px;
  }
  #cs-navigation .cs-logo img {
      width: 70%;
      height: auto;
      /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
      object-fit: contain;
  }
  #cs-navigation .cs-default {
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transition:
          opacity 0.3s,
          transform 0.6s;
  }
  #cs-navigation .cs-onscroll {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* Safari */
      backface-visibility: hidden;
      transform: rotateX(180deg);
      transition:
          opacity 0.3s,
          transform 0.6s;
  }
  #cs-navigation .cs-top-logo {
      display: none;
  }
  #cs-navigation .cs-toggle {
      width: 3rem;
      height: 3rem;
      margin: 0 0 0 auto;
      background-color: var(--primary);
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
  }
  #cs-navigation .cs-toggle:before {
      /* floating bubble when opened */
      content: "";
      width: 70%;
      height: 70%;
      border-radius: 50%;
      border: 1px solid #000;
      opacity: 0;
      position: absolute;
      display: block;
      top: 4px;
      left: 4px;
      z-index: -1;
      animation-name: floatAnimation;
      animation-duration: 7s;
      animation-delay: 1s; /* Start AFTER hero loads */
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      transition:
          left 0.6s,
          top 0.3s,
          opacity 0.6s;
      transition-delay: 0.2s;
  }
  #cs-navigation .cs-toggle:after {
      /* floating bubble when opened */
      content: "";
      width: 50%;
      height: 50%;
      border-radius: 50%;
      border: 1px solid #000;
      opacity: 0;
      position: absolute;
      display: block;
      bottom: 4px;
      right: 4px;
      z-index: -1;
      transition:
          bottom 0.6s,
          right 0.3s,
          opacity 0.6s;
      animation-name: floatAnimation2;
      animation-duration: 5s;
      animation-delay: 1s; /* Start AFTER hero loads */
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      transition-delay: 0.3s;
  }
  #cs-navigation .cs-active .cs-line1 {
      top: 50%;
      transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
      top: 50%;
      transform-origin: center;
      transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation .cs-active .cs-line3 {
      bottom: 100%;
      opacity: 0;
  }
  #cs-navigation .cs-box {
      /* 24px - 28px */
      width: clamp(1.5rem, 2vw, 1.75rem);
      height: 1rem;
      position: relative;
  }
  #cs-navigation .cs-line {
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #fafbfc;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
      top: 0;
      transform-origin: center;
      transition:
          transform 0.5s,
          top 0.3s,
          left 0.3s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-fill-mode: forwards;
      animation-direction: normal;
  }
  #cs-navigation .cs-line2 {
      top: 50%;
      transform: translateX(-50%) translateY(-50%);
      transition:
          top 0.3s,
          left 0.3s,
          transform 0.5s;
      animation-duration: 0.7s;
      animation-timing-function: ease;
      animation-fill-mode: forwards;
      animation-direction: normal;
  }
  #cs-navigation .cs-line3 {
      bottom: 0;
      transition:
          bottom 0.3s,
          opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    text-transform: uppercase;
      width: 100%;
      height: auto;
      padding-bottom: 3rem;
      opacity: 0;
      background-color: #fff;
      box-shadow: inset rgba(0, 0, 0, 0.05) 0px 8px 24px;
      border-radius: 0 0 1.25rem 1.25rem;
      overflow: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: -1;
      transform: scaleY(0);
      transform-origin: top;
      transition:
          transform 0.4s,
          opacity 0.3s;
  }
  #cs-navigation .cs-ul {
      margin: 0;
      padding: 3rem 0 0 0;
      width: 100%;
      height: auto;
      max-height: 65vh;
      overflow: scroll;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
  }
  #cs-navigation .cs-li {
       font-family: 'Anton', Impact;
      width: 100%;
      text-align: center;
      list-style: none;
      margin-right: 0;
      /* transition from these values */
      transform: translateY(-4.375rem);
      opacity: 0;
      transition:
          transform 0.6s,
          opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
      transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
      transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
      transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
      transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
      transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
      transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
      transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
      transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
      transition-delay: 0.45s;
  }
  #cs-navigation .cs-li:nth-of-type(10) {
      transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
      transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
      transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
      transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
      /* 16px - 24px */
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      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;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation:before {
      background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-top-bar:before {
      background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-top-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-toggle:before,
  body.dark-mode #cs-navigation .cs-toggle:after {
      border-color: rgba(255, 255, 255, 0.8);
  }
  body.dark-mode #cs-navigation .cs-ul-wrapper {
      background-color: var(--dark);
      box-shadow: inset rgba(255, 255, 255, 0.05) 0px 8px 24px;
  }
  body.dark-mode #cs-navigation .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
  }
  body.dark-mode.scroll #cs-navigation .cs-default {
      transform: rotateX(0deg);
      opacity: 1;
  }
  body.dark-mode.scroll #cs-navigation .cs-onscroll {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.dark-mode.cs-open #cs-navigation .cs-default {
      transform: rotateX(0deg);
      opacity: 1;
  }
  body.dark-mode.cs-open #cs-navigation .cs-onscroll {
      transform: rotateX(180deg);
      opacity: 0;
  }
}

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

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-li {
  
      text-align: center;
      width: 100%;
      display: block;
  }
  #cs-navigation .cs-dropdown {
      position: relative;
      color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
      height: auto;
      opacity: 1;
      visibility: visible;
      margin: 0.75rem 0 0 0;
      padding: 0.75rem 0;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
      opacity: 1;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-icon {
      transform: translateY(-50%) rotate(-90deg);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
      position: relative;
      transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
      width: 1.5rem;
      height: auto;
      /* makes it black */
      filter: grayscale(1) brightness(20%);
      position: absolute;
      top: 50%;
      right: -1.5rem;
      transform: translateY(-50%);
      transition: transform 0.2s;
  }
  #cs-navigation .cs-drop-ul {
      width: 100%;
      height: 0;
      margin: 0;
      padding: 0;
      background-color: var(--primary);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      letter-spacing: .05rem;
      
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      transition:
          padding 0.3s,
          margin 0.3s,
          height 0.3s,
          opacity 0.3s,
          visibility 0.3s;
  }
  #cs-navigation .cs-drop-li {
      list-style: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
      /* 14px - 16px */
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      color: #fff;
  }
}
/* Dark Mode - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation .cs-drop-icon {
      filter: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-li:hover .cs-drop-icon {
      transform: rotate(-90deg);
  }
  #cs-navigation .cs-dropdown {
      position: relative;
  }
  #cs-navigation .cs-dropdown:hover {
      cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
      transform: scaleY(1);
      opacity: 1;
      visibility: visible;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
      opacity: 1;
      transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
      width: 1.5rem;
      height: auto;
      display: inline-block;
      transition: transform 0.3s;
  }
  #cs-navigation .cs-drop-ul {
      min-width: 12.5rem;
      margin: 0;
      padding: 0;
      background-color: #fff;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
      border-bottom: 5px solid var(--primary);
      border-radius: 0 0 0.625rem 0.625rem;
      box-sizing: border-box;
      /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
      position: absolute;
      top: 100%;
      z-index: -100;
      transform: scaleY(0);
      transform-origin: top;
      transition:
          transform 0.3s,
          visibility 0.3s,
          opacity 0.3s;
  }
  #cs-navigation .cs-drop-li {
      list-style: none;
      font-size: 1rem;
      text-decoration: none;
      opacity: 0;
      width: 100%;
      height: auto;
      display: block;
      transform: translateY(-0.625rem);
      transition:
          opacity 0.6s,
          transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
      transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
      transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
      transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
      transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
      transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
      transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
      transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
      transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
      transition-delay: 0.45s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(10) {
      transition-delay: 0.5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
      transition-delay: 0.55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
      transition-delay: 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
      transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
      font-size: 1rem;
      white-space: nowrap;
      line-height: 1.5em;
      text-decoration: none;
      width: 100%;
      padding: 0.75rem;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      color: var(--headerColor);
      display: block;
      transition:
          color 0.3s,
          background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
      background-color: #f7f7f7;
      color: var(--headerColor);
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
      display: none;
  }
}
/* Dark Mode - 1024px */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
      background-color: var(--dark);
      border-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-li.cs-dropdown:hover .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li.cs-dropdown:hover .cs-li-link:hover {
      color: var(--primary);
  }
}

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

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

font-family: var(--headerFont);
text-transform: uppercase;
  }
  #cs-navigation .cs-button-solid {
        font-size: 1rem;
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      min-width: 9.375rem;
      padding: 0 2rem;
      border-radius: 3rem;
      overflow: hidden;
      background-color: var(--primary);
      display: inline-block;
      position: absolute;
      right: 15px;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      transition: color 0.3s;
  }
  #cs-navigation .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: var(--primaryLight);
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
      color: #ffffff;
  }
  #cs-navigation .cs-button-solid:hover:before {
      width: 100%;
  }
  #cs-navigation .cs-nav-button {
      line-height: 2.875rem;
  }
}
/* Dark Mode - 1024px */
@media only screen and (min-width: 64rem) {
  body.dark-mode.scroll #cs-navigation .cs-li.cs-dropdown .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode.scroll #cs-navigation {
        box-shadow: rgb(227 227 227 / 5%) 0px 8px 20px;
  }
  body.dark-mode #cs-navigation:before {
      background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-default {
      transform: rotateX(0deg);
      opacity: 1;
  }
  body.dark-mode #cs-navigation .cs-onscroll {
      transform: rotateX(180deg);
      opacity: 0;
  }
  body.dark-mode #cs-navigation .cs-top-bar:before {
      background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-top-link,
  body.dark-mode #cs-navigation .cs-li-link {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-active {
      color: var(--primary);
  }
  body.dark-mode #cs-navigation .cs-li:hover .cs-li-link {
      color: var(--primary);
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
      filter: none;
  }
}

                              

@media only screen and (min-width: 64rem) {
    body.scroll #cs-navigation .cs-button-solid {
        top: 6.3rem;
        right: 4rem;
        transition: top 0.3s ease, right 0.3s ease, color 0.3s;
    }
}           


li.cs-li.cs-active {

    color: #ff0000;
}

























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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #hero-1350 {
        background-color: #000;
        /* 250px - 500px - leaving extra space for the navigation */
        padding: clamp(8rem, 35.95vw, 14rem) 1rem 0;
        /* 200px - 250px */
        padding-bottom: clamp(12.5rem, 16.5vw, 15.625rem);
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #hero-1350:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 30%;
        background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(#000000),
            to(rgba(0, 0, 0, 0))
        );
        background: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(
            to bottom,
            #000000 0%,
            rgba(0, 0, 0, 0) 100%
        );
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 2;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-1350 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    #hero-1350 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #hero-1350 .cs-topper {
        font-size: .9rem;
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 500;
        color: #e8e8e8;
        margin-bottom: 0.5rem;
        display: block;
    }
    #hero-1350 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.8375rem, 6.4vw, 3.925rem);
        font-weight: 700;
        line-height: 1.1em;
        text-align: inherit;
        max-width: 21ch;
        margin: 0 0 1rem 0;
        color: #fff;
        position: relative;
    }
    #hero-1350 .cs-text {
        font-size: 1.25rem;
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        /* 464px - 622px */
        max-width: clamp(29rem, 60vw, 38.785rem);
        margin: 0 0 2.5rem 0;
        color: #e8e8e8;
    }
    #hero-1350 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #hero-1350 .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-1350 .cs-button-solid:hover {
        color: var(--primary);
    }
    #hero-1350 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-1350 .cs-bubbles {
        /* this scales the children inside of it down. They're all in ems so they pull from the parent font size for their value of em, in this case, the value of em is tied to the viewwidth size and stops growing when the font size is equal to 1em, which it pulls from the nearst parent with a declred font size (which is the html tag, and that tag is 16px by default) */
        font-size: min(2vw, 0.5em);
        position: absolute;
        z-index: -1;
    }
    #hero-1350 .cs-bubbles1 {
        width: 42.5em;
        height: 45.25em;
        right: -11.875rem;
        /* changes to 172 at large desktop */
        top: 0;
    }
    #hero-1350 .cs-bubbles1:before {
        /* white border bubble */
        content: "";
        width: 38.875em;
        height: 38.875em;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        animation-name: floatAnimation;
        animation-duration: 7s;
        animation-delay: 1s; /* Start AFTER hero loads */
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #hero-1350 .cs-bubbles1:after {
        /* orange bubble */
        content: "";
        width: 34.125em;
        height: 34.125em;
        background: var(--primary);
        opacity: 0.8;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 10s;
        animation-delay: 1s; /* Start AFTER hero loads */
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #hero-1350 .cs-bubbles2 {
        width: 20.625rem;
        height: 29.75rem;
        /* changes to 160px at larger desktop */
        left: -13.75rem;
        /* removed at larger desktop */
        bottom: -16.25rem;
    }
    #hero-1350 .cs-bubbles2:before {
        /* white border bubble */
        content: "";
        width: 20.625rem;
        height: 20.625rem;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-delay: 1s; /* Start AFTER hero loads */
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #hero-1350 .cs-bubbles2:after {
        /* orange bubble */
        content: "";
        width: 16.25rem;
        height: 16.25rem;
        background: var(--primary);
        opacity: 0.8;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 0;
        right: 2.5rem;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-delay: 1s; /* Start AFTER hero loads */
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #hero-1350 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-1350 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        /* makes the top of the image start at the top of the parent */
        object-position: top;
    }

}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-1350 .cs-bubbles {
        font-size: 1em;
    }
    #hero-1350 .cs-bubbles1 {
        /* changes to auto at large desktop */
        right: -26.75rem;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-1350 .cs-bubbles1 {
        /* 200px - 450px */
        margin-left: clamp(12.5rem, 20vw, 28.125rem);
        top: 10.75rem;
        right: auto;
        left: 50%;
    }
}
/* Large Desktop Parallax Effect - 1600px */

@media only screen and (min-width: 100rem) {


}
/* Larger Desktop - 1800px */
@media only screen and (min-width: 112.5rem) {
    #hero-1350 .cs-bubbles2 {
        margin-right: 50rem;
        right: 50%;
        left: auto;
        top: 13.125rem;
        bottom: auto;
    }
}











@media only screen and (min-width: 0rem) {

#banner-1519 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    
    #banner-1519 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
    }
    #banner-1519 .cs-mask {
      --maskBG: #ffffff;
      width: 100%;
      height: auto;
      display: block;
      position: absolute;
      bottom: -1px;
      left: 0;
      z-index: 100;
    }
}




#hero-1350 picture {

     position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
#hero-1350 picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}









/* Add this as it's own dark.css file and linked on all pages */
/*-- -------------------------- -->
<---      Core Dark Styles      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
    :root {
      --dark: #040404;
      --medium: #191919;
      --accent: #404040;
    }
    body.dark-mode {
      background-color: var(--dark);
    }
    body.dark-mode p,
    body.dark-mode li,
    body.dark-mode h1,
    body.dark-mode h2,
    body.dark-mode h3,
    body.dark-mode h4,
    body.dark-mode h5,
    body.dark-mode h6,
    body.dark-mode .cs-title,
    body.dark-mode .cs-text,
    body.dark-mode .cs-li {
      color: var(--bodyTextColorWhite);
    }
    body.dark-mode .light {
      display: none;
    }
    body.dark-mode .dark {
      display: block !important;
    }
    .dark {
      /* class used to hide elements that only need to be seen when dark mode is enabled */
      display: none;
    }
  }
  

                                  
























/* Header Styles */
.cs-animated-button {
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.cs-animated-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cs-button-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.cs-animated-button:hover .cs-button-animation {
    transform: translateX(100%);
}

@media only screen and (max-width: 1024px) {
    .cs-animated-button {
display: none;
    }
}




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

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
















/*-- -------------------------- -->
<---       Footer Start         -->
<--- -------------------------- -*/
 #contact-1392 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #contact-1392 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        /* makes the top of the image start at the top of the parent */
        object-position: top;
    }




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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1392 {
        background-position: top;
        background-repeat: repeat;
        padding: var(--sectionPadding);
        margin: 0 auto;
        padding-bottom: 0;
        padding-top: 3rem;
                max-width: 2200px;
        background-color: var(--secondary);
        position: relative;
        z-index: 10;
        background-size: cover;
    }
    #contact-1392 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        column-gap: auto;
        /* 48px - 64px */
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }
    #contact-1392 .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;
    }

    #contact-1392 .cs-title {
        max-width: 23ch;
    }
    #contact-1392 .cs-text {
        margin-bottom: 1rem;
    }
    #contact-1392 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #contact-1392 .cs-ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
                justify-content: center;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: .5rem;
        position: relative;
    }
    #contact-1392 .cs-li {
        list-style: none;
        display: flex;
        gap: .75rem;
        align-items: center;

    }
    #contact-1392 .cs-li:hover .cs-icon-wrapper {
        transform: scale(1.1);
    }
    #contact-1392 .cs-header {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0;
        color: var(--headerColor);
        display: block;
    }
    #contact-1392 .cs-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: #767676;
        display: block;
        position: relative;
    }
    #contact-1392 .cs-link:hover {
        text-decoration: underline;
    }
    #contact-1392 .cs-icon-wrapper {
        width: 1.75rem;
        height: 1.75rem;
        margin: 0;
        border-radius: 50%;
        border: 1px solid #bababa;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #contact-1392 .cs-icon {
        width: 1rem;
        height: auto;
        display: block;
    }
    #contact-1392 .cs-form {
        width: 100%;
        max-width: 39.375rem;
        /* -30px to -100px */
        margin-bottom: calc(clamp(1.875rem, 7vw, 6.25rem) * -1);
        /* 24px - 48px top and bottom */
        /* 16px - 48px left and right */
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: var(--secondaryLight);
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-1392 .cs-h3 {
        /* 20px - 39px */
        font-size: clamp(1.5rem, 3vw, 2.4375rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
    }
    #contact-1392 .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-1392 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: var(--secondary);
        border-radius: 0.5rem;
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #contact-1392 .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contact-1392 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-1392 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #contact-1392 .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;
    }
    #contact-1392 .cs-button-solid:hover {
        color: var(--primary);
    }
    #contact-1392 .cs-button-solid:hover:before {
        width: 100%;
    }
    #contact-1392 .cs-submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
    }
    #contact-1392 .cs-submit:hover {
        color: #fff;
        cursor: pointer;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {

     #contact-1392 {

        padding-top: 6rem;
     }




     #contact-1392 .cs-icon-wrapper {
        width: 2.75rem;
        height: 2.75rem;
     } 

         #contact-1392 .cs-header {
        font-size: 1rem;
         }

             #contact-1392 .cs-icon {
        width: 1.5rem;
    }
#contact-1392 .cs-ul {
justify-content: flex-start;
}

    #contact-1392 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: flex-end;
    }
    #contact-1392 .cs-content {
        width: 47%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #contact-1392 .cs-submit {
        width: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1392 .cs-form {
        width: 46%;
        max-width: 36.125rem;
    }
    #contact-1392 .cs-submit {
        width: auto;
    }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
    #contact-1392 .cs-graphic {
        display: block;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #contact-1392 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #contact-1392 .cs-title,
    body.dark-mode #contact-1392 .cs-text,
    body.dark-mode #contact-1392 .cs-header,
    body.dark-mode #contact-1392 .cs-link,
    body.dark-mode #contact-1392 .cs-label,
    body.dark-mode #contact-1392 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #contact-1392 .cs-contact-text,
    body.dark-mode #contact-1392 .cs-link {
        opacity: 0.8;
    }
    body.dark-mode #contact-1392 .cs-icon-wrapper {
        border-color: #fff;
    }
    body.dark-mode #contact-1392 .cs-icon {
        /* makes it white */
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #contact-1392 .cs-form {
        background-color: var(--medium);
    }
    body.dark-mode #contact-1392 .cs-input {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    body.dark-mode #contact-1392 .cs-input::placeholder {
        color: #fff;
        opacity: 0.8;
    }
    body.dark-mode #contact-1392 .cs-graphic {
        opacity: 0.4;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer-1392 {
        padding: var(--sectionPadding);
        /* 80px - 100px */
        padding-top: clamp(5rem, 7vw, 6.25rem);
        background-color: #1a1a1a;
        position: relative;
        z-index: 1;
    }
    #footer-1392 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer-1392 .cs-top {
        width: 100%;
        margin-bottom: 2.5rem;
        /* 24px - 64px */
        padding-bottom: clamp(1.5rem, 5vw, 4rem);
        border-bottom: 1px solid #484848;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 24px - 40px */
        gap: clamp(1.25rem, 4vw, 2.5rem);
    }
    #footer-1392 .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 24px - 36px */
        column-gap: clamp(1.5rem, 4vw, 2.25rem);
    }
    #footer-1392 .cs-li {
        list-style: none;
    }
    #footer-1392 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: #bababa;
        display: block;
        transition: color 0.3s;
    }
    #footer-1392 .cs-link:hover {
        color: var(--primary);
    }
    #footer-1392 .cs-logo {
        width: 100%;
        max-width: 13.0625rem;
        height: auto;
        display: block;
    }
    #footer-1392 .cs-logo-img {
        width: 100%;
        height: auto;
        display: block;
    }
    #footer-1392 .cs-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #footer-1392 .cs-social {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #footer-1392 .cs-social-li {
        list-style: none;
    }
    #footer-1392 .cs-social-link {
        width: 2rem;
        height: 2rem;
        background-color: #484848;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    #footer-1392 .cs-social-link:hover {
        background-color: var(--primary);
    }
    #footer-1392 .cs-social-link:hover .cs-social-icon {
        filter: grayscale(1) brightness(1000%);
        opacity: 1;
    }
    #footer-1392 .cs-social-icon {
        width: 0.75rem;
        height: auto;
        display: block;
        opacity: 0.6;
        transition: opacity 0.3s;
    }
    #footer-1392 .cs-copyright {
        font-size: 1rem;
        color: #bababa;
        line-height: 1.5em;
        margin: 0;
        display: block;
    }
    #footer-1392 .cs-copyright-link,
    #footer-1392 .cs-separater {
        font-size: 1rem;
        text-decoration: none;
        color: #bababa;
        transition: color 0.3s;
    }
    #footer-1392 .cs-copyright-link:hover,
    #footer-1392 .cs-separater:hover {
        color: var(--primary);
    }
    #footer-1392 .cs-separater {
        margin: 0 1rem;
        display: inline-block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1392 .cs-top {
        align-items: flex-start;
    }
    #footer-1392 .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    #footer-1392 .cs-flex {
    }
    #footer-1392 .cs-social {
        /* sends it to the right in the 3rd position */
        order: 3;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #footer-1392 {
        background-color: rgba(0, 0, 0, 0.6);
    }
}
.footer-text {
margin: 0;
}








/*-- -------------------------- -->
<---          Page Styles        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #banner-1519 {
      padding: var(--sectionPadding);
      background-color: black;
      /* 190px - 268px */
      padding-top: clamp(5.875rem, 25vw, 12.75rem);
      /* 100px - 150px */
      padding-bottom: clamp(4.25rem, 12vw, 6.375rem);
      /* clips the line from causing overflow issues for going off screen */
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #banner-1519 .cs-container {
      text-align: center;
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /* 8px - 12px */
      gap: clamp(0.5rem, 1vw, 0.75rem);
    }
    #banner-1519 .cs-int-title {
                text-transform: uppercase;

      /* 39px - 61px */
      font-size: clamp(2.8375rem, 6.4vw, 3.5rem);
      font-family: var(--headerFont);
      font-weight: 700;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0;
      color: var(--secondary);
      position: relative;
    }
    #banner-1519 .cs-breadcrumbs {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #banner-1519 .cs-link.cs-active {
      color: var(--primary);
    }
    
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #banner-1519 .cs-background:before {
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 243, 236, 0.9) 23.05%, rgba(255, 243, 236, 0) 80.08%);
      opacity: 1;
    }
  }
  /* Dark Mode */
  @media only screen and (min-width: 0rem) {
    body.dark-mode #banner-1519 .cs-mask {
      --maskBG: var(--dark);
    }
  }
                                  





  #hero-ty .cs-text {
        font-size: 1.25rem;
        line-height: 1.5em;
    text-align: center;
        width: 100%;
        max-width: clamp(29rem, 60vw, 38.785rem);
        margin: 0;
        color: var(--dark);
    }


section#hero-ty {
    padding: 2rem;
}


      #hero-ty .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }


    .button-container {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
}


 .cs-button-solid {
    font-size: 1rem;
    line-height: 1.3;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    overflow: hidden;
    padding: 1rem;
    margin: 0;
    color: #fff;
    padding: 2re, 3rem;
    border-radius: 1.875rem;
    background-color: #000000;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;}

 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: var(--primary);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }


 .cs-button-solid:hover {
        color: var(--bodyTextColorWhite);
    }
 .cs-button-solid:hover:before {
        width: 100%;
    }