@charset "UTF-8";
/* CSS Document */

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1461 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  #sbs-1461 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 2;
  }

  #sbs-1461 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #sbs-1461 .cs-title {
    color: var(--bodyTextColorWhite);
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  #sbs-1461 .cs-text {
    margin-bottom: 1.25rem;
    color: var(--bodyTextColorWhite);
    opacity: 1;
    font-size: 1.1rem;
    line-height: 1.6em;
    font-size: clamp(1rem, 2vw, 1.25rem);
  }

  #sbs-1461 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #sbs-1461 .cs-ul {
    width: 100%;
    margin: 0 0 2rem 0;
    padding-left: 1.25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  #sbs-1461 .cs-li {
    font-size: 1.05rem;
    line-height: 1.6em;
    list-style: none;
    width: 100%;
    max-width: 28rem;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.85;
    position: relative;
  }

  #sbs-1461 .cs-li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    position: absolute;
    top: 0.6rem;
    left: -0.9375rem;
  }

  #sbs-1461 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--secondary);
    border-radius: 999px;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
  }

  #sbs-1461 .cs-button-solid:hover {
    background-color: var(--secondaryLight);
  }

  #sbs-1461 .cs-image-group {
    width: 100%;
    max-width: 24rem;
    height: 24rem;
    position: relative;
    margin-top: 0;
  }

  #sbs-1461 .cs-picture {
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

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

  #sbs-1461 .cs-picture1 {
    width: 100%;
    height: 100%;
  }

  #sbs-1461 .cs-picture2 {
    display: none;
  }

  #sbs-1461 .cs-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
  }

  #sbs-1461 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }

  #sbs-1461 .cs-background:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-1461 .cs-container {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5rem;
  }

  #sbs-1461 .cs-image-group {
    width: 30%;
    max-width: 22rem;
    height: 22rem;
    flex: none;
    margin-top: 0.5rem;
  }

  #sbs-1461 .cs-content {
    width: 70%;
    max-width: 52rem;
    padding: 2rem 0;
    flex: none;
    align-self: flex-start;
  }

  #sbs-1461 .cs-picture1 {
    width: 100%;
    height: 100%;
    position: relative;
    left: auto;
    top: auto;
  }

  #sbs-1461 .cs-picture2 {
    display: none;
  }
}