/* ---------- Banner ---------- */

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner {
    padding: var(--sectionPadding);
    padding-top: 15.625rem;
    padding-bottom: 7.5rem;
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  #banner .cs-container {
    text-align: center;
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  #banner .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }

  #banner .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #banner .cs-link {
    font-size: 1rem;
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #banner .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }

  #banner .cs-link:last-of-type::after {
    display: none;
  }

  #banner .cs-link:after {
    /* chevron */
    content: "";
    width: 0.4375rem;
    height: 0.75rem;
    margin: 0 1rem;
    background: url("/assets/images/icons/white-chev.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
  }

  #banner .cs-link.cs-active {
    color: var(--secondary);
  }

  #banner .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #banner .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(left,
        rgba(26, 26, 26, 0.94) 0%,
        rgba(26, 26, 26, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left,
        rgba(26, 26, 26, 0.94) 0%,
        rgba(26, 26, 26, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    top: 0;
    left: 0;
    z-index: 1;
  }

  #banner .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}

/* ----------  Side By Side ---------- */

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

  #RPsbs,
  #RPsbsr {
    padding: var(--sectionPadding);
    overflow: hidden;
  }

  #RPsbs .cs-container,
  #RPsbsr .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(3rem, 4vw, 4rem);
  }

  #RPsbs .cs-content,
  #RPsbsr .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;
  }

  #RPsbs .cs-text,
  #RPsbsr .cs-text {
    margin-bottom: 1rem;
  }

  #RPsbs .cs-text:last-of-type,
  #RPsbsr .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #RPsbs .cs-button-solid,
  #RPsbsr .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #1a1a1a;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }

  #RPsbs .cs-button-solid:before,
  #RPsbsr .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;
  }

  #RPsbs .cs-button-solid:hover,
  #RPsbsr .cs-button-solid:hover {
    color: #fff;
  }

  #RPsbs .cs-button-solid:hover:before,
  #RPsbsr .cs-button-solid:hover:before {
    width: 100%;
  }

  #RPsbs .cs-ul,
  #RPsbsr .cs-ul {
    width: 100%;
    padding: 0;
    /* 32px - 48px */
    margin: clamp(2rem, 5vw, 3rem) 0 0 0;
    /* 32px - 48px */
    padding: clamp(2rem, 5vw, 3rem) 0 0 0;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 0.75rem;
  }

  #RPsbs .cs-item,
  #RPsbsr .cs-item {
    list-style: none;
    width: 32%;
    /* making flex so we can align a heading with 1 line to the bottom */
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-content: space-between;
  }

  #RPsbs .cs-number,
  #RPsbsr .cs-number {
    font-size: 1.5625rem;
    line-height: 1.2em;
    font-weight: 700;
    text-align: left;
    color: var(--primary);
    display: block;
    margin: 0 0 0.5rem 0;
  }

  #RPsbs .cs-h3,
  #RPsbsr .cs-h3 {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    text-align: left;
    /* auto margin top will push text to bottom if there's only one line */
    margin: 0;
    color: var(--bodyTextColor);
  }

  #RPsbs .cs-image-group,
  #RPsbsr .cs-image-group {
    width: 100%;
    max-width: 41.875rem;
    height: 100vw;
    max-height: 39.375rem;
    position: relative;
    display: block;
    z-index: 1;
  }

  #RPsbs .cs-picture,
  #RPsbsr .cs-picture {
    /* big background image */
    width: 93%;
    height: 93%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }

  #RPsbs .cs-picture img,
  #RPsbsr .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #RPsbs .cs-desc,
  #RPsbsr .cs-desc {
    /* 16px - 31px */
    font-size: clamp(1rem, 2.5vw, 1.9375rem);
    line-height: 1.2em;
    font-weight: 700;
    text-align: inherit;
    width: 100%;
    color: var(--bodyTextColorWhite);
    position: relative;
    z-index: 10;
  }

  #RPsbs .cs-graphic,
  #RPsbsr .cs-graphic {
    width: 150%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {

  #RPsbs .cs-container,
  #RPsbsr .cs-container {
    max-width: 80rem;
    /* set to horizontal arrangement */
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }

  #RPsbs .cs-content,
  #RPsbsr .cs-content {
    width: 48%;
    padding: 3rem 0;
    align-self: center;
    /* prevents flexbox from squishing it */
    flex: none;
  }

  #RPsbs .cs-image-group,
  #RPsbsr .cs-image-group {
    width: 55%;
    max-width: 41.875rem;
    min-height: 41.875rem;
    max-height: 100%;
    height: auto;
    margin: 0;
  }

  #RPsbs .cs-picture,
  #RPsbsr .cs-picture {
    width: 93%;
    height: 94%;
  }

  #RPsbs .cs-graphic,
  #RPsbsr .cs-graphic {
    max-width: 44.6875rem;
    left: auto;
    right: 8.125rem;
    transform: translateY(-50%);
  }
}

