.site-footer {
  background: #071120;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background-color: #d3d3d3f7;
}

.footer-partners{
  margin: 0 10%;
}

.footer-partners img {
  zoom: 2;
  width: 175px;
}

.footer-legal {
  text-align: right;
  margin: 0 10%;
}

.footer-legal p {
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.legal-links a {
  color: rgb(0, 0, 0);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #6c5ce7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}

.footer-social a {
  color: #11223D;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #0984e3; 
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

@media (min-width: 1921px) {

  .footer-content {
    max-width: fit-content;
    gap: 5rem;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-legal p {
    font-size: 1rem;
  }

  .legal-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 1440px) {

  .footer-content {
    gap: 2.5rem;
  }

  .footer-links {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .footer-partners{
    margin: 0 4%;
  }

  .footer-legal {
    text-align: left;
    margin: 0 4%;
    align-self: center;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .footer-social{
    align-self: center;
  }

  .footer-partners img{
    zoom: 2;
    width: 136px;
  }
}
 
@media (max-width: 1024px) {

  .footer-content,
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-logo img {
    height: 32px;
  }

  .footer-contact h4{
    font-size: 1rem;
  }

  .footer-contact p,
  .footer-legal p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
  }

  .footer-legal {
    text-align: center;
    margin: 0;
  }

  .legal-links {
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-partners {
    margin: 0px 3%;
  }

  .footer-social, .footer-legal{
    align-self: center;
  }
} 

@media (max-width: 900px) {
  .footer-partners img{
    zoom: 2;
    width: 100px;
  }

  .footer-social a{
    font-size: 1rem;
  }

  .footer-legal p, .legal-links a{
    font-size: 0.7rem;
  }

  .site-footer{
    padding: 0;
  }
}


@media (max-width: 768px) {

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin: 0;
    text-align: center;
  }

  .footer-partners img {
    width: 94px;
  }

  .footer-legal {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    margin-bottom: 1rem;
  }
}

@media (max-width: 426px) {
  .footer-bottom {
    display: block;
  }

  .legal-links {
   justify-content: center;
  }
  
  .footer-legal {
    padding: 1rem 0 0 0;
    text-align: center;
  }
}

@media (max-width: 320px){

  .footer-contact p, .footer-legal p, .legal-links a {
    font-size: 0.75rem;
  }

  .footer-social a{
    font-size: 1.3rem;
  }
}