.mini-header-page{
    height: 400px;
    position: relative;
    background-color: rgb(13,123,201);
}

.mini-header-background-img{
    position: absolute;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0.5;
    transition: 2s;
    -webkit-filter: brightness(85%) saturate(0.5);
    filter: brightness(85%) saturate(0.5);
}

.mini-header-page .page-content{
    position: relative;
    z-index: 100;
    padding: 130px 0px;
    color: #fff;
}

.mini-header-page h2{
    font-size: 43px;
    line-height: 60px;
    font-weight: 300;
    margin-top: 0px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0px 0px 65px #000;
}

.mini-header-page h3{
    font-size: 18px;
    line-height: 60px;
    font-weight: 100;
    margin-top: 0px;
    margin-bottom: 15px;
    margin-bottom: 30px;
    text-shadow: 0px 0px 65px #000;
}

.big-size{
    background-size: 110%; 
}

@media only screen and (max-width: 768px){
    
    .mini-header-page{
        height: 300px;
    }
    
    .mini-header-page .page-content{
        padding: 50px 0px;
    }
    
    .mini-header-page h2{
        font-size: 35px;
        margin-bottom: 20px;
        line-height: 45px;
    }
    
    .mini-header-page h3{
        font-size: 20px;
        line-height: 40px;
    }
    
    .mini-header-background-img{
        background-position: center;
        background-attachment: scroll;
        background-size: cover;
    }
}