.footer {
  background-color: #16266c;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.leftContainer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}

.social {
  text-align: flex-end;
}

.icons {
  margin-right: 5px;
  font-size: 20px;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.addressline {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.addressline2{
  text-align: flex-end;
}

.address p {
  margin: 0px;
}
.logos {
  display: flex;
  gap: 10px;
  align-items: center; 
}

.logos img{
  height: 100px;
  width: auto;
}

@media (max-width: 640px) {
  .footer {
    flex-direction: column;
  }
  .logos img{
    height: 70px;
    width: auto;
  }
  .logos {
    justify-content: space-around;
  }

  .addressline{
    justify-content: center;
  }

  .addressline2{
    text-align: start;
  }
}
