* {
  color: white;
}

body {
	overflow-x: hidden;
}

.overlay {
  position: fixed;
  left: 0px;
  top: 0px;

  opacity: 1;
  transition: .25s;
  background-color: white;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.darkness-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: opacity 0.5s;
}

/* Welcome */
#welcome {
  position: absolute;
  text-align: center;
  top: 50%;
  bottom: 50%;
  width: 100%;
  height: 100%;
}
#welcome h1 {
  font-size: 5vw;
  font-family: 'Lobster', cursive;
}
#welcome .header-background {
  position: absolute;
  min-width: 100%;
  height: 80%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#welcome .welcome-image {
  -webkit-mask-image:
  -webkit-gradient(linear, left 80%, left bottom, from(rgba(0,0,0,1.0)), to(rgba(0,0,0,0)));
  min-width: 100%;
  max-height: 100%;
  opacity: 0.25;
}
#welcome .welcome-header {
  transform: translateY(-50%);
  color: white;
	text-shadow: -4px 4px 0px black, -7px 7px 0px rgba(0, 0, 0, 0.2);
}
#welcome .welcome-header .title {
  color: white;
  text-shadow: 2px -3px white, 0px 0px 20px black;

	-moz-transform: skewX(0deg);
	-ms-transform: skewX(0deg);
	-webkit-transform: skewX(0deg);
	transform: skewX(0deg);
	-moz-animation: shift 4s ease-in-out infinite alternate;
	-webkit-animation: shift 4s ease-in-out infinite alternate;
	animation: shift 4s ease-in-out infinite alternate;
}
/* Top row */
#row-1 {
	position: relative;
  width: 100%;
	z-index: 9;
}
#row-1 .about-container {
  -webkit-mask-image:
	  -webkit-gradient(linear, left 70%, left bottom, from(rgba(0,0,0,1.0)), to(rgba(0,0,0,0)));
	background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)), url('../imgs/on-sign-1.png');
	-webkit-box-shadow: 0px 0px 56px -4px rgba(22,24,31,1);
	-moz-box-shadow: 0px 0px 56px -4px rgba(22,24,31,1);
	box-shadow: 0px 0px 56px -4px rgba(22,24,31,1);
	background-size: cover;
	background-position: center;
	/* padding: 10% 0px; */
	padding-top: 10%;
	padding-bottom: 3%;
}
#row-1 .about-header {
  font-family: 'Abril Fatface', cursive;
  font-size: 6vw;
  margin-bottom: 5vw;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
}
#row-1 h1 {
  font-family: 'Lobster', cursive;
  text-transform: capitalize;
  font-size: 5vw;
}
#row-1 .about-card {
  width: 80%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#row-1 .about-card h1 {
}
#row-1 .about-card p {
  font-size: 1.6vw;
}
#row-1 .about-card .read-more {
  font-family: 'Black Han Sans', sans-serif;
}
#row-1 .current-project-card {
  width: 34%;
  float: right;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('../imgs/ammo-inferno-bg.png');
  background-position: center;
  background-size: cover;
}
#row-1 .current-project-card h4 {
  font-family: 'Lobster', cursive;
  text-transform: capitalize;
}
#row-1 .current-project-card .read-more {
  font-family: 'Black Han Sans', sans-serif;
}
#row-1 .current-project-card:hover {
  transition: 0.3s;
  opacity: 1;
}
#row-1 #clear {
  clear: both;
}
#row-1 .about-container {
	border-top: 1px solid white;
}

/* Traits */
#traits h1 {
  text-align: right;
}
#traits h4 {
  text-align: right;
  font-family: 'Roboto', sans-serif;
}

/* Clients */
#clients h1 {
  text-align: right;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
}
#clients h4 {
  text-align: right;
  font-family: 'Roboto', sans-serif;
}
#clients .client-bar {
	position: relative;
	min-height: 13vh;
  max-height: 18vh;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
  border: 1px solid white;
  border-radius: 5px;
	border-bottom: none;
	border-top: none;
  margin-top: 3vh;
  float: left;
  padding: 2%;
	z-index: 2;
}
#clients .client-bar::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(0, 0, 0, 0.2);
}
#clients .client-bar::-webkit-scrollbar-thumb {
  background-color: white;;
  border-radius: 3px;
}
.client-img-container {
  position: relative;
  width: 33.3333%;
  height: 13vh;
  text-align: center;
  float: left;
  top: 50%;
  bottom: 50%;
  transform: translateY(50%);
  padding-left: 2%;
  padding-right: 2%;
	z-index: 2;
}
#clients .client-img {
  max-height: 100%;
  max-width: 100%;
  opacity: 0.75;
  transform: translateY(-50%);
	z-index: 2;
}
#clients {
	text-align: right;
}

