@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,500;1,200;1,500&family=Poppins:ital,wght@0,300;0,500;1,300;1,500&family=Rubik:ital,wght@0,500;0,600;1,500;1,600&display=swap');
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
    -moz-transition: color 0.3s ease-in-out 0s;
    -webkit-transition: color 0.3s ease-in-out 0s;
    -o-transition: color 0.3s ease-in-out 0s;
    -ms-transition: color 0.3s ease-in-out 0s;
    transition: color 0.3s ease-in-out 0s;
}

header,
nav,
section,
article,
aside,
footer,
address {
    display: block;
}

img {
    max-width: 100%;
}

ul {
    padding-left: 0px;
    list-style: none;
}

h2 {
    color: #292F59;
}

body>div {
    min-width: 320px;
    max-width: 1920px;
    margin: auto;
    padding: 0%;
    -moz-animation: inicio 1s ease-in-out reverse 0s;
    -webkit-animation: inicio 1s ease-in-out reverse 0s;
    -o-animation: inicio 1s ease-in-out reverse 0s;
    -ms-animation: inicio 1s ease-in-out reverse 0s;
    animation: inicio 1s ease-in-out reverse 0s;
}

@-moz-keyframes inicio {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

@-webkit-keyframes inicio {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

@-o-keyframes inicio {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

@-ms-keyframes inicio {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

@keyframes inicio {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

.oculto {
    display: none;
}

.activo {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: bold !important;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

header {
    margin: 0%;
    padding: 2% 5%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: sticky;
    top: 0%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: rgba(182, 12, 25, 1);
    z-index: 2;
}

header h1 {
    -webkit-flex: 1 1 80%;
    -ms-flex: 1 1 80%;
    flex: 1 1 80%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: calc(16px + (24 - 16) * ((100vw - 320px) * (1/1600)));
}

header h1 a {
    -webkit-flex: 0 0 80%;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    width: 80%;
    cursor: pointer;
}

header h1 a img {
    width: 100%;
}

header h1 span {
    -webkit-flex: 1 1 40%;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    text-align: center;
    font-size: 1px;
    color: #9D000C;
}

header nav {
    margin-right: 15%;
    -webkit-flex: 1 1 15%;
    -ms-flex: 1 1 15%;
    flex: 1 1 15%;
    font-size: calc(42px + (54 - 42) * ((100vw - 320px) * (1/1600)));
}

header nav ul[role="menu"] {
    padding-left: 0px;
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) * (1/1600)));
    list-style: none;
}

header nav ul[role="menu"]>li {
    margin-top: 5%;
    padding: 2%;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: auto;
    -moz-animation: abajo 0.5s ease-in-out 1;
    -webkit-animation: abajo 0.5s ease-in-out 1;
    -o-animation: abajo 0.5s ease-in-out 1;
    -ms-animation: abajo 0.5s ease-in-out 1;
    animation: abajo 0.5s ease-in-out 1;
    background-color: rgba(182, 12, 25, 0.98);
}

@-moz-keyframes abajo {
    from {
        opacity: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateY(0%);
        z-index: initial;
    }
}

@-webkit-keyframes abajo {
    from {
        opacity: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateY(0%);
        z-index: initial;
    }
}

@-o-keyframes abajo {
    from {
        opacity: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateY(0%);
        z-index: initial;
    }
}

@-ms-keyframes abajo {
    from {
        opacity: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateY(0%);
        z-index: initial;
    }
}

@keyframes abajo {
    from {
        opacity: 0;
        transform: translateY(-100%);
        z-index: -1;
    }
    to {
        opacity: 1;
        transform: translateY(0%);
        z-index: initial;
    }
}

.overlay-content {
    width: 100%;
    margin-top: 25%;
    position: relative;
    top: 1.5%;
    text-align: left;
    z-index: 1;
}

.overlay .closebtn {
    position: absolute;
    top: 2%;
    right: 8%;
    z-index: 1;
}

.overlay .icono {
    position: absolute;
    width: 50%;
    top: 4%;
    left: 5%;
    z-index: 1;
}

.closebtn a {
    font-weight: bold;
    font-size: calc(48px + (52 - 48) * ((100vw - 320px) * (1/1600)));
}

header nav span {
    margin-left: 75%;
    padding: 5%;
    display: block;
    cursor: pointer;
    font-weight: bold;
}

.icono-menu {
    margin: 0% 5%;
    padding: 0%;
    width: 8%;
    display: inline-block;
    cursor: pointer;
    background: url(imagenes/iconos/iconos-01.svg) center center /75% no-repeat;
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

header nav ul[role="menu"] li[role="menuitem"]:hover {
    font-weight: bolder;
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

ul[role="menu"] li[role="menuitem"]:nth-child(2) a .icono-menu {
    background-image: url(imagenes/iconos/iconos-02.svg);
}

ul[role="menu"] li[role="menuitem"]:nth-child(3) a .icono-menu {
    background-image: url(imagenes/iconos/iconos-03.svg);
}

ul[role="menu"] li[role="menuitem"]:nth-child(4) a .icono-menu {
    background-image: url(imagenes/iconos/iconos-04.svg);
}

ul[role="menu"] li[role="menuitem"]:nth-child(5) a .icono-menu {
    background-image: url(imagenes/iconos/iconos-05.svg);
}

.responsive {
    display: block;
}

main {
    margin: 0% 3%;
}

.parallax {
    width: 100%;
    height: 150vw;
    margin: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax div {
    width: 100%;
    height: 100%;
    padding: 33% 0%;
    text-align: center;
}

.inicio .parallax div {
    padding: 25% 0%;
}

.parallax div p {
    margin: auto;
    font-size: calc(24px + (48 - 24) * ((100vw - 320px) * (1/1600)));
    line-height: calc(28px + (42 - 22) * ((100vw - 320px) * (1/960)));
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
    color: #292F59;
    -moz-animation: salir 0.5s ease-in-out 0.5s;
    -webkit-animation: salir 0.5s ease-in-out 0.5s;
    -o-animation: salir 0.5s ease-in-out 0.5s;
    -ms-animation: salir 0.5s ease-in-out 0.5s;
    animation: salir 0.5s ease-in-out 0.5s;
}

.parallax div span {
    margin: auto;
    font-size: calc(18px + (28 - 18) * ((100vw - 320px) * (1/1600)));
    font-weight: normal;
}

.inicio .parallax {
    background-image: url(imagenes/contenido/ilustraciones/Portadas/celular/inicio_portada_monitoreo_de_precios.svg);
}

.monitoreo .parallax {
    background-image: url(imagenes/contenido/ilustraciones/Portadas/celular/monitoreo_portada_monitoreo_de_precios.svg);
}

.acercaNosotros .parallax {
    background-image: url(imagenes/contenido/ilustraciones/Portadas/celular/acerca_de_nosotros_portada_monitoreo_de_precios.svg);
}

.investigaciones .parallax {
    background-image: url(imagenes/contenido/ilustraciones/Portadas/celular/investigaciones_portada_monitoreo_de_precios.svg);
}

.contacto .parallax {
    background-image: url(imagenes/contenido/ilustraciones/Portadas/celular/contacto_portada_monitoreo_de_precios.svg);
}

main p,
main button,
main ul li,
main label,
main input,
main textarea {
    margin: 0% 0% 5% 0%;
    font-size: calc(18px + (20 - 18) * ((100vw - 320px) * (1/960)));
    line-height: calc(28px + (30 - 28) * ((100vw - 320px) * (1/960)));
    font-family: 'Montserrat', sans-serif;
    color: #393939;
}

main ul li {
    margin: 2% 0%;
    padding-left: 5%;
    max-width: 1170px;
    margin: 2% auto;

}

main textarea {
    margin: 0%;
    width: 100%;
}

main label {
    display: inline-block;
    width: 60%;
    margin: 0%;
    padding: 2%;
    background-color: #B60C19;
    color: #fff;
}

main input {
    width: 100%;
    margin: 0% 0% 5% 0%;
    padding: 1%;
}

main button,
main input[type=submit],
.accordion {
    width: auto;
    margin: 15% auto;
    padding: 2% 10%;
    display: block;
    color: #fff;
    background-color: #292F59;
    border: none;
    border-radius: 30px;
    box-shadow: 3px 3px 3px #393939;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

main button:hover,
main input[type=submit]:hover,
.accordion:hover {
    background-color: #9D000C !important;
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

main h2 {
    margin: 0% 0% 10% 0%;
    padding-bottom: 8%;
    font-size: calc(24px + (28 - 24) * ((100vw - 320px) * (1/960)));
    font-family: 'Rubik', sans-serif;
    color: #292F59;
    background: url(imagenes/fondo/linea_hoja.png) left bottom /100% no-repeat;
}

main h3 {
    margin: 0% 0% 10% 0%;
    font-size: calc(22px + (28 - 22) * ((100vw - 320px) * (1/960)));
    font-family: 'Rubik', sans-serif;
    color: #292F59;
}

main section {
    margin: 15% 0%;
    padding: 5%;
}

main section article {
    margin: 0% 0% 10% 0%;
}

.oculto-mini {
    display: none;
}

.inicio section:nth-child(3),
.inicio section:nth-child(5) article {
    margin: 15% 0%;
    padding: 10%;
    background-color: #EFEFEF;
    border-radius: 30px;
}

.inicio section:nth-child(3) .linea {
    margin: 10% 0%;
    background-color: #292F59;
}

.inicio section:nth-child(3) article:nth-child(4) ul li {
    display: inline-block;
    width: 22%;
    margin-right: 10%;
}

.inicio .slideshow-container {
    max-width: 100%;
    margin: auto;
    margin-bottom: 5%;
    position: relative;
}

.inicio .slideshow-container img {
    width: 100%;
}

.inicio .mySlides {
    display: none;
}

.inicio .prev,
.inicio .next {
    width: auto;
    padding: 2%;
    position: absolute;
    bottom: 0%;
    font-weight: bold;
    font-size: calc(16px + (16 - 16) * ((100vw - 320px) * (1/960)));
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
    user-select: none;
    color: #292F59;
}

.inicio .next {
    right: 0%;
}

.inicio .prev:hover,
.inicio .next:hover {
    color: #B60C19;
}

.inicio .text {
    width: 100%;
    padding: 2% 5%;
    position: absolute;
    bottom: 0%;
    font-size: calc(16px + (16 - 16) * ((100vw - 320px) * (1/960)));
    text-align: center;
}

.inicio .numbertext {
    padding: 1% 2%;
    position: absolute;
    top: 0%;
    font-size: calc(16px + (16 - 16) * ((100vw - 320px) * (1/960)));
}

.inicio .slideshow-container+div {
    text-align: center;
}

.inicio .dot {
    height: 3.5vw;
    width: 3.5vw;
    margin: 0% 2%;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    background-color: #292F59;
}

.monitoreo .breadcrumb ul {
    padding-left: 5%;
}

.monitoreo .breadcrumb ul li {
    display: inline-block;
}

.monitoreo .breadcrumb ul li::after {
    content: ">";
    margin: 0% 5%;
    color: #393939;
}

.monitoreo .breadcrumb ul li a {
    color: #393939;
    text-decoration: underline;
}

.monitoreo section:nth-child(3) p span {
    color: #292F59;
    font-weight: bold;
}

.monitoreo section:nth-child(3) div img {
    display: block;
    width: 60%;
    margin: 0% auto;
}

.monitoreo section:nth-child(4) {
    background-color: #EFEFEF;
}

.monitoreo section:nth-child(4) label,
.monitoreo section:nth-child(4) select {
    display: block;
    width: 100%;
    padding: 3%;
    color: #292F59;
    background-color: #fff;
    font-size: calc(22px + (24 - 22) * ((100vw - 320px) * (1/960)));
    border-radius: 50px;
}

.monitoreo section:nth-child(4) label {
    background-color: #EFEFEF;
}

.monitoreo section:nth-child(4) select {
    margin: 5% 0%;
    color: #5d5d5d;
    box-shadow: 3px 3px 3px #393939;
}

.monitoreo section:nth-child(4) select:hover {
    color: #fff;
    background-color: #9D000C;
}

.monitoreo section:nth-child(4) form>div {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 3% 0%;
}

.monitoreo section:nth-child(4) form>div .iconosPasos {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding: 5%;
    background: url(imagenes/iconos/paso_1_monitoreo_de_precios.svg) center center /66% no-repeat;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #292F59;
}

.monitoreo section:nth-child(4) form>div div:nth-child(2) {
    -webkit-flex: 0 0 65%;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
}

.monitoreo section:nth-child(4) form>div .paso1 {
    background-image: url(imagenes/iconos/paso_1_monitoreo_de_precios.svg);
}

.monitoreo section:nth-child(4) form>div .paso2 {
    background-image: url(imagenes/iconos/paso_2_monitoreo_de_precios.svg);
}

.monitoreo section:nth-child(4) form>div .paso3 {
    background-image: url(imagenes/iconos/paso_3_monitoreo_de_precios.svg);
}

.monitoreo section:nth-child(4) form>div .paso4 {
    background-image: url(imagenes/iconos/paso_4_monitoreo_de_precios.svg);
}

.monitoreo .resultados {
    background-color: #EFEFEF;
}

.monitoreo .resultados div:nth-child(2) img {
    display: inline-block;
    width: 30%;
    padding: 5%;
    border-radius: 100%;
    border: 1px solid #292F59;
    background-color: #fff;
}

.monitoreo .resultados div:nth-child(2) div {
    display: inline-block;
    width: 60%;
}

.monitoreo .resultados div div p:nth-child(1) {
    padding: 5% 0%;
    margin: 0%;
    background: url(imagenes/fondo/linea_hoja.png) left bottom /100% no-repeat;
}

.monitoreo .resultados div div p:nth-child(2) {
    margin-bottom: 5%;
    color: #292F59;
    font-size: calc(24px + (28 - 24) * ((100vw - 320px) * (1/960)));
    font-weight: bolder;
}

.monitoreo .resultados div:nth-child(4) {
    padding: 8%;
    border-left: 3px solid #292F59;
}

.monitoreo .resultados div:nth-child(4) div {
    display: block;
    margin: 5% 0%;
    font-family: 'Montserrat', sans-serif;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) * (1/960)));
}

.monitoreo .resultados div:nth-child(4) div span:nth-child(1) {
    display: inline-block;
    padding: 5%;
    margin-right: 3%;
    color: #fff;
    background-color: #9D000C;
}

.monitoreo .resultados div:nth-child(4) div:nth-child(1) span:nth-child(1) {
    width: 60%;
}

.monitoreo .resultados div:nth-child(4) div:nth-child(2) span:nth-child(1) {
    width: 50%;
    background-color: #B60C19;
}

.monitoreo .resultados div:nth-child(4) div:nth-child(3) span:nth-child(1) {
    width: 40%;
    background-color: #D13C48;
}

.monitoreo section:last-child article div {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3% 5%;
}

.monitoreo section:last-child article div img {
    display: inline-block;
    -webkit-flex: 1 1 20%;
    -ms-flex: 1 1 20%;
    flex: 1 1 20%;
    width: 20%;
    margin: auto;
}

.monitoreo section:last-child article div div {
    display: inline-block;
    -webkit-flex: 1 1 70%;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
    width: 70%;
}

.monitoreo section:last-child article div div p {
    margin: 1%;
}

.monitoreo section:last-child article div:nth-child(2) div p:nth-child(1),
.monitoreo section:last-child article div:nth-child(2) div p:nth-child(2),
.monitoreo section:last-child article div:nth-child(2) div p:nth-child(4),
.monitoreo section:last-child article div:nth-child(3) div p:nth-child(1),
.monitoreo section:last-child article div:nth-child(3) div p:nth-child(3) {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) * (1/960)));
}

.monitoreo section:last-child article div div p:nth-child(2) {
    font-weight: bolder;
    color: #292F59;
}

.monitoreo section:last-child article .pregunta {
    background-color: #EFEFEF;
}

.monitoreo section:last-child article div:nth-child(2) div p:nth-child(4),
.monitoreo section:last-child article div:nth-child(3) div p:nth-child(3) {
    right: 0%;
    text-align: right;
}

.contacto .ubicacion {
    background-color: #EFEFEF;
}

.contacto h2 {
    padding-bottom: 12%;
    background: url(imagenes/fondo/linea_hoja.png) left bottom /100% no-repeat;
}

.contacto .investigaciones .ubicacion {
    text-align: right;
}

.contacto .modal,
.acercaNosotros .modal {
    width: 100%;
    height: 100%;
    position: fixed;
    padding-top: 5%;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #292F59;
    overflow: auto;
    -moz-animation: inicio 0.5s ease-in-out reverse 0s;
    -webkit-animation: inicio 0.5s ease-in-out reverse 0s;
    -o-animation: inicio 0.5s ease-in-out reverse 0s;
    -ms-animation: inicio 0.5s ease-in-out reverse 0s;
    animation: inicio 0.5s ease-in-out reverse 0s;
}

.contacto .modal .modal-content,
.acercaNosotros .modal .modal-content {
    width: 80%;
    margin: auto;
    padding: 5%;
    background-color: #fff;
    font-size: calc(16px + (24 - 16) * ((100vw - 320px) * (1/1600)));
    line-height: calc(24px + (32 - 24) * ((100vw - 320px) * (1/1600)));
    font-family: "Montserrat", sans-serif;
    text-align: center;
    -moz-animation: salir 0.5s ease-in-out 0s;
    -webkit-animation: salir 0.5s ease-in-out 0s;
    -o-animation: salir 0.5s ease-in-out 0s;
    -ms-animation: salir 0.5s ease-in-out 0s;
    animation: salir 0.5s ease-in-out 0s;
}

.contacto .modal .modal-content img {
    width: 15%;
}

.acercaNosotros .modal .modal-content {
    padding: 3% 5%;
}

.acercaNosotros .modal .modal-content>div {
    background-color: #fff;
}

.acercaNosotros .modal .modal-content>div:first-child {
    background-color: #B60C19;
}

.acercaNosotros .modal .modal-content>div:nth-child(2) {
    text-align: left;
}

.acercaNosotros .modal .modal-content>div:nth-child(2) div {
    background-color: #fff;
    color: #292F59;
}

.acercaNosotros .modal .modal-content>div:nth-child(2) .btnCerrar {
    padding: 0.5%;
    background-color: #B60C19;
    font-size: calc(24px + (32 - 24) * ((100vw - 320px) * (1/960)));
    font-weight: bolder;
    cursor: pointer;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    right: 25%;
    top: 5%;
}

.acercaNosotros section:nth-child(7) h3 {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0%;
    padding: 0%;
}

.acercaNosotros section:nth-child(7) h3 .linea {
    display: inline-block;
    -webkit-flex: 1 1 30%;
    -ms-flex: 1 1 30%;
    flex: 1 1 70%;
    margin: 0%;
    padding: 0%;
    height: 3px;
    background-color: #9D000C;
}

.acercaNosotros section:nth-child(7) h3 div {
    display: inline-block;
    -webkit-flex: 1 1 30%;
    -ms-flex: 1 1 30%;
    flex: 1 1 70%;
    margin: 0% !important;
    text-align: center;
    color: #fff;
    background-color: #9D000C !important;
}

.acercaNosotros section:nth-child(7) .modal .modal-content>div:nth-child(2) div:nth-child(2) p:first-child {
    font-size: calc(32px + (40 - 32) * ((100vw - 320px) * (1/960)));
    line-height: calc(42px + (50 - 42) * ((100vw - 320px) * (1/960)));
}

.acercaNosotros section:nth-child(7) .modal .modal-content>div:nth-child(2) div:nth-child(2) p:nth-child(2) {
    padding: 5% 0%;
    font-size: calc(24px + (30 - 24) * ((100vw - 320px) * (1/960)));
    line-height: calc(30px + (40 - 30) * ((100vw - 320px) * (1/960)));
    background: url(imagenes/fondo/linea_hoja.png) bottom left /100% no-repeat;
}

.acercaNosotros section:nth-child(7) .modal .modal-content>div:nth-child(2) div:nth-child(3) p:first-child,
.acercaNosotros section:nth-child(7) .modal .modal-content>div:nth-child(2) div:nth-child(4) p:first-child {
    font-weight: bolder;
    padding: 2% 0%;
    background: url(imagenes/fondo/linea_hoja.png) bottom left /70% no-repeat;
}

.investigaciones section:nth-child(3) p {
    font-size: calc(20px + (28 - 20) * ((100vw - 320px) * (1/960)));
}

.investigaciones section:nth-child(3) article button {
    display: inline-block;
    padding: 20%;
    border-radius: 50%;
    font-size: calc(20px + (28 - 20) * ((100vw - 320px) * (1/960)));
    background: url(imagenes/iconos/descarga_investigaciones.svg) center center /33% no-repeat;
    background-color: #292F59;
}

.investigaciones section:nth-child(3) button {
    display: inline-block;
    padding: 1.5%;
    border-radius: 0%;
    font-size: calc(20px + (28 - 20) * ((100vw - 320px) * (1/960)));
}

.investigaciones section:nth-child(3) button:nth-child(3) {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.investigaciones section:nth-child(3) button+button {
    background-color: #3a3c57;
}

.investigaciones section:nth-child(3) button+button+button {
    background-color: #4a4b55;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.investigaciones section:nth-child(3) .linea {
    margin: 0%;
    height: 3px;
    width: 100%;
    background-color: #B60C19;
}

.investigaciones section:nth-child(3) article {
    background-color: #EFEFEF;
    border-radius: 50px;
}

.investigaciones section:nth-child(3) article img {
    width: 150%;
    display: block;
    padding: -20%;
}

.investigaciones section:nth-child(3) article div {
    padding: 10%;
    text-align: center;
}

.investigaciones section:nth-child(3) article div h3 {
    font-size: calc(28px + (32 - 28) * ((100vw - 320px) * (1/960)));
}

.investigaciones section:nth-child(3) article div ul {
    text-align: left;
}

.investigaciones section:nth-child(3) article div ul li {
    margin: 8% 0%;
}

.investigaciones section:nth-child(3) article div ul li+li,
.investigaciones section:nth-child(3) article div ul li+li+li {
    font-weight: bolder;
}

.investigaciones section:nth-child(3) article div .btnDesc {
    border-radius: 50%;
}

.investigaciones section:last-child {
    background-color: #EFEFEF;
    border-radius: 50px;
}

.investigaciones section:last-child h2,
.investigaciones section:last-child .linea,
.investigaciones section:last-child p {
    color: #292F59;
}

.investigaciones section:last-child input[type=text] {
    width: 100%;
}

.investigaciones section:last-child input[type=submit] {
    box-shadow: none;
}

.siteMap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.siteMap h2 {
    padding: 5% 0%;
    background: url(imagenes/fondo/linea_hoja.png) left bottom /100% no-repeat;
}

.siteMap section ul li a {
    color: #5d5d5d;
    text-decoration: underline;
}

.siteMap img {
    display: inline-block;
    -webkit-flex: 0 0 10%;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    width: 10%;
    margin: 0% 10%;
}

.acercaNosotros section {
    padding: 10% 8%;
    background-color: #EFEFEF;
    border-radius: 50px;
}

.acercaNosotros section:nth-child(5),
.acercaNosotros section:nth-child(7) {
    background-color: #fff;
}

.acercaNosotros .linea {
    margin: 10% auto;
    width: 100%;
    background-color: #292F59;
}

.acercaNosotros .accordion {
    margin: 2%;
    padding: 2% 5%;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

.acercaNosotros .accordion::after {
    content: "+";
    position: absolute;
    right: 15%;
    font-size: calc(32px + (48 - 32) * ((100vw - 320px) * (1/960)));
}

.acercaNosotros .active::after {
    content: "-";
    position: absolute;
    right: 15%;
    font-size: calc(32px + (48 - 32) * ((100vw - 320px) * (1/960)));
}

.acercaNosotros .panel {
    margin: 5% 0%;
    padding: 0% 5%;
    background-color: white;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.acercaNosotros section:nth-child(7) article div img {
    display: block;
    margin: 5% auto;
}

.acercaNosotros section:nth-child(7) article div {
    margin: 15% 0%;
    padding: 8%;
    background-color: #EFEFEF;
    border-radius: 50px;
}

.acercaNosotros section:nth-child(7) article div ul li span {
    display: block;
    width: 100%;
    padding: 5%;
    background-color:  #EFEFEF;
    color: #393939;
    text-align: center;
    font-weight: bolder;
}

.acercaNosotros section:nth-child(7) article div ul li span+span {
    background-color:  #EFEFEF;
    color: #393939;
    font-weight: normal;
    border-bottom: 3px solid #292F59;
}

.active,
.dot:hover {
    background-color: #B60C19;
}

.inicio .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%)
    }
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
    to {
        opacity: 1;
        transform: translateY(0%)
    }
}

.inicio .slideshow-container+div+div {
    text-align: center;
}

footer {
    padding: 10% 0% 0% 0%;
    font-size: calc(16px + (16 - 16) * ((100vw - 320px) * (1/960)));
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #B60C19;
}

.linea {
    height: 1px;
    width: 90%;
    margin: 1% 5%;
    background-color: #fff;
    border-radius: 50px;
}
.fin{
    text-align: center;
    padding-bottom: 2%;
}
footer ul[role="menu"] {
    margin: 10% 0%;
}

footer ul[role="menu"]>li {
    margin: 10% 0%;
    text-align: center;
}

footer .icono-menu {
    width: 10%;
    background-size: 55%;
}

footer div:nth-child(5) {
    margin: 0%;
    padding: 1% 0%;
    text-align: center;
}

footer div:nth-child(5) a,
footer div:nth-child(5) p {
    margin: 0% 2%;
    display: inline-block;
}

footer div:last-child {
    margin: 0%;
    padding: 2% 0%;
    text-align: center;
    background-color: #9D000C;
}

.logosinst {
    padding: 10% 0%;
    text-align: center;
}

footer>p {
    margin: 5% 0%;
    padding: 5% 10%;
    text-align: center;
    font-weight: lighter;
}

footer div:last-child a {
    display: inline-block;
    font-weight: lighter;
}

@media screen and (min-width: 768px) {
    header {
        padding: 2% 0%;
        position: sticky;
        top: 0px;
    }
    header h1 a {
        -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        width: 60%;
        margin-left: 20%;
    }
    header h1 span {
        -webkit-flex: 1 1 30%;
        -ms-flex: 1 1 30%;
        flex: 1 1 30%;
        text-align: center;
    }
    header nav {
        margin-right: 20%;
    }
    header nav ul[role="menu"]>li {
        margin-top: 1%;
        margin-right: 5%;
        padding: 4%;
    }
    .overlay-content {
        top: -2.5%;
    }
    .overlay .closebtn {
        right: 15%;
        z-index: 1;
    }
    .icono-menu {
        background: url(imagenes/iconos/iconos-01.svg) center center /40% no-repeat;
    }
    .parallax {
        width: 100%;
        height: 115vw;
    }
    .parallax div {
        padding: 25% 0%;
    }
    .inicio .parallax div {
        padding: 15% 0%;
    }
    .inicio .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/ipad/inicio_portada_monitoreo_de_precios.svg);
    }
    .monitoreo .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/ipad/monitoreo_portada_monitoreo_de_precios.svg);
    }
    .acercaNosotros .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/ipad/acerca_de_nosotros_portada_monitoreo_de_precios.svg);
    }
    .investigaciones .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/ipad/investigaciones_portada_monitoreo_de_precios.svg);
    }
    .contacto .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/ipad/contacto_portada_monitoreo_de_precios.svg);
    }
    main section {
        margin: 3% 0%;
    }
    main h2 {
        margin: 0% 0% 5% 0%;
        padding-bottom: 3%;
        background: url(imagenes/fondo/linea_hoja.png) left bottom /50% no-repeat;
    }
    main h3 {
        margin: 0% 0% 5% 0%;
    }
    main button,
    main input[type=submit] {
        margin: 4% auto;
        padding: 2% 8%;
    }
    .inicio section:nth-child(3) {
        margin: 5% 0%;
    }
    .inicio section:last-child {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    .inicio section:last-child article {
        -webkit-flex: 1 1 45%;
        -ms-flex: 1 1 45%;
        flex: 1 1 45%;
        margin: 0% 2%;
        padding: 5%;
    }
    .monitoreo section:nth-child(3) div img {
        -webkit-flex: 0 0 10%;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        display: block;
    }
    .monitoreo section:nth-child(4) label,
    .monitoreo section:nth-child(4) select {
        padding: 2%;
    }
    .monitoreo section:nth-child(4) select {
        margin: 2% 0%;
    }
    .monitoreo section:nth-child(4) form>div .iconosPasos {
        -webkit-flex: 0 0 10%;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        padding: 5%;
        background: url(imagenes/iconos/paso_1_monitoreo_de_precios.svg) center center /66% no-repeat;
        background-color: #fff;
        border-radius: 50%;
        border: 3px solid #292F59;
    }
    .monitoreo section:nth-child(4) form>div .paso1 {
        background-image: url(imagenes/iconos/paso_1_monitoreo_de_precios.svg);
    }
    .monitoreo section:nth-child(4) form>div .paso2 {
        background-image: url(imagenes/iconos/paso_2_monitoreo_de_precios.svg);
    }
    .monitoreo section:nth-child(4) form>div .paso3 {
        background-image: url(imagenes/iconos/paso_3_monitoreo_de_precios.svg);
    }
    .monitoreo section:nth-child(4) form>div .paso4 {
        background-image: url(imagenes/iconos/paso_4_monitoreo_de_precios.svg);
    }
    .monitoreo section:nth-child(4) form>div div:nth-child(2) {
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    }
    .monitoreo section:nth-child(4) img {
        display: block;
        width: 20%;
        margin: 1% auto;
    }
    .monitoreo .resultados div:nth-child(2) img {
        width: 12%;
        margin-right: 2%;
        padding: 2%;
        border: 2px solid #292F59;
    }
    .monitoreo .resultados div:nth-child(2) div {
        width: 60%;
    }
    .monitoreo .resultados div div p:nth-child(1) {
        background: url(imagenes/fondo/linea_hoja.png) left bottom /75% no-repeat;
    }
    .monitoreo .resultados div div p:nth-child(2) {
        padding: 2% 0%;
    }
    .monitoreo .resultados div:nth-child(4) {
        padding: 4%;
    }
    .monitoreo .resultados div:nth-child(4) div {
        margin: 2% 0%;
    }
    .monitoreo .resultados div:nth-child(4) div span:nth-child(1) {
        padding: 2%;
        margin-right: 1%;
    }
    .monitoreo section:last-child article div {
        padding: 2% 3%;
    }
    .monitoreo section:last-child article div img {
        display: inline-block;
        -webkit-flex: 1 1 10%;
        -ms-flex: 1 1 10%;
        flex: 1 1 10%;
        width: 10%;
    }
    .contacto .ubicacion div:nth-child(3),
    .contacto .contactos {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .contacto .ubicacion div:nth-child(3) p,
    .contacto .contactos article {
        -webkit-flex: 1 1 45%;
        -ms-flex: 1 1 45%;
        flex: 1 1 45%;
        text-align: center;
    }
    .contacto .contactos h2 {
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .contacto section:nth-child(2) img {
        display: block;
        margin: 0% auto;
        width: 50%;
    }
    .contacto h2,
    .investigaciones section:last-child h2 {
        padding-bottom: 6%;
        background: url(imagenes/fondo/linea_hoja.png) left bottom /55% no-repeat;
    }
    .investigaciones section:nth-child(3) {
        text-align: right;
    }
    .investigaciones section:nth-child(3) p {
        display: inline-block;
        margin-right: 5%;
    }
    .investigaciones section:last-child input[type=text] {
        display: inline-block;
        width: 80%;
    }
    .investigaciones section:last-child input[type=submit] {
        display: inline-block;
        padding: 1%;
        width: 20%;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .investigaciones section:nth-child(3) div:nth-child(7) {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 5%;
    }
    .investigaciones section:nth-child(3) div:nth-child(7) article {
        -webkit-flex: 0 0 47%;
        -ms-flex: 0 0 47%;
        flex: 0 0 47%;
        margin: 5% 0%;
        padding: 3%;
    }
    .investigaciones section:nth-child(3) article div {
        padding: 3%;
    }
    .investigaciones section:nth-child(3) article div ul li {
        margin: 4% 0%;
    }
    .investigaciones section:nth-child(3) article button {
        padding: 15%;
        background: url(imagenes/iconos/descarga_investigaciones.svg) center center /33% no-repeat;
        background-color: #292F59;
    }
    .acercaNosotros section {
        padding: 2% 4%;
    }
    .acercaNosotros .linea {
        margin: 8% auto;
    }
    .acercaNosotros section img {
        display: block;
        margin: 0% auto;
        width: 30%;
    }
    .acercaNosotros section .oculto-mini {
        display: none;
    }
    .acercaNosotros .accordion {
        margin: 1%;
    }
    .acercaNosotros .panel {
        margin: 5% 0%;
        padding: 0% 5%;
        background-color: white;
        max-height: 0px;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
    }
    .acercaNosotros section:nth-child(7) article {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 5%;
    }
    .acercaNosotros section:nth-child(7) article h3 {
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
    .acercaNosotros section:nth-child(7) article div img {
        display: block;
        margin: 5% auto;
    }
    .acercaNosotros section:nth-child(7) article div {
        -webkit-flex: 0 0 45%;
        -ms-flex: 0 0 45%;
        flex: 0 0 47%;
        margin: 5% 0%;
        padding: 3%;
    }
    .acercaNosotros section:nth-child(7) article div ul li span {
        padding: 2%;
    }
    .linea {
        height: 2px;
    }
    footer {
        padding: 2% 0% 0% 0%;
    }
    footer .icono-menu {
        width: 15%;
        background: url(imagenes/iconos/iconos-01.svg) center center /66% no-repeat;
    }
    footer ul[role="menu"] {
        margin: auto;
        text-align: center;
    }
    footer ul[role="menu"]>li {
        display: inline-block;
        margin: 2% 0%;
        width: 30%;
        position: relative;
    }
    footer>p {
        margin: 1% 0%;
    }
    .logosinst {
        padding: 2% 0% 3% 0%;
        display: grid;
        grid-template-columns: repeat(3, 25%);
        grid-template-rows: 106%;
        grid-column-gap: 10%;
        grid-row-gap: 4%;
        justify-content: center;
        align-items: center;
    }
    footer div:nth-child(5) a,
    footer div:nth-child(5) p {
        display: inline-block;
    }
    footer div:last-child li {
        margin: 5% 2%;
        width: auto;
    }
}

@media screen and (min-width: 1024px) {
    header {
        padding: 1%;
    }
    header h1 div {
        display: inline-block;
    }
    header h1 {
        margin-right: 0%;
        margin-left: 2%;
        -webkit-flex: 1 1 15%;
        -ms-flex: 1 1 15%;
        flex: 1 1 15%;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: flex-start;
        justify-content: flex-start;
        font-size: calc(16px + (16 - 16) * ((100vw - 320px) * (1/1600)));
    }
    header h1 a {
        -webkit-flex: 0 0 80%;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        width: 80%;
        margin-left: 0%;
    }
    header nav {
        margin-right: 0%;
        -webkit-flex: 1 1 80%;
        -ms-flex: 1 1 80%;
        flex: 1 1 80%;
    }
    header nav ul[role="menu"]>li {
        margin-top: 0%;
        padding: 0%;
    }
    #myNav {
        display: block;
    }
    .icono {
        display: none;
    }
    header nav .overlay-content ul[role="menu"]>li {
        margin: 0%;
        width: 19%;
        position: relative;
        display: inline-block;
        font-size: calc(12px + (18 - 12) * ((100vw - 320px) * (1/1600)));
        border-bottom: none;
    }
	header nav .overlay-content ul[role="menu"]>li:first-child{
		width: 8%;
	}
	header nav .overlay-content ul[role="menu"]>li:nth-child(2){
		width: 25%;
	}
	header nav .overlay-content ul[role="menu"]>li:nth-child(3){
		width: 25%;
	}
	header nav .overlay-content ul[role="menu"]>li:nth-child(4){
		width: 20%;
	}
	header nav .overlay-content ul[role="menu"]>li:last-child{
		width: 12%;
	}
    .overlay {
        display: block;
        position: relative;
        z-index: initial;
        overflow: visible;
    }
    .overlay-content {
        margin-top: 0px;
        position: relative;
        text-align: center;
    }
    .overlay-content ul {
        padding-left: 0px;
        position: static;
        list-style: none;
    }
    .overlay .closebtn,
    header nav .abrirmov {
        display: none;
    }
    .icono-menu {
        width: 10%;
        margin-right: 2%;
        background: url(imagenes/iconos/iconos-01.svg) center center /100% no-repeat;
    }
	header nav .overlay-content ul[role="menu"]>li:first-child .icono-menu{
		width: 20%;
	}
	header nav .overlay-content ul[role="menu"]>li:nth-child(2) .icono-menu{
		width: 7%;
	}
	header nav .overlay-content ul[role="menu"]>li:nth-child(3) .icono-menu{
		width: 7%;
	}
	header nav .overlay-content ul[role="menu"]>li:nth-child(4) .icono-menu{
		width: 8%;
	}
	header nav .overlay-content ul[role="menu"]>li:last-child .icono-menu{
		width: 15%;
	}
    main {
        margin: 0% 2%;
    }
    main p {
        margin: 1% 0%;
        font-size: calc(18px + (20 - 18) * ((100vw - 320px) * (1/960)));
        max-width: 1170px;
        margin: 2% auto;
    }
    main label {
        width: 20%;
        padding: 1%;
    }
    main input {
        width: 80%;
    }
    main section {
        padding: 2%;
    }
    .parallax {
        width: 107%;
        height: 25vw;
        margin: 0% 0% 0% -5%;
        background-position: bottom center;
    }
    .parallax div {
        padding: 10% 0%;
        padding-right: 18%;
        text-align: right;
    }
    .inicio .parallax div {
        padding: 8% 0%;
        padding-right: 22%;
        text-align: right;
    }
    .contacto .parallax div {
        padding-right: 23%;
    }
    .investigaciones .parallax div {
        padding-right: 14%;
    }
    .inicio .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/computadora/inicio_portada_monitoreo_de_precios.svg);
    }
    .monitoreo .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/computadora/monitoreo_portada_monitoreo_de_precios.svg);
    }
    .acercaNosotros .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/computadora/acerca_de_nosotros_portada_monitoreo_de_precios.svg);
    }
    .investigaciones .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/computadora/investigaciones_portada_monitoreo_de_precios.svg);
    }
    .contacto .parallax {
        background-image: url(imagenes/contenido/ilustraciones/Portadas/computadora/contacto_portada_monitoreo_de_precios.svg);
    }
    main section {
        margin: 2% 0%;
    }
    main section article {
        margin: 1% 0%;
    }
    main h2 {
        margin: 0% 0% 3% 0%;
        padding-bottom: 2%;
        background: url(imagenes/fondo/linea_hoja.png) left bottom /20% no-repeat;
    }
    .oculto-mini {
        display: initial !important;
    }
    .oculto-grande {
        display: none !important;
    }
    .inicio section {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
        padding: 2%;
    }
    .inicio section div,
    .inicio section article {
        -webkit-flex: 1 1 40%;
        -ms-flex: 1 1 40%;
        flex: 1 1 40%;
        padding: 2%;
    }
    .inicio section>img {
        width: 25%;
        margin-right: 5%;
    }
    .inicio section:nth-child(3),
    .inicio section:nth-child(5) article {
        padding: 2%;
    }
    .inicio section:nth-child(3) article:nth-child(2) {
        margin-right: 5%;
        padding-right: 5%;
        padding-bottom: 3.5%;
        border-right: 1px solid #292F59;
    }
    .inicio section:nth-child(4) h2 {
        padding: 0% 0% 4% 0%;
        background: url(imagenes/fondo/linea_hoja.png) left bottom /50% no-repeat;
    }
    .monitoreo section:nth-child(3) div img {
        -webkit-flex: 0 0 7%;
        -ms-flex: 0 0 7%;
        flex: 0 0 7%;
        display: block;
    }
    .monitoreo section:nth-child(4)>div {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .monitoreo section:nth-child(4)>div form {
        -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        margin-right: 10%;
    }
    .monitoreo section:nth-child(4)>div img {
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
    .monitoreo section:nth-child(4) label,
    .monitoreo section:nth-child(4) select {
        padding: 1%;
    }
    .monitoreo section:nth-child(4) select {
        margin: 1% 0%;
    }
    .monitoreo .resultados div:nth-child(2) img {
        width: 8%;
        margin-right: 2%;
        padding: 1%;
        border: 3px solid #292F59;
    }
    .monitoreo .resultados div:nth-child(2) div {
        width: 60%;
    }
    .monitoreo .resultados div div p:nth-child(1) {
        background: url(imagenes/fondo/linea_hoja.png) left bottom /50% no-repeat;
    }
    .monitoreo .resultados div div p:nth-child(2) {
        padding: 1% 0%;
    }
    .monitoreo .resultados div:nth-child(4) {
        padding: 2%;
    }
    .monitoreo .resultados div:nth-child(4) div {
        margin: 1% 0%;
    }
    .monitoreo .resultados div:nth-child(4) div span:nth-child(1) {
        padding: 1%;
        margin-right: 1%;
    }
    .monitoreo section:last-child article div {
        padding: 1% 2%;
    }
    .monitoreo section:last-child article div img {
        display: inline-block;
        -webkit-flex: 0 0 10%;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        width: 10%;
    }
    .monitoreo section:last-child button {
        padding: 1% 2%;
    }
    .contacto h2,
    .investigaciones section:last-child h2 {
        padding-bottom: 3%;
        background: url(imagenes/fondo/linea_hoja.png) left bottom /30% no-repeat;
    }
    .contacto section:nth-child(2) div {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .contacto .modal .modal-content img {
        width: 5%;
    }
    .contacto section:nth-child(2) form {
        -webkit-flex: 1 1 60%;
        -ms-flex: 1 1 60%;
        flex: 1 1 60%;
        margin: 0% 5% 0% 0%;
    }
    .contacto section:nth-child(2) img {
        -webkit-flex: 1 1 30%;
        -ms-flex: 1 1 30%;
        flex: 1 1 30%;
        width: 100%;
    }
    .investigaciones section:nth-child(3) article button {
        padding: 15%;
        background: url(imagenes/iconos/descarga_investigaciones.svg) center center /33% no-repeat;
        background-color: #292F59;
    }
    .investigaciones section:nth-child(3) div:nth-child(7) article {
        -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        margin: 5% 0%;
        padding: 3%;
    }
    .inicio .dot {
        height: 1.5vw;
        width: 1.5vw;
    }
    .acercaNosotros section:nth-child(7) article div {
        -webkit-flex: 0 0 30%;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
        margin: 5% 0%;
        padding: 1%;
    }
    .acercaNosotros section {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .acercaNosotros section>div {
        -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
        flex: 0 0 50%;
    }
    .acercaNosotros section img {
        -webkit-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
    }
    .acercaNosotros section:nth-child(5) div p:nth-child(2) {
        margin-bottom: 5%;
    }
    .acercaNosotros .accordion {
        margin: 1% 0%;
    }
    .acercaNosotros .panel {
        margin: 3% 0%;
    }
    .acercaNosotros .accordion::after {
        right: 7%;
    }
    .acercaNosotros .active::after {
        right: 7%;
    }
    .acercaNosotros section:nth-child(6),
    .acercaNosotros section:nth-child(7) {
        display: block;
    }
    .acercaNosotros .modal .modal-content {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .acercaNosotros .modal .modal-content>div {
        -webkit-flex: 1 1 40%;
        -ms-flex: 1 1 40%;
        flex: 1 1 40%;
    }
    .acercaNosotros .modal .modal-content>div:nth-child(2) .btnCerrar {
        right: 15%;
    }
    .linea {
        height: 1px;
    }
    footer .icono-menu {
        width: 15%;
        background: url(imagenes/iconos/iconos-01.svg) center center /50% no-repeat;
    }
    footer ul[role="menu"]>li {
        width: 15%;
    }
	footer ul[role="menu"]>li:first-child{
		width: 8%;
	}
	footer ul[role="menu"]>li:nth-child(2){
		width: 25%;
	}
	footer ul[role="menu"]>li:nth-child(3){
		width: 25%;
	}
	footer ul[role="menu"]>li:nth-child(4){
		width: 20%;
	}
	footer ul[role="menu"]>li:last-child{
		width: 12%;
	}
	footer ul[role="menu"]>li:first-child .icono-menu{
		width: 20%;
	}
	footer ul[role="menu"]>li:nth-child(2) .icono-menu{
		width: 10%;
	}
	footer ul[role="menu"]>li:nth-child(3) .icono-menu{
		width: 10%;
	}
	footer ul[role="menu"]>li:nth-child(4) .icono-menu{
		width: 10%;
	}
	footer ul[role="menu"]>li:last-child .icono-menu{
		width: 20%;
	}
    footer>p {
        margin: 1% 0%;
        padding: 1%;
    }
    .logosinst {
        padding: 2% 0% 3% 0%;
        display: grid;
        grid-template-columns: repeat(3, 25%);
        grid-template-rows: 106%;
        grid-column-gap: 10%;
        grid-row-gap: 4%;
        justify-content: center;
        align-items: center;
    }
    footer div:last-child li {
        margin: 1% 2%;
    }
}