/* 
    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*/
/*SUBTITULO DIAPOSITIVA IZQUIERDO CON IMAGEN*/
.subtitulo-izq-img{
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 5%;
    box-sizing: border-box;
}
.img-subtitulo-izq-img{
    width: 80px;
    height: 80px;
    margin: 0px 10px;
}
.titulo-subtitulo-izq-img{		
    font-size: 35px;
    color: #3FA9F5;
    font-family: 'Titulo', sans-serif;
    font-weight: bold;
}
/*CONTENIDO*/
.caja-dialogo-06{
    display: inline-flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 80%;
    font-family: 'Principal', sans-serif;
    padding: 20px;
    border-radius: 8px;
    transition: all .4s ease-out;	
    box-sizing: border-box;
    position: relative;
}
.caja-dialogo-06>iframe{
    width: 100%;
    height: 400px !important;
    border-radius: 8px;
}
.img-caja-dialogo-06{
    width: 70% !important;;
    object-fit: contain;	
    position: absolute;
    z-index: 1;
    top: 2%;
    right: -15% !important;;
}
.cont-p-caja-dialogo-06{
    position: relative;
}
.dialogo-img-caja-dialogo-06{
    position: absolute;
    z-index: 2;
    left: 0px;
    top: 0px;
    width: 70%;    
}
.texto-caja-dialogo-06{
    width: 50%;	
    margin-left: 5%;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 24px;
    color: #676767;
    padding: 20px 10px;	
    border-radius: 50px 50px 0px 50px ;    
    position: relative;
    z-index: 3;
    padding: 5px;
    box-sizing: border-box;
}
.texto-caja-dialogo-06>p{
    z-index: 2;
    position: relative;
}
.texto-caja-dialogo-06-globo{            
    position: absolute;
    width: 130%;
    height: 100%;
    left: -7%;
    top: 2px;
    z-index: 1;        
}
/*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');    
}