@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400..700&display=swap');

: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: #4e4e4e;
    --primaryLight: #ffba43;
    --secondary: #096ec0;
    --secondaryLight: rgb(173, 168, 136);
    --headerColor: #1a1a1a;
    --headerColorWhite: #fafbfc;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif !important;
}

*, *: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(--secondary);
    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;
    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);
    font-family: 'Arial', sans-serif;
}
                            

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
}

.container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 1rem;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background-color: var(--headerColor);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 10000;
    opacity: 0.95;
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: -1100;
    transition: height 0.5s, opacity 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #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 {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #cs-navigation .cs-logo {
    width: 40%;
    max-width: 9.125rem;
    height: 100%;
    margin: 0 auto 0 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    filter: brightness(0) invert(1);
  }
  #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-toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: brightness(0) invert(1);
  }
  #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);
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    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;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    transform: scaleY(0);
    transition: transform 0.4s, opacity 0.3s;
    transform-origin: top;
  }
  #cs-expanded-2 {
    padding-top:0 !important;
    list-style: none !important;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin: 0;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    overflow: scroll;
  }
  #cs-navigation .cs-li {
    text-align: center;
    list-style: none;
    width: 100%;
    margin-right: 0;
    opacity: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    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:before {
    /* active state underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    display: none;
    position: absolute;
    bottom: -0.125rem;
    left: 0;
  }
  .cs-line-break {
    height: 1px;
    width: 50%;
    margin: 1rem auto;
    background-color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--secondary);
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
    width: 100%;
    background: var(--secondary);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }

  .top-bar-content {
    justify-content: center !important;
  }

  #view-products-button {
   display: block !important;
   margin: 0 auto !important;
   text-align: center !important;
   background-color: var(--primary) !important;
   color: white !important;
   font-size: .9rem !important;
   margin-top: 1rem !important;
   text-decoration: none !important;
   padding: 0.5rem !important;
   border-radius: 0.25rem !important;
   width: 100% !important;
   max-width: 150px !important;

  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 10000;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-ul-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
  }

  .cs-line-break {
    height: 30px;
    width: 3px;
    margin: 0 0 0 1.5rem;
    background-color: var(--primary);
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: 18.4%;
    max-width: 21.875rem;
    height: 4.0625rem;
    /* 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: center;
    z-index: 100;
  }
  #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-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    position: relative;
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 0%;
    height: 2px;
    background: var(--secondary);
    opacity: 1;
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }
  #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 1.5rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cs-navigation .cs-button-solid:hover:before {
    width: 100%;
  }

  .top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgb(173, 168, 136);
    height: 100%;
  }

  .top-bar-content {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: .4rem 0;
  }

  .top-bar-content ul {
    list-style: none;
  }

  .top-bar-content a {
    color: var(--headerColor);
    text-decoration: none;
    font-size: .75rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .top-bar-content a:hover {
    text-decoration: underline;
  }

  .top-bar-content .contact-icon {
    width: .75rem;
    height: .75rem;
    color: var(--secondary);
    flex-shrink: 0;
  }

  .top-bar ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin:0;
    padding:0;
  }
  
}
                                
  /*-- -------------------------- -->
  <---     Desktop Navigation     -->
  <--- -------------------------- -*/
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #view-products-button::before {
      background-color: var(--secondary) !important;
    }
    
    #cs-navigation {
      width: 100%;
      box-sizing: border-box;
      padding: 0 1rem;
      background-color: var(--headerColor);
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10000;
      opacity: .95;
    }
    #cs-navigation .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1.5rem;
    }
    #cs-navigation .cs-toggle {
      display: none;
    }
    #cs-navigation .cs-logo {
      width: 18.4%;
      max-width: 21.875rem;
      height: 4.0625rem;
      /* 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: center;
      z-index: 100;
    }
    #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;
      filter: brightness(0) invert(1);
    }
    #cs-navigation .cs-ul {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      /* 20px - 36px */
      gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }
    #cs-navigation .cs-li {
      list-style: none;
      padding: 2rem 0;
      /* prevent flexbox from squishing it */
      flex: none;
    }
    #cs-navigation .cs-li-link {
      /* 14px - 16px */
      font-size: clamp(1rem, 1vw, 1rem);
      line-height: 1.5em;
      text-decoration: none;
      margin: 0;
      color: var(--bodyTextColorWhite);
      display: block;
      position: relative;
    }
    #cs-navigation .cs-li-link:hover:before {
      width: 100%;
    }
    #cs-navigation .cs-li-link.cs-active:before {
      width: 100%;
    }
    #cs-navigation .cs-li-link:before {
      /* active state underline */
      content: "";
      width: 0%;
      height: 2px;
      background: var(--secondary);
      opacity: 1;
      display: block;
      position: absolute;
      bottom: 0rem;
      left: 0;
      transition: width 0.3s;
    }
    #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 1.5rem;
      color: #fff;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
    }
    #cs-navigation .cs-button-solid:before {
      content: "";
      width: 0%;
      height: 100%;
      background: #000;
      opacity: 1;
      border-radius: 0.25rem;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #cs-navigation .cs-button-solid:hover:before {
      width: 100%;
    }
  }
                                  

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-229 {
    /* changes on tablet */
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    /* prevents overflow from the lines extending past the screen width */
    overflow: hidden;
  }
  #hero-229 .cs-picture {
    /* Background Image */
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-229 .cs-picture: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;
  }
  #hero-229 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes image act like a background-image */
    object-fit: cover;
  }
  #hero-229 .cs-container {
    width: 100%;
    max-width: 80rem;
    /* we put the padding top and bottom on the container instead of #Hero so the pseudo element lines go to the top and bottom of the section */
    /* 144px - 280px - leaving extra space for the navigation */
    /* changes on tablet */
    padding: clamp(9rem, 25.95vw, 17.5rem) 0;
    padding-bottom: clamp(8rem, 15.95vw, 12.5rem);
    margin: auto;
    position: relative;
    overflow: cover;
  }
  #hero-229 .cs-container:before {
    /* Left 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;
  }
  #hero-229 .cs-flex-group {
    /* 60px - 220px */
    margin-bottom: clamp(3.75rem, 15.5vw, 13.75rem);
    margin: auto;
    /* 464px - 562px */
    max-width: clamp(29rem, 60vw, 35.125rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 1.25rem;
    box-sizing: border-box;
  }
  #hero-229 .cs-topper {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.6vw, 1rem);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1rem;
    font-weight: 700;
    background-color: var(--secondary);
    color:white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  }
  #hero-229 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2rem, 6.4vw, 3rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    width: 100%;
    /* 32px - 40px */
    margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
    color: var(--bodyTextColorWhite);
    position: relative;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);

  }
  #hero-229 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    /* 32px - 40px */
    margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
    /* 40px - 48px */
    margin-bottom: clamp(2.5rem, 4vw, 3rem);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
  #hero-229 .cs-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }
  #hero-229 .cs-button {
    min-width: 12.3125rem;
  }
  #hero-229 .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;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 3rem;
    background-color: var(--secondary);
    overflow: hidden;
    color: #fff;
    border: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .5);

  }
  #hero-229 .cs-button-solid:before {
    content: "";
    width: 0;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-229 .cs-button-solid:hover {
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
  }
  #hero-229 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-229 .cs-button-transparent {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    /* 46px - 56px */
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0;
    background-color: transparent;
    border: 1px solid var(--bodyTextColorWhite);
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  }
  #hero-229 .cs-button-transparent:before {
    content: '';
    position: absolute;
    display: block;
    background: #000;
    opacity: 1;
    /* so it sits on top of the border */
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    transform-origin: left;
    /* this is what creates the grow affect on hover */
    transform: scaleX(0);
    transition: transform 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);

  }
  #hero-229 .cs-button-transparent:hover:before {
    transform: scaleX(1);
  }
  #hero-229 .cs-button-transparent .cs-img {
    display: block;
    margin-right: 0.75rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-229 {
    /* 32px - 40px */
    padding: 0 clamp(2rem, 5vw, 2.5rem);
  }
  #hero-229 .cs-container:after {
    /* Right Line */
    content: '';
    width: 1px;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(250, 251, 252, 0) 0%, rgba(250, 251, 252, 0.5) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0) 0%, rgba(250, 251, 252, 0.5) 100%);
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
  }
  #hero-229 .cs-button-group {
    flex-direction: row;
  }
}
/* Desktop Parallax Effect - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-229 .cs-picture img {
    display: none;
  }
}
                                

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-75 {
        padding: var(--sectionPadding);
        /* clips the red box from causing overflow issues */
        overflow: hidden;
    }
    .sbs-75 {
      padding: 0 !important;
      margin-top:12rem;
    }
    #sbs-75 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-75 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sbs-75 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-75 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-75 .cs-button-solid, .hero-content .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(--secondary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #sbs-75 .cs-button-solid:before, .hero-content .cs-button-solid:before{
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--primary);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #sbs-75 .cs-button-solid:hover:before, .hero-content .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-75 .cs-wrapper {
        width: 95%;
        max-width: 34.375rem;
        /* 28px - 80px */
        /* pushes up and down by the same amount the decorative box overflows the wrapper */
        margin: clamp(1.75em, 7.8vw, 5em) 0;
        position: relative;
    }
    #sbs-75 .cs-wrapper:before {
        /* Red decorative box */
        content: "";
        /* make it huge so it covers everything on the left as it overflows */
        width: 50em;
        background: var(--primary);
        opacity: 1;
        border-radius: 1rem;
        position: absolute;
        display: block;
        /* 28px - 80px */
        /* wrapped in a calc function to get a negative clamp value */
        top: calc(clamp(1.75em, 7.8vw, 5em) * -1);
        bottom: calc(clamp(1.75em, 7.8vw, 5em) * -1);
        right: 4.0625em;
        z-index: -1;
    }
    #sbs-75 .cs-picture {
        width: 100%;
        margin: 0;
        position: relative;
        display: block;
        /* width divided by height */
        aspect-ratio: 0.93134328;
        border-radius: 1rem;
        z-index: 1;
    }
    #sbs-75 .cs-picture:before {
        /* Top right box */
        content: "";
        width: 10rem;
        /* 202px - 248px */
        height: clamp(12.625rem, 25vw, 15.5rem);
        background: #1a1a1a;
        opacity: 1;
        border-radius: 1rem;
        position: absolute;
        display: block;
        /* 16px -20px */
        /* wrapped in a calc function to get a negative clamp value */
        top: calc(clamp(0.5rem, 2.09vw, 1.25rem) * -1);
        right: calc(clamp(0.5rem, 2.09vw, 1.25rem) * -1);
    }
    #sbs-75 .cs-picture:after {
        /* Bottom left box */
        content: "";
        width: 10rem;
        /* 202px - 248px */
        height: clamp(12.625rem, 25vw, 15.5rem);
        background: #1a1a1a;
        opacity: 1;
        border-radius: 1rem;
        position: absolute;
        display: block;
        /* 16px -20px */
        /* wrapped in a calc function to get a negative clamp value */
        bottom: calc(clamp(0.5rem, 2.09vw, 1.25rem) * -1);
        left: calc(clamp(0.5rem, 2.09vw, 1.25rem) * -1);
        z-index: -1;
    }
    #sbs-75 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sbs-75 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: flex-start;
        /* 60px - 128px */
        gap: clamp(3.75rem, 9.5vw, 8rem);
    }
    #sbs-75 .cs-wrapper {
        /* 328px - 502px */
        width: clamp(20.5rem, 37.5vw, 31.375rem);
        /* 440px - 520px */
        height: clamp(27.5rem, 40vw, 32.5rem);
        flex: none;
    }
    #sbs-75 .cs-picture {
        /* 16px - 20px */
        margin: 0 0 0 clamp(1rem, 5vw, 1.25rem);
        height: 100%;
        flex: none;
    }
    #sbs-75 .cs-content {
        width: 45%;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-355 {
      padding: var(--sectionPadding);
  }
  #reviews-355 .cs-container {
      width: 100%;
      max-width: 90rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
  }
  #reviews-355 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
  }

  #reviews-355 .cs-card-group {
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /* 16px - 20px */
      gap: clamp(1rem, 2.5vw, 1.15rem);
  }
  #reviews-355 .cs-item {
      list-style: none;
      width: 100%;
      max-width: 39.375rem;
      margin: 0;
      /* 24px - 32px top & bottom */
      /* 16px - 40px left & right */
      padding: clamp(1.5rem, 3.15vw, 2rem) clamp(1rem, 3.15vw, 2.5rem);
      background-color: #f7f7f7;
      border-radius: 1rem;
      /* prevents padding from adding to height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      position: relative;
  }
  #reviews-355 .cs-quote {
      width: 2.5rem;
      height: auto;
      margin-bottom: 2rem;
      display: block;
  }
  #reviews-355 .cs-review {
      /* 14px - 20px */
      font-size: clamp(0.875rem, 2vw, 1rem);
      font-family: 'Arial', sans-serif;
      line-height: 1.5em;
      margin: 0;
      /* 20px - 40px */
      margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
      color: var(--bodyTextColor);
  }
  #reviews-355 .cs-name {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 3vw, 1.5625rem);
      line-height: 1.2em;
      font-weight: 700;
      margin: 0;
      /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
      margin-top: auto;
      color: var(--headerColor);
      display: block;
  }
  #reviews-355 .cs-job {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.6vw, 1rem);
      line-height: 1.5em;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-355 .cs-card-group {
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
      flex-wrap: wrap;
  }
  #reviews-355 .cs-item {
      width: clamp(45.5%, 30vw, 32.3%);
  }
}

                              

                                
/* Photo Grid Section */
.photo-grid-section {
    padding: 2rem;
    background-color: black;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1470px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 250px;
}

