@charset "UTF-8";
/* CSS Document */
html {
	height: 100%;
}
body {
	padding:0;
	margin:0;
	text-align:center;
	height: 100%;
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
	letter-spacing: -0.008em;
	}
h1{
	font-family: 'Work Sans', sans-serif;
	font-size: 45px;
	line-height:160%;
	font-weight: 300;
	text-shadow: 0px 0px 25px rgba(0,0,0,0.1);
	color: #4a4249;
}	
h2{
	font-family: 'Pacifico', cursive;
	margin: 0 0 10px 0;
	font-weight: 400;
	font-size: 45px;
	color: #535863;
	}
h3{
	font-family: 'Work Sans', sans-serif;
	font-size: 22px;
	color: #696969;
	line-height:140%;
	margin: 0 0 5px 0;
	font-weight: 400;
	}
h4{
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	color: #635c62;
	line-height:150%;
	margin: 0 auto 20px auto;
	font-weight: 400;
	width: 70%;
	padding-bottom: 20px;
	}	
ul {
	margin:0;
}		
p, ul li{
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	color: #635c62;
	line-height:140%;
	margin: 0;
	font-weight: 400;
}
strong {
	font-weight: 600;
}

/* -------------------------------------------- Header -------------------------------------------- */
.header {
	max-width: 1024px;
    width:80%;
    height: auto;
    margin: 0 auto;
    display: block;
    clear: both;
    box-sizing: border-box;
    position: relative;
    z-index: 999;
}
.logo{
	margin:0px auto;
	text-align:left;
	display: inline-block;
	float: left;
	}	
	
.logo img {
	transition: all 1s ease-in-out;
	-webkit-transition: -webkit-transform 1s ease-in-out;
	width: 70px;
	height: auto;
	}	

.logo img:hover {
	transform:rotateY(360deg);
	-webkit-transform:rotateY(360deg);
	-moz-transform:rotateY(360deg);
	-ms-transform:rotateY(360deg);
	-0-transform:rotateY(360deg);
}
.nav {
	display: inline-block;
	padding: 0;
	vertical-align: top;
    padding: 32px 0 0 0;
    width: 100%;
}
.nav ul {
	padding: 20px 0 0 0;
	margin: 0;
	text-align: right;
}
.nav ul li {
	list-style: none;
	display: inline-block;
	font-family: 'Work Sans', sans-serif;
	margin: 0 0 0 20px;
	font-size: 1.1em;
	font-weight: 400;
}
.nav ul li a{
	color: rgba(255,255,255,1);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 0px 0 5px 0;
    position: relative;
}
.nav ul li a:before {
	content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}
