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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap');

*, *:after, *:before { 
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box; 
	box-sizing:border-box; 
}

.clearfix:before, .clearfix:after { 
	content:" "; 
	display:table; 
}
.clearfix:after { 
	clear:both; 
}

body {
	margin:0;
	font-family:'Montserrat', sans-serif;
}

ul {
	list-style-type:none;
	margin:0;
	padding:0;
}

.full-width {
	width:100%;
	height:32px;
	background:#444444;
	position:fixed;
	z-index:9999;
	top:0;
}

.container {
	margin:0 auto;
	padding:0 10px;
	text-align:center;
}

header {
	margin:0;
	padding:0;
	display:flex;
	justify-content:space-between;
	top:0;
}

.hide-mobile {
	display:none;
}

.logo {
	width:265px;
	height:47px;
	margin-top:22px;
	z-index:9999;
}

.menu {
	width:20px;
	margin-top:10px;
}

nav ul {
	width:150px;
	height:100vh;
	max-height:100%;
	position:fixed;
	text-align:left;
	background:#444444;
	top:0px;
	right:0;
}

nav ul li a {
	width:100%;
	color:#ffffff;
	text-decoration:none;
	display:block;
	padding:10px 25px 10px 25px;
	text-transform:uppercase;
	font-size:14px;
	font-weight:800;
	letter-spacing:5px;
}

.close {
	margin:10px 10px 50px 0;
	text-align:right;
}

.close img {
	width:12px;
	cursor:pointer;
}

.work {
	padding-top:90px;
}
	
.grid {
	width:100%;
	list-style:none;
	margin:0px auto;
	padding:0;
}

.grid li {
	display:block;
	float:left;
	padding:5px;
	width:50%;
	opacity:0;
}

.grid li.shown, .no-js .grid li, .no-cssanimations .grid li {
	opacity:1;
}

.grid li a {
	outline:none;
	border:none;
	display:block;
	max-width:100%;
	/* filter:url(filters.svg#grayscale); Firefox 3.5+ */
    filter:gray; /* IE5+ */
    -webkit-filter:grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition:all .5s ease-in-out; 
}

.grid li a:hover {
	filter:none;
    -webkit-filter:grayscale(0);
    -webkit-transform:scale(1.03);
}

.grid li img {
	outline:none;
	border:4px solid #f7941d;
	display:block;
	max-width:100%;
}
	
.grid.effect-2 li.animate {
	-webkit-transform:translateY(200px);
	transform:translateY(200px);
	-webkit-animation:moveUp 0.65s ease forwards;
	animation:moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
	0% { }
	100% { 
		-webkit-transform:translateY(0);
		opacity: 1; 
	}
}

@keyframes moveUp {
	0% { }
	100% {
		-webkit-transform:translateY(0); 
		transform:translateY(0);
		opacity: 1; 
	}
}

.portrait {
	margin:-122px auto -125px auto;
	width:250px;
	height:250px;
	position:relative;
	z-index:9998;
}
	
.portrait img {
	border:10px solid #ffffff;
	-moz-border-radius:125px;
	-webkit-border-radius:125px;
	border-radius:125px;
}

.about {
	width:100%;
	padding:150px 0 50px 0;
	background:#e9e9e9;
}
	
.about img {
	width:75px;
}
	
.about p {
	width:90%;
	max-width:700px;
	margin:0px auto 25px auto;
	color:#444444;
	font-size:16px;
	line-height:26px;
}
	
.about button {
	width:90%;
	margin:0 auto;
	padding:10px 0px 10px 10px;
	background:none;
	border:4px solid #444444;
	font-size:20px;
	line-height:20px;
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:10px;
	color:#444444;
	transition:all .2s ease-out;
	border-radius:0px !important;
}
	
.about button:hover {
	background:#f7941d;
	border:4px solid #f7941d;
	color:#ffffff;
	cursor:pointer;
}

