footer {
  background-color: var(--white);
}
footer .footer-top {
  padding: 50px 0;
}
.footer-top .row-1 .col-a .logo img {
  max-width: 250px;
}
footer .footer-top .row-2 {
  padding-top: 30px;
}
footer .footer-top .row-2 .col-a .heading {
  max-width: 900px;
  margin: auto auto 40px;
  text-align:center;
}
footer .footer-top .row-2 .col-a h2 {
  line-height: 1.1em;
  font-size: clamp(26px, 4.5vw, 36px);
  /* font-size: clamp(26px, 4.5vw, 48px); */
  font-weight: var(--fw-400);
  color: var(--text-color);
  /* margin-bottom: 40px; */
  margin-bottom: 10px;
}
footer .footer-top .row-2 .col-a p {
  font-size: 16px;
  color: var(--primary-dark-gray);
}
footer .footer-top .row-2 .col-a .contact-info {
  justify-items: center;
}
footer .footer-top .row-2 .col-a .contact-info .col h3 {
  margin-bottom: 5px;
  color: var(--primary-dark-pink);
  font-weight: var(--fw-500);
  font-size: 16px;
  font-family: var(--font-family-montserrat);
}
footer .footer-top .row-2 .col-a .contact-info .col p,
footer .footer-top .row-2 .col-a .contact-info .col p a {
  font-family: var(--font-family-marcellus);
  font-size: 18px;
  color: var(--text-color);
}
footer .footer-top .row-2 .col-a .contact-info .col.social-links > div {
  padding-top: 5px;
}
footer .footer-top .row-2 .col-b h3 {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 18px;
  font-weight: var(--fw-400);
  font-family: var(--font-family-marcellus);
}
footer .footer-top .row-2 .col-b p {
  color: var(--primary-dark-gray);
  font-weight: var(--fw-500);
}
footer .footer-bottom .row-1 {
  text-align: center;
  border-top: 1px solid var(--divider-color);
  padding: 50px 0;
}

footer .footer-bottom .row-1 .col-a ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
footer .footer-bottom .row-1 .col-a ul li a {
  font-family: var(--font-family-marcellus);
  font-weight: var(--fw-600);
  font-size: 16px;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
footer .footer-bottom .row-1 .col-a ul li:hover a {
  color: var(--primary-dark-pink);
}
footer .footer-bottom .row-1 .col-a ul li:hover a.active {
    color: var(--primary-dark-pink);
}
footer .footer-bottom .row-1 .col-b p {
  color: var(--primary-dark-gray);
  font-weight: var(--fw-500);
  font-size: 16px;
}
footer .footer-bottom .row-1 .col-b p a {
  font-weight: var(--fw-600);
  color: #0b134b;
}

@media (min-width: 768px) {
  footer .footer-top .row-2 .col-a p {
    font-size: 18px;
  }
  footer .footer-top .row-2 .col-b h3 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  footer .footer-top .row-2 .col-a .contact-info .col p,
  footer .footer-top .row-2 .col-a .contact-info .col p a {
    font-size: 20px;
  }
  footer .footer-bottom .row-1 .col-a ul {
    justify-content: flex-start;
  }
  footer .footer-bottom .row-1 .col-a {
    text-align: left;
  }
  footer .footer-bottom .row-1 .col-b {
    text-align: right;
  }
}
