footer {
  background-color: var(--footer-navy);
}

.footer-container {
  padding: 5rem 5rem 0 5rem;
}

.footer-container > .top {
  align-items: stretch;
}

.footer-container > .top .right {
  width: 30%;
  color: var(--white);
  gap: 1rem;
}

.footer-container > .top .right i {
  font-size: 2rem;
  color: var(--white);
}

.footer-container > .top .right i:hover {
  color: var(--gold);
}

.footer-container > .top .center {
  width: 10%;
}

.footer-container > .top .center img {
  width: 100%;
}

.footer-container > .top .left {
  width: 30%;
}

.footer-container > .top .left a {
  width: 100%;
  display: flex;
  justify-content: end;
}

.footer-container > .top .left a img {
  width: 100px;
}

/* ------------------------------ */
.application {
  width: var(100% - 1rem);
  padding: 0.5rem;
  margin-top: 1rem;
  border-radius: 5rem;
  background-color: var(--white);
}

.application > .right {
  gap: 0.5rem;
}

.application > .right .logo {
  height: 30px;
}

.application img {
  height: 100%;
}

.application .buttons {
  gap: 1rem;
}

.application .buttons > div {
  padding: 0.3rem 1rem;
  border-radius: 5rem;
  gap: 1rem;
  border: 1px solid var(--footer-navy);
  color: var(--footer-navy);
}

.footer-container hr {
  margin: 0.5rem 0;
  width: 100%;
}

.copy-right {
  padding-bottom: 0.5rem;
  color: var(--white);
}

@media screen and (max-width: 1200px) {
  .footer-container > .top .right {
    width: 35%;
  }
  .footer-container > .top .right .top span {
    font-size: 0.9rem;
  }

  .footer-container > .top .right i {
    font-size: 1.5rem;
  }

  .footer-container > .top .center {
    width: 20%;
  }

  .footer-container > .top .left {
    width: 35%;
  }
}

@media screen and (max-width: 992px) {
  .footer-container {
    padding: 2rem 2rem 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .footer-container > .top {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-container > .top .right {
    width: 100%;
    align-items: center;
  }

  .footer-container > .top .right > .top {
    text-align: center;
  }

  .footer-container > .top .right i {
    font-size: 2rem;
  }

  .footer-container > .top .center {
    width: 40%;
  }

  .copy-right {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 650px) {
  .application {
    flex-direction: column;
    gap: 1rem;
    border-radius: 0.5rem;
    padding: 1rem 0;
  }
}
