
/* footer style 2 */

.footer-style2 .social-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-style2 .social-link li a {
  background: transparent;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
  width: clamp(28px, 1.667vw, 40px);
  height: clamp(28px, 1.667vw, 40px);
  display: grid;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
}

@media (max-width: 490px) {
  .footer-style2 .social-link li a {
    width: 32px;
    height: 32px;
  }
}

.footer-style2 .social-link li a svg {
  width: clamp(14px, 0.833vw, 32px);
}

@media (max-width: 490px) {
  .footer-style2 .social-link li a svg {
    width: 16px;
    height: 16px;
  }
}

.footer-style2 .social-link li a svg path {
  transition: all 0.5s ease-in-out;
  fill: var(--primary-color);
}

.footer-style2 .social-link li:hover a {
  transition: all 0.5s ease-in-out;
  background-color: var(--primary-color);
}

.footer-style2 .social-link li:hover a svg path {
  transition: all 0.5s ease-in-out;
  fill: #fafafa;
}

.footer-style2 .social-link li:hover a  {
  color: white;
}
