.Footer {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--clr-grayDark);
}

.Footer a {
    text-decoration: underline;
    color: inherit;
  }

.Footer-logo {
  position: relative;
  z-index: 100;
  top: -40px;
  right: 0;
  left: 0;
  display: block;
  width: 100px;
  margin: 0 auto;
}

@media screen and (min-width: 1026px) {

.Footer-logo {
    top: -60px;
    width: 120px;
}
  }

.Footer-image {
  width: 350px;
}

.Footer-backgroundImage-container {
  position: relative;
  z-index: 1;
}

.Footer-backgroundImage {
  position: absolute;
  z-index: 1;
  top: -175px;
  left: -20px;
  display: none;
  width: 1100px;
}

@media screen and (min-width: 1026px) {

.Footer-backgroundImage {
    display: block;
}
  }

.Footer-top {
  padding: 0 0 25px 0;
}

@media screen and (min-width: 1026px) {

.Footer-top {
    padding: 25px;
}
  }

.Footer-bottom {
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  background-color: var(--clr-primary);
  color: #ffffff;
}

#footer-contact {
  padding: 0;
}

.Footer-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  max-width: 400%;
  color: #ffffff;
}

@media screen and (min-width: 1026px) {

.Footer-content {
    flex-direction: row;
    gap: var(--spacing-2xl);
    max-width: 100%;
}
  }

.Footer-copyright {
  width: auto;
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (min-width: 601px) {

.Footer-copyright {
    width: 300px;
}
  }

@media screen and (min-width: 1026px) {
  .Footer-left {
    width: 50%;
  }

  .Footer-right {
    width: 25%;
  }
}
