/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Gradient Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#hero-1621 .gradient-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -2;
  pointer-events: none;
}

#hero-1621 .gradient {
  --size: 600px;
  --speed: 50s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);

  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background: linear-gradient(45deg, var(--primary), var(--primaryLight), var(--secondary), var(--primary));
  animation: rotate var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.8;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Ensure form section is properly positioned */
#apply {
  scroll-margin-top: 2rem;
}

/* Mobile Menu Layout */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #cs-navigation .cs-contact-group {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  #cs-navigation .cs-contact-link {
    display: none;
  }
  
  #cs-navigation .cs-button-solid {
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    line-height: 1.2;
  }
}


/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1621 {
        /* 120px - 200px - top leaving extra space for the navigation */
        /* 40px - 80px bottom */
        padding: clamp(7.5rem, 12vw, 12.5rem) 1rem
            clamp(2.5rem, 4vw, 5rem);
        position: relative;
        z-index: 1;
        /* prevents the topper line from causing an overflow */
        overflow: hidden;
        background-color: #1a1a1a;
        min-height: 100vh;
    }
    #hero-1621 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        /* 60px - 100px */
        gap: clamp(3.75rem, 6vw, 6.25rem);
    }
    #hero-1621 .cs-content {
        --cornerWidth: 8.75rem;
        --cornerHeight: 8.75rem;
        width: 100%;
        max-width: 53.125rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        /* 60px - 80px top & bottom */
        /* 16px - 48px left & right */
        padding: clamp(3.75rem, 5vw, 5rem) clamp(1rem, 5vw, 3rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    #hero-1621 .cs-content:before {
        /* top left corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-right: none;
        border-bottom: none;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #hero-1621 .cs-content:after {
        /* top right corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-bottom: none;
        border-left: none;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }
    #hero-1621 .cs-corners {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #hero-1621 .cs-corners:before {
        /* bottom left corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-top: none;
        border-right: none;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
    #hero-1621 .cs-corners:after {
        /* bottom right corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-top: none;
        border-left: none;
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    #hero-1621 .cs-topper {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        font-weight: 700;
        line-height: 1.3em;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
        color: var(--primary);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }
    #hero-1621 .cs-chevron {
        --chevronColor: var(--primary);
        width: 3rem;
        height: auto;
    }
    #hero-1621 .cs-title {
        /* 24px - 61px */
        font-size: clamp(1.5rem, 5vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.3em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 0 2.5rem 0;
        color: #fff;
        position: relative;
    }
    #hero-1621 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.95vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 622px */
        max-width: clamp(29rem, 60vw, 38.785rem);
        margin: 0 auto 0;
        margin-bottom: 2rem;
        color: #fff;
    }
    #hero-1621 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #hero-1621 .cs-item {
        text-align: left;
        list-style: none;
        width: 100%;
        margin: 0;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        /* 24px - 32px */
        padding: clamp(1.5rem, 3vw, 2rem);
        background-color: #fff;
        box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        grid-column: span 12;
        grid-row: span 1;
        position: relative;
        z-index: 1;
    }
    #hero-1621 .cs-icon {
        width: 3rem;
        height: auto;
        margin: 0 0 auto 0;
        padding: 0 0 1.5rem 0;
    }
    #hero-1621 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        font-weight: bold;
        line-height: 1.3em;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #hero-1621 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        max-width: 28.125rem;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-1621 .cs-item {
        grid-column: span 6;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-1621 .cs-item {
        grid-column: span 3;
    }
}
/* Large Desktop - Parallax Effect - 1600px */
@media only screen and (min-width: 100rem) {
}
@media only screen and (min-width: 0rem) {
 #hero-1621 .cs-item {
    }
 #hero-1621 .cs-icon {
    }
 #hero-1621 .cs-h3,
 #hero-1621 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
 #hero-1621 .cs-item-text {
        opacity: 0.8;
    }
}

