
.galeria__img{
	object-fit: cover;
	margin-bottom: 1px;
	cursor: pointer;
	transition: all 0.5s;
	border: #008080 2px outset;
}
.column--50-25{
	width: 49%;
	 
}

.galeria__img:hover{
	transform: scale(1.05);
}
.galeria .galeria__img--big{
	height: 400px;
	 border-radius:5%;
}
.galeria .galeria__img--small{
	height: 200px;
	 border-radius:5%;
}
.modal{
	width: 100%;
	min-height:100vh;
	background: rgba(0,0,0,0.9);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	display: none;
}
.modal__content{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.modal__img{
	width: 75%;
}
.modal__btn{
	position: absolute;
	top:10px;
	color: white;
	right: 10px;
	cursor: pointer;
	font-weight: bold;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: #DE423A;
	font-size: 2.5em;
	text-align: center;
	border-radius: 50%;
	font-family: monospace;
}
.modal--open{
	display: block;
}
@media screen and (min-width:480px){
	
.modal__img{
	width: 95%;
	object-fit: cover;
     }
}
@media screen and (min-width:768px){
	.column--50-25{
		width: 25%;
	}
.modal__img{
	width: 60%;
	object-fit: cover;
     }
}
@media screen and (min-width:1024px){
	
.modal__img{
	width: 50%;
	object-fit: cover;
     }
}