/*-- -------------------------- -->
<---           Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-712 .cs-int-title {
      font-size: clamp(2.4375rem, 4.5vw, 3.0625rem);
      font-weight: 900;
      line-height: 1.2em;
      text-align: inherit;
      margin: 0 0 0.75rem 0;
      color: var(--bodyTextColorWhite);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0px 0px 8px rgba(0, 0, 0, 0.6);
      position: relative;
  }
  #banner-712 .cs-int-text {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      line-height: 1.5em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColorWhite);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0px 0px 8px rgba(0, 0, 0, 0.6);
      max-width: 50rem;
  }
}


/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3rem);
        }
        100% {
            transform: translateY(0);
        }
    }
    #content-page-1399 {
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #content-page-1399 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 4vw, 4rem);
        position: relative;
    }
    #content-page-1399 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #content-page-1399 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #content-page-1399 h2,
    #content-page-1399 h3,
    #content-page-1399 h4,
    #content-page-1399 h5,
    #content-page-1399 h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page-1399 h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page-1399 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-1399 h4,
    #content-page-1399 h5,
    #content-page-1399 h6 {
        font-size: 1.25rem;
    }
    #content-page-1399 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-1399 .cs-no-margin {
        margin: 0;
    }
    #content-page-1399 .cs-color {
        color: var(--primary);
    }
    #content-page-1399 p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page-1399 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-1399 p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
        filter: brightness(120%);
    }
    #content-page-1399 ol,
    #content-page-1399 ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page-1399 ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page-1399 ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #content-page-1399 img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page-1399 .cs-image-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.6vw, 1.25rem);
        position: relative;
    }
    #content-page-1399 .cs-flex {
        position: relative;
    }
    #content-page-1399 .cs-background {
        width: 100%;
        height: 100%;
        /* 32px - 48px */
        border-radius: clamp(2rem, 4vw, 3rem);
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #content-page-1399 .cs-background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: cover;
        display: block;
    }
    #content-page-1399 .cs-box {
        text-align: left;
        width: 100%;
        max-width: 12.5rem;
        padding: 2rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        /* 48px - 80px */
        border-radius: 2rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: absolute;
        /* 12px - 20px */
        right: clamp(0.75rem, 1.9vw, 1.5rem);
        /* 12px - 20px */
        bottom: clamp(0.75rem, 1.9vw, 1.5rem);
    }
    #content-page-1399 .cs-box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
        filter: brightness(0) invert(1);
    }
    #content-page-1399 .cs-desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #content-page-1399 .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.265rem, 1fr));
        align-items: center;
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #content-page-1399 .cs-item {
        list-style: none;
        /* 16px - 24px */
        padding: clamp(1rem, 3vw, 1.5rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #content-page-1399 .cs-item:before {
        display: none;
    }
    #content-page-1399 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    #content-page-1399 .cs-h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #content-page-1399 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #content-page-1399 .cs-item-text:last-of-type {
        margin: 0;
    }
    #content-page-1399 .cs-ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #content-page-1399 .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;
    }
    #content-page-1399 .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;
    }
    #content-page-1399 .cs-bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 36.375em;
        height: 34.8125em;
        display: none;
        position: absolute;
        /* changes to auto at larger desktop */
        right: -16.25em;
        /* changes to -220px at large desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #content-page-1399 .cs-bubbles:before {
        /* white border bubble */
        content: "";
        width: 29em;
        height: 29em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #content-page-1399 .cs-bubbles:after {
        /* orange bubble */
        content: "";
        width: 22.875em;
        height: 22.875em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-1399 .cs-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page-1399 .cs-content {
        width: 50%;
        max-width: 42.125rem;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #content-page-1399 .cs-image-group {
        width: 44%;
        max-width: 33.875rem;
        display: flex;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
}
/* Desktop - 1200px */
@media only screen and (min-width: 75rem) {
    #content-page-1399 .cs-content {
        width: 53%;
    }
    #content-page-1399 .cs-image-group {
        width: 43%;
    }
    #content-page-1399 .cs-box {
        display: flex;
    }
    #content-page-1399 .cs-bubbles {
        font-size: 1em;
        margin-left: 37.5rem;
        display: block;
        right: auto;
        left: 50%;
        bottom: -13.75rem;
    }
}


