
body {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}


                  /*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-211 {
      padding: var(--sectionPadding);
  }
  #reviews-211 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet*/
      max-width: 34.375rem;
      margin: auto;
  }
  #reviews-211 .cs-picture {
      width: 100%;
      /* 200px - 304px */
      height: clamp(12.5rem, 23.45vw, 19rem);
      display: block;
      position: relative;
  }
  #reviews-211 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
  }
  #reviews-211 .cs-card {
      max-width: 39.375rem;
  }
  #reviews-211 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      /* Padding top & bottom 40px - 80px */
      /* Padding left & right 32px - 72px */
      padding: clamp(2.5rem, 5.8vw, 5rem) clamp(2rem, 5.8vw, 4.5rem);
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      background: var(--primary);
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
  }

  #reviews-211 .cs-title,
  #reviews-211 .cs-topper {
      color: var(--bodyTextColorWhite);
  }
  #reviews-211 .cs-text {
      color: var(--bodyTextColorWhite);
      margin-bottom: 1rem;
  }
  #reviews-211 .cs-text:last-of-type {
      margin-bottom: 2rem;
  }
  #reviews-211 .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);
      border-radius: 0.25rem;
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
  }
  #reviews-211 .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
  }
  #reviews-211 .cs-button-solid:hover:before {
      width: 100%;
  }
  #reviews-211 .cs-button-solid {
      /* button styles override */
      background-color: #fff;
      color: var(--primary);
  }
  #reviews-211 .cs-review {
      /* padding left & right 32px - 80px */
      padding: 2.5rem clamp(2rem, 6vw, 5rem);
      box-shadow: -1px 21px 39px 0px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  #reviews-211 .cs-review-img {
      width: 7rem;
      height: 1.25rem;
      display: block;
      /* margin-bottom 8px - 12px */
      margin: 0 auto clamp(0.5rem, 2vw, 0.75rem);
  }
  #reviews-211 .cs-review-title {
      /* 25px - 31px */
      font-size: clamp(1.5625rem, 3.1vw, 1.9375rem);
      line-height: 1.2em;
      text-align: center;
      font-weight: bold;
      /* margin-bottom 24px - 32px */
      margin: 0 auto clamp(1.5rem, 4.2vw, 2rem);
      color: var(--headerColor);
      display: block;
  }
  #reviews-211 .cs-review-p {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      line-height: 1.5em;
      text-align: center;
      max-width: 27.125rem;
      /* margin-bottom 24px - 32px */
      margin: 0 auto clamp(1.5rem, 4.2vw, 2rem);
      color: var(--bodyTextColor);
  }
  #reviews-211 .cs-review-name {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      line-height: 1.5em;
      text-align: center;
      margin: 0;
      display: block;
      color: var(--headerColor);
      font-weight: 700;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-211 .cs-container {
      max-width: 80rem;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: -1px 21px 39px 0px rgba(0, 0, 0, 0.06);
  }
  #reviews-211 .cs-card {
      /* prevents it from being squished by flexbox */
      flex: none;
      width: 44.8vw;
  }
  #reviews-211 .cs-review {
      box-shadow: none;
      width: 50%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-211 {
    background-color: rgba(0, 0, 0, 0.2);
  }

  body.dark-mode #reviews-211 .cs-container {
    background-color: #222;
  }

  body.dark-mode #reviews-211 .cs-content {
    background-color: #333;
  }

  body.dark-mode #reviews-211 .cs-title,
  body.dark-mode #reviews-211 .cs-topper,
  body.dark-mode #reviews-211 .cs-review-title,
  body.dark-mode #reviews-211 .cs-review-name {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #reviews-211 .cs-text,
  body.dark-mode #reviews-211 .cs-review-p {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }

  body.dark-mode #reviews-211 .cs-review {
    background-color: #2a2a2a;
    box-shadow: -1px 21px 39px 0px rgba(255, 255, 255, 0.1);
  }

  body.dark-mode #reviews-211 .cs-picture img {
    filter: brightness(0.8);
  }

  body.dark-mode #reviews-211 .cs-button-solid {
    background-color: var(--primary);
    color: #f1f1f1;
  }
}

       


/*-- -------------------------- -->
<---           Reviews          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #reviews {
    padding-top: 7.5rem;
    padding-bottom: 3.125rem;
    margin: auto;
  }
  #reviews .container {
    width: 96%;
    max-width: 82.5rem;
  }
  #reviews .review {
    padding: 4rem 1.875rem 1.125rem 1.875rem;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 25.625rem;
    margin: auto;
    margin-bottom: 6.25rem;
    border-radius: 0.3125rem;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
  }
  #reviews .review:last-of-type {
    margin-bottom: 0;
  }
  #reviews .review .profile {
    display: block;
    height: 6.1875rem;
    width: 6.1875rem;
    margin-left: 0;
    border-radius: 50%;
    margin-bottom: 1rem;
    position: absolute;
    left: 1.875rem;
    top: -3.1875rem;
  }
  #reviews .review p {
    line-height: 1.33333333;
    margin-bottom: 1.75rem;
    text-align: left;
  }
  #reviews .review .star-group {
    border-top: 1px solid #E7E7E7;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: auto;
  }
  #reviews .review .star-group .name {
    color: #1A1A1A;
    line-height: 1.5rem;
    text-align: left;
    font-weight: bold;
    display: block;
  }
  #reviews .review .star-group .desc {
    color: #575757;
    font-weight: 400;
    display: block;
  }
  #reviews .review .star-group img {
    display: block;
    width: 5.6875rem;
    height: 0.9375rem;
    margin: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #reviews {
    padding-top: 9.375rem;
    padding-bottom: 3.125rem;
  }
  #reviews .container {
    font-size: min(1.4vw, 1em);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    column-gap: 1.875rem;
  }
  #reviews .review {
    margin: 0;
    margin-bottom: 9.375rem;
  }
  #reviews .review:last-of-type {
    margin-bottom: 9.375rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #reviews {
    background-color: rgba(0, 0, 0, 0.2);
  }

  body.dark-mode #reviews .cs-title {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #reviews .review {
    background-color: #2a2a2a;
    box-shadow: 0px 20px 40px rgba(255, 255, 255, 0.1);
  }

  body.dark-mode #reviews .review .profile {
    filter: brightness(0.8);
  }

  body.dark-mode #reviews .review p {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #reviews .review .star-group {
    border-top: 1px solid #444;
  }

  body.dark-mode #reviews .review .star-group .name {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #reviews .review .star-group .desc {
    color: #bbb;
  }

  body.dark-mode #reviews .review .star-group img {
    filter: brightness(0.8);
  }
}

/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #cta {
    position: relative;
    padding: 3.125rem 0;
  }
  #cta:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta .container {
    text-align: center;
  }
  #cta picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
  }
  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta .title {
    font-weight: 900;
    font-size: min(9vw, 3rem);
    line-height: 1.20833333;
    color: #fff;
    position: relative;
    margin-bottom: 2.25rem;
    text-align: center;
  }
  #cta p {
    color: #fff;
    text-align: center;
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    width: 96%;
    max-width: 37.375rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #cta {
    padding: 10.5rem 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    content: '';
    position: absolute;
    display: block;
    height: 69.25rem;
    width: 125rem;
    background: url("/assets/svgs/cta-squares.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;
  }
  #cta .container {
    width: 90.0625%;
    margin: auto;
  }
  #cta picture {
    width: 90.0625%;
    left: 50%;
    transform: translateX(-50%);
  }
  #cta picture:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #cta:after {
    display: none;
  }
}
