@charset "utf-8";
/* CSS Document */

body{
	font-family:Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
	background-color: #F2E8CF;
}

.container{
	max-width:1000px;
	margin: 0 auto;
}
header{
	background-color: #DAFEB7;
	opacity: 70%;
	padding:12px;
}
header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header a{
	text-decoration: none;
	margin: 0 10px;
}
header .logo img{
	margin-left: 1%;
	width: 50px;
	height: 50px;
}
header img{
	width: 25px;
	height: 25px;
}
header .hnav1{
	width:40%;
}
header .hnav2{
	margin-right: 1%;
}
header .hnav2 img:hover{
	width: 35px;
	height: 35px;
}

main{}
#banner{
	height: 400px;
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
	opacity: 70%;
}
#banner .m1{
    padding-top: 3%;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
#banner h1{
	font-family: 'Marck Script', cursive;
	font-size:2.25em;
	font-weight: 700;
    margin-left: 3%;
	text-align: center;
	color:#29335C;
}
#banner .hide{
    display:none;
}
#banner .mnav{
    display: flex;
    justify-content: space-between;
}
#banner .mnav .icon{
	margin-top: 4px;
}
#banner .icon{
    margin:0 10px;
}
#banner a{
	font-family: 'Source Code Pro', monospace;
	font-weight: 700;
	text-decoration: none;
	color: #895B1E;
}
#banner img{
	width: 25px;
	height: 25px;
}
#banner h1:hover{
    color: #802392; 
}
#banner img:hover{
	width:35px;
	height:35px;
}

#form{
	height:500px;
	margin:40px 0;
	font-family: 'Open Sans';
}
#form .container{
	max-width:500px;
	padding:0 20px;
}
#form h1{
	font-size: 2em;
	color:#069;
	text-align: center;
	padding:15px 0;
	border-bottom: dashed 1px #CCC;
	margin-bottom: 20px;
}
fieldset{
	margin-bottom: 20px;
}
fieldset label{
	display: block;
	margin-bottom: 5px;
	font-size: 1.2em;
	color:#069;
}
input[type="text"],input[type="password"],input[type="email"],textarea{
	width:100%;
	padding:10px;
	font-family: 'Open Sans';
	font-size: 0.9em;
	color: #63768D;
}
input::placeholder {
	font-family: 'Open Sans';
	font-size:0.9em;
}
textarea{
	height:100px;
}
.btns{
	display: flex;
}
.btns>*{
	background-color: #FFF;
	padding:10px 18px;
	border:solid 1px #666;
	font-size: 16px;
	cursor: pointer;
	margin-right: 8px;
	margin-bottom: 5px;
	text-decoration: none;
	line-height: 120%;
	color:#000;
}
.btns>*:hover{
	background-color: #554971;
	color:#FFF;
}

footer{
	font-family: 'Marck Script', cursive;
	font-size: 1.25em;
	text-align: center;
	padding: 15px;
	background-color: #F7B267;
	color: #A09ABC;
}












@media(max-width:540px){
.container{
	max-width:100%;
}
header{
	padding:10px;
}
header .logo img{
	margin-left: 3%;
	width: 35px;
	height: 35px;
}
header img{
	width: 20px;
	height: 20px;
}
header .hnav1{
	width:40%;
}
header .hnav2{
	margin-right: 2%;
}
header .hnav2 img:hover{
	width: 25px;
	height: 25px;
}

main{}
#banner{
	height: 250px;
}
#banner .m1{
	padding-top: 4%;
}
#banner h1{
	font-size:1.6em;
    margin-left: 8%;
}
#banner .hide{
	position:absolute;
    display:block;
	margin-left:80%;
}
#banner .hide .close{
	display:none;
}
#banner .mnav{
    display: flex;
    justify-content: space-between;
}
#banner .mnav{
	margin-top: 12px;
	margin-left: 8%;
}
#banner .icon{
    margin-left:2px;
	display: none;
}
#banner img{
	width: 22px;
	height: 22px;
}
#banner img:hover{
	width:28px;
	height:28px;
}

#contact{
	max-height: 300px;
	padding-left: 10%;
}
#contact h3{
	margin-top: 8%;
	font-size: 1.4em;
}
#contact h4{
	font-size: 1em;
}

fieldset label{
	margin-bottom: 10px;
	font-size: 1em;
}

footer{
	font-size:0.85em;
}
	
}