.footer {
  margin-top: auto;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.footer .info {
  margin: 0px;
  padding: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.footer .info span {
  margin-top: 5%;
  font-size: 20px;
  font-weight: 500;
}

.footer img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 80px;
}

.footer .info a {
  text-decoration: none;
  color: inherit;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer .info a:focus {
  outline: 2px solid #4f75ff;
  outline-offset: 2px;
}

/* Extra small devices (phones) */
@media (max-width: 575.98px) {
  .footer {
    height: 16%;
  }

  .title-icon h1 {
    font-size: 15px;
    text-align: center;
  }

  .title p {
    font-size: 11px;
    text-align: center;
  }

  .footer .info {
    height: 65%;
    flex-direction: column;
    background-color: white;
    /* padding-bottom: 3%; */
  }

  .footer img {
    transform: translateY(-1.5rem);
  }

  .footer .info span {
    margin-top: 0;
    font-size: 9px;
  }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer .info {
    margin: 0px;
    padding: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    /* flex-direction: column; */
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .footer img {
    width: 100%;
    /* transform: translateY(4%); */
  }

  .footer .info span {
    font-size: 14px;
  }
}

/* tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer img {
    width: 100%;
    /* transform: translateY(2%); */
  }
}

/* Small desktops large tablets*/
@media (min-width: 992px) and (max-width: 1199.99px) {
  .footer img {
    width: 100%;
    /* transform: translateY(2%); */
  }
}

/* Medium desktops */
@media (min-width: 1200px) and (max-width: 1360px) {}

/* Large desktops */
@media (min-width: 1360px) {}