body{background: var(--claro);}
*{box-sizing: border-box;}
#top{
	position: relative;
	height: 100vh;
	color: var(--claro);
	background-color: var(--color-paleta-2);
    z-index: -1;
}
.header_heigth1{
    background-color: var(--color-paleta-2) !important;

}
#top h1{
	font-size: 50px;
}
#top img{
	width: 100px;
	margin-bottom: 10px;
}
#top_text{
	opacity: 0;
	animation: fadeInUp 2s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
}
main{
    text-align: center;
    padding: 20px 0;
}
main h3{
    color: #333;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
    padding: 0 10px;
}

#filtros{
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 800px;
    margin: 20px auto 35px;
}
#filtros h4{
    color:  white;
    background-color: #264fbf;
    padding: 10px 20px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0 5px 5px;
    cursor: pointer;
}
.show1{
    cursor: pointer;
}
#container-img{
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
#container-img > .item{
    position: relative;
    width: 350px; height: 350px;
    max-width: 100%; max-height: 100vw;
    transition: all 0.2s ease;
    margin: 10px;
}
#container-img > .item > img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: scale-down;
}
#container-img > .item > h3{
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: white;
    font-size: 20px;
    background-color: #0008;
    padding: 10px 20px;
    left: 50%;
    transform: translateX(-50%);
}
.hide1{
    display: none;
    opacity: 0;
    transform: scale(0);
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      top:55%;
    }
    to {
      opacity: 1;
      top:50%;
    }
}