.footer-container {
  width: 100%;
  height: 48vh;
  padding: 2% 10%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #02256b;
}

.second-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-container {
  flex: 0.2;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.footer-logo {
  width: 70%;
  vertical-align: middle;
}

.contact-label {
  text-decoration: none;
  color: #ffca56;
}

.contact-label span {
  color: #fff;
  opacity: 50%;
}

.contact-label span a {
  text-decoration: none;
  color: #fff;
}

.container-title {
  color: #ffca56;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.styled-link {
  text-decoration: none;
  color: #fff;
  opacity: 75%;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    height: 100%;
  }
  .second-container {
    flex-direction: column;
  }
  .links-container {
    width: 100%;
  }
}
