/* PAGE-SPECIFIC STYLES FOR THE REVIEWS PAGE */
/*-- -------------------------- -->
<---        border box          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #int-hero .cs-button-nav-transparent {
    display: flex;
    max-width: 10rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  #int-hero p {
    max-width: 40rem;
  }
}
@media only screen and (min-width: 64rem) {
  #int-hero .cs-button-nav-transparent {
    margin-bottom: 0rem;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RPsbs-580 .cs-container,
  #RPsbsr-580 .cs-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 7vw, 4rem);
  }
  #RPsbs-580 .cs-text a,
  #RPsbsr-580 .cs-text a {
    text-decoration: none;
    color: var(--bodyTextColor);
    font-weight: 500;
  }
  #RPsbs-580 .cs-content,
  #RPsbsr-580 .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 the .cs-content so we can have the cs-picture be full width on mobile without the padding preventing it from doing so */
    padding: var(--sectionPadding);
    padding-top: 0;
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #RPsbs-580 .cs-text,
  #RPsbsr-580 .cs-text {
    margin-bottom: 1rem;
  }
  #RPsbs-580 .cs-text:last-of-type,
  #RPsbsr-580 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #RPsbs-580 .cs-list,
  #RPsbsr-580 .cs-list {
    max-width: 39.375rem;
    margin: 0 0 2rem 0;
    padding: 0;
    /* clips the bullets to create the half circle */
    overflow: hidden;
  }
  #RPsbs-580 .cs-li,
  #RPsbsr-580 .cs-li {
    list-style: none;
    margin: 0 0 0.5rem 0;
    color: var(--bodyTextColor);
    font-weight: 300;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
  }
  #RPsbs-580 .cs-li:before,
  #RPsbsr-580 .cs-li:before {
    /* bullet */
    content: "";
    width: 1rem;
    height: 1rem;
    margin-top: 0.1875rem;
    /* make it overflow the parent by half it's width to make an eclipse */
    margin-left: -0.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #RPsbs-580 .cs-link,
  #RPsbsr-580 .cs-link {
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    position: relative;
  }
  #RPsbs-580 .cs-picture,
  #RPsbsr-580 .cs-picture {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 47vw;
    display: block;
    position: relative;
    height: 10rem;
    margin-top: 2rem;
  }
  #RPsbs-580 .cs-picture img,
  #RPsbsr-580 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 2rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #RPsbs-580,
  #RPsbsr-580 {
    padding: var(--sectionPadding);
  }
  #RPsbs-580 .cs-container,
  #RPsbsr-580 .cs-container {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 70rem;
    /* 60px - 128px */
  }
  #RPsbs-580 .cs-content,
  #RPsbsr-580 .cs-content {
    max-width: 70rem;
    /* reset the padding, add the section padding back to the section container */
    padding: 0;
  }
  #RPsbs-580 .cs-picture,
  #RPsbsr-580 .cs-picture {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 47vw;
    top: 0;
    margin: 0;
    height: 20rem;
    /* 518px - 700px */
    /* 16px - 28px, added margin left and bottom to cs-picture so it pushes away by the same amount the yellow box element overlaps it left and bottom. This maintains consistent spacing left and bottom */
  }
  #RPsbs-580 .cs-picture img,
  #RPsbsr-580 .cs-picture img {
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 3rem;
  }
}
/*-- -------------------------- -->
<---  Side By Side other color  -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #RPsbsr-580 {
    background-color: #f7f7f7;
  }
}
