#s-inscripciones {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#s-inscripciones h3 {
	font-size: 25px;
	color: #24346c;
	margin-bottom: 10px;
}

#s-inscripciones h2 {
	color: #B7F3E4;
	font-size: 68px;
	margin: 20px 0px;
	text-align: center;
	font-family: "Raleway Bold";
}

#s-inscripciones p {
	color: #B7F3E4;
	font-size: 34px;
	margin: 20px 0px;
	text-align: center;
	font-family: "Raleway Bold";
}

#content-searh {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #666666;
    padding: 10px;
    border-radius: 60px;
    background-color: #e6e6e6;
    border: none;
}

#content-searh svg {
	width: 24px;
	height: 24px;
	fill: #4D4D4D;
}

#content-searh form {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#content-busqueda-insc {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#content-busqueda-insc form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

#content-searh input {
	width: 100%;
	background-color: #e6e6e6;
	color: #a6a6a6;
	padding: 10px;
	border-radius: 60px;
}

#content-searh input::placeholder {
	color: #a6a6a6;
	font-size: 18px;
}

#content-busqueda-insc button {
	background-color: #FFE252;
	font-size: 20px;
	color: #00904A;
	font-family: "Raleway Bold";
	padding: 16px 24px;
	border-radius: 32px;
}

#content-colegios {
	width: 95%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
	justify-content: center;
	align-items: stretch;
	padding: 30px 0px;
}

#content-colegios a {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background-color: #F3F1EA;
	padding: 16px;
	border-radius: 24px;
	gap: 24px;
}

#content-colegios a img {
	width: 100%;
	border-radius: 8px;
}

#content-colegios a span {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	color: #00904A;
	text-align: center;
}

@media screen and (min-width: 992px) {
	#content-colegios {
		width: 80%;
	}
}

@media (max-width: 1200px) {
	#content-colegios {
		width: 95%;
	}

	#s-inscripciones h2 {
		font-size: 45px;
		margin: 0px 0px;
	}

	#s-inscripciones p {
		font-size: 25px;
		margin: 10px 0px;
	}

	#content-searh {
		width: 50%;
	}

	#content-searh input {
		padding: 5px 10px;
	}

	#content-busqueda-insc button {
		font-size: 18px;
		padding: 8px 24px;
		border-radius: 32px;
	}

	#content-colegios a span {
		font-size: 16px;
	}
}


@media screen and (max-width: 1000px) {

	#content-colegios {
		grid-template-columns: 1fr 1fr;
	}

	#content-searh {
		width: 95%;
	}

	#s-inscripciones h2 {
		font-size: 30px;
		margin: 0px 0px;
	}

	#s-inscripciones p {
		font-size: 20px;
		margin: 10px 0px;
	}

}