.container{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	margin-top: 150px;
}
.filtro{
	width: 100%;
	max-width: 1024px;
	height: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
  	gap: 10px;
}
.titulobuscar{
	width: 100%;
	text-align: center;
}
.container .filtro form{
	grid-column: 1/span 3;
	height: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr ;
  	gap: 10px;
}

.container .filtro form select{
	width: 100%;
	max-width: 200px;
	height: 30px;
	margin: 3px;
	border: none;
	outline: none;
	cursor: pointer;
	text-align: center;
	background: #fff;
	color: #000;
	font-weight: 700 !important;
	-moz-appearance: none;
	-webkit-appearance: none;
	transition: .3s;
}
.container .filtro form .agrandar:focus{
	height: 100px;
	color: #fff;
	z-index: 50;
}
.container .filtro form select:hover{
	background: #ea8511;
	color: #fff;
	transition: .3s;
}
option{
 	height: 20px;
 	padding-top: 5px;
 	background-color: #ea8511;
 	color: #fff;
 	transition: .3s;
 }
 option:hover{
 	background-color: #fff;
 	color: #ea8511;
 	transition: .3s;
 }

.container .filtro form input[type="submit"]{
	width: 100%;
	max-width: 200px;
	height: 30px;
	margin: 3px;
	border: none;
	outline: none;
	cursor: pointer;
	font-weight: 700 !important;
	background: #ea8511;
	color: #fff;
	transition: .5s;
}
.container .filtro form input[type="submit"]:hover{
	background: #01C4D5;
	transition: .5s;
}
.container .filtro a{
	grid-column: 4/span 1;
	max-width: 200px;
	height: 25px;
	margin: 3px;
	font-size: 14px;
	font-weight: 500;
	padding-top: 5px;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background: #ea8511;
	transition: .3s;
}
.container .filtro a:hover{	
	background: #01C4D5;
	transition: .3s;
}


.grupo{
	-webkit-animation: aparecer1 1.3s linear ;
	-o-animation: aparecer1 1.3s linear ;
	animation: aparecer1 1.3s linear ;
}

@keyframes aparecer1{
	from{ opacity: 0; }
	to{opacity: 1; }
}

@media(max-width:  1100px){
	.container .filtro form{
		width: 100%;
		height: auto;
		margin: auto;

	}
}