/* footer styling */

footer {
  text-align: left;
  margin: 0 auto;
  background-color: #2b2320;
  color: #f0e9d8;
  width: 100%;
  flex-shrink: 0;
}

footer ul {
  list-style: none;
  padding: 0;
  line-height: 1.4;
}

footer a {
  color: #f0e9d8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 0.75fr 0.75fr;
  padding: 1.25rem;
  margin: 0 auto;
  max-width: 1600px;
  justify-content: space-between;
}

.footer-title {
  font-weight: 700;
  font-size: 2.5rem;
  padding-top: 1rem;
}

.footer-section-title {
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
}

.social-icons {
  display: flex;
  align-items: left;
  justify-content: left;
}

.icon-box {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 0.625rem;
}

.icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

hr.footer {
  color: #f0e9d8;
}

@media (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-top-block {
    flex: 100%;
  }
  .footer-top-block-sub {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-top-block-sub-sub {
    flex: auto;
  }
}
