@-webkit-keyframes rotate-spin /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-spin {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate-spin {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.l-featured-news__box {
  position: relative;
  margin-bottom: 4.5rem;
}
@media (max-width: 991.98px) {
  .l-featured-news__box {
    margin-bottom: 3rem;
  }
}
.l-featured-news__row-container {
  position: relative;
}
.l-featured-news__text-container {
  background-color: #ffc500;
  padding: 30px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 991.98px) {
  .l-featured-news__text-container {
    padding: 3em 1em 1.5em 2.5em;
  }
}
@media (max-width: 767.98px) {
  .l-featured-news__text-container {
    padding: 2em;
    padding-bottom: 1.5em;
  }
}
.l-featured-news__image-container {
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.l-featured-news__image-container img {
  border-radius: 10px 10px 0 0;
}
.l-featured-news__title {
  font-family: "avenirblack", sans-serif;
  font-size: 1.75rem;
  color: #101820;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .l-featured-news__title {
    font-size: 1.5rem;
  }
}
.l-featured-news__description {
  color: #101820;
  font-family: "avenirbook", sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .l-featured-news__description {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  .l-featured-news__description {
    margin-bottom: 1.5rem;
  }
}
.l-featured-news__date {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  margin: 1rem auto;
}
.l-featured-news__next-btn, .l-featured-news__previous-btn {
  background: none;
  border: none;
}
@media (max-width: 575.98px) {
  .l-featured-news__next-btn, .l-featured-news__previous-btn {
    width: 25px;
  }
}
.l-featured-news__play-button {
  display: none;
  position: absolute;
  border: none;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -47%);
  background-color: transparent;
}
.l-featured-news__play-button:hover {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .l-featured-news__button-image {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575.98px) {
  .l-featured-news__button-image {
    width: 85px;
    height: 85px;
  }
}
.l-featured-news__separator {
  background-color: #ffc500;
  width: 100%;
  height: 1px;
  opacity: 1;
  border: none;
  margin-bottom: 3rem;
}
.l-featured-news__text-separator {
  border: none;
  height: 1px;
  width: 15%;
  opacity: 1;
  background-color: #fff;
}
.l-featured-news__location-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
