.newsletter {
  background-color: #6BBBAE;
  height: 285px;
  font-family: var(--font-1);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 420px) {
  .newsletter {
    flex-direction: column;
    height: auto;
    padding: 40px 0px 65px 0px;
  }
}
.newsletter__content h2 {
  font-size: 40px;
  color: #FAE042;
  margin-bottom: 27px;
  font-weight: 900;
  text-align: center;
}
.newsletter__content p {
  color: white;
  font-size: 16px;
  margin-bottom: 41px;
  text-align: center;
}
.newsletter__content div {
  display: flex;
  gap: 16px;
}
@media (max-width: 420px) {
  .newsletter__content div {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.newsletter__content div input {
  border: none;
  width: 100%;
  height: 66px;
  border-radius: 10px;
  padding-left: 25px;
}
@media (max-width: 420px) {
  .newsletter__content div input {
    height: 54px;
  }
}
.newsletter__content div input::-moz-placeholder {
  color: #818A8B;
  font-size: 18px;
  font-family: var(--font-1);
  font-weight: 500;
}
.newsletter__content div input:-ms-input-placeholder {
  color: #818A8B;
  font-size: 18px;
  font-family: var(--font-1);
  font-weight: 500;
}
.newsletter__content div input::placeholder {
  color: #818A8B;
  font-size: 18px;
  font-family: var(--font-1);
  font-weight: 500;
}
.newsletter__content div .btn {
  max-width: 220px;
  background-color: #FF6A39;
  color: #FAE042;
  font-weight: 900;
  transition: 0.3s ease-out;
  padding: 0px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 33px;
  font-family: var(--font-1);
}
.newsletter__content div .btn:hover {
  background-color: #FAE042;
  color: #6BBBAE;
}/*# sourceMappingURL=newsletter.css.map */