@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_cuatro_especial {
  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));
  /*@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; }*/
  margin-bottom: 1.5vw;
}
.modulo_cuatro_especial .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: 83px;
  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: 16/9;
  border-radius: 20px;
  background-color: #DBE9F1;
  overflow: hidden;

  @media only screen and (max-width : 768px) {
      aspect-ratio: 16/9;
  }

  .video-familia {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }
  */
  width: 100%;
  aspect-ratio: 13.5/5.9;
  border-radius: 20px;
  background-color: #DBE9F1;
  background-image: url(img/bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media only screen and (max-width : 768px) {
  .cuidarte .mini {
    background-image: url(img/bg_mobile.png);
    aspect-ratio: 10.4/9.8;
  }
}
.cuidarte .mini .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}
@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);
  }
}

.cuidarte-video-open {
  overflow: hidden;
}

.cuidarte-video-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.cuidarte-video-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc((100vh - 40px * 2) * 16 / 9);
  height: calc(100vh - 40px * 2);
  max-width: calc(100vw - 40px * 2);
  max-height: calc((100vw - 40px * 2) * 9 / 16);
  transform: translate(-50%, -50%);
}
.cuidarte-video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.cuidarte-video-close {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  font-size: 48px;
  line-height: 48px;
  font-weight: 300;
  cursor: pointer;
}