.grid-item.wide {
    grid-column: span 2;
    height: 300px;
}

.grid-item.tall {
    height: 500px;
}

.grid-item.wide.tall {
    height: 600px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .grid-item {
        height: 200px;
    }
    
    .grid-item.wide {
        height: 250px;
    }
    
    .grid-item.tall {
        height: 400px;
    }
    
    .grid-item.wide.tall {
        height: 500px;
    }

    #hero-229 .cs-container:before {
      /* Left Line */
     visibility: hidden;
    }
    .cs-video-background video#introVideo {
      background-color: rgb(12, 15, 20);
      object-fit: contain;
    }
}

@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-item {
        height: 180px;
    }
    
    .grid-item.wide {
        height: 220px;
    }
    
    .grid-item.tall {
        height: 360px;
    }
    
    .grid-item.wide.tall {
        height: 440px;
    }
}

@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item,
    .grid-item.wide,
    .grid-item.tall,
    .grid-item.wide.tall {
        height: 250px;
        grid-column: auto;
    }
}


/* Services Page Styles */
.services-section {
  padding: var(--sectionPadding);
  background-color: #f7f7f7;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.page-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--bodyTextColor);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 2rem;
}

.services-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-tabs .cs-title {
  position: relative;
}

#services-tabs .cs-title::before, #services-tabs .cs-title::after {
  height: 2px;
  width: 150px;
  content: "";
  position: absolute;
  top: 50%;
}
#services-tabs .cs-title::before {
  left: 40%;
  transform: translate(-100%, 0);
  background: linear-gradient(to left, var(--secondary), transparent);
}
#services-tabs .cs-title::after {
  right: 40%;
  transform: translate(100%, 0);
  background: linear-gradient(to right, var(--secondary), transparent);
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: var(--bodyTextColor);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0.05);
}

