/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1290 {
    padding: var(--sectionPadding);
    position: relative;
  }
  #steps-1290 .cs-container {
    /* changes to 1440px at tablet */
    max-width: 34.375rem;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1290 .cs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
  }
  #steps-1290 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    max-width: 21.875rem;
    width: 100%;
    margin: 0;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  #steps-1290 .cs-text {
    max-width: 39.375rem;
  }
  #steps-1290 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #steps-1290 .cs-item {
    list-style: none;
    background-color: #fff;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  #steps-1290 .cs-item:hover {
    transform: translateY(-0.4375rem);
  }
  #steps-1290 .cs-item:hover .cs-picture img {
    opacity: 0.3;
    transform: scale(1.1);
  }
  #steps-1290 .cs-item:hover .cs-h3 {
    color: var(--primaryLight);
  }
  #steps-1290 .cs-item:nth-of-type(2)::after {
    transform: scaleX(-1);
  }
  #steps-1290 .cs-item:last-of-type::after {
    display: none;
  }
  #steps-1290 .cs-link {
    text-decoration: none;
    display: block;
  }
  #steps-1290 .cs-picture {
    width: 100%;
    height: 9.375rem;
    margin: 0 0 0.75rem 0;
    background-color: var(--primaryLight);
    border-radius: 0.625rem;
    display: block;
    position: relative;
    z-index: 10;
    /* clips the img tag corners */
    overflow: hidden;
  }
  #steps-1290 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s, opacity 0.3s;
  }
  #steps-1290 .cs-number {
    font-size: 1.25rem;
    font-weight: bold;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #steps-1290 .cs-h3 {
    /* 20px - 25px */
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    word-break: break-all;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s;
  }
  #steps-1290 .cs-item-text {
    /* 14px - 16px  */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #steps-1290 .cs-background {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    height: 25%;
    width: 100%;
    opacity: 0.5;
  }
  #steps-1290 .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) {
  #steps-1290 .cs-container {
    max-width: 90rem;
    gap: 6.25rem;
  }
  #steps-1290 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  #steps-1290 .cs-item {
    grid-column: span 6;
  }
  #steps-1290 .cs-card-group {
    max-width: 1000px;
  }
  #steps-1290 .cs-item:nth-of-type(2)::after {
    top: -3.75rem;
    transform: rotateX(180deg);
  }
  #steps-1290 .cs-background {
    top: 0;
    left: auto;
    right: 50%;
    /* 90px - 225px */
    margin-right: clamp(5.625rem, 15vw, 14.0625rem);
    height: 50%;
    width: 50vw;
  }
}
        
