/* PAGE-SPECIFIC STYLES FOR THE ABOUT PAGE */
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
#about-hero {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  top: 100px;
  margin-bottom: 5vh;
  height: min(15vh, 20vw);
}
#about-hero picture {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}
#about-hero picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs {
    padding: var(--sectionPadding);
    margin: 0 auto;
  }
  #sbs .cs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    top: 500px;
    max-width: 1000px;
    margin: 0 auto;
    place-items: center;
  }
  #sbs .cs-container .cs-picture {
    position: relative;
    border-radius: 1.5em;
    /* clips img tag corners */
    overflow: hidden;
    object-fit: contain;
    max-height: 12rem;
  }
  #sbs .cs-container .cs-picture img {
    border-radius: 1.5em;
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes image act like a background image */
    object-fit: contain;
  }
  #sbs .cs-grid {
    place-items: center;
    position: relative;
    margin: auto;
  }
  #sbs .cs-topper {
    margin-bottom: 0.25rem;
    text-align: left;
  }
  #sbs .cs-text {
    margin-bottom: 1rem;
    max-width: 46.875rem;
    color: var(--bodyTextColor);
    text-align: left;
    font-size: clamp(11px, 1.8vw, 20px);
  }
  #sbs .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
}