.tab-button.active {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.service-content-wrapper {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.service-content {
    display: none;
    flex-direction: column;
    gap: 2rem;
}

.service-content.active {
    display: flex;
}

.service-carousel {
    width: 100%;
}

.service-description {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-content:hover .service-image img {
  transform: scale(1.05);
}

.service-content h2 {
  color: var(--headerColor);
  font-size: 1.5rem;
}

.service-content p {
  color: var(--bodyTextColor);
  line-height: 1.6;
  margin: 0 2rem 2rem;
  width: auto;
}

.service-form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.service-form h3 {
  color: var(--headerColor);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.service-form .cs-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-form .cs-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--bodyTextColor);
}

.service-form .cs-input,
.service-form .cs-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 1rem;
}

.service-form .cs-textarea {
  min-height: 150px;
  resize: vertical;
}

.service-form .cs-button-solid {
  width: 100%;
  padding: 1rem;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-form .cs-button-solid:hover {
  background-color: var(--primary);
}

.cs-video-player {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-layout {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-tabs {
      flex-direction: column;
  }

  .tab-button {
      width: 100%;
      text-align: center;
  }

  .service-image {
      height: 250px;
  }

  .service-content h2 {
      margin: 1.25rem 1.5rem 0.75rem;
      font-size: 1.25rem;
  }

  .service-content p {
      margin: 0 1.5rem 1.5rem;
      width:auto;
  }

  .service-content {
      gap: 1.5rem;
  }

  .service-description {
      margin-bottom: 0;
      padding: 0;
  }

  .services-tabs .cs-title {
    position: relative;
  }
  
  #services-tabs .cs-title::before {
    height:2px;
    width: 100px;
    background-color: var(--secondary);
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-100%, 0);
    left: 35%;
  }
  
  #services-tabs .cs-title::after {
    height:2px;
    width: 100px;
    background-color: var(--secondary);
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(100%, 0);
    right: 35%;
  }
}

@media (max-width: 480px) {
  .service-image {
      height: 200px;
  }

  .service-content h2 {
      margin: 1rem 1rem;
      font-size: 1.1rem;
  }

  .service-content p {
      margin: 0 1rem 1rem;
  }

  .service-form {
      padding: 1.5rem;
  }

  .service-content {
      gap: 1rem;
  }

  #services-tabs .cs-title::before {
    height:2px;
    width: 50px;
    background-color: rgba(linear-gradient(to right, var(--secondary), var(--primary)));
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-100%, 0);
    left: 25%;
  }
  
  #services-tabs .cs-title::after {
    height:2px;
    width:50px;
    background-color: rgba(linear-gradient(to right, var(--secondary), var(--primary)));
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(100%, 0);
    right: 25%;
  }
}


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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1666 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #services-1666 .cs-container {
    width: 100%;
    /* changes to 1280px at small desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 64px */
    gap: clamp(2.5rem, 3.9vw, 4rem);
  }
  #services-1666 .cs-image-group {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
  }
  #services-1666 .cs-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 1rem;
  }
  #services-1666 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #services-1666 .cs-floater {
    width: clamp(20.125rem, 40vw, 28.1875rem);
    height: clamp(20.1875rem, 40vw, 28.25rem);
    position: absolute;
    bottom: 0rem;
    z-index: 1;
    mix-blend-mode: soft-light;
    
  }
  #services-1666 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 40.625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: none;
  }
  #services-1666 .cs-title {
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #services-1666 .cs-text {
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #services-1666 .cs-faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #services-1666 .cs-faq-item {
    list-style: none;
    width: 100%;
    background-color: transparent;
    border: 1px solid #e8e8e8;
    padding: 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  #services-1666 .cs-faq-item.active .cs-indicator:before {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  #services-1666 .cs-faq-item.active .cs-indicator:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  #services-1666 .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
    transform: scaleY(1);
  }
  #services-1666 .cs-faq-item:hover {
    cursor: pointer;
  }
  #services-1666 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    border: none;
    background: transparent;
    color: var(--headerColor);
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 16px - 24px */
    gap: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #services-1666 .cs-button:hover {
    cursor: pointer;
  }
  #services-1666 .cs-indicator {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
  }
  #services-1666 .cs-indicator:before {
    /* left line */
    content: '';
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .5s;
  }
  #services-1666 .cs-indicator:after {
    /* right line */
    content: '';
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .5s;
  }
  #services-1666 .cs-button-text {
    width: 90%;
    padding: 0;
    display: block;
  }
  #services-1666 .cs-item-p {
    font-size: 0.875rem;
    line-height: 1.5em;
    width: 100%;
    max-width: none;
    height: 0;
    margin: 0;
    /* 16px - 24px */
    padding: 0 1rem 1rem 1rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s, padding-bottom 0.3s, padding-top 0.3s;
    font-family: 'Arial', sans-serif;
  }
  #services-1666 .cs-icon {
    width: 2rem;
    height: 2rem;
    display: block;
    filter: brightness(0) saturate(100%) invert(45%) sepia(75%) saturate(2608%) hue-rotate(186deg) brightness(90%) contrast(93%);
  }
  #services-1666 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: clamp(11.625rem, 23vw, 13.625rem);
    /* 28px - 40px */
    margin: clamp(1.75rem, 3.9vw, 2.5rem) 0 0 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #services-1666 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--secondary);
    opacity: 1;
    /* add a border radius below this to round corners */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #services-1666 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1666 .cs-picture {
    height: 100%;
    min-width: 36.5rem;
    width: 48vw;
    right: 0;
    top: 0;
  }

}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1666 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #services-1666 .cs-content {
    width: 55%;
  }
  #services-1666 .cs-image-group {
    width: 100%;
    max-width: 33.875rem;
  }
  #services-1666 .cs-picture {
    width: 100%;
    min-width: 100%;
  }
  #services-1666 .cs-floater {
    width: 28.1875rem;
    right: clamp(50%, 18vw, 75%);
    bottom: -6.25rem;
  }
  #services-1666 .cs-picture {
      height: 750px;
  }
}
              



