/*-- -------------------------- -->
<---           Main Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #events-1516 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #F4F3EF;
  }
  #events-1516 .cs-container {
    width: 100%;
    /* changes to 1280px at large desktop */
    max-width: 59rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #events-1516 .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;
  }
  #events-1516 .cs-title {
    /* max width of 18 characters, incldues spaces between words */
    max-width: 23ch;
  }
  #events-1516 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #events-1516 .cs-item {
    text-align: left;
    list-style: none;
    /* 16px - 24px */
    padding: clamp(1rem, 3vw, 1.5rem);
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  #events-1516 .cs-item:hover {
    border-color: var(--primary);
  }
  #events-1516 .cs-link {
    text-decoration: none;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  #events-1516 .cs-picture-group {
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
  }
  #events-1516 .cs-picture {
    width: 100%;
    min-height: 12.1875rem;
    background-color: #1a1a1a;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* prevents flexbox from squsihing it */
    flex: none;
    border-radius: 16px;
  }
  #events-1516 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s, opacity 0.3s;
  }
  #events-1516 .cs-tag {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.5rem 1rem;
    color: var(--secondary);
    border-radius: 6.25rem;
    display: block;
    position: relative;
    overflow: hidden;
  }
  #events-1516 .cs-tag::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
  }
  #events-1516 .cs-details {
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #events-1516 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #events-1516 .cs-icon {
    width: 1.5rem;
    height: auto;
  }
  #events-1516 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #events-1516 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-decoration: none;
    margin-top: auto;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #events-1516 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #events-1516 .cs-arrow {
    width: 1.25rem;
    height: auto;
    transition: transform 0.3s;
  }
  #events-1516 .cs-graphic {
    position: absolute;
    z-index: -1;
    transform: rotate(-150deg);
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #events-1516 .cs-item {
    width: 100%;
  }
  #events-1516 .cs-link {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  #events-1516 .cs-picture-group {
    max-width: 22.5rem;
    max-height: 15.625rem;
    margin: 0;
    flex: 1 0 0;
  }
  #events-1516 .cs-picture {
    height: 100%;
  }
  #events-1516 .cs-info {
    flex: 1 0 0;
  }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #events-1516 .cs-container {
    max-width: 80rem;
  }
  #events-1516 .cs-item:nth-of-type(1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
  }
  #events-1516 .cs-item:nth-of-type(1) .cs-link {
    flex-direction: column;
  }
  #events-1516 .cs-item:nth-of-type(2) {
    grid-column: 5 / span 8;
  }
  #events-1516 .cs-item:nth-of-type(3) {
    grid-column: 5 / span 8;
  }
}
                                