.child-project-desc {
	padding-top: 2.5vw;
}
.child-project-desc p {
  font-size: 1.6vw;
}
.child-project-desc h1 {
	text-transform: uppercase;
}
.child-project-header {
	position: relative;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Righteous', cursive;
	padding: 10px 0px;
	margin-bottom: 30px;
	color: lightgray;
	text-shadow: 5px 5px 0 #000;
}
.child-project-header h1 {
	font-size: 5vw;
	font-family: 'Righteous', cursive;
	text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15);
	color: white;
}
.child-project-header .header-border {
	position: absolute;
	width: 40%;
	height: 0%;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	border-bottom: 4px solid white;
	border-bottom-width: thick;
	border-radius: 200%;
}
.child-project-anchor-container {
	position: relative;
	z-index: 2;
}
.child-project-anchor-container a {
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	z-index: 2;
	transition: 0.3s;
	text-shadow: 5px 5px 0 #000;
	transition-timing-function: cubic-bezier(.4,-0.9,0,1.75);
}

.child-project-desc .child-project-summary-holder {
	position: relative;
	width: 80%;
	left: 50%;
	border-left: 0.5vw solid white;
	border-right: 0.5vw solid white;
	border-width: thick;
	border-radius: 0px;
	transform: translateX(-50%);
	transition: 0.5s;
  transition-timing-function: cubic-bezier(.4,-0.9,0,1.75);
}
.child-project-desc .child-project-summary-holder:hover {
	border-radius: 1vw;
	transform: translateX(-50%) scale(1.025);
	cursor: default;
}

.child-project-desc .child-project-summary {
	text-align: center;
	padding: 3vw 2vw;
	/* background-color: rgba(0, 0, 0, 0.5); */
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0.5) 95%, transparent);
	position: relative;
	z-index: 3;
}
.child-project-halves {
	position: relative;
	z-index: 0;
}
.child-project .child-project-img-holder {
	position: absolute;
	/* top: 0px; */
	left: 50%;
	/* top: 50%; */
	height: 100%;
	width: 100%;
	z-index: 0;
}
.child-project img {
	position: absolute;
	/* top: 0px; */
	left: 50%;
	/* height: 130%; */
	width: auto;
	height: auto;
	width: 75%;
	/* top: 50%; */
	transform: translate(-50%, -30%);
	z-index: 0;
	filter: brightness(0.5);
}

#left-sidebar {
  opacity: 0;
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  margin-left: -100%;
  transition: .7s;
  transition-timing-function: cubic-bezier(.4,-0.5,0,1.2);
  text-align: center;
}
#left-sidebar ::-webkit-scrollbar {
  width: 0px;  /* remove scrollbar space */
  background: transparent;  /* optional: just make scrollbar invisible */
}
#left-sidebar .close-button {
  position: absolute;
  top: .1em;
  left: .5em;
  font-size: 5rem;
}
#left-sidebar .close-button:hover {
  cursor: pointer;
  filter: brightness(0.8);
}
.left-sidebar-background {
  margin-top: -30rem;
  margin-left: -0rem;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 100px black;
  border-right: 5px solid white;
  width: 125%;
  height: 200%;
  transform: rotate(20deg);
  transition: transform .7s ;
}
.left-sidebar-content {
  position: absolute;
  padding: 1vw;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.left-sidebar-header {
  font-family: 'Lobster', cursive;;
  font-size: 4vw;
  text-align: center;
}
.left-sidebar-subheader {
  font-family: 'Black Han Sans', sans-serif;
  text-align: center;
}
.left-sidebar-paragraph {
  font-size: 2rem;
}

@media (max-width: 768px) {
  #row-1 {
    width: auto;
  }
  #row-1 .about-card {
    width: 100%;
    clear: both;
    float: left;
    text-align: center;
  }
  #row-1 .about-card-header {
    text-align: center;;
  }
  #row-1 .about-card p {
    font-size: inherit;
    text-align: center;
  }
  #row-1 .about-header {
    font-size: 9vw;
  }
  #row-1 .current-project-card {
    width: 100%;
    clear: both;
    float: left;
    opacity: 0.9;
  }

	#clients {
		text-align: center;
	}

	.child-project-desc p {
		font-size: inherit;
	}
	.child-project img {
		width: 110%;
	}
	.child-project-desc .child-project-summary-holder {
		width: 100%;
	}

  #welcome h1 {
    font-size: 15vw;
  }
  #welcome h4 {
    font-size: 4vw;
  }
  #welcome .header-background {
    width: 100%;
  }
  .client-img-container {
    width: 50%;
  }
  #left-sidebar {
    width: 100%;
    margin-left: -200%;
  }
  .left-sidebar-background {
    width: 200%;
    margin-left: -50%;
  }
  .left-sidebar-header {
    font-size: 12vw;
  }
}
@media (max-width: 490px) {
  .client-img-container {
    width: 100%;
  }
}