/*-- -------------------------- -->
  <---       Side By Side         -->
  <--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-523 {
        /* 296px - 364px - top leaving extra space for the navigation */
        /* 60px - 100px bottom */
        padding: clamp(18.5rem, 25.95vw, 22.75rem) 1rem
            clamp(3.75rem, 7.82vw, 6.25rem);
        position: relative;
        z-index: 1;
        /* prevents the topper line from causing an overflow */
        overflow: hidden;
    }
    #hero-1621 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        /* 60px - 100px */
        gap: clamp(3.75rem, 6vw, 6.25rem);
    }
    #hero-1621 .cs-content {
        --cornerWidth: 8.75rem;
        --cornerHeight: 8.75rem;
        width: 100%;
        max-width: 53.125rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        /* 60px - 80px top & bottom */
        /* 16px - 48px left & right */
        padding: clamp(3.75rem, 5vw, 5rem) clamp(1rem, 5vw, 3rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    #hero-1621 .cs-content:before {
        /* top left corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-right: none;
        border-bottom: none;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #hero-1621 .cs-content:after {
        /* top right corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-bottom: none;
        border-left: none;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }
    #hero-1621 .cs-corners {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #hero-1621 .cs-corners:before {
        /* bottom left corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-top: none;
        border-right: none;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
    #hero-1621 .cs-corners:after {
        /* bottom right corner */
        content: "";
        width: 35vw;
        max-width: var(--cornerWidth);
        height: 35vw;
        max-height: var(--cornerHeight);
        opacity: 1;
        border: 2px solid #fff;
        border-top: none;
        border-left: none;
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    #hero-1621 .cs-topper {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        font-weight: 700;
        line-height: 1.3em;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
        color: var(--primary);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }
    #hero-1621 .cs-chevron {
        --chevronColor: var(--primary);
        width: 3rem;
        height: auto;
    }
    #hero-1621 .cs-title {
        /* 24px - 61px */
        font-size: clamp(1.5rem, 5vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.3em;
        text-align: center;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 0 2.5rem 0;
        color: #fff;
        position: relative;
    }
    #hero-1621 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.95vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        /* 464px - 622px */
        max-width: clamp(29rem, 60vw, 38.785rem);
        margin: 0 auto 0;
        margin-bottom: 2rem;
        color: #fff;
    }
    #hero-1621 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #hero-1621 .cs-item {
        text-align: left;
        list-style: none;
        width: 100%;
        margin: 0;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        /* 24px - 32px */
        padding: clamp(1.5rem, 3vw, 2rem);
        background-color: #fff;
        box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        grid-column: span 12;
        grid-row: span 1;
        position: relative;
        z-index: 1;
    }
    #hero-1621 .cs-icon {
        width: 3rem;
        height: auto;
        margin: 0 0 auto 0;
        padding: 0 0 1.5rem 0;
    }
    #hero-1621 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        font-weight: bold;
        line-height: 1.3em;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #hero-1621 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        max-width: 28.125rem;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-1621 .cs-item {
        grid-column: span 6;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-1621 .cs-item {
        grid-column: span 3;
    }
}
/* Large Desktop - Parallax Effect - 1600px */
@media only screen and (min-width: 100rem) {
}
@media only screen and (min-width: 0rem) {
 #hero-1621 .cs-item {
    }
 #hero-1621 .cs-icon {
    }
 #hero-1621 .cs-h3,
 #hero-1621 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
 #hero-1621 .cs-item-text {
        opacity: 0.8;
    }
}
/*-- -------------------------- -->
  <---       Side By Side         -->
  <--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-523 {
        padding: var(--sectionPadding);
    }
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-0.6em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-1em);
        }
        100% {
            transform: translateY(0);
        }
    }
    #sbs-523 .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);
    }
    #sbs-523 .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;
    }
    #sbs-523 .cs-color {
        color: var(--secondary);
    }
    #sbs-523 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-523 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-523 .cs-image-group {
        /* this is how we can scale entire groups using ems.  Font size is tied to the view width, so as the screen gets bigger, so does the font size, and this scales up and down the elements with em values.  Then it stops growing once the font size reaches the defined value of 1em (16px which is default on the html element). Font size changes at desktop */
        font-size: min(2.3vw, 0.875em);
        /* all values are done in ems, not rems, so we can scale the group with a font size min/max equation */
        width: 39.375em;
        height: 51.0625em;
        /* pushes it to the top in the first position */
        order: -1;
        position: relative;
    }
    #sbs-523 .cs-image-group:before {
        content: "";
        width: 11.625em;
        height: 10.0625em;
        background: url('/assets/images/server.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.15;
        display: none;
        position: absolute;
        top: 0em;
        left: 0em;
        animation-name: floatAnimation;
        animation-duration: 6s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
    #sbs-523 .cs-picture {
        display: block;
        position: absolute;
    }
    #sbs-523 .cs-picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
    }
    #sbs-523 .cs-picture-large {
        width: 29.75em;
        height: 42.3125em;
        top: 4.375em;
        left: 3.875em;
    }
    #sbs-523 .cs-picture-small {
        width: 16.25em;
        height: 14.0625em;
        background-color: #fff;
        border: 0.625em solid #fff;
        right: 0;
        bottom: 0;
        animation-name: floatAnimation2;
        animation-duration: 20s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-fill-mode: forwards;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-523 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #sbs-523 .cs-content {
        width: 51%;
        max-width: 34.375rem;
    }
    #sbs-523 .cs-image-group {
        font-size: min(1.1vw, 1em);
    }
    #sbs-523 .cs-image-group:before {
        display: block;
        opacity: 1;
    }
}
@media only screen and (min-width: 0rem) {
 #sbs-523 .cs-title,
 #sbs-523 .cs-text {
        color: var(--bodyTextColorWhite);
    }
 #sbs-523 .cs-text {
        opacity: 0.8;
    }
 #sbs-523 .cs-picture-small {
    }
}
/*-- -------------------------- -->
  <---           Steps            -->
  <--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #how {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    #how .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 44rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #how .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;
    }
    #how .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #how .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.25rem;
    }
    #how .cs-item {
        text-align: center;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: span 12;
        position: relative;
    }
    #how .cs-item:last-of-type:after {
        display: none;
    }
    #how .cs-item:nth-of-type(even):after {
        /* scaleX -1 flips it horizontally */
        transform: rotate(-135deg) scaleX(-1);
    }
    #how .cs-item:after {
        content: "";
        /* 54px - 84px */
        width: clamp(3.375rem, 6vw, 5.25rem);
        height: clamp(3.375rem, 6vw, 5.25rem);
        margin-top: 1.25rem;
        background: url("/assets/images/curved-arrow-light.svg");
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 1;
        display: block;
        position: relative;
        transform: rotate(135deg);
    }
    #how .cs-picture {
        width: 5.5rem;
        height: 5.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid #858585;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #how .cs-icon {
        width: 2.5rem;
        height: auto;
        display: block;
    }
    #how .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.3em;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #how .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        max-width: 21.375rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #how .cs-item {
        grid-column: span 6;
    }
    #how .cs-item:nth-of-type(2):after {
        display: none;
    }
    #how .cs-item:nth-of-type(1):after {
        transform: rotate(135deg) scaleX(-1);
    }
    #how .cs-item:after {
        margin: 0;
        position: absolute;
        top: 0;
        right: -2.5rem;
        transform: rotate(45deg);
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #how .cs-container {
        max-width: 80rem;
    }
    #how .cs-item {
        grid-column: span 3;
    }
    #how .cs-item:nth-of-type(2):after {
        display: block;
        transform: rotate(45deg);
    }
    #how .cs-item:nth-of-type(3):after {
        display: block;
        transform: rotate(135deg) scaleX(-1);
    }
    #how .cs-item:after {
        right: -3rem;
    }
}
@media only screen and (min-width: 0rem) {
 #how .cs-title,
 #how .cs-text,
 #how .cs-item-text,
 #how .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
 #how .cs-text,
 #how .cs-item-text {
        opacity: 0.8;
    }
}
/*-- -------------------------- -->
  <---      Why Choose Us         -->
  <--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-1657 {
        padding: var(--sectionPadding);
        background-color: #f3f3f4;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    #why-choose-1657 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 100px */
        gap: clamp(3rem, 10vw, 6.25rem);
    }
    #why-choose-1657 .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;
    }
    #why-choose-1657 .cs-flex {
        max-width: 38.5rem;
    }
    #why-choose-1657 .cs-title {
        max-width: 20ch;
        margin-bottom: 1.5rem;
    }
    #why-choose-1657 .cs-ul {
        width: 100%;
        max-width: 32.625rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        /* 28px - 32px */
        gap: clamp(1.75rem, 3vw, 2rem);
    }
    #why-choose-1657 .cs-li {
        list-style: none;
        /* display: flex; */
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    #why-choose-1657 .cs-number {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.3em;
        margin: 0;
        color: var(--primary);
        display: block;
    }
    #why-choose-1657 .cs-li-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #why-choose-1657 .cs-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* 40px - 64px */
        gap: clamp(2.5rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }
    #why-choose-1657 .cs-wrapper:before {
        /* white background */
        content: "";
        width: 100vw;
        height: 500%;
        background: #fff;
        opacity: 1;
        display: block;
        position: absolute;
        /* 40px - 140px */
        top: clamp(2.5rem, 10vw, 8.75rem);
        left: 50%;
        z-index: -1;
        transform: translateX(-50%);
    }
    #why-choose-1657 .cs-picture {
        width: 100%;
        height: 70vw;
        max-height: 25rem;
        display: block;
        position: relative;
        z-index: 1;
    }
    #why-choose-1657 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
    }
    #why-choose-1657 .cs-quote {
        /* 62px - 100px */
        width: clamp(3.875rem, 7vw, 6.25rem);
        height: auto;
        margin-bottom: -1.75rem;
        opacity: 0.4;
        position: relative;
        z-index: -1;
    }
    #why-choose-1657 .cs-review {
        --quoteColor: var(--primary);
        /* 20px - 25px */
        font-size: clamp(1.25rem, 3vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.3em;
        width: 100%;
        max-width: 32.625rem;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-1657 .cs-container {
        max-width: 80rem;
        gap: 0;
    }
    #why-choose-1657 .cs-content {
        padding-bottom: 6.25rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    #why-choose-1657 .cs-flex {
        text-align: left;
        width: 40vw;
        max-width: 39.375rem;
        flex: none;
    }
    #why-choose-1657 .cs-title {
        margin: 0;
    }
    #why-choose-1657 .cs-wrapper {
        /* -60px to -140px */
        margin-top: calc(clamp(3.75rem, 10vw, 8.75rem) * -1);
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #why-choose-1657 .cs-picture {
        width: 43vw;
        max-width: 39.375rem;
        height: auto;
        max-height: 100%;
        /* 252px - 414px */
        min-height: clamp(15.75rem, 30vw, 25.875rem);
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #why-choose-1657 .cs-review {
        /* 100px - 235px */
        /* pushes up against the container so there's always that gap between the top of the review and the container */
        margin-top: clamp(6.25rem, 20vw, 14.5rem);
        align-self: flex-end;
    }
}
@media only screen and (min-width: 0rem) {
 #why-choose-1657 .cs-title,
 #why-choose-1657 .cs-li-text,
 #why-choose-1657 .cs-review {
        color: var(--bodyTextColorWhite);
    }
 #why-choose-1657 .cs-li-text {
        opacity: 0.8;
    }
 #why-choose-1657 .cs-wrapper:before {
    }
}
/*-- -------------------------- -->
  <---   Side By Side Reverse     -->
  <--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbsr-1309 {
        padding: var(--sectionPadding);
        overflow: hidden;
    }
    #sbsr-1309 .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: clamp(3rem, 4vw, 4rem);
    }
    #sbsr-1309 .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;
    }
    #sbsr-1309 .cs-text {
        margin-bottom: 1rem;
    }
    #sbsr-1309 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbsr-1309 .cs-image-group {
        width: 100%;
        max-width: 41.875rem;
        height: 100vw;
        max-height: 39.375rem;
        display: block;
        position: relative;
        z-index: 1;
    }
    #sbsr-1309 .cs-picture {
        /* big background image */
        width: 93%;
        height: 93%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    #sbsr-1309 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #sbsr-1309 .cs-box {
        text-align: left;
        width: 70%;
        max-width: 19rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        /* 20px - 40px */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        background-color: #1a1a1a;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.5rem;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 10;
    }
    #sbsr-1309 .cs-desc {
        /* 16px - 31px */
        font-size: clamp(1rem, 2.5vw, 1.9375rem);
        font-weight: 700;
        line-height: 1.3em;
        text-align: inherit;
        width: 100%;
        color: var(--bodyTextColorWhite);
        position: relative;
        z-index: 10;
    }
    #sbsr-1309 .cs-graphic {
        width: 150%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, -50%);
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbsr-1309 .cs-container {
        max-width: 80rem;
        /* set to horizontal arrangement */
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #sbsr-1309 .cs-content {
        width: 48%;
        padding: 3rem 0;
        align-self: center;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #sbsr-1309 .cs-image-group {
        width: 55%;
        max-width: 41.875rem;
        height: auto;
        max-height: 100%;
        min-height: 41.875rem;
        margin: 0;
        /* sends it to the right in the second position */
        order: 2;
    }
    #sbsr-1309 .cs-picture {
        width: 93%;
        height: 94%;
        right: 0;
        left: auto;
    }
    #sbsr-1309 .cs-box {
        right: auto;
        bottom: 0rem;
        left: 0;
    }
    #sbsr-1309 .cs-graphic {
        max-width: 44.6875rem;
        right: 8.125rem;
        left: auto;
        transform: translateY(-50%);
    }
}
@media only screen and (min-width: 0rem) {
 #sbsr-1309 .cs-title,
 #sbsr-1309 .cs-text {
        color: var(--bodyTextColorWhite);
    }
 #sbsr-1309 .cs-link {
        color: var(--secondaryLight);
    }
 #sbsr-1309 .cs-text {
        opacity: 0.8;
    }
 #sbsr-1309 .cs-box {
    }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #form {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
        position: relative;
        z-index: 1;
    }
    #form .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        column-gap: auto;
        /* 48px - 64px */
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }
    #form .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;
    }

    #form .cs-title {
        max-width: 23ch;
    }
    #form .cs-text {
        margin-bottom: 1rem;
    }
    #form .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #form .cs-ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
    }
    #form .cs-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #form .cs-li-link {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
        text-decoration: none;
        color: inherit;
        width: 100%;
    }
    #form .cs-li:hover .cs-icon-wrapper {
        transform: scale(1.1);
    }
    #form .cs-header {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.3em;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        display: block;
    }
    #form .cs-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: #767676;
        display: block;
        position: relative;
    }
    #form .cs-link:hover {
        text-decoration: underline;
    }
    #form .cs-icon-wrapper {
        width: 3.75rem;
        height: 3.75rem;
        margin: 0;
        border-radius: 50%;
        border: 1px solid #bababa;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #form .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
    }
    #form .cs-form {
        width: 100%;
        max-width: 39.375rem;
        /* 24px - 48px top and bottom */
        /* 16px - 48px left and right */
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #form .cs-h3 {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        line-height: 1.3em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
    }
    #form .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    #form .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 1rem 0.5rem;
        color: var(--headerColor);
        background-color: #f7f7f7;
        border-radius: 0.5rem;
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #form .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #form .cs-textarea {
        min-height: 7.5rem;
        padding: 1rem 0.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #form .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #form .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #form .cs-button-solid:hover {
        color: #fff;
    }
    #form .cs-button-solid:hover:before {
        width: 100%;
    }
    #form .cs-submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
    }
    #form .cs-submit:hover {
        color: #fff;
        cursor: pointer;
    }
    
    /* Select dropdown styles */
    #form .cs-input[type="select"],
    #form select.cs-input {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1rem;
        padding-right: 3rem;
        cursor: pointer;
    }
    
    /* Checkbox styles */
    #form .cs-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    #form .cs-checkbox input[type="checkbox"] {
        width: 1.25rem;
        height: 1.25rem;
        margin: 0;
        cursor: pointer;
        appearance: none;
        border: 2px solid #d1d5db;
        border-radius: 0.25rem;
        background-color: #fff;
        position: relative;
        flex-shrink: 0;
        margin-top: 0.125rem;
    }
    
    #form .cs-checkbox input[type="checkbox"]:checked {
        background-color: var(--primary);
        border-color: var(--primary);
    }
    
    #form .cs-checkbox input[type="checkbox"]:checked::after {
        content: '';
        position: absolute;
        left: 0.25rem;
        top: 0.125rem;
        width: 0.375rem;
        height: 0.625rem;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    #form .cs-checkbox-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        color: var(--bodyTextColor);
        margin: 0;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #form .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #form .cs-content {
        width: 47%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #form .cs-submit {
        width: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #form .cs-form {
        width: 46%;
        max-width: 36.125rem;
    }
    #form .cs-submit {
        width: auto;
    }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
    #form .cs-graphic {
        display: block;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #examples {
        padding: var(--sectionPadding);
        position: relative;
        /* Prevents overflow from the image going off screen */
        overflow: hidden;
    }
    #examples .cs-container {
        width: 100%;
        max-width: 69rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #examples .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;
    }

    #examples .cs-image-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 16px - 20px */
        gap: clamp(1rem, 1.5vw, 1.25rem);
    }
    #examples .cs-item {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
        margin: 0;
        position: relative;
        display: block;
    }
    #examples .cs-item:hover .cs-hover-box {
        opacity: 1;
    }
    #examples .cs-item:hover .cs-icon {
        /* return to original position */
        transform: rotateY(0);
    }
    #examples .cs-item:hover .cs-h3 {
        opacity: 1;
        /* Return to original position */
        transform: translateY(0);
    }
    #examples .cs-item:hover .cs-hover-box-text {
        opacity: 1;
        /* Return to original position */
        transform: translateY(0);
    }
    #examples .cs-picture {
        margin: auto;
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }
    #examples .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #examples .cs-hover-box {
        text-align: center;
        width: 100%;
        height: 100%;
        padding: 1em;
        background-color: rgba(229, 87, 44, 0.9);
        opacity: 0;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Prevents padding from contributing to height & width */
        box-sizing: border-box;
        /* Sets stage for 3d transform animation */
        perspective: 700px;
        top: 0;
        left: 0;
        z-index: 10;
        /* prevents mouse from being able to interact with these elements */
        pointer-events: none;
        transition: opacity 0.3s;
    }
    #examples .cs-icon {
        /* 50px - 60px */
        width: clamp(3.125rem, 5vw, 3.75rem);
        height: clamp(3.125rem, 5vw, 3.75rem);
        /* 16px - 32px */
        margin-bottom: clamp(1rem, 5vw, 2rem);
        border-radius: 50%;
        background-color: #fff;
        outline: 0.5rem solid rgba(255, 255, 255, 0.7);
        /* Start with the icon box rotated 90deg */
        transform: rotateY(90deg);
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        flex: none;
        transition: transform 0.5s;
    }
    #examples .cs-icon img {
        width: 1.25rem;
        height: 1.25rem;
    }
    #examples .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        line-height: 1.3em;
        font-weight: 700;
        margin: 0 auto;
        max-width: 16.875rem;
        color: #fff;
        /* make starting position down 10px and invisible */
        opacity: 0;
        transform: translateY(0.625rem);
        margin-bottom: 0.5rem;
        transition:
            opacity 0.3s,
            transform 0.3s ease-out;
        transition-delay: 0.1s;
    }
    #examples .cs-hover-box-text {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1vw, 1rem);
        line-height: 1.5em;
        margin: 0 auto;
        max-width: 16.875rem;
        color: #fff;
        /* make starting position down 10px and invisible */
        opacity: 0;
        transform: translateY(0.625rem);
        transition:
            opacity 0.3s,
            transform 0.3s ease-out;
        transition-delay: 0.2s;
    }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
    #examples .cs-image-group {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 1fr;
    }
    #examples .cs-item {
        grid-column: span 6;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #examples .cs-item {
        grid-column: span 4;
    }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-355 {
        padding: var(--sectionPadding);
    }
    #reviews-355 .cs-container {
        width: 100%;
        max-width: 90rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #reviews-355 .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;
    }

    #reviews-355 .cs-card-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 16px - 20px */
        gap: clamp(1rem, 2.5vw, 1.15rem);
    }
    #reviews-355 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 39.375rem;
        margin: 0;
        /* 24px - 32px top & bottom */
        /* 16px - 40px left & right */
        padding: clamp(1.5rem, 3.15vw, 2rem) clamp(1rem, 3.15vw, 2.5rem);
        background-color: #f7f7f7;
        border-radius: 1rem;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        position: relative;
    }
    #reviews-355 .cs-quote {
        width: 2.5rem;
        height: auto;
        margin-bottom: 2rem;
        display: block;
    }
    #reviews-355 .cs-review {
        /* 14px - 20px */
        font-size: clamp(0.875rem, 2vw, 1.25rem);
        line-height: 1.5em;
        margin: 0;
        /* 20px - 40px */
        margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
        color: var(--bodyTextColor);
    }
    #reviews-355 .cs-name {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 3vw, 1.5625rem);
        line-height: 1.3em;
        font-weight: 700;
        margin: 0;
        /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
        margin-top: auto;
        color: var(--headerColor);
        display: block;
    }
    #reviews-355 .cs-job {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.6vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-355 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
    }
    #reviews-355 .cs-item {
        width: clamp(31.5%, 30vw, 32.3%);
    }
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #stats-1575 {
    padding: var(--sectionPadding);
    background-color: #f3f3f4;
    position: relative;
    z-index: 1;
  }
  #stats-1575 .cs-container {
    width: 100%;
    /* Changes to 1280px at small desktop */
    max-width: 59.6875rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #stats-1575 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 3.75rem;
  }
  #stats-1575 .cs-item {
    text-align: center;
    list-style: none;
    width: 47%;
    max-width: 15rem;
    margin: 0;
    padding: 0 0.75rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #stats-1575 .cs-icon {
    width: 3rem;
    height: auto;
    margin: 0 0 1.5rem;
    display: block;
  }
  #stats-1575 .cs-number {
    /* 31px - 61px */
    font-size: clamp(1.9375rem, 4.3vw, 2.4375rem);
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 400;
    margin: 0 0 0.25rem 0;
    color: var(--headerColor);
    display: block;
  }
  #stats-1575 .cs-desc {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    color: var(--bodyTextColor);
  }
  #stats-1575 .cs-background {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
  }
  #stats-1575 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #stats-1575 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #stats-1575 .cs-card-group {
    justify-content: space-between;
  }
  #stats-1575 .cs-background {
    width: 200px;
    height: 200px;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #stats-1575 .cs-container {
    max-width: 80rem;
  }
  #stats-1575 .cs-card-group {
    max-width: 39.375rem;
    justify-content: flex-start;
  }
  #stats-1575 .cs-item {
    text-align: left;
    max-width: 12.5rem;
    align-items: flex-start;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq {
    padding: var(--sectionPadding);
  }
  #faq .cs-container {
    width: 100%;
    /* changes to 1280px at small desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #faq .cs-content {
    text-align: center;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #faq .cs-title {
    /* 20 characters wide including spaces */
    max-width: 20ch;
    margin: 0 0 2rem 0;
  }
  #faq .cs-faq-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  #faq .cs-faq-item {
    text-align: left;
    list-style: none;
    width: 100%;
    background-color: #f7f7f7;
    /* 12px - 16px */
    padding: clamp(0.75rem, 2vw, 1rem) 1rem;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  #faq .cs-faq-item.active {
    border-color: var(--primaryLight);
  }
  #faq .cs-faq-item.active .cs-button {
    color: var(--primary);
  }
  #faq .cs-faq-item.active .cs-button .cs-indicator:before {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  #faq .cs-faq-item.active .cs-button .cs-indicator:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  #faq .cs-faq-item.active .cs-item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
    transform: scaleY(1);
  }
  #faq .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq .cs-button:hover {
    cursor: pointer;
  }
  #faq .cs-button .cs-indicator {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
  }
  #faq .cs-button .cs-indicator:before {
    /* left line */
    content: '';
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .5s;
  }
  #faq .cs-button .cs-indicator:after {
    /* right line */
    content: '';
    width: 1rem;
    height: 0.125rem;
    background-color: #767676;
    opacity: 1;
    border-radius: 2px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .5s;
  }
  #faq .cs-button-text {
    width: 90%;
    display: block;
  }
  #faq .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s, transform 0.3s, padding-bottom 0.3s;
  }
  #faq .cs-image-group {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
  }
  #faq .cs-picture {
    width: 100%;
    height: 100%;
  }
  #faq .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #faq .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #faq .cs-image-group {
    width: 200px;
    height: 200px;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #faq .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #faq .cs-image-group {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}

