/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  background-color: #f4f4f4;
  /* Light Grey background */
  padding: 80px 0 30px 0;
  color: #333;
  margin-top: 120px;
}

footer .footer-widget h4 {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

footer .footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #4562ed;
  /* Brand red accent */
}

footer .footer-widget p {
  color: #333;
  font-size: 15px;
  line-height: 28px;
  text-align: left;
  margin-bottom: 10px;
}

footer .footer-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

footer .footer-widget ul li {
  margin-bottom: 12px;
}

footer .footer-widget ul li a {
  color: #333;
  font-size: 15px;
  transition: all 0.3s;
}

footer .footer-widget ul li a:hover {
  color: #52d7fc;
  /* Brand blue hover */
  padding-left: 5px;
}

footer .last-row {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

footer .last-row p {
  margin: 0;
  color: #333;
  font-size: 14px;
}

footer .last-row p a {
  color: #4562ed;
  font-weight: 600;
}