
/** galeria **/
#slideshow {
    display: block;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    width: 100%;
    height:100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.35;
    
    filter: blur(4px);
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -ms-filter: blur(4px);
    -o-filter: blur(4px);
}

#slideshow div {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

#slideshow div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#slideshow .selected {
    z-index: 1;
    opacity: 1;
    transition: all 2s ease 0s;
}

#slideshow .noselected {
    z-index: 0;
    opacity: 0;
    transition: all 2s ease 0s;
}

.head-content{
	width: 100%;
    height: 500px;
    position: relative;
    background: #0593E5; 
}


.head-content{
	background: linear-gradient( #0072ff, #00c6ff);
	animation: animarFondo 30s infinite;
}

@keyframes animarFondo{
	0%{
        background:#0593E5;
    }
    25%{
        background:#006ea4;
    }
    50%{
        background:#496c8f;
    }
    75%{
        background:#7F006E;
    }
    100%{
        background:#0072ff;
	}
}