/*-- -------------------------- -->
<---      Target Audience       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #target-audience {
        padding: var(--sectionPadding);
    }
    #target-audience .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    #target-audience .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #target-audience .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1rem;
    }
    #target-audience .cs-item {
        text-align: center;
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 1.5rem;
        background-color: #f7f7f7;
        border-radius: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-column: span 12;
        grid-row: span 1;
        position: relative;
        z-index: 1;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    #target-audience .cs-item:hover {
        transform: translateY(-0.25rem);
        box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    }
    #target-audience .cs-icon {
        width: 3rem;
        height: auto;
        margin: 0 0 1rem 0;
    }
    #target-audience .cs-h3 {
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.3em;
        text-align: center;
        margin: 0;
        color: var(--headerColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #target-audience .cs-item {
        grid-column: span 6;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #target-audience .cs-item {
        grid-column: span 4;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #target-audience .cs-item {
        grid-column: span 2.4;
    }
}

/*-- -------------------------- -->
<---      Why Choose Us         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-1657 .cs-number {
        min-width: 12rem;
        display: inline-block;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-1657 .cs-number {
        min-width: 14rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #why-choose-1657 .cs-number {
        min-width: 16rem;
    }
}

/* ============================================ */
/*              Mobile Hero Title Fix           */
/* ============================================ */

