/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2149 {
    /* 300px - 400px on top - leaving extra space for the navigation */
    /* 60px - 100px on bottom */
    padding: clamp(13rem, 54vw, 25rem) 1rem clamp(3.75rem, 7.5vw, 6.25rem) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-2149 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #hero-2149 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hero-2149 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 5vw, 3.8125rem);
    max-width: 30ch;
  }
  #hero-2149 .cs-title,
  #hero-2149 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #hero-2149 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 55ch;
    margin-bottom: 2rem;
    opacity: 1;
    font-weight: 500;
  }
  #hero-2149 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-2149 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    /* prevents the cursor from interacting with it */
    pointer-events: none;
    opacity: 1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-2149 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-2149 .cs-topper {
    color: var(--secondaryLight);
  }
  body.dark-mode #hero-2149 .cs-title,
  body.dark-mode #hero-2149 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hero-2149 .cs-button-solid {
    background-color: var(--secondaryLight);
    color: #1a1a1a;
  }
  body.dark-mode #hero-2149 .cs-button-solid:before {
    background: #000;
  }
  body.dark-mode #hero-2149 .cs-button-solid:hover {
    color: #fff;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-317 {
    padding: var(--sectionPadding);
  }
  #sbs-317 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-317 .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-317 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-317 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-317 .cs-ul {
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
  }
  #sbs-317 .cs-li {
    list-style: none;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }
  #sbs-317 .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #sbs-317 .cs-icon {
    width: 1rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered with the text */
    margin-top: 0.0625rem;
    flex: none;
  }
  #sbs-317 .cs-picture {
    /* set font size to scale with view width, stopping at 68% the value of em */
    font-size: min(2.16vw, .68em);
    width: 32.5em;
    height: 42.5em;
    /* margin top and bottom to match the exact amount the grey square overflows the parent for consistent spacing */
    margin: 3em 0;
    position: relative;
    display: block;
  }
  #sbs-317 .cs-picture:before {
    /* grey box */
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background: #bababa;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transform: rotate(15deg);
  }
  #sbs-317 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.625rem;
    object-fit: cover;
    border: 2px solid #fff;
    /* Add white border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: adds subtle shadow */
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-317 .cs-container {
    max-width: 80rem;
    /* set to horizontal arrangement */
    flex-direction: row;
    justify-content: center;
    /* 77px - 160px */
    gap: clamp(4.8125rem, 11vw, 10rem);
  }
  #sbs-317 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #sbs-317 .cs-picture {
    font-size: min(1.1vw, 1em);
    margin: 3.5em 0 3.5em 5em;
    /* prevent flexbox from squishing it */
    flex: none;
  }
}
/* Section Background Classes */
.light-bg {
  background-color: #fff;
}
.gray-bg {
  background-color: #f7f7f7;
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode .gray-bg {
    background-color: var(--dark);
  }
  body.dark-mode .light-bg {
    background-color: var(--medium);
  }
  body.dark-mode #sbs-317 .cs-picture:before,
  body.dark-mode #sbs-317 .cs-picture:after {
    background: var(--accent);
  }
  body.dark-mode #sbs-317 .cs-topper {
    color: var(--secondaryLight);
  }
  body.dark-mode #sbs-317 .cs-title,
  body.dark-mode #sbs-317 .cs-text,
  body.dark-mode #sbs-317 .cs-call {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-317 .cs-text {
    opacity: 0.8;
  }
  body.dark-mode #sbs-317 .cs-button-solid {
    background-color: var(--secondaryLight);
    color: #1a1a1a;
  }
  body.dark-mode #sbs-317 .cs-button-solid:before {
    background-color: #000;
  }
  body.dark-mode #sbs-317 .cs-button-solid:hover {
    color: #fff;
  }
}
/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-318 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #sbsr-318 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbsr-318 .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;
  }
  #sbsr-318 .cs-text {
    margin-bottom: 1rem;
  }
  #sbsr-318 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbsr-318 .cs-picture {
    /* set font size to scale with view width, stopping at 68% the value of em */
    font-size: min(2.16vw, .68em);
    width: 32.5em;
    height: 42.5em;
    /* margin top and bottom to match the exact amount the grey square overflows the parent for consistent spacing */
    margin: 3em 0;
    position: relative;
    display: block;
  }
  #sbsr-318 .cs-picture:before {
    /* grey box */
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background: #bababa;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transform: rotate(15deg);
  }
  #sbsr-318 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 0.625rem;
    object-fit: cover;
    border: 2px solid #fff;
    /* Add white border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: adds subtle shadow */
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbsr-318 .cs-container {
    max-width: 80rem;
    /* set to horizontal arrangement */
    flex-direction: row;
    justify-content: center;
    /* 77px - 160px */
    gap: clamp(4.8125rem, 11vw, 10rem);
  }
  #sbsr-318 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #sbsr-318 .cs-picture {
    font-size: min(1.1vw, 1em);
    margin: 3.5em 0 3.5em 5em;
    /* prevent flexbox from squishing it */
    flex: none;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbsr-318 {
    background-color: var(--medium);
  }
  body.dark-mode #sbsr-318 .cs-picture:before,
  body.dark-mode #sbsr-318 .cs-picture:after {
    background: var(--accent);
  }
  body.dark-mode #sbsr-318 .cs-topper {
    color: var(--secondaryLight);
  }
  body.dark-mode #sbsr-318 .cs-title,
  body.dark-mode #sbsr-318 .cs-text,
  body.dark-mode #sbsr-318 .cs-call {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbsr-318 .cs-text {
    opacity: 0.8;
  }
  body.dark-mode #sbsr-318 .cs-button-solid {
    background-color: var(--secondaryLight);
    color: #1a1a1a;
  }
  body.dark-mode #sbsr-318 .cs-button-solid:before {
    background-color: #000;
  }
  body.dark-mode #sbsr-318 .cs-button-solid:hover {
    color: #fff;
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #pricing-357 {
    padding: var(--sectionPadding);
    /* background-color: #FFF; */
    padding-bottom: 3rem;
  }
  #pricing-357 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-end;
    height: 100%;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #pricing-357 .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;
  }
  #pricing-357 .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #pricing-357 .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #pricing-357 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #pricing-357 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #pricing-357 .cs-item {
    list-style: none;
    /* 20px - 32px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.4vw, 2rem);
    width: 100%;
    max-width: 25.8125rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #E8E8E8;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
    /* Add subtle shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Add colored top border */
    border-top: 4px solid var(--primary);
  }
  #pricing-357 .cs-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary), #4a9eff);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #pricing-357 .cs-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  #pricing-357 .cs-item:hover::before {
    opacity: 1;
  }
  #pricing-357 .cs-item:hover .cs-h3,
  #pricing-357 .cs-item:hover .cs-item-text {
    color: #fff;
    position: relative;
    z-index: 1;
  }
  #pricing-357 .cs-item:hover .cs-h3::before {
    filter: brightness(0) invert(1);
  }
  #pricing-357 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.75rem;
    padding: 0;
    color: var(--headerColor);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #pricing-357 .cs-h3::before {
    content: '✨';
    font-size: 1.125rem;
    flex-shrink: 0;
  }
  #pricing-357 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.6em;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    color: #555;
    font-weight: 400;
  }
  #pricing-357 .cs-ul {
    padding: 0;
    margin: 0;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
  }
  #pricing-357 .cs-li {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #pricing-357 .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #pricing-357 .cs-li-img {
    width: 1.25rem;
    height: auto;
    margin-top: 0.1875rem;
    margin-right: 0.5rem;
  }
  #pricing-357 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.25rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    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;
    margin-top: auto;
    width: 100%;
  }
  #pricing-357 .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 0.3s;
  }
  #pricing-357 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
  #pricing-357 .cs-card-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: stretch;
  }
  #pricing-357 .cs-item {
    width: 100%;
    max-width: none;
    /* ensures they stay the same height if you add more content */
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
/* Desktop 1024px */
@media only screen and (min-width: 64rem) {
  #pricing-357 .cs-container {
    max-width: 90rem;
  }
  #pricing-357 .cs-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 3vw, 2.5rem);
    align-items: stretch;
  }
  #pricing-357 .cs-item {
    max-width: 28rem;
    padding: clamp(2rem, 3vw, 2.5rem);
    /* Stagger animation delay for each card */
  }
  #pricing-357 .cs-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }
  #pricing-357 .cs-item:hover .cs-h3,
  #pricing-357 .cs-item:hover .cs-item-text {
    color: #fff;
  }
  #pricing-357 .cs-item:hover .cs-h3::before {
    filter: brightness(0) invert(1);
  }
  #pricing-357 .cs-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  #pricing-357 .cs-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  #pricing-357 .cs-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  #pricing-357 .cs-item:nth-child(4) {
    animation-delay: 0.4s;
  }
  #pricing-357 .cs-item:nth-child(5) {
    animation-delay: 0.5s;
  }
  #pricing-357 .cs-item:nth-child(6) {
    animation-delay: 0.6s;
  }
  #pricing-357 .cs-h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  #pricing-357 .cs-h3::before {
    font-size: 1.25rem;
  }
  #pricing-357 .cs-item-text {
    font-size: 1rem;
    line-height: 1.6em;
    margin-bottom: 1.5rem;
  }
}
/* Large Desktop 1200px+ */
@media only screen and (min-width: 75rem) {
  #pricing-357 .cs-container {
    max-width: 100rem;
  }
  #pricing-357 .cs-card-group {
    gap: 3rem;
  }
  #pricing-357 .cs-item {
    max-width: 30rem;
    padding: 3rem 2.5rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing-357 {
    background-color: var(--dark);
  }
  body.dark-mode #pricing-357 .cs-topper {
    color: var(--secondaryLight);
  }
  body.dark-mode #pricing-357 .cs-title,
  body.dark-mode #pricing-357 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-357 .cs-item {
    background: var(--accent);
    border-color: var(--medium);
    border-top-color: var(--secondaryLight);
  }
  body.dark-mode #pricing-357 .cs-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  }
  body.dark-mode #pricing-357 .cs-item:hover .cs-h3,
  body.dark-mode #pricing-357 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-357 .cs-item:hover .cs-h3::before {
    filter: brightness(0) invert(1);
  }
  body.dark-mode #pricing-357 .cs-h3,
  body.dark-mode #pricing-357 .cs-item-text,
  body.dark-mode #pricing-357 .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-357 .cs-li-img {
    /* make so bright it turns white */
    filter: brightness(900%) grayscale(1);
  }
}
/*-- -------------------------- -->
<---           Reviews          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-2282 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #reviews-2282 .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;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #reviews-2282 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #reviews-2282 .cs-title {
    margin: 0;
  }
  #reviews-2282 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.5rem;
    color: var(--headerColor);
  }
  #reviews-2282 .cs-review {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #reviews-2282 .cs-flex-group {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E7E7E8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  #reviews-2282 .cs-profile {
    width: 3.75rem;
    height: 3.75rem;
    display: block;
    position: relative;
    z-index: 1;
  }
  #reviews-2282 .cs-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #reviews-2282 .cs-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--headerColor);
    display: block;
  }
  #reviews-2282 .cs-job {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    display: block;
  }
  #reviews-2282 .cs-image-group {
    margin-top: 3rem;
    display: flex;
    gap: 0.5rem;
  }
  #reviews-2282 .cs-picture {
    width: 50%;
    aspect-ratio: 1;
    display: block;
    position: relative;
    z-index: 1;
  }
  #reviews-2282 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 48rem) {
  #reviews-2282 .cs-container {
    width: 61vw;
    max-width: 52.875rem;
  }
  #reviews-2282 .cs-content,
  #reviews-2282 .cs-wrapper {
    max-width: 46.1875rem;
  }
  #reviews-2282 .cs-h3,
  #reviews-2282 .cs-review {
    max-width: 46.1875rem;
  }
  #reviews-2282 .cs-image-group {
    margin: 0;
    /* allows the children of the parent container to act as though the parent doesnt exist and floats with all the elements outside the parent */
    display: contents;
  }
  #reviews-2282 .cs-picture {
    width: 16vw;
    max-width: 20rem;
    height: 16vw;
    max-height: 20rem;
    aspect-ratio: initial;
    position: absolute;
    z-index: 1;
  }
  #reviews-2282 .cs-picture1 {
    top: 0;
    left: 0;
  }
  #reviews-2282 .cs-picture {
    right: 0;
    bottom: 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-2282 .cs-title,
  body.dark-mode #reviews-2282 .cs-review,
  body.dark-mode #reviews-2282 .cs-h3,
  body.dark-mode #reviews-2282 .cs-job,
  body.dark-mode #reviews-2282 .cs-name {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-2282 .cs-flex-group {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #reviews-2282 .cs-review,
  body.dark-mode #reviews-2282 .cs-job {
    opacity: 0.8;
  }
  body.dark-mode #reviews-2282 a {
    color: var(--secondaryLight);
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-1094 {
    padding: var(--sectionPadding);
    padding-top: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4b8c 100%);
    position: relative;
    z-index: 1;
  }
  #cta-1094 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: var(--sectionPadding);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #cta-1094 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    /* changes to 100% at tablet */
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #cta-1094 .cs-title {
    width: 100%;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 1.5rem;
    color: #fff;
    font-weight: 900;
  }
  #cta-1094 .cs-text {
    margin: 0 0 1.5rem;
    color: #fff;
    /* opacity: 0.9; */
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 50rem;
  }
  #cta-1094 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 2.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--primary);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-1094 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #cta-1094 .cs-button-solid:hover:before {
    width: 100%;
    color: #000;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-1094 .cs-container {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  #cta-1094 .cs-content {
    max-width: 100%;
  }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #cta-1094 .cs-content {
    justify-content: space-between;
    gap: 1rem;
  }
  #cta-1094 .cs-title {
    margin: 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cta-1094 .cs-title {
    color: var(--bodyTextColorWhite);
  }
}
