@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Poppins:400,600');

* {
	padding:0;
	margin:0;
    box-sizing: border-box;
}
html,body {
	font-family:'Poppins', sans-serif;
	font-size:18px;
	color:#1b2838;
	background-color:#fff;
    height:100%;
	min-height:100%;
    max-height:100%;
    max-width:100%;
    overflow-x:hidden;
}
h1 {
	font-size:2rem;
	line-height:2rem;
	margin:20px 0;
}
h2 {
	font-size:1.4rem;
	line-height:1.4rem;
	margin-top:15px;
}
h2 a {
	color:#1b2838;
	text-decoration:none;
	font-weight:600;
	box-shadow: inset 0 -5px 0 #ff9000;
    border-bottom-color: rgba(255,144,0,1);
	transition: box-shadow .15s cubic-bezier(.33,.66,.66,1),border-bottom .15s cubic-bezier(.33,.66,.66,1);
}
h2 a:hover {
	box-shadow: inset 0 -5px 0 #226688;
    border-bottom-color: #226688;
}
p {
	font-size:1rem;
	line-height:1.2rem;
}
#container {
	margin:0 auto;
	width:100%;
	max-width:1440px;
	text-align:center;
}
#logo {
	margin:0 auto;
	width:100%;
	background:#1b2838;
	text-align:center;
	padding:10px;
}
#logo img {
	width:100%;
	max-width:750px;
	height:auto;
}
#contact {
	margin-top:40px;
}
#portfolio {
	margin-top:50px;
}
#slides {
	margin:25px;
}
@media screen and (max-width: 540px) {

h1 {
	font-size:1.6rem;
}
h2 {
	font-size:1rem;
}
p {
	font-size:0.8rem;
}	
}