/*FOOTER */
footer * {
  z-index: 3;
  position: relative;
}

footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
}

footer::before {
  content: "";
  background-image: linear-gradient(
    to right,
    rgba(21, 83, 154, 0.9),
    60%,
    rgba(21, 83, 154, 0.22)
  );
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 100%;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer li {
  padding-bottom: 12px;
}

footer a{
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;

}

.footer-container{
  margin: 0;
  padding: 2.8rem 3.75rem 1rem 3.75rem;
  width:100%;
}

/*FOOTER SEARCH*/
.footer-search {
  --color: #fff;
  margin-left: 30px;
  margin-top: 40px;
}

.footer-search.search-box{
  margin: 0;
  padding: 1.75rem 0rem 0rem 0rem;
}

.footer-search input {
  font-size: 1.2rem;
}

.footer-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-search svg {
  width: 1rem;
}

.footer-search.search-box input {
  width: 270px;
}

/*FOOTER SECTIONS*/
.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px, 1fr));
  grid-template-rows: 1fr;
  padding-top: 5.9rem;
}

.footer-sections :last-child p {
  margin: 0;
  font-size: 1.7rem;
  font-family: "Quicksand Light";
  color: rgb(255, 255, 255);
}

.footer-sections > :first-child img {
  height: 95px;
}

/*FOOTER LOGO*/
.footer-logo{
  display: flex;
  justify-content: flex-start;

}

/*FOOTER SOCIAL*/
.footer-social {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: flex-end;
}

.footer-social a {
  padding: 0;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  height: 30px;
}

.footer-button-24k {
  height: 30px;
  background-color: #DDA654;
  border: 0;
  border-radius: 8px;
  color: white;
  width: 80px;
  min-width: 80px;
  display: flex;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
}

.footer-social-media-icon {
  height: 30px;
  margin: 0;
  padding: 0;
}
/*FOOTER COPYRIGHT*/
.footer-copyright{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.footer-copyright a {
  font-size: 1.7rem;
}

/*FOOTER MEDIA QUERIES*/
@media (max-width: 1080px) {
  .footer-sections > :first-child img {
    height: 75px;
    margin-left: -10px;
  }
  .footer-sections{
    padding-top: 4rem;
    gap: 1.5rem;
  }
  .footer-logo{
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-copyright{
    justify-content: center;
  }
}