/* Extra small mobile devices - 320px and below */
@media only screen and (max-width: 20rem) {
    #hero-1621 .cs-title {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
        line-height: 1.3em;
    }
}

/* Small mobile devices - 360px and below */
@media only screen and (max-width: 22.5rem) {
    #hero-1621 .cs-title {
        font-size: clamp(1.6rem, 4.2vw, 1.8rem);
        line-height: 1.25em;
    }
}

/* ============================================ */
/*              Thank You Page Styles          */
/* ============================================ */

.cs-success-message {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cs-success-message .cs-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-success-message .cs-li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cs-success-message .cs-li:last-child {
    margin-bottom: 0;
}

.cs-success-message .cs-number {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.cs-success-message .cs-li-text {
    margin: 0;
    color: var(--bodyTextColorWhite);
    font-size: 1rem;
    line-height: 1.5;
}

#contact-info {
    padding: var(--sectionPadding);
    background-color: var(--secondary);
}

#contact-info .cs-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

#contact-info .cs-item {
    background-color: var(--bodyTextColorWhite);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
#contact-info .cs-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

#contact-info .cs-item:hover {
    transform: translateY(-5px);
}

#contact-info .cs-icon-wrapper {
    margin-bottom: 1rem;
}

#contact-info .cs-icon {
    width: 3rem;
    height: 3rem;
}

