/* 
    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;
}
/*BOTON*/
.img-fondo{
    width: 100%;
    height: 100%;
}
.boton-center-bottom {	
    width: 200px;
    height: 200px;
    /*! margin: 0px auto; */
    margin-top: -20%;
    position: relative;    
    -webkit-transition: all ease 0.2s;
    cursor: pointer;
    border-radius: 5px;
    padding: 25px 35px 25px 0px;
    font-family: 'Titulo';
    font-size: 18px;        
    margin-left: 2%;
}
.boton-center-bottom>a{
    text-decoration: none;
    color: #fff;
    position: relative;    
}
.boton-center-bottom>a:hover .boton-center-bottom-img{
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 2;
}
.boton-center-bottom-img {
    content: ' ';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-image: url('../../recursos/loading.gif');
    background-repeat: no-repeat;
    transition: all .5s ease-out;        
}
/*Estilos hover */
.hover-agrandar:hover{
	transform: scale(1.03);
}
.hover-sombrear:hover{
	-webkit-box-shadow: 1px 1px 13px 4px rgb(32 32 32 / 20%);
    -moz-box-shadow: 1px 1px 13px 4px rgba(32,32,32,.2);
    box-shadow: 1px 1px 13px 4px rgb(32 32 32 / 20%);
}