.site-footer{
  background: linear-gradient(180deg, #0c2d57, #081f3f);
  color: #ffffff;
  padding: 70px 24px 30px;
  font-size: 14.5px;
}

.footer-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}


.footer-col h4{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}


.footer-logo img{
  max-width: 140px;
  margin-bottom: 14px;
}

.footer-logo p{
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}


.footer-menu{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li{
  margin-bottom: 10px;
}

.footer-menu a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-menu a:hover{
  color: #ffffff;
}

.footer-socials.bw{
  display: flex;
  gap: 14px;
}

.footer-socials.bw a{
  width: 42px;
  height: 42px;
  border-radius: 10px;
    text-decoration: none;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;       
  font-size: 18px;
  opacity: .85;
  transition: all .25s ease;
}

.footer-socials.bw a:hover{
  background: rgba(255,255,255,.18);
  opacity: 1;
  transform: translateY(-3px);
}


.footer-socials.bw img{
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* WHITE */
  opacity: .85;
}

.footer-socials.bw a:hover{
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}

.footer-socials.bw a:hover img{
  opacity: 1;
}


.footer-socials a:hover{
  background: #2f74b8;
  transform: translateY(-3px);
}

/* Map */
.footer-map{
  width: 80%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}

.footer-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bottom */
.footer-bottom{
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}

/* Responsive */
@media(max-width:900px){
  .footer-container{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns: 1fr;
  }

  .footer-map{
    max-width: 280px;
  }
}
