.footer{
  background: #041122;
}
footer{
  padding: 5vh 2vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  overflow-x: hidden;
}
#logo img{
  height: 30vh;
  border-radius: 50%;
}
.service{
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.service h3{
  font-size: 2rem;
  font-weight: 700;
}
.service ul{
  display: flex;
  flex-direction: column;
  gap: 2vh;
  list-style: none;
}
.service ul :hover{
  color: green;
}
.service ul a{
  text-decoration: none;
  font-size: 1.1rem;
  color: white;
}
.quick-link{
  display: flex;
  flex-direction: column;
  gap: 5vh;
}
.quick-link h3{
  font-size: 2rem;
  font-weight: 700;
}
.social-link ul{
  display: flex;
  gap: 10px;
  justify-content: center;
}
.social-link ul :hover{
  transform: scale(1.1);
  transition: ease;
}
.social-link a img{
  height: 5vh;
  border-radius: 50%;
}
.contact{
  max-width: 100%;
  display: flex;
  justify-content: space-around;
  font-size: 1.4rem;
  font-weight: 400;
  /* gap: 50vh; */
  color: white;
}

@media (max-width:600px) {
  footer{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 4vh;
    padding: 0;
  }
  #logo img{
    height: 0;
  }
  .service ul{
    gap: 1vh;
  }
  .service h3{
    font-size: 1.5rem;
    font-weight: 600;
  }
  .service ul a{
    font-size: 1rem;
  }
  .quick-link{
    gap: 1vh;
  }
  .quick-link h3{
    font-size: 1.5rem;
    font-weight: 600;
  }
  .contact{
    display: flex;
    flex-direction: column;
    gap: 2vh;
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 3vh;
    padding-top: 2vh;
  }
}

@media (min-width:600px) {
  .footer{
    width: 100%;
    padding: 0;
    z-index: 100;
  }
  #logo img{
    height: 0;
  }
  footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 0vh;
    max-width: 100%;
  }
  .service{
    padding: 0;
  }
  .service ul{
    gap: 1vh;
  }
  .service h3{
    font-size: 1.5rem;
    font-weight: 600;
  }
  .service ul a{
    font-size: 1rem;
  }
  .quick-link{
    gap: 1vh;
  }
  .quick-link h3{
    font-size: 1.5rem;
    font-weight: 600;
  }
  .contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    max-width: 100%;
    padding: 20px;
    font-size: 1.2rem;
  }
}

@media (min-width:900px) {
  .footer{
    background: #041122;
    display: flex;
    justify-content: center;
    gap: 5vh;

  }
  footer{
    padding: 5vh 2vw;
    gap: 10vw;
  }
  #logo img{
    height: 30vh;
  }
  .service h3{
    font-size: 2rem;
    font-weight: 700;
  }
  .service ul{
    display: flex;
    flex-direction: column;
    gap: 2vh;
    list-style: none;
  }
  .service ul a{
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
  }
  .quick-link{
    display: flex;
    flex-direction: column;
    gap: 3vh;
  }
  .quick-link h3{
    font-size: 2rem;
    font-weight: 700;
  }
  .social-link ul{
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .social-link a img{
    height: 5vh;
    border-radius: 50%;
  }
  .contact{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}