/**
 * Paleta de Colores
 */
b {
  font-weight: 700;
}
h4 {
  font-size: 1.45rem;
}
body {
  background: #ffffff;
  color: #123761;
  font-family: Arial, sans-serif;
  min-width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body #headerMenu {
  position: fixed;
  z-index: 999;
  transition: background 0.5s;
}
body #headerMenu #menuHome {
  margin: 15px 0;
  width: 100vw;
}
body #headerMenu #menuHome div nav {
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: row-reverse;
}
body #headerMenu #menuHome div nav .navbar-brand {
  width: 25%;
}
body #headerMenu #menuHome div nav .navbar-brand img {
  width: 25%;
  float: right;
}
body #headerMenu #menuHome div nav #homeMenuOptions {
  width: 100%;
}
body #headerMenu #menuHome div nav #homeMenuOptions .navbar-nav .nav-item {
  border-bottom: 2px solid transparent;
}
body #headerMenu #menuHome div nav #homeMenuOptions .navbar-nav .nav-item .nav-link {
  color: #123761;
  font-size: 1.1vw;
  margin-right: 20px;
}
body #headerMenu #menuHome div nav #homeMenuOptions .navbar-nav .nav-item.active .nav-link,
body #headerMenu #menuHome div nav #homeMenuOptions .navbar-nav .nav-item:hover .nav-link {
  background: transparent;
  border-bottom: 2px solid #123761;
}
body #headerMenu.scrollDown {
  background: #e0e0e0;
}
body #imgBackgroundHome {
  background-image: url('../img/home.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  background-position: center;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.44);
}
body #contentPosologias {
  margin-bottom: 50px;
}
body #contentPosologias #titleContent h1 {
  color: #123761;
  font-size: 2vw;
  font-weight: 700;
  width: 20%;
  margin: 0 auto;
  border-bottom: 3px solid #123761;
  text-align: center;
  padding-bottom: 5px;
}
body #contentPosologias #titleContent h5 {
  font-size: 1.4vw;
  width: 40%;
  margin: 15px auto;
  text-align: center;
}
body #contentPosologias .row {
  width: 90%;
  margin: 0 auto;
}
body #contentPosologias .row .cardPosologia {
  width: 100%;
  margin-top: 60px;
}
body #contentPosologias .row .cardPosologia .card {
  border-radius: 50px;
  margin: 0 auto;
  width: 90%;
  color: #123761 !important;
}
body #contentPosologias .row .cardPosologia .card .shadowCard {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  filter: alpha(opacity=50);
  opacity: 0.35;
  z-index: 800;
  border-radius: 50px;
}
body #contentPosologias .row .cardPosologia .card .card-title {
  background: #ebebeb;
  padding: 2rem 1rem;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  margin-bottom: 0;
}
body #contentPosologias .row .cardPosologia .card .card-title .imgCard {
  background-repeat: no-repeat;
  background-size: cover;
  height: 27vh;
  width: 90%;
  margin: 0 auto;
  border-radius: 50px;
  background-position: center;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.44);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
body #contentPosologias .row .cardPosologia .card .card-title #imgCardDiclofenaco {
  background-image: url('../img/diclofenaco/header.jpg');
}
body #contentPosologias .row .cardPosologia .card .card-title #imgCardPrenatales {
  background-image: url('../img/prenatales/header.jpg');
}
body #contentPosologias .row .cardPosologia .card .card-title #imgCardMetformina850-5 {
  background-image: url('../img/metformina850-5/fondo.jpg');
  -moz-transform: scaleX(1);
  -o-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
body #contentPosologias .row .cardPosologia .card .card-title .row {
  height: fit-content;
  margin: -37% 0 0 15%;
  width: 75%;
  position: absolute;
}
body #contentPosologias .row .cardPosologia .card .card-title .row div img {
  width: 110%;
  margin-left: -15%;
  transition: width 0.5s;
  margin-top: -10%;
}
body #contentPosologias .row .cardPosologia .card .card-title .row:hover {
  cursor: pointer;
}
body #contentPosologias .row .cardPosologia .card .card-title .row:hover div img {
  width: 155%;
}
body #contentPosologias .row .cardPosologia .card .card-body {
  background: #e0e0e0;
  border-radius: 0 0 50px 50px;
  padding: 1.5rem 2rem;
  color: #123761;
  height: 30vh;
}
body #contentPosologias .row .cardPosologia .card .card-body h4 {
  font-weight: 700;
}
body #contentPosologias .row .cardPosologia .card .card-body .info {
  margin-top: -5px;
  font-size: 0.7vw;
}
body #contentPosologias .row .cardPosologia .card .card-body hr {
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  margin: 0 0 0.5rem 0;
}
body #contentPosologias .row .cardPosologia .card .card-body h6 {
  font-weight: 500;
  font-size: 0.85rem;
}
body #contentPosologias .row .cardPosologia .card:hover {
  cursor: pointer;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
