.footer-container {
  height: 60vh;
  width: 100%;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}

.footer-info-container {
  display: flex;
  /* justify-content: left; */
  width: 60%;
  text-align: left;
  text-transform: uppercase;
  color: rgb(42, 123, 255);
}
.footer-info-container > h4 {
  margin: 0px;
}

.footer-nav,
.footer-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: left; */
  align-items: flex-start;
  font-size: 25px;
  margin: 0;
}

.footer-nav > div > a,
.footer-contact > div > h5 {
  display: block;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: left;
  font-size: 18px;
  line-height: 40px;
  margin: 0;
  padding: 0;
}

.footer-contact > div > p {
  font-size: 15px;
  margin: 0;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.521);
}

.copyright {
  color: rgba(255, 255, 255, 0.295);
}
.copyright > a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

@media (max-width: 700px) {
  .footer-container {
    height: auto;
  }
  .footer-info-container {
    flex-wrap: wrap;

    width: 90%;
    text-align: center;
  }
  .footer-nav,
  .footer-contact > div > h5,  
  .footer-contact > h4 {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
  }
  .footer-contact > div, .footer-nav > div{
    margin: auto;
    margin-bottom: 20px;

  }
  .footer-nav { 
    border-bottom: solid 1px rgb(255, 255, 255);
  }
  .footer-nav > div > a{
    text-align: center;
  }
}
