#in_the_news-filters {
  background-color: var(--dark-blue);
  padding: 60px 0;
}
@media (max-width: 768px) {
  #in_the_news-filters {
    padding: 40px 15px;
  }
}
#in_the_news-filters .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #in_the_news-filters .container {
    flex-direction: column;
    gap: 20px;
  }
}
#in_the_news-filters input, #in_the_news-filters select {
  font-size: 16px;
  padding: 15px 15px 15px 65px;
  outline: 0;
  border: 1px solid #fff;
  border-radius: 50px;
  background-color: transparent;
  color: #fff;
}
#in_the_news-filters input::placeholder, #in_the_news-filters select::placeholder {
  color: var(--white);
  opacity: 1;
}
#in_the_news-filters input:focus, #in_the_news-filters select:focus {
  border-color: #80BDC8;
}
#in_the_news-filters input {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='20' viewBox='0 0 24 24' fill='none' stroke='%2380BDC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cline x1='7.8' y1='15.8' x2='3.5' y2='20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 20px;
  background-position: 30px center;
}
#in_the_news-filters select {
  padding: 15px 100px 15px 25px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 20 12' fill='none' stroke='%2380BDC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3 3 10 9 17 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px 10px;
}

.hero-in_the_news {
  padding: 0;
  background-color: var(--dark-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.hero-in_the_news picture {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-in_the_news picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center center;
}
.hero-in_the_news .container {
  z-index: 1;
}
.hero-in_the_news__title {
  font-size: 50px;
  font-weight: 400;
  font-family: var(--heading-font);
  color: var(--white);
  margin: 0 0 30px 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero-in_the_news__subtitle {
  font-size: 34px;
  font-weight: 400;
  font-family: var(--heading-font);
  color: var(--white);
  margin: 10px 0 0 0;
  text-align: center;
  line-height: 1.5;
}
.hero-in_the_news__cta {
  text-align: center;
  margin-top: 30px;
}

.in_the_news {
  background-color: var(--dark-blue);
  padding: 0 15px;
}
.in_the_news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media (max-width: 992px) {
  .in_the_news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .in_the_news-grid {
    grid-template-columns: 1fr;
  }
}
.in_the_news-pagination {
  padding: 40px 0 70px 0;
  color: #fff;
  text-align: center;
}
.in_the_news-pagination .current {
  color: #80BDC8;
}
.in_the_news-pagination a {
  color: var(--white);
  font-size: 16px;
  margin-right: 10px;
}
.in_the_news-pagination a:last-child {
  margin-right: 0;
}
.in_the_news__logos {
  padding: 25px 0;
}
.in_the_news__logos .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.in_the_news__logos__item {
  text-align: center;
  padding: 0 15px;
}
.in_the_news__logos__item img {
  margin: 0 auto;
}
.in_the_news .in_the_news-item {
  display: flex;
  background-color: var(--white);
  padding: 40px 25px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.in_the_news .in_the_news-item__thumbnail {
  border-bottom: 1px solid var(--light-grey-blue);
  width: 100%;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 35px;
  min-height: 100px;
  max-height: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in_the_news .in_the_news-item__thumbnail img {
  max-height: 80px;
}
.in_the_news .in_the_news-item__title {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--heading-font);
  color: var(--black);
  line-height: 2;
  margin: 0 0 25px 0;
  text-align: center;
}
.in_the_news .in_the_news-item__date {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.in_the_news .in_the_news-item__cta {
  text-align: center;
}
.in_the_news__button {
  background-color: var(--red);
  text-align: center;
  padding: 10px 25px;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--heading-font);
  border-radius: 5px;
  font-size: 20px;
}
.in_the_news__button:hover {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
}