body #contentPosologias .row .cardPosologia .card:hover .shadowCard {
  display: block;
}
body #contentPosologias .row .cardPosologia .card:hover .card-title .row div img {
  width: 125%;
}
body #infoHome {
  position: absolute;
  margin-top: 40vh;
  width: 100%;
}
body #infoHome div {
  text-align: center;
}
body #infoHome div h5 {
  font-size: 1.75vw;
}
body #infoHome div h1 {
  font-size: 4vw;
  font-weight: 700;
}
body #infoDiclofenaco,
body #infoPrenatales,
body #infoMetformina850-5 {
  display: contents;
}
body #infoDiclofenaco #imgBackground,
body #infoPrenatales #imgBackground,
body #infoMetformina850-5 #imgBackground {
  background-repeat: no-repeat;
  height: 80vh;
  margin-bottom: 80px;
  background-position: center;
}
body #infoDiclofenaco #headerBanner,
body #infoPrenatales #headerBanner,
body #infoMetformina850-5 #headerBanner {
  height: 80vh;
  position: absolute;
  width: 100%;
}
body #infoDiclofenaco #headerBanner div,
body #infoPrenatales #headerBanner div,
body #infoMetformina850-5 #headerBanner div {
  margin-top: 5%;
}
body #infoDiclofenaco #headerBanner div #redirectINFASA #imgLogo,
body #infoPrenatales #headerBanner div #redirectINFASA #imgLogo,
body #infoMetformina850-5 #headerBanner div #redirectINFASA #imgLogo {
  position: absolute;
  width: 8% !important;
  right: 0;
  z-index: 999;
}
body #infoDiclofenaco #headerBanner div #redirectINFASA #imgLogo:hover,
body #infoPrenatales #headerBanner div #redirectINFASA #imgLogo:hover,
body #infoMetformina850-5 #headerBanner div #redirectINFASA #imgLogo:hover {
  cursor: pointer;
}
body #infoDiclofenaco #headerBanner div .row div,
body #infoPrenatales #headerBanner div .row div,
body #infoMetformina850-5 #headerBanner div .row div {
  text-align: justify;
}
body #infoDiclofenaco #headerBanner div .row div img,
body #infoPrenatales #headerBanner div .row div img,
body #infoMetformina850-5 #headerBanner div .row div img {
  width: 80%;
  float: right;
  margin-top: -12% !important;
}
body #infoDiclofenaco #headerBanner div .row div h4,
body #infoPrenatales #headerBanner div .row div h4,
body #infoMetformina850-5 #headerBanner div .row div h4 {
  margin-top: 10%;
  font-weight: 700;
  color: #123761;
  font-size: 1.65vw;
}
body #infoDiclofenaco #headerBanner div .row div span,
body #infoPrenatales #headerBanner div .row div span,
body #infoMetformina850-5 #headerBanner div .row div span {
  font-size: 1.2vw;
}
body #infoDiclofenaco #imgBackground {
  background-image: url('../img/diclofenaco/header.jpg');
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.65);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
body #infoDiclofenaco #infoRecomendacion div {
  display: table;
}
body #infoDiclofenaco #infoRecomendacion div #cardkids {
  z-index: 100;
}
body #infoDiclofenaco #infoRecomendacion div #cardCardio {
  z-index: 75;
}
body #infoDiclofenaco #infoRecomendacion div #cardRenal {
  z-index: 50;
}
body #infoDiclofenaco #infoRecomendacion div #cardHepatica .card-header,
body #infoDiclofenaco #infoRecomendacion div #cardCardio .card-header {
  opacity: 0.9;
}
body #infoDiclofenaco #infoRecomendacion div .card {
  width: 25%;
  float: left;
  height: 100%;
  -webkit-box-shadow: 17px 13px 43px -15px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 17px 13px 43px -15px rgba(0, 0, 0, 0.45);
  box-shadow: 17px 13px 43px -15px rgba(0, 0, 0, 0.45);
}
body #infoDiclofenaco #infoRecomendacion div .card .card-header {
  width: 100%;
  background: #123761;
  color: #ffffff;
  height: 25%;
}
body #infoDiclofenaco #infoRecomendacion div .card .card-header h5 {
  display: table-cell;
  vertical-align: middle;
  font-size: 0.85vw;
}
body #infoDiclofenaco #infoRecomendacion div .card .card-body {
  text-align: justify;
  padding: 1.5rem;
  height: 75%;
  display: table;
}
body #infoDiclofenaco #infoRecomendacion div .card .card-body span {
  display: table-cell;
  vertical-align: middle;
  font-size: 0.65vw;
}
body #infoDiclofenaco #infoPacientes div div div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  color: #123761;
  text-align: justify;
}
body #infoDiclofenaco #infoPacientes div div div img {
  width: 100%;
}
body #infoDiclofenaco #infoPacientes div div div span {
  display: table-cell;
  vertical-align: middle;
  font-size: 1vw;
}
body #infoDiclofenaco #infoContra {
  background: #ebebeb;
  padding: 5rem 1rem 3rem 1rem;
}
body #infoDiclofenaco #infoContra div div {
  color: #123761;
}
body #infoDiclofenaco #infoContra div div #rightList {
  text-align: justify;
}
body #infoDiclofenaco #infoContra div div #rightList ul li {
  margin-bottom: 25px;
}
body #infoDiclofenaco #infoContra div div div h4 {
  font-size: 1.4vw;
}
body #infoDiclofenaco #infoContra div div div h6 {
  font-size: 1.2vw;
}
body #infoDiclofenaco #infoContra div div div h4,
body #infoDiclofenaco #infoContra div div div h6 {
  font-weight: 700;
}
body #infoDiclofenaco #infoContra div div div span,
body #infoDiclofenaco #infoContra div div div ul {
  font-size: 1vw;
}
body #infoDiclofenaco #infoContra div div div ul ul li {
  list-style-type: none;
}
body #infoDiclofenaco #infoContra div div div ul ul li:before {
  content: "- ";
}
body #infoDiclofenaco #infoPrecauciones {
  color: #123761;
}
body #infoDiclofenaco #infoPrecauciones div .row div {
  text-align: justify;
  display: table;
}
body #infoDiclofenaco #infoPrecauciones div .row div h4 {
  font-size: 1.6vw;
  font-weight: 700;
  margin-bottom: 0.8vw;
}
body #infoDiclofenaco #infoPrecauciones div .row div span {
  font-size: 1vw;
}
body #infoDiclofenaco #infoPrecauciones div .row div #card1 {
  z-index: 100;
}
body #infoDiclofenaco #infoPrecauciones div .row div #card2 {
  z-index: 75;
}
body #infoDiclofenaco #infoPrecauciones div .row div #card3 {
  z-index: 50;
}
body #infoDiclofenaco #infoPrecauciones div .row div #card4 {
  z-index: 25;
}
body #infoDiclofenaco #infoPrecauciones div .row div #card1,
body #infoDiclofenaco #infoPrecauciones div .row div #card3 {
  background: #dedede;
}
body #infoDiclofenaco #infoPrecauciones div .row div .card {
  width: 25%;
  float: left;
  height: 100%;
  -webkit-box-shadow: 17px 13px 43px -15px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 17px 13px 43px -15px rgba(0, 0, 0, 0.45);
  box-shadow: 17px 13px 43px -15px rgba(0, 0, 0, 0.45);
}
body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body {
  text-align: justify;
  padding: 1.25rem 1.75vw;
  display: table;
}
body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body span {
  font-size: 1vw;
}
body #infoDiclofenaco #infoRiesgosCol div .row div,
body #infoDiclofenaco #infoRiesgosCol2 div .row div {
  color: #123761;
  text-align: justify;
}
body #infoDiclofenaco #infoRiesgosCol div .row div h6,
body #infoDiclofenaco #infoRiesgosCol2 div .row div h6 {
  font-weight: 700;
  font-size: 1.25vw;
}
body #infoDiclofenaco #infoRiesgosCol div .row div span,
body #infoDiclofenaco #infoRiesgosCol2 div .row div span {
  font-size: 1vw;
}
body #infoDiclofenaco #infoRespiratorios {
  background: #ebebeb;
  padding: 5rem 1rem 3rem 1rem;
}
body #infoDiclofenaco #infoRespiratorios div .row div {
  color: #123761;
  text-align: justify;
}
body #infoDiclofenaco #infoRespiratorios div .row div img {
  width: 100%;
}
body #infoDiclofenaco #infoRespiratorios div .row div h6 {
  font-size: 1.25vw;
  margin-top: 35px;
  font-weight: 700;
}
body #infoDiclofenaco #infoRespiratorios div .row div span {
  font-size: 1vw;
}
body #infoDiclofenaco #carouselMobile,
body #infoDiclofenaco #riesgosMobile {
  display: none;
}
body #infoPrenatales {
  color: #123761;
}
body #infoPrenatales #imgBackground {
  background-image: url('../img/prenatales/header.jpg');
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.65);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
body #infoPrenatales #infoFormula div .row .divTitle {
  position: absolute;
  display: block;
  height: fit-content;
  width: 50%;
  right: 0;
  padding-top: 25px;
}
body #infoPrenatales #infoFormula div .row #infoVitaminas {
  margin-top: 100px;
}
body #infoPrenatales #infoFormula div .row div img {
  width: 100%;
  height: 100%;
}
body #infoPrenatales #infoFormula div .row div h4 {
  font-weight: 700;
  font-size: 1.3vw;
}
body #infoPrenatales #infoFormula div .row div .row div span {
  font-weight: 700;
  font-size: 1vw;
}
body #infoPrenatales #infoFormula div .row div .row div small span {
  font-size: 0.9vw;
}
body #infoPrenatales #infoFormula div .row div .row .value {
  padding-left: 50px;
}
body #infoPrenatales #infoFormula div .row div .row .value span {
  font-weight: 400;
}
body #infoPrenatales #infoIndicaciones {
  background: #ebebeb;
  padding: 5rem 1rem 3rem 1rem;
  margin-top: 75px;
}
body #infoPrenatales #infoIndicaciones div .row div img {
  width: 100%;
}
body #infoPrenatales #infoIndicaciones div .row div #infoDosis {
  margin-top: 13vh;
}
body #infoPrenatales #infoIndicaciones div .row div #infoDosis span {
  font-size: 0.85vw;
}
body #infoMetformina850-5 {
  color: #123761;
}
body #infoMetformina850-5 #imgBackground {
  height: 85vh !important;
  background-image: url(../img/metformina850-5/fondo.jpg);
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.65);
  background-position: 50% 100% !important;
}
body #infoMetformina850-5 #headerBanner div .row div img {
  width: 75%;
}
body #infoMetformina850-5 #headerBanner div .row div h4 {
  margin-top: 30%;
  font-size: 2.3vw;
}
body #infoMetformina850-5 #infoMet .infoBox .box {
  margin: 2rem auto;
  width: 75%;
  background: #ebebeb;
  padding: 1.5rem;
  height: 27.5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body #infoMetformina850-5 #infoMet .infoBox .box .title {
  font-weight: 700;
}
body #footer {
  background: #e0e0e0;
  color: #123761 !important;
  padding: 25px 0;
  font-size: 0.85vw;
}
body #footer .linkMap {
  text-align: center;
}
body #footer div a {
  color: #123761;
}
body #footer div a i {
  margin-right: 10px;
  font-size: 1.5rem;
  vertical-align: middle;
}
body #footer div a img {
  width: 1.5rem;
  vertical-align: middle;
  margin-right: 5px;
}
body #footer div a span {
  vertical-align: middle;
}
body #footer div a:hover {
  text-decoration: underline;
}
body #footer div h5 {
  font-size: 0.8vw;
}
body #footer .borderWhite {
  border-left: 2px solid #ffffff;
}
body #footer hr {
  width: 85%;
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body #footer .hrMobile {
  display: none;
}
/** Small devices */
@media (max-width: 1199px) {
  body #headerMenu {
    position: fixed;
    background: #dedede !important;
    padding: 0.25rem 0 0.25rem 0.5rem;
  }
  body #headerMenu #menuHome {
    margin-top: 0;
  }
  body #headerMenu #menuHome div nav {
    display: table;
    flex-direction: initial;
    padding: 0 2rem;
  }
  body #headerMenu #menuHome div nav .navbar-brand {
    display: block;
    margin-right: 2rem;
    width: auto;
  }
  body #headerMenu #menuHome div nav .navbar-brand img {
    width: 7.5%;
    margin-top: 1%;
  }
  body #headerMenu #menuHome div nav .navbar-toggler {
    margin-top: 0.5%;
  }
  body #headerMenu #menuHome div nav .navbar-toggler i {
    vertical-align: middle;
    color: #123761;
    font-size: 3vw;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions {
    width: auto;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader .nav-item .nav-link {
    font-size: 1.85vw;
    padding-left: 15px;
  }
  body #imgBackgroundHome {
    height: 70vh;
  }
  body #infoHome {
    margin-top: 25vh;
  }
  body #infoHome div h5 {
    font-size: 2.75vw;
  }
  body #infoHome div h1 {
    font-size: 5vw;
  }
  body #contentPosologias #titleContent h1 {
    font-size: 4.5vw;
    width: 50%;
  }
  body #contentPosologias #titleContent h5 {
    font-size: 3vw;
    width: 100%;
  }
  body #contentPosologias .row .cardPosologia .card {
    width: 100%;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div img {
    width: 125%;
    margin-top: -20%;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h4 {
    font-size: 2vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h5,
  body #contentPosologias .row .cardPosologia .card .card-body .info {
    font-size: 1.5vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h6 {
    font-size: 1.25vw;
  }
  body #infoDiclofenaco #imgBackground,
  body #infoPrenatales #imgBackground {
    margin-bottom: 25px;
    margin-top: 65px;
  }
  body #infoDiclofenaco #headerBanner,
  body #infoPrenatales #headerBanner {
    margin-top: 65px;
  }
  body #infoDiclofenaco #headerBanner div,
  body #infoPrenatales #headerBanner div {
    margin-top: 0 !important;
  }
  body #infoDiclofenaco #headerBanner div #redirectINFASA #imgLogo,
  body #infoPrenatales #headerBanner div #redirectINFASA #imgLogo {
    width: 15% !important;
    margin-top: 5%;
    right: 0 !important;
  }
  body #infoDiclofenaco #headerBanner div .row div,
  body #infoPrenatales #headerBanner div .row div {
    text-align: center;
  }
  body #infoDiclofenaco #headerBanner div .row div img,
  body #infoPrenatales #headerBanner div .row div img {
    margin-top: 5% !important;
    width: 30%;
    float: none;
  }
  body #infoDiclofenaco #headerBanner div .row div h4,
  body #infoPrenatales #headerBanner div .row div h4 {
    margin-top: 25px;
    font-size: 3.5vw;
  }
  body #infoDiclofenaco #headerBanner div .row div span,
  body #infoPrenatales #headerBanner div .row div span {
    font-size: 2.25vw;
  }
  body #infoDiclofenaco #infoRecomendacion {
    display: flex;
  }
  body #infoDiclofenaco #infoRecomendacion div .card {
    width: 50%;
    height: 60%;
    margin: 5px auto;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-header {
    height: 15%;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-header h5 {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-body {
    padding: 1.5rem;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-body span {
    font-size: 2.35vw;
  }
  body #infoDiclofenaco #infoPacientes {
    margin-top: 300px !important;
  }
  body #infoDiclofenaco #infoPacientes div .row {
    display: flex;
    flex-direction: column-reverse;
  }
  body #infoDiclofenaco #infoPacientes div .row div img {
    margin-bottom: 20px;
  }
  body #infoDiclofenaco #infoPacientes div .row div span {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #infoContra {
    padding: 3rem 1vw;
  }
  body #infoDiclofenaco #infoContra div .row div h4 {
    font-size: 3.8vw;
  }
  body #infoDiclofenaco #infoContra div .row div h6 {
    font-size: 3.45vw;
    margin-bottom: 20px !important;
  }
  body #infoDiclofenaco #infoContra div .row div span {
    font-size: 3vw;
  }
  body #infoDiclofenaco #infoContra div .row div ul {
    font-size: 2.5vw;
    padding: 0 0 0 10px;
  }
  body #infoDiclofenaco #infoContra div .row div ul li {
    font-size: 2.5vw;
    text-align: justify;
  }
  body #infoDiclofenaco #infoContra div .row div ul li ul li {
    font-size: 2.15vw;
  }
  body #infoDiclofenaco #infoContra div .row #rightList ul {
    margin-top: 0 !important;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div h4 {
    font-size: 3.8vw;
    text-align: left;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div span {
    font-size: 2.65vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card {
    width: 50%;
    height: 50%;
    margin-bottom: 5px;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body {
    padding: 1.3rem;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body span {
    font-size: 2.65vw;
  }
  body #infoDiclofenaco #infoRiesgosCol,
  body #infoDiclofenaco #infoRiesgosCol2,
  body #infoDiclofenaco #infoRespiratorios {
    display: none;
  }
  body #infoDiclofenaco #carouselMobile {
    display: flex;
    background: #ebebeb;
    padding: 1rem;
    margin-bottom: 100px;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third {
    float: right;
    position: relative;
    /* captions can now be added */
    width: 33.3%;
    margin-left: 10px;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card {
    border-radius: 20px;
    text-align: justify;
    height: 1250px;
    padding: 0.5rem 1.5rem;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card h6 {
    font-size: 3.8vw;
    font-weight: 700;
    text-align: left;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card span {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card img {
    width: 100% !important;
    margin: 20px 0;
    height: 35%;
    border-radius: 20px;
  }
  body #infoDiclofenaco #carouselMobile .show-neighbors {
    overflow: hidden;
  }
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-indicators {
    margin-right: 10%;
    margin-left: 10%;
  }
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-control-prev,
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-control-next {
    background: rgba(255, 255, 255, 0.3);
    width: 10%;
    z-index: 11;
    /* .carousel-caption has z-index 10 */
  }
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-inner {
    width: 240%;
    left: -70%;
  }
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-item-next:not(.carousel-item-left),
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-item-right.active {
    -webkit-transform: translate3d(33%, 0, 0);
    transform: translate3d(33%, 0, 0);
  }
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-item-prev:not(.carousel-item-right),
  body #infoDiclofenaco #carouselMobile .show-neighbors .carousel-item-left.active {
    -webkit-transform: translate3d(-33%, 0, 0);
    transform: translate3d(-33%, 0, 0);
  }
  body #infoDiclofenaco #riesgosMobile {
    display: flex;
    margin-bottom: 150px;
  }
  body #infoDiclofenaco #riesgosMobile div .row div {
    text-align: justify;
  }
  body #infoDiclofenaco #riesgosMobile div .row div h6 {
    font-size: 3.8vw;
    font-weight: 700;
  }
  body #infoDiclofenaco #riesgosMobile div .row div span {
    font-size: 3vw;
  }
  body #infoPrenatales #headerBanner div .row div img {
    width: 40% !important;
  }
  body #infoPrenatales #headerBanner div .row div h4 {
    margin-top: 25px;
    font-size: 3.5vw;
  }
  body #infoPrenatales #headerBanner div .row div span {
    font-size: 2vw;
  }
  body #infoPrenatales #infoFormula div .row .divTitle {
    position: initial;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  body #infoPrenatales #infoFormula div .row .divTitle h4 {
    font-size: 2.25vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas {
    margin-top: 25px;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row {
    padding-left: 0;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div span {
    font-size: 1.5vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div br {
    display: none;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div small span {
    font-size: 1.25vw;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis {
    margin-top: 15px;
    text-align: justify;
    text-align-last: center;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis span {
    font-size: 1.25vw;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis span br {
    display: none;
  }
  body #infoMetformina850-5 #imgBackground {
    margin-bottom: 35px;
  }
  body #infoMetformina850-5 #headerBanner div .row div {
    text-align: center;
    margin-top: 0;
  }
  body #infoMetformina850-5 #headerBanner div .row div img {
    margin-top: 5% !important;
    width: 30%;
    float: none;
  }
  body #infoMetformina850-5 #headerBanner div .row div h4 {
    margin-top: 15px;
    font-size: 3.5vw;
  }
  body #infoMetformina850-5 #headerBanner div .row div span {
    font-size: 2.5vw;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box {
    width: 85%;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box .title {
    font-weight: 700;
    font-size: 1.7vw;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box p {
    font-size: 1.15vw;
  }
  body #infoMetformina850-5 #infoMet div p {
    font-size: 1.4vw;
  }
  body #footer div {
    padding-top: 10px;
  }
  body #footer div a,
  body #footer div h5 {
    font-size: 1.7vw;
  }
  body #footer div a img {
    width: 2.5vw;
  }
  body #footer div a i {
    font-size: 2.5vw;
  }
  body #footer .positionlg {
    margin-top: 10px;
  }
  body #footer hr {
    width: 90%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  body #footer .hrMobile {
    display: block;
  }
  body #footer .hrDesktop {
    display: none;
  }
  body #footer .borderWhite {
    border-left: none;
  }
}
/** Tablets */
@media (max-width: 769px) {
  body #headerMenu {
    padding: 0.3rem 1rem 0 0.5rem;
  }
  body #headerMenu #menuHome div nav {
    padding: 0 1.75rem;
  }
  body #headerMenu #menuHome div nav .navbar-brand {
    display: block;
  }
  body #headerMenu #menuHome div nav .navbar-brand img {
    width: 10%;
  }
  body #headerMenu #menuHome div nav .navbar-toggler i {
    font-size: 4vw;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader .nav-item .nav-link {
    font-size: 2.5vw;
    padding-left: 15px;
  }
  body #infoHome {
    margin-top: 35vh;
  }
  body #contentPosologias #titleContent h1 {
    width: 40%;
  }
  body #contentPosologias #titleContent h5 {
    width: 80%;
  }
  body #contentPosologias .row {
    width: 100%;
  }
  body #contentPosologias .row .cardPosologia .card {
    width: 100%;
  }
  body #contentPosologias .row .cardPosologia .card .card-title {
    padding: 2rem 1rem;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div img {
    width: 130%;
    margin-top: -30%;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div #imgPrenatales {
    margin-left: -25%;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h4 {
    font-size: 2.5vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h5 {
    font-size: 1.75vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h6 {
    font-size: 1.5vw;
  }
  body #infoDiclofenaco #headerBanner div .row div h4,
  body #infoPrenatales #headerBanner div .row div h4 {
    font-size: 4.5vw;
  }
  body #infoDiclofenaco #headerBanner div .row div span,
  body #infoPrenatales #headerBanner div .row div span {
    font-size: 3vw;
  }
  body #infoDiclofenaco #infoRecomendacion div .card {
    width: 50%;
    float: left;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-header {
    height: 20%;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-body span {
    font-size: 2vw;
  }
  body #infoDiclofenaco #infoPacientes {
    margin-top: 150px !important;
  }
  body #infoDiclofenaco #infoPacientes div .row {
    display: flex;
    flex-direction: column-reverse;
  }
  body #infoDiclofenaco #infoPacientes div .row div img {
    margin-bottom: 20px;
  }
  body #infoDiclofenaco #infoPacientes div .row div span {
    font-size: 2.2vw;
  }
  body #infoDiclofenaco #infoContra div .row div h4 {
    font-size: 3.8vw;
  }
  body #infoDiclofenaco #infoContra div .row div h6 {
    font-size: 3vw;
    margin-bottom: 20px !important;
  }
  body #infoDiclofenaco #infoContra div .row div span {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #infoContra div .row div ul {
    font-size: 2.5vw;
    padding: 0 0 0 10px;
  }
  body #infoDiclofenaco #infoContra div .row div ul li {
    font-size: 2.5vw;
    text-align: justify;
  }
  body #infoDiclofenaco #infoContra div .row div ul li ul li {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #infoContra div .row #rightList ul {
    margin-top: 0 !important;
  }
  body #infoDiclofenaco #infoPrecauciones div .row {
    margin-top: 30px;
    margin-bottom: 35px;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div span {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card {
    width: 50%;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body span {
    font-size: 2vw;
  }
  body #infoDiclofenaco #carouselMobile {
    margin-bottom: 50px;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card {
    height: 1000px;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card h6 {
    font-size: 3.5vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card span {
    font-size: 2.5vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card img {
    width: 100% !important;
    height: 35%;
    margin: 15px 0;
  }
  body #infoDiclofenaco #riesgosMobile {
    margin-bottom: 100px;
  }
  body #infoDiclofenaco #riesgosMobile div .row div {
    text-align: justify;
  }
  body #infoDiclofenaco #riesgosMobile div .row div h6 {
    font-size: 3.8vw;
    font-weight: 700;
  }
  body #infoDiclofenaco #riesgosMobile div .row div span {
    font-size: 2.5vw;
  }
  body #infoPrenatales #headerBanner div .row div img {
    width: 60% !important;
  }
  body #infoPrenatales #infoFormula div .row .divTitle h4 {
    font-size: 3.25vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row {
    padding-left: 75px;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div small span {
    font-size: 1.85vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div span {
    font-size: 2.5vw;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis span {
    font-size: 2.25vw;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box {
    width: 85%;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box .title {
    font-weight: 700;
    font-size: 2.7vw;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box p {
    font-size: 1.75vw;
  }
  body #infoMetformina850-5 #infoMet div p {
    font-size: 1.7vw;
  }
  body #footer div {
    padding-top: 10px;
  }
  body #footer div a,
  body #footer div h5 {
    font-size: 1.9vw;
  }
  body #footer div a img {
    width: 3.5vw;
  }
  body #footer div a i {
    font-size: 3.5vw;
  }
  body #footer .positionlg {
    margin-top: 0;
  }
}
/** Mobile */
@media (max-width: 576px) {
  body #headerMenu {
    max-width: 100vw;
    padding: 0.1rem 0.75rem 0;
  }
  body #headerMenu #menuHome div nav {
    padding: 0;
  }
  body #headerMenu #menuHome div nav .navbar-brand {
    display: block;
  }
  body #headerMenu #menuHome div nav .navbar-brand img {
    width: 12%;
    margin-top: 2.5%;
  }
  body #headerMenu #menuHome div nav .navbar-toggler i {
    font-size: 4.5vw;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader {
    margin-top: 15px;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader .nav-item .nav-link {
    font-size: 3.6vw;
  }
  body #headerMenu #menuHome div button {
    float: left;
    margin-top: -10px;
  }
  body #imgBackgroundHome {
    height: 65vh;
  }
  body #infoHome div h5 {
    font-size: 4vw !important;
  }
  body #infoHome div h1 {
    font-size: 7vw !important;
  }
  body #contentPosologias {
    margin-top: 25px;
  }
  body #contentPosologias #titleContent h1 {
    width: 40%;
  }
  body #contentPosologias #titleContent h5 {
    width: 80%;
  }
  body #contentPosologias .row {
    width: 100%;
    margin: 0;
  }
  body #contentPosologias .row .cardPosologia {
    margin-top: 20px;
    margin-bottom: 25px;
  }
  body #contentPosologias .row .cardPosologia .card {
    width: 90%;
  }
  body #contentPosologias .row .cardPosologia .card .card-title {
    padding: 2rem 1rem;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div {
    text-align: center;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div img {
    width: 75%;
    margin-top: -20%;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h4 {
    font-size: 4.5vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h5,
  body #contentPosologias .row .cardPosologia .card .card-body .info {
    font-size: 2.9vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body .formaConsumo {
    margin-top: 30px !important;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h6 {
    font-size: 3vw;
  }
  body #infoDiclofenaco #imgBackground,
  body #infoPrenatales #imgBackground {
    height: 60vh;
    margin-top: 50px;
  }
  body #infoDiclofenaco #headerBanner,
  body #infoPrenatales #headerBanner {
    margin-top: 80px;
  }
  body #infoDiclofenaco #headerBanner div #redirectINFASA #imgLogo,
  body #infoPrenatales #headerBanner div #redirectINFASA #imgLogo {
    margin-right: 5% !important;
    width: 10% !important;
  }
  body #infoDiclofenaco #headerBanner div .row div span,
  body #infoPrenatales #headerBanner div .row div span {
    font-size: 4vw;
  }
  body #infoDiclofenaco #headerBanner div .row div img,
  body #infoPrenatales #headerBanner div .row div img {
    width: 60% !important;
    margin-top: 0 !important;
  }
  body #infoDiclofenaco #imgBackground {
    height: 65vh;
    margin-top: 50px;
  }
  body #infoDiclofenaco #menuMobile {
    font-size: 3.5vw;
  }
  body #infoDiclofenaco #menuMobile .navbar-brand {
    padding: 0.5rem;
  }
  body #infoDiclofenaco #menuMobile .navbar-brand img {
    height: 20px;
  }
  body #infoDiclofenaco #menuMobile button span {
    width: 5vw;
    height: 5vw;
  }
  body #infoDiclofenaco #infoRecomendacion div .card {
    width: 100% !important;
    height: 265px;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-header h5 {
    font-size: 5vw;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-body {
    padding: 0.75rem 0.75rem;
  }
  body #infoDiclofenaco #infoRecomendacion div .card .card-body span {
    font-size: 4vw;
  }
  body #infoDiclofenaco #infoPacientes {
    margin-top: 25px !important;
  }
  body #infoDiclofenaco #infoPacientes div .row div span {
    font-size: 4vw;
  }
  body #infoDiclofenaco #infoContra div .row div h4 {
    font-size: 5vw;
  }
  body #infoDiclofenaco #infoContra div .row div h6,
  body #infoDiclofenaco #infoContra div .row div span {
    font-size: 4vw;
  }
  body #infoDiclofenaco #infoContra div .row div ul {
    padding: 0 !important;
  }
  body #infoDiclofenaco #infoContra div .row div ul li {
    font-size: 3.5vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row {
    margin-top: 0;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div h4 {
    font-size: 4.9vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div span {
    font-size: 3.8vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card {
    width: 100%;
    margin-bottom: 5px;
    height: 30% !important;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body span {
    font-size: 3.5vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div #card1 {
    margin-top: -50px;
  }
  body #infoDiclofenaco #infoPrecauciones div .boxes {
    margin-top: 75px !important;
  }
  body #infoDiclofenaco #carouselMobile {
    margin-top: 100px;
    margin-bottom: 50px;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card {
    height: 1000px;
    padding: 0.5rem !important;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body {
    padding: 0.5rem !important;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body h6 {
    font-size: 4.5vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body span {
    font-size: 2.75vw;
    line-height: 1.5;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body img {
    height: 20%;
    margin: 0;
  }
  body #infoDiclofenaco #riesgosMobile {
    margin-bottom: 0;
  }
  body #infoDiclofenaco #riesgosMobile div .row div {
    text-align: justify;
  }
  body #infoDiclofenaco #riesgosMobile div .row div h6 {
    font-size: 4.5vw;
    font-weight: 700;
  }
  body #infoDiclofenaco #riesgosMobile div .row div span {
    font-size: 3.8vw;
  }
  body #infoPrenatales #headerBanner {
    margin-top: 125px;
    height: fit-content;
  }
  body #infoPrenatales #infoFormula {
    margin-top: 0 !important;
    margin-bottom: 0;
  }
  body #infoPrenatales #infoFormula div .row .divTitle h4 {
    font-size: 5.5vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas {
    margin-top: 25px;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row {
    padding-left: 25px;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div {
    width: 50%;
    padding: 0;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div span {
    font-size: 4vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div br {
    display: none;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row div small span {
    font-size: 3vw;
  }
  body #infoPrenatales #infoFormula div .row #infoVitaminas .row .value {
    padding-left: 50px !important;
  }
  body #infoPrenatales #infoIndicaciones {
    padding: 2rem 1rem 3rem 1rem;
    margin-top: 25px;
  }
  body #infoPrenatales #infoIndicaciones div .row {
    flex-direction: column-reverse;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis {
    margin-top: 25px;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis span {
    font-size: 4vw;
  }
  body #infoPrenatales #infoIndicaciones div .row div #infoDosis span br {
    display: none;
  }
  body #infoMetformina850-5 #imgBackground {
    height: 60vh !important;
  }
  body #infoMetformina850-5 #headerBanner div .row div span {
    font-size: 4vw;
  }
  body #infoMetformina850-5 #headerBanner div .row div img {
    width: 55%;
    margin-top: 12.5% !important;
  }
  body #infoMetformina850-5 #headerBanner div .row div h4 {
    font-size: 5.5vw;
  }
  body #infoMetformina850-5 #headerBanner div .row div span {
    font-size: 5vw;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box {
    width: 80%;
    margin: 1rem auto;
    height: 25vh;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box .title {
    font-weight: 700;
    font-size: 4.75vw;
  }
  body #infoMetformina850-5 #infoMet .infoBox .box p {
    font-size: 3.25vw;
  }
  body #infoMetformina850-5 #infoMet div .registroSanitario {
    font-size: 3.2vw;
    width: 80%;
    margin: 0 auto;
    text-align: justify;
  }
  body #footer {
    display: none;
  }
  body #footerMobile {
    background: #dedede;
    padding: 25px 0;
  }
  body #footerMobile div hr {
    border-top: 1px solid #ffffff;
  }
  body #footerMobile div .row div {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
  }
  body #footerMobile div .row div a img,
  body #footerMobile div .row div a i {
    font-size: 7vw;
    width: 7vw;
    color: #123761;
    vertical-align: middle;
  }
  body #footerMobile div .row div span {
    font-size: 4.5vw;
  }
}
/** Mobile */
@media (max-width: 400px) {
  body #headerMenu #menuHome div nav .navbar-brand img {
    width: 15%;
  }
  body #headerMenu #menuHome div nav .navbar-toggler i {
    font-size: 5vw;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader {
    margin-top: 15px;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader .nav-item {
    margin-left: -20%;
  }
  body #headerMenu #menuHome div nav #homeMenuOptions #optionsMenuHeader .nav-item .nav-link {
    font-size: 4vw;
    padding-left: 15px;
  }
  body #headerMenu #menuHome div button {
    float: left;
    margin-top: -10px;
  }
  body #contentPosologias {
    margin-top: 15px;
  }
  body #contentPosologias #titleContent h1 {
    width: 60%;
    font-size: 6vw;
  }
  body #contentPosologias #titleContent h5 {
    width: 100%;
    font-size: 4.5vw;
  }
  body #contentPosologias .row .cardPosologia {
    margin-top: 10px;
  }
  body #contentPosologias .row .cardPosologia .card {
    width: 90%;
  }
  body #contentPosologias .row .cardPosologia .card .card-title {
    padding: 1rem 0;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .imgCard {
    height: 22vh;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div {
    text-align: center;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div img {
    width: 70%;
    margin-top: -15%;
    margin-left: 5%;
  }
  body #contentPosologias .row .cardPosologia .card .card-title .row div #imgPrenatales {
    margin-left: 0;
    margin-top: -15%;
  }
  body #contentPosologias .row .cardPosologia .card .card-body {
    padding: 1.5rem 2rem 1.5rem 1.5rem;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h4 {
    font-size: 4.75vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h5,
  body #contentPosologias .row .cardPosologia .card .card-body .info {
    font-size: 3.5vw;
  }
  body #contentPosologias .row .cardPosologia .card .card-body .formaConsumo {
    margin-top: 30px !important;
  }
  body #contentPosologias .row .cardPosologia .card .card-body h6 {
    font-size: 3vw;
  }
  body #infoDiclofenaco #imgBackground,
  body #infoPrenatales #imgBackground,
  body #infoMetformina850-5 #imgBackground {
    height: 50vh;
  }
  body #infoDiclofenaco #headerBanner div .row div,
  body #infoPrenatales #headerBanner div .row div,
  body #infoMetformina850-5 #headerBanner div .row div {
    line-height: 90%;
  }
  body #infoDiclofenaco #headerBanner div .row div h4,
  body #infoPrenatales #headerBanner div .row div h4,
  body #infoMetformina850-5 #headerBanner div .row div h4 {
    font-size: 5.2vw;
    margin-top: 0;
  }
  body #infoDiclofenaco #headerBanner div .row div span,
  body #infoPrenatales #headerBanner div .row div span,
  body #infoMetformina850-5 #headerBanner div .row div span {
    font-size: 4vw;
    line-height: 90%;
  }
  body #infoDiclofenaco #menuMobile .navbar-brand {
    padding: 0.15rem;
  }
  body #infoDiclofenaco #menuMobile .navbar-brand img {
    height: 22px;
  }
  body #infoDiclofenaco #menuMobile button span {
    width: 6vw;
    height: 6vw;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card {
    width: 100%;
    margin-bottom: 5px;
  }
  body #infoDiclofenaco #infoPrecauciones div .row div .card .card-body span {
    font-size: 4vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card {
    height: 1020px !important;
    padding: 0.3rem 0.1vw;
    line-height: 75%;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body {
    padding: 0.7rem 0.5vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body span {
    font-size: 3.55vw;
  }
  body #infoDiclofenaco #carouselMobile div .carousel-inner .carousel-item .item__third .card .card-body img {
    height: 18%;
    margin-top: 0;
    margin-bottom: 5px;
  }
  body #footer div h5,
  body #footer div a {
    font-size: 3.5vw;
  }
  body #footer div a img {
    width: 4vw;
  }
  body #footer div a i {
    font-size: 4vw;
  }
}
/*# sourceMappingURL=index.css.map */