#newsletter-container {
  display: flex;
  height: 100%;
  position: relative;
  background: #333;
  left: -30px;
  width: 105%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 30px;
  margin: 0;
}

#newsletter-container .center-banner {
	display: flex;
}

#newsletter-container h3 {
  font-size: 25px;
  line-height: 25px;
  color: #444b4c;
  margin: 0;
  float: left;
  margin: 10px 0;
  color: #fff;
}

#newsletter-container form {
  float: right;
}

#newsletter-container input[type=text] {
  height: 46px;
  width: 300px;
  vertical-align: top;
  margin-right: 5px;
  border-radius: 4px;
  border: 3px solid #0592a5;
  background: #fff;
  line-height: 20px;
  padding: 5px 10px 5px 20px;
  color: #727b7c;
}

#newsletter-container input[type="submit"] {
  background-color: #fad337;
  color: #0592a5;
  padding: 7px 14px;
  font-weight: bold;
}

#newsletter-container input,
#newsletter-container select,
#newsletter-container textarea {
  outline: 0;
}

#newsletter-container .btn {
  padding: 12px 20px;
  font-size: 17px;
  line-height: 20px;
}

#newsletter-container .btn-custom-3 {
  color: #fff;
  background-color: #575a59;
  border-color: #5c5f5e;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4);
}

#newsletter-container .btn-custom-3:hover {
  color: #fff;
  background-color: #0592a5;
  border-color: #fad337;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4);
}

#newsletter-container ::selection {
  background-color: #7bae23;
  color: #fff;
}

/* --- mobile - Screen size between 768px to 991px */
@media screen and (max-width: 991px) {
	/* Split up text and form into seperate block on smaller screen for better display */
	#newsletter-container .center-banner {
		display: block;
	}
}

@media screen and (max-width: 400px) {
  #newsletter-container h3 {
    font-size: 20px;
  }
  #newsletter-container input[type=text] {
    width: 215px;
  }
}
