@import './colors.css';


.footer a {
  text-decoration: none;
  color: white;
}

.footer {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #0072c0;
  text-align: center;
  padding-top: 1.2em;
}

.image-container {
  margin-bottom: 1.25em;
}

.footer > ul > li {
    margin-bottom: 1.25em;
}

.footer > .image-container > a > img {
  height: 5em;
}

.footer > ul {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: white;
}

.list-item {
  display: flex;
}

.footer-text > p {
   color: white;
}

.list-item.contact {
  flex-direction: column;
  align-items: center;
}

.list-item.contact > p > a > i:before {
  font-weight: lighter;
  padding-right: 4px;
}

.list-item-address > p {
    color: white;
    font-size: 10pt !important;
}

.list-item.social {
    width: 12em;
    justify-content: space-around;
    flex-direction: column;
}

.social-wrapper {
    display: flex;
    justify-content: space-evenly;
}

.social-icon {
  height: 37px;
  width: 37px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.link > p > a {
    font-size: 12px;
}

.social-icon > a {
  display: flex;
}

.social-icon > a > i {
  font-size: 15pt;
}

@media only screen and (min-width: 1024px) {
  .footer {
    height: 11em;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 0;
  }

  .footer > ul {
    flex-direction: row;
  }

  .list-item.contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icon {
    height: 45px;
    width: 45px;
  }
  
  .social-icon > a > i {
    font-size: 22pt;
  }

  .image-container {
    margin-bottom: 0;
  }
  
  ul > li {
    margin-bottom: 0;
  }
}