/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #viewMoreBtn.cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.5rem;
    text-decoration: none;
    margin: 2rem 0 0;
    padding: 0 3rem;
    background-color: var(--primary);
    overflow: hidden;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    border: none;
  }
  #viewMoreBtn.cs-button-solid:before {
    content: "";
    width: 0;
    height: 100%;
    background: var(--secondary);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #viewMoreBtn.cs-button-solid:hover:before {
    width: 100%;
  }

    #gallery-404 {
      padding: var(--sectionPadding);
      overflow: hidden;
      position: relative;
    }
    #gallery-404 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
      position: relative;
    }
    #gallery-404 .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;
    }
    #gallery-404 .cs-title {
      max-width: 20ch;
    }
    #gallery-404 .cs-button-group {
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      row-gap: 0.5rem;
      column-gap: 2rem;
    }
    #gallery-404 .cs-button {
      font-size: 1rem;
      line-height: 1.5em;
      color: var(--bodyTextColor);
      background-color: transparent;
      border: none;
      transition: color 0.3s;
    }
    #gallery-404 .cs-button:hover {
      color: var(--primary);
      cursor: pointer;
    }
    #gallery-404 .cs-button.cs-active {
      color: var(--primary);
    }
    #gallery-404 .cs-gallery-wrapper {
      width: 100%;
      position: relative;
      z-index: 1;
    }
    #gallery-404 .cs-gallery {
      width: 100%;
      padding: 0;
      margin: 0;
      opacity: 1;
      visibility: visible;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      /* 16px - 20px */
      gap: clamp(1rem, 1.5vw, 1.25rem);
      transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
      /* makes the transform scaling origin the top left corner, dictates the direction by which the scale transforms animate towards */
      transform-origin: left top;
    }
    #gallery-404 .cs-gallery.cs-hidden {
      /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
      visibility: hidden;
      /* prevents the mouse from interacting with it */
      pointer-events: none;
      /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
      opacity: 0;
      /* this top and left value help control the animation, by setting it to position absolute and left 0, the gallery won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-container (left: 0). Same for the top:0 value, the gallery won't go past that position when it animates */
      top: 0;
      left: 0;
      position: absolute;
      /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
      transform: scaleY(0) scaleX(0);
    }
    #gallery-404 .cs-gallery.cs-hidden .cs-image {
      /* when gallery is hidden, add these styles to the cs-image to animate from when cs-hidden is removed from the .cs-gallery */
      transform: translateY(2.1875rem);
      opacity: 0;
    }
    #gallery-404 .cs-image {
      border-radius: 1.25rem;
      width: 47%;
      aspect-ratio: 1;
      /* clips the image corners */
      overflow: hidden;
      display: block;
      position: relative;
      /* when .cs-hidden is removed from the .cs-gallery, reset these values and animate between their hidden styles */
      transform: translateY(0rem);
      opacity: 1;
      transition: opacity 0.6s, transform 0.6s;
    }
    #gallery-404 .cs-image:nth-of-type(1) {
      /* changes transition delays at desktop */
      /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
      transition-delay: 0.15s;
    }
    #gallery-404 .cs-image:nth-of-type(2) {
      transition-delay: 0.3s;
    }
    #gallery-404 .cs-image:nth-of-type(3) {
      transition-delay: 0.45s;
    }
    #gallery-404 .cs-image:nth-of-type(4) {
      transition-delay: 0.6s;
    }
    #gallery-404 .cs-image:nth-of-type(5) {
      transition-delay: 0.75s;
    }
    #gallery-404 .cs-image:nth-of-type(6) {
      transition-delay: 0.9s;
    }
    #gallery-404 .cs-image img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* makes it act like a background image */
      object-fit: cover;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #gallery-404 .cs-container {
      max-width: 80rem;
    }
    #gallery-404 .cs-content {
      text-align: left;
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
    }
    #gallery-404 .cs-title {
      margin: 0;
    }
    #gallery-404 .cs-image {
      width: 31.8%;
      aspect-ratio: 1;
    }
  }
  /* Desktop - 1300px */
  @media only screen and (min-width: 81.25rem) {
    #gallery-404 .cs-flex {
      max-width: 34.375rem;
    }
    #gallery-404 .cs-gallery {
      align-items: stretch;
      justify-content: center;
    }
    #gallery-404 .cs-image {
      width: 39.375rem;
      max-width: 100%;
      height: 25rem;
    }
    #gallery-404 .cs-image:nth-of-type(2),
    #gallery-404 .cs-image:nth-of-type(3),
    #gallery-404 .cs-image:nth-of-type(4),
    #gallery-404 .cs-image:nth-of-type(5) {
      width: 19.0625rem;
    }
    #gallery-404 .cs-image:nth-of-type(1) {
      /* these delays stagger the reveal of each image so they all go one after the other and not all at once */
      transition-delay: 0.15s;
    }
    #gallery-404 .cs-image:nth-of-type(2) {
      transition-delay: 0.3s;
    }
    #gallery-404 .cs-image:nth-of-type(3) {
      transition-delay: 0.45s;
    }
    #gallery-404 .cs-image:nth-of-type(4) {
      transition-delay: 0.15s;
    }
    #gallery-404 .cs-image:nth-of-type(5) {
      transition-delay: 0.3s;
    }
    #gallery-404 .cs-image:nth-of-type(6) {
      transition-delay: 0.45s;
    }
  }

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2051 {
    padding: var(--sectionPadding);
    padding-bottom:20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .services-2052 {
    padding: var(--sectionPadding);
    padding-bottom:20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* margin-bottom: 12rem; */
  }
  #services-2051::before {
    /* black background, removed at tablet */
    content: "";
    width: 100%;
    background-color: #1a1a1a;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 36.25rem;
    left: 0;
    z-index: -1;
  }
  .services-2052::before {
    bottom: 0 !important;
  }
  #services-2051 .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);
  }
  #services-2051 .cs-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #services-2051 .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 */
    padding: clamp(3.25rem, 6vw, 5rem) clamp(3rem, 6vw, 4rem) clamp(1.25rem, 6vw, 5rem) 0;

    align-items: flex-start;
  }
  #services-2051 .cs-topper {
    color: var(--secondary);
  }
  #services-2051 .cs-title {
    /* 23 characters wide including spaces */
    max-width: 26ch;
    color: var(--bodyTextColorWhite);
  }
  #services-2051 .cs-text {
    margin-bottom: 0.75rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #services-2051 .cs-text:last-of-type {
    margin-bottom: 0;
  }
  #services-2051 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.5rem;
    text-decoration: none;
    margin: 2rem 0 0;
    padding: 0 3rem;
    background-color: var(--primary);
    overflow: hidden;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #services-2051 .cs-button-solid:before {
    content: "";
    width: 0;
    height: 100%;
    background: var(--secondary);
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #services-2051 .cs-button-solid:hover:before {
    width: 100%;
  }
  #services-2051 .cs-button-group {
    gap: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  #services-2051 .cs-button-group .cs-button-solid {
    margin: 0;
  }
  #services-2051 .cs-picture-group {
    width: 100%;
    min-height: 32.5rem;
    display: flex;
    position: relative;
    z-index: 1;
  }
  #services-2051 .cs-picture {
    width: 100%;
    min-height: 22.625rem;
    /* clips img tag corners */
    overflow: hidden;
    border-radius: 0.5rem;
    display: block;
    position: relative;
    z-index: 1;
  }
  #services-2051 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #services-2051 .cs-box {
    text-align: left;
    width: 88%;
    max-width: 19.0625rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: #fff;
    position: absolute;
    /* 16px - 40px */
    bottom: clamp(1rem, 4vw, 2.5rem);
    /* 16px - 40px */
    left: clamp(1rem, 4vw, 2.5rem);
    z-index: 1;
  }
  #services-2051 .cs-box:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2051 .cs-box-icon {
    width: 3.75rem;
    height: auto;
    margin: 0 0 1rem;
    display: block;
  }
  #services-2051 .cs-box-number {
    font-size: 1.9375rem;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 0.75rem;
    color: var(--headerColor);
    display: block;
  }
  #services-2051 .cs-box-desc {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    display: block;
  }
  #services-2051 .cs-stat-group {
    display: flex;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 10;
  }
  #services-2051 .cs-stats {
    width: 100%;
    max-width: 39.375rem;
    margin: 0;
    padding: 0;
    display: flex;
    /* 16px - 24px */
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
  #services-2051 .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #services-2051 .cs-icon {
    /* 64px - 80px */
    width: clamp(4rem, 8vw, 5rem);
    height: auto;
    display: block;
    flex: none;
  }
  #services-2051 .cs-stat {
    /* 31px - 39px */
    font-size: clamp(1.9375rem, 3vw, 2.4375rem);
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 0.25rem;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #services-2051 .cs-stat-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #services-2051 .cs-card-group {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  #services-2051 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1rem, 4.5vw, 2rem);
    border-radius: 0.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  #services-2051 .cs-item:nth-child(1) {
    background-image: url('/assets/images/img16.jpg');
  }

  #services-2051 .cs-item:nth-child(2) {
    background-image: url('/assets/images/img22.jpg');
  }

  #services-2051 .cs-item:nth-child(3) {
    background-image: url('/assets/images/img12.jpg');
  }

  #services-2051 .cs-item:nth-child(4) {
    background-image: url('/assets/images/img22.jpg');
  }

  #services-2051 .cs-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    transition: background 0.3s ease;
    z-index: -1;
  }

  #services-2051 .cs-item:hover::before {
    background: rgba(0, 0, 0, 0.7);
  }

  #services-2051 .cs-item:hover {
    transform: translateY(-5px);
  }

  #services-2051 .cs-flex {
    position: relative;
    z-index: 1;
    color: var(--bodyTextColorWhite);
  }

  #services-2051 .cs-h3 {
    color: var(--bodyTextColorWhite);
    margin-bottom: 1rem;
  }

  #services-2051 .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }

  @media only screen and (min-width: 48rem) {
    #services-2051 .cs-item {
        width: calc(50% - 20px);
    }
  }

  @media only screen and (min-width: 64rem) {
    #services-2051 .cs-item {
        width: calc(25% - 20px);
        min-height: 300px;
    }
  }

  #services-2051 .cs-ul {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-family: 'Arial', sans-serif;
    font-size: .9rem; 
    line-height: 1.5;
    color: var(--bodyTextColorWhite);
  }


  #services-2051 .cs-item:hover {
    border-color: var(--primary);
  }
  #services-2051 .cs-flex {
    display: flex;
    flex-direction: column;
  }
  #services-2051 .cs-stat-group-item .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 .75rem 0;
    color: var(--headerColorWhite);
    transition: color 0.3s;
  }
  #services-2051 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.675rem, 1.2vw, .9rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    font-family: 'Arial', sans-serif;
  }
  #services-2051 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    max-width: fit-content;
    margin-top: auto;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #services-2051 .cs-item-picture {
    margin: 0;
    padding: 3.625rem 0 0 7.1875rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
  }
  #services-2051 .cs-item-picture:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-2051 .cs-item-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  #services-2051 .cs-card-group {
    flex-direction: column;
  }

  #services-2051 .cs-item-text {
    font-size: clamp(0.875rem, 1.2vw, 1.2rem);
  }

  #services-2051::before{
    bottom: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2051:before {
    /* 100px - 200px */
    /* top: clamp(6.25rem, 15vw, 12.5rem); */
    bottom: 12.5rem;
  }
  #services-2051 .cs-container {
    max-width: 80rem;
    align-items: flex-start;
  }
  #services-2051 .cs-content {
    width: 50%;
    /* 140px - 200px top */
    /* 48px - 64px right */
    /* 20px - 80px bottom*/
    padding: clamp(1.25rem, 6vw, 5rem) clamp(3rem, 6vw, 4rem) clamp(1.25rem, 6vw, 5rem) 0;
  }
  #services-2051 .cs-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }
  #services-2051 .cs-picture-group {
    width: 50vw;
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
  }
  #services-2051 .cs-picture {
    border-radius: 0.5rem 0 0 0.5rem;
  }
  #services-2051 .cs-stat-group {
    flex-direction: row;
  }
  #services-2051 .cs-item {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    grid-column: span 6;
  }
  #services-2051 .cs-item-picture {
    width: 50%;
    max-width: 11.5625rem;
    height: auto;
    padding: 3.8125rem 0 0 0.25rem;
    flex: none;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-2051 .cs-picture-group {
    margin-left: 2.5rem;
  }
  #services-2051 .cs-li {
    flex-direction: row;
    align-items: center;
  }
}
                                
                                  

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-2320 {
      padding: var(--sectionPadding);
      display: flex;
      flex-direction: column;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
      position: relative;
      z-index: 1;
    }
    #contact-2320 .cs-container {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 36.25rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
    }
    #contact-2320 .cs-container2 {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 36.25rem;
      padding: 5rem 3rem;
      margin: auto;
      position: relative;
      z-index: 1;
    }
    #contact-2320 .cs-container2 .cs-topper {
      color: #fff;
      margin-bottom: 40px;
    }
    #contact-2320 .cs-content {
      text-align: left;
    }
    #contact-2320 .cs-title {
      margin-bottom: 2rem;
    }
    #contact-2320 .cs-form {
      border-radius: 1rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
    }
    #contact-2320 .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-2320 .cs-input {
      font-family: 'Arial', sans-serif;
      font-size: 1rem;
      width: 100%;
      height: 3.5rem;
      padding: 0;
      padding-left: 1.5rem;
      color: var(--headerColor);
      background-color: #f7f7f7;
      border: none;
      /* prevents padding from adding to height and width */
      box-sizing: border-box;
    }
    #contact-2320 .cs-input::placeholder {
      color: #7d799c;
      opacity: 0.6;
    }
    #contact-2320 .cs-textarea {
      min-height: 7.5rem;
      padding-top: 1.5rem;
      margin-bottom: 0.75rem;
      font-family: inherit;
    }
    #contact-2320 .cs-button-solid {
      font-size: 1rem;
      line-height: 1.5em;
      text-decoration: none;
      font-weight: 700;
      overflow: hidden;
      margin: 0;
      color: #fff;
      padding: 0.75rem 1.5rem;
      background-color: var(--secondary);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
      border:none;
      cursor: pointer;
    }
    #contact-2320 .cs-button-solid:before {
      content: "";
      width: 0;
      height: 100%;
      background: var(--primary);
      opacity: 1;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #contact-2320 .cs-button-solid:hover {
      color: #fff;
    }
    #contact-2320 .cs-button-solid:hover:before {
      width: 100%;
    }
    
    #contact-2320 .cs-map {
      width: 100%;
      max-width: 39.375rem;
      height: 25rem;
      position: relative;
      z-index: 1;
      display: block;
    }
    #contact-2320 .cs-iframe-wrapper {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      /* 40px - 56px */
      bottom: clamp(2.5rem, 5vw, 3.5rem);
    }
    #contact-2320 .cs-iframe-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    #contact-2320 .cs-box {
      width: 90%;
      max-width: 28.125rem;
      /* 16px - 32px top & bottom */
      /* 16px left & right */
      padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 2.4vw, 1rem);
      background-color: #fff;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
    }
    #contact-2320 .cs-box:before {
      content: '';
      width: 100%;
      height: 100%;
      background: var(--primary);
      pointer-events: none;
      opacity: 0.1;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #contact-2320 .cs-icon {
      width: 2rem;
      height: auto;
      display: block;
    }
    #contact-2320 .cs-flex {
      display: flex;
      flex-direction: column;
    }
    #contact-2320 .cs-header {
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.2em;
      margin: 0 0 0.5rem;
      color: var(--headerColor);
    }
    #contact-2320 .cs-address {
      font-size: clamp(0.75rem, 2.8vw, 1rem);
      line-height: 1.5em;
      margin: 0;
      color: var(--bodyTextColor);
    }
    #contact-2320 .cs-hours {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #contact-2320 .cs-hours-info {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 3vw, 1.5625rem);
      line-height: 1.2em;
      font-weight: 700;
      width: 60%;
      max-width: 28ch;
      margin: 0;
      color: var(--bodyTextColorWhite);
      font-family: 'Arial', sans-serif;
    }
    #contact-2320 .cs-hours-info ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
    }
    #contact-2320 .cs-hours-info ul li p{
     font-weight: bold;
     font-size: 1rem;
     margin-bottom: 0;
     margin-top: 0;
    }
    #contact-2320 .cs-hours-info ul li .contact-icon {
        width: 18px;
        height: 18px;
        color: var(--bodyTextColorWhite);
        flex-shrink: 0;
    }
    #contact-2320 .cs-hours-info ul li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    #contact-2320 .cs-hours-info ul li a{
      text-decoration: underline;
      color: var(--bodyTextColorWhite);
    }
    #contact-2320 .cs-background {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
    }
    #contact-2320 .cs-background:before {
      /* background color overlay */
      content: '';
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background: #000;
      opacity: 0.72;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #contact-2320 .cs-background img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes img tag act as a background image */
      object-fit: cover;
    }
    #contact-2320 .cs-contact-cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    #contact-2320 .cs-contact-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    #contact-2320 .cs-contact-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
    #contact-2320 .cs-contact-card .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
        color: var(--secondary);
        stroke-width: 1.5;
    }
    #contact-2320 .cs-contact-card .cs-card-label {
        font-size: 1rem;
        font-weight: 600;
        color: var(--secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    #contact-2320 .cs-contact-card .cs-card-value {
        font-size: 1.25rem;
        color: var(--bodyTextColorWhite);
        text-align: center;
        word-break: break-word;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-2320 .cs-container {
      max-width: 80rem;
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
      gap: 3.25rem;
    }
    #contact-2320 .cs-container2 {
      max-width: 80rem;
    }
    #contact-2320 .cs-content {
      max-width: 32.625rem;
      /* 24px - 80px */
      padding: clamp(2rem, 5vw, 5rem) 0;
    }
    #contact-2320 .cs-title,
    #contact-2320 .cs-topper,
    #contact-2320 .cs-text {
      text-align: left;
      margin-left: 0;
    }
    #contact-2320 .cs-title {
      max-width: 32.625rem;
    }
    #contact-2320 .cs-services,
    #contact-2320 .cs-phone {
      width: 47%;
    }
    #contact-2320 .cs-button-solid {
      margin-left: 0;
    }
    #contact-2320 .cs-map {
      max-width: 39.375rem;
      height: auto;
      order: -1;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-2320 .cs-contact-cards {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    #contact-2320 .cs-contact-card {
        flex: 1;
        max-width: 400px;
    }
}

