body, #footer {
  font-family: 'Montserrat', sans-serif;
}

/* style.css */

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
 
  max-width: 100%;
}

/* Container */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px;
}

/* Logo */
.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  
  padding: 0 0 5px 0;
  color: #ce0000;
  text-align: center;
}

#footer .footer-top {
  padding: 5px;
}

@media (max-width: 575px) {
  #footer .footer-top {
  padding: 15px 0 0 0;
  }
}

#footer .footer-top .footer-info {
  margin-bottom: 5px;
  color: #ce0000;
  text-align: center;
  padding: 5px 5px;
}

#footer .footer-top .social-links a {
  font-size: 30px;
  display: inline-block;
  color: #ce0000;
  line-height: 1;
  padding: 10px 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: 0.2s;
}

#footer .footer-top .social-links a:hover {
  background: #ce0000;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .footer-links {
  margin-bottom: 5px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.2s;
  display: inline-block;
  line-height: 1;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -25px 0 5px 0;
    text-align: center;
    font-size: 10px;
  }
}

#footer .copyright {
  margin: -25px 0 5px 0;
  border-top: 1px solid #ce0000;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
}

@media (max-width: 696px) {
  #footer .copyright {
    margin: -35px 0 5px 0;
    text-align: center;
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  #footer .copyright {
    text-align: center;
    font-size: 9px;
  }
}