/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-489 {
    padding: var(--sectionPadding);
    background: #fafbfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  #faq-489 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }
  #faq-489 .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;
  }
  #faq-489 .cs-content .cs-title {
    /* 17 characters wide including spaces */
    max-width: 17ch;
  }
  #faq-489 .cs-content .cs-text {
    /* 32px - 48px */
    margin-bottom: clamp(2rem, 3vw, 3rem);
  }
  #faq-489 .cs-faq-group {
    max-width: 46.25rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  #faq-489 .cs-faq-group .cs-faq-item {
    list-style: none;
    width: 100%;
    /* prevents border from affecting width and height */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #f1f1f4;
    transition: border 0.3s, padding 0.3s, border-color 0.3s;
  }
  #faq-489 .cs-faq-group .cs-faq-item:hover {
    border-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item.active {
    padding-bottom: 1rem;
    border-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button {
    /* 20px - 25px */
    font-size: 1.3rem;
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button:hover {
    cursor: pointer;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button:before {
    /* horizontal line */
    content: "";
    width: 1rem;
    height: 0.1875rem;
    background-color: currentColor;
    opacity: 1;
    border-radius: 1px;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: transform 0.5s, opacity 0.3s;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button:after {
    /* vertical line */
    content: "";
    width: 1rem;
    height: 0.1875rem;
    background-color: currentColor;
    opacity: 1;
    border-radius: 1px;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    transition: transform 0.5s;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"] {
    color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"]:before {
    transform: translateY(-50%) rotate(180deg);
    opacity: 0;
    background-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(360deg);
    background-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"] + .cs-item-p {
    height: auto;
    margin-top: 0.5rem;
    opacity: 1;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button .cs-button-text {
    width: 80%;
    display: block;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-item-p {
    /* 14px - 16px */
    font-size: 1.1rem;
    line-height: 1.5em;
    width: 90%;
    height: 0;
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 48rem) {
  #faq-489 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.25rem;
  }
  #faq-489 .cs-content {
    margin-top: 3.125rem;
  }
  #faq-489 .cs-content .cs-title,
  #faq-489 .cs-content .cs-topper {
    text-align: left;
    margin-left: 0;
  }
  #faq-489 .cs-faq-group {
    width: clamp(56%, 58vw, 58%);
    flex: none;
  }
}
/*-- -------------------------- -->
<---          What Is?          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-17 {
    padding: var(--sectionPadding);
  }
  #services-17 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-17 .cs-container .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;
  }
  #services-17 .cs-text {
    max-width: 55rem;
    text-align: center;
  }
  #services-17 .incentive-levels {
    text-align: center;
    width: 100%;
  }
  #services-17 .incentive-levels .cs-h3 {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  #services-17 .cs-card-group.empowerPlus {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 56.25rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #services-17 .cs-card-group.empowerPlus .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    max-width: 23rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--headerColor);
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-picture {
    margin-right: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* 60px - 68px */
    width: clamp(3.75rem, 6vw, 4.25rem);
    height: clamp(3.75rem, 6vw, 4.25rem);
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-picture .cs-icon {
    width: 3.125rem;
    height: auto;
    display: block;
    filter: var(--greenSvgFilter);
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-picture .cs-icon.lightbulb {
    width: 4rem;
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-picture .cs-icon.refrigerator {
    width: 3.4375rem;
  }
  #services-17 .cs-card-group.empowerPlus .cs-item .cs-picture .cs-icon.insulation {
    width: 3.75rem;
  }
  #services-17 .cs-card-group.comfortHome {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3.75rem;
  }
  #services-17 .cs-card-group.comfortHome .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 22.5rem;
    margin: 0;
    padding: 0;
  }
  #services-17 .cs-card-group.comfortHome .cs-item .cs-picture {
    margin: auto;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #services-17 .cs-card-group.comfortHome .cs-item .cs-picture img {
    width: auto;
    height: 2.3125rem;
    display: block;
  }
  #services-17 .cs-card-group.comfortHome .cs-item .cs-h3 {
    font-size: 1.375rem;
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 0.5rem;
    color: var(--headerColor);
  }
  #services-17 .cs-card-group.comfortHome .cs-item .cs-item-text {
    font-size: var(--bodyFontSize);
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-17 .cs-card-group.comfortHome .cs-item .cs-item-text li {
    list-style: none;
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #services-17 .cs-card-group.empowerPlus {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 2.5rem;
    row-gap: 2.5rem;
  }
  #services-17 .cs-card-group.empowerPlus .cs-item {
    margin: 0;
    width: 46%;
  }
  #services-17 .cs-card-group.comfortHome {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-17 .cs-card-group.empowerPlus {
    max-width: 80rem;
  }
}
/*-- -------------------------- -->
<---     Empower+ Calculator    -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-contact-486 {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  #cs-contact-486 .cs-container {
    width: 100%;
    /* changes to 1440px at tablet */
    max-width: 34.375em;
    margin: auto;
    /* 20px - 80px */
    padding: clamp(1.25rem, 5.5vw, 5rem);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: var(--primaryDark);
    /* 12px - 24px */
    border-radius: clamp(0.75rem, 3vw, 1.5rem);
    /* clips the glowing orb */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  #cs-contact-486 .cs-container:before {
    /* glowing orb */
    content: "";
    width: 77.5rem;
    height: 7.625rem;
    background: #f1f1f4;
    opacity: 0.21;
    -webkit-filter: blur(152px);
    filter: blur(152px);
    transform: translateX(-50%) rotate(-38.5deg);
    position: absolute;
    display: block;
    top: 30%;
    left: 50%;
    z-index: -1;
  }
  #cs-contact-486 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 36.75rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #cs-contact-486 .cs-content .cs-title {
    max-width: 20ch;
    color: var(--bodyTextColorWhite);
  }
  #cs-contact-486 .cs-content .cs-color {
    color: var(--secondary);
  }
  #cs-contact-486 .cs-content .cs-text {
    font-size: var(--bodyFontSize);
    /* 24px - 36px, matches the padding-bottom */
    margin: 0 0 clamp(1.5rem, 4vw, 2.25rem) 0;
    /* 24px - 36px */
    padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
    color: #fff;
    position: relative;
  }
  #cs-contact-486 .cs-content .cs-text:before {
    /* dashed border effect, by using this method we can control the width of the dashed lines */
    content: "";
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, #b3bac5, #b3bac5 50%, transparent 50%, transparent 0%);
    /* change the first left rem value to change the length of the dashes */
    background-size: 0.6rem 1px;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
  }
  #cs-contact-486 .cs-content .cs-heading {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5em;
    font-weight: 700;
    text-align: left;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #cs-contact-486 .cs-content .cs-heading:last-of-type {
    /* make the last one have the margin bottom to create the space between the contact info */
    margin-bottom: 0.75rem;
  }
  #cs-contact-486 .cs-content .cs-link {
    /* 14px - 16px */
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    margin: 0;
    color: #fff;
    display: block;
  }
  #cs-contact-486 #empower-plus-calculator {
    width: 100%;
    max-width: 38.625rem;
    padding: 2rem 1.5rem;
    background-color: #fff;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1.25rem;
  }
  #cs-contact-486 #empower-plus-calculator .cs-h3 {
    /* 20px - 31px */
    font-size: clamp(1.4rem, 4vw, 1.7rem);
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    width: 100%;
    /* 4px + the 20px gap on the #cs-form */
    margin: 0 0 0.25rem 0;
    color: #14142b;
  }
  #cs-contact-486 #empower-plus-calculator fieldset {
    border: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1.4rem;
    width: 100%;
  }
  #cs-contact-486 #empower-plus-calculator fieldset legend {
    font-size: 1.15rem;
    line-height: 1.5em;
    width: 100%;
    margin: 0 0 0.5rem 0;
    color: #14142b;
  }
  #cs-contact-486 #empower-plus-calculator fieldset legend #income-threshold {
    font-weight: bold;
  }
  #cs-contact-486 #empower-plus-calculator fieldset label.visually-hidden {
    display: none;
  }
  #cs-contact-486 #empower-plus-calculator fieldset .flex {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  #cs-contact-486 #empower-plus-calculator fieldset .flex label {
    font-size: 1.2rem;
    color: #555;
    margin-left: 0.5rem;
    margin-right: 1rem;
    line-height: 1;
    cursor: pointer;
  }
  #cs-contact-486 #empower-plus-calculator fieldset .flex label:hover {
    color: #000;
  }
  #cs-contact-486 #empower-plus-calculator fieldset .flex input[type="radio"] {
    transform: scale(1.5);
  }
  #cs-contact-486 #empower-plus-calculator fieldset select {
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    height: 3rem;
    margin: 0;
    padding: 0 1.25rem;
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    border-radius: 0.5rem;
    border: 1px solid #b4b2c7;
    background-color: #fff;
    color: #000;
    cursor: pointer;
  }
  #cs-contact-486 #aria-notification {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  #cs-contact-486 #yes-simulated-button,
  #cs-contact-486 #no-simulated-button {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-contact-486 .cs-container {
    max-width: 90rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
