/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-712 {
    padding: 0 1rem;
    padding-top: clamp(9rem, 25vw, 12.5rem);
    padding-bottom: clamp(6.25rem, 14vw, 10rem);
    position: relative;
    z-index: 1;
  }
  #banner-712 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #banner-712 .cs-int-title {
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
    color: #fff;
    position: relative;
  }
  #banner-712 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #banner-712 .cs-background:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-712 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-399 {
    padding: var(--sectionPadding);
  }
  #reviews-399 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #reviews-399 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #reviews-399 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  #reviews-399 .cs-item {
    list-style: none;
    width: 100%;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
  }
  #reviews-399 .cs-icon {
    width: 2.5rem;
    height: auto;
  }
  #reviews-399 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #reviews-399 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #reviews-399 .cs-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin-top: auto;
    color: var(--headerColor);
    display: block;
  }
  #reviews-399 .cs-location {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    display: block;
  }
  #reviews-399 .cs-button-solid {
    margin-top: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-399 .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #reviews-399 .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-399 .cs-item {
    background-color: var(--medium);
  }
  body.dark-mode #reviews-399 .cs-h3,
  body.dark-mode #reviews-399 .cs-name {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-399 .cs-item-text,
  body.dark-mode #reviews-399 .cs-location {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
}
