/* Sticky footer styles
-------------------------------------------------- */

html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 80px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 80px;
    background-color: #005f30;
}


@media only screen and (max-width: 1024px) {
    body {
        margin-bottom: 100px;
    }
    .footer {
        height: 100px;
    }
}


/* @media only screen and (max-width: 768px) {
    body {
        margin-bottom: 100px;
    }
    .footer {
        height: 100px;
    }
} */

@media (max-width: 480px) {
    body {
        margin-bottom: 140px;
    }
    .footer {
        height: 140px;
    }
}

@media only screen and (max-width: 320px) {
  body {
        margin-bottom: 160px;
    }
    .footer {
        height: 160px;
        /*bottom: -80px;*/
    }
    
}