/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2171 {
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 31.95vw, 18.75rem) 1rem 6.25rem;
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
  }
  #sbs-2171 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #sbs-2171 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    /* moved section padding to cs-content so the cs-background can be full width */
    padding: var(--sectionPadding);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #sbs-2171 .cs-title {
    text-transform: none;
  }
  #sbs-2171 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2171 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-2171 .cs-bold {
    font-weight: 700;
  }
  #sbs-2171 .cs-flex {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-2171 .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #sbs-2171 .cs-picture {
    display: block;
    position: relative;
    width: 98%;
    left: -1rem;
    height: 25rem;
    z-index: 1;
  }
  #sbs-2171 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0rem 6.25rem 6.25rem 0rem;
  }
  #sbs-2171 .cs-floater {
    width: 24%;
    max-width: 18.4375rem;
    height: auto;
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2171 {
    /* 150px - 300px */
    padding-bottom: clamp(9.375rem, 22vw, 18.75rem);
  }
  #sbs-2171 .cs-container {
    flex-direction: row;
    justify-content: flex-end;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #sbs-2171 .cs-content {
    width: 48%;
    max-width: 35.1875rem;
    /* 32px - 90px */
    padding: clamp(2rem, 5vw, 5.625rem) 0;
  }
  #sbs-2171 .cs-graphic-top {
    width: 100%;
    height: auto;
    position: absolute;
    top: -160px;
    left: 0;
  }
  #sbs-2171 .cs-graphic-bottom {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -160px;
    left: 0;
  }
  #sbs-2171 .cs-picture {
    width: 50vw;
    height: auto;
    margin-right: 2.5rem;
    position: absolute;
    top: 0;
    left: auto;
    bottom: 0;
    right: 50%;
  }
  #sbs-2171 .cs-floater {
    display: block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-2171 {
    background-color: rgba(0, 0, 0, 0.4);
  }
  body.dark-mode #sbs-2171 .cs-title,
  body.dark-mode #sbs-2171 .cs-text,
  body.dark-mode #sbs-2171 .cs-h3,
  body.dark-mode #sbs-2171 .cs-li-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-2171 .cs-flex {
    color: #ebebeb;
  }
  body.dark-mode #sbs-2171 .cs-icon {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #sbs-2171 .cs-text {
    opacity: 0.8;
  }
}