/*-- -------------------------- -->
<---          Empower+ Table          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #empower-plus-table {
    padding: var(--sectionPadding);
    padding-top: 0rem;
  }
  #empower-plus-table .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #empower-plus-table .cs-container .table-container {
    width: 100%;
    overflow-x: auto;
  }
  #empower-plus-table .cs-container .table-container table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    min-width: 37.5rem;
    /* Prevents table from being squeezed on small screens */
  }
  #empower-plus-table .cs-container .table-container table th,
  #empower-plus-table .cs-container .table-container table td {
    border: 1px solid #ccc;
    padding: 0.625rem;
    text-align: center;
  }
  #empower-plus-table .cs-container .table-container table th {
    background-color: #eeeeee;
    text-transform: uppercase;
  }
  #empower-plus-table .cs-container .table-container table td:nth-child(1) {
    width: 11rem;
  }
  #empower-plus-table .cs-container .table-container table caption {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
}
/*-- -------------------------- -->
<---       Side By Side (Who qualifies)         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RPsbs-70 {
    background-color: var(--primary);
  }
  #RPsbs-70 .cs-title,
  #RPsbs-70 .cs-text,
  #RPsbs-70 #list-1405 li a {
    color: #fff;
  }
  #RPsbs-70,
  #RPsbsr-70 {
    padding: var(--sectionPadding);
  }
  #RPsbs-70 .cs-container,
  #RPsbsr-70 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #RPsbs-70 .cs-content,
  #RPsbsr-70 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #RPsbs-70 .cs-content .cs-title,
  #RPsbsr-70 .cs-content .cs-title {
    font-size: clamp(1.9375rem, 3.9vw, 2.5rem);
  }
  #RPsbs-70 .cs-content .cs-text,
  #RPsbsr-70 .cs-content .cs-text {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  #RPsbs-70 .cs-content .cs-text:last-of-type,
  #RPsbsr-70 .cs-content .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #RPsbs-70 .cs-content h3,
  #RPsbsr-70 .cs-content h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
  }
  #RPsbs-70 .cs-content #list-1405,
  #RPsbsr-70 .cs-content #list-1405 {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #RPsbs-70 .cs-content #list-1405 .cs-li,
  #RPsbsr-70 .cs-content #list-1405 .cs-li {
    font-size: 1.2rem;
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
  #RPsbs-70 .cs-content #list-1405 .cs-li .cs-text,
  #RPsbsr-70 .cs-content #list-1405 .cs-li .cs-text {
    margin-bottom: 0;
  }
  #RPsbs-70 .cs-content #list-1405 .cs-li .cs-text a:hover,
  #RPsbsr-70 .cs-content #list-1405 .cs-li .cs-text a:hover {
    text-decoration: none;
  }
  #RPsbs-70 .cs-content #list-1405 .cs-icon,
  #RPsbsr-70 .cs-content #list-1405 .cs-icon {
    width: 2.1875rem;
    padding: 0.1rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 1px;
    display: block;
    background-color: var(--primary);
    border-radius: 50%;
  }
  #RPsbs-70 .cs-content .cs-button-solid,
  #RPsbsr-70 .cs-content .cs-button-solid {
    margin-top: 1.3rem;
  }
  #RPsbs-70 .cs-picture,
  #RPsbsr-70 .cs-picture {
    width: 95%;
    max-width: 15.625rem;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height */
    aspect-ratio: 312/335;
    border-radius: 1rem;
    z-index: 1;
  }
  #RPsbs-70 .cs-picture:before,
  #RPsbsr-70 .cs-picture:before {
    /* Top right box */
    content: "";
    width: 10rem;
    /* 202px - 248px */
    height: clamp(12.625rem, 25vw, 15.5rem);
    background: var(--primaryDark);
    opacity: 1;
    border-radius: 1rem;
    position: absolute;
    display: block;
    /* 16px -20px */
    /* wrapped in a calc funtion to get a negative clamp value */
    top: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
    right: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
  }
  #RPsbs-70 .cs-picture:after,
  #RPsbsr-70 .cs-picture:after {
    /* Bottom left box */
    content: "";
    width: 10rem;
    /* 202px - 248px */
    height: clamp(12.625rem, 25vw, 15.5rem);
    background: var(--primaryDark);
    opacity: 1;
    border-radius: 1rem;
    position: absolute;
    display: block;
    /* 16px -20px */
    /* wrapped in a calc funtion to get a negative clamp value */
    bottom: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
    left: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
    z-index: -1;
  }
  #RPsbs-70 .cs-picture img,
  #RPsbsr-70 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #RPsbs-70 .cs-container,
  #RPsbsr-70 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    /* 60px - 128px */
    gap: clamp(3.75rem, 9.5vw, 8rem);
  }
  #RPsbs-70 .cs-picture,
  #RPsbsr-70 .cs-picture {
    /* 328px - 502px */
    width: clamp(20.5rem, 37.5vw, 31.375rem);
    /* 440px - 520px */
    height: clamp(27.5rem, 40vw, 32.5rem);
    /* 16px - 20px */
    margin: 0 0 0 clamp(1rem, 5vw, 1.25rem);
    flex: none;
    max-width: 34.375rem;
  }
  #RPsbs-70 .cs-content,
  #RPsbsr-70 .cs-content {
    width: 45%;
    margin: 0;
  }
}
/*-- -------------------------- -->
<---   Side By Side Reverse (How to participate)     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RPsbsr-70 {
    background-color: #fff;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48em) {
  #RPsbsr-70 .cs-container {
    justify-content: flex-end;
  }
  #RPsbsr-70 .cs-picture {
    /* 16px - 20px */
    margin-right: clamp(1rem, 5vw, 1.25rem);
    /* forces it to the left */
    order: 2;
  }
}
/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1675 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #steps-1675 .cs-container {
    width: 100%;
    /* changes to 1920px at tablet */
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1675 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #steps-1675 .cs-text {
    /* Override.  cs-topper cs-title and first cs-text should be removed and put into your global css sheet so it can control every instance of them on your site and is consistent. This selector is a section specific override that stays inside this stitch */
    max-width: 32.625rem;
  }
  #steps-1675 .cs-text button {
    text-decoration: underline;
    color: var(--primary);
    border: 0;
    background-color: transparent;
    font-size: var(--bodyFontSize);
    color: #00f;
  }
  #steps-1675 .cs-text button:hover {
    text-decoration: none;
  }
  #steps-1675 .cs-card-group {
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    align-items: stretch;
    grid-auto-flow: row;
    gap: 1.5rem;
  }
  #steps-1675 .cs-item {
    list-style: none;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    /* bottom border */
  }
  #steps-1675 .cs-item::after {
    content: "";
    width: 100%;
    height: 1px;
    /* to change the color of the bottom border, adjust the second color (at 50%). the first and third will blend the color to transparent */
    /* note you'll also have to change the color in the tablet media query when the lines go vertical */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    position: absolute;
    bottom: -1.25rem;
    left: 0;
  }
  #steps-1675 .cs-item:last-of-type::after {
    content: none;
  }
  #steps-1675 .cs-number {
    /* 80px - 100px */
    font-size: clamp(5rem, 1vw, 6.25rem);
    font-weight: 900;
    line-height: 1.2em;
    color: var(--primary);
    opacity: 0.12;
    display: block;
  }
  #steps-1675 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: -1.9375rem 0 1rem 0;
    color: var(--headerColor);
  }
  #steps-1675 .cs-item-text {
    /* 14px - 16px */
    font-size: 1.1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-1675 .cs-container {
    max-width: 80rem;
  }
  #steps-1675 .cs-card-group {
    gap: 3.375rem;
  }
  #steps-1675 .cs-card-group.three-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  #steps-1675 .cs-card-group.four-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  #steps-1675 .cs-item::after {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #bababa 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    right: -1.6875rem;
    left: initial;
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-489 {
    background: #fff;
    border: 0;
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #cta-262 .cs-left-section .cs-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
  }
}
