.banner{
    padding: 100px 0px;
}

.banner-content{
    background-position: center;
    background-size: contain;
    
    background-size: cover;
    
    background-repeat: no-repeat;
    height: 385px;
    padding: 90px 170px;
    box-sizing: border-box;
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.banner-shadow{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.banner-title{
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    z-index: 2;
}

.banner-desk{
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 23px;
    margin-bottom: 30px;
}

.banner .button{
    position: relative;
    z-index: 2;
    background-color: #fff;
    transition: 0.3s;
    border: 2px solid rgba(0,0,0,0);
}

.banner .button:hover{
    background-color: #FF9B26;
}

@media only screen and (max-width: 1920px){
 
    .banner-title{
        font-size: 40px;
    }
    
    .banner-desk{
        font-size: 21px;
    }
    
    .banner{
        padding: 40px 0px;
    }
    
}

@media only screen and (max-width: 1300px){
    
    .banner {
        padding: 30px 0px;
    }
    
    .banner-content{
        height: 215px;
        padding: 20px 65px;
    }
    
    .banner-title {
        font-size: 34px;
    }
    
    .banner-desk {
        font-size: 20px;
    }
    
}

@media only screen and (max-width: 768px){
    
    .banner{
        padding: 20px 0px;
    }
    
    .banner-content{
        background-size: cover;
        padding: 20px;
        height: auto;
    }
    
    .banner-title{
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .banner .button{
        margin: 0 auto;
    }
    
}