*{
	padding: 0;
	margin: 0;
	color: #333;
}
a{color: #333;text-decoration: none;}
.linkWhite{color: #fff; cursor: pointer;transition: 0.3s;}

header{
	position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
	z-index: 10;
	font-family: nunito;
	transition: 0.3s;
	background: #fff;
}
.headerScroll, .headerTop{
	background: #fff !important;
	box-shadow: 0 2px 7px #333 !important;
	height: 70px;
}

#headerLogo{
	position: absolute;
		left: 6%;
		height: 90px;
		width: auto;
	transition: 0.3s;
}
.headerLogoScroll, .headerLogoTop{
	height: 70px !important;
}

#headerBlue {
	position: absolute;
		width: 6.5%;
		height: 90px;
	background-color: #009DDB;
	transition: 0.3s;
}
.headerBlueScroll, .headerBlueTop{
	height: 70px !important;
}
#headerTitle{
	position: fixed;
  		left: 17.5%;
	line-height: 90px;
	vertical-align: middle;
 	font-size: 30px;
 	font-weight: bold;
 	color: #000;
 	transition: 0.3s;
}
.headerTitleScroll, .headerTitleTop{
	left: 15% !important;
	line-height: 70px !important;
	font-size: 25px !important;
}
#hamburgerMenu{
	position: absolute;
		top: 15px;
		right: 3%;
		width: 43px;
		height: 30px;
	transform: rotate(0deg);
	cursor: pointer;
	z-index: 1000;
	display: none
}
#hamburgerMenu span{
	position: absolute;
		height: 6px;
		width: 100%;
	background: #009DDB;
	display: block;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
}
#hamburgerMenu span:nth-child(1){
	top: 0px;
}
#hamburgerMenu span:nth-child(2){
	top: 14px;
}
#hamburgerMenu span:nth-child(3){
	top: 28px;
}
#hamburgerMenu.open span:nth-child(1) {
	top: 14px;
	transform: rotate(135deg);
}
#hamburgerMenu.open span:nth-child(2) {
	opacity: 0;
	left: -50px;
}
#hamburgerMenu.open span:nth-child(3) {
	top: 14px;
	transform: rotate(-135deg);
}

#menuList{
	position: absolute;
		right: 5%;
	line-height: 65px;
	vertical-align: middle;
}
#menuList li{
	display: inline-block;
	text-align: center;
	font-weight: bold;
	color: #009DDB;
	list-style-type: none;
}
#menuList li a{
	color: #000;
	padding: 10px 0 4px 0;
	margin: 0 10px 0 10px;
	font-size: 20px;
	border-bottom: 3px solid transparent;
	transition: 0.3s;
}
#menuList li a:hover, .active{
	border-bottom: 3px solid #009DDB !important;
}
#image{
	height: 35vh;
	background: url('images/bg1.jpg');
	background-position: 0 -100px;
}
#homeImage {
	height: 115vh;
	text-align: center;
	background-image: linear-gradient(rgba(255,255,255,1) 10%, rgba(255,255,255,0) 100%), url('images/bg1.jpg');
}
#image, #homeImage{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
#homeIcon {
	position: relative;
		top: 0px;
		width: 80%;
	font-size: 130px;
	margin: 0 auto;
}
#iconText {
	font-family: nunito;
	font-size: 55px;
	text-shadow: 1px 1px 1px #fff;
}
#icon1, #icon2, #icon3 {
	background: #009DDB;
	width: 225px;
	height: 225px;
	border-radius: 50%;
	line-height: 225px;
	transition: 1s;
	text-shadow: 2px 2px 15px #444;
	display: inline-block;
	margin: 20vh 40px 7vh 40px;
}
#icon1 i, #icon2 i, #icon3 i {
	color: #fff;
}

/*		Main 		*/