/*-- -------------------------- -->
<---            Meet            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #meet-2419 {
    background-color: #fff;
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #meet-2419:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #meet-2419 .cs-container {
    text-align: center;
    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);
  }
  #meet-2419 .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;
  }
  #meet-2419 .cs-title {
    max-width: 25ch;
  }
  #meet-2419 .cs-text {
    max-width: 46.625rem;
  }
  #meet-2419 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        border-radius: 0.25rem;
        font-weight: 700;
        min-width: 9.375rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        padding: 0 1.5rem;
        color: #000;
        background-color: var(--primary);
        text-decoration: none;
        display: inline-block;
        position: relative;
        z-index: 1;
        text-align: center;
  }
    #meet-2419 .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;
    }
    #meet-2419 .cs-button-solid:hover:before {
        width: 100%;
    }
    #meet-2419 .cs-button-solid:hover {
        color: #fff;
    }
  #meet-2419 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #meet-2419 .cs-item {
    list-style: none;
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
  }
  #meet-2419 .cs-item:hover .cs-name {
    color: var(--primary);
  }
  #meet-2419 .cs-image-group {
    width: 100%;
    /* switches to clamp at tablet */
    height: 58vw;
    overflow: hidden;
    display: block;
    position: relative;
  }
  #meet-2419 .cs-graphic {
    width: 100%;
    height: auto;
    position: absolute;
    /* 40px - 60px */
    top: clamp(2.5rem, 4vw, 3.75rem);
    left: 0;
  }
  #meet-2419 .cs-picture {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #meet-2419 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #meet-2419 .cs-name {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s;
  }
    #meet-2419 .cs-name-2 {
    /* 12px - 16px */
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    line-height: 1.2em;
    margin: 0 0 0.25rem;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s;
  }
  #meet-2419 .cs-job {
    font-size: 1rem;
    line-height: 1.5em;
    /* font-weight: 700; */
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #meet-2419 .cs-container {
    max-width: 80rem;
  }
  #meet-2419 .cs-card-group {
    align-items: flex-start;
  }
  #meet-2419 .cs-item {
    grid-column: span 4;
  }
  #meet-2419 .cs-image-group {
    /* 142px - 263px */
    height: clamp(8.875rem, 19vw, 16.4375rem);
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-2326 {
    background-color: #fff;
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbsr-2326 .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, 4vw, 4rem);
  }
  #sbsr-2326 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbsr-2326 .cs-title {
    max-width: 30ch;
  }
  #sbsr-2326 .cs-text {
    margin-bottom: 1rem;
  }
  #sbsr-2326 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbsr-2326 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    border-radius: 0.25rem;
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #000;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbsr-2326 .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;
  }
  #sbsr-2326 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbsr-2326 .cs-button-solid:hover {
    color: #fff;
  }
  #sbsr-2326 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbsr-2326 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbsr-2326 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbsr-2326 .cs-li strong {
    color: var(--headerColor);
  }
  #sbsr-2326 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
  #sbsr-2326 .cs-button-box {
    font-size: inherit;
    width: 100%;
    max-width: 39.375rem;
    /* 48px - 64px */
    margin: clamp(3rem, 6.5vw, 4rem) 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  #sbsr-2326 .cs-link {
    /* using ems for font size and wrapper values so we can scale them with a font size at desktop */
    text-decoration: none;
    padding-right: 1.875rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    position: relative;
  }
  #sbsr-2326 .cs-link:hover:before {
    width: 100%;
    height: 4.5em;
  }
  #sbsr-2326 .cs-link:hover .cs-wrapper {
    transform: scale(1.2);
  }
  #sbsr-2326 .cs-link:hover .cs-icon {
    transform: translateX(0.4375rem);
  }
  #sbsr-2326 .cs-link:before {
    /* light green circle that animates on hover */
    content: "";
    width: 3.75em;
    height: 3.75em;
    background: var(--primary);
    opacity: 0.05;
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
    transition: width 0.3s, height 0.3s, border-radius 0.3s;
  }
  #sbsr-2326 .cs-wrapper {
    width: 3.75em;
    height: 3.75em;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    transition: transform 0.3s;
  }
  #sbsr-2326 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  #sbsr-2326 .cs-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #sbsr-2326 .cs-header {
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 400;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #sbsr-2326 .cs-link-content {
    font-size: 1.5625em;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  #sbsr-2326 .cs-image-group {
    /* scales the whole group based on the view width size and stop when that vales equals .74em, resets at desktop */
    font-size: min(2.32vw, .9rem);
    width: 39.375em;
    height: 36.125em;
    display: block;
    position: relative;
    z-index: 1;
    order: -1;
  }
  #sbsr-2326 .cs-picture {
    display: block;
    position: absolute;
    border-radius: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
  }
  #sbsr-2326 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbsr-2326 .cs-picture1 {
    width: 25.75em;
    height: 25.75em;
    border-right: 0.875em solid #fff;
    border-bottom: 0.875em solid #fff;
    top: 0;
    bottom: 17.5625em;
    left: 0;
  }
  #sbsr-2326 .cs-picture2 {
    width: 25.8125em;
    height: 22em;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  #sbsr-2326 .cs-picture3 {
    width: 14.5625em;
    height: auto;
    bottom: -1em;
    left: -1.5em;
  }
  #sbsr-2326 .cs-picture3 img {
    position: relative;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbsr-2326 .cs-container {
    max-width: 80rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbsr-2326 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbsr-2326 .cs-button-box {
    /* add font size scaling to make the elements smaller so they fit horizontally */
    font-size: min(1.4vw, 1rem);
    flex-direction: row;
    flex-wrap: nowrap;
  }
  #sbsr-2326 .cs-image-group {
    font-size: min(1.1vw, 1rem);
    height: auto;
    min-height: 36.125em;
    margin-bottom: 4.375rem;
    order: initial;
    flex: none;
  }
  #sbsr-2326 .cs-picture1 {
    height: auto;
    top: 0;
    bottom: 10.375em;
  }
  #sbsr-2326 .cs-picture2 {
    height: auto;
    top: 14.125em;
  }
}