/* Remove old styles that are no longer needed */
#contact-2320 .cs-hours-info ul,
#contact-2320 .cs-hours-info ul li,
#contact-2320 .cs-hours-info ul li p,
#contact-2320 .cs-hours-info ul li a {
    all: unset;
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        background-color: #000;
    }
    #footer .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer .cs-top {
        width: 100%;
        /* 32px - 40px */
        /* margin-bottom: clamp(2rem, 4vw, 2.5rem); */
        padding-bottom: clamp(2rem, 4vw, 2.5rem);
        border-bottom: 1px solid #484848;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    #footer .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 28px - 40px */
        column-gap: clamp(1.75rem, 4vw, 2.5rem);
    }
    #footer .cs-li {
        list-style: none;
    }
    #footer .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 .cs-link:hover {
        color: var(--secondary);
    }
    #footer .cs-logo {
        width: 10.5rem;
        height: auto;
        display: block;
    }
    #footer .cs-logo-img {
        width: 100%;
        height: auto;
        display: block;
        filter: brightness(0) invert(1);
    }
    #footer .cs-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #footer .cs-social {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #footer .cs-social-li {
        list-style: none;
    }
    #footer .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 .cs-social-link:hover {
        background-color: var(--secondary);
    }
    #footer .cs-social-link:hover .cs-social-icon {
        filter: grayscale(1) brightness(0);
        opacity: 1;
    }
    #footer .cs-social-icon {
        width: 0.75rem;
        height: auto;
        display: block;
        opacity: 0.5;
    }

    .cs-logos {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      /* background-color: #FFF; */
      padding: 1rem 2rem;
    }

    .cs-logos img {
      width: 88px;
      height: 48px;
      object-fit: contain;
      /* filter: brightness(0) invert(1); */
    }

    #footer .cs-copyright {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: #bababa;
        display: block;
        font-family: 'Arial', sans-serif;
    }
    #footer .cs-copyright-link {
        font-size: inherit;
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }
    #footer .cs-copyright-link:hover {
        color: var(--secondary);
    }
    #footer .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #footer .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #080808;
        opacity: 0.96;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #footer .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) {
    #footer .cs-top {
        flex-direction: row;
        justify-content: space-between;
    }
    #footer .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
   
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding: 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    color: #f1f1f1;
    position: absolute;
    right: 25px;
    top: 10px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
}