#contact-info .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
    display: block;
}

#contact-info .cs-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

#contact-info .cs-link:hover {
    text-decoration: underline;
}

#contact-info .cs-item-text {
    color: var(--bodyTextColor);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .cs-success-message {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    #contact-info .cs-card-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #contact-info .cs-item {
        padding: 1.5rem;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    .cs-success-message {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    #contact-info .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/*-- -------------------------- -->
<---      Privacy Policy        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #privacy-policy,
    #cookie-policy {
        padding: var(--sectionPadding);
        background-color: var(--bodyBackgroundColor);
    }
    
    #privacy-policy .cs-container,
    #cookie-policy .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #privacy-policy .cs-content,
    #cookie-policy .cs-content {
        width: 100%;
        max-width: 45rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    #privacy-policy .cs-title,
    #cookie-policy .cs-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        font-weight: 700;
        line-height: 1.3em;
        text-align: center;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    
    #privacy-policy .cs-text,
    #cookie-policy .cs-text {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0 0 1.5rem 0;
        color: var(--bodyTextColor);
    }
    
    #privacy-policy .cs-section,
    #cookie-policy .cs-section {
        width: 100%;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    #privacy-policy .cs-h2,
    #cookie-policy .cs-h2 {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.3em;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        border-bottom: 2px solid var(--primary);
        padding-bottom: 0.5rem;
    }
    
    #privacy-policy .cs-h3,
    #cookie-policy .cs-h3 {
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.3em;
        margin: 1.5rem 0 0.75rem 0;
        color: var(--headerColor);
    }
    
    #privacy-policy .cs-ul,
    #cookie-policy .cs-ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }
    
    #privacy-policy .cs-li,
    #cookie-policy .cs-li {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0.5rem 0;
        color: var(--bodyTextColor);
        list-style-type: disc;
    }
    
    #privacy-policy .cs-li:last-child,
    #cookie-policy .cs-li:last-child {
        margin-bottom: 0;
    }
    
    /* Update date text styling */
    #privacy-policy .cs-text:first-of-type,
    #cookie-policy .cs-text:first-of-type {
        font-size: 0.875rem;
        color: var(--bodyTextColorLight);
        font-style: italic;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0.75rem;
        background-color: #f8f9fa;
        border-radius: 6px;
        border-left: 4px solid var(--primary);
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #privacy-policy .cs-container,
    #cookie-policy .cs-container {
        max-width: 60rem;
    }
    
    #privacy-policy .cs-content,
    #cookie-policy .cs-content {
        max-width: 55rem;
    }
    
    #privacy-policy .cs-section,
    #cookie-policy .cs-section {
        padding: 2rem;
    }
}

