html, body {
        background: #fff;
        font-family: "Open Sans", arial;
        color: #333;
        -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
        -webkit-text-size-adjust: 100%;
        height: 100%;
        font-size: 16px;
        font-weight: 400;
        line-height: 32px;
}
.header {
		background: url("/img/header.jpg") #222;
		background-size: cover;
		background-position: bottom;
		background-attachment: fixed;
		width: 100%;
		height: 700px;
		position: relative;
}
.logo {
		position: absolute;
		top: 300px;
		width: 100%;
		text-align: center;
		color: #fff;
		letter-spacing: 2px;
		font-size: 40px;
}
.logo .image {
	margin-bottom: 10px;
}
.logo .image img {
	transition: 800ms;
}
.logo .image img:hover {
    -webkit-filter: hue-rotate(165deg); /* Chrome, Safari, Opera */
    filter: contrast(25deg);
}
.logo .tag {
		font-size: 25px;
		font-weight: 100;
		letter-spacing: 7px;
		margin-top: 10px;
}
.scroll-down {
	width: 40px;
	height: 40px;
	background: #fff;
	transform: rotate(45deg);
	text-align: center;
	position: relative;
	font-size: 20px;
	transition: 200ms;
}
.scroll-down:hover {
	border-radius: 50%;
}
.scroll-icon {
	position: absolute;
	color: #333;
	transform: rotate(-45deg);
	display: block;
	left: 11px;
	top: 11px;
	transition: 200ms;
}
.scroll-down:hover .scroll-icon {
	transform: rotate(-135deg);
}
.portfolio-box {
	position: relative;
	overflow: hidden;
}
.portfolio-image {
	display: block;
	transition: 300ms;
}
.portfolio-box:hover .portfolio-image {
	-webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
    filter: grayscale(100%);
}
.portfolio-image img {
	width: 100%;
}
.portfolio-screen {
	position: absolute;
	left: 0px;
	top: 0px;
	background: rgba(0,0,0,0.0);
	transition: 200ms;
	top: 25%;
	width: 50%;
	height: 50%;
	left: 25%;
	transform: rotate(15deg);
}
.portfolio-box:hover .portfolio-screen {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	transform: rotate(0deg);
}
.portfolio-text-box {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
}
.portfolio-title {
	position: relative;
	top: 20px;
	left: 0px;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	opacity: 0;
	transition: 220ms;
	margin-left: -100px;
	margin-bottom: 20px;
}
.portfolio-box:hover .portfolio-title {
	opacity: 1;
	margin-left: 0px;
}
.portfolio-tags {
	position: relative;
	left: 0px;
	color: #2cc8bf;
	padding-left: 3%;
	padding-right: 3%;
	width: 94%;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	opacity: 0;
	transition: 220ms;
	margin-left: 300px;
	margin-bottom: 10px;
}
.portfolio-box:hover .portfolio-tags {
	opacity: 1;
	margin-left: 0px;
}
.portfolio-text {
	position: relative;
	left: 10%;
	width: 80%;
	color: #aaa;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 23px;
	opacity: 0;
	transition: 220ms;
	margin-top: 300px;
}
.portfolio-box:hover .portfolio-text {
	opacity: 1;
	margin-top: 0px;
}
.portfolio-visit {
	position: absolute;
	bottom: -50px;
	left: 0px;
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 23px;
	opacity: 0;
	transition: 220ms;
	margin-top: 300px;
	background: rgba(0,0,0,0);
}
.portfolio-box:hover .portfolio-visit {
	opacity: 1;
	bottom: 0px;
	margin-top: 0px;
	background: rgba(0,0,0,0.8);
}
.portfolio-box:hover .portfolio-visit:hover {
	opacity: 1;
	margin-top: 0px;
	padding: 30px;
	background: #2cc8bf;
}

.scroll-fade {
	transition: 400ms;
	opacity: 0 !important;
}
.scroll-fade.fade2 {
	transition: 800ms;
}
.scroll-fade.fade3 {
	transition: 1200ms;
}
.scroll-in {
	opacity: 1 !important;
}
.link-button {
	background: #28a5af;
	display: inline-block;
	padding: 6px;
	border-radius: 2px;
	font-weight: 600;
	letter-spacing: 2px;
	font-size: 14px;
	padding-left: 50px;
	padding-right: 50px;
	color: #fff;
	transition: 200ms;
	position: relative;
}	
.link-button .fa {
	position: absolute;
	left: 0px;
	top: 15px;
	opacity: 0;
	transition: 300ms;
}
.link-button:hover .fa {
	left: 35px;
	opacity: 1;
}
.link-button:hover {
	background: #218b94;
	border-radius: 50px;
	padding-left: 60px;
	padding-right: 40px;
}
.mail-sending .fa {
	left: 35px;
	opacity: 1;
}
.mail-sending {
	background: #218b94;
	border-radius: 50px;
	padding-left: 60px;
	padding-right: 40px;
}
.email2 {
	display: none;
}
.load {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 400;
}
.load-error {
	background: #ed3b4b;
	padding: 7px;
	color: #fff;
}
.load-success {
	background: #33d1b9;
	padding: 7px;
	color: #fff;
}
.load-submit {
	background: #28a5af;
	padding: 7px;
	color: #fff;
}
.spotlight {
	position: absolute; 
	left: 0px; 
	top: 0px; 
	width: 100%; 
	height: 400px; 
	background: url('/img/spotlight.jpg') #333; 
	background-size: cover;
	background-attachment: fixed;
}
	
    /* Smaller than standard 960 (devices and browsers) */
    @media only screen and (max-width: 959px) {
       
    }

    /* Tablet Portrait size to standard 960 (devices and browsers) */
    @media only screen and (min-width: 768px) and (max-width: 959px) {

       
    }

    /* All Mobile Sizes (devices and browser) */
    @media only screen and (max-width: 767px) {
        .mobile-only { display: block; }
        .desktop-only { display: none !important; }
        

    }

    /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
    @media only screen and (min-width: 480px) and (max-width: 767px) {

        
    }

    /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
    @media only screen and (max-width: 479px) {
        
    }
