


.inner-content hr{
	background: #fff;
	border:2px solid #fff;
	margin-top: -10px;
}

.inner-content label{
	color: #fff;
	font-size: 15px;
}

@media(max-width: 992px){
	.inner-content{
		width: 300px;
		height: auto;
		padding: 10px;
	}
	.inner-content h4{
		font-size: 20px;
	}
}

.icon-bg{
	width: 100%;
	height: auto;
	margin-top: 50px;
	
}
.icon-bg a{
	text-decoration: none;
	color: #000;
}
.icon-area{

}
.icon-area i{
	font-size: 40px;
	color: #fff;
	height: 70px;
	width: 70px;
	background: #D11210;
	align-items: center;
	justify-content: center;
	display: flex;
	border-radius: 50%;
}
.icon-contents{
	width: 100%;
	/*background: yellow*/;
}
.icon-contents h4{
	font-size: 25px;
	font-weight: bolder;
	color: #000;
}
.icon-contents h4:hover{
	color: #fff;
}
.icon-contents span:hover{
	color: #fff;
}
#each_row:hover .icon-contents h4{
	color: #fff
}
#each_row:hover .icon-area i{
	background: #fff;
	color: #D11210;
}
.icon-contents span{
	font-size: 15px;
	font-weight: bold;
}
#each_row{
	width: 100%;
	height: auto;
	padding: 10px;
	border-bottom: 2px solid red;
	position: relative;
}
#each_row::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 0;
	background: rgba(255, 0,0,0.7);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: ease-in all 0.5s;
}
#each_row:hover:before{
	height: 100%;
	transition: 0.5s;
}
#each_row:hover: h4{
	color: #fff;
}
@media(max-width: 992px){
	.icon-area {
		align-items: center;
		justify-content: center;
		display: flex;
	}
	.icon-contents{
		margin-top: 15px;
	}
	#each_row{
		width: 100%;
		height: auto;
		/*background: green;*/
		padding: 10px;
		align-items: center;
		justify-content: center;
		display: flex;
		text-align: center;
		border-left: 2px solid #D11210;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	/*#each_row:hover{
		background: rgba(255, 0,0,0.7);
	}
	#each_row:hover .icon-area i{
		background: #fff;
		color: #D11210;
	}
	#each_row:hover h4{
		color: #fff;
	}*/

}
.pageBg{
	width: 100%;
	background-image: url('../images/sport.jpg');
	/*background-image: url('../images/pupils.jpg');*/
	margin-top: 70px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/*padding: 30px 0 0 0 ;*/
	text-align: justify-all;
	padding-bottom: 30px;
	padding-top: 20px;
}

.pageBg .left-bg{
	width: 100%;
	height: auto;
	background: rgba(0,0,0,0.8);
	padding: 12px;

}
.bg-title{
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg-title i{
color: #fff;
font-size: 20px;
height: 35px;
width: 35px;
background: #D11210;
justify-content: center;
display: flex;
align-items: center;
border-radius: 50%;

}
.bg-title h4{
	font-size: 25px;
	color: #fff;
}
.pageBg span{
	color: #fff;
	
}
.about-us{
	width: 100%;
	height: 200px;
	margin-top: 30px;
	/*background-image: url('../images/classroom.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;*/
}
.about-content{
	width: 100%;
	height: auto;
	color: #D11210;
	/*background: rgba(255, 0,0,0.7);*/
	padding: 10px;
	/*color: #fff;*/
}
.about-content h4{
	text-align: center;
	font-size: 20px;
	color: #000;
}
.img-area-about{
	width: 100%;
	height: auto;
	display: 
}
.about-us img{
	width: 100%;
	height: 200px;
	align-items: center;
	justify-content: center;
}

/* Base styles */
.element {
  opacity: 0;
  transition: opacity 1s ease-in-out 0.5s, transform 1s ease-in-out 0.5s;
}

/* Fade In Right */
.element.fadeInRight {
  transform: translateX(100%);
}

.element.fadeInRight.fadeIn {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Up */
.element.fadeInUp {
  transform: translateY(100%);
}

.element.fadeInUp.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Bottom */
.element.fadeInBottom {
  transform: translateY(-100%);
}

.element.fadeInBottom.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

