/* 
    Created on : 16/03/2021, 11:40:43 a. m.
    Author     : Nicolas Robles
    @Copy      : Universidad Santo Tomas Tunja
*/
/*CONTENEDOR*/
body{
    width: 100%;
    margin: 0;
    text-align: center;
    background-color: #2A2A2E;
}
.body{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: inline-flex;
    transition: all .5s ease-out;
}
.content{
    position: relative;
    width: 1250px;
    height: 800px;
    margin: auto;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
}
.content-g{
    width: 100%;
    height: calc( 100% - 130px);
    position: absolute;
    margin: auto;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 130px;
}
/*HEADER*/
.header-1{
    width: 100%;
    position: relative;
}
.header-1-img{
    width: 100%;
    object-fit: cover;
    object-position: center;;
}
/*BODY*/
.img-aprenderas{
    width: 45%;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.text-central-aprenderas{
    position: absolute;
    width: 30%;
    top: 60%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    color: #676767;
    font-family: 'Principal', sans-serif;
    font-size: 26px;
    text-align: center;
}
/*FOOTER*/
.nav-btn{
    position: absolute;
    bottom: 2%;
    width: 70px;
    height: 70px;
    -webkit-transition: all ease 0.7s;
    transition: all ease 0.7s;
}
.back{
    right: 11%;
    background-image: url('../../icons/back.svg');    
}
.back:hover{
    background-image: url('../../icons/back-activo.svg');       
}
.home{
    left: 4%;
    background-image: url('../../icons/home.svg');
}
.home:hover{
    background-image: url('../../icons/home-activo.svg');    
}
.next{
    right: 4%;
    background-image: url('../../icons/next.svg');
}
.next:hover{
    background-image: url('../../icons/next-activo.svg');    
}

/* Responsive Juan Manuel Malaver */
@media screen and (max-width:700px){
    .text-central-aprenderas{
        position: absolute;
        width: 30%;
        top: 60%;
        left: 48.5%;
        transform: translate(-50%, -50%);
        color: #676767;
        font-family: 'Principal', sans-serif;
        font-size: 18px;
        text-align: center;
    }
    
}
@media screen and (max-width:600px){
    .text-central-aprenderas{
        position: absolute;
        width: 30%;
        top: 60%;
        left: 48.5%;
        transform: translate(-50%, -50%);
        color: #676767;
        font-family: 'Principal', sans-serif;
        font-size: 16px;
        text-align: center;
    }
}

