@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Roboto/Roboto-Regular.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Roboto";
  font-weight: 100;
  font-style: normal;
  src: url("../fonts/Roboto/Roboto-Thin.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Light.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/Montserrat/Montserrat-LightItalic.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 100;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Thin.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 100;
  font-style: italic;
  src: url("../fonts/Montserrat/Montserrat-ThinItalic.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Montserrat/Montserrat-ExtraBold.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Open_Sans";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Open_sans/OpenSans-CondBold.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Open_Sans";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Open_sans/OpenSans-CondLight.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Open_Sans";
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/Open_sans/OpenSans-CondLightItalic.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Open_Sans";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Open_sans/OpenSans-ExtraBold.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Open_Sans";
  font-weight: 800;
  font-style: italic;
  src: url("../fonts/Open_sans/OpenSans-ExtraBoldItalic.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Lato/Lato-Regular.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Lato";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Lato/Lato-Light.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Lato/Lato-Bold.ttf");
  font-variant: normal;
}
@font-face {
  font-family: "Lato";
  font-weight: bold;
  font-style: italic;
  src: url("../fonts/Lato/Lato-BoldItalic.ttf");
  font-variant: normal;
}
/*Estilos de reseteo*/
*,
:before,
::before,
:after,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: sans-serif;
  font-size: 18px;
}

body {
  height: 100vh;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

a,
p,
em,
code,
pre {
  font-size: 16px;
}

small {
  font-size: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  margin-bottom: 12px;
  margin-top: 12px;
  line-height: 2.5rem;
}

button,
input[type=button],
input[type=radio],
input[type=checkbox],
select,
label {
  cursor: pointer;
}

button {
  background-color: unset;
  border: none;
  outline: none;
}

input[type=text],
input[type=number],
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

*[disabled] {
  cursor: default;
  color: #999;
  background-color: #ddd;
}

textarea {
  resize: none;
}

code,
pre {
  font-family: monospace;
}

abbr,
i,
em {
  font-style: normal;
}

abbr {
  text-decoration: none;
}

b,
strong {
  font-weight: 400;
}

hr {
  display: block;
  border: thin solid #000;
  margin: 16px auto;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

mark {
  background-color: yellow;
}

p {
  margin-bottom: 10px;
}

@media screen and (min-width: 800px) {
  body {
    display: flex;
    flex-direction: column;
  }
}

main {
  flex-grow: 1;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  z-index: 1;
}

.container {
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 801px) and (max-width: 1024px) {
  .container {
    max-width: 980px;
  }
}

footer {
  background-color: #53368D;
}

.logo_mide {
  flex-basis: 10%;
}
.logo_mide img {
  display: inline-block;
  vertical-align: middle;
  width: 85%;
  max-width: 100%;
}

.main_menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}
.main_menu > ul {
  display: flex;
  gap: 10px;
}
.main_menu > ul > li {
  cursor: pointer;
  margin: 0 20px;
  position: relative;
}
.main_menu > ul > li > :is(a, span) {
  color: #383838;
  font-size: 15px;
  display: block;
  font-family: "Roboto", Sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 1.5px;
  margin-right: 10px;
  padding: 0.8rem 0.5rem;
  text-transform: uppercase;
  transition: color 0.4s ease-in-out;
}
.main_menu > ul > li:hover > :is(a, span) {
  color: #77BD1F;
}
.main_menu > ul > li:hover .submenu {
  display: block;
  opacity: 1;
  transition: opacity 2s ease;
}
.main_menu > ul > li svg {
  fill: #383838;
  position: absolute;
  right: 0;
  top: 38%;
  width: 12px;
  height: 12px;
}
.main_menu > ul > li:hover svg {
  fill: #77BD1F;
}
.main_menu .submenu {
  display: none;
  background-color: white;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  width: auto;
  min-width: 12rem;
}
.main_menu .submenu a {
  color: #383838;
  font-family: "Roboto", Sans-serif;
  font-size: 12px;
  padding: 0.6rem 1rem;
}
.main_menu .submenu li {
  border-bottom: 1px solid #77BD1F;
}
.main_menu .submenu li a {
  transition: color 0.8s;
}
.main_menu .submenu li:hover a {
  color: #77BD1F;
}
.main_menu .submenu li:last-child {
  border-bottom: none;
}

.icono_visitanos {
  margin: 15px;
}

.breadcrumbs {
  color: white;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 1rem 0 2rem 0;
}
.breadcrumbs .breadcrumbs-modulo p {
  font-family: "Open_Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .breadcrumbs .breadcrumbs-modulo p {
    padding: 0 1rem;
  }
}
.breadcrumbs .breadcrumbs-modulo strong {
  font-weight: 800;
}

.page-header {
  background-color: #FFFFFF;
  background-image: url(../img/economia-al-dia-mide-web-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 48px 0 48px;
  text-align: center;
}
.page-header .page-header-modulo {
  padding: 30px;
}
.page-header .page-header-modulo h1 {
  color: #3A3A3A;
  font-family: "Montserrat";
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 25px;
}
.page-header .page-header-modulo p {
  font-family: "Open_Sans", sans-serif;
  font-size: 23px;
  font-weight: 300;
}

.sub-header {
  background-color: #F2F2F2;
  padding: 2rem 0;
}
@media (max-width: 1140px) {
  .sub-header {
    padding: 0 1rem;
  }
}
.sub-header h2 {
  color: #0a6999;
}
@media (max-width: 766px) {
  .sub-header h2 {
    font-size: 20px;
    line-height: 1.8rem;
    margin-top: 0;
  }
}
.sub-header p {
  color: #333;
  font-size: 18px;
  line-height: 29px;
}
.sub-header p span {
  color: #0a6999;
}
@media (max-width: 766px) {
  .sub-header p {
    font-size: 16px;
    line-height: 22px;
  }
}

.logos-asociado {
  background-color: #2B879E;
  padding: 5px 0;
}
.logos-asociado img {
  margin: 0 auto;
}

.menu-footer-modulo li {
  color: white;
  cursor: pointer;
  font-family: "Open_Sans";
  font-weight: 100;
  font-style: normal;
  font-size: 22px;
  padding: 0.4rem 1rem;
  transition: color 0.8s ease;
}
.menu-footer-modulo li:hover {
  color: #77BD1F;
}

.redes_sociales {
  color: white;
}
.redes_sociales h3 {
  font-family: "Open_Sans";
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: 29px;
  letter-spacing: 2px;
}
.redes_sociales p {
  font-family: "Open_Sans";
  font-size: 38px;
  font-weight: 100;
}
.redes_sociales ul {
  display: flex;
  gap: 15px;
}
@media (max-width: 766px) {
  .redes_sociales ul {
    justify-content: center;
  }
}
.redes_sociales ul li {
  height: 55px;
  width: 55px;
}
.redes_sociales ul li a {
  border: 2px solid #77BD1F;
  border-radius: 50%;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  padding: 18%;
  transition: transform 0.5s ease;
}
.redes_sociales ul li a:hover {
  border: 1px solid white;
  transform: scale(0.9);
}
@media (min-width: 767px) and (max-width: 988px) {
  .redes_sociales ul li a {
    height: 2rem;
    width: 2rem;
  }
}

.menu-legal-modulo li {
  color: white;
  cursor: pointer;
  font-family: "Open_Sans";
  font-weight: 100;
  font-style: normal;
  font-size: 22px;
  padding: 0.4rem 1rem;
  transition: color 0.8s ease;
}
.menu-legal-modulo li:hover {
  color: #77BD1F;
}
.menu-legal-modulo li a {
  color: white;
  cursor: pointer;
  font-family: "Open_Sans";
  font-weight: 100;
  font-style: normal;
  font-size: 22px;
  padding: 0.4rem 0;
  transition: color 0.8s ease;
}
.menu-legal-modulo li a:hover {
  color: #77BD1F;
}

.comentarios .header-comentario {
  margin-bottom: 40px;
  text-align: right;
}
.comentarios .header-comentario h2 {
  color: #0a6999;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.comentarios .header-comentario :is(p, abbr) {
  font-family: "Lato";
  font-weight: 300;
  font-style: normal;
}
.comentarios .header-comentario + h3 {
  font-weight: 400;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1em;
  padding-bottom: 1rem;
}
.comentarios .carousel_comentario {
  overflow: hidden;
  display: grid;
  grid-template-columns: 20px calc(100% - 40px) 20px;
  grid-template-rows: 5px 1fr;
}
.comentarios .carousel_comentario .swiper-contenedor {
  overflow: hidden;
  position: relative;
}
.comentarios .carousel_comentario .descripcion {
  background-color: #F2F2F2;
  color: rgb(51, 51, 51);
  font-family: "Lato", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  padding: 18px 20px;
  text-align: left;
}
.comentarios .carousel_comentario .title {
  color: #2B879E;
  font-size: 19px;
  font-family: "Lato", sans-serif;
  line-height: 1.1em;
  padding-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
}
.comentarios .carousel_comentario .title + p {
  color: rgb(51, 51, 51);
  font-size: 15px;
  text-align: center;
  font-family: "Lato", Sans-serif;
  font-weight: 300;
  font-style: normal;
}
.comentarios .carousel_comentario .swiper-barra {
  background-color: #F2F2F2;
  height: 4px;
  width: 100%;
  grid-column: 1/4;
  grid-row: 1/2;
  position: relative;
}
.comentarios .carousel_comentario .swiper-barra .progress {
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
}
.comentarios .carousel_comentario .swiper-contenedor {
  grid-column: 2/3;
  grid-row: 2/3;
}
.comentarios .carousel_comentario .swiper {
  --translateX: 0%;
  --left: 0;
  --wide_swiper: 100%;
  --transition: 0;
  display: flex;
  width: var(--wide_swiper);
  user-select: none;
  cursor: text;
  position: relative;
  top: 0;
  left: var(--left);
}
.comentarios .carousel_comentario .swiper .slide {
  padding: 20px;
  width: 100%;
  transition: all 1s;
}
.comentarios .carousel_comentario .swiper.shifting {
  transition: left 0.2s ease-out;
}
.comentarios .carousel_comentario .swiper.shifting {
  transition: left 0.2s ease-out;
}
.comentarios .carousel_comentario .swiper-button-next-contenedor,
.comentarios .carousel_comentario .swiper-button-prev-contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 40;
}
.comentarios .carousel_comentario button {
  height: 20px;
  width: 20px;
}
.comentarios .carousel_comentario button img {
  height: 20px;
  width: 20px;
}

/*
=============================================================================
  PAGINA HOME
=============================================================================
*/
.page_home header {
  background-color: #fbfbfb;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: rgba(164, 157, 157, 0.6117647059);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: 999;
}
.page_home header .container {
  max-width: 100%;
  width: 98.5%;
}
.page_home header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.page_home .contenido .row {
  display: flex;
  gap: 5px;
}
@media (max-width: 766px) {
  .page_home .contenido .row {
    flex-direction: column;
  }
}
.page_home .contenido .row .span5 {
  padding: 20px;
  width: 40%;
}
@media (max-width: 766px) {
  .page_home .contenido .row .span5 {
    width: 100%;
  }
}
.page_home .contenido .row .span7 {
  padding: 20px;
  width: 60%;
}
@media (max-width: 766px) {
  .page_home .contenido .row .span7 {
    width: 100%;
  }
}
.page_home .contenido .row .contenido-aside h3 {
  color: #0a6999;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.page_home .contenido .row .contenido-aside ul.download-pdf-list {
  list-style: disc;
  margin-left: 39px;
}
.page_home .contenido .row .contenido-aside ul.download-pdf-list span {
  color: #1BB0E4;
}
.page_home .contenido .row .contenido-aside p, .page_home .contenido .row .contenido-aside ul {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  line-height: 1.65em;
}
.page_home .contenido .row .contenido-aside ul:not(.download-pdf-list) {
  margin-bottom: 20px;
}
.page_home .contenido .row .contenido-aside ul:not(.download-pdf-list) + h3 {
  margin-bottom: 75px;
}
.page_home .contenido .row .contenido-aside .listado-volumenes [class*=span] {
  width: 50%;
}
.page_home .contenido .row .contenido-aside .listado-volumenes figcaption {
  color: #0a6999;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-align: center;
}
.page_home .contenido .row .contenido-main .header-contenido h2 {
  margin-top: 0;
}
.page_home .contenido .row .contenido-main .block-contenido p {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  line-height: 1.65em;
}
.page_home .breadcrumd-botones .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 766px) {
  .page_home .breadcrumd-botones .row {
    flex-direction: column;
    justify-content: center;
  }
}
.page_home .breadcrumd-botones .row p a {
  color: #0a6999;
  font-family: "Lato";
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 766px) {
  .page_home .breadcrumd-botones .row p a {
    padding: 10px;
    padding-bottom: 25px;
    text-align: center;
  }
}
.page_home footer {
  padding: 35px 50px 35px 0px;
}
@media (max-width: 766px) {
  .page_home footer {
    padding: 35px 1rem 150px 1rem;
  }
}
.page_home footer .container > .row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 766px) {
  .page_home footer .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 766px) {
  .page_home footer .container > .row > .span4 {
    width: 100%;
  }
}
.page_home footer .container > .row .span12 {
  width: 100%;
}
.page_home footer .row:nth-child(2) {
  justify-content: center;
  margin-top: 2rem;
}
.page_home footer .pie-de-pagina-modulo {
  color: #D7D6D6;
  display: flex;
  justify-content: center;
  padding: 10px;
  text-align: center;
  line-height: 1.5em;
}
.page_home footer .pie-de-pagina-modulo p {
  font-family: "Roboto", Sans-serif;
  font-size: 14px;
}
.page_home footer .pie-de-pagina-modulo span {
  color: #0a6999;
}

.indicador-v1 .breadcrumbs {
  background-color: #54848f;
}

.indicador-v2 .breadcrumbs {
  background-color: #77BD1F;
}
.indicador-v2 .logos-asociado {
  background-color: #63A70A;
}

.indicador-v3 .breadcrumbs {
  background-color: #722f8e;
}
.indicador-v3 .logos-asociado {
  background-color: #76318C;
}

/*# sourceMappingURL=estilos.css.map */
