.vertical-line {
  width: 1px;
  height: auto;
  background-color: #FFF;
}

.footer {
  background: #143b7e;
  color: #eee;
  padding: 2rem 1rem 1rem 1rem;
  overflow-wrap: break-word;
}

.container_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.footer-section {
  min-width: 200px;
  line-height: 1.5;
  padding: 1rem;
  align-content: center;
}

.sec-1-LegalSlot {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
}

.footer .logo {
  font-size: 3rem !important;
}

.footer-section h4 {
  margin-bottom: 0.5rem;
  font-family: 'Lexend Deca', sans-serif;
}

.footer-section p {
  text-align: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.25rem;
}

.footer-section a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.social-links {
  display: flex;
  gap: 18px;
  padding: 0;
}

.social-links i {
  margin-top: .5rem;
  font-size: 1.8rem;
}

.footer a:hover {
  color: #ffce63;
}

.copyright-container {
  background-color: #ffce63;
  color: #000;
  text-align: center;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 500;
  padding: 1rem;
}

@media (max-width: 750px) {
  .footer {
    padding: 2rem .5rem 1rem .5rem;
  }

  .container_footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }

  .vertical-line {
    width: 100%;
    max-width: 250px;
    height: 1px;
  }
}