<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&amp;display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}
html{
    scroll-behavior: smooth;
}
.subir{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    background-color: #3188df;
    border: 1px solid transparent;
    text-align: center;
    line-height: 50px;
    position: fixed;
    z-index: 500;
    right: 20px;
    cursor: pointer;
    transition: all .3s ease;
    bottom: 40px;
}
.subir:active{
    border: 1px solid #3c3c3c;
}
/*--------------- styles of the menu --------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 4px 25px -22px #000000;
    z-index: 1000;
}

.header-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.logo{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo h1 b{
    color: #46a2fd;
}
.menu{
    height: 80px;
}
.menu nav{
    height: 100%;
}
.menu nav ul{
    height: 100%;
    display: flex;
}
.menu nav ul li{
    list-style: none;
    height: 100%;
    margin: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.menu-selected::before{
    content: '';
    width: 100%;
    height: 4px;
    background: #46a2fd;
    position: absolute;
    top: 0;
    left: 0;
}
.menu nav ul li a{
    color: #777777;
    font-size: 18px;
}
.menu nav ul li a.text-menu-selected{
    color: #46a2fd;
}
.menu nav ul li a:hover{
    color: #46a2fd;
    transition: color 300ms;
}
.menu nav ul li a i{
    display: none;
}

#icon-menu{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 20px;
    background: #faf9f9;
    border-radius: 100%;
    color: #787878;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}
#icon-menu:hover{
    background: #f2f2f2;
    color: #3188df;
    opacity: .7;
    
}

/*--------------- end of the styles menu --------------*/

/*--------------- portada styles --------------*/

.container-cover{
    width: 100%;
    height: 500px;
    position: relative;
    top: 80px;
    margin-bottom: 120px;
    background: url('../img/portada.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.container-cover::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(38, 172, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}
.container-info-cover{
    width: 800px;
    max-width: 800px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 200;
}
.container-info-cover h1{
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}
.container-info-cover p{
    color: #ffffff;
    font-size: 25px;
    font-weight: 300;
    font-family: 'Source Sans Pro', sans-serif;
}

/*--------------- end portada styles --------------*/

/*--------------- start of styles the articles and aside--------------*/

.container-content{
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
}
article{
    width: 100%;
    padding: 20px;
    padding-bottom: 20px;
    box-shadow: -10px 0 25px -30px #000000;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
article::before{
    content: '';
    width: 100%;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    background: #46a2fd;
}
article h1{
    margin-top: 20px;
    font-weight: 500;
    font-size: 40px;
}
article p{
    margin-top: 20px;
    font-size: 18px;
    color: #3c3c3c;
    text-align: justify;
}
article img{
    width: 100%;
    margin-top: 20px;
}

/*--------------- styles of aside relacionados--------------*/

.container-aside aside{
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 0 20px -20px #000;
    overflow: hidden;
    margin-left: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
}
.container-aside aside img{
    width: 100%;
}
.container-aside aside h2,
.container-aside aside p{
    margin-top: 20px;
    padding: 0px 20px;
}
.container-aside aside button{
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 50px;
    font-size: 16px;
    background: #46a2fd;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.container-aside aside button:hover{
    background: #3a88d6; 
}

/*--------------- styles of the footer --------------*/
.container-footer{
    width: 100%;
    padding: 40px 0px;
    background: #f7f7f7;
    margin-top: 40px;
}
.container-footer footer{
    max-width: 1200px;
    margin: auto;
}
.container-footer footer .logo-footer{
    text-align: center;
}
.container-footer footer .logo-footer img{
    width: 100px;
}
.container-footer footer .redes-footer{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.container-footer footer .redes-footer .icon-redes-footer{
    font-size: 20px;
    margin: 20px;
    background: #efefef;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #a2a2a2;
}

.container-footer footer .redes-footer .fa-facebook:hover{
    background: #41579a;
    color: #ffffff;
}
.container-footer footer .redes-footer .fa-google-plus-g:hover{
    background: #de4c34;
    color: #ffffff;
}
.container-footer footer .redes-footer .fa-instagram:hover{
    background: linear-gradient(to  top right, #fcde30, #e9712a, #d2313b, #ae4198, #7540a1, #5443ab);
    color: #ffffff;
}
.container-footer footer hr{
    margin-top: 20px;
    border: none;
    height: 2px;
    background: #c4c1c17a;
}
.container-footer h4{
    text-align: center;
    margin-top: 40px;
    color: #8e8e8e;
    font-weight: 500;
}


/*--------------- Responsive Disign - adaptable a los diferentes dipositivos moviles --------------*/


@media screen and (max-width:1220px){
    .header-content,
    .container-content,
    .container-footer footer{
        max-width: 1000px;
        padding: 0px 20px;
    }
}

@media screen and (max-width:1020px){
    .container-content{
        width: 100%;
        flex-direction: column;
    }
    article{
        box-shadow: 0 0 0 0;
    }
    .container-aside{
        display: flex;
        justify-content: center;
    }
    .container-aside aside{
        max-width: 300px;
        margin: 10px;
    }
}

@media screen and (max-width:800px){

    body{
        overflow-x: hidden;
    }
    .container-all{
        transition: all 300ms;
    }
    .move-container-all{
        transition: all 300ms cubic-bezier(1,0,0,1);
    }
    .menu{
        width: 0px;
        height: 100vh;
        position: fixed;
        top: 80px;
        left: 0;
        background: #fff;
        overflow: hidden;
        transform: translateX(-350px) ;
        box-shadow: 10px 0 20px -25px #000000;
        transition: all 300ms cubic-bezier(1,0,0,1);
    }
    .show-lateral{
        width: 300px;
        transform: translateX(0px);
    }
    .menu nav ul{
        flex-direction: column;
    }
    .menu nav ul li{
        max-width: 200px;
        height: 50px;
        justify-content: flex-start;
    }
    .menu-selected::before{
        width: 0;
    }
    .menu nav ul li a{
        margin-top: 40px;
        color: #858585;
    }
    .menu nav ul li a i{
        width: 20px;
        display: inline-block;
        margin-right: 20px;
        color: #46a2fd;
    }
    #icon-menu{
        display: flex;
    }
    .container-aside{
        flex-wrap: wrap;
    }
}

@media screen and (max-width:794px){
    .container-info-cover{
        max-width: 700px;
    }
}
@media screen and (max-width:700px){
    .container-info-cover{
        max-width: 600px;
    }
}
@media screen and (max-width:600px){
    .container-info-cover{
        max-width: 500px;
    }
}
@media screen and (max-width:530px){
    .container-info-cover{
        max-width: 400px;
    }
}
@media screen and (max-width:400px){
    .container-cover .container-info-cover{
        width: 300px;
    }
    .container-cover .container-info-cover p{
        padding: 10px;
    }
    .container-cover .container-info-cover h1{
        font-size: 2em;
    }
    .container-cover .container-info-cover p{
        font-size: 1.2em;
    }
}</pre></body></html>