main{
	background: #eee;
	margin-bottom: -5vh;
	border-top: 10px solid #009DDB;
}
section{
	position: relative;
		top: -20vh;
		max-width: 1000px;
	background: #fff;
	margin: 10vh auto 0 auto;
	padding: 35px 70px 70px 70px;
	box-sizing: border-box;
	box-shadow: 0 1px 5px #333;
	border-top: 10px solid #009DDB;
	font-family: Roboto;
}
section h1{
	font-size: 32px;
	text-align: center;
	font-weight: normal;
}
section article{
	font-size: 18px;
	column-count: 2;
    column-gap: 100px;
    column-rule: 2px solid #009DDB;
    font-family: roboto;
}
section ul li{
	list-style-position: inside;
}
section ul li.hide{
	list-style-type: none;
	text-indent: 2em;
}
.articleImage{
	position: relative;
		right: 0;
}
.spanBlue{
	color: #009DDB;
}
form{
	width: 100%;
	margin: 0 auto;
}
.contact{
	background: #eee;
	padding: 15px;
}
.contactList{
	list-style-type: none;
	word-break: break-all;
}
#googleMap {
  width: 100%;
  height: 20vh;
  margin-top: 0px;
}

input[type=text], input[type=email],
textarea, input[type=submit]{
	width: 100%;
	padding: 10px;
	font-size: 16px;
	margin: 5px;
	box-sizing: border-box;
	border: none;
	outline: none;
	background: #eee;
	resize: none;
	transition: 0.2s;
	font-family: roboto;
}
input[type=text]:focus, input[type=email]:focus,
textarea:focus{
	box-shadow: inset 0 0 8px #333;
}
input[type=submit]{
	background: #009DDB;
	color: #fff;
	font-size: 18px;
	font-weight: normal;
	transition: .6s;
	cursor: pointer;
	box-shadow: inset 0 0 0 #0084C2;
}
input[type=submit]:hover{
	box-shadow: inset 500px 0 0 #0084C2;
}
input[type=submit]:focus{
	padding: 10px 10px 10px 50px;
}
::-webkit-input-placeholder {
   color: #666;
}

:-moz-placeholder { 
	color: #666; 
}

::-moz-placeholder { 
	color: #666;  
}

:-ms-input-placeholder {  
	color: #666; 
}

footer{
	font-family: nunito;
	font-weight: lighter;
	background: #009DDB;
	font-size: 15px;
	padding: 20px 50px;
	margin: -10vh 0 0 0;
	text-align: center;
}
#footerText{
	color: #fff;
	position: relative;
	display: inline-block;
}

/* screensize */

@media (max-width:1300px) {
#homeImage, #image{
	height: 103px !important;
	background: none;
	background-position: 0 -100px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
#image, #homeImage{
	position: relative;
		top: 65px;
}
#homeIcon{
	display: none;
}
header{
	background: #fff;
	box-shadow: 0 2px 7px #333;
	height: 65px !important;
}
#headerLogo, #headerBlue{
	height: 65px !important;
}
#headerTitle{
	line-height: 65px !important;
	font-size: 25px !important;
	left: 17% !important;
	transition: 0s !important;
}
input[type=text], input[type=email],
textarea, input[type=submit]{
	margin: 5px 0;
}	
}
@media (max-width:1040px) {
#headerTitle{
	left: 19% !important;
}
#menuList{
	display: none;
}
#menuList.open{
	position: fixed;
		left: 0;
		top: 65px;
		width: 100%;
		height: 100%;
	line-height: 50px;
	padding-top: 5vh;
	background: #eee;
	z-index: -1;
	display: block;
}
#menuList li{
	display: block;
}
#menuList li a{
	font-size: 24px;
	transition: 0s;
}
#hamburgerMenu{
	display: block;
}
.bull{
	display: none !important;
}
}
@media (max-width:880px) {
#headerTitle{
	left: 0 !important;
	width: 100%;
	text-align: center;
}
}
@media (max-width:680px) {
section article{
	column-count: 1;
	column-gap: 0;
	column-rule: 0 solid #009DDB;
}
#headerTitle{
	font-size: 23px !important;
}
section{
	padding: 35px 40px 70px 40px;
}
.articleImage{
	margin-bottom: 40px;
}
section h1{
	font-size: 29px;
}	
footer{
	font-size: 13px;
}	
}
@media (max-width:540px) {
#headerTitle{
	font-size: 21px !important;
}
}
@media (max-width:485px) {
#headerTitle{
	top: 5px !important;
	line-height: normal !important;
	left: 50% !important;
	margin-left: -100px;
	width: 200px;
}
}

@media (max-width:400px) {
section article{
	padding: 0;
}
section{
	padding: 35px 20px 70px 20px;
}
}
@media (max-width:400px) {
#headerTitle{
	left: 55% !important;
}
}
@media (max-width:350px) {
#headerTitle{
	display: none;
}
}






