/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-2332 {
    padding: var(--sectionPadding);
    background-color: #f3f8ff;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #services-2332 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-2332 .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;
  }
  #services-2332 .cs-title {
    max-width: 22ch;
  }
  #services-2332 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  #services-2332 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    /* 32px - 60px top & bottom */
    /* 16px - 48px sides */
    padding: clamp(2rem, 8vw, 3.75rem) clamp(1rem, 3vw, 3rem);
    background-color: #f3f8ff;
    border-bottom: 1px solid #e7e7e8;
    grid-column: span 12;
    grid-row: span 1;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s;
  }
  #services-2332 .cs-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: left;
  }
  #services-2332 .cs-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  #services-2332 .cs-icon {
    width: 2.5rem;
    height: auto;
  }
  #services-2332 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: bold;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--headerColor);
  }
  #services-2332 .cs-item-text {
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #services-2332 .cs-floater {
    width: 571/16rem;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: -6.25rem;
    z-index: -1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-2332 .cs-container {
    max-width: 80rem;
  }
  #services-2332 .cs-card-group {
    gap: 0;
    border: 1px solid #e7e7e8;
  }
  #services-2332 .cs-item {
    border-right: 1px solid #e7e7e8;
    grid-column: span 4;
    position: relative;
  }
  #services-2332 .cs-item:hover {
    background-color: #e8f2ff;
  }
  #services-2332 .cs-item:nth-of-type(5),
  #services-2332 .cs-item:nth-of-type(8) {
    position: relative;
    z-index: 100;
    /* middle-left square */
  }
  #services-2332 .cs-item:nth-of-type(5)::before,
  #services-2332 .cs-item:nth-of-type(8)::before {
    content: "";
    width: 0.5625rem;
    height: 0.5625rem;
    background-color: var(--secondary);
    position: absolute;
    top: -0.3125rem;
    left: -0.3125rem;
    z-index: 99;
  }
  #services-2332 .cs-item:nth-of-type(5)::after,
  #services-2332 .cs-item:nth-of-type(8)::after {
    content: "";
    width: 0.5625rem;
    height: 0.5625rem;
    background-color: var(--secondary);
    position: absolute;
    top: -0.3125em;
    right: -0.3125rem;
    z-index: 99;
  }
  #services-2332 .cs-item:nth-of-type(3),
  #services-2332 .cs-item:nth-of-type(6) {
    border-right: none;
  }
  #services-2332 .cs-item:nth-of-type(4),
  #services-2332 .cs-item:nth-of-type(5),
  #services-2332 .cs-item:nth-of-type(6) {
    border-bottom: none;
  }
  #services-2332 .cs-item:nth-of-type(7),
  #services-2332 .cs-item:nth-of-type(8),
  #services-2332 .cs-item:nth-of-type(9) {
    border-top: 1px solid #e7e7e8;
    border-bottom: none;
  }
  #services-2332 .cs-item:nth-of-type(9) {
    border-right: none;
  }
}
/* Large Desktop - 1700px */
@media only screen and (min-width: 106.25rem) {
  #services-2332 .cs-floater {
    left: 0;
  }
  #services-2332 .cs-link {
    align-items: center;
  }
}
                                