/* Variables
Variables that the other CSS sections depend upon
*/
{% include '../../css/variables/_colors.css' %}

.bs-blockquote-slider {
  height: 100vh;
  padding-top: 97px;
  padding-bottom: 40px;
  margin-bottom: 200px;
}

@media (max-width: 991px) {
  .bs-blockquote-slider {
    height: auto;
    margin-bottom: 75px;
  }
}


.bs-blockquote-slider__inner {
  height: 100%;
}

@media (max-width: 991px) {
  .bs-blockquote-slider__inner {
    height: 500px;
  }
}

.bs-blockquote-slider .slick-list,
.bs-blockquote-slider .slick-track {
  height: 100%;
}

.bs-blockquote-slider .slick-list {
  margin: 0 -12px;
}

.bs-blockquote-slider__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 0 12px;
}

.bs-blockquote-slider__slide::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  content: '';
  z-index: 1;
}

.bs-blockquote-slider__slide__text {
  max-width: 1650px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}

.bs-blockquote-slider__slide__text p {
  font-size: 60px;
  color: #000;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;  
  line-height: 1.2em;
}

@media (max-width: 991px) {
  .bs-blockquote-slider__slide__text p {
    text-shadow: none;
    color: #fff;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .bs-blockquote-slider__slide__text p {
    font-size: 24px;
  }
}

.bs-blockquote-slider__slide__attribution {
  color: #fff;
  /* padding-left: 20px; */
  position: relative;
}

/* .bs-blockquote-slider__slide__attribution::before {
  height: 7px;
  width: 7px;
  border-radius: 9999em;
  background-color: #fff;
  position: absolute;
  content: '';
  top: 12px;
  left: 0;
} */

.bs-blockquote-slider__slide__attribution span {
  display: block;
  letter-spacing: 0.01em;
  line-height: 1.167em;
}

.bs-blockquote-slider__slide__attribution__source {
  font-size: 24px;
  font-weight: 500;
}

.bs-blockquote-slider__slide__attribution__source-subtitle {
  font-size: 24px;
}

.bs-blockquote-slider .slick-dots {
  padding: 0;
  list-style-type: none;
  text-align: center;
  margin-bottom: 0;
  margin-top: 5px;
}

.bs-blockquote-slider .slick-dots li {
  font-size: 0;
  height: 3px;
  width: 16px;
  display: inline-block;
  margin: 0 3px;
}

.bs-blockquote-slider .slick-dots li button {
  height: 3px;
  width: 16px;
  border-radius: 0;
  font-size: 0 !important;
  padding: 0;
  border: none !important;
  background-color: rgba(16, 74, 223, 0.2);
  transition: background-color 0.25s ease;
}

.bs-blockquote-slider .slick-dots li.slick-active button,
.bs-blockquote-slider .slick-dots li button:hover {
  background-color: #104ADF;
}