/* *************** footer ************** */

footer {
    /* background-color: rgb(21, 21, 56); */
    width: 100%;
    height: 100px;
    /* border: 2px solid red; */
    text-align: center;
    color: rgb(23, 31, 63);
    font-size: 13px;
    font-weight: bolder;
    padding: 10px;
}

.imgFoot {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center; 
}

.ImgFooter {
    /* border: 2px solid green;  */
    height: 80px;
}

@media (max-width:970px) {
    footer{
        height: 80px;
    }

    .ImgFooter {
        height: 50px;
    }

}

