/* Whole page settings */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	list-style: none;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}

p{
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 20px;
	color: black;
}

h1.title{
	margin-top: -50px;
	margin-bottom: 20px;
	color: black;
	font-size: 44px;
	letter-spacing: 2px;

}

.btn a{
	display: block;
	width: 180px;
	height: 35px;
	border: 2px solid #fb2274;
	line-height: 35px;
	margin: 25px auto 0;
	color: #fb2274;
	text-align: center;
}

.main_container{
	position: relative;
}

/* Navigation bar */
.navbar{
	background: black;
	background-size: cover;
	width: 100%;
	height: 65px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: absolute;
}

.logo a{
	font-size: 32px;
	color: green;
}

.navbar_items ul{
	display: flex;
}


.navbar_items ul li{
	text-transform: uppercase;
	margin: 0 10px;
}

.navbar_items ul li a{
	color: #fff;
}

/* Smaller Banner Image */
.smallbanner_image{
	background: url(smallbanner.jpg) no-repeat center; 
	background-size: cover;
	width: 100%;
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.smallbanner_content{
	text-align: center;
	color: #fb2274;
}

/* Our Subjects */
/* 8 images used in the homepage, has the hover over effect makes it zoom  */
.oursubjects{
	margin-bottom: -50px;
	padding: 5% 5%;
	text-align: center;
	background: white; 
}
.oursubjects h5{
	padding-bottom: 50px; 
	font-size: 26px;
}

.oursubjects_wrapper .subjects{
	display: flex;
	justify-content: space-between;
}

.oursubjects_wrapper .subjects-1.subjects{
	margin-bottom: 25px;
}

.oursubjects_wrapper .subject img{
	width: 250px;
	height: 150px;
	margin-bottom: 25px;
	cursor: pointer;
	transition: all 0.5s ease;
	border: 20px;
}

.oursubjects_wrapper .subject:hover img{
	transform: scale(1.1);
}


/* Services */
/* TAS page, used for the 3 images in a row and the text to go with it */
.services{
	margin-bottom: -50px;
	background: white;
	padding: 5% 1%;
	text-align: center;	
}
.services h5{
	font-size: 26px;
	padding-bottom: 30px;
}

.diff_services{
	display: flex;
	margin-top 35px;
	justify-content: space-between;
}

.diff_service_item{
	width: 30%;
}

.diff_service_item img{
	width: 250px;
	height: 150px;
	margin-bottom: 25px;
	cursor: pointer;
	transition: all 0.5s ease;
	border: 20px;
}

.diff_service_item:hover img{
	transform: scale(1.1);
}

/* Video Page*/
.subject_video{
		margin: 0 auto;
		width: 1000px;
		padding-top: 100px;
		padding-bottom: 30px;
}

.videowrapper{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0px;
}
.videowrapper iframe{
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	width: 100%;
}

/* Floating Icon */
.readybar{
	position: fixed;
	bottom: 5%;
	right: 2%;
}

.readybar img{
	width: 100px;
	height: 100px;
}

/* Footer */
.footer{
	width: 100%;
	text-align: center;
	background: black;
	padding: 20px 0;
}

.footer a{
	color: white;
}


/* Responsive  */
@media (max-width: 1300px){
	.navbar{
	height: auto;
	flex-direction: column;
	}
	.navbar_items ul{
	display: flex;
	padding-top: 15px;
	}
	.navbar_items ul li a{
	color: #fff;
	font-size: 22px;
	}
	.diff_services{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.diff_service_item img{
		width: 600px;
		height: 300px;
		margin-bottom: 25px;
		margin-left: 10px;
	}
	.oursubjects_wrapper .subjects{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.oursubjects_wrapper .subject img{
		width: 600px;
		height: 300px;
	}
	.diff_service_item{
	width: 80%;
	}
	.services h5{
	font-size: 28px;
	}
	.readybar img{
	width: 150px;
	height: 150px;
}
}
