.footer {
  width: 100%;
  height: 337px;
  position: relative;
  padding: 50px 0;
  z-index: 9999;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.footer__green-bg {
  position: absolute;
  background-color: rgba(88, 120, 85, 0.25);
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.footer__content {
  background-color: rgba(246, 220, 208, 0.38);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  border-top: 0px solid #2f2e2e;
  border-bottom: 0px solid #2f2e2e;
  z-index: 1;
  position: relative;
}

.footer__content__inner {
  display: flex;
}

.footer__content__inner__item {
  width: 50%;
  display: flex;
}

.footer__content__inner__item__left {
  margin-right: 30px;
  max-width: 265px;
  padding: 5px 10px;
}

.footer__content__inner__item__right {
  margin-right: 40px;
  display: flex;
  align-items: center;
}

.footer__about-us {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer__text {
  font-size: 12px;
  line-height: 1.5em;
  margin-bottom: 30px;
}

.footer__social span {
  display: block;
  font-size: 15px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.footer__social__links {
  display: flex;
}

.footer__social__links a {
  margin-right: 30px;
}

.footer__social__links a:last-of-type {
  margin-right: 0;
}

.footer__social__links img {
  width: 19px;
  height: 19px;
}

.footer__subscribe {
  background-color: rgba(239, 240, 225, 0.56);
  padding: 22px 22px 5px 22px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.footer__subscribe h2 {
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #5f453b;
}

.footer__subscribe input {
  width: 100%;
  border: 1px solid #706c6c;
  background-color: rgba(246, 220, 208, 0.38);
  color: #3b2f29;
  padding: 8px;
  margin-bottom: 10px;
  outline: none;
}

.footer__subscribe button {
  border: none;
  background-color: #a57d6b;
  color: #eff0e1;
  padding: 9px 24px;
  width: 100%;
  height: 43px;
  cursor: pointer;
}

.footer__subscribe button:focus {
  outline: none;
}

.footer .mobile {
  display: none;
}

@media (max-width: 960px) {
  .footer {
    padding: 10px 0;
    height: unset;
  }

  .footer__content {
    padding: 20px;
    margin-bottom: 20px;
  }

  .footer__content a {
    color: black;
    font-weight: 600;
  }

  .footer__about-us {
    font-size: 16px;
  }

  .footer__text {
    font-family: basic, sans-serif;
    font-size: 14px;
  }

  .footer__social__links a {
    margin-right: 10px;
  }

  .footer__subscribe {
    max-width: calc(100% - 20px);
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }

  .footer .desktop {
    display: none;
  }

  .footer .mobile {
    display: block;
  }

  .footer__green-bg {
    max-width: calc(100% - 20px);
  }
}

