/* 
    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-07{
    display: inline-flex;	
    width: 90%;
    font-family: 'Principal', sans-serif;
    background-color: transparent;
    padding: 0px 20px;
    border-radius: 8px;
    transition: all .4s ease-out;
    box-sizing: border-box;
    position: relative;
    flex-wrap: wrap;
}
.cont-titulo-dialogo-07{
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: no-wrap;
    align-items: center;
    position: relative;
    padding: 10px;
    background-color: rgba(100,50,50,.1);
    border-radius: 7px;	
}
.img-titulo-dialogo-07{
    width: 140px;
    height: 120px;
    object-fit: contain;
    object-position: center;
    border: 5px solid #3FA9F5;
    padding: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 50%;	
    background-color: #fff;
    position: relative;
}
.img-titulo-dialogo-07 img{
    position: absolute;
    width: 370%;
    transform: scaleX(-1) !important;
    left: -123%;
    top: -57%;
}
.texto-titulo-dialogo-07{
    width: 100%;
    text-align: left;
    font-family: 'Principal', sans-serif;	
    font-size: 24px;
    padding: 0px 20px;
}
.caja-texto-05>div{
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 20px 0px;    
}
.caja-texto-05 .boton{
    width: 45%;
    object-fit: contain;
    margin: 10px 20px;
    cursor: pointer;
    transition: all .4s ease-out;
    filter: grayscale(.1);
}
.boton:hover{	
    filter: none;
    transform: translateY(-15px) rotate(-2deg) scale(1.005);
}
.texto-aux{
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease-out;
}
.texto-aux>img:hover{
    transform:rotate(35deg);
}
.texto-aux>img{
    width: 5%;	
}
.texto-aux>p{	
    font-family: 'Principal', sans-serif;	
    font-size: 15px;	
    color: #3FA9F5;
    margin-left: 10px;	
}
.caja-texto-05{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
    font-family: 'Principal', sans-serif;
    background: linear-gradient(to right, rgba(241, 175, 87,.6), rgba(241, 175, 87,.1),rgba(241, 175, 87,.2), rgba(63, 169, 245,.3),rgba(63, 169, 245,.6));
    padding: 0px 20px;
    border-radius: 8px;
    transition: all .4s ease-out;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 0px auto;
}
.caja-texto-05 p{
    /*! width: 50%; */
    font-family: 'Principal', sans-serif;
    text-align: justify;
    font-size: 18px;
    z-index: 3;    
    color: #676767;
}
/*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');    
}