
.cont-main{
	background-color: #9e9e9e;
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; 
}
.yos-overlay{
	display: flex;
	background-color: rgba(42,41,36,0.1); /* Black background with opacity */
	z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}

.yos-school-card{
	height: 180px;
	background-color: #f5f5f5;
	border-radius: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1s;
	padding: 10px;
}
.yos-school-card:hover{
	transform: scale(1.1);
	z-index: 3;
	box-shadow: 2px 2px 2px #757575  ;
	background-color: #fafafa;
}
.cont-3 div a{
	text-decoration: none;
}
.yos-school-card p{ 
	color:#144297;
}
.yos-school-card .yos-school{ 
	font-weight: bold;
	font-size: 1em;
	margin-bottom: 0px;
}
.yos-school-card img{ 
	height: 80px;
	margin-right: 10px;
}

@media screen and (max-width: 767px){
	.cont-main{
		height: 1020px;
	}
	.yos-overlay{
		height: 1000px;
	}
}
@media screen and (min-width: 768px){
	.cont-main{
		height: 100vh;
	}
	.yos-overlay{
		height: calc(100vh - 20px);
	}
}

.mt50px{
	margin-top:45px;
}

.mt80px{
	margin-top: 13%;
}