

/* ==========================================================================
                    General  Styling
  =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
a{
  text-decoration: none !important;
}
body{
    background: #fff;
    font-family: 'Montserrat', sans-serif !important;
}


/* ===============================================================
                  Footer Styling
  ================================================================ */
  
footer{
  font-family: 'Montserrat', sans-serif;
  background: url(../img/footer-bg.png);
  padding: 20px 0px;
}
footer h2 {
    color: #961617;
    padding: 0px;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: none;
    font-weight: bold;
    padding-top: 20px;
}

footer ul li{
  list-style: none;
  font-family: 'Montserrat', sans-serif !important;
}
footer ul li a{
  color: #000000 !important;
    padding: 0px;
    font-size: 14px;
    line-height: 27px;
}
footer ul li a:hover {
  text-decoration: none;
}
footer .fab{
  color: black;
  font-size: 21px;
  margin-right: 20px;
}
.footer-bot{
      background: #861516;
      color: white;
      padding: 20px 0px 10px 0px;
}