.bienestar {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding-bottom: calc(20px + 2vw);
}
.bienestar .modulo_video {
  display: flex;
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video {
    flex-direction: column;
  }
}
.bienestar .modulo_video .left_video {
  width: 70%;
}
@media only screen and (max-width: 1248px) {
  .bienestar .modulo_video .left_video {
    width: 71%;
  }
}
@media only screen and (max-width: 1024px) {
  .bienestar .modulo_video .left_video {
    width: 73%;
  }
}
@media only screen and (max-width: 900px) {
  .bienestar .modulo_video .left_video {
    width: 75%;
  }
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .left_video {
    width: 100%;
    margin-bottom: 15px;
  }
}
.bienestar .modulo_video .left_video .bgs {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: #000;
}
.bienestar .modulo_video .left_video .bgs .poster,
.bienestar .modulo_video .left_video .bgs iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bienestar .modulo_video .left_video .bgs .poster {
  object-fit: cover;
  z-index: 1;
}
.bienestar .modulo_video .left_video .bgs iframe {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.bienestar .modulo_video .left_video .bgs.playing .poster {
  opacity: 0;
  pointer-events: none;
}
.bienestar .modulo_video .left_video .bgs.playing iframe {
  opacity: 1;
  pointer-events: auto;
}
.bienestar .modulo_video .right_opcs {
  width: 30%;
  margin-left: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1248px) {
  .bienestar .modulo_video .right_opcs {
    width: 29%;
  }
}
@media only screen and (max-width: 1024px) {
  .bienestar .modulo_video .right_opcs {
    width: 27%;
  }
}
@media only screen and (max-width: 900px) {
  .bienestar .modulo_video .right_opcs {
    width: 25%;
  }
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .right_opcs {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
  }
  .bienestar .modulo_video .right_opcs .miniopc {
    margin-bottom: 0;
  }
  .bienestar .modulo_video .right_opcs .miniopc:nth-child(3) {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width : 640px) {
  .bienestar .modulo_video .right_opcs {
    grid-template-columns: 1fr;
  }
  .bienestar .modulo_video .right_opcs .miniopc:nth-child(3) {
    grid-column: auto;
  }
}
.bienestar .modulo_video .right_opcs .miniopc:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .right_opcs .miniopc:last-of-type .miniopc-num {
    font-size: clamp(60px, 25vw, 210px);
  }
}
.bienestar .modulo_video .right_opcs .miniopc {
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
}
.bienestar .modulo_video .right_opcs .miniopc.active .miniopc-img {
  border: 6px solid #00AEEF;
}
.bienestar .modulo_video .right_opcs .miniopc.active .play {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .right_opcs .miniopc {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width : 525px) {
  .bienestar .modulo_video .right_opcs .miniopc {
    margin-bottom: 5px;
  }
}
.bienestar .modulo_video .right_opcs .miniopc .miniopc-top {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 0;
}
.bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  border: 6px solid transparent;
  box-sizing: border-box;
  overflow: hidden;
}
@media only screen and (max-width: 1248px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
    border-radius: 19px;
  }
}
@media only screen and (max-width: 1024px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
    border-radius: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
    border-radius: 17px;
  }
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
    border-radius: 16px;
  }
}
@media only screen and (max-width : 640px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
    border-radius: 15px;
  }
}
@media only screen and (max-width : 525px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-img {
    border-radius: 14px;
  }
}
.bienestar .modulo_video .right_opcs .miniopc .miniopc-img .play {
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.bienestar .modulo_video .right_opcs .miniopc .miniopc-img .bgimg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bienestar .modulo_video .right_opcs .miniopc .miniopc-num {
  margin-left: 5px;
  width: 100%;
  color: #00AEEF;
  font-family: Roboto;
  font-size: clamp(60px, 8.5vw, 150px);
  line-height: 0.55;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 1248px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-num {
    font-size: clamp(60px, 8.5vw, 150px);
  }
}
@media only screen and (max-width: 1024px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-num {
    font-size: clamp(60px, 8.8vw, 150px);
  }
}
@media only screen and (max-width: 900px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-num {
    font-size: clamp(60px, 9vw, 150px);
  }
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-num {
    font-size: clamp(60px, 17vw, 210px);
  }
}
@media only screen and (max-width : 640px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-num {
    font-size: clamp(60px, 25vw, 210px);
  }
}
.bienestar .modulo_video .right_opcs .miniopc .miniopc-title {
  margin-top: 15px;
  font-family: Roboto;
  font-size: calc(18px + 0.35vw);
  line-height: 1.05;
  font-weight: 300;
  color: #1d1d1b;
}
@media only screen and (max-width: 1248px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-title {
    font-size: calc(15px + 0.25vw);
  }
}
@media only screen and (max-width: 1024px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-title {
    font-size: calc(13px + 0.35vw);
  }
}
@media only screen and (max-width: 900px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-title {
    font-size: calc(13px + 0.35vw);
  }
}
@media only screen and (max-width : 768px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-title {
    font-size: calc(16px + 0.35vw);
  }
}
@media only screen and (max-width : 640px) {
  .bienestar .modulo_video .right_opcs .miniopc .miniopc-title {
    font-size: calc(16px + 0.35vw);
  }
}
@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;
  /*.bg1 { background-image: url("./../../img/mini_bg_logros_1.png"); }
  .bg2 { background-image: url("./../../img/mini_bg_logros_2.png"); }
  .bg3 { background-image: url("./../../img/mini_bg_logros_3.png"); }
  .bg4 { background-image: url("./../../img/mini_bg_logros_4.png"); }*/
  /*padding-bottom: calc(20px + $ades_margen_bloque);
  @media only screen and (max-width: 1024px) {
      padding-bottom: calc(20px + $ades_margen_bloque_mid);
  }   
  @media only screen and (max-width : 525px) {
      padding-bottom: calc(20px + $ades_margen_bloque_mob);
  }*/
}
.ajusteslogros .mini {
  border-radius: 30px;
}
.ajusteslogros .cabecera {
  margin-bottom: calc(20px + 1vw);
}
.ajusteslogros .modulo_cuatro_especial {
  margin-bottom: 0 !important;
}
.ajusteslogros .mini::after {
  opacity: var(--afterOpacity);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: linear-gradient(to top, rgba(202, 218, 231, 0.45), rgba(202, 218, 231, 0));
  pointer-events: none;
}
.ajusteslogros .mini {
  --afterOpacity: 1;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 83px;
}
.ajusteslogros .mini .mybotton {
  width: 100%;
  height: 100%;
}
.ajusteslogros .mini .over {
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #dbe9f1;
  width: 100%;
  height: 100%;
  width: 100%;
}
.ajusteslogros .mini .over .fondoover {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.ajusteslogros .mini .over .botonera {
  min-height: 64px;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  left: 5%;
  top: 16%;
  width: 90%;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 1248px) {
  .ajusteslogros .mini .over .botonera {
    top: 14%;
  }
}
@media only screen and (max-width: 1024px) {
  .ajusteslogros .mini .over .botonera {
    top: 16.5%;
  }
}
@media only screen and (max-width: 900px) {
  .ajusteslogros .mini .over .botonera {
    top: 16%;
  }
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera {
    top: 15%;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera {
    margin-bottom: 30px;
    top: 14%;
  }
}
.ajusteslogros .mini .over .botonera .ico {
  margin-left: 14px;
}
@media only screen and (max-width: 1720px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 12px;
  }
}
@media only screen and (max-width: 1550px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1448px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 1248px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 6px;
  }
}
@media only screen and (max-width: 1024px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 4px;
  }
}
@media only screen and (max-width: 900px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 2px;
  }
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 10px;
  }
}
@media only screen and (max-width : 640px) {
  .ajusteslogros .mini .over .botonera .ico {
    margin-left: 5px;
  }
}
.ajusteslogros .mini .over .botonera .ico img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(98%) saturate(1797%) hue-rotate(165deg) brightness(96%) contrast(101%);
}
.ajusteslogros .mini .over .botonera .wiFam {
  width: 25%;
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera .wiFam {
    width: 55%;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .wiFam {
    width: 90%;
  }
}
.ajusteslogros .mini .over .botonera .wiFam img {
  width: 100%;
}
.ajusteslogros .mini .over .botonera .wiCab {
  width: 20%;
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera .wiCab {
    width: 36%;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .wiCab {
    position: absolute;
    left: 11px;
    width: 61%;
  }
}
.ajusteslogros .mini .over .botonera .wiCab img {
  width: 100%;
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .ninoCab {
    left: 19px !important;
  }
}
@media only screen and (max-width : 360px) {
  .ajusteslogros .mini .over .botonera .ninoCab {
    left: 16px !important;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .papaCab {
    left: 19px !important;
  }
}
@media only screen and (max-width : 360px) {
  .ajusteslogros .mini .over .botonera .papaCab {
    left: 16px !important;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .mamiCab {
    left: 15px !important;
  }
}
@media only screen and (max-width : 360px) {
  .ajusteslogros .mini .over .botonera .mamiCab {
    left: 12px !important;
  }
}
.ajusteslogros .mini .over .botonera .tit {
  margin-left: 10px;
  font-family: gilroyd-extrabold;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  color: #00AEEF;
  text-transform: uppercase;
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera .tit {
    display: none;
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .tit {
    font-size: 20px !important;
  }
}
.ajusteslogros .mini .over .botonera .mas {
  max-width: 44px;
  transform: scale(1);
}
.ajusteslogros .mini .over .botonera .mas img {
  width: 100%;
}
@media only screen and (max-width: 1720px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 1550px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.9);
  }
}
@media only screen and (max-width: 1448px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.85);
  }
}
@media only screen and (max-width: 1248px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 1024px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.77) translateY(0px);
  }
}
@media only screen and (max-width: 900px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.75) translateY(0px);
  }
}
@media only screen and (max-width : 768px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.85) translateY(0px);
  }
}
@media only screen and (max-width : 640px) {
  .ajusteslogros .mini .over .botonera .mas {
    transform: scale(0.8) translateY(0px);
  }
}
@media only screen and (max-width : 525px) {
  .ajusteslogros .mini .over .botonera .mas {
    display: none;
  }
}

