/* // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */


body {
     height: fit-content;
     margin: 0;
 }

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
     body {
          height: 100% !important;
          margin: 0;
     }

     #top-padding {
          padding-top: 110px !important;
      }
     
}

/* // Medium devices (tablets, 768px and up) DOWN */
@media (min-width: 768px) { 

     body {
          height: 100%;
          margin: 0;
      }



}

/* // Large devices (desktops, 992px and up) DOWN */ 
@media (min-width: 992px) { 
     body {
          height: 100%;
          margin: 0;
      }

      #top-padding {
          padding-top: 160px !important;
      }


 }

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

     html,
     body {
         height: 100%;
         margin: 0;
     }
     #top-padding,
     .top-padding-2 {
         padding-top: 100px !important;
     }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 

     body {
          height: 100%;
          margin: 0;
      }

 }