.promo-email {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 850px) {
  .promo-email {
    flex-direction: column;
  }
}
.promo-email .promo-email__image {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 850px) {
  .promo-email .promo-email__image {
    width: 100%;
  }
}
.promo-email .promo-email__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.promo-email .promo-email__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 365px;
  padding: 5vw 0;
  font-family: ModernEraExtraBold, Arial, Helvetica Neue, Helvetica, sans-serif;
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .promo-email .promo-email__content {
    min-height: 0;
  }
}
@media screen and (max-width: 850px) {
  .promo-email .promo-email__content {
    width: 100%;
  }
}
.promo-email .promo-email__content img {
  max-width: 180px;
  margin-bottom: 20px;
}
.promo-email .promo-email__content p {
  margin: 20px 0;
  font-size: 18px;
  font-family: ModernEraExtraBold, Arial, Helvetica Neue, Helvetica, sans-serif;
  line-height: 1.5em;
}
@media screen and (max-width: 1100px) {
  .promo-email .promo-email__content p {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .promo-email .promo-email__content p {
    font-size: 16px;
  }
}
.promo-email .promo-email__content form {
  position: relative;
}
@media screen and (max-width: 400px) {
  .promo-email .promo-email__content form {
    width: 90%;
  }
}
.promo-email .promo-email__content form .promo-email__email {
  padding: 10px;
  width: 340px;
  height: 40px;
  background-color: #fff;
}
@media screen and (max-width: 400px) {
  .promo-email .promo-email__content form .promo-email__email {
    width: 100%;
  }
}
.promo-email .promo-email__content form .promo-email__email::placeholder {
  font-size: 18px;
  color: #757575;
}
@media (max-width: 1000px) {
  .promo-email .promo-email__content form .promo-email__email::placeholder {
    font-size: 16px;
  }
}
.promo-email .promo-email__content form svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
  height: 20px;
}
.promo-email .promo-email__content form svg:hover {
  right: 5px;
}