.container-masonry{
    width: 75vw;
    margin: auto;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5em;
}
.quote-container{
    background-color: #fff;
    color:rgb(59, 59, 59);
    box-shadow: 0px 5px 18px #ccc;
    border-radius: 5px;
    padding-bottom: 1em;
}
/* POUR DONNER LES LARGUEUR / HAUTEUR */
.quote-container:nth-child(1), .quote-container:nth-child(5), .quote-container:nth-child(9), .quote-container:nth-child(10), .quote-container:nth-child(14){
    grid-column: span 2; /* CODE POUR LARGUEURx2 */
}
/*.quote-container:nth-child(3){
    grid-row: span 2;/* CODE POUR HAUTEURx2 
}*/

.user-info{
    display: flex;
    align-items: center;
}
/* IMG 1-49 */
.img1, .img2, .img3, .img4, .img5, .img6, .img7, .img8, .img9, .img10, .img11, .img12, .img13, .img14, .img15, .img16, .img17, .img18, .img18b, .img19, .img19b, .img20, .img20b, .img21, .img21b, .img22, .img22b, .img23, .img24, .img25, .img26, .img26b, .img27, .img27b, .img28, .img28b, .img29, .img29b, .img30, .img31, .img32, .img33, .img34, .img35, .img36, .img37, .img38, .img39, .img40, .img41, .img42, .img43, .img44, .img45, .img46, .img47, .img48, .img49, .img49b  {
    width:100%;
    min-height: 236px;
    padding: -10px;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
/* IMG 50-99 */
.img50, .img50b, .img51, .img51b, .img52, .img52b, .img53, .img53b, .img54, .img54b, .img55, .img55b, .img56, .img57, .img58, .img59, .img60, .img61, .img62, .img63, .img63b, .img63c, .img64, .img64b, .img64c, .img65, .img65b, .img66, .img67, .img68, .img68b, .img68c, .img69, .img70, .img71, .img72, .img72b, .img73, .img74, .img75, .img76,.img77, .img78, .img78b, .img79, .img80, .img81, .img82, .img83, .img84, .img85, .img86, .img87, .img88, .img89, .img90, .img91, .img92, .img93, .img94, .img95, .img96, .img97, .img98, .img99  {
    width:100%;
    min-height: 236px;
    padding: -10px;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
/* IMG 100-134 */
.img100, .img101, .img102, .img102b, .img103, .img103b, .img104, .img104b, .img105, .img106, .img107, .img108, .img109, .img110, .img110b, .img111, .img112, .img113, .img114, .img115, .img116, .img117, .img118, .img119, .img120, .img121, .img122, .img123, .img124, .img125, .img126,.img127, .img128, .img129, .img130, .img131, .img132, .img133, .img134  {
    width:100%;
    min-height: 236px;
    padding: -10px;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
/* IMG -250 */
.img250, .img251, .img252, .img253, .img254, .img255, .img256, .img257, .img258, .img259, .img260, .img261, .img262, .img263, .img264, .img265, .img266, .img267, .img268, .img269, .img270, .img271, .img272, .img273, .img274, .img275, .img276 {
    width:100%;
    min-height: 236px;
    padding: -10px;
    background-position: center;
    background-size: cover;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.title{
    color: #3a3737;
    font-family: Roboto;
    font-size: 1.1em;
    font-weight: 500;
    margin: 10px 0px;
    padding-left: 1em;
    padding-right: 1em;    
}
.text{
    color: #3a3737;
    font-family: Roboto;
    font-weight: 400;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 0px;
    padding-left: 1.5em;
    padding-right: 1em;
}
.quote-container hr{
    border: none;
    width: 80px;
    height: 5px;
    float: left;
    margin-left: 1em;;
    background: linear-gradient(270deg,#ff994f,#fa6d86);
    border-radius: 10px;
    margin-bottom: 5px;
}

/* MOBILE VERSION */

@media only screen and (max-width:600px) {
    .container-masonry{
        width: 90vw;
        grid-template-columns: repeat(1, 1fr);
    }
    .quote-container:nth-child(1), .quote-container:nth-child(5), .quote-container:nth-child(9), .quote-container:nth-child(10), .quote-container:nth-child(14){
        grid-column: span 1 /* CODE POUR LARGUEURx2 */
    } 

}