/* Footer */
.element-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 127px;
  background: linear-gradient(
    180deg,
    rgba(37, 147, 209, 1) 0%,
    rgba(0, 102, 159, 1) 100%
  );
  border-top: 1px solid #ffffff;
}
.footer-container {
  width: 82%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  margin: 0;
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 21.3px;
}
.footer-links {
  display: flex;
  gap: 49.33px;
}
.footer-link {
  font-family: "Poppins", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 21.3px;
  white-space: nowrap;
  position: relative;
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.footer-link:hover::after {
  width: 100%;
  transform: scaleX(1);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 28px;
}
.social-icons a:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.social-icons img {
  height: 46px;
}

@media screen and (max-width: 1440px) {
  .footer-container {
    width: 90%;
  }
}

@media screen and (max-width: 1280px) {
  .footer-container {
    width: 95%;
  }
}
@media screen and (max-width: 1080px) {
  .footer-links {
    gap: 28px;
  }
  .social-icons {
    gap: 20px;
  }
  .social-icons img {
    height: 35px;
  }
  .footer-link {
    font-size: 18px;
  }
  .copyright {
    font-size: 18px;
  }
  /* Footer */
  .element-footer {
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .element-footer {
    height: auto;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }
  .copyright {
    order: 3;
  }
}
