/**
 * Media Queries
 */
/**
 * Colors
 */
/**
 * Fonts
 */
/**
 * Fade Down Animation
 */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.spotlight {
  padding: 40px 0px;
  position: relative;
}
@media only screen and (max-width: 979px) {
  .spotlight {
    padding: 40px;
  }
}
@media only screen and (max-width: 782px) {
  .spotlight {
    padding: 40px 0;
  }
}
.spotlight .spotlight-items.slick .slick-list {
  overflow: hidden;
}
.spotlight .spotlight-items.slick .slick-track {
  display: flex;
  align-items: stretch;
}
.spotlight .spotlight-items.slick .slick-slide {
  height: auto;
}
.spotlight .spotlight-items.slick .slick-slide > div,
.spotlight .spotlight-items.slick .slick-slide .spotlight-item {
  height: 100%;
}
.spotlight .spotlight-items.slick .slick-arrow {
  position: absolute;
  background: transparent;
  border: none;
  padding: none;
  z-index: 4;
  cursor: pointer;
}
.spotlight .spotlight-items.slick .slick-arrow svg {
  fill: #B5C734;
  width: 80px;
  height: 80px;
}
.spotlight .spotlight-items.slick .slick-arrow:hover svg {
  fill: #909f29;
}
.spotlight .spotlight-items.slick .slick-arrow {
  top: calc(100% - 80px);
  left: calc(50% - 80px);
}
.spotlight .spotlight-items.slick .slick-arrow.slick-next {
  left: 50%;
}
.spotlight .spotlight-items.slick .slick-arrow svg {
  height: 80px;
  width: 80px;
}
@media only screen and (max-width: 782px) {
  .spotlight .spotlight-items.slick .slick-arrow {
    top: calc(100% - 50px);
    left: calc(50% - 50px);
  }
  .spotlight .spotlight-items.slick .slick-arrow.slick-next {
    left: 50%;
  }
  .spotlight .spotlight-items.slick .slick-arrow svg {
    height: 50px;
    width: 50px;
  }
}
.spotlight .spotlight-item {
  height: 100%;
}
.spotlight .quote-text-img-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0px;
}
@media only screen and (max-width: 979px) {
  .spotlight .quote-text-img-wrap {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 50px 0 0 0;
  }
}
.spotlight .title-quote-text-wrap {
  flex-grow: 1;
  width: 50%;
  padding-right: 30px;
}
@media only screen and (max-width: 979px) {
  .spotlight .title-quote-text-wrap {
    width: 100%;
  }
}
.spotlight .quote-text {
  color: #707070;
  font-family: "robotomono", sans-serif;
  font-size: 24px;
  line-height: 2;
  padding: 50px 100px 0px 150px;
  position: relative;
}
@media only screen and (max-width: 782px) {
  .spotlight .quote-text {
    font-size: 20px;
    padding: 60px 0;
  }
}
.spotlight .quote-text:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  background: url('../../img/quote.svg') no-repeat;
}
@media only screen and (max-width: 782px) {
  .spotlight .quote-text:before {
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
  }
}
.spotlight.bg-green .quote-text,
.spotlight.bg-heavy-green .quote-text {
  color: #ffffff;
}
.spotlight .img-wrap {
  flex-shrink: 0;
}
@media only screen and (max-width: 979px) {
  .spotlight .img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
}
.spotlight .img-wrap img {
  max-width: 450px;
}
@media only screen and (max-width: 979px) {
  .spotlight .img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
  }
}
