
.cover{
    background-image: url('image/banner_new.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
    
} 

.cover-content{
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}
.cover-content h1{
    margin-top: 10px;
    font-size: 6em;
}
.cover-content img{
    width: 700px;
    margin-top: 10px;
} 


 @media only screen and (min-width: 200px) and (max-width: 512px) {
    
.cover{
    background-image: url('image/banner_new.jpg');
    width: 2556px;
    height:200px;
    background-size: contain;
    background-repeat: no-repeat;
    
} 

.cover-content{
    width: 100%;
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}
.cover-content h1{
    margin-top: 5px;
    font-size: 2em;
}
.cover-content img{
    width: 250px;
    margin-top: 0px;
} 
    
 }

 @media only screen and (min-width: 400px) and (max-width: 512px) {
    .cover{
        background-image: url('image/banner_new.jpg');
        width: 2556px;
        height:220px;
        background-size: contain;
        background-repeat: no-repeat;
        
    }
    .cover-content{
        width: 100%;
        position: absolute;
        top: 20%;
        transform: translateY(-50%);
        text-align: center;
        color: #fff;
    }
    .cover-content h1{
        margin-top: 5px;
        font-size: 2em;
    }
    .cover-content img{
        width: 250px;
        margin-top: 0px;
    }  
 }