@charset "UTF-8";
/*=============================================================================*
  testimonials block
*==============================================================================*/
/*=============================================================================*
  VARIABLES
*==============================================================================*/
:root {
  --wrapper-align-default: min(calc(100vw - (2 * 1rem)), 950px);
  --wrapper-align-wide: min(calc(100vw - (2 * 1rem)), 1180px);
  --wrapper-align-full: 100%;
}

body .c-testimonials-wrap {
  display: none;
}

.c-testimonials-wrap.slick-initialized {
  display: block;
}

body .c-testimonials-wrap .slick-track {
  display: flex;
  align-items: center;
}

.c-testimonials .slick-slide {
  height: 0px !important;
}
.c-testimonials .slick-slide.slick-active {
  height: 100% !important;
}

.c-testimonials-item {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.c-testimonials-item {
  position: relative;
  padding: 10px 40px;
}
@media (min-width: 842px) {
  .c-testimonials-item {
    padding: 20px 90px;
  }
}
.c-testimonials-item::before {
  content: "";
  background: url("quote.png") no-repeat 0 0;
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
  position: absolute;
  top: 0;
  left: 10px;
}
@media (min-width: 842px) {
  .c-testimonials-item::before {
    background-size: 70px 70px;
    height: 70px;
    width: 70px;
  }
}
.c-testimonials-item::after {
  content: "";
  background: url("quote.png") no-repeat 0 0;
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
  position: absolute;
  right: 15px;
  bottom: 10px;
  transform: rotate(180deg);
}
@media (min-width: 842px) {
  .c-testimonials-item::after {
    background-size: 70px 70px;
    height: 70px;
    width: 70px;
  }
}

.c-testimonials-item .content {
  color: var(--wp--preset--color--blue-500);
  font-size: 22px;
  text-align: center;
}
@media (min-width: 712px) {
  .c-testimonials-item .content {
    padding: 0 8px;
  }
}
@media (min-width: 1024px) {
  .c-testimonials-item .content {
    font-size: 30px;
    padding: 0 21px;
    text-align: left;
  }
}
.c-testimonials-item .author {
  color: var(--wp--preset--color--blue-300);
  font-size: 24px;
  text-align: center;
  margin-top: 52px;
  padding-right: 40px;
}
.c-testimonials-item .author::before {
  content: "—";
  position: relative;
  padding-right: 8px;
}

.c-testimonials-wrap .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
.c-testimonials-wrap .slick-dots li {
  margin: 0 0.25rem;
}
.c-testimonials-wrap .slick-dots button {
  display: block;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: var(--wp--preset--color--blue-500);
  text-indent: -9999px;
}
.c-testimonials-wrap .slick-dots li.slick-active button {
  background-color: var(--wp--preset--color--blue-300);
}
