.newsletter-section {
  background-color: var(--colorPrimary);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.newsletter-section .wrapper {
  z-index: 10;
}

.newsletter-section .title {
  color: white;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.newsletter-section .subtitle {
  color: white;
  font-size: 30px;
  margin-bottom: 40px;
}

.newsletter-section .row {
  justify-content: flex-start;
  margin-bottom: 40px;
}

.newsletter-section .row input[type="email"] {
  border-radius: 30px;
  margin-right: 20px;
  width: 700px;
  padding: 10px;
  background-color: var(--colorPrimaryLight);
  border: none;
  height: 50px;
  border-bottom: none !important;
  box-shadow: none !important;
  color: white !important;
}

.newsletter-section .note {
  font-size: small;
  color: var(--textLight);
  width: 50%;
}

.newsletter-section .envelope {
  position: absolute;
  /* background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  /* background-size: cover; */
  /* background-size: 500px 300px; */
  /* background-image: url("../images/image_envelope.png"); */
  top: -100px;
  right: -500px;
  width: 50%;
  height: 100%;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .newsletter-section .title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .newsletter-section .subtitle {
    font-size: 20px;
  }
  .newsletter-section .note {
    width: 100%;
  }

  .newsletter-section .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-section .row input[type="email"] {
    margin-right: 0px;
    width: 90%;
    margin-bottom: 20px;
  }
}