.nav ul li a:hover{
	color: rgba(255,255,255,0.7);
}
.nav ul li a:hover:before{
	visibility: visible;
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.nav.grey  ul li a {
	color: #898b92;
}
.nav.grey ul li a:before {
	background: #898b92;
}
.nav.grey ul li a:hover {
	background: transparent;
}

/* -------------------------------------------- Content Wrappers + Containers -------------------------------------------- */

section {
	padding:50px;
	max-width: 1024px;
	height: 100%;
	margin: 0 auto;
}
.main {
	max-width:1366px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	transform: skewY(8deg);
	display: block;
}
#container {
	max-width:1024px;
	width:80%;
	margin:0px auto;
}
.wrapper-grey {
	margin: -160px auto;
	background: #f8f8f8;
	width: 100%;
	display: block;
	clear: both;
	transform: skewY(-8deg);
}
.wrapper-white {
	margin: 0 auto;
	background: #fff;
	height: 100%;
	width: 100%;
	display: block;
	clear: both;
	transform: skewY(-8deg);
}
.wrapper-noskew {
	margin: 200px auto 0 auto;
	padding: 100px 0px;
	width: 100%;
	display: block;
	clear: both;
	transform: skewY(0deg);
}
.wrapper-color {
	margin: -160 auto;
	float:left;
	width: 100%;
	display: block;
	clear: both;
	transform: skewY(-8deg);
	background: #e21342; 
	background: -moz-linear-gradient(135deg, #e21342 0%,#ffdc5c 100%); 
	background: -webkit-linear-gradient(135deg, #e21342 0%,#ffdc5c 100%); 
	background: linear-gradient(135deg, #e21342 0%,#ffdc5c 100%);
}
.wrapper-noskew .main {
	transform: skewY(0deg);
}	

/* -------------------------------------------- Landing -------------------------------------------- */

.landing {
    height: 100%;
    min-height: 900px;
    width: 100%;
    margin: -150px 0 0 0;
    z-index: 0;
    position: relative;
	background: linear-gradient(324deg, #F75141, #801562);
	background-size: 400% 400%;
	-webkit-animation: GradientAnimation 16s ease infinite;
	-moz-animation: GradientAnimation 16s ease infinite;
	-o-animation: GradientAnimation 16s ease infinite;
	animation: GradientAnimation 16s ease infinite;
	}
	@-webkit-keyframes GradientAnimation {
	    0%{background-position:55% 0%}
	    50%{background-position:46% 100%}
	    100%{background-position:55% 0%}
	}
	@-moz-keyframes GradientAnimation {
	    0%{background-position:55% 0%}
	    50%{background-position:46% 100%}
	    100%{background-position:55% 0%}
	}
	@-o-keyframes GradientAnimation {
	    0%{background-position:55% 0%}
	    50%{background-position:46% 100%}
	    100%{background-position:55% 0%}
	}

.landing h1 {
	color: #fff;
	line-height: 120%;
}
.landing p {
	font-size: 38px;	
	color: #fff;
	font-family: 'Work Sans', sans-serif;
	font-weight: 300;
}
.landing h1 span {
	font-family: 'Pacifico', cursive;
}
.landing .text {
	width: 700px;
	text-align: left;
	padding: 0px;
}
.landing .block {
	min-height: 900px;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 0;
    display: table;
    position: relative;
}	
.landing .vertically-center {
	text-align: center;
    vertical-align: middle;
    display: table-cell;
}


/* -------------------------------------------- Buttons -------------------------------------------- */

a.button, .button {
	background: rgba(0, 0, 0, 0.3); 
	padding: 11px 16px;
	cursor: pointer;
	font: 600 0.93em/130% 'Work Sans';
	text-transform: uppercase;
	border-radius: 3px;
	color: white;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	letter-spacing: 0.07em;
	margin-top: 20px;
	transition: all 0.4s ease-in-out;
	text-decoration: none;
	box-shadow: 0px 0px 0px rgba(0,0,0,0);
	display: inline-block;
	border: none;

}	
a.button:hover, .button:hover {
	background: rgba(0, 0, 0, 0.5); 
	color: #fff;
	box-shadow: 0px 3px 20px rgba(0,0,0,0.2);
}
a.button.fill {
	background: #42aec3;
}
a.button.fill:hover {
	background: #33d8f9;
}
/* -------------------------------------------- Columns -------------------------------------------- */
.col-4 {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	display: block;
	clear: both;
	padding: 30px 0px 80px 0px;
}
.col-4 > div {
	width: calc(100%/4 - (((4 - 1) * 1rem) / 4));
	display: inline-block;
	position: relative;
}
.col-4 > div img {
	width: 100%;
	float: left;
}

.col-3 {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	display: block;
	clear: both;
	padding: 30px 0px 0px 0px;
	float: left;
}
.col-3 > div {
	width: calc(100%/3 - (((3 - 1) * 1rem) / 3));
	display: inline-block;
	position: relative;
	float: left;
	overflow: hidden;
}
.col-3 > div img {
	width: 100%;
	float: left;
}

.sneak a {
    background: #F75141;
    background: linear-gradient(135deg, #F75141 0%, #801562b8 100%);
    background: -moz-linear-gradient(135deg, #F75141 0%, #801562b8 100%);
    background: -webkit-linear-gradient(135deg, #F75141 0%, #801562b8 100%);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%; 
    opacity: 0; 
    padding: 30% 10px 0 10px;
    text-decoration: none;
    font-weight: 400;
    font-size: 2em;
    z-index: 99;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    transition: all .2s ease-in-out;
}
.sneak a:hover {
    display: block;
    opacity: 1;
}
.sneak a span {
	font-size: 0.5em;
	padding-top: 10px;
	font-weight: 500;
	text-transform: uppercase;
}
.sneak a img {
	transition: all .2s ease-in-out;
}
.sneak a:hover + img {
	filter: blur(3px);
	transform: scale(1.05);
	box-shadow: none;
}
.col-2 {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	display: block;
	clear: both;
	padding: 0 0 50px 0;
}

.col-2 > div {
	width: 40%;
	height: auto;
	background-color: #fff;
	padding: 35px;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
	display: inline-block;
	margin: 5px;
	vertical-align: top;
	text-align: left;
}
.col-2 > div:hover {
	transform: rotate(1deg);
}
.col-2 > div h3 {
	color: #fa3848;
}


/* -------------------------------------------- Footer -------------------------------------------- */

.footer {
	display: block;
	clear: both;
	margin: 0px 0 0 0;
	padding: 50px 0px;
	text-align: center;
	font-weight: 400;
	width: 100%;
	float: left;
}
.footer ul {
	margin: 10px 0 0 0;
	padding: 0;
}
.footer ul li {
	list-style: none;
	display: inline;
	padding: 0 8px;
}
.footer ul li a {
	text-decoration: none;
	color: #999;
}
.footer ul li.note {
	color: #999;
	font-size: 0.9em;
	padding: 20px 0 0 0;
}	

.footer.skew {
	transform: skewY(-8deg);
    background: #fff;
    padding: 120px 0 120px 0;
    margin: -150px 0 0 0;
}
.footer.skew ul {
	transform: skewY(8deg);
}

/* -------------------------------------------- Homepage -------------------------------------------- */
.logos > div {
	width: auto;
	height: auto;
	padding: 5px 10px;
	margin: 8px;
	display: inline-block;
}
.logos > div img {
	width: auto;
	height: 35px;
}
body.home .wrapper-grey {
	padding: 1px 0px;
	-webkit-background-clip: content-box;
	background-clip: content-box;
	height: 100%;
}
/* -------------------------------------------- About -------------------------------------------- */

body.about .landing.white {
	background: url("imgs/molly-new.png") no-repeat 100% 40%;
	position: relative;
	background-size: 580px;
}
.landing.white {
    height: 100%;
    min-height: 800px;
    margin: -50px 0 0 0;
    z-index: 0;
	-webkit-animation: none;
	-moz-animation: none;
	-o-animation: none;
	animation: none;
	background: white;
}
.landing.white h1 {
	color: #4a4249;
}
.landing.white .text {
	width: 600px;
}
a.link{
	color: #fa3848;
	text-decoration: none;
}
a.link:hover{
	color: #9a141f;
}

/* -------------------------------------------- Client Pages -------------------------------------------- */
.banner {
	width: 100%;
	height: 250px;
}

.left-col-client {
	width: 280px;
	float: left;
	display: inline-block;
	text-align: left;
	padding: 0 20px 0 0;
	vertical-align: top;
}
.left-col-client h1 {
	padding: 0;
	line-height: 100%;
}
.left-col-client a {
	text-decoration: none;
	color: #fa3848;
}
.right-col-client {
	width: 700px;
	float: right;
	display: inline-block;
	vertical-align: top;
}
.right-col-client img {
	margin: 0 0 20px 0;
}

/* -------------------------------------------- Contact -------------------------------------------- */
.landing.contact h3 {
	color: #fff;
}
.landing.contact h1 a {
	color: #fff;
}
.landing.contact h1 a:hover {
	color: rgba(255,255,255,0.6);
}
form {
	width: 100%;
	padding: 20px 0 0 0;
}
fieldset {
	border:none;
	margin: 0;
	padding: 0;
}
input[type="text"] {
	width: 46%;
	display: inline;
	padding:10px;
	float: left;
	background: #ffffff2b;
	border: none;
	margin: 0 0 10px 0;
	font-size: 1.2em;
	font-family: 'Work Sans', sans-serif;
	color: #fff;
	-webkit-appearance: none;
	appearance: none;
	border: 2px solid rgba(255,255,255,0);
}

form input[type="text"]:last-child {
	float:right;
}
form input.floatRight {
	float:right;
}
select, textarea {
	width: 100%;
	padding:10px;
	background: #ffffff2b;
	border: none;
	margin: 0 0 10px 0;
	font-size: 1.2em;
	font-family: 'Work Sans', sans-serif;
	color: #fff;
	-webkit-appearance: none;
	appearance: none;
	border: 2px solid rgba(255,255,255,0);
	box-sizing:border-box;
}
input:focus, textarea:focus, select:focus {
	box-shadow: none;
	outline: none;
	border: 2px solid #fff;

}
.select {
	position: relative;
	display: block;
	clear: both;
}
.select:after {
	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color:#fff;
}
::-moz-placeholder { /* Firefox 19+ */
  color:#fff;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
:-moz-placeholder { /* Firefox 18- */
  color:#fff;
}

/* -------------------------------------------- Large Desktop -------------------------------------------- */

@media (min-width: 1366px) {
	.header {
		max-width: 1366px;
		width:80%;
	}
	#container {
		max-width: 1366px;
		width:80%;
	}
	.landing.white .text {
	width: 800px;
	}
}
@media (max-width: 1200px) {
	.landing.white .text {
		width: 400px;
	}
	.right-col-client {
		width: 60%;
		float: left;
	}
	.right-col-client img {
		width: 100%;
	}

}
@media (max-width: 980px) {
	.landing.white .text {
		width: 300px;
	}
	.right-col-client {
		width: 50%;
		float: left;
	}
	.right-col-client img {
		width: 100%;
	}
}
/* -------------------------------------------- Mobile -------------------------------------------- */

@media (max-width: 768px) {
	.header {
		max-width: 768px;
		width:100%;
		position: relative;
		height: 150px;
	}
	body.home .header, body.contact .header {
		position: absolute;
	}
	body.about .landing.white {
		background: #fff;
	}
	.logo {
		float: none;
	}
	.nav ul {
		display: block;
		text-align: center;
	}
	.nav ul li {
		margin: 0 7px;
	}
	#container {
		max-width: 768px;
		width:95%;
		text-align: center;
	}
	body.home section {
		padding: 40px 0px;
	}
	section {
		padding: 0px;
	}
	.landing {
		background-size: 200% 200%;
		animation: GradientAnimation 7s ease infinite;
	}
	.landing, .landing.white {
	    height: auto;
	    min-height: auto;
	    margin: 0;
	    z-index: 0;
	    position: relative;
	    margin: 0px;
	    padding: 50px 0 0 0;
	}
	.landing .text, .landing.white .text {
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}
	.landing .block {
	    height: auto;
	    min-height: auto;
	    width: 100%;
	    text-align: center;
	    padding: 0 0 100px 0;
	    display: block;
	    position: relative;
	    margin: 150px 0 0 0;
	}
	.landing.white .block {
	    height: auto;
	    min-height: auto;
	    width: 100%;
	    text-align: center;
	    padding: 0 0 100px 0;
	    display: block;
	    position: relative;
	    margin: 0px 0 0 0;
	}	
	.landing .vertically-center {
	    display: block;
	}
	.landing.white {
		background: #fff;
	}
	.wrapper-grey {
		margin: -50px auto;
	}
	.wrapper-noskew {
		padding: 0px;
		margin: 80px 0 0 0;
	}
	.wrapper-white.work {
		margin: 150px 0 0 0;
	}
	.col-2 > div {
		width: 90%;
		box-sizing: border-box;
	}
	h4 {
		width: 90%;
	}
	.logos > div {
		display: block;
	}
	.col-3 > div {
		 width: 95%;
    	margin: 0 auto;
    	float: none;
	}
	.col-4 > div {
		width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
		display: inline-block;
		position: relative;
	}
	form {
		width: 100%;
	}
	input[type="text"] {
		width: 90%;
	}
	form input.floatRight {
		float: none;
	}
	textarea {
		width: 95%;
	}
	.right-col-client {
		width: 90%;
		float: none;
	}
	.right-col-client img {
		width: 100%;
	}
	.left-col-client {
		width: 90%;
		float: none;
		padding: 0 0 20px 0;
		text-align: center;
	}
	
}



