*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}
/******* LOGO *******/
.cont-1-1{
    width: 100%;
    display: flex;
    flex-wrap:nowrap;
    justify-content: space-between;
    padding: 0 4%;
    background: white;
    padding-top: 30px;
}
.cont-1-2{
    width:100%;
}
.cont-1-1-1{
    display: flex;
    padding: 0;
    width: auto;
}
.logo{
    width: 60px;
    border-radius: 50%;
}
.logo img{
    width: 100%;
}
.empresa{
    color: darkgreen;
    display: flex;
    align-items: center;
    font-size: 45px;
    font-weight: bold;
 /*   text-shadow: 0px 0px 2px; */
    padding: 0 5px;
}
@media(max-width:640px){
    .cont-1{
        margin-top: 44px;
    }
    .cont-1-1{
        padding: 0;
        background: green;
        justify-content: space-between;
    }
    .cont-1-1-1{
        display: none;
    }
    .cont-1-2{
        padding: 5px 0;    
        position: sticky;
        top: 0;
        left: 0;
    }
}
/******* MENU *******/
.cont-1-2{
    width: 100%;
    display: flex;
    justify-content: center;
    background: white;
    z-index: 9;
}
.cont-1-2 a{
    text-decoration: none;
}
.cont-1-2 h2, .intr, label{
    display: none;
    color: white;
}
.menu{
    padding-top: 1px;
    font-size: 18px;
    display: flex;
    align-content: center;
    align-items: center;
}
.menu ul{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.menu li{
    line-height: 1.3rem;
    position: relative;
    text-align: center;
    float: left; 
}
.menu a{
    display: block;
    text-decoration: none;
    padding: 3px 9px 0px 9px;
    color: currentColor;
    font-weight: bold;
    text-transform: uppercase;
}
.menu a:hover{
    border-bottom: 3px solid darkgreen;
    color: LimeGreen;
}
@media(max-width:960px){
    .cont-1-2{
        display: none;
        background: green;
    }
    .cont-1-2{
        display: table;
        position: fixed;
        top: 0;
        padding: 7px;
        box-sizing: border-box;
    }
    .cont-1-2 h2{
        float: left;
        padding-top: 5px;
        padding-left: 10px;
        display: contents;
    }
    #menu-bar{
        display: none;
    }
    .cont-1-2 label{
        float: right;
        font-size: 25px;
        margin: 3px 6px;
        cursor: pointer;
        display: block;
    }
    .cont-1-2 a{padding: 0; color: white;}
    .cont-1-2 a:hover{
        color: green;
        border-bottom: 3px solid darkgreen;
        background: white;
    }
    .menu{
        position: absolute;
        top: 40px;
        left:0;
        width: 100%;
        height: 900px;
        background: green;
        margin-left: 0px;
        transition: all 0.5s;
        transform: translateX(-100%);
        display: block;
        padding-top: 10px;
    }
    #menu-bar:checked~.menu{
        transform: translateX(0%);
    }
    .menu ul li{
        width: 100%;
        line-height: 3rem;
    }
}

/******* REDES SOCIALES *******/
.cont-1-1-3{
    width: auto;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
}
.cont-1-1-3 a{
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-wrap: wrap;
}
.cont-1-1-3 a img{
    width: 33px;
    margin: 0 3px;
}
.cont-1-1-3 a img:hover{
    transform: scale(130%);
    transition: .8s;
}
@media(max-width:640px){
    .cont-1-1-3{
        width: 100%;
        height: 50px;
    }
    .cont-1-1-3 a img{
        width: 40px;
    }
}
/*----- CARRUSEL NOTICIAS --------*/
.info {
    background: green;
    color: white;
    text-align: center;
    overflow: hidden;
    text-transform: uppercase;
    text-shadow: 0px 0px 1px white;
    height: 26px;
    position: fixed;
    top: 1px;
    border-radius:3px;
}
.onTop {
    top: 0px
}
.info-carrusel ul{
    height: 90%;
    animation: cambioNoti 25s infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}
