:root {
    --blanco: #fff;
    --negro: #000000;
    --celeste: #1EE2D9;
    --azul: #0F75BC;
    --gris: #707070;
    --morado: #FD3FB1;
    --esmeralda: #13A89E;
}
@font-face {
    font-family: 'segoe-ui';
    src: url(../fonts/segoe-ui.ttf);
}
@font-face {
    font-family: 'segoe-bold';
    src: url(../fonts/segoe-bold.ttf);
}

* {
    margin: 0;
    padding: 0;
}
a {text-decoration: none !important;}
label { margin-bottom: 0 !important;}
p {margin-bottom: 0 !important;}
textarea {resize: none !important;}
button {cursor: pointer;}
li {list-style-type: none !important;}
h1, h2, h3, h4, h5 {margin-bottom: 0 !important;}
input:focus, button:focus, textarea:focus, select:focus {outline: none !important;}
dl, ol, ul {margin-bottom: 0% !important;}
.flex {display: flex;}
.grid {display: grid;}
.btn-responsive {
    display: none;
}
.header .btn-responsive {
    border: none;
    background-color: transparent;
    font-size: 30px;
}
.header .btn-responsive i,
.header .btn-cerrar i {
    color: var(--blanco);
}
.header .btn-cerrar i {
    font-size: 20px;
}
.header .btn-cerrar {
    display: none;
}


.fondo {
    background-image: url(../img/fondo-azul.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
ul.pagination {
    column-gap: 10px;
    flex-wrap: wrap;
}
ul.pagination li a {
    font-size: 16px;
    font-weight: 400;
    font-family: 'segoe-ui';
    color: var(--celeste);
}
ul.pagination li.active a {
    font-weight: 700;
    color: var(--azul);
}





/* ************ INICIO ************ */
/* HEADER */
.header {
    position: relative;
    z-index: 5;
    padding-bottom: 70px;
}
.header .barra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 25px 50px; */
    position: relative;
    column-gap: 60px;
    z-index: 3;
}
.header .navegacion {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding-right: 5%;
}
.header .navegacion .opciones {
    display: flex;
    align-items: center;
    column-gap: 15px;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.header #navegacion .opciones a {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 5px 15px;
    border-radius: 25px;
}
.header .navegacion .opciones a.subir {
    background-color: var(--morado);
}
.header .navegacion .opciones a.unirme {
    background-color: var(--celeste);
}
.header .navegacion .contenedor {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    justify-content: space-between;
}
.header .redes {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    column-gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}
.header a.logo {
    margin-bottom: -80px;
}
.header #navegacion a,
.footer .navegacion a {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--celeste);
    text-transform: uppercase;
    transition: ease 1s;
}
.header #navegacion .redes a:hover,
.footer .navegacion .redes a:hover {
    transform: rotate(360deg);
}
.header #navegacion a.activo,
.footer .navegacion a.activo,
.header #navegacion a:hover,
.footer .navegacion a:hover {
    color: var(--blanco);
}
.header .barra.mod-barra {
    background-color: var(--azul);
}
/* FIN HEADER */

