@charset "utf-8";
/* CSS Document */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
	margin: 0;
	height: 100%;
	background-color: #5e92ce;
	font-size: 1.15em;
	line-height: 1.15em;
}
#wrap {
  	width: 100%;
	max-width: 950px;
	min-height: 100%;
    margin: 0 auto -92px auto; 
	padding: 4em 1em 1em 1em;
	background-color:white;
	border-right: none;
	border-left: none;
}
#wrap:after {
  content: "";
  display: block;
}
#footer, #wrap:after {
	height: 92px; /* must be the same height as footer */
}
#footer {
  background: #5e92ce;
}
.header {
  background-color: #a3c5ec;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}
.header img {
	margin-top: .2em;
	width: auto;
	height: 25px;
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: transparent;
	border-left: none;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: none;
  text-decoration: none;
}
.header li a:hover,
.header .menu-btn:hover {
  background-color: rgb(94,146,206,.5);
	color: white;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}
	
/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
.header {font-size: .85em;}

.small {display:none;}
.main-img {width: 100%;}
.contact {
	border: 2px dashed #5f92ce;
	border-radius: 5px;
	padding: .5em;
	font-size: .75em;
	text-align: center;
	background-color: #e1e1e1;
	line-height: 2em;
}
.contact strong {font-size: 1.5em;}
address {
	position: relative;
	margin-top: 1em;
	font-size: .75em;
	text-align: center;
}
.CM {
	width: 100%;
	margin: 2em 0 0 0;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	background-color: rgba(255,255,255,0.1);
	text-align: center;
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 0.75em;
}
.CM img {
	position: relative;
	top: .4em;
	border:0
}
.CM a {
	color: white;
	text-decoration: none;
}
@media (min-width: 850px) {
	.header ul {border-left: 1px solid #f4f4f4;}  
	.header li {
		float: left;
	  }
	  .header li a {
		padding: 20px 30px;
		border-right:1px solid #f4f4f4;
	  }
	  .header .menu {
		clear: none;
		float: right;
		max-height: none;
	  }
	  .header .menu-icon {
		display: none;
	  }
	.small {
		display: inline-block;
		font-size: 0.75em;
	}
	#wrap {
		width: 90%;
		padding: 5em 2em 2em 2em;
		border-right: 2px solid #477dbb;
		border-left: 2px solid #477dbb;
	}
}