.info-carrusel li{
    padding: 5px;
    height: 90%; 
    outline-style: none;
}
.info-carrusel li a{
    text-decoration: none;
    color: white;
}
.info-carrusel li a:hover{    
    color: LightGreen;
}

@keyframes cambioNoti{
    0%{transform: translateY(0);}
    20%{transform: translateY(0);}
    
    25%{transform: translateY(-25%);}
    45%{transform: translateY(-25%);}
    
    50%{transform: translateY(-50%);}
    70%{transform: translateY(-50%);}
    
    75%{transform: translateY(-75%);}
    100%{transform: translateY(-75%);}
}
.menuboton {
    color: green;
    text-align: center;
    overflow: hidden;
    text-transform: uppercase;
    text-shadow: 0px 0px 1px green;
    height: 31px;
    position: fixed;
    top: 1px;
    border-radius:3px;
}
.menuboton ul{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.menuboton li{
    line-height: 1.3rem;
    position: relative;
    text-align: center;
    float: left; 
}
.menuboton a{
    border: 2px solid green;
    text-decoration: none;
    padding: 3px 18px;
    border-radius: 56px;
    background: green;
    color: white;
    font-size: 15px;
}
.menuboton a:hover{
    color: green;
    background: white;
}
@media(max-width:640px){
    .info{
        
        color: white;
        position: static;
    }
}
/*----- CARRUSEL --------*/
/*-----.slider{    
    background: url(../img/fondo.jpg);
}--------*/

.carrusel{
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.carrusel ul{
    display: flex;
    padding: 0;
    width: 300%;
    animation: cambio 35s infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}
.carrusel li{
    width: 100%;
    outline-style: none;
    padding: 9px;
    display: flex;
    justify-content: space-around;
}
.carrusel img{
    width: 50%;
    height: 100%;
}
@keyframes cambio{
    0%{margin-left: 0%;}/*------ 0% --------*/
    30%{margin-left: 0%;}/*------ 20% --------*/
    
    35%{margin-left: -100%;}/*------ 25% --------*/
    65%{margin-left: -100%;}/*------ 45% --------*/
    
    70%{margin-left: -200%;}/*------ 50% --------*/
    100%{margin-left: -200%;}/*------ 70% --------*/
    
/*------    75%{margin-left: -300%;}
    100%{margin-left: -300%;} --------*/
}
.texto1{
    width: 50%;
    color: black;
    text-align: center;
    position: relative;    
    align-self: center;
}
.texto1 h2{
    font-size: 70px;
    color: green;
}
.texto1 p{
    padding: 12px 0;
    font-size: 26px;
}
.texto1 a{
    border: 2px solid green;
    text-decoration: none;
    padding: 5px 18px;
    border-radius: 56px;
    color: green;
    font-size: 23px;
}
.texto1 a:hover{
    color: white;
     background: rgba(0, 131, 0, 1);
}
@media(max-width:640px){
    .carrusel li{
        padding: 0;
    }
    .carrusel img{
        margin: 50px 0px;
        height: 50%;
        width: 30%;
    }
    .texto1{
        top: 0%;
        width: 70%;
    }
    .texto1 h2{
        font-size: 15px;
    }
    .texto1 p{
        font-size: 15px;
        padding: 5px;
    }
    .texto1 a{
        font-size: 18px;
    }
}

/*************** SOBRE NOSOTROS *************************/

/*------ PORTAL WEB --------*/
.portalweb{
    width: 100%;
    background: white;
    padding: 10px 12%;
}
@media(max-width:640px){
    .portalweb{
        padding: 30px 2%;
    } 
}
.portalweb-1{
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.portalweb-1 h1{
    width: 60%;
    font-size: 28px;
    color: green;
}
.portalweb-1 p{
    width: 60%;
    padding: 15px 0;
    line-height: 1.8;
    font-size: 18px;
}
.portalweb-2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}
@media(max-width:640px){
    .portalweb-2{
        justify-content: center;
    }
}
.pw-1-4{
    width: 300px;
    padding: 20px;
    height: 250px;
}
.pw-1-4 p{
    width: 100%;
    text-align: center;
    line-height: 1.8;
    height: 215px;
    overflow: hidden;
    font-size: 18px;
}
.animado{
    opacity: 0;
    transition: all 0.5s;
}
.mostrarArriba{
    animation: mostrarArriba 1s;
}
@keyframes mostrarArriba{
    0%{transform: translateY(60px);}
    100%{transform: translateY(0);}
}

/********* ARTICULOS RECOMENDADOS**********/
.pw-1{
    width: 300px;
    padding: 0px;
    margin: 0 10px;
}
.pw-1-1{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    padding: 0;
}
.pw-1-1a{
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.pw-1-1a img{
    width: 300px;
}
.pw-1-2{
    border: 1px solid #ccc;
    margin-top: 10px;
    padding: 20px;
    height: 320px;
    box-sizing: border-box;
    position: relative;
}
.pw-1-2 h4, .pw-1-4 h4{
    width: 100%;
    text-align: center;
}
.pw-1-2 p{
    width: 100%;
    text-align: center;
    line-height: 1.8;
    height: 215px;
    overflow: hidden;
}
.pw-1-3{
    width: 100%;
    margin: 30px 0;
    font-size: 15px;
    text-align: center;
}
.pw-1-3 a{
    background: #2e86c1;
    border: 1px blue;
    text-decoration: none;
    padding: 5px 18px;
    border-radius: 9px;
    color: white;
    font-size: 18px;
}
.pw-1-3 a:hover{
    background: #21618c;
}
@keyframes mover{
    0%{transform: translatex(-100%);}
}

.pw-2{
    width: 300px;
    padding: 0;
    margin-top: 30px;
    padding-bottom: 20px;
    box-sizing: border-box;
    margin-left: 10px;
    margin-right: 10px;background: white;
    transition: .8s;
}
.pw-2:hover{
    transform: scale(110%);
    transition: .8s;
}
.pw-2-3{
    position: absolute;
    bottom: 15px;
    left: 35%;
}
.pw-2-3 a{
    text-decoration: none;
    color: #64b5f6;
}
.pw-2-3 a:hover{
    color: #2196f3;
}
.rojo{color: red;}

.portalweb-3{
    width: 100%;
    padding: 40px 0;
}
.portalweb-3 a{
    padding: 8px 20px;
    text-decoration: none;
    background: #2e86c1;
    color: white;
    border-radius: 8px;
    font-weight: bold;
}
.portalweb-3 a:hover{
    background: #21618c;
}


/*-------- PIE DE PÁGINA ---------*/
.pp-1{
    width: 100%;
    padding: 20px 10%;
    background: white;
    border-top: 2px solid #ccc;
    box-sizing: border-box;
}
.pp-1-1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pp-1-1-1 img{
    width: 120px;
}
.pp-1-1-2{
    font-size: 30px;
    padding-left: 20px;
    text-shadow: 0px 0px 4px;
}
.pp-1-2{
    text-align: center;
    line-height: 1.8;
    padding: 15px 0;
    box-sizing: border-box;
}
.pp-1-2 p{
    padding: 18px 0;
    width: 450px;
    margin: auto;
    box-sizing: border-box;
}
@media(max-width:640px){
    .pp-1-2 p{
        width: 100%;
    }
}
.pp-1-2-1{
    color: darkgreen;
}
.pp-1-2-1:hover{
    color: red;
}
.pp-1-2-1 a{
    text-decoration: none;
    color: darkgreen;
}
.pp-1-2-1 a:hover{
    color: red;
}
.pp-1-3{
    display: flex;
    justify-content: center;
    padding: 15px 0;
}
.pp-1-3-1 a{
    text-decoration: none;
}
.pp-1-3-1 a .icon-facebook, .pp-1-3-1 a .icon-instagram, .pp-1-3-1 a .icon-youtube{
    font-size: 40px;
    padding: 0 10px;
}
.pp-1-3-1 .icon-facebook:hover, .pp-1-3-1 .icon-youtube:hover, .pp-1-3-1 .icon-instagram:hover{
    font-size: 50px;
}
/*---------- BLOG ----------*/
.blg-1{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    background: white;
    padding: 25px 5%;
}
.blg-1-1{
    width: 75%;
    border-right: 2px solid blue;
    padding: 0 30px 0 5%;
}
.blg-1-2{
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/*----------------------*/
.blg-1-1-1{
    width: 100%;
    display: flex;
}
.blg-1-1-1-1{
    width: 60%;
    align-self: center;
}
.blg-1-1-1-1 img{
    width: 90%;
}
.blg-1-1-1-2{
    width: 40%;
    align-self: center;
}
.blg-1-1-1-1-1{
    color: blue;
    font-size: 12px;
    font-weight: bold;
}
.blg-1-1-1-1-2{
    padding: 10px 0;
    text-shadow: 0px 0px 1px black;
}
.blg-1-1-1-1-2 a{
    text-decoration: none;
    color: black;
}
.blg-1-1-1-1-2-1{
    font-size: 22px;
}
.blg-1-1-1-1-2-2{
    font-size: 12px;
    padding:0 0 0 5px;
}
.blg-1-1-1-1-3{
    line-height: 1.8;
    text-align: justify;
    border-bottom: 6px solid blue;
    padding-bottom: 10px;
}
.blg-1-1-1-1-4{
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: blue;
    padding: 20px 0 20px 0;
    font-size: 12px;
    text-shadow: 0px 0px 1px blue;
}

hr{
    width: 100%;
    color: blue;
    margin: 20px 0 20px 0;
}

@media(max-width:768px){
    .blg-1{
        flex-wrap: wrap;
        padding-left: 1%;
        padding-right: 1%;
    }
    .blg-1-1, .blg-1-2{
        width: 100%;
        border: 0;
        padding: 0 5%;
        flex-wrap: wrap;
    }
}
.blg-1-2-1{
    width: 100%;
    padding: 5px;
}
.blg-1-2-2{    
    width: 100%;
    padding: 20px;
}
.blg-1-2-2-1{
    border-left: 3px solid blue;
    width: 100%;
    padding: 0 0 0 10px;
}
.blg-1-2-2-2{
    display: flex;
    width: 100%;
    margin-top: 10px;
    border-bottom: 2px solid #bbb;
}
.blg-1-2-2-2-1{
    width: 150px;
    align-self: center;
}
.blg-1-2-2-2-1 img{
    width: 100%;
}
.blg-1-2-2-2-2-1{
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0px 0px 15px;
    color: #555;
}
.blg-1-2-2-2-2-2{
    font-size: 9px;
    padding: 10px 0px 10px 15px;
    color: #999;
}
@media(max-width:640px){
    .blg-1-1-1{
        flex-wrap: wrap;
    }
    .blg-1-1-1-1{
        width: 100%;
        text-align: center;
    }
    .blg-1-1-1-2{
        width: 100%;
    }
    .blg-1-2-1{
        padding: 1px;
    }
}
.fp{
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 0px 2px white;
}

.fp-1{
    line-height: 1.8;
    text-align: justify;
    padding-right: 5%;
    padding-bottom: 30px;
    font-size: 20px;    
}
.fp-2{    
    font-size: 20px;
    padding-bottom: 20px;
    color: blue;
}
.fp-2 a{
    text-decoration: none;
    color: blue;
}
.fp-2:hover{
    color: red;
}
.fp-2 a:hover{
    color: red;
}

.fp-3{
    width: 100%;
    background: #e8f0f8;
    display: flex;
    flex-wrap: wrap;
}
.azul{color: blue;}
.fp-3-1{
    width: 50%;
}
.fp-3-1 img{
    width: 90%;
}
.fp-3-1-1{
    width: 100%;
    text-align: center;
    color: blue;
    text-shadow: 1px 1px 1px black;
    padding: 30px;
    font-size: 30px;
    font-weight: bold;
}
.fp-3-1-2{
    width: 100%;
    display: flex;
    justify-content: center;
}
.fp-3-1-2 img{
    width: 50%;
}
.fp-3-1-3{
    width: 100%;
}
.fp-3-1-3 ul{
    padding: 50px 10px 30px 40px;
    font-size: 20px;
    line-height: 1.5;
}
@media(max-width:640px){
    .fp-1, .fp-2{
        font-size: 16px;
    }
     .fp-a{
        font-size: 18px;
    }
    .fp-3{
        display: block;
    }
    .fp-3-1{
        width: 100%;
    }
    .fp-3-1-1{
        font-size: 18px;
    }
    .fp-3-1-3 li{
        font-size: 16px;
    }
}
/*--------- ARTICULO ----------*/
.art-1{
    width: 100%;
}
.art-1 img{
    width: 100%;
}
.art-1 p{
    text-align: center;
    font-size: 12px;
}
.art-1 h1{
    font-size: 28px;
    border-bottom: 1px solid blue;
    padding: 20px 0;
    text-shadow: 0px 0px 1px;
    color: #333;
    font-family:serif;
}
.art-2, .art-3{
    display: flex;
    flex-wrap: wrap;
    line-height: 1.8;
    color: #999;
    font-size: 14px;
}
.art-2{padding: 15px 0;}
.art-2-1, .art-3-1{
    padding-right: 5px;
}
.art-2-2, .art-3-2{
    padding-left: 5px;
}
.art-3-1 a{
    text-decoration: none;
    color: #999;
}
.art-3-1 a:hover{
    color: blue;
}
.art-3{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.art-4{
    display: flex;
    padding: 20px 0;
}
.art-4-1{
    padding: 5px;
}
.art-4-1 a img{
    width: 40px;
}
.art-4 a{
    text-decoration: none;
}
.art-5-1{
    color: #00698C;
    font-weight: bold;
    padding: 20px 0;
}
.art-5-2{
    padding: 20px 0 30px 0;
    text-align: justify;
    line-height: 1.8;
}
.art-5-2 ul{
    padding-left: 20px;
}
.art-6{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
@media(max-width:640px){
    .art-6-1{
        width: 100%;
        flex-wrap: wrap;
    }
}
.art-6-1{
    width: 45%;
    color: #007FE0;
    padding: 10px 20px;
}
.art-6-1:hover{    
    box-shadow: 0px 0px 4px #007FE0;
}
.art-6-1 img{
    width: 40px;
}
.art-7{
    padding: 40px 0;
}
.art-7-1{
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    padding: 10px 0;
}
.art-7-1-1{
    color: white;
    font-size: 25px;
    width: 30px;
    border-radius: 5px;
    font-family: monospace;
    text-align: center;
}
.art-7-1-2{
    padding-left: 10px;
}
.bgazul{
    background: #3B88C3;
}
.bgverde{
    background: #77B255;
}
.art-15{
    padding: 30px 0;
}

.desc-1{
    width: 320px;
    box-shadow: 0px 0px 8px #B4B4B4;
    margin-top: 10px;
    margin-bottom: 10px;
}
.desc-1:hover{
    box-shadow: 0px 0px 15px #B4B4B4;
}
.desc-a{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
}
.desc-1-1 img{
    width: 100%;
}
.desc-1-2{
    padding: 20px 25px 10px;
    font-size: 20px;
    font-weight: bold;
    color: #54595F;
}
.desc-1-3{
    color: #929292;
    font-size: 15px;
    padding: 10px 25px;
}
.desc-1-4{
    color: #929292;
    font-size: 12px;
    padding: 10px 25px;
    border-bottom: 1px solid #1889E5;
}
.desc-1-4 a{
    text-decoration: none;
    color: #1889E5;
}
.desc-1-4 a:hover{
    color: red;
}
.desc-1-5{
    display: flex;
    font-size: 14px;
    padding: 15px 25px;
    color: #B4B4B4;
}
.desc-1-5-1{
    padding-right: 5px;
}
.desc-1-5-2{
    padding-left: 5px;
}

.contac-1{
    width: 100%;
    padding: 50px 10%;
    background: #EBEBEB;
    display: flex;
    justify-content: space-between;
}
.contac-1-1, .contact-1-2{
    width: 50%;
}
.contac-1-1-1{
    color: #1889E5;
    font-size: 30px;
    padding-bottom: 20px;
}
.contac-1-1-2{
    padding: 10px 0;
    font-size: 20px;
}
.contact-1-2{
    padding-left: 50px;
}
.caja-1, .caja-2{
    margin: auto;
    background: #D3E0ED;
    border: 1px solid #B4B4B4;
    padding: 10px 15px;
    font-size: 16px;
    margin: 10px auto;
    border-radius: 8px;
}
.caja-1{
    width: 49%;
}
.caja-2{
    width: 100%;
}
.enviar{
    color: white;
    background: #00698C;
    padding: 10px;
    font-size: 18px;
    width: 200px;
}
.enviar:hover{
    cursor: pointer;
    background: #215474;
}
@media(max-width:900px){
    .contac-1{
        flex-wrap: wrap;
        padding: 50px 3%;
    }
    .contac-1-1, .contact-1-2{
        width: 100%;
        padding-bottom: 30px;
    }
    .contact-1-2{
    padding-left: 0px;
}
}
/******** Noticias *************/
.noti-1{
    width: 100%;
    padding: 30px 5%;
}
.noti-1-1{
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}
.noti-1-2{
    width: 100%;    
    padding: 20px 0;
}
.noti-1-2-1{
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 15px;
}
.noti-1-2-2{
    width: 100%;
    display: flex;
}
.noti-1-2-2-1, .noti-1-2-2-2{
    width: 50%;
    margin: 10px 25px;
}
.noti-1-2-2-1 img{
    width: 100%;
}
.noti-1-2-2-1 img:hover, .noti-1-2-2-2:hover{
    transform: scale(110%);
    transition: .8s;
}
.noti-1-2-2-2{
    border: 1px solid #ccc;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
    align-content: center;
}
.noti-1-2-2-2-1{
    width: 100%; 
    text-align: justify;
}
.leer{
    margin-top: 20px;
    width: 100%;
    text-align: center;
}
.leer a{
    font-weight: bold;
    background: green;
    border: 2px solid green;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 9px;
    color: white;
    font-size: 18px;
}
.leer a:hover{
    background: white;
    color: green;
}
@media(max-width:640px){
    .noti-1{
        padding: 20px 2px 0 2px;
    }
    .noti-1-2-2{
        flex-wrap: wrap;
    }
    .noti-1-2-2-1, .noti-1-2-2-2{
        width: 100%;
    }
}
/******* PIE DE PÁGINA *********/
footer{
    background: darkgreen;
}
.pie{
    padding: 20px 10%;
    color:white;
    display: flex;
    justify-content: space-between;
}
.pie-1, .pie-2, .pie-3 {
    width: 30%;    
}
.pie-1{
    line-height: 1.5;
}
.pie-2{
    text-align: center;
    line-height: 1.5;
}
.pie-2 h3{
    text-transform: none;
}
.pie-2 p{
    width: 100%;
    justify-content: center;
}
.pie-3 img{
    width: 21px;
}
.pie p{
    display: inline-block;
    text-align: center;
    justify-content: center;
}
.pie p a{
    text-decoration: none;
    color:white;
    display: inline-block;
}
.pie-3 p a{
    padding-left: 18%;
    align-content: center;
    align-items: center;
}
.pie-3 p a:hover{
    color: yellow;
}
.derechos{
    width: 100%;
    background: black;
    color: chartreuse;
    text-align: center;
    padding: 20px 2px 30px 2px;
}
@media(max-width:640px){
    .pie{
        flex-wrap: wrap;
    }
    .pie-1, .pie-2, .pie-3{
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .pie-1 p{
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .pie-2{
        padding: 20px 0;
    }
}
/*************** BARRA ************/
.barra{
    background:  #0b5345 ;
    display: flex;
    width: 80%;
    position: fixed;
    bottom: 0;
    margin: 0 10%;
    border-radius: 13px 8px 0 0;
    padding: 6px;
    justify-content: space-between;
}
.barra-1{
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}
.barra-2 p a img{
    width: 50px;    
    transition: .8s;
}
.barra-2 p a img:hover{
    transform: scale(118%);
    transition: .8s;
}
.barra-3{
    display: flex;
    align-items: center;
}
.barra-3 input{
    padding: 8px 12px;
    border: 0;
    font-size: 16px;
    transition: .8s;
}
.barra-3 input:hover{    
    transform: scale(118%);
    transition: .8s;
}
.barra-3 input[type="email"]{
    width: 250px;
}
.barra-3 input[type="submit"]{
    background: #2a3b1e;
    color: white;
    font-weight: bold;
    border-style: solid; 
    border-width: 1px; 
    border-color: white;
    border-radius: 18px;
}
.barra-3 input[type="submit"]:hover{
    background: darkorange;
    cursor: pointer;
}
.barra-3-1{
    color: white;
    padding: 0 5px;
}
.barra-4{
    display: flex;
    color: white;
    font-size: 30px;
    align-items: center;
    width: 50px;
    justify-content: center;
    font-weight: bold;
    transition: .8s;
}
.barra-4:hover{
    cursor: pointer;
    color: darkorange;
    transform: scale(118%);
    transition: .8s;
}
@media(max-width:640px){
    .barra{
        width: 100%;
        margin: 0;
    }
    .barra-1{
        display: none;
    }
    .barra-2 p a img{
    width: 50px;
    margin: 18px 0px;
    transition: .8s;
    }
    .barra-2 p a img:hover{
    transform: scale(118%);
    transition: .8s;
    }
    .barra-3{
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .barra-3-1-1 input{
        width: 150px;
    }
    .barra-4{
    display: flex;
    color: white;
    font-size: 30px;
    align-items: baseline;
    width: 50px;
    justify-content: center;
    font-weight: bold;
    transition: .8s;
    }
    .barra-4:hover{
    cursor: pointer;
    color: darkorange;
    transform: scale(118%);
    transition: .8s;
    }
}

.positivo{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
}
.contSuscrito{
    background: #dcedc8;
    width: 280px;
    height: 180px;
    color:green;
    position: relative;
    top: 40%;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    box-shadow: 0px 0px 6px #dcedc8;
    transition: .8s;
    text-align: center;
    line-height: 1.3;
}
.contSuscrito h3{
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
}
.cerrarWindow{
    position: absolute;
    top: -12px;
    right: -12px;
    color: white;
    width: 25px;
    height: 25px;
    font-size: 13px;
    font-weight: bold;
    background: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .8s;
}
.cerrarWindow:hover{
    cursor: pointer;
    transform: scale(118%);
    transition: .8s;
}
.negativo{
    display: none;
}
/************** ARTICULOS RECOMENDADOS **************************/
.recomendados{
    width: 100%;
    padding: 20px 10%;
}
.recom-1{
    width: 100%;
    text-align: center;
}
.recom-1 h1{
    font-size: 28px;
    color: green;
}
.recom-1-1{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.recom-1-1-1{
    width: 300px;
    margin: 20px 10px;;
}
.recom-imagen{
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
}
.recom-imagen img{
    height: 100%;
    width: 100%;
}
.recom-conten-1{
    height: 330px;
    overflow: hidden;
    padding: 20px;
}
.recom-conten{
    margin-top: 10px;    
    border: 1px solid #ccc;
}
.recom-conten-1 h4{
    text-align: center;
    margin-bottom: 10px;
}
.recom-conten-1 p{
    text-align: center; 
    line-height: 1.8;
}
.recom-enlace{
    padding: 10px;
    text-align: center;
}
.recom-enlace a{
    text-decoration: none;
    font-weight: bold;
    color: blue;
}
.recom-enlace a:hover{
    color: mediumblue;
}