*{
    margin: 0;
    padding: 0;
    list-style: none;
}

.cont__head{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0 0 0 ;
}


.cont__img{
    min-width: 102px;
    max-width: 156px;
    width: 22%;
    min-height: 102px;
    max-width: 156px;
    height: 22%;
    border-radius: 16px;
    object-fit: contain;
    
}

.cont__txt{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px ;
    font-weight: 600;
    line-height: 120%;
    color: #4E5150;
}
.cont__txt--small{
    font-size: 10px;
    color: #A9A9A9;
}
.cont__txt--big{
    margin: 12px 0 0 0;
}
.cont__txt--second{
    margin: 4px 0 0 0;
}
.cont__txt--el{
    margin: 10px 0 0 0;
}


.cont__list{
    display: flex;
    flex-direction: row;
    width: 270px;
    justify-content: space-around;
    margin: 12px 0 0 0 ;
}
.cont__el{
    width: 78px;
    height: 52px;
    border-radius: 12px;
    background-color: #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.cont__grille{
    width: calc(100vw - 24px);
    height: 60%;
    min-height: 350px;
    max-height: 960px;
    padding: 0 12px;
    margin: 39px 0 0 0;
}
.cont__grid{
    display: grid;
    grid-template-columns:repeat(3, 1fr) ;
    column-gap: 12px;
    row-gap: 12px;
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
    "i1 i2 i2"
    "i3 i3 i4"
    "i5 i6 i4" ;
    height: 100%;
    width: 100%;

    
}
.cont__elGrid{
    border-radius: 12px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.15));
    max-height: 300px;
}
.cont__elGrid:nth-child(1){
    grid-area: i1;
}
.cont__elGrid:nth-child(2){
    grid-area: i2;
}
.cont__elGrid:nth-child(3){
    grid-area: i3;
}
.cont__elGrid:nth-child(4){
    grid-area: i4;
    max-height: 630px;
}
.cont__elGrid:nth-child(5){
    grid-area: i5;
}
.cont__elGrid:nth-child(6){
    grid-area: i6;
}
.cont__imgGrid{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.foot{
    width: 100%;
    height: 40px;
    margin: 44px  0 0 0;
}
.foot__txt{
    text-align: center;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #A9A9A9;
}
.foot__lien{
    text-align: center;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #6d6d6d;
    text-decoration: underline;
}

@media (min-width: 1200px){

    .cont__head{
        margin: 60px 0 0 0 ;
    }


    .cont__txt{
        font-family: 'Montserrat', sans-serif;
        font-size: 24px ;
    }
    .cont__txt--small{
        font-size: 14px;
    }
    .cont__txt--big{
        margin: 16px 0 0 0;
    }
    .cont__txt--second{
        margin: 4px 0 0 0;
    }
    .cont__txt--el{
        margin: 10px 0 0 0;
        font-size: 18px;
    }
    .cont__list{
        width: 348px;
        margin: 24px 0 0 0 ;
    }
    .cont__el{
        width: 100px;
        height: 67px;
    }


    .cont__grille{
        width: calc(100vw - 34vw);
        height: 60%;
        min-height: 350px;
        max-height: 960px;
        padding: 0 16vw;
        margin: 64px 0 0 0;
    }
    .cont__grid{
        display: grid;
        grid-template-columns:repeat(3, 1fr) ;
        column-gap: 30px;
        row-gap: 30px;
        grid-template-rows: repeat(3, 1fr);
    }

    .foot{
        margin: 161px  0 0 0;
    }
}