@charset "utf-8";
/* CSS Document */
html,body {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	text-align: center;
}

* {
	box-sizing: border-box;
}

header {
	width: 100%;
	position: fixed;
	justify-content: center;
	padding: 0;
	margin: 0;
	z-index: 1;
}

nav {
	width: 100%;
	background: black;
	display: flex;
	padding: 0;
	justify-content: center;
	text-align: right;
}

nav ul {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: right;
	display: inline-block;
}

nav ul li {
	list-style: none;
	display: inline-block;
	padding: 20px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	padding: 0;
}

nav ul li a:hover {
	color: #808080;	
}

.toggle {
	width: 100%;
	padding: 10px 20px;
	background: black;
	text-align: right;
	box-sizing: border-box;
	color: white;
	font-size: 30px;
	display: none;
}

@media screen and (max-width: 700px) {
	.toggle {
		display: block;
		position: absolute;
	}
	nav ul {
		width: 100%;
		display: none;
	}
	nav ul li {
		display: block;
		text-align: right;
	}
	.active {
		display: block;
	}
}

.hero {
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0,0,0,0.25),rgba(0,0,0,0.25)),url("../images/home-hero.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0;
	margin: 0;
}

.hero h1 {
	font-size: 75px;
	margin: auto;
	color: white;
}

.hero h5{
	font-size: 20px;
	margin-bottom: auto;
	color: #C0C0C0;
}



.anchor::before {
  content:"";
  display:block;
  height:100px; /* fixed header height*/
  margin:-100px 0 0; /* negative fixed header height */
}

.about {
	width: 100%;
}

.about h2 {
	font-size: 30px;
}

.about h3 {
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	color: #303030;
}

.about p {
	font-family: 'Roboto Slab', serif;
	font-size: 15px;
	text-align: left;
	color:#303030;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow-x: hidden;
}

.about-section {
	width: 40%;
	margin: 10px;
	margin-top: 0px;
	padding: 20px;
	padding-top: 0px;
	padding-bottom: 50px;
	overflow-x: hidden;
}

.about-header {
	margin-top: 50px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	
	animation-duration: 1s;
	animation-name: fadein;
}

.about-text {
	width: 85%;
	float: right;
}

.about-icon-title {
	width: 10%;
	float: left;
	padding-top: 10px;
}

.about-icon-title img {
	display: flex;
	width: 100%;
	min-width: 30px;
}

@media screen and (max-width: 700px) {
	.about-section {
		width: 80%;
	}
}

.work {
	max-width: 100%;
	background: black;
	overflow: hidden;
}

.work h2 {
	font-size: 30px;
	color: white;
}

.work-header {
	padding: 20px;
}

.work-row {
	display: flex;
	flex-wrap: wrap;
}

.work-column {
	flex: 33.33%;
	max-width: 33.33%;
}

.work-column img {
	display: block;
	vertical-align: middle;
	width: 100%;
}

@media screen and (max-width: 700px) {
	.work-column {
		flex: 100%;
		max-width: 100%; 
	}
}

.overlay-container {
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #0005FF;
}

.overlay-container:hover .overlay {
	opacity: .5;
}

.overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
  	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%,-50%);
	text-align: center;
	vertical-align: middle;
	opacity: 0;
	transition: .5s ease;
	color: white;
	font-size: 40px;
}

.overlay-container:hover .overlay-text {
	opacity: 1;
}

.overlay-container:hover .work-pic {
	transform: scale(1.25);
}

.work-more-work {
	width: 100%;
	padding: 40px;
}

a.more-work-link {
	font-size: 30px;
	text-align: center;
	text-decoration: none;
	color: white;
}

a.more-work-link:hover {
	color: #0000FF;
	text-decoration: none;
}

.contact {
	padding: 50px;
	margin: auto;
	background-color: #E8E8E8
	position: relative;
	z-index: 0;
}


.contact h2 {
	font-size: 40px;
}

.contact p {
	font-family: 'Roboto Slab', serif;
}

#footer {
	background-color: black;
	height: 100%;
	padding-top: 0;
}

.footer-container {
	padding: 5px;
	width: 98%;
}

.social-links {
	align-content: center;
	margin: auto;
}

.social-links li {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
	transform: translate(-10px,0);
}

.social-img {
	margin: 10px;
	width: 20px;
	height: auto;
}

.fb-img {
	margin-left: 5px;
}

.copyright {
	font-size: 15px;
	color: gray;
	font-family: 'Roboto Slab', serif;
	text-align: center;
	margin: 0;
	padding: 0;
}

