@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scaling {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
    color: #FBB911;
  }
}
.rotating {
  animation: rotating 2s linear infinite;
}

h1 {
  font-family: "Raleway";
  color: #4A541F;
  text-transform: uppercase;
  font-size: 2.8125rem;
  font-weight: 900;
}

.nb {
  font-family: "above-the-beyond";
  font-size: 2.5rem;
  color: #FBB911;
  line-height: 1;
  padding-bottom: 1.5625rem;
  margin-bottom: 0;
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1875rem;
  list-style-type: none;
  margin-top: 3.4375rem;
  padding: 0;
}
.results__el {
  align-items: end;
  border-radius: 20px;
  display: flex;
  flex: 0 0 31%;
  height: 21.875rem;
  padding: 2.1875rem;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .results__el {
    flex: 0 0 30%;
  }
}
@media (max-width: 992px) {
  .results__el {
    flex: 0 0 47%;
  }
}
@media (max-width: 767px) {
  .results__el {
    flex: 0 0 100%;
    height: 15.625rem;
  }
}
.results__el img {
  border-radius: 20px;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.results__el-content {
  color: #fff;
  position: relative;
  z-index: 1;
}
.results__el-content .date {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.875rem;
}
.results__el-content .badge {
  background-color: #FBB911;
  border-radius: 6.25rem;
  color: #4A541F;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  margin-top: 0.625rem;
}
.results__el::after {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  inset: 0;
}

form.search-form {
  text-align: center;
  width: 100%;
  max-width: 41.25rem;
  margin: 1.875rem auto 0;
}
form.search-form p {
  text-align: left;
  font-family: "above-the-beyond";
  font-size: 1.875rem;
  color: #4A541F;
  margin-bottom: 1.5rem;
}
form.search-form div.search-field {
  position: relative;
}
form.search-form div.search-field svg {
  position: absolute;
  right: 5px;
  bottom: 15px;
  color: #FBB911;
}
form.search-form input {
  appearance: none;
  outline: none;
  border: none;
}
form.search-form input[type=search] {
  background-color: transparent;
  border-bottom: 1px solid #FBB911;
  color: #4A541F;
  font-size: 1rem;
  height: 3.125rem;
  padding: 0.5rem 2.25rem 0.5rem 0.3125rem;
  width: 100%;
}
form.search-form input[type=search]::placeholder {
  opacity: 0.5;
}
form.search-form input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  border-radius: 50em;
  background: url(https://pro.fontawesome.com/releases/v5.10.0/svgs/solid/times-circle.svg) no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}
form.search-form input[type=search]:focus::-webkit-search-cancel-button {
  opacity: 0.3;
  pointer-events: all;
}
form.search-form input[type=submit] {
  background-color: #FBB911;
  color: #4A541F;
  border-radius: 6.25rem;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  margin-top: 1.875rem;
  padding: 1.25rem 1.875rem;
}
form.search-form input[type=submit]:hover {
  background-color: #4A541F;
  color: white;
}

.pagination {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3.125rem;
}
.pagination .current {
  color: #FBB911;
  font-weight: 800;
}
.pagination a {
  color: #4A541F;
  text-decoration: none;
}
.pagination a:hover {
  color: #FBB911;
}
.pagination .page-numbers {
  line-height: 1;
}
.pagination .page-numbers:not(.next, .prev) {
  font-size: 1.5rem;
  font-weight: 600;
}
.pagination .page-numbers:is(.next, .prev) {
  height: 1.5rem;
  text-indent: -99999px;
  position: relative;
  width: 1.5rem;
}
.pagination .page-numbers:is(.next, .prev):hover:before {
  color: #4A541F;
}
.pagination .page-numbers:is(.next, .prev):before {
  content: "\e907";
  color: #FBB911;
  font-family: "icomoon";
  font-size: 1.5rem;
  inset: 0;
  position: absolute;
  text-indent: 0;
}
.pagination .page-numbers.prev::before {
  transform: rotate(90deg);
}
.pagination .page-numbers.next::before {
  transform: rotate(-90deg);
}

/*# sourceMappingURL=search.min.css.map */
