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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbsr-2370 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    background-color: #ffffff;
    /* clips anything overflowing */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 49rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 3.75rem);
  }
  #sbsr-2370 .wrapper {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #sbsr-2370 .content {
    /* set text align to center if content needs to be centered */
    text-align: left;
    width: 100%;
    max-width: 43.375rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* left aligns content, set to center to align content horizontally */
    align-items: flex-start;
  }
  #sbsr-2370 .main-title {
    max-width: 80%;
    font-size: 2.25rem;
    text-align: center;
    margin: 0 0 1rem 0;
  }
  #sbsr-2370 .header {
    /* 20px - 31px */
    font-size: clamp(1.25rem, 3vw, 1.9375rem);
    text-align: center;
    line-height: 1.2em;
    font-weight: 500;
    margin: 0 0 2rem 0;
    color: var(--headerColor);
  }
  #sbsr-2370 .arrow {
    width: 9.625rem;
    height: auto;
    margin-bottom: 1.25rem;
    display: block;
  }
  #sbsr-2370 .text {
    margin-bottom: 1rem;
  }
  #sbsr-2370 .text:last-of-type {
    /* 24px - 32px */
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
  #sbsr-2370 .ul {
    width: 100%;
    margin: 0 0 2rem;
    padding: 1.5rem;
  }
  #sbsr-2370 .li {
    font-size: var(--bodyFontSize);
    list-style: disc;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    display: list-item;
  }
  #sbsr-2370 .button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0.5rem;
    color: #fff;
    overflow: hidden;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 6.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    align-self: center;
  }
  #sbsr-2370 .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;
  }
  #sbsr-2370 .button-solid:hover:before {
    width: 100%;
  }
  #sbsr-2370 .image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(2.8vw, .75rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 17em;
    height: auto;
    order: 2;
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .image-group::before {
    content: "";
    position: absolute;
    /* halo size */
    inset: -1.25rem;
    z-index: -1;
    background: radial-gradient(
        circle,
        rgba(4, 56, 36, 0.90) 10%,
        rgba(84, 144, 110, 0.58) 35%,
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(4rem);
}
  #sbsr-2370 .picture {
    width: 100%;
    margin-bottom: 1.25rem;
    height: auto;
    display: block;
  }
  #sbsr-2370 .picture img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* Large Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #sbsr-2370 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
  }
  #sbsr-2370 .container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .content {
    width: 50%;
    padding-bottom: clamp(3.75rem, 7.82vw, 6.25rem);
    align-items: flex-start;
  }
  #sbsr-2370 .topper,
  #sbsr-2370 .title {
    text-align: left;
    margin: 0;
  }
  #sbsr-2370 .topper {
    margin-bottom: 0.25rem;
  }
  #sbsr-2370 .title {
    margin-bottom: 2rem;
  }
  #sbsr-2370 .image-group {
    /* set to inherit at Large Desktop */
    font-size: min(1.2vw, 1rem);
    height: auto;
    order: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  #sbsr-2370 .picture {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
  }
  #sbsr-2370 .picture img {
    margin-bottom: 1.25rem;
    height: 85%;
    width: auto;
  }
  #sbsr-2370 .flower {
    display: block;
    width: 80vw;
    max-width: 56.25rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbsr-2370 {
    background-color: var(--dark);
  }
  body.dark-mode #sbsr-2370 .title,
  body.dark-mode #sbsr-2370 .text,
  body.dark-mode #sbsr-2370 .header,
  body.dark-mode #sbsr-2370 .li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbsr-2370 .title:before {
    opacity: 0.2;
  }
  body.dark-mode #sbsr-2370 .image-group::before {
        background: radial-gradient(
            circle,
            rgba(255, 252, 254, 0.748) 0%,
            rgba(74, 144, 226, 0.18) 35%,
            transparent 70%
        );
    }

  body.dark-mode #sbsr-2370 .wheel {
    filter: grayscale(1) brightness(1000%) opacity(0.3);
  }
}

/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1674 {
    padding: var(--sectionPadding);
  }
  #steps-1674 .container {
    width: 100%;
    /* changes to 1920px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1674 .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;
  }
  #steps-1674 .text {
    max-width: 75%;
  }
  #steps-1674 .card-group {
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: center;
    align-items: stretch;
    grid-auto-flow: row;
  }
  #steps-1674 .item {
    list-style: none;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    /* 24px - 60px */
    padding: clamp(1.5rem, 2vw, 3.75rem) 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    /* bottom border */
  }
  #steps-1674 .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: .6;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #steps-1674 .item:first-of-type {
    padding-top: 0;
  }
  #steps-1674 .item:last-of-type {
    padding-bottom: 0;
  }
  #steps-1674 .item:last-of-type::after {
    content: none;
  }
  #steps-1674 .number {
    font-size: 3.8125rem;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 clamp(1rem, 3vw, 2.5rem) 0;
    color: var(--accentColor);
    opacity: 0.55;
    display: block;
  }
  #steps-1674 .h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #steps-1674 .item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #steps-1674 .ca-button-m {
    display: block;
  }
  #steps-1674 .ca-button-d {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-1674 {
    padding-left: 0;
    padding-right: 0;
  }
  #steps-1674 .container {
    max-width: 120rem;
  }
  #steps-1674 .card-group {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  #steps-1674 .item {
    /* 24px - 60px */
    padding: 0 clamp(1.5rem, 3vw, 3.75rem);
  }
  #steps-1674 .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: .6;
    right: 0;
    left: initial;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #steps-1674 .card-group {
    flex-wrap: nowrap;
  }
  #steps-1674 .ca-button-m {
    display: none;
  }
  #steps-1674 .ca-button-d {
    display: block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #steps-1674 .topper {
    color: var(--lightAccentColor);
  }
  body.dark-mode #steps-1674 .title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #steps-1674 .item {
    border-color: var(--bodyTextColorWhite);
  }
  body.dark-mode #steps-1674 .item:after {
    opacity: .2;
  }
  body.dark-mode #steps-1674 .item-text,
  body.dark-mode #steps-1674 .text {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode #steps-1674 .h3 {
    color: var(--primaryLight);
  }
  body.dark-mode #steps-1674 .number {
    color: var(--lightAccentColor);
    opacity: 0.75;
  }
}