@-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-last-news__box {
  margin-bottom: 3rem;
}
@media (max-width: 991.98px) {
  .l-last-news__box {
    margin-bottom: 0rem;
  }
}
.l-last-news__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 1rem;
}
.l-last-news__text-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 991.98px) {
  .l-last-news__text-container {
    width: 100%;
  }
}
.l-last-news__title {
  color: #494949;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin: 2.5rem auto 1.5rem;
}
@media (max-width: 991.98px) {
  .l-last-news__title {
    margin: 1.5rem auto 1.5rem;
  }
}
.l-last-news__image {
  border-radius: 20px 20px 20px 10px;
}
@media (max-width: 991.98px) {
  .l-last-news__image {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767.98px) {
  .l-last-news__image {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575.98px) {
  .l-last-news__image {
    width: 70px;
    height: 70px;
  }
}
.l-last-news__news-title {
  color: #4a4a4a;
  font-size: 0.75rem;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
@media (max-width: 991.98px) {
  .l-last-news__news-title {
    font-size: 1rem;
  }
}
.l-last-news__news-date {
  color: #888;
  font-size: 0.7rem;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 991.98px) {
  .l-last-news__news-date {
    font-size: 0.9rem;
  }
}
