/*-- -------------------------- -->
<---       Breadcrumbs         -->
<--- -------------------------- -*/

@media only screen and (min-width: 0px) {
  #breadcrumbs{
    padding: var(--sectionPadding);
    padding-top: 0.75rem;
    margin-top: 96px;
    padding-bottom: 0.75rem;
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
  }
  #breadcrumbs .cs-container{
    max-width: 1280px;
    display: flex;
    margin: auto;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  #breadcrumbs .arrow{
    width: 12px;
    height: 12px;
  }
  #breadcrumbs a{
    color: #bfbfbf;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
  }
  #breadcrumbs a:hover{
    color: var(--primary);
  }
  #breadcrumbs .current:hover{
    color: #e0e0e0;
  }
  #breadcrumbs .current{
    color: #e0e0e0;
  }
}
@media only screen and (min-width: 1024px) {
  #breadcrumbs{
    margin-top: 88px;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1202 {
    padding: var(--sectionPadding);
    background-color: #0a0a0a;
  }
  #services-1202 .button-box{
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #services-1202 .cs-text-group a{
    text-decoration: none;
  }
  #services-1202 .cs-container {
    max-width: 80rem;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: 24px;
  }
  #services-1202 .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-1202 .cs-flex-group {
    display: flex;
    flex-direction: column;
  }
  #services-1202 .cs-button-solid {
    margin-top: 24px;
  }
  #services-1202 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    justify-content: center;
    gap: 1rem;
  }
  #services-1202 .cs-item {
    /* .cs-h3 and .cs-item-text both use text-align: inherit, so change the below to affect the whole item */
    text-align: left;
    list-style: none;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    /* 20px - 48px */
    padding: 24px;
    padding-bottom: 40px;
    background-color: #191919;
    border: 1px solid #292929;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
  }
  #services-1202 .cs-item:hover {
    border-color: var(--primary);
  }
  #services-1202 .cs-item:hover .cs-h3 {
    color: var(--primary);
  }
  #services-1202 .cs-item:hover .cs-item-text {
    color: #fff;
  }
  #services-1202 .cs-item:hover .cs-icon {
    transform: rotateY(360deg) translateY(-0.25rem);
  }
  #services-1202 .cs-picture {
    margin-bottom: 24px;
    position: relative;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #services-1202 .cs-icon {
    width: 24px;
    height: auto;
    display: block;
    transition: transform 0.5s;
  }
  #services-1202 .cs-h3 {
    font-size: 16px;
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    margin-bottom: 12px;
    color: var(--bodyTextColorWhite);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    transition: color 0.3s;
  }
  #services-1202 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    transition: color 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1202 .cs-button-solid {
    margin-top: 0;
    margin-left: 24px;
  }
  #services-1202 .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
  #services-1202 .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
  #services-1202 .cs-item {
    margin: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1202 .cs-content,
  #services-1202 .cs-card-group {
    max-width: 80rem;
  }
  #services-1202 .cs-title {
    max-width: 46.875rem;
  }
  #services-1202 .cs-card-group {
    grid-template-columns: repeat(4, 1fr);
  }
  #services-1202 .cs-item {
    max-width: none;
  }
}