.footer {
  background: #fff;
  margin-top: 0;

  position: relative;
  z-index: 25;
  clear: both;
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-logo {
  max-width: 420px;
}

.footer-about {
  line-height: 1.8;
  color: #202020;
  margin: 0;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:nth-child(1) {
  background: #1877f2;
}

.footer-social a:nth-child(2) {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.footer-social a:nth-child(3) {
  background: #0a66c2;
}

.footer-social a:nth-child(4) {
  background: #000;
}

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

.footer-divider {
  margin: 20px 0 60px;
  opacity: 0.2;
}

.footer-title {
  color: #37378d;

  font-weight: 700;
  margin-bottom: 28px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #2d2d2d;
  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff9c22;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;

  color: #2d2d2d;
}

.footer-contact svg {
  color: #444;

  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  background: #37378d;
  padding: 22px 0;
  margin-top: 70px;
}

.footer-bottom p {
  color: #fff;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.footer-bottom-links a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ff9c22;
}

@media (max-width: 991px) {
  .footer-top {
    text-align: center;
  }

  .footer-about {
    margin-top: 25px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 25px;
  }

  .footer-title {
    margin-top: 20px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
  }
}
body{
    overflow-x:hidden;
}