#banner{
    width: 100%;
    height: 270px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.8) 100%), url(../img/banners/banner.jpg);
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner > div{
    width: 100%;
}

#banner .title{
    width: 100%;
}

#banner .title h2{
    margin-top: 0;
}

#banner-body{
    text-align: center;
    font-size: 25px;
    color: white;
    /* text-transform: uppercase; */
    font-weight: bold;
    width: 60%;
    margin: 0 auto;
}

#banner-body button{
    background-color: transparent;
    color: white;
    text-transform: uppercase;
    font-family: 'MontserratLight';
    border: 1px solid white;
    border-radius: 5px;
    padding: 12px 50px;
    margin-right: 10px;
    transition: all .3s;
    cursor: pointer;
    margin-top: 10px;
}

#banner-body button:hover{
    background-color: #C01D1D;
    border: 1px solid #C01D1D;
}

@media only screen and (max-width: 599px) {
    #banner-body{
        width: 90%;
        margin: 0 auto;
        font-size: 20px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    #banner{
        height: 300px;
    }
}
