
/* 
    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% );
    position: absolute;
    margin: auto;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0px;
}
/*HEADER*/
.header-1{
    width: 100%;
    position: relative;
}
.header-1-img{
    width: 100%;
    height: 100%;
}
/*BODY*/
/*TITULO*/
.titulo-central{
    position: relative;
    width: 100%;
    text-align: left;
    margin-top: 18.7%;
}
.texto-titulo-central{
    width: 38%;    
    font-size: 28px;
    color: #FFFFFF;
    font-family: 'Titulo', sans-serif;
    font-weight: bold;
    /*background-color: rgba(33 ,77 ,154, .7) ;*/
    background-color: #00a99d;
    padding: 20px 5%;
    border-radius: 0px 50px 50px 0px;
    position: relative;
    overflow: hidden;
}
/*
.texto-titulo-central::after{
    content: " ";
    position: absolute;
    right: 0px;
    top: 0;
    width: 0px;
    height: 0px;
    border-bottom: 801px solid rgba(255,255,255,1);
    border-left: 500px solid transparent;
    z-index: 10;
}*/
.desc-titulo-central{    
    font-size: 26px;
    color: #676767;
    font-family: 'Principal', sans-serif;
    padding: 20px 5%;
    background-color: transparent;
    width: 50%;
    border-radius: 0px 50px 50px 0px;
}
.img-aux-portada{
    width: 73%;
    object-fit: contain;
    position: absolute;
    top: -4%;
    right: -5%;
}
.boton-center-bottom {	
    width: 25%;
    margin: 0px 0px 0px -3%;
    margin-top: 2%;
    position: relative;    
    -webkit-transition: all ease 0.2s;
    cursor: pointer;
    border-radius: 5px;
    padding: 20px 30px 20px 0px;
    font-family: 'Titulo';
    font-size: 17px;        
}
.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('../../images1/svg/boton-comenzar-normal-1-1_1.svg');
    background-repeat: no-repeat;
    transition: all .5s ease-out;        
}
.boton-center-bottom-img:hover {	
    background-image: url('../../images1/svg/boton-comenzar-activo-2-1_1.svg');
    transform: scale(1.03);
}
/*BOTON*/
.boton-cen-bottom {
    position: absolute;
    width: 19%;
    bottom: 13.5%;
    left: 40%;		
    -webkit-transition: all ease-out 0.5s;
    cursor: pointer;
    border-radius: 5px;
}
/*Estilos hover */
.hover-agrandar:hover{
    transform: scale(1.03);
}