.site-footer {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-footer {
  padding: 60px 0 40px;
}

.custom-footer .footer-top {
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
  padding-right: 140px;
  width: 100%;
}

.custom-footer .footer-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.custom-footer .footer-top-list {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-footer .footer-top-list > li {
  flex: 0 0 25%;
  max-width: 25%;
}

.custom-footer .footer-top-list li.footer-about {
  display: flex;
  flex-direction: column;
  gap: 10px;

  img {
    max-width: 180px;
  }
}

.custom-footer .footer-top-list li.footer-about img {
  width: 100px;
}

.custom-footer .footer-top-list li .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-footer .footer-top-list li h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.custom-footer .footer-top-list li .footer-links ul {
  list-style: none;
}

.custom-footer .footer-bottom-icon {
  position: absolute;
  bottom: 40px;
  right: 0;
  max-width: 100px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#bloghash-copyright.contained-separator > .bloghash-container:before {
  display: none;
}
.bloghash-copyright-layout-1
  #bloghash-copyright
  > .bloghash-container
  > .bloghash-flex-row
  > div {
  justify-content: center !important;
  padding: 0 !important;
}

@media only screen and (max-width: 767px) {
  .custom-footer {
    padding-bottom: 0;
  }
  .custom-footer .footer-bottom {
    display: none;
  }

  .custom-footer .footer-top-list {
    flex-direction: column;
  }

  .custom-footer .footer-top-list > li {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .custom-footer .footer-top {
    margin-bottom: 0;
    padding-bottom: 40px;
    padding-right: 0;
  }
}
