.footer-main {
  width: 100%;
  background-color: var(--dark-neutral);
  float: left;
  padding: 1rem;
  padding-bottom: 8rem;
  color: var(--white);
}

.media-wrapper {
  display: flex;
  padding: 2rem;
  justify-content: space-between;
  margin: 0;
  list-style: none;
}

.media-wrapper .icon-media {
  width: 20%;
}
.media-wrapper .icon-media img {
  width: 100%;
  display: block;
}

.footer-credits {
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-neutral);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0;
  list-style: none;
  margin-top: 1rem;
}

/* subscription section */

/* SUBSCRIBE FORM */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600");

.subscription-section {
  margin: 3rem 0;
  padding: 3rem 0;
  width: 100%;
}

.subscribe-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-inner);
  margin: 0 0 2rem 0;
}

.container-newsletter {
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
}

.subscribe-form {
  position: relative;
  display: block;
  border-radius: 35px;
  background: white;
  width: 100%;
  overflow: hidden;
}
.subscribe-form input {
  line-height: 70px;
  padding: 0;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 300;
  background: #eee;
  letter-spacing: 0.02em;
}
.subscribe-form input:not([type="submit"]) {
  width: 100%;
  display: block;
  padding: 0 150px 0 30px;
}
.subscribe-form input:not([type="email"]) {
  position: absolute;
  height: 50px;
  line-height: 50px;
  top: 10px;
  right: 10px;
  border-radius: 25px;
  padding: 0 25px;
  background: var(--primary-bg);
  color: white;
  cursor: pointer;
}
.subscribe-form input:not([type="email"]):hover {
  background: #f00c2c;
}
.subscribe-form input:focus {
  outline: none;
  background: white;
}

@media (min-width: 600px) {
  .footer-main {
    padding: 2rem;
    padding-bottom: 2rem;
  }

  .media-wrapper {
    gap: 2rem;
    padding: 2.5rem 0;
    justify-content: center;
  }

  .media-wrapper .icon-media {
    width: 70px;
  }

  .footer-links {
    gap: 3rem;
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 0;
    padding-bottom: 2rem;
  }

  .media-wrapper .icon-media {
    width: 80px;
  }

  .footer-links {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1000px;
  }
}
