.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px;
  color: #848484;
  background-color: #f2f2f2;
}

.footer-section img {
  width: 400px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-socials img {
  width: 50px;
  padding: 10px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav ul li {
  padding: 10px;
}

.footer-nav ul li:hover{
  font-weight: 700;
}

/* --MEDJA QUERY SECTION START- 
* For small screens
*/

@media only screen and (max-width: 600px) {
  .footer-section {
    padding-bottom: 20vh;
    font-size: var(--mobile-font3);
  }

  .footer-section img {
    width: 200px;
  }

  .footer-socials img {
    width: 30px;
    padding: 10px;
  }
}
