/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 200px;
}
.footer {
    padding-top: 40px;
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 200px;
    background-color: #333333;
    color: #FFF;
}


@media (max-width: 996px) {
    body {
        /* Margin bottom by footer height */
        margin-bottom: 300px;
    }
    .footer {
        /* Set the fixed height of the footer here */
        height: 300px;
    }


}

@media (max-width: 768px) {
    body {
        /* Margin bottom by footer height */
        margin-bottom: 600px;
    }
    .footer {
        /* Set the fixed height of the footer here */
        height: 600px;
    }


}