/*-- -------------------------- -->
<---      Thank You Page        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    /* Button styling for hero section on thank you page */
    #hero-1621 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 2rem auto 0;
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
        text-align: center;
        min-width: 12.5rem;
    }
    
    #hero-1621 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s ease;
    }
    
    #hero-1621 .cs-button-solid:hover {
        color: #fff;
    }
    
    #hero-1621 .cs-button-solid:hover:before {
        width: 100%;
    }
    
    /* Thank you page specific improvements */
    #hero-1621 .cs-content {
        text-align: center;
    }
    
    #hero-1621 .cs-title {
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    #hero-1621 .cs-text {
        color: #fff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        opacity: 0.95;
    }
}

/*-- -------------------------- -->
<---           Footer            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer-1390 {
        padding: var(--sectionPadding);
        background-color: #1a1a1a;
    }
    
    #footer-1390 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    
    #footer-1390 .cs-top {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    #footer-1390 .cs-logo {
        display: block;
    }
    
    #footer-1390 .cs-logo-img {
        width: 100%;
        height: auto;
        max-width: 200px;
    }
    
    #footer-1390 .cs-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    #footer-1390 .cs-copyright {
        color: #ffffff;
        font-size: 0.875rem;
    }
    
    #footer-1390 .cs-copyright-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
    }
    
    #footer-1390 .cs-copyright-link:hover {
        text-decoration: underline;
    }
    
    #footer-1390 .cs-separater {
        margin: 0 0.5rem;
        color: #cccccc;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1390 .cs-bottom {
        flex-wrap: nowrap;
    }
}

