    body {
        background: rgb(228, 228, 228);
        font-family: 'Rubik', sans-serif;
        margin: 0 auto;
        padding: 0px;
        overflow-x: hidden;
    }

    .img-responsive {
        max-width: 100%;
        height: auto;
        width: 200px;
        margin-left: 20px
    }

    .img-fluid {
        height: auto;
        max-width: 100%;
        z-index: 1
    }

    .navbar {
        width: 100%;
        background-image: linear-gradient(rgba(255, 255, 255, 0.89), rgb(235, 235, 235));
        padding-left: 20px
    }

    .fa-bars {
        position: absolute;
        margin-top: 30px;
        color: rgb(122, 117, 117);
        cursor: pointer;
    }

    .sidebar {
        background: rgba(0, 0, 0, 0.6);
        display: none;
        height: 100%;
        position: fixed;
        width: 100%;
        z-index: 1;
        top: 0;
        z-index: 1000;
    }

    .sidebar-lists {
        animation-name: sidebar;
        animation-duration: 0.5s;
        background: rgb(235, 235, 235);
        display: block;
        height: auto;
        top: 0;
        width: 250px;
        height: 100%;
        z-index: 1000 !important;
    }

    .lists {
        list-style: none;
        text-decoration: none;
        padding-left: 0;
    }

    .fa-close {
        color: rgb(128, 128, 128);
        position: absolute;
        margin-top: 25px;
        margin-left: 0px;
        cursor: pointer;
    }

    .sidebar-items {
        color: rgb(112, 112, 112);
        display: block;
        padding-left: 30px;
    }

    .sidebar-items.items {
        color: rgb(112, 112, 112);
        display: block;
        height: 40px;
        padding-left: 30px;
    }

    .sidebar-items a {
        text-decoration: none;
        color: rgb(112, 112, 112)
    }

    .span {
        margin-left: 20px
    }

    @keyframes sidebar {
        0% {
            transform: translate3d(-250px, 0, 0);
        }
        100% {
            transform: translate3d(0px, 0, 0);
        }
    }

    .body {
        width: 80%;
        margin: 70px auto;
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .card {
        border: 1px solid #ccc;
        height: 200px;
        width: 300px;
        margin: 0 20px;
        position: relative;
        margin-bottom: 40px
    }

    .img-fluid:hover {
        filter: grayscale(10)
    }

    h4.foot {
        text-align: center;
        color: white;
        position: absolute;
        top: -20;
        left: 0;
        width: 100%;
        height: 80%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 200;
        padding-top: 40px;
        display: none;
    }

    .card:hover h4.foot {
        display: block;
        animation-name: display;
        animation-duration: 1s
    }

    @media(max-width: 600px) {
        body {
            overflow-x: hidden;
        }
        .body {
            width: 100%;
            margin-top: 20px
        }
        .card {
            border: 1px solid #ccc;
            margin: 10px auto;
            position: relative;
        }
        .row {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }
        .sidebar-lists {
            overflow: hidden;
            overflow-y: scroll;
            position: fixed
        }
    }

    @keyframes display {
        0% {
            opacity: 0
        }
        100% {
            opacity: 1
        }
    }

    .big {
        position: fixed;
        background: rgba(0, 0, 0, 0.6);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
    }
