/*////////////////////////////////////////////
//// BEGIN: Landing Page
////////////////////////////////////////////*/
.page-landing .section-container {
	position: relative;
}

.page-landing .intro {
	position: relative;
    width: 63.7%;
    flex-basis: 63.7%;
    flex-grow: 1;
	height: 100vh;
	padding: 5%;
}

.page-landing .intro .intro-container {
	position: absolute;
	left: 5%;
	bottom: 10%;
}

.page-landing .intro .intro-container .logo {
	width: 15%;
}

.page-landing .intro h1 {
	margin: 10% 0 15%;
	font-size: 81px;
	line-height: 79px;
}

.page-landing .intro p {
	width: 425px;
	max-width: 95%;
	font-size: 21px;
	line-height: 33px;
}

.page-landing .intro .slogans {
	display: block;
	min-height: 70px;
}

.page-landing .intro .slogans .slogan {
	display: none;
}

.page-landing .intro .slogans .slogan:first-child {
    display: block;
}

.page-landing .featured-work {
	display: none;
	
    flex-basis: 36.3%;
    max-width: 441px;
	height: 100vh;	
	overflow: hidden;
	z-index: 1;
}

.page-landing .featured-work ul {
	flex-direction: column;
	flex-wrap: nowrap;
    height: 100%;
    border-left: 1px solid #B5B5B5;
}

.page-landing .featured-work li.tile {
	position: relative;
	width: 100%;
	flex-basis: 33.333333%;
	height: 33.333333%;
	padding: 33px;
	border: 0;
	overflow: visible;
}

.page-landing .featured-work .counter li.tile:before {
	margin: 4% 5% 4% 0;
}	

.page-landing .featured-work li.tile .hover {
	opacity: 1;
}

/*
@keyframes default-landing-hover-image-animation {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes default-landing-static-image-animation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes hover-landing-hover-image-animation {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0%);
	}
}

@keyframes hover-landing-static-image-animation {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.page-landing .featured-work li.tile .hover {
	animation-name: default-landing-hover-image-animation;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

.page-landing .featured-work li.tile .static {
	animation-name: default-landing-static-image-animation;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

.page-landing .featured-work li.tile:hover .hover {
	animation-name: hover-landing-hover-image-animation;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

.page-landing .featured-work hover-li.tile:hover .static {
	animation-name: landing-static-image-animation;
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
*/

.page-landing .featured-work li.center {
	border-top: 1px solid #B5B5B5;
	border-bottom: 1px solid #B5B5B5;
}

.page-landing .featured-work li.tile img {
	height: 100%;
}

.page-landing .featured-work li h2 {
	font-size: 39px;
	line-height: 42px;
}

.page-landing .featured-work li .client {
	position: absolute;
	bottom: 10%;
	margin-bottom: 0;
}

/*////////////////////////////////////////////
//// BEGIN: Media Queries
////////////////////////////////////////////*/
/* BEGIN: Menu Fix */
@media only screen and (max-height: 720px) {
	
	body.page-landing.desktop .featured-work li .client {
		right: 5%;
	}
}

/* BEGIN: Landing */
@media only screen and (max-width: 1100px) {
	.page-landing .featured-work {
		max-width: 356px;
	}
}

/* BEGIN: Landing */
@media only screen and (max-width: 1000px) {
	.page-landing .featured-work {
		position: relative;
		width: 100%;
		height: auto;
		max-width: none;
	}
}

/* BEGIN: Landing */
@media only screen and (max-width: 960px) {

	.page-landing .section-container {
	}

	.page-landing .intro,
	.page-landing .featured-work {
		position: relative;
		width: 100%;
		flex-basis: 100%;
    }
    
    .page-landing .intro:after {
		content: '.';
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}
	
	.page-landing .featured-work li.tile {
		height: 50vw;
		max-height: none;
	}
	
	.tiles .counter li.tile .tile-images img.background {
		max-width: 70%;
	}
}

/* BEGIN: iPad Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
	
	.page-landing .featured-work li h2,
	.tiles li.tile .work-title h2 {
		font-size: 25px;
		line-height: 30px;
	}
	
	.page-landing .featured-work li.tile {
		height: 33.333333%;
		padding: 15px 33px;
	}
}

/* BEGIN: Mobile + iPad: Portrait */
@media only screen and (max-width: 767px),
(min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
	
	/* BEGIN: Landing */
	.page-landing .intro {
		width: 100%;
		height: auto;
		padding: 15% 5%;
	}
	
	.page-landing .intro .intro-container {
		position: relative;
		left: auto;
	}

	.page-landing .intro h1 {
		font-size: 48px;
		line-height: 54px;
		margin: 10% 0 5%;
	}
	
	.page-landing .featured-work li.tile {
	    height: 85vw;
	    padding: 33px 5%;
	}
	
	.page-landing .featured-work li:first-child {
		border-top: 1px solid #B5B5B5;
	}
}

/* BEGIN: Mobile Landscape */
@media only screen and (max-device-width: 767px) and (orientation: landscape),
(max-width: 767px) and (orientation: landscape) {

	.page-landing .intro {
		padding: 5%;
	}
	
	.page-landing .intro .intro-container .logo {
		width: 10%;
		margin: 0 10% 15% 0;
		float: left;
	}
	
	.page-landing .featured-work {
		height: auto;
	}
}
/* FIN */