/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 08-nov-2019, 13:12:33
    Author     : Fenner González - WebManager - EVOL
*/
.tarjetas-index{
    min-height: 200px;
}
.enlace-tarjeta{
    color: #3C3C3B;
}
.enlace-tarjeta:hover{
    color:#FFA300;
    text-decoration: none;
}
.usuario{
    height: 200px;
}
.usuario-user{
    height: 250px;
}
.img-profile{
    width: 90px;
    height: 90px;
    border-radius: 100%;
    /*border: solid 3px #FFA300;*/
    margin: 10px auto;
    /*background: #FFA300;*/
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.img-profile img{
    width: 90px;
    margin: 0 auto;

}

.datos-index{
    margin-top:  40%; 
}
/*Iconos index*/
.icon-index{
    font-size: 18px;
    color: #FFA300;
    margin: 5px;
}
.icon-index:hover{
    color:#fff !important;
}
.text-index{
    font-size: 12px !important;
    margin: 0;
    padding: 0;
}
/*Iconos index*/
.icon-index:hover, .text-index:hover{
    font-size: 13px !important;

}

/*Estilos tarjetas de index títulos*/
.container-titulo {
    position: relative;
    width: 100%;
    margin: 10px;
}

.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;

}

.overlay {
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /*background-color: #FFA300;*/
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;  
    background-color: rgba(255, 163, 0, 0.95);
    overflow: hidden;    
    transition: .5s ease;

}
.container-titulo:hover .overlay {
    opacity: 1;
}
.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

/*Estilos para las portadas de los proyectos o unidades de cada título*/
.container-proyecto {
    position: relative;
    width: 100%;
    border-radius: 5%;
    /*background: #FFA300;*/
/*    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
}

.image-proyecto {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5%;
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    -moz-filter: grayscale(0%); 
    filter: grayscale(0%);
}

.overlay-proyecto {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;  
    background-color: rgba(255, 163, 0, 0.95);
    overflow: hidden;    
    transition: .5s ease;
    border-radius: 5%;
}

.container-proyecto:hover .overlay-proyecto {
    opacity: 1;
}

.text-proyecto {
    color: white;
    font-size: 1em;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-proyecto i {
   font-size: 2em; 
}
/*Estilos de las tarjetas del home para el admin*/
.card-home:hover, .card-home h2:hover{
    text-decoration: none;
    color: #FFA300 !important;
    transition: .5s ease;
}


