/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

      .site-logo {
        background-image: none;
    }

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

          .site-logo {
        background-image: none;
    }

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

          .site-logo {
        background-image: none;
    }

}

/* Portrait phones and smaller */
@media (max-width: 480px) {

          .site-logo {
        background-image: none;
    }

}

/* footer logo */
.widget.footer-widget img{
    display: block;
}

@media (max-width:640px){
    .widget.footer-widget img{
        display:none;
    }
}