.sec-banner-home {
    padding: 50px 5% 50px 10%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 100px;
    margin-top: 60px;
}
.sec-banner-home h1 {
    font-size: 68px;
    font-weight: 800;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
}
.sec-banner-home p.subtitulo {
    font-size: 29px;
    font-weight: 300;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    margin-top: 10px !important;
}
.sec-banner-home a {
    font-size: 41px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    text-transform: uppercase;
    padding: 5px 25px;
    border-radius: 50px;
    background-color: var(--celeste);
    display: block;
    width: max-content;
    margin-top: 25px;
    transition: ease .5s;
}
.sec-banner-home a:hover,
.sec-comenzar-home .der .campo:nth-child(1) a:hover {
    -webkit-box-shadow: 0px 6px 12px 0px rgba(28,163,156,0.75);
    -moz-box-shadow: 0px 6px 12px 0px rgba(28,163,156,0.75);
    box-shadow: 0px 6px 12px 0px rgba(28,163,156,0.75);
    color: var(--blanco);
}
.sec-comenzar-home .der .campo:nth-child(2) a:hover {
    color: var(--blanco);
    -webkit-box-shadow: 0px 6px 12px 0px rgba(151,37,105,0.75);
    -moz-box-shadow: 0px 6px 12px 0px rgba(151,37,105,0.75);
    box-shadow: 0px 6px 12px 0px rgba(151,37,105,0.75);
}
.sec-banner-home .imagen {
    height: 475px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* QUE ES */
.sec-definicion-home,
.sec-funciona-home,
.sec-comenzar-home,
.sec-area-home,
.sec-caracteristicas {
    background-image: url(../img/fondo.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 10%;
}
.sec-definicion-home p.texto,
.sec-definicion-home p.fr-tag,
.sec-funciona-home p.texto,
.sec-funciona-home p.fr-tag,
.sec-area-home p.texto,
.sec-area-home p.fr-tag {
    font-size: 55px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: var(--gris);
    text-align: center;
}
.sec-definicion-home p.texto strong,
.sec-definicion-home p.fr-tag strong {
    color: var(--azul);
}
.sec-definicion-home .flex {
    justify-content: space-between;
    margin-top: 50px;
}
.sec-definicion-home .der p.texto,
.sec-definicion-home .der p.fr-tag {
    font-size: 25px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    margin-bottom: 25px !important;
    text-align: justify;
}
.sec-definicion-home .izq {
    width: 35%;
}
.sec-definicion-home .der {
    width: 65%;
}
.sec-definicion-home .campo,
.sec-caracteristicas .campo {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.sec-definicion-home .campo img,
.sec-caracteristicas img {
    height: 110px;
}
.sec-definicion-home .campo span,
.sec-funciona-home .grid span,
.sec-caracteristicas .campo span  {
    font-size: 23px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--celeste);
    margin-top: 20px;
    text-align: center;
}
.sec-definicion-home .info,
.sec-caracteristicas .contenedor {
    display: flex;
    column-gap: 30px;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}
/* FIN QUE ES */

/* FUNCIONA */
.sec-funciona-home {
    background-image: unset;
    background-color: var(--celeste);
}
.sec-funciona-home p.texto,
.sec-funciona-home p.fr-tag {
    color: var(--azul);
    font-weight: 400;
}
.sec-funciona-home p.texto strong,
.sec-funciona-home p.fr-tag strong {
    color: var(--blanco);
}
.sec-funciona-home .grid {
    grid-template-columns: repeat(3,1fr);
    column-gap: 50px;
    margin-top: 20px;
}
.sec-funciona-home .grid .imagen {
    height: 283px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
}
.sec-funciona-home .grid .contenedor {
    text-align: center;
}
.sec-funciona-home .grid span {
    color: var(--blanco);
}
/* FIN FUNCIONA */

/* COMENZAR */
.sec-comenzar-home {
    background-image: url(../img/fondo-2.png);
}
.sec-comenzar-home p.titulo {
    font-size: 59px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: var(--azul);
    position: relative;
}
.sec-comenzar-home p.titulo::before {
    position: absolute;
    content: '';
    width: 217px;
    height: 5px;
    background-color: var(--celeste);
    left: 0;
    right: 0;
    bottom: 0;
}
.sec-comenzar-home .flex {
    margin-top: 50px;
}
.sec-comenzar-home .izq {
    width: 40%;
}
.sec-comenzar-home .der {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec-comenzar-home .izq .imagen {
    height: 350px;
    width: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}
.sec-comenzar-home .campo {
    margin-bottom: 70px;
}
.sec-comenzar-home .campo:last-of-type {
    margin-bottom: 0;
}
.sec-comenzar-home .campo p {
    font-size: 28px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    margin-bottom: 10px !important;
    text-align: center;
}
.sec-comenzar-home .der .campo a,
.banner-comenzar .campo a {
    font-size: 33px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    padding: 15px 40px;
    border-radius: 50px;
    display: block;
    width: max-content;
    transition: ease .5s;
}
.sec-comenzar-home .der .campo:nth-child(1) a,
.banner-comenzar .campo:first-of-type a  {
    background-color: var(--celeste);
}
.sec-comenzar-home .der .campo:nth-child(2) a,
.banner-comenzar .campo:last-of-type a {
    background-color: var(--morado);
}
/* FIN COMENZAR */

/* AREAS */
.sec-area-home {
    background-image: unset;
    background-color: var(--azul);
}
.sec-area-home p.texto,
.sec-area-home p.fr-tag {
    font-weight: 400;
    color: var(--blanco);
}
.sec-area-home p.texto strong,
.sec-area-home p.fr-tag strong {
    color: var(--blanco);
}
.sec-area-home .grid {
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
    width: 80%;
    margin: 0 auto;
    margin-top: 60px !important;
}
.sec-area-home .grid .campo {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 30px;
}
.sec-area-home .grid .campo .imagen {
    width: 62px;
    height: 62px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/grupo-morado.svg);
}
.sec-area-home .grid .campo:nth-child(2) .imagen,
.sec-area-home .grid .campo:nth-child(7n) .imagen,
.sec-area-home .grid .campo:nth-child(3n) .imagen {
    background-image: url(../img/grupo-celeste.svg);
}
.sec-area-home .campo span {
    font-size: 27px;
    font-weight: 400;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    margin-left: 15px !important;
}
/* FIN AREAS */

/* CONTACTO */
.sec-contacto-home .grid {
    grid-template-columns: repeat(2,1fr);
}
.sec-contacto-home .grid .contenedor:nth-child(1) {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.sec-contacto-home .grid .contenedor:nth-child(2) {
    padding: 70px;
}
.sec-contacto-home .contenedor p.titulo {
    font-size: 40px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: var(--azul);
    margin-bottom: 20px !important;
}
.sec-contacto-home .campo {
    margin-bottom: 25px;
}
.sec-contacto-home input,
.sec-contacto-home textarea {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    padding: 8px 15px;
    border: 1px solid var(--azul);
    border-radius: 50px;
    width: 100%;
}
.sec-contacto-home textarea {
    border-radius: 20px;
}
.sec-contacto-home input::placeholder {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
}
.sec-contacto-home .btn-submit {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.sec-contacto-home button[type="submit"] {
    font-size: 25px;
    font-weight: 600;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 5px 30px;
    background-color: var(--azul);
    border-radius: 25px;
    border: none;
    transition: ease .5s;
}
.sec-contacto-home button[type="submit"]:hover {
    -webkit-box-shadow: 0px 6px 12px 0px rgba(11,98,155,0.75);
    -moz-box-shadow: 0px 6px 12px 0px rgba(11,98,155,0.75);
    box-shadow: 0px 6px 12px 0px rgba(11,98,155,0.75);
}
/* FIN CONTACTO */

/* FOOTER */
.footer .navegacion {
    padding: 20px 5% 20px 25%;
    background-color: var(--azul);
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 3px solid var(--celeste);
}
.footer .navegacion .redes {
    display: flex;
    column-gap: 25px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer .flex {
    padding: 50px 5% 0 5%;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
}
.footer .flex .contenedor {
    margin-bottom: 30px;
}
.footer .flex .contenedor:nth-child(1) {
    text-align: center;
}
.footer .flex .contenedor:nth-child(1) p.subtitulo {
    font-size: 15px;
    font-weight: 300;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    margin-top: 15px !important;
}
.footer .flex .contenedor:nth-child(2) {
    display: flex;
    flex-direction: column;
}
.footer .flex .contenedor:nth-child(2) a.campo {
    display: flex;
    align-items: center;
    column-gap: 25px;
    margin-bottom: 30px;
}
.footer .flex .contenedor:nth-child(2) a.campo span,
.footer .flex .contenedor:nth-child(3) p.subtitulo {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
}
.footer .flex .contenedor:nth-child(3) p.titulo {
    font-size: 14px;
    font-weight: 700;
    font-family: 'segoe-bold',sans-serif;
    color: var(--celeste);
    text-transform: uppercase;
}
.footer .flex .contenedor:nth-child(3) p.subtitulo {
    margin: 10px 0 !important;
}
.footer .flex .contenedor:nth-child(3) form {
    display: flex;
}
.footer .flex .contenedor:nth-child(3) input {
    border: none;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    background-color: var(--azul);
    padding: 10px 15px;
    width: 90%;
}
.footer .flex .contenedor:nth-child(3) button[type="submit"] {
    border: none;
    background-color: var(--celeste);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    padding-right: 20px !important;
}
.footer .flex .contenedor:nth-child(3) input::placeholder {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
}
.footer p.copyright {
    padding: 10px 20px;
    font-size: 12px;
    font-family: 'Rubik',sans-serif;
    color: var(--azul);
    text-align: center;
    letter-spacing: 1px;
}
/* FIN FOOTER */
/* ************ FIN INICIO ************ */



/* ************ QUE ES ************ */
.banner-que-es {
    background-image: url(../img/fondo-que-es.png);
    background-size: cover;
    background-position: center;
    margin-top: -70px;
    padding: 80px 5% 60px 5%;
    position: relative;
    z-index: 0;
}
.banner-que-es .contenedor {
    width: 80%;
    margin: 0 auto;
}
.banner-que-es .contenedor > p.texto,
.banner-que-es .contenedor > p.fr-tag {
    font-size: 64px;
    font-weight: 500;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    text-align: center;
}
.banner-que-es .contenedor > p.texto strong,
.banner-que-es .contenedor > p.fr-tag strong {
    color: var(--azul);
    font-weight: 800;
}
.banner-que-es .flex {
    column-gap: 60px;
    justify-content: space-between;
    margin-top: 50px;
}
.banner-que-es .flex .info {
    width: 55%;
}
.banner-que-es .der {
    width: 45%;
    position: relative;
}
.banner-que-es .flex p.nombre,
.banner-que-es .flex p.subtitulo {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--azul);
}
.banner-que-es .flex p.subtitulo {
    font-weight: 400;
    margin-bottom: 10px !important;
}
.banner-que-es .flex p.texto,
.banner-que-es .flex p.fr-tag {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco) !important;
}
.banner-que-es .der .imagen {
    height: 375px;
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 30px;
    position: relative;
    z-index: 3;
}
.banner-que-es .der .imagen::before {
    position: absolute;
    content: '';
    background-image: url(../img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 181px;
    width: 100%;
    bottom: -35px;
    left: -45px;
    z-index: 4;
}
.banner-que-es .caja {
    position: absolute;
    background-image: url(../img/rectangulo.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    height: 375px;
    left: 40px;
    width: 100%;
    z-index: 1;
}
.sec-caracteristicas p.texto,
.sec-caracteristicas p.fr-tag {
    font-size: 25px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    text-align: justify;
}
.sec-caracteristicas .titulo {
    margin: 50px 0;
}
.sec-caracteristicas .titulo p.texto,
.sec-caracteristicas .titulo p.fr-tag,
.sec-funciona .cabezera p.texto,
.sec-funciona .cabezera p.fr-tag {
    font-size: 55px;
    font-weight: 500;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
}
.sec-caracteristicas .titulo p.texto,
.sec-caracteristicas .titulo p.fr-tag {
    text-align: center;
}
.sec-caracteristicas .titulo p.texto strong,
.sec-caracteristicas .titulo p.fr-tag strong,
.sec-funciona .cabezera p.texto strong,
.sec-funciona .cabezera p.fr-tag strong {
    font-weight: 400;
    color: var(--azul) !important;
}
.sec-caracteristicas .titulo p.texto strong,
.sec-caracteristicas .titulo p.fr-tag strong {
    font-weight: 800;
}
.sec-caracteristicas .campo span {
    color: var(--azul);
}
.sec-caracteristicas .info,
.sec-caracteristicas .contenedor {
    width: 80%;
    margin: 0 auto;
}
/* ************ FIN QUE ES ************ */


/* ************ COMO FUNCIONA ************ */
.sec-funciona {
    background-image: url(../img/fondo-funciona.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 30px 0 10%;
    position: relative;
    z-index: 1;
}
.sec-funciona::before {
    position: absolute;
    content: '';
    background-image: url(../img/mujer-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 230px;
    width: 100%;
    bottom: 0;
    right: 30px;
    z-index: 2;
}
.sec-funciona .cabezera {
    padding-left: 120px;
}
.sec-funciona .cabezera p.texto,
.sec-funciona .cabezera p.fr-tag {
    color: var(--celeste);
}
.sec-funciona .grid {
    width: 90%;
    padding-top: 60px;
    padding-bottom: 180px;
}
.sec-funciona .contenedor {
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 50px;
}
.sec-funciona .contenedor p.titulo {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    padding-left: 5px;
    margin-bottom: 10px !important;
}
.sec-funciona .contenedor p.texto,
.sec-funciona .contenedor p.fr-tag {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris) !important;
    text-align: justify;
}
.sec-funciona .grid .contenedor:nth-child(2) .opciones {
    display: flex;
    column-gap: 20px;
    margin-top: 35px;
}
.sec-funciona .grid .contenedor:nth-child(2) .opciones div {
    display: flex;
    flex-direction: column;
}
.sec-funciona .grid .contenedor:nth-child(2) .opciones p {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    margin-bottom: 10px !important;
}
.sec-funciona .grid .contenedor:nth-child(2) a {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    padding: 10px 40px;
    border-radius: 50px;
    display: block;
    width: max-content;
    text-transform: uppercase;
    background-color: var(--celeste);
}
.sec-funciona .grid .contenedor:nth-child(2) .opciones div:nth-child(2) a {
    background-color: var(--morado);
}
/* ************ FIN COMO FUNCIONA ************ */


/* ************ NOTICIAS ************ */
.sec-banner-noticia,
.banner-comenzar,
.banner-subir {
    position: relative;
    margin-top: -70px;
    z-index: 1;
}
.sec-banner-noticia .imagen,
.banner-comenzar .imagen,
.banner-subir .imagen {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
}
.sec-banner-noticia::before,
.banner-comenzar::before,
.banner-subir::before {
    position: absolute;
    content: '';
    background-color: rgba(30,226,217,50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.sec-banner-noticia .contenedor {
    padding: 50px 20% 90px 20%;
    position: relative;
    z-index: 2;
}
.sec-banner-noticia h1 {
    font-size: 55px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    margin-bottom: 50px !important;
    text-align: center;
}
.sec-banner-noticia .campo,
.banner-subir.mod-subir form .campo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--blanco);
    width: max-content;
    border: 1px solid #13A89E;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.64);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.64);
    box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.64);
    width: 60%;
    margin: 0 auto;
}
.sec-banner-noticia input,
.banner-subir.mod-subir form .campo input {
    border: none;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    width: 90%;
}
.sec-banner-noticia button[type="submit"],
.banner-subir.mod-subir form .campo button[type="submit"] {
    border: none;
    background-color: transparent;
}
.sec-banner-noticia input::placeholder {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    padding-left: 20px;
}
.sec-noticias .flex .izq {
    width: 30%;
    padding: 70px;
}
.sec-noticias .flex .der {
    width: 75%;
}
.sec-noticias .flex .der h3 {
    font-size: 25px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    margin-bottom: 20px !important;
}
.sec-noticias .izq {
    -webkit-box-shadow: 0px 6px 19px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 6px 19px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 6px 19px 0px rgba(0,0,0,0.22);
}
.sec-noticias .izq p.titulo,
.sec-noticias .izq .card span {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    margin-bottom: 10px !important;
}
.sec-noticias .izq .campo {
    margin-bottom: 30px;
}
.sec-noticias .izq li a,
.sec-noticias .izq li a {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
}
.sec-noticias .izq li {
    margin-bottom: 8px;
    position: relative;
}
.sec-noticias .izq .campo:nth-child(1) li::before {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    background-color: var(--celeste);
    border-radius: 50%;
    top: 5px;
    left: -30px;
}
.sec-noticias .izq .card-body {
    padding: 0;
}
.sec-noticias .izq .card {
    border: none;
}
.sec-noticias .izq .card span {
    cursor: pointer;
    margin-bottom: 0 !important;
}
.sec-noticias .izq .cabezera {
    align-items: center;
    column-gap: 10px;
    display: none;
}
.sec-noticias .der {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px 5% 50px 50px;
}
.sec-noticias .der .grid {
    grid-template-columns: repeat(3,1fr);
    column-gap: 40px;
}
.sec-noticias .der .contenedor {
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
    background-color: var(--blanco);
}
.sec-noticias .der .imagen,
.detalle-noticia .relacionados .imagen {
    height: 206px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.sec-noticias .der .contenedor .flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.sec-noticias .der .contenedor .info {
    padding: 30px 15px 0 15px;
}
.sec-noticias .der .contenedor p.titulo,
.sec-noticias .der .contenedor p.texto,
.sec-noticias .der .contenedor p.fr-tag {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    margin-bottom: 10px !important;
}
.sec-noticias .der .contenedor p.texto,
.sec-noticias .der .contenedor p.fr-tag {
    font-weight: 400;
}
.sec-noticias .der .contenedor .opciones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    flex-wrap: wrap;
    padding: 15px;
}
.sec-noticias .der .contenedor .opciones p,
.sec-noticias .der .contendor .opciones a {
    font-size: 12px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--esmeralda);
}
.sec-noticias .der .contenedor .opciones a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--azul);
}
/* ************ FIN NOTICIAS ************ */


/* ************ NOTICIA ************ */
.detalle-noticia .der p.titulo {
    font-size: 46px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--gris);
    margin-bottom: 15px !important;
}
.detalle-noticia .der .barra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.detalle-noticia .der .barra p {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--azul);
} 
.detalle-noticia .der .barra p.fecha {
    font-weight: 400;
    color: var(--esmeralda);
}
.detalle-noticia .der .imagen-principal {
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 40px;
}
.detalle-noticia .der p.texto,
.detalle-noticia .der p.fr-tag {
    font-size: 25px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris) !important;
    text-align: justify;
}
.detalle-noticia .der .compartir {
    border-top: 3px solid var(--azul);
    margin-top: 100px;
    margin-bottom: 80px;
}
.detalle-noticia .relacionados > p.titulo {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    margin-bottom: 50px !important;
}
/* ************ FIN NOTICIA ************ */


