@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*Font Family*/
/* COLACAO COLORS */
/* Opciones($prop): color, background-color,opacity,..., all */
/*PlaceHolder*/
/*font-size: get-vw(30px);*/
/*padding-top:get-vw(50px);*/
body {
  font-family: Georgia, "Times New Roman", Times, serif;
}

@font-face {
  font-family: "Roboto";
  src: url(fonts/Roboto-Regular.woff2) format("woff2"), url(fonts/Roboto-Regular.woff) format("woff");
  font-weight: 200;
}
@font-face {
  font-family: "Roboto-Thin";
  src: url(fonts/Roboto-Thin.woff2) format("woff2"), url(fonts/Roboto-Thin.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url(fonts/Roboto-Bold.woff2) format("woff2"), url(fonts/Roboto-Bold.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "gilroyd-extrabold";
  src: url(fonts/Gilroy-ExtraBold.woff2) format("woff2"), url(fonts/Gilroy-ExtraBold.woff) format("woff");
  font-weight: 400;
}
/*@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../../css/font/Montserrat-Regular.woff2') format('woff2'),
      url('../../css/font/Montserrat-Regular.woff') format('woff');
      font-weight: 400;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('../../css/font/Montserrat-Bold.woff2') format('woff2'),
      url('../../css/font/Montserrat-Bold.woff') format('woff');
      font-weight: 400;
}*/
/*@font-face {
  font-family: 'Novecento-Wide';
  src: url('../../css/font/Novecento-WideNormal.woff2') format('woff2'),
      url('../../css/font/Novecento-WideNormal.woff') format('woff');
      font-weight: 400;
}*/
* {
  margin: 0;
  padding: 0;
}

body {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 0;
  margin: 0;
  padding: 0;
  scroll-margin-left: 0;
}

/*
  container emergap
*/
#container {
  position: relative;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow: hidden;
}

.wrapper {
  position: relative;
  width: 95%;
  max-width: 1380px;
  margin: 0 auto;
}
@media only screen and (max-width : 525px) {
  .wrapper {
    width: 90%;
  }
}

.modulo_uno {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  gap: 0.5vw;
  margin-bottom: 1.5vw;
}
.modulo_uno .mini {
  background-color: red;
}

.modulo_dos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 0.5vw;
  margin-bottom: 1.5vw;
}
@media only screen and (max-width : 768px) {
  .modulo_dos {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.modulo_tres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 0.5vw;
  margin-bottom: 1.5vw;
}
@media only screen and (max-width: 1248px) {
  .modulo_tres {
    grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
  }
}
@media only screen and (max-width : 768px) {
  .modulo_tres {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}
.modulo_tres .mini {
  border: 2px solid forestgreen;
  background-color: grey;
}

/*.modulo_cuatro {
  display: grid;
  gap: 1vw;
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr)); 
  @media only screen and (max-width: 1024px) { grid-template-columns: repeat(auto-fit, minmax(31%, 1fr)); gap: 1vw; }   
  @media only screen and (max-width : 768px) { grid-template-columns: repeat(auto-fit, minmax(48%, 1fr)); gap: 2vw; }
  @media only screen and (max-width : 525px) { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); gap: 5vw; }

  .mini {
      //border: 1px solid darkcyan;
      //background-color: brown;
  }
  margin-bottom: $ades_mbottom;      
}  */
.modulo_cuatro {
  display: grid;
  gap: 1vw;
  justify-content: center;
  justify-items: center;
  /* Mantén tus reglas, pero con items centrados no “bailan” si hay menos de 4 */
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  margin-bottom: 1.5vw;
}
@media only screen and (max-width: 1024px) {
  .modulo_cuatro {
    grid-template-columns: repeat(auto-fit, minmax(31%, 1fr));
    gap: 1vw;
  }
}
@media only screen and (max-width : 768px) {
  .modulo_cuatro {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 2vw;
  }
}
@media only screen and (max-width : 525px) {
  .modulo_cuatro {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 5vw;
  }
}
.modulo_cuatro .mini {
  width: min(100%, 500px);
  justify-self: center;
}

.modulo_cinco {
  display: grid;
  gap: 1vw;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 1.5vw;
}
@media only screen and (max-width: 1248px) {
  .modulo_cinco {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .modulo_cinco {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
}
@media only screen and (max-width : 525px) {
  .modulo_cinco {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.modulo_cinco .mini {
  width: min(100%, 500px);
  justify-self: center;
}

/* P FONT */
.pFfontSize {
  font-size: 1.0416666667vw;
}
@media only screen and (max-width: 1720px) {
  .pFfontSize {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width: 1550px) {
  .pFfontSize {
    font-size: 1.1979166667vw;
  }
}
@media only screen and (max-width: 1448px) {
  .pFfontSize {
    font-size: 1.3020833333vw;
  }
}
@media only screen and (max-width: 1248px) {
  .pFfontSize {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 1024px) {
  .pFfontSize {
    font-size: 1.5104166667vw;
  }
}
@media only screen and (max-width: 900px) {
  .pFfontSize {
    font-size: 1.6145833333vw;
  }
}
@media only screen and (max-width : 768px) {
  .pFfontSize {
    font-size: 2.9947916667vw;
  }
}
@media only screen and (max-width : 640px) {
  .pFfontSize {
    font-size: 3.2552083333vw;
  }
}
@media only screen and (max-width : 525px) {
  .pFfontSize {
    font-size: 3.90625vw;
  }
}

.pFfontSizePastillas {
  font-size: 0.9895833333vw;
}
@media only screen and (max-width: 1720px) {
  .pFfontSizePastillas {
    font-size: 1.0416666667vw;
  }
}
@media only screen and (max-width: 1550px) {
  .pFfontSizePastillas {
    font-size: 1.1979166667vw;
  }
}
@media only screen and (max-width: 1448px) {
  .pFfontSizePastillas {
    font-size: 1.3020833333vw;
  }
}
@media only screen and (max-width: 1248px) {
  .pFfontSizePastillas {
    font-size: 1.3020833333vw;
  }
}
@media only screen and (max-width: 1024px) {
  .pFfontSizePastillas {
    font-size: 1.5104166667vw;
  }
}
@media only screen and (max-width: 900px) {
  .pFfontSizePastillas {
    font-size: 1.6145833333vw;
  }
}
@media only screen and (max-width : 768px) {
  .pFfontSizePastillas {
    font-size: 2.734375vw;
  }
}
@media only screen and (max-width : 640px) {
  .pFfontSizePastillas {
    font-size: 2.6041666667vw;
  }
}
@media only screen and (max-width : 525px) {
  .pFfontSizePastillas {
    font-size: 3.90625vw;
  }
}

.pFfontSizeMid {
  font-size: 1.25vw;
}
@media only screen and (max-width: 1720px) {
  .pFfontSizeMid {
    font-size: 1.1979166667vw;
  }
}
@media only screen and (max-width: 1550px) {
  .pFfontSizeMid {
    font-size: 1.3020833333vw;
  }
}
@media only screen and (max-width: 1448px) {
  .pFfontSizeMid {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 1248px) {
  .pFfontSizeMid {
    font-size: 1.5104166667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .pFfontSizeMid {
    font-size: 1.6145833333vw;
  }
}
@media only screen and (max-width: 900px) {
  .pFfontSizeMid {
    font-size: 1.71875vw;
  }
}
@media only screen and (max-width : 768px) {
  .pFfontSizeMid {
    font-size: 2.734375vw;
  }
}
@media only screen and (max-width : 640px) {
  .pFfontSizeMid {
    font-size: 2.8645833333vw;
  }
}
@media only screen and (max-width : 525px) {
  .pFfontSizeMid {
    font-size: 2.8645833333vw;
  }
}

.pFfontSizeBig {
  font-size: 1.6145833333vw;
}
@media only screen and (max-width: 1720px) {
  .pFfontSizeBig {
    font-size: 1.6666666667vw;
  }
}
@media only screen and (max-width: 1550px) {
  .pFfontSizeBig {
    font-size: 1.7708333333vw;
  }
}
@media only screen and (max-width: 1448px) {
  .pFfontSizeBig {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 1248px) {
  .pFfontSizeBig {
    font-size: 1.9791666667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .pFfontSizeBig {
    font-size: 2.0833333333vw;
  }
}
@media only screen and (max-width: 900px) {
  .pFfontSizeBig {
    font-size: 2.1875vw;
  }
}
@media only screen and (max-width : 768px) {
  .pFfontSizeBig {
    font-size: 4.5572916667vw;
  }
}
@media only screen and (max-width : 640px) {
  .pFfontSizeBig {
    font-size: 4.6875vw;
  }
}
@media only screen and (max-width : 525px) {
  .pFfontSizeBig {
    font-size: 4.8177083333vw;
  }
}

.etiquetaFontSize {
  font-size: 0.5208333333vw;
}
@media only screen and (max-width: 1720px) {
  .etiquetaFontSize {
    font-size: 0.5729166667vw;
  }
}
@media only screen and (max-width: 1550px) {
  .etiquetaFontSize {
    font-size: 0.6770833333vw;
  }
}
@media only screen and (max-width: 1448px) {
  .etiquetaFontSize {
    font-size: 0.78125vw;
  }
}
@media only screen and (max-width: 1248px) {
  .etiquetaFontSize {
    font-size: 0.8854166667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .etiquetaFontSize {
    font-size: 0.9895833333vw;
  }
}
@media only screen and (max-width: 900px) {
  .etiquetaFontSize {
    font-size: 1.09375vw;
  }
}
@media only screen and (max-width : 768px) {
  .etiquetaFontSize {
    font-size: 1.3020833333vw;
  }
}
@media only screen and (max-width : 640px) {
  .etiquetaFontSize {
    font-size: 1.5625vw;
  }
}
@media only screen and (max-width : 525px) {
  .etiquetaFontSize {
    font-size: 1.8229166667vw;
  }
}

.header {
  position: fixed;
  background-color: white;
  z-index: 1001;
  width: 100%;
  padding-top: calc(5px + 0.5vw);
  padding-bottom: calc(20px + 0.5vw);
}
.header .logo {
  display: flex;
}
.header .logo .logo1 {
  display: flex;
  width: 90px;
  aspect-ratio: 58/27;
  align-content: center;
  align-items: center;
}
.header .logo .logo1 img {
  width: 100%;
}
.header .logo .logo2 {
  margin-left: 10px;
  width: 145px;
}
.header .logo .logo2 img {
  width: 100%;
}
.header .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #545D61;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.header .menu .menu_desktop {
  display: flex;
  align-items: center;
}
.header .menu .menu_desktop .opc_m {
  margin: 0 2.2vw 0 0;
  cursor: pointer;
}
.header .menu .menu_desktop .opc_m a {
  color: #545D61 !important;
  text-decoration: none;
}
.header .menu .menu_desktop :nth-last-child(1 of .opc_m) {
  margin-right: 4vw;
}
.header .menu .menu_desktop .rrss {
  display: flex;
}
.header .menu .menu_desktop .rrss .rs {
  margin: 0 8px 0 0;
  max-width: 30px;
  cursor: pointer;
}
.header .menu .menu_desktop .rrss .rs img {
  width: 100%;
}
@media only screen and (max-width : 768px) {
  .header .menu .menu_desktop {
    display: none;
  }
}
.header .menu .hamburguesa {
  display: none;
  align-items: center;
}
.header .menu .hamburguesa .burger {
  display: inline-block;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 2;
  visibility: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 900px) {
  .header .menu .hamburguesa .burger {
    visibility: visible;
  }
}
.header .menu .hamburguesa .burger span {
  z-index: 102;
  width: 100%;
  height: 4px;
  display: block;
  position: absolute;
  background: #003479;
  transition: all 0.25s ease; /* Propiedades a animar | Tiempo | Tipo animación*/
  transform-origin: 0px 100%;
}
.header .menu .hamburguesa .burger span:nth-child(2) {
  top: calc(50% - 2px);
}
.header .menu .hamburguesa .burger span:nth-child(3) {
  bottom: 0;
}
@media only screen and (max-width : 768px) {
  .header .menu .hamburguesa {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) {
  .header {
    padding-top: calc(5px + 1.5vw);
  }
}
@media only screen and (max-width : 525px) {
  .header {
    padding-top: calc(5px + 2vw);
  }
}
@media only screen and (max-width: 1024px) {
  .header {
    padding-bottom: calc(20px + 1.5vw);
  }
}
@media only screen and (max-width : 525px) {
  .header {
    padding-bottom: calc(20px + 2vw);
  }
}

.menu_mobile {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: 1002;
  width: 100%;
  background-color: #fff;
  height: 90%;
  top: 88px;
  text-align: center;
  color: #545D61;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding-top: 2vw;
}
.menu_mobile .opc_m {
  margin: 3vw 0;
  cursor: pointer;
}
@media only screen and (max-width : 525px) {
  .menu_mobile .opc_m {
    margin: 6vw 0;
  }
}
@media only screen and (max-width : 525px) {
  .menu_mobile .opc_m {
    font-size: 3.90625vw;
  }
}
.menu_mobile .opc_m a {
  color: #545D61 !important;
  text-decoration: none;
}
.menu_mobile .rrss {
  display: flex;
  justify-content: center;
  margin-top: 5vw;
}
@media only screen and (max-width : 525px) {
  .menu_mobile .rrss {
    margin-top: 8vw;
  }
}
.menu_mobile .rrss .rs {
  cursor: pointer;
  margin: 0 8px;
  max-width: 30px;
}
@media only screen and (max-width : 525px) {
  .menu_mobile .rrss .rs {
    margin: 0 10px;
  }
}
.menu_mobile .rrss .rs img {
  width: 100%;
}

.cuidarte {
  position: relative;
  margin: 110px auto 0;
  padding-bottom: calc(20px + 2vw);
}
.cuidarte .mini {
  width: 100%;
  aspect-ratio: 13.5/5.8;
  border-radius: 20px;
  background-color: #DBE9F1;
  background-image: url(img/bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width : 768px) {
  .cuidarte .mini {
    background-image: url(img/bg_mobile.png);
    aspect-ratio: 10.4/9.8;
  }
}
.cuidarte .mini .txtlogo {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width : 768px) {
  .cuidarte .mini .txtlogo {
    width: 52%;
  }
}
.cuidarte .mini .txtlogo .logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: calc(10px + 0.5vw);
}
.cuidarte .mini .txtlogo .logo img {
  width: 95%;
}
@media only screen and (max-width: 1024px) {
  .cuidarte .mini .txtlogo .logo {
    margin-bottom: calc(10px + 0.5vw);
  }
}
@media only screen and (max-width : 525px) {
  .cuidarte .mini .txtlogo .logo {
    margin-bottom: calc(10px + 0.8vw);
  }
}
.cuidarte .mini .txtlogo .txt {
  color: #003479;
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
@media only screen and (max-width: 1024px) {
  .cuidarte .mini .txtlogo .txt .quitabr {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .cuidarte {
    padding-bottom: calc(20px + 4vw);
  }
}
@media only screen and (max-width : 525px) {
  .cuidarte {
    padding-bottom: calc(20px + 6vw);
  }
}

.bienestar {
  position: relative;
  margin: 0 auto;
  padding-bottom: calc(20px + 2vw);
}
.bienestar .foto {
  width: 100%;
}
.bienestar .foto img {
  width: 100%;
}
.bienestar .txt {
  display: flex;
  margin: 3vw 5vw 1vw;
  flex-direction: column;
}
@media only screen and (max-width: 1720px) {
  .bienestar .txt {
    margin: 3vw 5vw 1vw;
  }
}
@media only screen and (max-width: 1550px) {
  .bienestar .txt {
    margin: 4vw 5vw 1vw;
  }
}
@media only screen and (max-width: 1448px) {
  .bienestar .txt {
    margin: 4.3vw 5vw 1vw;
  }
}
@media only screen and (max-width: 1248px) {
  .bienestar .txt {
    margin: 4.5vw 5vw 1vw;
  }
}
@media only screen and (max-width: 1024px) {
  .bienestar .txt {
    margin: 3vw 5vw 1vw;
  }
}
@media only screen and (max-width: 900px) {
  .bienestar .txt {
    margin: 0vw 6vw 1vw;
  }
}
@media only screen and (max-width : 768px) {
  .bienestar .txt {
    margin: 3vw 0vw 0;
  }
}
.bienestar .txt h1 {
  font-family: gilroyd-extrabold;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #191F23;
  margin-bottom: calc(10px + 0.3vw);
}
.bienestar .txt .first {
  margin-bottom: calc(10px + 0.3vw);
}
.bienestar .txt .second strong {
  font-weight: 600;
}
.bienestar .txt p {
  font-family: Roboto;
  font-style: normal;
  line-height: 1.3;
  /*letter-spacing: 2.1px;*/
}
.bienestar .txt p strong {
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .bienestar {
    padding-bottom: calc(20px + 4vw);
  }
}
@media only screen and (max-width : 525px) {
  .bienestar {
    padding-bottom: calc(20px + 6vw);
  }
}

.ajusteslogros {
  position: relative;
  margin: 0 auto;
  padding-bottom: calc(20px + 2vw);
}
.ajusteslogros .mini {
  border-radius: 30px;
}
.ajusteslogros .cabecera {
  margin-bottom: calc(20px + 1vw);
}
.ajusteslogros .cabecera h2 {
  font-family: gilroyd-extrabold;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  color: #191F23;
  margin-bottom: calc(10px + 0.3vw);
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .cabecera h2 {
    margin-top: calc(5px + 0.5vw);
    margin-bottom: calc(15px + 1vw);
  }
}
.ajusteslogros .cabecera p {
  color: black;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.ajusteslogros .cabecera p strong {
  font-weight: 600;
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .cabecera .oculbr {
    display: none;
  }
}
.ajusteslogros .mini {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 37.6/53.8;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.ajusteslogros .mini .mybotton {
  width: 100%;
  height: 100%;
}
.ajusteslogros .mini .over {
  position: absolute;
  left: 0;
  top: 80%;
  width: 100%;
  height: 100%;
  /*background-repeat: no-repeat;
  background-size: 100% 100%;*/
  width: 100%;
}
.ajusteslogros .mini .over .fondoover {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ajusteslogros .mini .over .botonera {
  display: flex;
  position: relative;
  left: 5%;
  top: 3%;
  width: 90%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1248px) {
  .ajusteslogros .mini .over .botonera {
    top: 7%;
  }
}
@media only screen and (max-width: 1024px) {
  .ajusteslogros .mini .over .botonera {
    top: 11.5%;
  }
}
@media only screen and (max-width: 900px) {
  .ajusteslogros .mini .over .botonera {
    top: 9%;
  }
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera {
    top: 6%;
  }
}
@media only screen and (max-width : 640px) and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera {
    top: 4.5%;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera {
    margin-bottom: 30px;
    top: 8%;
  }
}
.ajusteslogros .mini .over .botonera .tit {
  font-family: gilroyd-extrabold;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  color: #003479;
  text-transform: uppercase;
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .tit {
    font-size: 20px !important;
  }
}
.ajusteslogros .mini .over .botonera .mas {
  cursor: pointer;
  transform: scale(1);
}
@media only screen and (max-width: 1720px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.98);
  }
}
@media only screen and (max-width: 1550px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.96);
  }
}
@media only screen and (max-width: 1448px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.94);
  }
}
@media only screen and (max-width: 1248px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.92);
  }
}
@media only screen and (max-width: 1024px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.88) translateY(-2px);
  }
}
@media only screen and (max-width: 900px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.8) translateY(-4px);
  }
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(1) translateY(0px);
  }
}
.ajusteslogros .bg1 {
  background-image: url(../img/mini_bg_logros_1.png);
}
.ajusteslogros .bg2 {
  background-image: url(../img/mini_bg_logros_2.png);
}
.ajusteslogros .bg3 {
  background-image: url(../img/mini_bg_logros_3.png);
}
.ajusteslogros .bg4 {
  background-image: url(../img/mini_bg_logros_4.png);
}
.ajusteslogros .bg5 {
  background-image: url(../img/mini_bg_logros_5.png);
}
@media only screen and (max-width: 1024px) {
  .ajusteslogros {
    padding-bottom: calc(20px + 4vw);
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros {
    padding-bottom: calc(20px + 6vw);
  }
}

.ideasconsejos {
  position: relative;
  margin: 0 auto;
  background-color: #e9eff3;
  padding-bottom: calc(20px + 2vw);
}
.ideasconsejos .mini {
  display: none;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  max-width: 500px;
}
.ideasconsejos .mini .topimg {
  width: 100%;
}
.ideasconsejos .mini .topimg img {
  width: 100%;
}
.ideasconsejos .mini .etiquetas {
  display: flex;
  margin: calc(17px + 0vw) 0;
  margin-left: calc(11px + 0vw);
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .mini .etiquetas {
    margin: calc(10px + 0.3vw) 0;
    margin-left: calc(13px + 0.3vw);
  }
}
.ideasconsejos .mini .etiquetas .eti {
  color: black;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 10px;
  margin-right: 7px;
  text-transform: uppercase;
  text-align: center;
}
.ideasconsejos .mini .etiquetas .saludable {
  background-color: #A2D8C1;
}
.ideasconsejos .mini .etiquetas .ergonomia {
  background-color: #E6C2D4;
}
.ideasconsejos .mini .etiquetas .activo {
  background-color: #95BEF5;
}
.ideasconsejos .mini .etiquetas .mental {
  background-color: #F0D972;
}
.ideasconsejos .mini .cont {
  margin: calc(17px + 0vw) 0;
  margin-left: calc(11px + 0vw);
  width: 93%;
  min-height: 260px;
  max-height: 260px;
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .mini .cont {
    margin: calc(10px + 0.3vw) 0;
    margin-left: calc(13px + 0.3vw);
  }
}
@media only screen and (max-width: 1720px) {
  .ideasconsejos .mini .cont {
    min-height: 260px;
    max-height: 260px;
  }
}
@media only screen and (max-width: 1550px) {
  .ideasconsejos .mini .cont {
    min-height: 230px;
    max-height: 230px;
  }
}
@media only screen and (max-width: 1248px) {
  .ideasconsejos .mini .cont {
    min-height: 250px;
    max-height: 250px;
  }
}
@media only screen and (max-width: 900px) {
  .ideasconsejos .mini .cont {
    min-height: 180px;
    max-height: 180px;
  }
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .mini .cont {
    min-height: 300px;
    max-height: 300px;
  }
}
@media only screen and (max-width : 640px) {
  .ideasconsejos .mini .cont {
    min-height: 330px;
    max-height: 330px;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .mini .cont {
    min-height: 190px;
    max-height: 190px;
  }
}
.ideasconsejos .mini .cont .tit {
  margin-bottom: calc(5px + 0.2vw);
  position: relative;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .mini .cont .tit {
    line-height: 1.4;
  }
}
.ideasconsejos .mini .cont .desc {
  position: relative;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  color: #545D61;
  min-height: 145px;
  max-height: 145px;
}
.ideasconsejos .mini .cont .desc strong {
  font-family: Roboto-Bold;
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .mini .cont .desc {
    line-height: 1.4;
  }
}
.ideasconsejos .mini .boton {
  margin: calc(17px + 0vw) 0;
  margin-left: calc(11px + 0vw);
  width: 93%;
  transform: scale(0.9);
  transform-origin: 100% 50%;
  display: flex;
  width: 90%;
  align-content: center;
  justify-content: flex-end;
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .mini .boton {
    margin: calc(10px + 0.3vw) 0;
    margin-left: calc(13px + 0.3vw);
  }
}
.ideasconsejos .mini .boton span {
  cursor: pointer;
  border: 2px solid #0F77AE;
  border-radius: 30px;
  text-align: center;
  padding: 4px 19px;
  color: #0F77AE;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}
.ideasconsejos .mini .boton span a {
  text-decoration: none;
  color: #0F77AE !important;
}
.ideasconsejos .mini .boton span:hover {
  border: 2px solid white;
  background-color: #0F77AE;
  color: white;
}
.ideasconsejos .mini .boton span:hover a {
  text-decoration: none;
  color: white !important;
}
.ideasconsejos .vermas {
  transform: scale(0.9);
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
  margin-top: calc(30px + 1vw);
}
.ideasconsejos .vermas span {
  cursor: pointer;
  width: fit-content;
  padding: 8px 17px;
  background-color: #0F77AE;
  border: 1px solid white;
  border-radius: 30px;
  text-align: center;
  color: white;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.ideasconsejos .vermas span:hover {
  background-color: white;
  color: #0F77AE;
  border: 1px solid #0F77AE;
}
.ideasconsejos .vermas span:hover a {
  text-decoration: none;
}
.ideasconsejos .cabecera {
  padding-top: calc(35px + 3vw);
  margin-bottom: calc(35px + 1.5vw);
}
.ideasconsejos .cabecera h2 {
  text-align: center;
  font-family: gilroyd-extrabold;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  color: #191F23;
  margin-bottom: calc(10px + 0.3vw);
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .cabecera h2 .oculbr {
    display: none;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .cabecera h2 {
    margin-top: calc(5px + 0.5vw);
    margin-bottom: calc(15px + 1vw);
  }
}
.ideasconsejos .cabecera p {
  text-align: center;
  color: black;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 11vw;
}
.ideasconsejos .cabecera p strong {
  font-weight: 600;
}
@media only screen and (max-width: 1720px) {
  .ideasconsejos .cabecera p {
    margin: 0 11vw;
  }
}
@media only screen and (max-width: 1550px) {
  .ideasconsejos .cabecera p {
    margin: 0 10vw;
  }
}
@media only screen and (max-width: 1448px) {
  .ideasconsejos .cabecera p {
    margin: 0 9vw;
  }
}
@media only screen and (max-width: 1248px) {
  .ideasconsejos .cabecera p {
    margin: 0 7vw;
  }
}
@media only screen and (max-width: 1024px) {
  .ideasconsejos .cabecera p {
    margin: 0 6vw;
  }
}
@media only screen and (max-width: 900px) {
  .ideasconsejos .cabecera p {
    margin: 0 5vw;
  }
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .cabecera p {
    margin: 0 4vw;
  }
}
@media only screen and (max-width : 640px) {
  .ideasconsejos .cabecera p {
    margin: 0 3vw;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .cabecera p {
    margin: 0 2vw;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .cabecera .oculbr {
    display: none;
  }
}
.ideasconsejos .selector {
  position: relative;
  width: 80%;
  background-color: white;
  border-radius: 40px;
  margin: 0 auto;
  margin-bottom: calc(20px + 2.5vw);
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .selector {
    flex-direction: column;
    width: 46%;
    border-radius: 13px;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .selector {
    width: 52%;
  }
}
.ideasconsejos .selector .opc {
  z-index: 2;
  text-align: center;
  color: #29343A;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .selector .opc {
    margin: 5px 0;
  }
}
.ideasconsejos .selector .rollover {
  z-index: 1;
  position: absolute;
  width: 150px;
  border-radius: 40px;
  background-color: #264160;
  left: 0;
  top: 3px;
}
.ideasconsejos .selector_version {
  position: relative;
  width: 80%;
  background-color: white;
  border-radius: 40px;
  margin: 0 auto;
  margin-bottom: calc(20px + 0.5vw);
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .selector_version {
    flex-direction: column;
    width: 46%;
    border-radius: 13px;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .selector_version {
    width: 52%;
  }
}
.ideasconsejos .selector_version .opcVersion {
  z-index: 2;
  text-align: center;
  color: #29343A;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .selector_version .opcVersion {
    margin: 5px 0;
  }
}
.ideasconsejos .selector_version .rollover_version {
  z-index: 1;
  position: absolute;
  width: 150px;
  border-radius: 40px;
  background-color: #264160;
  left: 0;
  top: 3px;
}
@media only screen and (max-width: 1024px) {
  .ideasconsejos {
    padding-bottom: calc(20px + 4vw);
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos {
    padding-bottom: calc(20px + 6vw);
  }
}

footer {
  position: relative;
  margin: 0 auto;
  font-family: Roboto;
  background-color: #0F6999;
  padding: 70px 0 100px 0;
  color: white;
}
footer header {
  text-align: center;
  font-family: Roboto;
  font-size: 22px;
  margin: 0 0 60px 0;
}
footer .footer-blocks {
  justify-content: center;
  margin-bottom: 100px;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  footer .footer-blocks {
    flex-direction: column;
  }
}
footer .footer-blocks .mini {
  display: flex;
  background-color: #06658E;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto 60%;
  border-radius: 20px;
  align-items: center;
  width: calc(50% - 14px);
  margin: 0 7px 20px 7px;
}
@media only screen and (max-width: 1248px) {
  footer .footer-blocks .mini {
    background-size: auto 50%;
  }
}
@media only screen and (max-width: 1024px) {
  footer .footer-blocks .mini {
    width: calc(100% - 8px);
    margin: 0 4px 20px;
    background-size: auto 90%;
  }
}
footer .footer-blocks .mini.mini-comer {
  /* @media only screen and (max-width : 640px) {
       background-image: none;
   }*/
}
footer .footer-blocks .mini.mini-comer img {
  transform: translate(16px, 0px);
}
footer .footer-blocks .mini.mini-fast {
  /*@media only screen and (max-width : 640px) {
      background-image: none;
  }*/
}
footer .footer-blocks .mini.mini-fast img {
  transform: translate(16px, 10px);
}
footer .footer-blocks .mini.mini-cuidarse img {
  transform: translate(16px, 0px);
}
footer .footer-blocks .mini figure {
  width: 35%;
  height: 100%;
  margin-right: 30px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 1024px) {
  footer .footer-blocks .mini figure {
    width: 140px;
    height: 100%;
  }
}
@media only screen and (max-width : 640px) {
  footer .footer-blocks .mini figure {
    margin-right: 5px;
    align-self: end;
    margin-bottom: -3px;
  }
}
footer .footer-blocks .mini figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 1;
}
@media only screen and (max-width : 640px) {
  footer .footer-blocks .mini figure img {
    opacity: 1;
  }
}
footer .footer-blocks .mini .txt {
  padding: 12px 20px 12px 5px;
  line-height: 1.2;
  flex: 1;
}
@media only screen and (max-width : 640px) {
  footer .footer-blocks .mini .txt {
    padding: 12px 12px 12px 30px;
  }
}
footer .footer-blocks .mini .txt p {
  margin-bottom: 16px;
}
footer .footer-blocks .mini .txt p:last-child {
  margin-bottom: 0;
}
footer .footer-blocks .mini h4 {
  font-weight: bold;
  font-size: 24px;
  font-family: gilroyd-extrabold;
  margin: 0 0 15px 0;
}
@media only screen and (max-width : 768px) {
  footer .footer-blocks .mini h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
  }
}
@media only screen and (max-width : 640px) {
  footer .footer-blocks .mini h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
  }
}
footer .btn-outline {
  transform: scale(0.9);
  padding: 6px 18px 7px;
  border-width: 2px;
  border-radius: 50px;
  border: solid 2px white;
  color: white;
  text-decoration: none;
  display: inline-block;
}
footer .btn-outline:hover {
  background-color: white;
  color: #0987bb;
}
footer .legal-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}
footer .legal-footer img {
  max-width: 165px;
  margin-bottom: 22px;
}
footer .legal-footer a {
  color: inherit;
  text-decoration: none;
}
footer .legal-footer a:hover {
  text-decoration: underline;
}
