.s-news {
  background-color: var(--green-300);
}

.news__box {
  display: flex;
  align-items: center;
}

.news__box div {
  width: 100%;
}

.news__box img {
  margin-left: -100px;
}

.news__box div h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 110%;
  letter-spacing: -0.015em;
  color: var(--green-500);
  margin-bottom: 0;
}

.news__box div p {
  color: var(--green-500);
  font-weight: 600;
  margin-top: 0;
  font-size: 16px;
}

.news__box form {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: var(--white);
}

.news__box form label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 74px;
  padding: 1px 8px 1px 42px;
}

.news__box form input {
  border: 0;
  background-color: transparent;
  outline: 0;
  padding: 10px 0;
  width: 100%;
}

.news__box form #mce-MMERGE3 {
  display: none;
}

.news__box form button {
  border: 0;
  background-color: var(--green-400);
  width: 120px;
  height: 60px;
  color: var(--green-500);
  font-weight: 600;
  font-size: 16px;
  transition: all 500ms;
}

.news__box form button:hover {
  opacity: 0.8;
}

.message-error {
  display: none;
  color: red;
  font-size: 14px;
}

.message-sucess {
  display: none;
  color: var(--white);
  font-size: 14px;
}

.message-error.active,
.message-sucess.active {
  display: block;
}

.news__box form label.error {
  border: 2px solid red;
}

@media(max-width: 1180px) {
  .news__box {
      padding: 70px 0;
      flex-direction: column;
      text-align: center;
  }
  
  .news__box div {
      margin-bottom: 50px;
  }
  
  .news__box img {
      width: 55%;
      margin-left: 0;
  }

  .box-form {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  
  .news__box form {
      width: 70%;
  }
  
  .news__box form button {
      width: 100px;
      height: 36px;
  }
}

@media(max-width: 500px) {
  .news__box form {
      height: 50px;
      width: 100%;
  }  

  .news__box img {
    width: 100%;
  }
}