@media only screen and (min-width: 1300px) {
  #steps-1290 .cs-item {
    grid-column: span 3;
  }
  #steps-1290 .cs-card-group {
    max-width: none;
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-2216 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
  }
  #faq-2216 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #faq-2216 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #faq-2216 .cs-title {
    /* 20 characters wide including spaces */
    max-width: 20ch;
    margin: 0 0 3rem 0;
  }
  #faq-2216 .cs-faq-group {
    margin: 0;
    padding: 1rem 1rem 5rem 1rem;
    border-radius: 16px;
    background-color: #919DB1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    position: relative;
  }
  #faq-2216 .cs-faq-item {
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    padding: 1.25rem;
    border-radius: 8px;
    background-color: #ffffff;
  }
  #faq-2216 .cs-faq-item.active .cs-button {
    color: var(--primary);
  }
  #faq-2216 .cs-faq-item.active .cs-button:before {
    background-color: var(--primaryLight);
    transform: rotate(315deg);
  }
  #faq-2216 .cs-faq-item.active .cs-button:after {
    background-color: var(--primaryLight);
    transform: rotate(-315deg);
  }
  #faq-2216 .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
  }
  #faq-2216 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: bold;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
    padding: 0;
    background: transparent;
    color: var(--headerColor);
    border: none;
    display: block;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-2216 .cs-button:hover {
    cursor: pointer;
  }
  #faq-2216 .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 45%;
    right: 0.25rem;
    transform: rotate(45deg);
    transition: transform 0.5s;
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
  }
  #faq-2216 .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 45%;
    right: 0.0625rem;
    transform: rotate(-45deg);
    transition: transform 0.5s;
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
  }
  #faq-2216 .cs-button-text {
    width: 90%;
    display: block;
  }
  #faq-2216 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    /* clips the text so it doesn't show up */
    overflow: hidden;
    color: var(--bodyTextColor);
    opacity: 0;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
  #faq-2216 .cs-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #faq-2216 .cs-picture {
    width: 90%;
    min-height: 23.9375rem;
    aspect-ratio: 300/383;
    margin-left: auto;
    margin-top: -3rem;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 16px;
  }
  #faq-2216 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #faq-2216 .cs-container {
    max-width: 80rem;
    flex-direction: row;
  }
  #faq-2216 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #faq-2216 .cs-faq-group {
    width: 60%;
    max-width: 39.375rem;
    /* 32px - 80px top, bottom, left */
    padding: clamp(2rem, 6vw, 5rem);
    padding-right: 0;
    background-color: transparent;
    flex: none;
  }
  #faq-2216 .cs-wrapper {
    flex-direction: row;
    /* 32px - 58px */
    gap: clamp(2rem, 4vw, 3.625rem);
    position: relative;
    z-index: 1;
  }
  #faq-2216 .cs-wrapper::before {
    content: "";
    width: 90%;
    max-width: 54.375rem;
    height: 100%;
    border-radius: 16px;
    background-color: #919DB1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #faq-2216 .cs-picture {
    width: 100%;
    max-width: 37rem;
    aspect-ratio: initial;
    height: 650px;
    margin-top: 0;
    position: relative;
    /* 60px - 80px */
    top: calc(clamp(3.75rem, 7vw, 5rem)*-1);
  }
}
/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-2202 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--primary);
  }
  #sbsr-2202 .cs-background {
    width: 100%;
    /* 100% at large desktop */
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
  }
  #sbsr-2202 .cs-background img {
    display: none;
  }
  #sbsr-2202 .bg-highlight {
    position: absolute;
    left: -100px;
    bottom: -180px;
    width: 1000px;
    height: 635px;
    z-index: -2;
  }
  #sbsr-2202 .bg-highlight img{
    object-fit: fill;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  #sbsr-2202 .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);
  }
  #sbsr-2202 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #sbsr-2202 .cs-title {
    max-width: 30ch;
    color: white;
  }
  #sbsr-2202 .cs-text {
    margin-bottom: 1.5rem;
    color: white;
  }
  #sbsr-2202 .cs-weekdays,
  #sbsr-2202 .cs-weekends {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--bodyTextColor);
  }
  #sbsr-2202 .cs-weekdays {
    margin-bottom: 0.5rem;
  }
  #sbsr-2202 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(2.3vw, .75rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 39.375em;
    height: 39.1875em;
    order: -1;
    position: relative;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbsr-2202 .cs-picture {
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 16px;
    display: block;
    position: absolute;
  }
  #sbsr-2202 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbsr-2202 .cs-picture1 {
    width: 24em;
    height: 29.375em;
    bottom: 0;
    left: 0;
  }
  #sbsr-2202 .cs-picture2 {
    width: 21.5625em;
    height: 31.875em;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbsr-2202 .cs-container {
    max-width: 80rem;
  }

}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbsr-2202 {
    padding-bottom: 0;
  }
  #sbsr-2202::after {
    content: '';
    background-color: #fff;
    width: 100%;
    height: 30px;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
  }
  #sbsr-2202 .cs-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  #sbsr-2202.reverse .cs-container {
    flex-direction: row;
  }
  #sbsr-2202 .cs-content {
    text-align: left;
    padding: 0 0 100px;
    align-items: flex-start;
  }
  #sbsr-2202 .cs-image-group {
    font-size: min(1.3vw, 1rem);
    height: auto;
    min-height: 32.1875em;
    width: 32em;
    order: 2;
    align-self: flex-end;
  }
  #sbsr-2202 .cs-picture1 {
    height: 70.960128%;
    width: 20em;
  }
  #sbsr-2202 .cs-picture2 {
    height: 70.339719%;
    width: 19.5625em;
  }
}
@media only screen and (min-width: 1300px) {
  #sbsr-2202 .cs-background img {
    width: 1007px;
    height: 120%;
    top: -35px;
    position: absolute;
    right: -200px;
    pointer-events: none;
    object-fit: cover;
    display: block;
  }
}
/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page-851 {
        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-851 .btn-box{
        padding-top: 2rem;

    }
    #content-page-851.nomargin {
        padding-bottom: 0;
    }
  #content-page-851 .bg-highlight {
    position: absolute;
    right: -50px;
    bottom: -200px;
    width: 721px;
    height: 700px;
  }
  #content-page-851 .bg-highlight img{
    object-fit: fill;
    position: absolute;
    width: 100%;
    height: 100%;
  }
    #content-page-851 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #content-page-851 .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-851 .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-851 h2,
    #content-page-851 h3,
    #content-page-851 h4,
    #content-page-851 h5,
    #content-page-851 h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page-851 h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page-851 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-851 h4,
    #content-page-851 h5,
    #content-page-851 h6 {
        font-size: 1.25rem;
    }
    #content-page-851 .cs-button-solid {
        margin-bottom: 2rem;
        height: 60px;
    }
    #content-page-851 .cs-button-transparent {
        height: 60px;
    }
    #content-page-851 .cs-no-margin {
        margin: 0;
    }
    #content-page-851 .cs-color {
        color: var(--primary);
    }
    #content-page-851 p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page-851 p:last-of-type {
        margin-bottom: 0rem;
    }
    #content-page-851 p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
    }
    #content-page-851 ol,
    #content-page-851 ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page-851 ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page-851 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-851 img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page-851 .cs-image-group {
        width: 50%;
        max-width: 27.0625rem;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
    }
    #content-page-851 .cs-image-group:after {
        /* colored box */
        content: "";
        width: 100%;
        margin-left: 1rem;
        /* 177px - 258px */
        height: clamp(11.0625rem, 19vw, 16.125rem);
        background: var(--secondary);
        border-radius: 0 32px 0 32px;
        display: block;
    }
    #content-page-851.no-highlight .cs-image-group:after {
        display: none;
    }
    #content-page-851 .cs-picture {
        width: 100%;
        /* 300px - 520px */
        height: clamp(18.75rem, 40vw, 32.5rem);
        box-shadow: 0px 3.3478px 50.2169px rgba(0, 0, 0, 0.16);
        border-radius: 16px;
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        /* clips img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #content-page-851 .cs-picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-851 .cs-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page-851.reverse .cs-container {
        flex-direction: row-reverse;
    }
    #content-page-851 .cs-content {
        flex: none;
        width: 60%;
    }
    #content-page-851 .cs-image-group {
        display: flex;
    }
}

                                