.site-footer {
  background: #111 url(../images/footer-new-bg.png) top center / cover no-repeat;
  color: #fff;
  padding: 33rem 0 3rem;
  position: relative;
}

.site-footer .container { position: relative; z-index: 1; }

.footer-locations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.footer-card {
  background: rgba(255, 255, 255, 0.1);
  border-right: 2px solid #ff7a18;
  padding: 4rem 3rem;
}
.footer-card h6 { margin-bottom: 2rem; color:#fff;}
.footer-card p { margin: 0; font-size: 1.5rem; color:#fff;}

.footer-contacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 8rem;
  row-gap: 4rem;
}
.footer-contact span {
  display: block;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.footer-contact a { color: #fff; text-decoration: none; font-size: 1.8rem; }
.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
.footer-social a {
  color: #fff;
  font-size: 2rem;
}
.footer-contact a:hover, .footer-contact .footer-social a:hover {
  opacity:0.5;
}
.footer-contact h6{
  color:#fff;
}
.footer-contact a.btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.footer-contact a.btn:hover {
  color: #ff7a18;
  opacity:1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 3rem 1rem;
  gap: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.5);
}
.footer-links a { font-size: 1.6rem; text-decoration: none; color:#fff;}
.footer-links a:hover { color: rgba(255,255,255,0.50); }
.footer-links span, .footer-copy span { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 1.6rem; gap: 1rem;display: inline-flex; flex-wrap: wrap; justify-content: center;}
.footer-copy text, .footer-copy span {white-space: pre;}
.footer-copy a { text-decoration: none; white-space: pre;color:#fff;}
.footer-copy a:hover { color: rgba(255,255,255,0.50); }


@media (max-width: 991px) {
  .footer-locations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cta { text-align: left; }
  

}



@media (max-width: 575px) {
  .footer-locations,
  .footer-contacts { grid-template-columns: 1fr; }
}

@media (max-width: 1199px) {
  .footer-contacts {
      margin-bottom:6rem;
  }
}

@media (max-width: 767px) {
 
  .footer-contacts {
      margin-bottom:5rem;
  }
}