@charset "utf-8";
/* CSS Document */

body{
	font-family: 'Open Sans', sans-serif;
}

.container{
	max-width:1000px;
	margin:0 auto;
}

header{
	background-color: #7CC9BF;
	padding:20px;
}

header .container{
	display: flex;
	justify-content: space-between;
}
header .logo{
	font-weight: 700;
}
header .icon{
	display: none;
}
header a{
	color:#FFF;
	text-decoration: none;
}
header nav a{
	margin:0 10px;
}
header nav a:hover{
	color:#FF0;
}

main{		
		height: 620px;
	    background-color: #F1FACE;
	    text-align: center;	
	    width:100%;
	    padding:5px 0;
}
main h1{
	color:#040404;
	font-size: 36px;
	font-family: 'Calibri', cursive;
}
main h2{
	color:#040404;
	font-size: 24px;
	font-family: 'Calibri', cursive;
}




#banner{
	height: 620px;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #E8E8E8;
	text-align: center;
	padding:20px 0;
	font-size: 1.05em;
}
#banner h1{
	color:#040404;
	font-size: 36px;
	font-family: 'Calibri', cursive;
}
#banner h2{
	color:#040404;
	font-size: 24px;
	font-family: 'Calibri', cursive;
}
#banner h3{
	color:#040404;
	font-size: 18px;
	font-family: 'Calibri', cursive;
}
#news .container{
	display:flex;
	flex-wrap:wrap;
	padding:20px 0;
}
#news .item{
	width:33.33%;
	padding:20px 10px;
}
#news .item h1{
	font-size:1.25em;
	font-weight: 700;
}
#news .item img{
	margin:10px 0;
}
#news .item p{
	color:#999;
	line-height: 150%;
}
#faq{
	background-color: #E8E8E8;
	text-align: center;
	padding:50px 0;
	font-size: 1.05em;
}
#faq h1{
	font-size:1.5em;
	font-weight: 700;
	margin-bottom: 20px;
}
#faq li{
	border-top:dashed 1px #CCC;
	padding:25px 20px;
}
#faq li.open{
	background-color: #FFF;
	box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
#faq li.open .q{
	color:#069;
	font-weight: 700;
}

#faq .q{
	cursor: pointer;
}
#faq .q:hover{
	color:#069;
	font-weight: 700;
}

#faq .a{
	color:#999;
	line-height: 150%;
	margin-top: 10px;
}

footer{
	background-color: #333;
	color:#FFF;
	text-align: center;
	padding:20px;
}

























@media (max-width:540px){
	body{}

	.container{
		width:100%;
	}

	header{
		text-align: center;
	}

	header .container{
		flex-wrap: wrap;
	}
	header .logo{
		font-size: 2em;
	}
	header .icon{
		display: block;
	}
	header .icon img{
		height: 32px;
	}
	header .icon img.close{
		display: none;
	}
	header nav{
		margin-top: 15px;
		display: none;
		width: 100%;
	}
	header nav a{
		display: block;
		padding:15px 0;
		border-top:solid 1px #FFF;
		margin: 0;
	}

	#banner{
		height: 550px;
	}
	#news .container{
		padding:0;
	}
	#news .item{
		width:100%;
		padding:50px 20px;
		border-bottom:dashed 1px #DDD;
	}
	
}


































