footer .mailingListSection {
  display: flex;
  padding: 50px var(--deviceWidthPaddingSize);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-bottom: 1px solid var(--white25);
  background: var(--brandGreen);
}

footer .mailingListSection h2 {
  color: #fff;
  font-family: "Literata";
  font-size: var(--xXLargeSize);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

footer .mailingListSection p {
  align-self: stretch;
  color: var(--white);
  text-align: center;
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .mailingListSection .mailingListForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

footer .mailingListSection .mailingListForm input {
  width: 300px;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .mailingListSection .mailingListForm input::-moz-placeholder {
  color: var(--white);
}

footer .mailingListSection .mailingListForm input::placeholder {
  color: var(--white);
}

footer .mailingListSection .mailingListForm .submitMailingListForm {
  padding: 15px 30px;
  gap: 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--brandGreen);
  font-family: "Lato";
  font-size: var(--mediumSize);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

@media (max-width: 1024px) {
  footer .mailingListSection h2 {
    text-align: center;
  }
}

/* Tablet */
@media (max-width: 768px) {

  footer .mailingListSection .mailingListForm {
    flex-direction: column;
  }

  footer .mailingListSection .mailingListForm .submitMailingListForm {
    width: 330px;
  }
}

/* Mobile  */
@media (max-width: 600px) {
  footer .mailingListSection .mailingListForm,
  footer .mailingListSection .mailingListForm input,
  footer .mailingListSection .mailingListForm .submitMailingListForm {
    width: -webkit-fill-available;
  }
}
