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

@font-face {
    font-family: 'Telegraphem';
    font-style: normal;
    font-weight: normal;
    src: local('Telegraphem'), url("fonts/Telegraphem.woff") format('woff');
    }

@font-face {
 	font-family: 'Merriweather';
 	font-style: normal;
 	font-weight: 300;
	src: url("fonts/merriweather-v28-latin-regular.woff") ;
	}

@font-face {
 	font-family: 'Butler';
 	font-style: normal;
 	font-weight: 200;
	src: url("fonts/Butler.woff") ;
	}

@font-face {
 	font-family: 'Jost';
 	font-style: normal;
	src: url("fonts/jost-v12-latin-200.woff") ;
	}

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Jost';
}

.page-container {
  position: relative;
  min-height: 100vh;
}

.content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

footer {
  	position: absolute;
  	bottom: 0;
  	width: 100%;
  	height: 2.5rem;            /* Footer height */
	text-align: center;

}


body {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	display: block;

}

header {
	padding: 8px;
}	



a:link {
  	text-decoration: none;
	color: black;
	font-weight: 300;
}

a:visited {
  	text-decoration: none;
	color: black;
}

a:hover {
  	text-decoration: none;
  	color: #313131
}

a:active {
  	text-decoration: none;
	color: black;
}


p {
	font-size: 15px;
}

h1 {
	text-transform: uppercase;
	font-family: 'Butler';
	font-size: 18px;
	margin-bottom: 23px;
	margin-top: 23px;
	text-align: center;
}	

h2{
	font-family: 'Butler';
	font-size: 18px;
	
}
h3{
	font-family: 'Jost';
	font-size: 18px;
	padding-top: 5px;
	
	
}

h5{
	font-family: 'Jost';
	font-size: 15px;
	padding-top: 60px;
	
}

img{
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	padding: 7px;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 200px;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #333333;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 2px;
	font-family: 'Butler';
	
}
.style-img {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 400px;
	padding: 7px;
	
}
.style-link{
	list-style-type: none;
	text-decoration: none;
}

.col {
	width: 100%;
	padding: 5px;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}

/*Tablet View*/

@media (min-width: 768px){
	body {
	max-width: 600px;

}
	
	footer {
	max-width: 600px;

}
	.style-nav ul li {
		display: inline-block;
	}
	.style-nav ul {
		text-align: center;
	}
	.style-img {
		width: 600px;
		padding: 7px;
	}

	.col-md-one-half {
		width: 50%;
	}
	
	.col{
		float: left;
		padding: 0px 7px 14px;
	}
}


/*Desktop View*/

@media (min-width: 1024px){
	
	body {
	max-width: 800px;

}
	
	footer {
		max-width: 800px;
	}	
	
	
	.style-logo {
		
	}
	.style-nav ul li {
		display: inline-block;
	}
	.style-nav ul {
		text-align: center;
	}
	.style-img {
		width: 800px;
		padding: 7px;
	}
	
		.col-md-one-half {
		width: 50%;
	}
	
	.col{
		float: left;
		padding: 0px 7px 14px;
	}
}





