footer {
  position: relative;
  width: 100%;
  height: 60rem;
  margin-top: 12.8rem;
  color: var(--text-gray);
}

.footer-content {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.3rem 0;
  background-image: url("../../imgs/footer-bg.png");
  background-size: cover;
}
.footer-content span {
  margin-bottom: 0.4rem;
  text-align: center;
}
.footer-content *:not(.footer-overlay) {
  z-index: 9;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(0.9rem);
  -webkit-filter: blur(0.9rem);
  background: rgba(39, 39, 42, 0.4);
}

.footer-logo {
  width: 22.4rem;
  height: 12.1rem;
  margin-bottom: 1.6rem;
}
.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-number {
  font-size: 3rem;
  font-weight: bolder;
  direction: ltr;
}

.footer-address {
  font-size: 1.8rem;
}

.footer-email {
  font-size: 1.4rem;
}

.footer-cta {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 0.1rem solid var(--accent-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 3.2rem;
  color: var(--text-gray);
  background-color: var(--accent-main);
  margin-top: 1.2rem;
}

.footer-copyright {
  position: relative;
  width: 100%;
  height: 25rem;
  display: grid;
}

.footer-typo {
  position: absolute;
  width: 91.7rem;
  height: 15.5rem;
  align-self: flex-start;
  justify-self: center;
}
.footer-typo img {
  width: 100%;
  height: 100%;
}

.footer-copyright-list {
  align-self: flex-end;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 55.7rem;
  z-index: 9;
}

.footer-copyright-item {
  font-size: 1.4rem;
}
.footer-copyright-item a {
  color: var(--text-gray);
}

.footer-copyright-text {
  justify-self: center;
  align-self: flex-end;
  margin-bottom: 3.4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .footer-typo {
    display: none;
  }
}
@media (max-width: 479px) {
  .footer-typo {
    display: none;
  }
  .footer-copyright-list {
    width: 100vw;
    justify-content: space-around;
  }
}/*# sourceMappingURL=footer.css.map */