.ideasconsejos {
  position: relative;
  margin: 0 auto;
  background-color: #e9eff3;
  padding-top: calc(15px + 1vw);
  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: 230px;
  max-height: 230px;
}
@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: 230px;
    max-height: 230px;
  }
}
@media only screen and (max-width: 1550px) {
  .ideasconsejos .mini .cont {
    min-height: 200px;
    max-height: 200px;
  }
}
@media only screen and (max-width: 1248px) {
  .ideasconsejos .mini .cont {
    min-height: 180px;
    max-height: 180px;
  }
}
@media only screen and (max-width: 900px) {
  .ideasconsejos .mini .cont {
    min-height: 150px;
    max-height: 150px;
  }
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .mini .cont {
    min-height: 250px;
    max-height: 250px;
  }
}
@media only screen and (max-width : 640px) {
  .ideasconsejos .mini .cont {
    min-height: 230px;
    max-height: 230px;
  }
}
@media only screen and (max-width : 525px) {
  .ideasconsejos .mini .cont {
    min-height: 180px;
    max-height: 180px;
  }
}
.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: 70%;
  background-color: white;
  border-radius: 40px;
  margin: 0 auto;
  margin-bottom: calc(15px + 1vw);
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding-left: 35px;
  padding-right: 35px;
  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%;
  }
}
@media only screen and (max-width : 768px) {
  .ideasconsejos .selector {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.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;
}
