.footer {
  background-color: var(--dark-blue);
  min-height: 5vw;
}

.footer-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-text {
  cursor: pointer;
  color: #FFF;
  text-align: justify;
  font-family: Roboto;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.25px;
}

.footer-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5vw;
  align-items: center;
  margin-top: 1vw;
}

.footer-group-socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1vw;
  align-items: center;
  margin-top: 1vw;
}

.icon-social {
  width: 1.5vw;
  height: 1.5vw;
}

.medical-apps .icon-linkedin {
  cursor: pointer;
  background-image: url(../img/icon-linkedin.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--light-blue);
  border-radius: 50%;
  padding: 1.5vw;
}


.medical-apps .icon-instagram {
  cursor: pointer;
  background-image: url(../img/icon-instagram.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--light-blue);
  border-radius: 50%;
  padding: 1.5vw;
}



.medical-apps .icon-facebook {
  cursor: pointer;
  background-image: url(../img/icon-facebook.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--light-blue);
  border-radius: 50%;
  padding: 1.5vw;
}

@media screen and (max-width: 992px) {
  .footer {
    min-height: 10vh;
    display: flex;
    justify-content: center;
    width: 100%;

  }

  .medical-apps .footer-wrapper {
    width: 100%;
    justify-content: space-around;
  }

  .footer-group-socials {
    gap: 2vw;

  }

  .icon-wrapper {
    padding: 1vw;
  }

  .icon-social {
    width: 8vw;
    height: 8vw;
  }


}