.galeria-tabs {
	display: flex;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
}
.galeria-tabs a {
	padding: 0.5rem 1.5rem;
	border-radius: 8px;
	outline: none;
	outline-offset: unset;
	background: #eff6ff;
	color: black;
	border: 1px solid #2563eb;
	transition: background 0.3s ease-in-out;
}
.galeria-tabs a:hover {
	background:#3b82f6;
}
.galeria-tabs a.active {
	background: #2563eb;
}
.galeria {
	width: 100%;
	margin: 10px auto 0px auto;
}
#nanogallery_1 {
	width: 100%;
}
.galerias {
	opacity: 0;
	animation: showIn 0.6s ease-in 1 forwards;
	display: flex;
	justify-content: space-between;
}
.galerias a {
	display: block;
	width: 100%;
	margin-bottom: 18px;
}
.galeria-full-content  {
	flex-direction: column;
	gap: 10;
	width: 100%;
}
.galeria-content  {
	flex-direction: column;
	gap: 10;
	width: 32%;
}
.galeria-content a {
	transition: transform 0.4s ease-in-out;
}
.galeria-content a:hover {
	transform: scale(1.05);
}
.galeria-menu {
	position: relative;
	display: flex;
	color: #FFF !important;
}
.galeria-menu div {
	display: none;
	transition: opacity 0.4s ease-in-out;
	position: absolute;
	opacity: 0;
	right: 0;
	top: 100%;
	padding: 4px 10px;
	flex-direction: column;
	gap: 4px;
	background: #FFF;
	z-index: -20;
	color: #FFF !important;
}
.galeria-menu:hover div {
	display: flex;
	opacity: 1;
	z-index: 50;
}
.galeria-menu div a {
	white-space: nowrap;
	color: black !important;
	background: transparent;
	transition: background 0.4s ease-in-out;
	padding: 4px 4px;
}
.galeria-menu div a:hover {
	background: #91cbbe !important;

}
@keyframes showIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}