/*-- -------------------------- -->
<---          steps           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-2330 {
    
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #steps-2330 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  #steps-2330 .cs-wrapper {
    display: contents;
  }
  #steps-2330 .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-2330 .cs-topper {
    color: var(--secondary);
  }
  #steps-2330 .cs-title {
    margin: 0;
    max-width: 20ch;
  }
  #steps-2330 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* 32px - 60px */
    gap: clamp(2rem, 6vw, 3.75rem);
  }
  #steps-2330 .cs-item {
    list-style: none;
    display: flex;
    align-items: flex-start;
    /* 16px - 24px */
    gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
  }
  #steps-2330 .cs-item:last-of-type {
    border-bottom: none;
  }
  #steps-2330 .cs-number {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 7vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.1875em;
    color: #E7E7E8;
    display: block;
  }
  #steps-2330 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.125em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #steps-2330 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #steps-2330 .cs-picture {
    width: 100%;
    height: auto;
    order: 3;
  }
  #steps-2330 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
  #steps-2330 .cs-floater {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-2330 .cs-floater {
    font-size: 11.25rem;
    text-transform: uppercase;
    line-height: 1.2em;
    font-weight: 900;
    color: #F3F3F3;
    display: block;
    position: absolute;
    top: 50%;
    right: -21.875rem;
    z-index: -2;
    transform: translateY(-50%) rotate(-90deg);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #steps-2330 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: stretch;
  }
  #steps-2330 .cs-wrapper {
    max-width: 46.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  #steps-2330 .cs-title {
    width: 80%;
  }
  #steps-2330 .cs-card-group {
    max-width: 36.125rem;
    align-items: flex-end;
  }
  #steps-2330 .cs-item {
    position: relative;
    z-index: 1;
  }
  #steps-2330 .cs-item:nth-of-type(2) {
    width: 33.625rem;
  }
  #steps-2330 .cs-item:nth-of-type(3) {
    width: 31.125rem;
  }
  #steps-2330 .cs-item:nth-of-type(4) {
    width: 28.625rem;
  }
  #steps-2330 .cs-picture {
    width: 120%;
    max-height: 26.25rem;
    max-width: 42.8125rem;
  }
  #steps-2330 .cs-picture img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1191 {
        padding: var(--sectionPadding);
        background-color: #f8fcf7;
        /* prevents padding from affecting height and  */
        box-sizing: border-box;
    }
    #services-1191 .cs-container {
        /* changes to 1440px at desktop */
        max-width: 58.75rem;
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1191 .cs-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        /* set text align to left if content needs to be left aligned */
        text-align: center;
    }

    #services-1191 .cs-title {
        max-width: 20ch;
    }
    #services-1191 .cs-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #services-1191 .cs-image {
        width: 100%;
        max-width: 31.875rem;
        height: auto;
        display: block;
        position: relative;
    }
    #services-1191 .cs-image img {
        width: 100%;
        height: auto;
    }
    #services-1191 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        justify-content: center;
        row-gap: 1rem;
    }
    #services-1191 .cs-item {
        text-align: center;
        list-style: none;
        max-width: 23rem;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    #services-1191 .cs-picture {
        width: 5rem;
        height: 5rem;
        box-sizing: border-box;
        /* prevents border from affecting height and width */
        background-color: #f7f7f7;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #services-1191 .cs-icon {
        width: 2.875rem;
        height: auto;
        display: block;
    }
    #services-1191 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.5em;
        margin: 0;
        margin-bottom: 0.5rem;
        color: var(--headerColor);
        text-align: inherit;
    }
    #services-1191 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        text-align: inherit;
    }
    #services-1191 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        border-radius: 0.25rem;
        font-weight: 700;
        min-width: 9.375rem;
        margin: 0;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        padding: 0 1.5rem;
        color: #000;
        background-color: var(--primary);
        text-decoration: none;
        display: inline-block;
        position: relative;
        z-index: 1;
        text-align: center;
    }
    #services-1191 .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;
    }
    #services-1191 .cs-button-solid:hover:before {
        width: 100%;
    }
    #services-1191 .cs-button-solid:hover {
        color: #fff;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1191 .cs-card-group {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    #services-1191 .cs-item {
        text-align: left;
        margin: 0;
        width: 32%;
        align-items: flex-start;
    }
    #services-1191 .cs-image {
        max-height: 28.125rem;
    }
    #services-1191 .cs-image img {
        width: 100%;
        height: auto;
        max-height: 28.125rem;
        object-fit: contain;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-1191 .cs-container {
        max-width: 90rem;
    }
    #services-1191 .cs-image {
        width: 30vw;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    #services-1191 .cs-image img {
        width: auto;
        height: auto;
    }
    #services-1191 .cs-card-group {
        align-items: flex-start;
        justify-content: center;
        /* 180px - 356px */
        column-gap: clamp(11.25rem, 21vw, 22.25rem);
        /* 40px - 88px */
        row-gap: clamp(2.5rem, 8vw, 5.5rem);
    }
    #services-1191 .cs-item {
        width: 32vw;
        max-width: 26.375rem;
        flex-direction: row;
        position: relative;
    }
    #services-1191 .cs-item:nth-of-type(odd) {
        text-align: right;
    }
    #services-1191 .cs-item:nth-of-type(odd) .cs-picture {
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #services-1191 .cs-item:nth-of-type(3) {
        /* 90px - 1280px */
        left: calc(clamp(5.625rem, 8vw, 8rem) * -1);
    }
    #services-1191 .cs-item:nth-of-type(4) {
        /* 90px - 1280px */
        right: calc(clamp(5.625rem, 8vw, 8rem) * -1);
    }
}

                                
                                

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1261 {
        padding: var(--sectionPadding);
        background-color: #14142b;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #faq-1261 .cs-container {
        width: 100%;
        /* chnages to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-1261 .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;
    }
    #faq-1261 .cs-content .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 2rem 0 0 0;
        color: #000;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #faq-1261 .cs-content .cs-button-solid:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width .3s;
    }
    #faq-1261 .cs-content .cs-button-solid:hover:before {
        width: 100%;
    }
    #faq-1261 .cs-content .cs-button-solid:hover {
        color: #E8E8E8;
    }

    #faq-1261 .cs-title {
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #faq-1261 .cs-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* 16px - 20px */
        gap: clamp(1rem, 2.4vw, 1.25rem);
    }
    #faq-1261 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.4vw, 1.25rem);
    }
    #faq-1261 .cs-faq-item {
        list-style: none;
        width: 100%;
        background-color: #0b1f31;
        border-radius: 0.5rem;
        padding: 0;
        box-sizing: border-box;
        transition: border-bottom 0.3s;
    }
    #faq-1261 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #faq-1261 .cs-faq-item.active .cs-button:before {
        background-color: var(--primary);
        transform: rotate(315deg);
    }
    #faq-1261 .cs-faq-item.active .cs-button:after {
        background-color: var(--primary);
        transform: rotate(-315deg);
    }
    #faq-1261 .cs-faq-item.active .cs-item-p {
        height: auto;
        margin-top: 0.75rem;
        /* 16px - 24px */
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    #faq-1261 .cs-faq-item.active .cs-item-p:before {
        /* border top */
        content: "";
        height: 1px;
        background: #0b1f31;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 1.5rem;
        right: 1.5rem;
    }
    #faq-1261 .cs-button {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        width: 100%;
        padding: 1.5rem 1.5rem 0;
        border: none;
        background: transparent;
        color: var(--bodyTextColorWhite);
        overflow: hidden;
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        /* 16px - 24px */
        gap: clamp(1rem, 2.5vw, 1.5rem);
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #faq-1261 .cs-button:hover {
        cursor: pointer;
    }
    #faq-1261 .cs-button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 67%;
        right: 1.1875rem;
        transform: rotate(45deg);
        /* animate the transform from the left side of the x axis, and the center of the y */
        transform-origin: left center;
        transition: transform 0.5s;
    }
    #faq-1261 .cs-button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--bodyTextColorWhite);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 67%;
        right: 1rem;
        transform: rotate(-45deg);
        /* animate the transform from the right side of the x axis, and the center of the y */
        transform-origin: right center;
        transition: transform 0.5s;
    }
    #faq-1261 .cs-button-text {
        width: 90%;
        padding: 0;
        display: block;
    }
    #faq-1261 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 100%;
        max-width: 33.8125rem;
        height: 0;
        margin: 0;
        /* 16px - 24px */
        padding: 0 1.5rem 1.5rem;
        /* 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;
    }
    #faq-1261 .cs-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #faq-1261 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
}
/* tablet - 768px */
@media only screen and (min-width: 48rem) {
    #faq-1261 .cs-container {
        max-width: 80rem;
    }
    #faq-1261 .cs-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
}


  #cta-51 .cs-picture:before {
      /* black color overlay */
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background: #000;
      opacity: 0.6;
      top: 0;
      left: 0;
      z-index: 1;
  }