/* Newsletter Section */
#newsletter {
    background: #F5F5F5;
    padding: 80px 0px;
    text-align: center;
    color: #333;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
}
#newsletter h3 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
}
#newsletter p {
    font-size: 24px;
    font-style: italic;
    padding: 0px;
    margin: 0px 0px 40px;
}
#newsletter form {
    background: #fff;
	border: 0;
    border-color: transparent;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}
#newsletter form input[type="email"] {
    border: 0;
	border-color: transparent;
    padding: 4px 8px;
    width: calc(100% - 100px);
}
#newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #FF9800;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
#newsletter form input[type="submit"]:hover {
    opacity: 0.9;
}