/*-- -------------------------- -->
<---       About / PBS         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1474 {
    padding: var(--sectionPadding);
    overflow: hidden;
    background-color: #F4F3EF;
  }
  #sbs-1474.pbs {
    overflow: visible;
    background-color: #FBF9F5;
  }
  #sbs-1474 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(3rem, 4vw, 4rem);
    position: relative;
  }
/* 
  #sbs-1474.about .cs-container::before {
    content: url('/assets/svgs/bg-shape-2.svg');
    position: absolute;
      right: -400px;
    top: -50px;
    width: 360px;
    height: auto;
    z-index: 2;
  }
  #sbs-1474.pbs .cs-container::before {
    content: url('/assets/svgs/bg-shape-3.svg');
    position: absolute;
      left: -370px;
    top: -150px;
    width: 360px;
    height: auto;
    z-index: 2;
  }
*/

  #sbs-1474 .icons {
      width: 100%;
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      margin-top: 1rem;
      gap: 2rem;    
  }
  #sbs-1474 .cs-item {
      text-decoration: none;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 1rem;
      position: relative;
      z-index: 1;
      overflow-wrap: anywhere;
  }
  #sbs-1474 .cs-item:nth-of-type(1)::before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -1rem;
    background-color: #E8E8E8;
  }
  #sbs-1474 .cs-item:nth-of-type(2) {
    flex-wrap: nowrap;
    text-wrap: nowrap;
  }
  #sbs-1474 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
    #sbs-1474 .cs-header {
      font-weight: 700;
      color: #1A1A1A;
      font-size: clamp(18px, 4vw, 20px)
    }
    #sbs-1474 .cs-link {
      text-decoration: none;
      color: var(--bodyTextColor)
      ;
    }
    #sbs-1474 .cs-flex {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
    }
    #sbs-1474 .cs-picon {
      width: 3rem;
      height: 3rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex: none;
      position: relative;
      background-color: #fff;
      border-radius: 50%;
      z-index: 1;
      transition: transform 0.3s;
      border: 1px solid #E8E8E8;
    }
    #sbs-1474 .cs-icon {
      width: 1.5rem;
      height: auto;
      display: block;
      transition: transform 0.3s;
    }
  #sbs-1474 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-1474 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-1474 .cs-ul {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    column-gap: 2.5rem;
    row-gap: 0.75rem;
  }
  #sbs-1474 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-1474 .cs-icon {
    width: 1.5rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 1px;
    display: block;
  }
  #sbs-1474 .cs-image-group {
    /* font size scaling. Everything inside the group is in ems so they pull their value for em from the parent (this group div) and when the font is set to a vw, it scales the whole section down and grows proportionally with the screen width, stopping at the final em value declared in the second slot for the min function. */
    font-size: min(2.25vw, .83em);
    width: 40.75em;
    min-height: 45em;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #sbs-1474 .cs-picture {
    width: 33.875em;
    height: auto;
    
    overflow: hidden;
    display: block;
    position: relative;
    


  }
  #sbs-1474 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;

    top: 50%;
    border-radius: 276px 276px 0 0;
    transform: translateY(-50%);
    left: 0;
    max-height: 720px;
  }
  #sbs-1474 .cs-oval {
    width: 40.4375em;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
  }
  #sbs-1474.about .cs-blob {
    width: 30.4375em;
    height: auto;
    position: absolute;
    top: 48%;
    left: 33%;
    z-index: -2;
    transform: translate(-50%, -50%);
  }
  #sbs-1474.pbs .cs-blob {
    width: 30.4375em;
    height: auto;
    position: absolute;
    top: 35%;
    left: 60%;
    z-index: -2;
    transform: translate(-50%, -50%);
  }
  #sbs-1474.about .cs-scatter {
    width: 163px;
    height: auto;
    position: absolute;
    bottom: -35px;
    left: 0;
    z-index: 2;
  }
  #sbs-1474.pbs .cs-scatter {
    width: 95px;
    height: auto;
    position: absolute;
    bottom: -35px;
    right: 15px;
    z-index: 2;
  }
  #sbs-1474 .cs-box {
    text-align: center;
    width: auto;
    /* 16px - 40px */
    padding: clamp(1em, 3vw, 2.5em) clamp(2.5em, 5vw, 4em);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 0;
    bottom: 3.75em;
    z-index: 10;
  }
  #sbs-1474 .cs-blob {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #sbs-1474 .cs-number {
    /* 24px - 49px */
    font-size: clamp(1.25rem, 4.3vw, 3.0625rem);
    line-height: 1.2em;
    font-weight: 900;
    margin: 0;
    color: var(--secondary);
    display: block;
    z-index: 10;
  }
  #sbs-1474 .cs-desc {
    /* 12px - 16px */
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    font-weight: bold;
    width: 100%;
    max-width: 20ch;
    color: var(--bodyTextColor);
    position: relative;
    z-index: 10;
  }
}
@media only screen and (min-width: 500px) {
  #sbs-1474 .icons {  
      flex-direction: row;
      align-items: flex-start;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1474 .cs-container {
    max-width: 80rem;
    /* set to horizontal arrangement */
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #sbs-1474 .cs-container.pbs {
    flex-direction: row-reverse;
  }
  #sbs-1474 .cs-content {
    width: 47%;
    padding: 4.375rem 0;
    align-self: center;
  }
  #sbs-1474 .cs-image-group {
    font-size: min(1.2vw, 1em);
  }
}
                                