.contact {
	padding:40px 0px 50px 0px;
	width:100%;
	background:#444444;
}

input {
	height:35px;
}

.contact-input {
	width:90%;
	max-width:650px;
	margin-top:10px;
	padding:0px 7px;
	font-size:16px;
	line-height:26px;
	color:#ffffff;
	border-radius:0px;
	border:none;
	outline:none;
	background-image:linear-gradient(#f7941d, #f7941d), linear-gradient(#555555, #555555);
	background-size:0 4px, auto;
	background-repeat:no-repeat;
	background-position:left bottom;
	transition:all .2s ease-out;
}

.contact-input:hover {
	background-size:100% 4px, auto;
	border-bottom:none;
}

::placeholder {
	font-family:'Montserrat', sans-serif;
	color:#ffffff;
	opacity:1;
	text-transform:uppercase;
	letter-spacing:10px;
	font-weight:800;
	padding:2px 5px 0px 5px;
}

:-ms-input-placeholder {
	font-family:'Montserrat', sans-serif;
	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:10px;
	font-weight:800;
	padding:2px 5px 0px 5px;
}

::-ms-input-placeholder {
	font-family:'Montserrat', sans-serif;
 	color:#ffffff;
	text-transform:uppercase;
	letter-spacing:10px;
	font-weight:800;
	padding:2px 5px 0px 5px;
}

textarea {
   	font-family:inherit;
   	font-size:inherit;
	padding-top:5px !important;
}

form .submit {
	color:#444444;
	font-size:20px;
	line-height:20px;
	font-weight:800;
	letter-spacing:10px;
	text-transform:uppercase;
	border-radius:0px !important;
	border:none;
	background:#ffffff;
	transition:all .2s ease-out;
	padding-left:15px;
	height:45px;
}

form .submit:hover {
	background:#f7941d;
	color:#ffffff;
	cursor:pointer;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
-webkit-appearance:none;
border-radius:0;
}

.contact-info {
	margin-top:15px;
}

.contact-info ul li {
	padding-top:10px;
	font-size:16px;
	line-height:16px;
	letter-spacing:1px;
	font-weight:800;
	color:#ffffff;
}

.contact-info a {
	color:#ffffff;
	text-decoration:none;
	transition:all .2s ease-out;
}

.contact-info a:hover {
	color:#f7941d;
	text-decoration:none;
}



@media only screen and (min-width:768px) {
	
	.logo {
		width:450px;
		height:79px;
		margin-top:15px;
	}
	
	.show-desktop {
		display:block;
	}
	
	.hide-desktop {
		display:none;
	}
	
	nav ul {
		position:inherit;
		width:auto;
		height:auto;
		background:none;
		display:flex;
	}
	
	nav ul li {
		float:left;
		padding-left:10px;
		padding-right:10px;
	}
	
	nav ul li:last-child {
		padding-right:0px;
	}
	
	nav ul li a {
		text-align:right;
		padding:8px 0px 0px 2px;
		font-size:12px;
		background-image:linear-gradient(#f7941d, #f7941d), linear-gradient(#444444, #444444);
		background-size:0 4px, auto;
		background-repeat:no-repeat;
		background-position:center top;
		transition:all .2s ease-out;
	}
	
	nav ul li a:hover {
		background-color:#f7941d;
		background-size:100% 4px, auto;
	}
	
	nav ul li a:active {
		background-color:#f7941d;
		background-size:100% 4px, auto;
	}
	
	.work {
		padding-top:135px;
	}
	
	.grid li {
		width:33.33%;
	}
	
	.about button {
		width:300px;
	}
	
}



@media only screen and (min-width: 1200px) {
	
	.container {
		width:1200px;
		padding:0;
		display:block;
	}
	
	.logo {
		width:500px;
		height:88px;
		margin-top:15px;
	}
	
	.work {
		padding-top:150px;
	}
	
	.grid li {
		width:25%;
	}
	
}