.disclaimer {
  max-width:100%;
  margin: 20px auto;
  padding: 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.disclaimer h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 800;
}
.disclaimer h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.disclaimer p {
  margin-bottom: 12px;
}
.disclaimer a {
  color:var(--black);
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  width: 100%;
  background: var(--black);
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: var(--black);
  padding: 60px 20px 30px 20px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 70px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: var(--red);
  color: #eee;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: var(--white);
  color: var(--red);
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid white;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: white;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid white;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--red);
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-contact a{
  text-decoration: none;
  color:#fdf58e;
}

#footer .footer-top .footer-contact a:hover{
  color:var(--white);
  transition:0.8s ease;
}
#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: var(--black);
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: var(--red);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

#footer .credits a{
  text-decoration: none;
  color:#fdf58e;
}

#footer .credits a:hover{
  color: var(--white);
}
/*--------------------------------------------------------------
# Responsive Footer
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #footer .footer-top {
      padding: 40px 15px 20px 15px;
  }

  #footer .footer-top .footer-info h3 {
      font-size: 22px;
  }

  #footer .footer-top .social-links a {
      width: 30px;
      height: 30px;
  }

  #footer .footer-top .footer-links ul li {
      padding: 8px 0;
  }
}

@media (max-width: 480px) {
  #footer .footer-top {
      padding: 30px 10px 15px 10px;
  }

  #footer .footer-top .footer-info h3 {
      font-size: 18px;
  }

  #footer .footer-top .social-links a {
      width: 28px;
      height: 28px;
  }

}
