

.container{
    width: 1300px;
    height: auto;
    display: flex;
    margin: 50px auto;
}
.container > .block-accueil{
    width: calc(100%);
}
.container > .block-fb{
    width: 300px;
    margin-top: 50px;
}
.fb-page {
    height: 100%;
}

.container-news{
    width: 90%;
    height: auto;
    padding-bottom: 30px;
    box-shadow: 0px 0px 5px silver;
    margin: 50px 5%;
    position: relative;
    background-color: rgba(255, 255, 255, .8);
}
.container-news > .bandeau{
    height: 40px;
    line-height: 40px;
    width: 330px;
    text-align: center;
    box-shadow: 5px 5px 5px grey;
    background-color: #27558D;
    color: white;
    transform: translate(-15px , 5px);
    font-family: 'Great Vibes', cursive;
}
.container-newsUp{
    height: 600px;
}

.container-chronique{
    display: flex;
    justify-content: space-evenly;
    height: auto;
    flex-wrap: wrap;
    margin-top: 10px;
}
.container-chronique > a{
    height: 100%;
    width: 150px;
    display: block;
    text-decoration: none;
    transition: 0.5s;
    margin: 20px 30px;
}
.container-chronique > a:hover{
    transform: scale(1.1);
    transition: 0.5s;
}
.container-chronique > a > img{
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.container-chronique > a > h3{
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #27558D;
}
.container-chronique > a > h4{
    margin: 0;
    font-size: 15px;
    text-align: center;
    color: #27558D;
}
.container-chronique > a > span{
    display: block;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
    color: #27558D;
}
.linkNews{
    text-decoration: none;
    background-color: #27558D ;
    color: white;
    padding: 3px 10px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    border-radius: 2px;
    border: solid #27558D 1px;
    transition: 0.5s;
}
.linkNews:hover{
    background-color: white;
    color: #27558D;
    transition: 0.5s;
}
.iframe-emissions{
    margin: 40px auto;
}


.shopAccueil{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.shopAccueil > div{
    height: 500px;
}
.div-img1shop > div{
    height: 500px;
    width: 500px;
    overflow: hidden;
}
.div-img1shop > div > img{
    height: 500px;
}
.div-img2shop{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.div-img2shop > div{
    height: 150px;
    width: 30%;
}
.div-img2shop > div > img{
    height: 100%;
}



@media screen and (max-width: 1300px) {
    .container{
        width: 100%;
        height: auto;
        display: flex;
        margin: 50px auto;
    }
    .block-fb{
        display: none;
    }
    .container > .block-accueil{
        width: 100%;
    }
    .container-news{
        width: 90%;
        margin: 50px auto;
        height: auto;
    }
  }

  @media screen and (max-width: 580px) {
    .container-news{
        width: 100%;
        margin: 50px auto;
        height: auto;
    }

    .container-news > .bandeau{
        height: 40px;
        line-height: 40px;
        width: 95%;
        margin: 0 auto;
        transform: translate(0 , 0);
    }

    .container-chronique{
        height: auto;
        flex-wrap: wrap;
    }
    .container-chronique > a{
        height: auto;
        width: 100%;
        margin: 30px auto;
    }
    .container-chronique > a > img{
        width: 100%;
        height: auto;
    }
    .container-chronique > a > h3{
        margin: 0;
        font-size: 30px;
    }
    .container-chronique > a > h4{
        margin: 0;
        font-size: 30px;
    }
    .linkNews{
        padding: 3px 10px;
        position: relative;
        bottom: 10px;
        right: 0px;
        display: block;
        width: 300px;
        margin: 10px auto;
        text-align: center;
        font-size: 30px;
    }

    .shopAccueil{
        flex-direction: column;
        justify-content: center;
    }
    .shopAccueil > div{
        height: auto;
        width: 90%;
        margin: 0 auto;
    }
    .div-img1shop > div{
        height: auto;
        width: 100%;
        overflow: hidden;
    }
    .div-img1shop > div > img{
        height: auto;
        width: 100%;
    }
    .div-img2shop{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .div-img2shop > div{
        height: auto;
        width: 100%;
        overflow: hidden;
    }
    .div-img2shop > div > img{
        height: auto;
        width: 100%;
    }

  }