/* General Styles
--------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}


/* Images */
.responsive {
	max-width: 100%;
	height: auto;
}


/* Helper Classes
--------------------------------------------- */
.clearfix {
	display: block;
	clear: both;
}


/* Typography
--------------------------------------------- */
body {
	font-size:18px;
	line-height: 32px;
	color: #333;
	word-wrap: break-word !important;
	font-family: 'Open Sans', sans-serif;
}

p {
	margin: 0 0 24px;
	margin: 0 0 2.4rem;
	padding: 0;
}


/* Links
--------------------------------------------- */
a {
	text-decoration: none;
	color: #FF5722;
}

a:hover {
	text-decoration: underline; 
	color: #E64A19;
}


/* Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
	font-family: "Roboto Slab", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}


/* Sections
--------------------------------------------- */
#container{
	margin: 0 auto;
	/*max-width: 1200px;*/
	width: 100%
}


/* Header
--------------------------------------------- */
header {
	/*width: 94%;
	padding: 3%;*/
	padding: 2% 3% 1.5% 6%;
	width: 100%;
	background-color: #FF5722;
}

header #title {
	font-size: 50px;
	padding-top: 5px;
	color: #fff;
}


/* Navigation
--------------------------------------------- */
nav {
	/*width: 97%;*/
	width: 100%;
	background-color: #E64A19;
	padding: 0 1.5% 0 5%;
    transition: all 0.5s ease;
}

nav ul li {
	display: inline-block;
	padding: 15px 1.5% 15px 1.5%;
}

nav ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 1.2em;
}

nav ul li a:hover {
	color: #000000;
	text-decoration: none;
}

nav .sidenav {
	display: none;
}

nav span {
	display: none !important;
}

#navbar {
  overflow: hidden;
  background-color: #e64a19;
  transition: all 0.5s ease;
}

#navbar a {
  float: left;
  display: block;
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.2em;
}
 
#navbar a:hover {
  color: silver;
}


/* Content
--------------------------------------------- */
#content {
	float: left;
	/*padding: 3%;
	width: 64%;*/
	padding: 6%;
	width: 60%;
}


/* Sidebar
--------------------------------------------- */
aside {
	float: right;
	/*padding: 3%;
	width: 24%;*/
	padding: 6% 5%;
	width: 18%;
	background-color: #eee;
}


/* Footer
--------------------------------------------- */
footer{
	/*width: 94%;*/
	padding: 3% 3% .25% 6%;
	width: 100%;
	background-color: #FF5722;
	border-top: 5px solid #E64A19;
	color: #fff;
}


/* Social Icon Bar */
.icon-bar {
  position: fixed;
  bottom: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #efefef;
  color: #e54d26;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 12px;
  transition: all 0.3s ease;
  color: #e54d26;
  font-size: 23px;
}

.icon-bar a:hover {
    color: #0070ba;
}


/* Scroll to Top Button  */
#toTop {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 48px;
  transition: all 0.5s ease-in-out .0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease 0s;
  opacity: 0.5;
  display: none;
  cursor: pointer;
}

#toTop:hover {
  opacity: 1;
}


/* Media Queries
--------------------------------------------- */
@media all and (max-width : 991px) {

#container {
	width: 100%;
}

.responsive {
	margin-left: 5%;
}	
 
nav ul {
	display: none;
}

nav {
	padding-top: 1em;
	padding-bottom: 1em;
    transition: all 0.5s ease;
}

nav .sidenav {
	display: block;
}

nav span {
	display: inline !important;
	padding-left: 7%;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #e64a19;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

#navbar .sidenav a {
  float: none;
  display: block;
  color: #fff;
  text-align: left;
  text-decoration: none;
  font-size: 1.5em;
  z-index: 99;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 46px;
    margin-left: 50px;
} 

header #title {
	padding-left: 5%;
}

h2 {
	padding-left: 5%;
}

#content {
	width: 100%;
}

#content p {
	padding-right: 10%;
	padding-left: 5%
}

#sidebar {
	width: 100%;
}

#sidebar h3 {
	padding-left: 16%;
	padding-right: 5%;
	padding-top: 15px;
}

#sidebar p {
	padding-left: 16%;
	padding-right: 5%
}

.img-emblem {
	margin-left: 16%;
}

footer p {
	padding-top: 1%;
	padding-left: 4.5%;
}

.icon-bar {
  bottom: 25%;
}

}

@media all and (max-width : 700px) {
	
.responsive {
	max-width: 80%;
}	
	
}	


@media all and (max-width : 460px) {

header #title {
	font-size: 40px;
	padding-top: 7px;
}

h2 {
	font-size: 22px;
	padding-top: 15px;
}

h3 {
	font-size: 20px;
}

footer {
	font-size: 15px;
}

.icon-bar {
	visibility: hidden;
}

}


/* Sidenav Height on Mobile */
@media all and (max-height: 450px) {
	
.sidenav {
	padding-top: 35px;
}

.sidenav a {
	font-size: 20px;
}

}


@media all and (max-width : 340px) {

header #title {
	font-size: 30px;
}

h2 {
	font-size: 20px;
}

}