/* ----------  Side By Side Reverse ---------- */

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RPsbsr {
    background-color: #f7f7f7;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #RPsbsr .cs-image-group {
    /* sends it to the right in the 2nd position */
    order: 2;
  }

  #RPsbsr .cs-picture {
    left: auto;
    right: 0;
  }
}/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RTsbs-1164,
  #RTsbsr-1164,
  #RTsbst-1164 {
      padding: var(--sectionPadding);
      /* clips grpahics from causing overflow issues */
      overflow: hidden;
  }
  #RTsbs-1164 .cs-container,
  #RTsbsr-1164 .cs-container,
  #RTsbst-1164 .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);
  }
  #RTsbs-1164 .cs-content,
  #RTsbsr-1164 .cs-content,
  #RTsbst-1164 .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;
  }

  #RTsbs-1164 .cs-text,
  #RTsbsr-1164 .cs-text,
  #RTsbst-1164 .cs-text {
      margin-bottom: 1rem;
  }
  #RTsbs-1164 .cs-text:last-of-type,
  #RTsbsr-1164 .cs-text:last-of-type,
  #RTsbst-1164 .cs-text:last-of-type {
      margin-bottom: 2rem;
  }
  #RTsbs-1164 .cs-ul,
  #RTsbsr-1164 .cs-ul,
  #RTsbst-1164 .cs-ul {
      max-width: 39.375rem;
      margin: 0 0 2rem 0;
      padding: 0;
      /* clips the bullets to create the half circle */
      overflow: hidden;
  }
  #RTsbs-1164 .cs-li,
  #RTsbsr-1164 .cs-li,
  #RTsbst-1164 .cs-li {
      list-style: none;
      margin: 0 0 0.5rem 0;
      color: var(--bodyTextColor);
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 0.75rem;
      position: relative;
  }
  #RTsbs-1164 .cs-li:before,
  #RTsbsr-1164 .cs-li:before,
  #RTsbst-1164 .cs-li:before {
      /* bullet */
      content: "";
      width: 0.5rem;
      height: 0.5rem;
      margin-top: 0.5rem;
      background: var(--secondary);
      display: block;
      /* prevents flexbox from squishing it */
      flex: none;
  }
  #RTsbs-1164 .cs-button-solid,
  #RTsbsr-1164 .cs-button-solid,
  #RTsbst-1164 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      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);
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
  }
  #RTsbs-1164 .cs-button-solid:before,
  #RTsbsr-1164 .cs-button-solid:before,
  #RTsbst-1164 .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;
  }
  #RTsbs-1164 .cs-button-solid:hover:before,
  #RTsbsr-1164 .cs-button-solid:hover:before,
  #RTsbst-1164 .cs-button-solid:hover:before {
      width: 100%;
  }
  #RTsbs-1164 .cs-image-group,
  #RTsbsr-1164 .cs-image-group,
  #RTsbst-1164 .cs-image-group {
      /* scales the whole group based on the view width size and stop when that vales equals .8em, resets at desktop */
      font-size: min(2.15vw, 0.8em);
      width: 42.375em;
      height: 36.75em;
      display: block;
      position: relative;
      z-index: 1;
  }
  #RTsbs-1164 .cs-picture,
  #RTsbsr-1164 .cs-picture,
  #RTsbst-1164 .cs-picture {
      position: absolute;
  }
  #RTsbs-1164 .cs-picture img,
  #RTsbsr-1164 .cs-picture img,
  #RTsbst-1164 .cs-picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
  }
  #RTsbs-1164 .cs-picture1,
  #RTsbsr-1164 .cs-picture1,
  #RTsbst-1164 .cs-picture1 {
      width: 39.375em;
      height: 24.375em;
      top: 0;
      left: 0;
      z-index: 10;
  }
  #RTsbs-1164 .cs-picture2,
  #RTsbsr-1164 .cs-picture2,
  #RTsbst-1164 .cs-picture2 {
      width: 28.8125em;
      height: 18.75em;
      bottom: 0;
      right: 0;
      z-index: 10;
  }
  #RTsbs-1164 .cs-graphic,
  #RTsbsr-1164 .cs-graphic,
  #RTsbst-1164 .cs-graphic {
      height: auto;
      position: absolute;
  }
  #RTsbs-1164 .cs-graphic1,
  #RTsbsr-1164 .cs-graphic1,
  #RTsbst-1164 .cs-graphic1 {
      width: 72.125em;
      top: 1.25em;
      right: -3.75em;
      transform: rotate(-15deg);
  }
  #RTsbs-1164 .cs-graphic2,
  #RTsbsr-1164 .cs-graphic2,
  #RTsbst-1164 .cs-graphic2 {
      width: 67.8125em;
      top: 11.5625em;
      right: -1.5625em;
  }
  #RTsbs-1164 .cs-box,
  #RTsbsr-1164 .cs-box,
  #RTsbst-1164 .cs-box {
      width: 12.3125em;
      height: 11.125em;
      padding: 0.5rem;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      background-color: var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      position: absolute;
      z-index: 20;
      left: 0;
      bottom: 0;
  }
  #RTsbs-1164 .cs-number,
  #RTsbsr-1164 .cs-number,
  #RTsbst-1164 .cs-number {
      /* 20px - 39px */
      font-size: clamp(1.25rem, 4vw, 2.4375rem);
      text-align: center;
      line-height: 1.2em;
      font-weight: 700;
      width: 100%;
      /* 4px - 8px */
      margin: 0 0 clamp(0.25rem, 1vw, 0.5rem);
      color: var(--bodyTextColorWhite);
      display: block;
  }
  #RTsbs-1164 .cs-desc,
  #RTsbsr-1164 .cs-desc,
  #RTsbst-1164 .cs-desc {
      /* 12px - 16px */
      font-size: clamp(0.75rem, 1.9vw, 1rem);
      text-align: center;
      line-height: 1.2em;
      font-weight: 700;
      width: 100%;
      max-width: 12ch;
      margin: 0;
      color: var(--bodyTextColorWhite);
      display: block;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #RTsbs-1164 .cs-container,
  #RTsbsr-1164 .cs-container,
  #RTsbst-1164 .cs-container {
      max-width: 80rem;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }
  #RTsbs-1164 .cs-image-group,
  #RTsbsr-1164 .cs-image-group,
  #RTsbst-1164 .cs-image-group {
      font-size: min(1.2vw, 1em);
      flex: none;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RTsbsr-1164 {
      background-color: #f7f7f7;
  }
  #RTsbsr-1164 .cs-picture1 {
      left: auto;
      right: 0;
  }
  #RTsbsr-1164 .cs-picture2 {
      right: auto;
      left: 0;
  }
  #RTsbsr-1164 .cs-graphic {
      height: auto;
      position: absolute;
  }
  #RTsbsr-1164 .cs-graphic1 {
      right: auto;
      left: -3.75em;
      transform: rotate(-165deg);
  }
  #RTsbsr-1164 .cs-graphic2 {
      right: auto;
      left: -1.5625em;
  }
  #RTsbsr-1164 .cs-box {
      left: auto;
      right: 0;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #RTsbsr-1164 .cs-image-group {
      /* sends it to the right in the 2nd positon */
      order: 2;
  }
}

                              