.content{
	width: 95%;
}

.search{
	padding-top: 1rem;
	margin: 0 5% 5rem auto;
	width: fit-content;
}


.search-label{
	padding-right: 3.5em;
	font-size: 1rem;
	line-height: 1.5;
	text-transform: uppercase;
	color: #b0b0b0;
}

#search-select{
	font-family: inherit;
	font-size: inherit;
	font-weight: 500;
	/* padding-right: 2.5em; */
	width: 6em;
	appearance: none;
	background: white;
	border: none;
	outline: none;
}


.select-wrapper {
	position: relative;
}
.select-wrapper::after {
	content: "▼";
	font-size: 0.5em;
	top: 0.5em;
	right: 10px;
	position: absolute;
	user-select: none;
	pointer-events: none;
}

.proyectos-container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem;
	margin-bottom: 10rem;
}

.proyecto-block{
	width: auto;
	height: 34rem;	
	color: white;
}

.proyecto-img{
	position: absolute;
	width: calc(24% - 1rem);
	height: 34rem;
	box-sizing: border-box;
	background-position: center;
	background-size: cover;
	filter: grayscale(100%) brightness(0.4);
	background-color: lightgray;
	transition: filter 0.7s;
	z-index: -2;
}

.proyecto-pad{
	padding: 4rem 3rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.proyecto-date{
	font-size: 1.1em;
	font-weight: 350;
}

.proyecto-title{
	font-size: 1.8em;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: auto;
}

.proyecto-block:hover .proyecto-img{
	filter:none;
}

@media screen and (max-width: 1636px){
	.proyectos-container{
		grid-template-columns: 1fr 1fr 1fr;
	}
	.proyecto-img{
		width: calc(32% - 1rem);
		height: 30rem;
	}
	
	.proyecto-block{
		width: auto;
		height: 30rem;	
	}
}

@media screen and (max-width: 1230px){
	.proyectos-container{
		grid-template-columns: 1fr 1fr;
		gap:0.5rem
	}
	.proyecto-block{
		height: 60vw;
	}
	.proyecto-img{
		width: calc(48% - 0.4rem);
		height: 60vw;	
	}

	.proyecto-pad{
		font-size: calc(2vw + 0.0rem);
		padding: 3em 2em;
	}
}


