/*CSS par defaut de banniere*/
.banniere-content{
    position: absolute;
    width: 60%;
    height: 400px;
    left: 20%;
    margin-top: 100px;
    box-shadow:  0 4px 10px 0 rgba(0,0,0,0.8);
}
.banniere-content img{
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 400px;
}

.banniere-title{
    text-shadow: 5px 2px #272822;
    position: absolute;
    left: 10%;
    top: 10%;
    right: 80%;
    padding-left: 30px;
    width: 450px;
    height: 200px;
    /*border: 5px rgba(255,255,255,0.7) solid;*/
    color: rgba(255,255,255,1);
}
.banniere-titre{
    font-family: 'Marck Script', cursive;
    font-size: 3rem;
}
.banniere-desc{
    font-family: 'Kalam', cursive;
}

/**********************/
/*****media query******/
/**********************/
@media screen and (max-width: 1040px){
    .banniere-content{
        left: 0;
        top: 0;
        width: 100%;
        height: 300px;
    }
    .banniere-content img{
        height: 300px;
    }
    .banniere-title{
        top: 0;
        left: 12%;
    }
}
@media screen and (max-width: 690px){
    .banniere-title{
        left: 0;
        padding-left: 0;
        width: 85%;
    }
    .banniere-titre{
        font-size: 2.5rem;
    }
}
@media screen and (max-width: 375px) {
    .banniere-titre{
        font-size: 2rem;
    }
}

