/* 
    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: left;
    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: contain;
    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*/
/*SUBTITULO DIAPOSITIVA IZQUIERDO CON IMAGEN*/
.subtitulo-izq-img{
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 5% !important;; 
    box-sizing: border-box;        
}
.img-subtitulo-izq-img{
    width: 80px;    
    margin: 0px 10px;
}
.titulo-subtitulo-izq-img{		
    font-size: 35px;
    color: #3FA9F5;
    font-family: 'Titulo', sans-serif;
    font-weight: bold;
}
/*CONTENIDO*/
.contenedor-texto-imagen-1{
    display: inline-flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 80%;
    font-family: 'Principal', sans-serif;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: all .4s ease-out;	
    box-sizing: border-box;
    position: relative;
}
/*Estilos segundo diseño 100% Imagen-Contenido */
.caja-texto-03{
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    font-family: 'Principal', sans-serif;
    background-color: #fff;
    padding: 0px 20px;
    border-radius: 8px;
    transition: all .4s ease-out;
    box-sizing: border-box;
    position: relative;
}
.subtitulo-aux{
    font-size: 25px;
    color: #626262;
    font-family: 'Principal', sans-serif;
    font-weight: bold;
    margin: 0px 0px 5px 0px;
}
.img-texto-02{
    width: 40%;
    height: 400px;
    position: relative;			
    border-radius: 7px;
    z-index: 1;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;	
}
.capa-interna-img-texto-02{
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;			
    z-index: 2;
}
.texto-caja-texto-03{
    z-index: 2;
    width: 50%;	
    font-size: 23px;
    color: #676767;
    padding: 0px 20px;		
    text-align: justify;	
}
.cont-clic{
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.cont-clic>img{
    width: 25px;
    height: 25px;
    margin: 0px 5px;
    transition: all .5s ease-out;
}
.cont-clic>span{
    font-size: 15px;
}
.cont-clic>img:hover{
    transform: rotate(90deg);
}
.agrandar:hover{
    transform: scale(1.03);
}
/*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');    
}