/* ===== FOOTER ===== */

.section-address {
  background: linear-gradient(45deg, #dbdbdb, #ffffff);
  padding: 50px 0;
}

.section-address>.ctnr {
  max-width: 1200px;
}

.section-address__row {
  gap: 20px 0;
  --gutter: 15px;
}

.section-address .heading-block__title {
  margin-bottom: 10px;
}

.section-address__ck {
  /* font-size: 12px; */
}

.section-address__ck.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section-address__ck ul li {
  list-style: disc;
  margin: 3px 0px 3px 15px;
}

.section-address__ck ul li a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-address__more {
  border-width: 0 0 1px 0;
  color: var(--color-1);
  border-bottom-color: var(--color-1);
  border-style: solid;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.footer-site__bg {
  padding: 36px 0;
  position: relative;
  z-index: 1;
}

.footer-site__bg>.ctnr {
  max-width: 1200px;
}

.footer-site__bg-img {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url("../images/map-bg.png") no-repeat center;
  background-size: 576px; */
  opacity: 0.06;
  z-index: -1;
}

.footer-site__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TOP ===== */
.footer-site__top {
  margin-bottom: 35px;
  gap: 24px 40px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.footer-site__logo {
  max-width: 150px;
}

.footer-site__top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  word-break: break-all;
}

.footer-site__icon {
  font-size: 24px;
  line-height: 0;
}

.footer-site__icon svg,
.footer-site__icon img {
  min-width: 33px;
  max-width: 33px;
  height: 33px;
  object-fit: contain;
}

.footer-site__label {
  font-size: 13px;
  color: #666;
}

/* ===== MIDDLE ===== */
.footer-site__middle {
  gap: 30px 0;
}

.footer-site__col.info {
  word-break: break-all;

}

.footer-site__title,
.footer-site__col h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-site__list,
.footer-site__col ul {
  padding-left: 18px;
}

.footer-site__list li,
.footer-site__col ul li {
  line-height: 1.6;
  list-style: disc;
}

.footer-site__list a,
.footer-site__col ul a {
  text-decoration: none;
}

/* ===== BOTTOM ===== */
.footer-site__bottom {
  padding: 13px 0;
  background: #f3f3f3;
}

.footer-site__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-site__social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: black;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-site__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-site__bottom-flex {
    flex-direction: column;
    gap: 10px 0;
  }

  .footer-site__copyright {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-site__top {
    grid-template-columns: 1fr;
  }
}

.footer-site__bottom-flex {
  display: flex;
  justify-content: center;
}

/*# sourceMappingURL=maps/footer.css.map */