.site-footer {
  margin-left: calc(50% - 50vw);
}

.footer-bottom-bar {
  position: relative;
  width: 100%;
  background-image: url("/assets/images/new/footer.png");
  color: #efe3cf;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: scaleY(1.1);
  transform-origin: center;
}

.footer-bottom-bar::before {
  content: "";
  position: absolute;
  inset: 0;
}

.footer-bottom-bar__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
}

.footer-bottom-bar__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-bottom-bar__address {
   flex: 0 0 270px;
   max-width: 270px;
}

.footer-bottom-bar__phone {
  flex: 0 0 270px;
  max-width: 270px;
}



.footer-bottom-bar__email {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  flex: 0 0 130px;
  max-width: 130px;
  text-decoration: none;
}

.footer-bottom-bar__email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom-bar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer-bottom-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-bar__social img {
  width: 22px;
  height: 20px;
  object-fit: contain;
  display: block;
 
}



.footer-bottom-bar__email a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-bar__logo {
   text-transform: uppercase;
   flex: 0 0 260px;
  max-width: 260px;
}

.footer-bottom-bar__logo img {
  width: 48px;
  height: 45px;
  object-fit: contain;
  display: block;
 
}

.footer-bottom-bar__email a:hover {
  text-decoration: underline;
}

.footer-bottom-bar__copy {
  flex: 0 0 380px;
  max-width: 380px;
}

@media (max-width: 900px) {
  .footer-bottom-bar__inner {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer-bottom-bar__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-bar__item {
    justify-content: center;
  }

  .footer-bottom-bar__copy {
    white-space: normal;
  }
}