.footer {
  background-color: #000;
  color: #fff;
  padding: 50px;
  display: flex;
  margin-top: 0px;
  justify-content: space-around;
  align-items: start;
}

.footer > div,
.footer > ul {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 0 20px;
}

.footer img {
  max-width: 200px;
  margin-top: -30px;
 
}
.footer i{
  background-color: #007BFF;
  padding: 5px 6px;  transition: 0.5s;
  border-radius: 5px;
}

.footer h1 {
  font-size: 14px;
  font-weight: 800;
}

.footer p {
  margin: 5px 0;
}

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

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

.footer .menu a {
  color: #fff;
  transition: 0.5s;
  text-decoration: none;
}

.footer i:hover {
  transition: 0.5s;
  color: #ffffff;
  background-color: #002770;
  text-decoration: none;
}.footer .menu a:hover {
  transition: 0.5s;
  color: #007BFF;

  text-decoration: none;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer .social-icons i {
  font-size: 1.5rem;
}

.footer-strip {
  background-color: #111;
  color: #8a8888;
  text-align: center;
  padding: 10px 0;
  margin-top: 0px;
}

.footer > div,
.footer > ul {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .footer {
    background-color: #000;
    color: #fff;
    padding: 50px;
    display: grid;
    gap: 60px;
   
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer .left{
    padding: 0px;
    gap: 20px;
  }  .footer .left p{
   padding-bottom: 6px;
  }
  .footer > div,
  .footer > ul {
    display: flow;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
  }

  .footer-strip {
    background-color: #111;
    color: #8a8888;
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
    margin-top: 0px;
  }
}
body.dark-mode .footer {
  background-color: #000;
  color: #fff;
}