
.footer {
  background-color: #ffffff;
  
  padding: 60px 30px 30px;
  font-family: 'Overlock', sans-serif;
}

.footer-top {
  text-align: center;
  margin-bottom: 50px;
 font-family: 'Overlock', sans-serif;
}

.footer-heading {
  font-size:3rem;
  color: #000000;
  margin-bottom: 20px;
 font-family: 'Overlock', sans-serif;
}

.footer-heading span {
  color:  rgb(38, 82, 171);
}

.contact-btn {
  background-color:  rgb(38, 82, 171);
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.contact-btn:hover {
  background-color:  rgb(19, 69, 168);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

.footer-left {
  max-width: 60%;
}

.brand-name-footer {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color:  rgb(38, 82, 171);
}

.brand-tagline-footer {
  font-size:1.5rem;
  color: #0b0b0b;
}

.footer-links {
  text-align: right;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color:  rgb(38, 82, 171);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #393838;
  position: relative;
}
.footer-links ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color:  rgb(38, 82, 171);
  transition: width 0.3s;
}
.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #383838;
}
