.footer {
  background: #000000;
  color: #ffffff;
  font-family: "Satoshi", sans-serif;
}
.footer-part-1 {
  display: flex;
  justify-content: space-between;
}
.foot-sec-1 {
  margin: 1rem;
}
.foot-text-num {
  font-size: large;
  color: #ffffff;
  text-decoration: none;
}
.footer-link-sec {
  padding-left: 10rem;
}
.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-info {
  display: flex;
  justify-content: space-between;
  gap: 10rem;
  padding-top: 20px;
}
.footer-links {
  color: #ffffff;
  text-decoration: none;
}
.footer-links:hover {
  color: #dddddd;
  text-decoration: none;
  cursor: pointer;
}
.external:hover {
  color: #dddddd;
  text-decoration: none;
}
.foot-text-num:hover {
  color: #dddddd;
  text-decoration: none;
}
.footer-last-section {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.footer-btn {
  margin-left: 20px !important;
}
@media only screen and (max-width: 1000px) {
  .footer-info {
    gap: 2rem;
  }
}
@media only screen and (max-width: 800px) {
  .footer-info {
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
  }
  .footer-part-1 {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
  .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .foot-text-num {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-btn {
    margin-left: 6rem;
  }
}