/* Animation */
.modal-content {
    animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* Make gallery images clickable */
.cs-image {
    cursor: pointer;
}

/* Mobile Optimization */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-close {
        right: 15px;
        top: 15px;
    }
}

/* Active link styling */
.cs-li-link.cs-active {
    color: var(--primary);
}

.cs-li-link.cs-active:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Mobile navigation active link */
@media screen and (max-width: 991px) {
    .cs-li-link.cs-active {
        color: var(--primary);
    }
    
    .cs-li-link.cs-active:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
    }
    .cs-logos {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      /* background-color: #eee; */
      
      padding: 1rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .cs-logos img {
      /* width: 88px; */
      /* height: 48px; */
      width: 100%;
      height: auto;
      object-fit: contain;
      /* filter: brightness(0) invert(1); */
    }
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--secondary);
    color: var(--bodyTextColorWhite);
    padding: .5rem 1rem;
    position: relative;
    z-index: 100;
    height: 100%;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
}

.top-bar-content ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.top-bar-content a {
    color: var(--bodyTextColorWhite);
    text-decoration: none;
    font-size: 0.75rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.top-bar-content a:hover {
    text-decoration: underline;
}

.top-bar-content .contact-icon {
    width: 1rem;
    height: 1rem;
    color: var(--bodyTextColorWhite);
    flex-shrink: 0;
}

@media only screen and (min-width: 48rem) {
  .top-bar {
    padding: 0;
  }
    .top-bar-content ul {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .top-bar-content a {
        font-size: 0.75rem;
    }
    
    .top-bar-content .contact-icon {
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* Skip to Main Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    transition: top 0.3s ease;
    z-index: 10022222;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--secondary);
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 48rem) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .back-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Video Background Styles */
.cs-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    isolation: isolate;
}

.cs-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.cs-video-background video#introVideo {
  background-color: rgb(12, 15, 20);
  object-fit: cover;
  object-position: 45%;
}

