
:root {
    --noir: #000;
    --rouge: #FF0000;
    --blanc: #FFF;
    --gris-clair : #f2f4f7;

    --noir: #262626;
    --orange: #EF7D00;
    --vert-drapeau: #3FA535;
    --vert: #0f7705;
    --vert-fonce:#023A05;
    --blanc: #FFF;
}






#page_institutions{
    display: block;
    width: 100% !important;
    border: 1px solid rgb(250, 58, 0);
    background-color: var(--blanc);
    padding: 0px;
}


#page_institutions h1{
    display: block;
    width: 100% !important;

    font-size: 25px;
    font-weight: 700;
    color: var(--noir);
    margin-top: 15px;
    margin-bottom: 25px;
}

#page_institutions .liste{
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#page_institutions .liste .item{
    position: relative;
    width: 100%;

    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(189, 189, 189, 0.2), 0 6px 20px 0 rgba(223, 223, 223, 0.11);
}
#page_institutions .liste .item:hover{
    position: relative;
    width: 100%;

    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px 0 rgba(189, 189, 189, 0.2), 0 6px 20px 0 rgba(223, 223, 223, 0.11);
}
#page_institutions .liste .item .inner{
    position: relative;
    width: 30%;
    height: 210px;
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(214, 214, 214, 0.2);
}
#page_institutions .liste .item .inner img{
    position: relative;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
#page_institutions .liste .item .inner .icon{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--blanc);
    z-index: 3;
}

#page_institutions .liste .item .caption{
    position: relative;
    width: 69%;
    padding: 10px 20px;
}
#page_institutions .liste .item .caption h2{
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--noir);
    margin-bottom: 13px;
    font-weight: 750;;
}
#page_institutions .liste .item .caption h3{
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 12px;
}
#page_institutions .liste .item .caption p{
    position: relative;
    font-size: 14px;
    color: #000;
}











/******************************************* Responsive********************/

@media screen and (max-width: 1520px) {

}
@media screen and (max-width: 1400px) {

}
@media screen and (max-width: 1350px) {
    
}
@media screen and (max-width: 1250px) {

}
@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
   
   
}
@media screen and (max-width: 640px) {
    
}
@media screen and (max-width: 480px) {
  

}


/**************       dark mode   ***********/
.dark-mode #page_institutions .liste .item .caption h2,
.dark-mode #page_institutions .liste .item .caption h3,
.dark-mode #page_institutions .liste .item .caption p,
.dark-mode #page_institutions .liste .item .caption a{
    color: yellow !important;
}
.dark-mode #page_institutions .liste .item{
    box-shadow: 0 4px 8px 0 rgba(41, 41, 41, 0.08), 0 6px 20px 0 rgba(223, 223, 223, 0.04);
}
.dark-mode #page_institutions .liste .item .caption a{
    border: 1px solid yellow !important;
}
.dark-mode #page_institutions{
   background-color: rgb(36, 36, 36) !important;
}
