﻿/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 200px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 200px;
  background-color: #f5f5f5;
  border-top:0px solid gray;
}

@media (max-width: 992px) { /* 992 */
  body {
    margin-bottom: 400px !important;
  }
  .footer {
    height:400px !important;
  }
}

@media (max-width: 768px) { /* 992 */
  body {
    margin-bottom: 600px !important;
  }
  .footer {
    height:600px !important;
  }
}