/*-- -------------------------- -->
<---        Why Choose          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-2403 {
    padding: var(--sectionPadding);
    /* 48px - 64px */
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    overflow: visible;
    position: relative;
    background-color: #FBF9F5;
    z-index: 1;
  }
  #why-2403 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #why-2403 .cs-wrapper {
    position: relative;
    z-index: 1;
  }
  #why-2403 .cs-content {
    /* set text align to center if content needs to be center aligned */
    text-align: center;
    width: 100%;
    max-width: 30.125rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #why-2403 .cs-text {
    margin-bottom: 1rem;
  }
  #why-2403 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #why-2403 .cs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  #why-2403 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.4vw, 1.25rem);
    position: relative;
    z-index: 10;
  }
    #why-2403 .cs-item {
        list-style: none;
        /* 24px - 40px top & bottom */
        padding: clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
        background-color: #fff;
        box-sizing: border-box;
        grid-column: span 12;
        border: 1px solid #E8E8E8;
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition:
            background-color 0.3s,
            transform 0.3s,
            box-shadow 0.3s;
    }
    #why-2403 .cs-item:hover {
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 50px;
        transform: translateY(-0.4375rem);
    }
    #why-2403 .cs-item:hover .cs-picture:before {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    #why-2403 .cs-round {
        width: 4rem;
        height: 4rem;
        margin: 0;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 0px 12px 30px rgba(26, 26, 26, 0.07);
        position: relative;
        z-index: 1;
    }
    #why-2403 .cs-icon {
        height: 2rem;
        width: auto;
    }
    #why-2403 .cs-h3 {
        font-size: 1.25rem;
        font-weight: 900;
        text-align: center;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #why-2403 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }
  #why-2403 .cs-picture {
    width: 52%;
    max-width: 22.75rem;
    margin: auto;
    display: block;
    position: relative;
    z-index: 1;

    overflow: hidden;
  }
  #why-2403 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
        border-radius: 276px 276px 0 0;
        object-fit: cover;
  }
}
@media only screen and (min-width: 600px) {
    #why-2403 .cs-item {
        grid-column: span 6;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-2403 .cs-container {
    max-width: 80rem;
    align-items: stretch;
  }
  #why-2403 .cs-wrapper {
    flex-direction: row;
  }
  #why-2403 .cs-content {
    text-align: left;
    /* removed at desktop */
    padding: 1.25rem 0;
    align-items: flex-start;
  }
  #why-2403 .cs-item {
    grid-column: span 4;
  }
  #why-2403 .cs-picture {
    height: auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  #why-2403 .cs-picture img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #why-2403 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
  }
  #why-2403 .cs-content {
    padding: 0;
    flex: none;
  }
  #why-2403 .cs-wrapper {
    width: 31%;
    flex-direction: column;
    flex: none;
  }
  #why-2403 .cs-card-group {
    width: 100%;
    max-width: 50.1875rem;
  }
  #why-2403 .cs-item {
    grid-column: span 6;
  }
  #why-2403 .cs-picture {
    width: 100%;
    height: 100%;
    display: block;
  }
  #why-2403 .cs-picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
  }
}
                                


