.medical-apps .standards {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  border-radius: 5vw;
  background-color: var(--dark-blue);
  padding: 5vw;
  font-size: 2em;
  width: 80%;

}

.medical-apps .standards-text {
  color: var(--neutrals-white, #FFF);
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.25px;
  margin-left: 2%;
  margin-right: 2%;
}

.medical-apps .standards-btn {
  cursor: pointer;
  background-color: var(--dark-blue);
  border: 5px solid white;
  border-radius: 1.5vw;
  justify-self: center;
  padding: 2vw;

}

.medical-apps .standards-btn-text {
  color: var(--neutrals-white, #FFF);
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.25px;
  font-size: 2em;
}

.medical-apps .link-button:hover {
  box-shadow: 0px 0px 10px 2px white;

}

@media screen and (max-width: 992px) {

  .medical-apps .standards {
    border-radius: 10vw;
    font-size: 1.5em;
    padding: 7vw;
  }

  .medical-apps .standards-btn-text {
    font-size: 1.5em;
  }

  /* .medical-apps .standards-text {
    font-size: 1.5em;
  } */


}