/* ************ CONTACTO ************ */
.sec-contacto-home.mod-contacto {
    margin-top: -70px;
}
/* ************ FIN CONTACTO ************ */


/* ************ COMENZAR ************ */
.banner-comenzar .contenedor {
    position: relative;
    padding: 60px 5% 70px 15%;
    z-index: 2;
}
.banner-comenzar p.titulo,
.banner-comenzar p.subtitulo,
.banner-subir h1 {
    font-size: 64px;
    font-weight: 800;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    text-align: center;
    overflow-wrap: anywhere;
}
.banner-comenzar p.subtitulo {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 45px !important;
}
.banner-comenzar .contenedor .campo {
    display: flex;
    align-items: center;
    column-gap: 50px;
    margin-bottom: 30px;
}
.banner-comenzar .contenedor .campo:last-of-type {
    margin-bottom: 0;
}
.banner-comenzar .campo > p {
    font-size: 25px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
}
.banner-comenzar .campo a {
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.57);
    box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.57);
}
.banner-comenzar .campo .der p {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    text-align: center;
    margin-bottom: 10px !important;
}
.banner-comenzar::after {
    position: absolute;
    content: '';
    background-image: url(../img/mujer-3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    height: 280px;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
}
/* ************ FIN COMENZAR ************ */


/* ************ SUBIR PROYECTO ************ */
.banner-subir .contenedor {
    padding: 60px 15%;
    position: relative;
    z-index: 2;
}
.banner-subir p.subtitulo,
.banner-subir p.subtitulo-2 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--blanco);
    text-align: center;
}
.banner-subir p.subtitulo-2 {
    font-size: 32px;
    font-family: 'Montserrat',sans-serif;
}
.banner-subir h1 {
    margin-bottom: 5px !important;
}
.sec-subir-proyecto {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 5%;
}
.sec-subir-proyecto p.titulo {
    font-size: 40px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    margin-bottom: 30px !important;
}
.sec-subir-proyecto .contenedor:nth-child(2) {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 40px;
}
.sec-subir-proyecto .contenedor:nth-child(2) .campo {
    display: flex;
    flex-direction: column;
}
.sec-subir-proyecto .contenedor:nth-child(2) .campo:nth-child(1) {
    width: 70%;
}
.sec-subir-proyecto .contenedor:nth-child(2) .campo:nth-child(2) {
    width: 30%;
}
.sec-subir-proyecto .contenedor label {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--gris);
    padding-left: 20px;
    margin-bottom: 8px !important;
}
.sec-subir-proyecto .contenedor input,
.sec-subir-proyecto .contenedor select,
.sec-subir-proyecto .contenedor textarea,
.filtros .der select,
.sec-unirme input,
.sec-unirme select,
.sec-unirme textarea {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    border: none;
    -webkit-box-shadow: 0px 5px 19px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 5px 19px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 5px 19px 0px rgba(0,0,0,0.22);
    padding: 10px 20px;
    background-color: var(--blanco) !important;
}
.sec-subir-proyecto .contenedor textarea {
    height: 100%;
}
.sec-subir-proyecto .contenedor select,
.filtros .der select,
.sec-unirme select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
    padding-right: 60px !important;
}
.filtros .der select {
    background-image: url(../img/arrow-down-2.svg);
}
.sec-subir-proyecto .contenedor:nth-child(3) {
    display: flex;
    column-gap: 30px;
    margin-bottom: 70px;
}
.sec-subir-proyecto .contenedor:nth-child(3) .izq,
.sec-subir-proyecto .contenedor:nth-child(3) .der {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.sec-subir-proyecto .contenedor:nth-child(3) .izq input {
    margin-bottom: 20px;
}
.sec-subir-proyecto .contenedor:nth-child(3) .izq input:last-of-type {
    margin-bottom: 0;
}
.sec-subir-proyecto .contenedor:nth-child(4) .campo {
    display: flex;
    column-gap: 20px;
    margin-bottom: 20px;
}
.sec-subir-proyecto .contenedor:nth-child(4) .campo input {
    width: 50%;
}
.sec-subir-proyecto .btn-submit {
    margin-top: 100px;
    display: flex;
    justify-content: center;
}
.sec-subir-proyecto .btn-submit button[type="submit"] {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 5px 70px;
    border-radius: 25px;
    background-color: var(--celeste);
    width: max-content;
    border: none;
}
/* ************ FIN SUBIR PROYECTO ************ */



/* ************ PROYECTOS ************ */
.banner-subir.mod-subir form {
    margin-top: 30px;
}
.fondo-unirme {
    position: relative;
}
.fondo-unirme::before {
    position: absolute;
    content: '';
    background-image: url(../img/fondo-unirme.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.filtros {
    position: relative;
}
.filtros::before {
    position: absolute;
    content: '';
    background-color: var(--celeste);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.filtros .contenedor {
    padding: 50px 5%;
    position: relative;
    z-index: 3;
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
}
.filtros .der {
    width: 80%;
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}
.filtros .der .campo {
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
}
.filtros .der select {
    color: var(--azul);
    margin-bottom: 15px;
}
.filtros button[type="submit"] {
    font-size: 31px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    border-radius: 50px;
    padding: 5px 40px;
    background-color: var(--azul);
    border: none;
}
.sec-proyectos {
    position: relative;
    z-index: 3;
    padding: 60px 5%;
}
.sec-proyectos .btn-subir {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.sec-proyectos .btn-subir a {
    font-size: 23px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 5px 15px;
    border-radius: 25px;
    background-color: var(--celeste);
    transition: ease .5s;
}
.sec-proyectos .btn-subir a:hover {
    background-color: var(--morado);
}
.sec-proyectos h3 {
    font-size: 25px;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    margin-bottom: 10px;
}
.sec-proyectos h2,
.sec-unirme h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    text-align: center;
    margin-bottom: 40px !important;
}
.sec-proyectos table {
    border-collapse: separate;
    border-spacing: 0 25px;
}
.sec-proyectos table thead th {
    border: none;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Montserrat',sans-serif;
    color: var(--azul);
    text-align: center;
    padding-bottom: 10px !important;
}
.sec-proyectos .campo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    flex-wrap: wrap;
    -webkit-box-shadow: 0px 5px 19px 0px rgba(0,0,0,0.22);
    -moz-box-shadow: 0px 5px 19px 0px rgba(0,0,0,0.22);
    box-shadow: 0px 5px 19px 0px rgba(0,0,0,0.22);
    margin-bottom: 15px;
    background-color: #fff;
}
.sec-proyectos .campo .td {
    border: none;
    background-color: var(--blanco);
    padding: 20px 10px;
    width: 25%;
}
.sec-proyectos .campo .td p {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--gris);
    text-align: center;
}
.sec-proyectos .campo .td p.azul {
    color: var(--azul) !important;
    font-size: 19px;
}
.sec-proyectos .campo .td:nth-child(2) p:not(.azul),
.sec-proyectos .campo .td:nth-child(3) p:not(.azul) {
    color: var(--gris);
}
.sec-proyectos .campo a {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 7px 30px;
    border-radius: 50px;
    background-color: var(--azul);
}
/* .modal-info-proyecto {
    width: 80% !important;
    max-width: unset !important;
} */
.modal-info-proyecto .modal-body {
    padding: 15px 50px;
}
.modal-info-proyecto .modal-body > p.titulo {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Open Sans',sans-serif;
    color: var(--azul);
    text-align: center;
}
.modal-info-proyecto .modal-body > p.titulo span {
    color: var(--celeste);
}
.modal-info-proyecto .modal-body .cabezera {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    column-gap: 15px;
    flex-wrap: wrap;
}
.modal-info-proyecto .modal-body .cabezera p,
.modal-info-proyecto .flex p.titulo,
.modal-info-proyecto .flex p,
.modal-info-proyecto .email p,
.modal-info-proyecto .email a {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--esmeralda);
}
.modal-info-proyecto .email a {
    color: var(--gris);
    font-size: 20px;
}
.modal-info-proyecto .modal-body .cabezera p:nth-child(2) {
    color: var(--gris);
}
.modal-info-proyecto .flex {
    column-gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}
.modal-info-proyecto .flex .izq {
    width: 40%;
}
.modal-info-proyecto .flex .der {
    width: 60%;
}
.modal-info-proyecto .flex .izq .cabezera {
    display: flex;
    justify-content: flex-start;
    column-gap: 15px;
    margin-bottom: 10px;
}
.modal-info-proyecto .flex .izq p:nth-child(2) {
    color: var(--gris);
}
.modal-info-proyecto .lista p,
.modal-info-proyecto .flex .der p:nth-child(2) {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Open Sans',sans-serif;
    color: var(--gris);
    margin-bottom: 7px !important;
}
.modal-info-proyecto .lista p.vacante {
    font-weight: 700;
    color: var(--morado);
}
.modal-info-proyecto .flex .der p:nth-child(2) {
    font-size: 17px !important;
    margin-bottom: 0 !important;
}
.modal-info-proyecto .flex .der p.titulo {
    margin-bottom: 15px !important;
}
.modal-info-proyecto .btn {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.modal-info-proyecto a.contacto,
.modal-info-proyecto a.unirme {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 7px 50px;
    background-color: var(--morado);
    border-radius: 50px;
}
.modal-info-proyecto a.unirme {
    background-color: var(--azul);
}
.modal-info-proyecto .email {
    margin-top: 20px;
}
/* ************ FIN PROYECTOS ************ */


/* ************ UNIRME A PROYECTO ************ */
.sec-unirme {
    padding: 60px 5%;
    background-image: url(../img/fondo-unirme-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.sec-unirme .contenedor {
    margin-bottom: 30px;
}
.sec-unirme .campo {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 20px;
}
.sec-unirme .contenedor:nth-child(2) {
    display: flex;
    flex-direction: column;
}
.sec-unirme .contenedor:nth-child(2) input {
    width: 50%;
}
.sec-unirme p.titulo {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--gris);
    padding-left: 20px;
    margin-bottom: 15px !important;
}
.sec-unirme textarea,
.sec-unirme select {
    width: 100%;
}
.sec-unirme .btn-submit {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.sec-unirme button[type="submit"] {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    color: var(--blanco);
    padding: 7px 60px;
    background-color: var(--morado);
    border-radius: 50px;
    border: none;
}
.sec-unirme h2 {
    margin-bottom: 50px !important;
}
/* ************ FIN UNIRME A PROYECTO ************ */


/* RESPONSIVIDAD */
@media (max-width: 1150px) {
    .sec-comenzar-home .flex {
        flex-direction: column;
    }
    .sec-comenzar-home .der,
    .sec-comenzar-home .izq {
        width: 100%;
    }
    .sec-comenzar-home .izq .imagen {
        margin: 0 auto;
    }
    .sec-comenzar-home .der {
        margin-top: 40px;
    }
    .sec-area-home .grid {
        width: 90%;
    }
}
@media (max-width: 1100px) {
    .header #navegacion {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        background-color: var(--azul);
        z-index: 99999;
        width: 0;
        transition: ease .5s;
        overflow-x: hidden;
    }
    .header .btn-responsive {
        display: block;
        padding-right: 5%;
    }
    .header .btn-cerrar {
        display: block;
    }
    .header .btn-cerrar {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 30px;
        padding-top: 15px;
    }
    .header .redes,
    .header .btn-cerrar,
    .header .navegacion .contenedor a {
        padding-right: 30px;
    }
    .header .btn-cerrar i {
        cursor: pointer;
    }
    .header .navegacion .contenedor a {
        padding-left: 30px;
        margin-bottom: 10px;
    }
    .header .navegacion .contenedor {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
    }
    .header .navegacion {
        display: unset !important;
        padding-right: 0;
    }
}

@media (max-width: 1050px) {
    .banner-comenzar .contenedor .campo {
        margin-bottom: 40px;
    }
    .banner-comenzar .campo > p {
        margin-bottom: 10px !important;
    }
    .sec-noticias .der .grid {
        grid-template-columns: repeat(2,1fr);
    }
    .sec-noticias .flex .izq {
        padding: 60px 30px;
    }
    .sec-funciona .grid {
        width: 100%;
    }
    .sec-funciona .grid .contenedor:nth-child(2) .opciones {
        flex-wrap: wrap;
        justify-content: center;
    }
    .sec-funciona .contenedor,
    .banner-comenzar .contenedor .campo {
        flex-direction: column;
    }
    .sec-funciona {
        padding-left: 5% !important;
    }
    .sec-funciona .contenedor img {
        height: 250px;
    }
    .sec-noticias .izq ul {
        padding-left: 30px;
    }
}

/* TABLET */
@media (max-width: 768px) {
    .sec-proyectos .btn-subir a {
        font-size: 21px;
    }
    .modal-info-proyecto .flex {
        flex-wrap: wrap;
    }
    .sec-proyectos .campo .td {
        width: unset;
    }
    #S_BuscarGrupo {
        min-width: 900px;
    }
    .filtros .der select:nth-child(1),
    .modal-info-proyecto a.unirme {
        margin-bottom: 20px;
    }
    .banner-subir p.subtitulo-2 {
        font-size: 27px;
    }
    .sec-subir-proyecto .contenedor input, 
    .sec-subir-proyecto .contenedor select, 
    .sec-subir-proyecto .contenedor textarea {
        font-size: 16px;
    }
    .sec-subir-proyecto .contenedor:nth-child(2) .campo:nth-child(1) {
        margin-bottom: 40px;
    }
    .detalle-noticia .der {
        padding: 50px;
    }
    .detalle-noticia .der .imagen-principal {
        height: 250px;
    }
    .sec-noticias .izq .cabezera {
        display: block;
    }
    .sec-banner-noticia .contenedor {
        padding: 50px 5%;
        padding-top: 90px !important;
    }
    .sec-banner-noticia,
    .sec-contacto-home.mod-contacto,
    .banner-comenzar,
    .banner-subir {
        margin-top: 0;
    }
    .sec-noticias .izq li a {
        font-size: 15px;
    }
    .sec-noticias .flex .izq {
        width: 50%;
    }
    .sec-funciona .grid .contenedor:nth-child(2) .opciones {
        align-items: center;
    }
    .sec-funciona .contenedor .info {
        margin-top: 20px;
    }
    .sec-funciona .contenedor p.texto, 
    .sec-funciona .contenedor p.fr-tag,
    .sec-noticias .izq p.titulo, 
    .sec-noticias .izq .card span,
    .detalle-noticia .der p.texto, 
    .detalle-noticia .der p.fr-tag {
        font-size: 18px;
    }
    .sec-caracteristicas .info, .sec-caracteristicas .contenedor {
        width: 100%;
    }
    .banner-que-es .contenedor {
        width: 90%;
    }
    .banner-que-es {
        padding: 120px 5% 60px 5%;
    }
    .footer .flex .contenedor:nth-child(1) img {
        height: 110px;
    }
    .footer .navegacion .redes {
        margin-top: 30px;
    }
    .footer .navegacion {
        padding: 20px;
    }
    .sec-contacto-home .grid .contenedor:nth-child(1) {
        height: 250px;
    }
    .sec-area-home .grid .campo img {
        height: 60px;
    }
    .sec-area-home .grid {
        width: 100%;
    }
    .sec-comenzar-home .izq .imagen {
        height: 250px;
        width: 250px;
    }
    .sec-comenzar-home .campo p {
        font-size: 27px;
    }
    .sec-comenzar-home .der .campo a, .banner-comenzar .campo a {
        font-size: 25px;
    }
    .sec-definicion-home .campo span, .sec-funciona-home .grid span, .sec-caracteristicas .campo span {
        font-size: 21px;
    }
    .sec-definicion-home .campo img, .sec-caracteristicas img {
        height: 80px;
    }
    .sec-definicion-home .der p.texto, .sec-definicion-home .der p.fr-tag,
    .sec-area-home .campo span {
        font-size: 20px;
    }
    .sec-definicion-home .izq {
        text-align: center;
        margin-bottom: 25px !important;
    }
    .sec-definicion-home .izq,
    .sec-definicion-home .der,
    .sec-subir-proyecto .contenedor:nth-child(2) .campo:nth-child(1),
    .sec-subir-proyecto .contenedor:nth-child(2) .campo:nth-child(2),
    .filtros .der select:nth-child(1),
    .filtros .der select:nth-child(2) {
        width: 100%;
    }
    .sec-definicion-home .flex,
    .sec-subir-proyecto .contenedor:nth-child(2),
    .filtros .der {
        flex-direction: column;
    }
    .sec-definicion-home p.texto, .sec-definicion-home p.fr-tag,
    .sec-funciona-home p.texto, .sec-funciona-home p.fr-tag,
    .sec-comenzar-home p.titulo,
    .sec-area-home p.texto, .sec-area-home p.fr-tag {
        font-size: 40px;
    }
    .header {
        padding-bottom: 0;
    }
    .sec-banner-home a,
    .sec-funciona .contenedor p.titulo,
    .detalle-noticia .der p.titulo,
    .sec-subir-proyecto p.titulo {
        font-size: 30px;
    }
    .sec-banner-home p.subtitulo {
        font-size: 24px;
    }
    .sec-banner-home .imagen {
        height: 270px;
        margin-top: 40px;
    }
    .header a.logo img,
    .sec-definicion-home .izq img {
        height: 200px;
    }
    .sec-banner-home,
    .sec-contacto-home .grid,
    .sec-noticias .der .grid {
        grid-template-columns: repeat(1,1fr);
    }
    .sec-banner-home h1,
    .sec-funciona .cabezera p.texto, 
    .sec-funciona .cabezera p.fr-tag,
    .banner-comenzar p.titulo {
        font-size: 45px;
    }
    .banner-subir h1 {
        font-size: 40px;
    }
}

@media (max-width: 700px) {
    .banner-que-es .caja {
        width: 70%;
        left: 140px;
    }
    .banner-que-es .der .imagen {
        background-position: center;
    }
    .banner-que-es .der .imagen::before {
        left: 35px;
    }
    .banner-que-es .flex .der {
        margin-top: 40px;
    }
    .banner-que-es .flex .info,
    .banner-que-es .flex .der {
        width: 100%;
    }
    .banner-que-es .flex {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .sec-subir-proyecto .contenedor:nth-child(4) .campo:nth-child(2) input:last-of-type {
        margin-bottom: 0;
    }
    .sec-subir-proyecto .contenedor:nth-child(4) .campo input {
        margin-bottom: 20px;
    }
    .sec-subir-proyecto .contenedor:nth-child(3) .der {
        margin-top: 30px;
    }
    .sec-subir-proyecto .contenedor:nth-child(3),
    .sec-subir-proyecto .contenedor:nth-child(4) .campo,
    .sec-unirme .campo,
    .sec-proyectos .campo {
        flex-direction: column;
    }
    .sec-noticias .campo-categoria .card-body {
        margin-top: 10px;
    }
    .sec-noticias .flex .izq,
    .sec-noticias .flex .der,
    .sec-subir-proyecto .contenedor:nth-child(3) .izq, 
    .sec-subir-proyecto .contenedor:nth-child(3) .der,
    .sec-subir-proyecto .contenedor:nth-child(4) .campo input,
    .modal-info-proyecto .flex .izq,
    .modal-info-proyecto .flex .der {
        width: 100%;
    }
    .modal-info-proyecto .flex .der {
        margin-top: 20px;
    }
    .sec-unirme .contenedor input {
        width: 100% !important;
    }
    .sec-noticias > .flex,
    .filtros .contenedor {
        flex-direction: column-reverse;
    }
    .sec-funciona-home .grid,
    .sec-area-home .grid {
        grid-template-columns: repeat(1,1fr);
    }
    .sec-noticias .campo-categoria p.titulo {
        display: none;
    }
    .sec-subir-proyecto .btn-submit {
        margin-top: 15px;
    }
    .sec-unirme .contenedor input {
        margin-bottom: 15px;
    }
    .sec-unirme .campo {
        margin-bottom: 0;
    }
    .sec-proyectos .campo .td {
        padding: 0;
        padding-bottom: 15px !important;
    }
    .modal-info-proyecto .modal-body {
        padding: 15px 20px;
    }
    .header .navegacion .opciones {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }
    .header #navegacion .opciones a {
        margin-top: 10px;
    }
}

/* CELULAR */
@media (max-width: 468px){
    .modal-info-proyecto a.unirme {
        padding: 5px 20px;
    }
    .modal-info-proyecto .modal-body > p.titulo {
        font-size: 25px;
    }
    .filtros .izq {
        text-align: center;
    }
    .filtros .der,
    .filtros .izq {
        width: 100%;
    }
    .banner-subir.mod-subir form .campo {
        width: 90%;
    }
    .modal-info-proyecto .modal-body .cabezera p, .modal-info-proyecto .flex p.titulo, .modal-info-proyecto .flex p,
    .sec-proyectos .btn-subir a {
        font-size: 19px;
    }
    .sec-banner-noticia .campo {
        padding: 7px 20px;
    }
    .sec-comenzar-home .der .campo a {
        margin: 0 auto;
    }
    .banner-subir h1 {
        font-size: 40px;
    }
    .banner-comenzar::after {
        height: 180px;
    }
    .banner-comenzar .campo a {
        margin: 0 auto;
    }
    .banner-comenzar .contenedor,
    .banner-subir .contenedor {
        padding: 40px 20px;
    }
    .banner-comenzar p.subtitulo,
    .banner-comenzar .campo .der p,
    .banner-subir p.subtitulo, 
    .banner-subir p.subtitulo-2 {
        font-size: 22px;
    }
    .detalle-noticia .der .barra {
        margin-bottom: 50px;
    }
    .sec-noticias .der {
        padding: 50px 5%;
    }
    .sec-banner-noticia h1 {
        margin-bottom: 30px !important;
    }
    .sec-banner-noticia .campo {
        width: 100%;
    }
    .sec-banner-noticia .contenedor {
        padding-top: 40px !important;
    }
    .sec-funciona::before {
        height: 170px;
    }
    .sec-funciona .grid .contenedor:nth-child(2) .opciones div:nth-child(2) {
        margin-top: 30px;
    }
    .sec-funciona .contenedor img {
        height: 200px;
    }
    .sec-funciona .cabezera {
        padding-left: 0;
        text-align: center;
    }
    .banner-que-es .caja {
        left: 60px;
    }
    .banner-que-es .der .imagen::before {
        height: 110px;
    }
    .banner-que-es .der .imagen {
        height: 250px;
    }
    .banner-que-es .flex {
        margin-top: 15px;
    }
    .footer .flex {
        padding: 40px 5% 0 5%;
    }
    .footer .navegacion a {
        margin-bottom: 10px;
    }
    .sec-comenzar-home .campo {
        margin-bottom: 30px;
    }
    .sec-comenzar-home .campo p,
    .sec-contacto-home button[type="submit"],
    .banner-comenzar .campo > p,
    .sec-subir-proyecto .contenedor label,
    .sec-proyectos table tbody td,
    .sec-proyectos .campo .td p.azul {
        font-size: 18px;
    }
    .sec-definicion-home, 
    .sec-funciona-home, 
    .sec-comenzar-home, 
    .sec-area-home, 
    .sec-caracteristicas {
        padding: 50px 5%;
    }
    .sec-definicion-home .der p.texto, 
    .sec-definicion-home .der p.fr-tag, 
    .sec-area-home .campo span,
    .sec-contacto-home input,
    .sec-contacto-home textarea,
    .sec-contacto-home input::placeholder, 
    .sec-contacto-home textarea::placeholder,
    .sec-caracteristicas p.texto, 
    .sec-caracteristicas p.fr-tag,
    .sec-funciona .contenedor p.texto, 
    .sec-funciona .contenedor p.fr-tag,
    .sec-banner-noticia input, 
    .banner-subir.mod-subir form .campo input,
    .detalle-noticia .der p.texto, 
    .detalle-noticia .der p.fr-tag,
    .detalle-noticia .der .barra p,
    .sec-unirme select, .sec-unirme textarea,
    .sec-unirme select::placeholder, .sec-unirme textarea::placeholder,
    .sec-unirme input::placeholder,.sec-unirme input,.filtros .der select {
        font-size: 16px;
    }
    .header a.logo img, .sec-definicion-home .izq img {
        height: 150px;
    }
    .sec-definicion-home p.texto, 
    .sec-definicion-home p.fr-tag, 
    .sec-funciona-home p.texto, 
    .sec-funciona-home p.fr-tag, 
    .sec-comenzar-home p.titulo, 
    .sec-area-home p.texto, 
    .sec-area-home p.fr-tag,
    .sec-contacto-home .contenedor p.titulo,
    .banner-que-es .flex p.nombre, 
    .banner-que-es .flex p.subtitulo,
    .sec-caracteristicas .titulo p.texto, 
    .sec-caracteristicas .titulo p.fr-tag,
    .sec-funciona .contenedor p.titulo,
    .detalle-noticia .der p.titulo,
    .sec-subir-proyecto p.titulo,
    .sec-unirme h2 {
        font-size: 23px;
    }
    .sec-banner-home p.subtitulo,
    .sec-proyectos table thead th,
    .sec-unirme button[type="submit"],
    .filtros button[type="submit"],
    .sec-proyectos .campo .td p {
        font-size: 20px;
    }
    .sec-banner-home {
        margin-top: 0;
    }
    .header a.logo {
        margin-bottom: -35px;
    }
    .sec-banner-home a,
    .banner-que-es .flex p.texto, 
    .banner-que-es .flex p.fr-tag,
    .sec-unirme p.titulo {
        font-size: 17px;
    }
    .sec-banner-home h1,
    .banner-que-es .contenedor > p.texto, 
    .banner-que-es .contenedor > p.fr-tag,
    .sec-funciona .cabezera p.texto, 
    .sec-funciona .cabezera p.fr-tag,
    .sec-banner-noticia h1,
    .banner-comenzar p.titulo,
    .banner-subir h1,
    .sec-proyectos h2 {
        font-size: 25px;
    }
    .detalle-noticia .der p.titulo {
        font-size: 21px;
    }
    .sec-funciona-home .grid .contenedor {
        margin-bottom: 30px;
    }
    .sec-funciona-home .grid .imagen,
    .sec-banner-home .imagen,
    .sec-contacto-home .grid .contenedor:nth-child(1) {
        height: 200px;
    }
    .sec-contacto-home .grid .contenedor:nth-child(2),
    .sec-banner-home {
        padding: 50px 25px;
    }
    .sec-definicion-home .info, 
    .sec-caracteristicas .contenedor,
    .footer .navegacion {
        flex-direction: column;
    }
    .header a.logo img {
        height: 125px;
    }
    .sec-comenzar-home .der .campo a, .banner-comenzar .campo a {
        font-size: 15px;
    }
}









