#newsletter {
    background-image: url("../img/banner/b14.png");
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
    padding: 40px 20px;
}

.news-cont {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.newstext {
    & h4{
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }
    
    & p {
        color: #fff;
        
        & span {
            color: #ffdb27;
        }
    }
}

#newsletter form{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    
    & input {
        height: 3.125rem;
        padding: 0 1.25em;
        font-size: 14px;
        width:100%;
        border: 1px solid transparent;
        border-right: 0;
        border-radius: 4px;
        outline: none; 
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    & button {
        margin-left: 0;
        margin: 0;
        height: 3.125rem;
        color: #fff;
        white-space: nowrap;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;

        &:hover{
            color: #000;
        }
    }
} 

@media(min-width: 768px) {
    .news-cont {
        width: 90%;
    }
}

@media(min-width: 1024px) {

    .news-cont {
        width: 85%;
    }

    #newsletter form {
        width: 40%;
    }
}