.footer {
  
  flex-wrap: wrap;
  padding: 0% 0% 0% 0%;

  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;

  box-shadow: 0 -6px 10px 0 rgba(0, 0, 0, 0.075);
  background-color: #0054a6;
}
.part {
  width: 100%;
 
  padding: 0rem;
  text-align: center;
  
}
.part img {
  width: 120px;
  height: auto;
 
}
.part h5 {
  font-weight: bold;
}
.part p {
  color: gray;
  font-size: 0.8rem;
}
.part li {
  margin: 1rem 0;

}
.part ol {

  display:inline;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.part ol li {

  list-style: none;
  font-size: 1.2rem;
  display:inline;
  color: white;

}
.part ul li {
  font-size: 0.9rem;
  font-weight: bold;
}

.part a
{
  color: white;
}


@media screen and (max-width: 1366px) {
  .footer {
    justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .part {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .part ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
  }
  .part ol {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
  }
  .part ul li {
    width: max-content;
    margin: 0;
  }
  .part ol li {
    width: max-content;
    margin: 0;
  }
  .part ol li > i {
    font-size: 1rem;
  }
  .part ol li a i {
    font-size: 1.5rem;
  }
}