/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */


/**
 * Global footer rules
 */

.main__footer {
  background-color: var(--color-primary--1);
  color: var(--color-neutral);

  margin-top: auto;
}
.main__footer a {
  display: block;
  margin: 1rem 0;
  color: var(--color-neutral);
}
.main__footer-secondary {
  padding: 0 3rem 2rem;
}
@media all and (min-width: 375px) {
  .main__footer .region-footer  {
    display: block;
  }
}
@media all and (min-width: 500px) {
  .main__footer-secondary {
    padding: 0 4.5rem 2rem;
  }
}


/**
 * Block footer
 */

.main__footer .block-footer {
  margin-bottom: 1.625rem;
  padding: 3rem 3rem 0;
}
.main__footer .block-footer__text {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 1rem;
}
.main__footer .block-footer__text p {
  margin: 0;
}
.main__footer .block-footer__text::before {
  content: "";
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  background-image: url('../../images/icons/location.svg');
  background-position: center;
  background-repeat: no-repeat;
}
@media all and (min-width: 500px) {
  .main__footer .block-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem 4.5rem 0;
  }
}
@media all and (min-width: 950px) {
  .main__footer .block-footer {
    gap: 2rem;
  }
  .main__footer .block-footer__links {
    display: flex;
    gap: 2rem;
  }
}
@media all and (min-width: 1200px) {
  .main__footer .block-footer {
    gap: 3.125rem;
  }
  .main__footer .block-footer__links {
    gap: 3.125rem;
  }
}
