* {
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}
a {
	color :inherit;
	text-decoration: none;
}
.medsos {
	padding: 5px 0;
	background-color: #00bfff;
	font-size: 19px;
}

.medsos ul li {
	display: inline-block;
	color: #fff;
	margin : 5px;
}
.container {
	width: 80%;
	margin: 0 auto;
}
.container:after{
	content: '';
	display: block;
	clear: both;
}
header h1{
	float: left;
	padding: 15px 0px;
	color: #00bfff;
}
header ul{
	float: right;
}
header ul li {
	display: inline-block;
}
header ul li a{
	padding:20px 15px;
	display: inline-block;
}
header ul li a:hover{
	background-color: #00bfff;
	color: #fff;
}
.active{
	background-color: #00bfff;
	color: #fff;
}
.banner{
	height: 60vh;
	background-image: url('../img/banner.jpg');
	background-size: cover;
	position: relative;
	display: flex;
	padding-left: 15%;
	align-items: center;
}
.banner h2{
	color: #fff;
	z-index: 1;
	padding:20px 15px;
	border:solid;
}
.banner:after{
	content: '';
	display: block; 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(0, 191, 255, .5);
}
section {
	padding:5% 0;
}
section h3{
	text-align: center;
	padding:20px 0;
	color: #00bfff;
	margin-bottom: 25px;
}
.about{
	padding-bottom: 240px;
}
.service{
	padding-bottom: 180px;
}
.about p{
	color: #666;
	word-spacing: 2px;
	line-height: 25px;
	margin-bottom: 15px;
	text-align: center;
}
.box{
	color: #00bfff;
}
.box:after{
	content: '';
	display: block;
	clear: both;
}
.box .col-4{
	width: 25%;
	padding:20px;
	box-sizing: border-box;
	text-align: center;
	float: left;
}
.icon{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	text-align:center;
	line-height: 70px;
	font-size: 40px;
	margin:0 auto;
}
.box .col-4 h4{
	margin:23px 0;
}
footer {
	padding:30px 0;
	background-color: #333;
	color: #fff;
	text-align: right;
}
.bg-loader{
	background-color: #eee;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;;
	justify-content: center;
	align-items: center;
}
.bg-loader .loader{
	width: 100px;
	height: 100px;
	border: 3px solid #fff;
	border-radius: 50%;
	border-top-color: #00bfff;
	border-right-color: #00bfff;
	border-bottom-color: #00bfff;
	animation: muter .9s linear infinite;
}

.label{
	background-color: #00bfff;
	color: #fff;
}
@keyframes muter {
	100%{
		transform: rotate(360deg);
	}
}
@media screen and (max-width: 768px){
	.container{
		width: 80%
	}
	header h1{
		text-align: center;
		float: none;
	}
	header ul{
		text-align: center;
		float: none;
	}
	.box .col-4{
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.banner{
	padding-left: 5%;
	padding-right: 5%; 
}

}

