#footer {
  position: relative;
  z-index: 2;
  background-color: #06051a;
  padding: 100px 0 20px;
  border-top: 1px solid #373657;
}
.footer-logo img {
  max-width: 208px;
  margin-bottom: 45px;
}
.footer-text {
  max-width: 324px;
  font-size: 16px;
  margin-bottom: 50px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  transition: all 0.3s ease;
}
.social-icons a::before {
  position: absolute;
  content: "";
  inset: 1px;
  border-radius: 12px;
  background-image: linear-gradient(to bottom, rgba(18, 17, 36, 0.5), #121124);
  z-index: -1;
}
.social-icons a:after {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #373557, #0e0d21);
  inset: 0;
  border-radius: 12px;
  z-index: -2;
}
.social-icons a:hover {
  background-color: #168cfa;
}
.social-icons a:hover::before,
.social-icons a:hover::after {
  opacity: 0;
}
.social-icons img {
  width: 14px;
}
.social-icons-mob {
  display: none;
}
.footer-menu-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-menu-list li a {
  color: #bab9cc;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer-menu-list li a:hover {
  color: #168cfa;
}
h6 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-bottom {
  margin-top: 100px;
  border-top: 1px solid #373657;
  padding-top: 28px;
}
.privacy-wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 60px;
}
.footer-bottom p,
.privacy-wrap a {
  color: #bab9cc;
  font-size: 14px;
  transition: all 0.3s ease;
}
.privacy-wrap a:hover {
  color: #168cfa;
}

@media (max-width: 767px) {
  #footer {
    padding: 90px 0 20px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .footer-bottom p {
    text-align: center;
    font-size: 14px;
  }
  .privacy-wrap {
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
  }
  .social-icons {
    display: none;
  }
  .social-icons-mob {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  .footer-logo img {
    max-width: 150px;
    margin: 0 auto 20px;
  }
  .footer-text {
    font-size: 14px;
    text-align: center;
  }
}