.cs-video-background video.active {
    opacity: 1;
}

.intro-video {
    z-index: 2;
}

.main-video {
    z-index: 1;
}

.hero-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-content.visible {
    opacity: 1;
}

.cs-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media (max-width: 48rem) {
    .cs-video-background video {
        width: 100%;
        height: auto;
    }
}

.video-control {
    position: absolute;
    bottom: 4.5rem;
    right: calc(50% - 1.5rem);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.video-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-control svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.video-control .play-icon {
    display: none;
}

.video-control .pause-icon {
    display: block;
}

.video-control.paused .play-icon {
    display: block;
}

.video-control.paused .pause-icon {
    display: none;
}

@media (max-width: 48rem) {
    .video-control {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .video-control svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Video Background */
.cs-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.intro-video,
.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.intro-video {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.main-video {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
}

.cs-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

@media (max-width: 768px) {
    .modal-nav {
        width: 36px;
        height: 36px;
    }
    
    .modal-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2201 {
    padding: var(--sectionPadding);
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2201 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-2201 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #sbs-2201 .cs-title {
    max-width: 30ch;
  }
  #sbs-2201 .cs-text {
    margin-bottom: 1.5rem;
    color: var(--bodyTextColor);
  }
  #sbs-2201 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 2rem 0 0 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2201 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-2201 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2201 .cs-image-group {
    font-size: min(2.3vw, .75rem);
    width: 39.375em;
    height: 39.1875em;
    order: -1;
    position: relative;
    flex: none;
    will-change: transform;
    transition: transform 0.1s ease-out;
  }
  #sbs-2201 .cs-picture {
    overflow: hidden;
    border: 8px solid #fff;
    display: block;
    position: absolute;
  }
  #sbs-2201 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2201 .cs-picture1 {
    width: 24em;
    height: 29.375em;
    top: 0;
    left: 0;
  }
  #sbs-2201 .cs-picture2 {
    width: 21.5625em;
    height: 31.875em;
    right: 0;
    bottom: 0;
  }
  #sbs-2201 .cs-flower {
    width: clamp(8.5625rem, 20vw, 19.3125rem);
    height: auto;
    display: block;
    position: absolute;
    right: -2rem;
    bottom: -0.5rem;
  }
  #sbs-2201 .cs-image-group {
    margin-top: 2rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2201 .cs-container {
    max-width: 80rem;
  }
  #sbs-2201 .cs-flower {
    right: 0;
    bottom: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2201 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
  }
  #sbs-2201 .cs-content {
    text-align: left;
    padding: 3rem 0;
    align-self: flex-start;
    align-items: flex-start;
    flex: 0 0 50%;
  }
  #sbs-2201 .cs-image-group {
    font-size: min(1.3vw, 1rem);
    height: auto;
    min-height: 39.1875em;
    flex: 0 0 45%;
    align-self: flex-start;
    margin-top: 5rem;
  }
  #sbs-2201 .cs-picture1 {
    height: 74.960128%;
  }
  #sbs-2201 .cs-picture2 {
    height: 81.339719%;
  }
}
                                
                                
/* Banner Header Styles */
.banner-section {
    background-color: var(--primary);
    padding: 6rem 1rem 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/img4.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.banner-container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

.banner-section h1 {
    color: var(--bodyTextColorWhite);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.banner-section .cs-text {
    color: var(--bodyTextColorWhite);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section Styles */
.about-section {
    padding: var(--sectionPadding);
    background-color: #fff;
}

.about-section .cs-container {
    max-width: 80rem;
    margin: 0 auto;
}

.about-section .cs-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section .cs-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 100%;
}

.about-section .cs-button-solid {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-section .cs-button-solid:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.about-section .cs-button-solid:hover {
    color: var(--bodyTextColorWhite);
}

.about-section .cs-button-solid:hover:before {
    transform: translateX(0);
}

@media only screen and (max-width: 768px) {
    .banner-section {
        padding: 5rem 1rem 2rem 1rem;
    }
    
    .about-section .cs-text {
        font-size: 1rem;
    }
}
                                
                                
/* Form validation styles */
.cs-input.invalid {
    border-color: #ff4444;
    background-color: #fff8f8;
}

.cs-input.invalid:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}

.rate-limit-message {
    background-color: #fff8f8;
    border: 1px solid #ff4444;
    border-radius: 4px;
    padding: 10px;
    margin: 10px 0;
    font-size: 14px;
    color: #ff4444;
}

/* reCAPTCHA container */
.g-recaptcha {
    margin: 20px 0;
}

/* Disabled button state */
.cs-button-solid:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
                                
                                
/* Service Carousel */
.service-carousel {
    width: 100%;
    position: relative;
    background: var(--light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-slide img {
    object-fit: cover;
    display: block;
}

.carousel-description {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
}

.carousel-description h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
}

.carousel-description p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: var(--bodyTextColor);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.carousel-button:hover {
    background: var(--primary);
    color: white;
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-button svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-description {
        padding: 0.75rem;
    }

    .carousel-description h3 {
        font-size: 1.1rem;
    }

    .carousel-description p {
        font-size: 0.9rem;
    }

    .carousel-button {
        width: 32px;
        height: 32px;
    }

    .carousel-button svg {
        width: 20px;
        height: 20px;
    }
}
                                
                                
.service-description {
    padding: 0 1rem;
}

.service-description h2 {
    color: var(--headerColor);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    margin: 1rem;
}

.service-description p {
    color: var(--bodyTextColor);
    line-height: 1.6;
    font-size: .9rem;
    margin: 0 1rem;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .service-description {
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }

    .service-description h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .service-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-description {
        margin-bottom: 0;
        padding: 0 0.5rem;
    }

    .service-description h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}
                                
                                
.cs-logos-container {
    width: 100%;
    padding: 2rem 0;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    border-bottom: 1px solid #484848;
}

.cs-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cs-logos img {
    width: 120px;
    height: 48px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cs-logos img:hover {
    opacity: 1;
    transform: translateY(-2px);
}
@media only screen and (min-width: 48rem) {
    .cs-logos {
        gap: 3rem;
    }

    .cs-logos img {
        width: 100px;
        height: 40px;
    }

    
.owl-carousel .owl-item img {
  height: 80px;
}

}

@media only screen and (max-width: 991px) {
    .cs-logos {
        gap: 1.5rem;
    }

    .cs-logos img {
        width: 90px;
        height: 36px;
    }
}

@media only screen and (max-width: 768px) {
    .cs-logos {
        gap: 1rem;
    }

    .cs-logos img {
        width: 80px;
        height: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .cs-logos {
        gap: 0.75rem;
    }

    .cs-logos img {
        width: 70px;
        height: 28px;
    }
}

#footer .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: 0 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#footer .cs-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

#footer .cs-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

@media only screen and (min-width: 48rem) {
    #footer .cs-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #footer .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
                                
                                
/* --- LOGO SLIDER STYLES --- */
.cs-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  overflow: hidden;
  transition: transform 0.3s;
}

.cs-logos img {
  /* Remove all width/height rules */
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.cs-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.cs-logos-prev, .cs-logos-next {
  display: none;
}

.cs-logos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto;
}


@media (max-width: 768px) {
  .cs-logos {
    flex-wrap: nowrap;
    gap: 0;
  }
  .cs-logos img {
    flex: 0 0 100%;
    min-width: 0;
    max-width: 100%;
    height: 48px;
  }
  .cs-logos-prev, .cs-logos-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    z-index: 2;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
  }
  .cs-logos-prev { left: 0; }
  .cs-logos-next { right: 0; }
  .cs-logos-slider {
    max-width: 300px;
  }
}

@media (min-width: 769px) {
  .cs-logos-slider {
    max-width: 100%;
  }
  .cs-logos {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .cs-logos-prev, .cs-logos-next {
    display: none !important;
  }
 
}
                                
                                
@media (max-width: 768px) {
  .cs-logos-slider {
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
  }
  .cs-logos {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s;
    /* width will be set by JS */
  }
  .cs-logos img {
    flex: 0 0 100%;
    width: 100%;
    height: 48px;
    object-fit: contain;
  }
}
                                
                                
/* Logo Owl Carousel Styles */
.cs-logos-owl img {
  height: 150px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.owl-prev-arrow, .owl-next-arrow {
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  padding: 0 10px;
}
                                
                                
@media (max-width: 768px) {
  .cs-logos-owl .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 2;
    height: 0;
  }
  .cs-logos-owl .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(240,240,240,0.85);
    color: #444;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    border: 1px solid #ccc;
    transition: background 0.2s, color 0.2s, border 0.2s;
    opacity: 0.85;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    padding: 0;
  }
  .cs-logos-owl .carousel-button.prev { left: 0; margin-left: 8px; }
  .cs-logos-owl .carousel-button.next { right: 0; margin-right: 8px; }
  .cs-logos-owl .carousel-button:hover {
    background: #eaeaea;
    color: #111;
    border-color: #888;
    opacity: 1;
  }
  .cs-logos-owl .carousel-button svg {
    width: 20px;
    height: 20px;
    stroke: #444;
    display: block;
  }
}
@media (min-width: 769px) {
  .cs-logos-owl .owl-nav { display: none !important; }
}
.owl-prev-arrow, .owl-next-arrow { display: none !important; }
                                
                                