/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-689 {
        padding: var(--sectionPadding);
        background-color: #F4F3EF;
    }
    #services-689 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    /* 
    #services-689 .cs-container::before {
    content: url('/assets/svgs/bg-shape-4.svg');
    position: absolute;
      right: -550px;
    bottom: -150px;
    width: 360px;
    height: auto;
    z-index: 2;
    }    
    */
    #services-689 .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-689 .cs-flex-group {
        /* prevents flexbox from squishing it */
        flex: none;
    }

    #services-689 .cs-title {
        max-width: 20ch;
    }
    #services-689 .cs-text {
        max-width: 541px;
    }
    #services-689 .cs-color {
        color: var(--primary);
    }
    #services-689 .cs-card-group {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        row-gap: 1rem;
    }
    #services-689 .cs-item {
        list-style: none;
        /* 24px - 40px top & bottom */
        padding: clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
        background-color: #fff;
        box-sizing: border-box;
        border: 1px solid #E8E8E8;
        border-radius: 18px;
        transition:
            background-color 0.3s,
            transform 0.3s,
            box-shadow 0.3s;
    }
    #services-689 .cs-item:hover {
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 50px;
        transform: translateY(-0.4375rem);
    }
    #services-689 .cs-item:hover .cs-picture:before {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    #services-689 .cs-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #services-689 .cs-picture {
        width: 4rem;
        height: 4rem;
        margin: 0;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 0px 12px 30px rgba(26, 26, 26, 0.07);
        position: relative;
        z-index: 1;
    }
    #services-689 .cs-icon {
        height: 2rem;
        width: auto;
    }
    #services-689 .cs-h3 {
        font-size: 1.25rem;
        font-weight: 900;
        text-align: center;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #services-689 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }
}

@media only screen and (min-width: 600px) {
  #services-689 .cs-topper,
  #why-2403 .cs-topper {
    width: 250px;
    margin: auto;
  }
  #services-689 .cs-content {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  #services-689 .cs-container {
    max-width: none;
    justify-content: center;
  }
  
  
  #services-689 .cs-card-group {
    width: 100%;
    flex-direction: row;
    column-gap: 1rem;
    align-items: stretch;
  }
  #services-689 .cs-item {
    width: 45%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-689 .cs-container {
        max-width: 80rem;
    }
    #services-689 .cs-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
    }
    #services-689 .cs-card-group {
        /* pushes down the same amount the 2nd and 5th cards are translated down to maintain the even spacing at the bottom of the cs-card-group */
        margin-bottom: 2.5rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 1.25rem;
    }
    #services-689 .cs-item {
        width: clamp(31.49%, 29.5vw, 32.28%);
        max-width: 25.875rem;
    }
    #services-689 .cs-item:nth-of-type(2),
    #services-689 .cs-item:nth-of-type(5) {
        transform: translateY(2.5rem);
    }
    #services-689 .cs-item:nth-of-type(2):hover,
    #services-689 .cs-item:nth-of-type(5):hover {
        /* make these two have a separate hover translate amount, they're already translated 40px down, so to match the same hover animations as the other cards we just subtract their translate values from the 40px and they will move up by the same amount as the other cards */
        transform: translateY(2.0625rem);
    }
}

                                
/*-- -------------------------- -->
<---          Steps             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1893 {
    padding: var(--sectionPadding);
    background-color: #F4F3EF;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #steps-1893 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  #steps-1893 .cs-wrapper {
    display: flex;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1893 .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;
  }
  #steps-1893 .cs-card-group {
    margin: 0;
    padding: 0;
    display: grid;
    align-items: stretch;
    grid-auto-flow: row;
    /* 24px - 32px */
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  #steps-1893 .cs-item {
    list-style: none;
    padding-bottom: 2rem;
    border-bottom: #4C4A48 1px dotted;
    display: flex;
    align-items: flex-start;
    /* 16px - 24px */
    gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
  }
  #steps-1893 .cs-number {
    /* 49px - 72px */
    font-size: clamp(3.0625rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1875em;
    color: #DED1BD;
    display: block;
  }
  #steps-1893 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.125em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #steps-1893 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-1893 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
    /* 48px - 60px */
    gap: clamp(3rem, 6vw, 3.75rem);
  }
  #steps-1893 .cs-card-group {
    /* 16px - 32px */
    gap: clamp(1rem, 3vw, 2rem);
  }
  #steps-1893 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #steps-1893 .cs-item {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  #steps-1893 .cs-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #steps-1893 .cs-h3 {
    flex: none;
    margin-bottom: 0;
  }
  #steps-1893 .cs-item-text {
    max-width: min(60%, 600px);
  }
}
               
@media only screen and (min-width: 1000px) {
  #steps-1893 .cs-item {
    flex-direction: row;
    gap: 100px;
  }
}