@media only screen and (min-width: 0rem) {
    #int-hero {
      z-index: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 30vh;
    }
    #int-hero picture {
      z-index: -2;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
    }
    #int-hero picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    #int-hero h1 {
      position: relative;
      margin: 0 auto;
      margin-top: 4.375rem;
      margin-bottom: 1.875rem;
      max-width: 31.25rem;
      width: 96%;
      font-size: 2.13333333rem;
      color: var(--bodyTextColorWhite);
      text-align: center;
    }
    #int-hero p {
      display: block;
      margin: auto;
      margin-bottom: 1.875rem;
      max-width: 25rem;
      width: 96%;
      color: var(--bodyTextColorWhite);
      text-align: center;
    }
    #int-hero:before {
      z-index: -1;
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      opacity: 1;
      display: block;
      background: var(--primary);
      height: 100%;
      width: 100%;
    }
  }
  /* Tablet */
  @media only screen and (min-width: 48rem) {
    #int-hero {
      font-size: 100%;
    }
    #int-hero h1 {
      font-size: 4rem;
    }
  }
  /* Small Desktop */
  @media only screen and (min-width: 64rem) {
    #int-hero {
      background-attachment: fixed;
      min-height: 18.75rem;
      height: auto;
      padding-top: 11.25rem;
      font-size: inherit;
      padding-block-end: 6.25rem;
    }
  
    #int-hero picture {
      z-index: -2;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
    }
    #int-hero picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    #int-hero h1 {
      position: relative;
      margin: 0 auto;
      margin-top: 4.375rem;
      margin-bottom: 1.875rem;
      max-width: 31.25rem;
      width: 96%;
      color: var(--bodyTextColorWhite);
      text-align: center;
    }
  }                                        
  /*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1628 {
    padding: var(--sectionPadding);
    background-color: #f8f8f8;
  }
  #services-1628 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1628 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #services-1628 .cs-title {
    max-width: 20ch;
  }
  #services-1628 .cs-text {
    max-width: 40rem;
    position: relative;
    z-index: 1;
  }
  #services-1628 .cs-text:after {
    /* divider line */
    content: "";
    width: 100%;
    height: 1px;
    margin-top: 1.5rem;
    background: var(--primary);
    opacity: 1;
    display: block;
    position: relative;
  }
  #services-1628 .cs-chevron {
    --chevronColor: var(--primary);
    width: 3rem;
    height: auto;
  }
  #services-1628 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex; /* Keep using flexbox */
    flex-direction: column; /* Change to column for vertical stacking */
    align-items: center; /* Center items horizontally */
    gap: clamp(0.75rem, 1.875vw, 0.9375rem); /* Adjust gap for flex */
  }
   #services-1628 .cs-link {
    text-decoration: none;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #services-1628 .cs-item {
    list-style: none;
    width: 100%; /* Set width to 100% for stacking */
    max-width: none; /* Remove max-width to allow full width */
    display: flex;
    flex-direction: column;
  }
  #services-1628 .cs-item:hover .cs-picture img {
    transform: scale(1.05);
  }
  #services-1628 .cs-picture {
    width: 100%;
    height: 15rem;
    margin-bottom: 1.5rem;
    background-color: #000;
    overflow: hidden;
    display: block;
    position: relative;
  }
  #services-1628 .cs-picture img {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .6s, opacity .3s;
  }
  #services-1628 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-1628 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0 0 1.5rem 0;
    color: var(--bodyTextColor);
  }
  #services-1628 .cs-button-solid {
    font-size: 1.2rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin-right: auto;
    color: #f8f8f8;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #services-1628 .cs-nav-button {
      line-height: 3.875rem;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    }  
  #services-1628 .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform .3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1628 .cs-container {
    max-width: 80rem;
  }
  #services-1628 .cs-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #services-1628 .cs-flex {
    text-align: left;
    width: 40vw;
    max-width: 40rem;
    flex: none;
  }
  #services-1628 .cs-title {
    margin: 0;
  }
  #services-1628 .cs-text {
    padding: 0.75rem 0 0.75rem 1.5rem;
  }
  #services-1628 .cs-text:after {
    width: 1px;
    height: 100%;
    margin: 0 1.5rem 0 0;
    order: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  #services-1628 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for alignment */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Evenly space items */
    gap: clamp(0.75rem, 1.875vw, 0.9375rem); /* Dynamic gap */
    flex-direction: row;
  }
  #services-1628 .cs-item {
    list-style: none;
    display: flex;
    flex-direction: column; /* Stack content vertically within each item */
    margin-bottom: 1rem; /* Space between rows */
    width: calc(50% - (clamp(0.75rem, 1.875vw, 0.9375rem) / 2)); /* Adjust width to fit two items with gap */ 
  }
  #services-1628 .cs-link {
    text-decoration: none;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #services-1628 .cs-picture {
    /* 240px - 420px */
    height: clamp(15rem, 33vw, 26.25rem);
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-1628 .cs-item {
    grid-column: span 3;
  }
}
                           