::selection, ::-moz-selection { 
	background: red;
}

body, html { font-size: 100%; padding: 0; margin: 0;}

body {
 	background:#1D242D url('../images/profile.jpg');
 	background-attachment: fixed;
	background-position: left center;
	background-repeat: no-repeat;
 	background-size: cover;
 	font-family:Calibri, Arial, sans-serif;
    color: #fff;
}

a {
	color: #f0f0f0;
	text-decoration: none;
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none; 
}

button {
	border-radius:0;
	-moz-border-radius:0; 
	outline: none;
	border-width: 0px;
	font-size: 1em;
	background-color: transparent;
}

header {
 	width: 100%;
}

.hide {
	display: none !important;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition:  all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

.dark {
	background:#0F1318 !important;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition:  all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

@-webkit-keyframes gify {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes gify {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes gify {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gify {
	position: relative;
	top: 0;
	left:25%;
	-webkit-animation: 1s gify steps(10) infinite;
	-moz-animation: 1s gify steps(10) infinite;
	animation: 1s gify steps(10) infinite;
}

.main-content {

}

.main-content section {
	position: absolute;
	z-index: 200;
	width: 100%;
	height: 100%;
}

/*.floor1, .floor2, .floor3, .floor4 {
	background: rgba(0,0,0,0.6);
}*/

.floor0 {
	background-image: url('../images/profile.jpg');
	background-attachment: fixed;
	background-position: left center;
	background-repeat: no-repeat;
 	background-size: cover;
}

.floor1 {
	background-image: url('../images/1/1.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.floor2 {
	background-image: url('../images/2/2.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.floor3 {
	background-image: url('../images/3/3.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.floor4 {
	background-image: url('../images/4/4.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.top-navigation {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	text-align: center;
	margin-left:3%;
	margin-right: 3%;
	-webkit-transition: color 0.3s ease-in;
	-moz-transition: color 0.3s ease-in;
	-o-transition: color 0.3s ease-in;
}


.top-navigation > div {
	padding-top:3em;
	display: inline-block;
	text-align: left;
}


.top-navigation span.title {
	display: block;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5em;
	padding: 0 0 0.6em 0.1em;
}

.top-navigation span.title:after {
	content:"Alex + Yohannes";
}

.top-navigation h1 {
	font-size: 2.125em;
	line-height: 1.3;
	margin: 0;
	font-weight: 400;
	color: #fff;
}

.top-navigation nav {
	padding:0.3em 0 0;
	text-align: right;
}

.top-navigation nav button {
	background: transparent;
	font-family:Calibri, Arial, sans-serif;
	font-size: 1.0rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	color: #fff;
	text-transform: uppercase;
	margin-left: 1em;
}

.top-navigation nav button:active, .top-navigation nav button:hover {
	-webkit-transition: color 0.3s ease-in;
	-moz-transition: color 0.3s ease-in;
	-o-transition: color 0.3s ease-in;
	color:#FF9900;
}


.top-navigation nav button:nth-child(1):before {
	content:"(443) 348-8841";
}

.top-navigation nav button:nth-child(2):before {
	content:"Let's Talk";
}

.top-navigation nav span {
    display: inline-block;
	position: relative;
	top:0.2em;
	padding-left:0.4em;
	margin-top: -0.1em;
}

header div.dropped {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition:  all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

header div.dropped > div {
	padding-top:1.6em;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition:  all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

header div.dropped h1 {
	display: none;
	line-height: 0;
}

header nav.dropped ul {
	display: none !important;
}

.bottom-navigation {
	width: 100%;
	position: fixed;
	bottom:0;
	z-index: 100;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	background: rgba(0,0,0,0.6);
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.bottom-navigation ul {
	margin: 0;
	padding: 0;
}

.bottom-navigation li:nth-child(1) {
	display: none;
	line-height: 0;
}

.bottom-navigation li {
	cursor: pointer;
	display: block;
	float: left;
	width: 25%; /* Fallback */
    width: -webkit-calc(100% / 4);
    width: calc(100% / 4);
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none; 
}

.bottom-navigation li:hover, .bottom-navigation li:active {
	background: rgba(0,0,0,0.6);
}

.bottom-navigation li.selected {
	background: #FF9900;
}

button.menu-select {
	background: white;
	color:#00283B;
	border-width: 0px;
	outline: none;
	cursor: pointer;
	padding: 1.30em 0;
	width: 100%;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	z-index: 300;
	display:block;
}

button.menu-select:hover, button.menu-select:active {
	background: #1D242D;
	color: white;
}

button.go-home {
	background: white;
	border-width: 0px;
	outline: none;
	cursor: pointer;
	color:#00283B;
	padding: 1.70em;
	position: relative;
	top: 0 !important;
	left: 0 !important;
	z-index: 300 !important;
}

button.go-home:hover, button.go-home:active {
	background: #AFB9C4;
	color: white;
}

button.view-more {
	background: #FF9900;
	border-width: 0px;
	outline: none;
	cursor: pointer;
	color:#00283B;
	padding: 1.70em;
	position: relative; 
	top: 0 !important;
	right: 0 !important;
	float: right;
	z-index: 300 !important;
}

button.view-more:hover, button.view-more-on {
	background: #AFB9C4;
	color: white;
}

button.visit-work {
	background: white;
	color:#000;
	font-family:Calibri, Arial, sans-serif;
	font-size: 1.0rem;
	font-weight: 800;
	text-align: center;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-width: 0px;
	outline: none;
	cursor: pointer;
	padding: 1.30em 0;
	margin-bottom: 3em;
	margin-top: 1.2em;
	width: 100%;
	display:block;

}

button.visit-work:hover {
	background: #FF9900;
	color: white;
}

.section-menu {
	background: #1D242D;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top:0;
	z-index: 400;
}

.works-container {
	padding-top: 4.64em;
}

.works-container article.unit-33 {
	width: 33.33%; 
}

.works-container article aside {
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
	color:#fff;
	padding:1em 0;
	margin-bottom: 1.4em;
	background: #001018;
	display: block;
}

.works-container article aside span.oi {
	margin-right: 1em;
	position: relative;
	top:0.2em;
}

.modal-window {
	position: absolute;
	top:0;
	left:0 !important;
	z-index: 200;
    overflow: hidden;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.2s ease-in;
	-moz-transition:  all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}

.md-show {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.3s ease-in;
	-moz-transition:  all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

.md-show .visit-work {
	font-size: 100%;
}

.modal-wrap {
	background: #1D242D;
	padding-top: 4.64em;
	-webkit-transition: all 0.3s ease-in;
	-moz-transition:  all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

.modal-content span.project-logo {
	display: block;
	text-align: center;
}

.modal-content ul.project-category {
	background:black;
}

.modal-content ul.project-category li {
	text-align: center;
	color: #006593;
	text-decoration: uppercase;
	margin-top: 1.2em;
	padding-bottom: 0;
	line-height: 0.6em;
}

.modal-content ul.project-category li:nth-child(1):after, .modal-content ul.project-category li:nth-child(2):after {
	content: '+';
	color:white;
	position: relative;
	right:-22.5%;
}


.modal-content hr {
	border-width: 0;
	border-bottom: 1px dotted #AFB9C4;
}



