/* 
-------------bloc-type-twins----------------
Description: bloc with text at left and image at right; 
Example:homepage first bloc 
*/

.bloc-type-twins {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.bloc-type-twins>.bloc-type-twins-first {
    margin-right: 2rem;
}

.engagement-section-sub-container .certif{
    width: 96%;
}

.engagement-section-sub-container .certif .bloc-type-twins-first>img{
    width: 68%;
    box-shadow: 0 0 20px #0000002e;
}

.bloc-type-twins>.bloc-type-twins-second {
    max-width: 600px;
}

@media (min-width: 768px) and (max-width: 1279.95px) {
    .bloc-type-twins>.bloc-type-twins-second>img {
        width: 470px;
    }
}

@media(max-width: 991.95px) {
    .bloc-type-twins {
        flex-direction: column;
        align-items: start;
    }
    .bloc-type-twins>.bloc-type-twins-second {
        margin-top: 2.5rem;
        align-self: center;
    }
    .bloc-type-twins>.bloc-type-twins-second>img {
        width: 100%;
    }
}


/* 
-------------bloc-type-brands----------------
Description: bloc that align images inline;
Example:homepage second bloc 
*/

.bloc-type-brands ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    padding: 0;
    padding: 0;
    list-style: none;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.bloc-type-brands ul img {
    height: 30px;
}

@media (min-width: 1280px) {
    .bloc-type-brands ul img {
        height: 45px;
    }
}

@media(max-width: 991.95px) {
    .bloc-type-brands ul li {
        height: 45px;
        margin: 1rem;
    }
}


/* 
-------------bloc-type-simple----------------
Description: bloc that have title, small paragraph and the rest;
Example:homepage third bloc 
*/


/* .bloc-type-simple {} */


/* 
-------------bloc-type-packs----------------
Description: bloc that have inline items like cards, the are responsive;
Example:homepage fourth bloc 
*/

.bloc-type-packs {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (min-width: 768px) and (max-width: 991.95px) {
    .bloc-type-packs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .bloc-type-packs>.pack {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .bloc-type-packs {
        flex-direction: column;
        align-items: normal;
    }
}


/* 
-------------bloc-type-values----------------
Description: bloc that have four bloc like a Ludo game, the are responsive;
Example:homepage fifth bloc 
*/

.bloc-type-values ul {
    list-style: none;
    /* padding: 0; */
}

.bloc-type-values .values-container {
    margin: 0;
    display: flex;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 2.5rem;
}

.bloc-type-values .value>img {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
}

.bloc-type-values .title {
    margin-bottom: 1rem;
}

@media (max-width: 767.95px) {
    .bloc-type-values .title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .bloc-type-values .value {
        width: 48%;
    }
    .bloc-type-values .title {
        font-size: 1.125rem;
    }
}

@media (min-width: 1280px) {
    .bloc-type-values .value {
        padding: 0rem 2rem;
    }
    .bloc-type-values .title {
        font-size: 1.125rem;
    }
}