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

html {
	box-sizing: border-box;
	text-align: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	background-size: cover;
	font-family: 'Nunito', sans-serif;
}

h1 {
	font-family: "abolition";
	font-size: 50px;
	letter-spacing: 10px;
	color: white;
	display: table-cell;
	vertical-align: middle;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
}

h2 {
	font-family: "abolition";
	font-size: 30px;
	letter-spacing: 5px;
	top: 0;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 17px;
}

p {
	font-size: 15px;
}

.row {
	text-align: center;
	margin: 0 5%;
}

.col-2 {
	margin: 0 25%;
	width: 50%;
	text-align: center;
}

.col-3 {
	float: left;
	width: 30%;
	text-align: center;
	margin: 0px 1.5%;
}

header {
	background-color: black;
	position: fixed;
	top: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	z-index: 1000;
}

section {
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	float: left;
	text-align: center;
}

nav {
	height: 80px;
	border-bottom: white solid 1px;
}

nav img {
	float: left;
	height: inherit;
	margin-left: 10px;
}

nav a {
	float: left;
	text-align: center;
	padding: 29px 34px;
	text-decoration: none;
	color: white;
	font-family: "abolition";
	font-size: 20px;
	letter-spacing: 5px;
}

nav a:hover{
	color: #888;
	background-color: #222;
}

.bars, .hidden_nav {
	display: none;
}

.button, .alt_button {
	border: white solid 1px;
	border-radius: 15px;
	width: auto;
	padding: 3px;
	margin: 10% 40%;
	cursor: pointer;
}

.button::before {
	content: "More"
}

.button:hover, .alt_button:hover {
	opacity: 60%;
}

.alt_button::before {
	content: "Less"
}

.hero {
	background-image: url("images/hero-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position:top;
	height: 600px;
	text-align: center;
	display: table;
	top: 70px;
}

.services {
	background-color: black;
	color: white;
}

.services img {
	width: 70%;
	margin: 20px;
}


.hidden {
	display: none;
	margin-bottom: 20px;
}

.hidden li {
	text-align: left;
	margin-left: 60px;
}

.hidden p {
	margin: 20px 60px;
}

#hidden3 img {
	width: 20%;
	float: left;
	margin: 0px 20px 20px;
}

.about p, .hidden p {
	text-align: justify;
}

.about img {
	width: 30%;
	margin: 0% 1% 0% 1%;
}

.contact {
	background-color: black;
	color: white;
	padding: 30px 0px;
}

.contact p {
	text-align: left;
}

.contact-info {
	text-align: center;
	margin-left: 40%
}

/* Mobile Devices */
@media (max-width:960px) {
	
	nav {
		height: 50px;
	}
	
	nav a {
		display: none;
	}
	
	.bars {
		display: block;
	}
	
	.bars a{
		display: block;
		width: 10%;
		float: right;
		color: white;
		cursor: pointer;
		padding: 14px;
	}
	
	.bars a:hover {
		color: #888;
		background-color: #222;
	}
	
	h1 {
		font-size: 35px;
	}
	
	h2 {
		font-size: 20px;
	}
	
	h3 {
		font-size: 15px;
		text-decoration: underline;
	}
	
	h4 {
		font-size: 12px;
	}
	
	p, li, .about p, .contact p {
		font-size: 12px;
	}
	
	#but1, #but2, #but3 {
		font-size: 13px;
	}
	
	.row {
		margin: 0 0.5%
	}
	
	.col-2 {
		width: 90%;
		margin: 0 5%
	}
	
	.hero {
		top: 50px;
		height: 410px;
	}
	
	.services img, .hidden img, .about img {
		display: none;
	}
	
	.button, .services h3, .services h4 {
		display: none;
	}
	
	.hidden, .hidden h3 {
		display: block;
	}
	
	.contact-info {
		margin-left: 35%;
	}
}