/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}
::selection {
  background: #f47b22;
	color: #fff;/* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #f47b22;
	color: #fff;/* Gecko Browsers */
}

html {
  font-size: 62.5%;
}

body {
  background:#273040;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.group:after {
  content: "";
  display: table;
  clear: both;
}
/**fonts**/
@font-face {
  font-family: 'SofiaPro-SemiBold';
  src: url('../fonts/SofiaPro-SemiBold.eot');
  src: url('../fonts/SofiaPro-SemiBold.html') format('woff2'),
       url('../fonts/SofiaPro-SemiBoldd41d.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaProSemiBold';
  src: url('../fonts/SofiaProSemiBold.woff') format('woff'),
       url('../fonts/SofiaProSemiBold.ttf') format('truetype'),
       url('../fonts/SofiaProSemiBold.svg#SofiaProSemiBold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaPro-Regular';
  src: url('../fonts/SofiaPro-Regular.eot');
  src: url('../fonts/SofiaPro-Regular.html') format('woff2'),
       url('../fonts/SofiaPro-Regulard41d.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SofiaProRegular';
  src: url('../fonts/SofiaProRegular.woff') format('woff'),
       url('../fonts/SofiaProRegular.ttf') format('truetype'),
       url('../fonts/SofiaProRegular.svg#SofiaProRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SofiaPro-Bold';
  src: url('../fonts/SofiaPro-Bold.eot');
  src: url('../fonts/SofiaPro-Bold.woff') format('woff'),
       url('../fonts/SofiaPro-Boldd41d.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
/* -------------------------------- 

Blob

-------------------------------- */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/**float**/
@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-20px);
            transform: translatey(-20px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

/*bouncing arrow*/
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/**fade in**/
.hideme
{
    opacity:0;
}
@keyframes fadeIn{
    0% {
        opacity:0;
        transform:  translate(0px,40px)  ;
    }
    100% {
        opacity:1;
        transform:  translate(0px,0px)  ;
    }
}

@-moz-keyframes fadeIn{
    0% {
        opacity:0;
        -moz-transform:  translate(0px,40px)  ;
    }
    100% {
        opacity:1;
        -moz-transform:  translate(0px,0px)  ;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
        -webkit-transform:  translate(0px,40px)  ;
    }
    100% {
        opacity:1;
        -webkit-transform:  translate(0px,0px)  ;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity:0;
        -o-transform:  translate(0px,40px)  ;
    }
    100% {
        opacity:1;
        -o-transform:  translate(0px,0px)  ;
    }
}
 
.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
 
	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
}

/* -------------------------------- 

Contact page

-------------------------------- */
#contact-area {
	width: 600px;
	margin: 25px auto;
}

#contact-area input, #contact-area textarea {
	padding: 5px;
	width: 471px;
	font-family: SofiaPro-Regular;
	font-size: 1.4em;
	margin: 0px 0px 10px 0px;
	border: 2px solid #ccc;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 2px solid #900;
}

#contact-area input.submit-button {
	width: 100px;
	float: right;
}

label {
	float: left;
	text-align: right;
	margin-right: 15px;
	width: 100px;
	padding-top: 5px;
	font-size: 1.4em;
}
/* -------------------------------- 

Andy home page

-------------------------------- */

.wrapper {
        width: 100%;
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 136%;
}
.wrapper.contacty {
        width: 100%;
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 136%;
}
.wrapper.abouter {
        width: 100%;
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 136%;
}
.wrapper.homery {
        width: 100%;
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 136%;
}
.wrapperwork {
        width: 100%;
	background:  url(../images/lines.png) top center repeat-y #273040;
	background-size: 136%;
}

.bannertxt{
	width: 100%;
	padding-top: 46vh;
	text-align: center;
	margin: 0 auto;
}
.bannertxtc{
	width: 100%;
	padding-top: 46vh;
	text-align: center;
	margin: 0 auto;
}
.bannertxt2{
    width: 100%;
    position: absolute;
    top: 37vh;
    left: 0;
    text-align: center;
    margin: 0 auto;
}
.bannertxt3{
	width: 100%;
    padding-top: 38vh;
    padding-bottom: 15vh;
    text-align: center;
    margin: 0 auto;
    z-index: 5;
    position: relative;

}
.contacttxt{
	width: 100%;
	padding-top: 47vh;
	text-align: center;
	margin: 0 auto;
	    position: relative;
    z-index: 2;
}
.travels{
    background: url(../images/wavy.png) top left no-repeat;
    background-size: 200%;
    padding: 11% 16% 23%;
    width: 100%;
    position: relative;
    z-index: 500;
}
.travelspic{
	position: relative;
	top:113px;
	left:0;
	width: 150px;
	z-index: 100;
}
.travelspic img{
	
}
.travelspic2 img{
	
}
.travelspic2{
	position: relative;
	top:51px;
	right:10px;
	width: 178px;
	z-index: 100;
	text-align: left;
	margin: 0;
}
.travelspic3{
	position: relative;
	top:93px;
	left:-10px;
	width: 178px;
	z-index: 100;
}
.travelspic3 img{
	
}
.travels3{
	    width: 100%;
    float: none;
    padding: 0;
    text-align: left;
	margin-top: -5%;
}
.travels1{
width: 100%;
    float: none;
    padding: 0;
    text-align: left;
}
.travels2{
    width: 100%;
    float: none;
    padding: 0;
    text-align: left;
}
.travels p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	margin-top: 18px;
}
.travels h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 7vw;
	margin-top: 30px;
	letter-spacing: -1px;
}
.travels h4{
	    font-family: SofiaPro-Bold;
    margin-top: 15px;
    font-size: 13px;
    letter-spacing: 4px;
    color: #f47b22;
    text-transform: uppercase;
}
.skillz{
    background: url(../images/wavy.png) top left no-repeat;
    background-size: 200%;
    background-color: #273040ed;
    padding: 11% 7%;
    width: 100%;
    position: relative;
    z-index: 500;
}

.design{
	    width: 100%;
    float: none;
    padding: 0;
    text-align: left;
	margin-top: -5%;
}
.direction{
width: 100%;
    float: none;
    padding: 0;
    text-align: left;
}
.strategy{
    width: 100%;
    float: none;
    padding: 0;
    text-align: left;
}
.work {
  width: 100%;
	position: relative;
	background-color: #273040ed;
	    z-index: 120;
    padding: 0 0 20% 0;
	box-shadow: 0 0 150px #000000a6;
}
.homeworksplat{
position: absolute;
    top: 7%;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 0;
}
.homeworksplat2{
position: absolute;
    top: 7%;
    right: 0;
    width: 100%;
    height: 500px;
    z-index: 0;
}
.bannersplat{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -185px;
    margin-top: -250px;
    width: 370px;
    height: 300px;
    z-index: 0;
}
.bannersplatabout{
position: absolute;
    top: 75%;
    left: 50%;
    margin-left: -147px;
    margin-top: -265px;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.bannersplatfoot{
	position: absolute;
    top: 60%;
    left: 50%;
    margin-left: -185px;
    margin-top: -325px;
    width: 370px;
    height: 650px;
    z-index: 0;
}
.worksplatfoot{
	position: absolute;
	top: 47%;
	left: 50%;
	margin-left: -325px;
	margin-top: -275px;
	width: 650px;
	height: 650px;
	z-index: 0;
}
.worksplat{
	    position: absolute;
    top: 68%;
    left: 50%;
    margin-left: -213px;
    margin-top: -209px;
    width: 437px;
    height: 419px;
    z-index: 0;
    background: url(../images/splatter.png) top center no-repeat;
}
.contactsplat{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -213px;
	margin-top: -209px;
	width: 437px;
	height: 419px;
	z-index: 0;
	background: url(../images/splatter.png) top left no-repeat;
	background-size: 100%;
}

.bannersplat2{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -213px;
	margin-top: -229px;
	width: 437px;
	height: 419px;
	z-index: 0;
	background: url(../images/splatter.png) top left no-repeat;
	background-size: 100%;
}
.bannersplatbig{
	position: relative;
}
.bannersplatbig2{
	position: relative;
}
.contactsplat{
	    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -225px;
    margin-top: -200px;
    width: 437px;
    height: 419px;
    z-index: 0;
}
.lbsplat{
	position: absolute;
    top: 38vh;
    left: 50%;
    margin-left: -234px;
    margin-top: -180px;
    width: 446px;
    height: 506px;
    z-index: 0;
}
.valsplat{
	    position: absolute;
    top: 35%;
    left: 50%;
    margin-left: -303px;
    margin-top: -117px;
    width: 446px;
    height: 506px;
    z-index: -5;
}
.jksplat{
	    position: absolute;
    top: 37%;
    left: 50%;
    margin-left: -255px;
    margin-top: -117px;
    width: 446px;
    height: 506px;
    z-index: -5;
}
.contactabout{
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -325px;
	width: 650px;
	height: 673px;
	z-index: -5;
}
.contactabout img{
	width: 100%;
}
.planewrap{
    position: fixed;
    pointer-events: none;
    top: 50%;
    left: 50%;
    margin-left: -126px;
    margin-top: -115px;
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    width: 248px;
    height: 350px;
    z-index: 2;
    text-align: center;
}
.planey{
display: none;
	}
.planeymob{
	display: inline;
}
.planewrap2{
	position: fixed;
	pointer-events: none;
	top: 50%;
	right:0;
	margin-right: -120px;
	margin-top: -115px;
	width: 240px;
	z-index: 1;
	text-align: center;
		  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.banner{
	height: 100vh;
	position: relative;
}
.worklbbanner{
	height: 100vh;
	position: relative;
		background:  url(../images/lineslb.png) top center repeat-y #ff4338;
	background-size: 136%;
}
.worksubarubanner{
	height: 100vh;
	position: relative;
	background:  url(../images/linessub.png) top center repeat-y #1b3ed3;
	background-size: 136%;
}
.workvaleyobanner{
	height: 100vh;
	position: relative;
	background: url(../images/linesval.png) top center repeat-y #00d4d8;
	background-size: 136%;
}
.contactbanner2{
	height: 100vh;
	position: relative;
			background:  url(../images/linescontact.png) top center repeat-y #f47b22;
	background-size: 136%;
}
.contactbanner{
	height: 100vh;
	position: relative;
}
.nextvalbanner{
    width: 100%;
    margin: 14% 0 0;
    background: url(../images/hand.png) 0% 62% no-repeat #00d4d8;
    background-size: 75%;
    box-shadow: 0 0 150px #000000a6;
}
.nextvalbanner a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 8vw;
	letter-spacing: -2px;
	text-decoration: none;
	display:block;
	padding:30% 0;
}
.nextsubbanner{
    width: 100%;
    margin: 14% 0 0;
    background:url(../images/key.png)top center no-repeat #1b3ed3;
    background-size: 40%;
    box-shadow: 0 0 150px #000000a6;
}
.nextsubbanner a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 8vw;
	letter-spacing: -2px;
	text-decoration: underline;
		display:block;
	padding:30% 0;
}
.nextlbbanner{
    width: 100%;
    margin: 14% 0 0;
    background: url(../images/wine.png) bottom center no-repeat #ff4338;
    background-size: 33%;
    box-shadow: 0 0 150px #000000a6;
}
.nextlbbanner a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 8vw;
	letter-spacing: -2px;
	text-decoration: none;
		display:block;
	padding:30% 0;
}
.aboutfoot{
	width: 100%;
	background: none;
	padding-bottom: 0;
}
.aboutwork{
    width: 100%;
    margin: 0 auto;
    background: url(../images/wine.png) bottom center no-repeat #ff4338;
    background-size: 30%;
    box-shadow: 0 0 150px #000000a6;
	    z-index: 10;
    position: relative;
}
.aboutwork a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 7vw;
	letter-spacing: -2px;
	text-decoration: underline;
		display:block;
	padding:30% 0;
}
.timeline{
	padding: 23% 15% 23%;
	background: url(../images/aboutmap.html) center center no-repeat;
	background-size: 100%;
}
.timeline h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	font-size: 2vw;
	letter-spacing: -1px;
}
.timeline p{
	color: #fff;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	text-align: left;
	font-size: 20px;
	line-height: 35px;
	margin-top: 30px;
}
.time1{
	width:32%;
	float: left;
	padding: 0 1% 0 0%;
}
.time2{
	width:32%;
	float: right;
		padding: 0 1% 0 0%;
}
.time3{
	width:32%;
	margin: 0 auto;
}
.wires{
	padding: 0 16%;
}
.wires img{
	width: 100%;
}
.wiresleft{
	width:100%;
	float: none;
}
.wiresright{
	width:100%;
	float: none;
}
.wiresleft h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 10vw;
	letter-spacing: -2px;
}
.wiresleft p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	margin: 30px 0 30px 0;
}
.brandpic{
	width:100%;
	position: relative;
		height: 70vh;
	margin-top: 10%;
	background: url(../images/wavy.png) center center no-repeat;
	background-size: 170%;
}
.brandpicover img{
	height:100%;
}
.brandpicover{
	width:50%;
	position: absolute;
	top: 0;
	height: 100%;
	left: 25%;
	z-index: 100;
}
.brandpicoversub img{
	width:100%;
}
.brandpicoversub{
	width:100%;
	position: absolute;
	top: 28%;
	height: 60%;
	left: 0%;
	z-index: 100;
}
.brandpicoverval img{
	width:100%;
}
.brandpicoverval{
	width:90%;
	position: absolute;
	top: 28%;
	height: 60%;
	left: 5%;
	z-index: 100;
}
.brandpic-valeyo{
	width:100%;
	padding: 2% 0;
	min-height: 75%;
}
.brandpic-jk{
	width:100%;
	background: url(../images/work-jk-background.html) center left no-repeat;
	background-size: cover;
	min-height: 90%;
}
.brandpic-valeyo img{
	width:40%;
}
.workhighs{
	padding: 8% 15% 0;
}
.workhighs h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	font-size: 2vw;
	letter-spacing: -1px;
}
.workhighs p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	text-align: left;
	font-size: 20px;
	line-height: 35px;
	margin-top: 30px;
}
.highs1{
	width:32%;
	float: left;
	padding: 0 1% 0 0%;
}
.highs2{
	width:32%;
	float: right;
		padding: 0 1% 0 0%;
}
.highs3{
	width:32%;
	margin: 0 auto;
}
.mobileshots{
	padding: 0 16%;
	display: block;
}
.mobileshots img{
	width:100%;
}
.fullshot{
	display: none;
}
.fullshot img{
	width: 100%;
	box-shadow: 0 0 150px #000000a6;
}
.shot1{
	width:100%;
	float: none;
	padding: 0;
	margin: 0 0 30px;
    background-color: #273040f2;
    box-shadow: 0 0 150px #000000a6;
}
.shot2{
	width:100%;
	float: none;
	margin: 0 0 30px;
		padding: 0;
    background-color: #273040f2;
    box-shadow: 0 0 150px #000000a6;
}
.shot3{
	width:100%;
	margin: 0;
		padding: 0;
    background-color: #273040f2;
    box-shadow: 0 0 150px #000000a6;
}
.clients{
padding: 16% 6% 16% 6%;
    width: 100%;
    z-index: 10;
	position: relative;
    margin: 0 auto;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.clients img{
	width: 82%;
}
.clients h2{
    color: #fff;
    font-family: SofiaPro-SemiBold;
    text-align: center;
    font-weight: normal;
    font-size: 7vw;
    letter-spacing: -1px;
    margin-bottom: 27px;
}
.workpic{
	width: 100%;
	float: none;
	height:400px;
}
.workpic img{
	width: 100%;
}
.footleft{
bottom: 80px;
    width: 185px;
    left: -86px;
    height: 40px;
    position: fixed;
    z-index: 100;
    transform: rotate(90deg);
}
.leftylink{
    transform: rotate(90deg);
    position: fixed;
	display: none;
    top: 50%;
    left: -13px;
    z-index: 15;
    color: #fff;
    font-family: SofiaPro-bold;
    font-weight: normal;
}
.leftylink.act{
	text-decoration: line-through;
}
.rightylink{
    transform: rotate(-90deg);
    position: fixed;
    top: 50%;
    right: -21px;
    z-index: 15;
    color: #fff;
    font-family: SofiaPro-bold;
    font-weight: normal;
	display: none;
}
.rightylink.act{
	text-decoration: line-through;
}
.leftbar{
    top: 0;
    left: 0;
    position: fixed;
    z-index: 11;
	width: 40px;
	background-color: none;
	height: 100%;
}
.rightbar{
    top: 0;
    right: 0;
    position: fixed;
    z-index: 11;
	width: 40px;
	background-color: none;
	height: 100%;
}
.footleft p{
	color: #4f5765;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	text-align: right;
	font-size: 14px;
}
.footright img{
	margin-top: 15px;
	width: 20px;
}
.footright{
    text-align: right;
    width: 30px;
    bottom: 15px;
    right: 11px;
    position: fixed;
    z-index: 100;
}
.workpic2 img{
	width: 100%;
}

.workpic2{
	width: 100%;
	float: none;
	height: 400px;
}
.aboot{
	position: relative;
	padding-bottom: 10%;
background: url(../images/aboutleftcloud.html) bottom right no-repeat;
}

.workintro{
width: 100%;
	padding: 0 7%;
    float: none;
	text-align: left;
}
.workintro2{
width: 100%;
	padding: 0 7%;
	float: none;
	text-align: left;
}
.workintro3{
width: 100%;
	padding: 0 7%;
    float: none;
    margin-top: 10%;
	text-align: left;
}
.work1{
	padding: 0;
		position: relative;
}
.work2{
	padding: 0;
		position: relative;
}
.work3{
	padding: 0;
	position: relative;
}

.bannertxt h1{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2;
	font-size: 17vw;
	letter-spacing: -4px;
	position: relative;
}
.bannertxtc h1{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2;
	font-size: 15vw;
	letter-spacing: -4px;
	position: relative;
}
.bannertxt2 h1{
color: #fff;
    font-family: SofiaPro-Bold;
    text-align: center;
    font-weight: normal;
    z-index: 2;
    font-size: 22vw;
    letter-spacing: -3px;
    position: relative;
}
.splatoverlay{
	position: absolute;
	width: 65%;
	top:15%;
	left: 20%;
}
.splatoverlay2{
	position: absolute;
	width: 100%;
	top:-5%;
	left: 0%;
}
.bannertxt3 h1{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 8vw;
	letter-spacing: -4px;
}
.contacttxt h1{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 11vw;
	letter-spacing: -2px;
}

.abouttext h2{
    color: #fff;
    font-family: SofiaPro-SemiBold;
    text-align: center;
    font-weight: normal;
    font-size: 10vw;
    letter-spacing: -1px;
}
.abouttext p{
    color: #fff;
    text-align: center;
    font-family: SofiaPro-Regular;
    font-weight: normal;
    font-size: 20px;
    line-height: 34px;
    margin-top: 20px;
}
.abouttext2 h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 10vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.abouttext2 p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
}
.abouttext a{
	color: #f47b22;
	text-decoration: underline;
}
.workclose{
width: 100%;
	padding: 4vh 0 0 0;
}
.workclose img{
	width:200%;
}
.writeup h3{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	font-size: 3vw;
	letter-spacing: -1px;
}
.writeup p{
	color: #7c8898;
	text-align: left;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 36px;
}
.writeup a{
	color: #33A1F4;
	text-decoration: underline;
}
.writeup{
	width: 100%;
	padding: 8% 15% 10%;
}
.writeupleft{
	width:48%;
	float: left;
}
.writeupright{
	width:48%;
	float: right;
}
.bannertxt a{
	color: #33A1F4;
	text-decoration: underline;
}
.worktext a{
	    color: #f47b22;
    text-decoration: underline;
    padding-top: 25px;
    display: block;
    font-family: SofiaPro-SemiBold;
    font-size: 20px;
}
.worktext2 a{
	    color: #f47b22;
    text-decoration: underline;
    padding-top: 25px;
    display: block;
    font-family: SofiaPro-SemiBold;
    font-size: 20px;
}
.contacttxt a{
	color: #fff;
	text-decoration: underline;
}
.nexttxt a{
	color: #f47b22;
	text-decoration: underline;
}
.aboutbanner{
	height: 83vh;
    z-index: 2;
    position: relative;
	        width: 100%;
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 136%;
}
.andy{
    position: absolute;
    bottom: -2px;
    left: 0;
	text-align: center;
    height: auto;
    width: 100%;
	max-height: 100%;
    z-index: 1;
}
.andy img{
	height: auto;
	width: 100%;
}
.paperplane{
    position: absolute;
top: 41vh;
    left: 0;
    margin-left: 0;
    width: 100%;
    z-index: 1;
		  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.paperplane img{
	width: 100%;
}
.workbannerpic{
        position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -36%;
    margin-bottom: -2px;
    width: 75%;
    z-index: 1;
}
.workbannerpic img{
width: 100%;
}
.workbannervalpic{
position: absolute;
    top: 50%;
    left: 0;
    /* margin-left: -12%; */
    margin-top: -9%;
    width: 95%;
    z-index: 1;
}
.workbannervalpic img{
width: 100%;
}
.workbannersubpic{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -40%;
    /* margin-bottom: -1px; */
    width: 80%;
    z-index: 1;
}
.workbannersubpic img{
width: 100%;
}
.contacttop{
	height: 100vh;
	position: relative;
	background: url(../images/clouds_left.html) -8% 40% no-repeat;
}
.formholder{
	width:100%;
}

.abouttext{
    padding: 20% 7%;
    width: 100%;
    margin: 16% auto 0%;
    z-index: 500;
    position: relative;
    background-color: #273040ed;
    box-shadow: 0 0 150px #000000a6;
}
.workintrotext{
		width: 100%;
	padding: 7% 15% 0;
	background-size: 100%;
}
.workintrotext h3{
	    color: #fff;
    font-family: SofiaPro-Bold;
    font-weight: normal;
    font-size: 6vw;
    letter-spacing: -4px;
    margin-bottom: 40px;
}
.workintrotext p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 36px;
}
.workintrotext a{
	color: #33A1F4;
	text-decoration: underline;
}
.workpix{
	width:100%;
    position: relative;
	margin-top: 12%;
	z-index: 15;
}
.workpix img{
	width:95%;
}
.workpix.subpic img{
	width:95%;
}
.workpix.valpic img{
	width:95%;
}
.abouttext2{
	padding: 10% 6% 12% 6%;
    width: 100%;
	z-index: 11;
	position: relative;
    margin: 0 auto 20%;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.fontsncolours{
	padding: 0;
    width: 69%;
    margin: 7% auto 10%;
    background-color: transparent;
    box-shadow: none;
}
.fontsncolours h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: left;
	font-weight: normal;
	font-size: 10vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.font{
	width: 100%;
	float: none;
	clear: both;
	margin: 0 auto 30px;
}
.colours{
	width: 100%;
	float: none;
	margin: 0 auto;
}
.font img{
	width: 100%;
}
.colours img{
	width: 100%;
}

.workintrocont{
	padding: 12% 0 12%;
    margin: -22% 0 0;
	    z-index: 12;
    position: relative;
}
.workintrobox{
	padding: 16% 10% 16% 10%;
    width: 100%;
    margin: 0 auto;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.workintrobox h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 10vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.workintrobox p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
}

.worktext h3{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 10vw;
	letter-spacing: -1px;
}
.worktext p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	margin-top: 20px;
}
.skillzpic{
	position: relative;
	top:160px;
	left:0;
	width: 150px;
	z-index: 100;
}
.skillzpic img{
	width: 100%;
}
.skillzpic2 img{
	width: 100%;
}
.skillzpic2{
	position: relative;
	top:110px;
	right:0%;
	width: 150px;
	z-index: 100;
	text-align: left;
	margin: 0;
}
.fluid.skilly{
	margin:-46px auto 0 0;
	background: #1a202b;
	width: 150px;
	height: 150px;
}
.fluid.lbdark{
	background:#121822;
}
.fluid.skillyright{
	margin:-90px auto 0 0;
	background: #1a202b;
	width: 150px;
	height: 150px;
}
.skillz p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 30px;
	margin-top: 18px;
}
.skillz h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 10vw;
	margin-top: 70px;
	letter-spacing: -1px;
}
.worktext{
	padding-left: 0px;
	text-align: left;
}
.worktext2 h3{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 10vw;
	letter-spacing: -1px;
}
.worktext2 p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	margin-top: 20px;
}
.worktext2{
	text-align: left;
	padding-right: 20px;
}
.workpiece{
	width: 100%;
	height: auto;
	padding-bottom: 10%;
	text-align: center;
}
.workpiece img{
	width: 90%;
	margin: 0 auto;
	height: 90%;
}
/**form**/
.bluewrapcontact{
	    background-color: transparent;
    box-shadow: none;
    padding: 0;
    width: 68%;
    margin: 15% auto 10%;
}

.formleft{
	width:100%;
	float: none;
}
.fieldwrap{
	width:100%;
}
.fieldlabel{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	margin-top: 11px;
	letter-spacing: -1px;
}
input::placeholder {
  color: #323d50;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
	letter-spacing: -1px;
}
.formmessagestyle::placeholder {
  color: #323d50;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
	letter-spacing: -1px;
}
.formright{
	width:100%;
	float: none;
}
.formmessage{
	width:100%;
}
input[type=text],input[type=email], select {
    width: 100%;
    padding: 18px 18px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
	background-color: #0e131c;
	border: none;
	color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 16px;
}
.formmessagestyle {
    width: 100%;
    padding: 18px 18px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 4px;
	background-color: #0e131c;
    box-sizing: border-box;
	min-height: 22vh;
	border: none;
		color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 16px;
}

input[type=submit] {
    color: #f47b22;
	font-family:SofiaPro-SemiBold;
	text-align: left;
	font-weight: normal;
	text-decoration: underline;
	font-size: 20px;
	display: block;
	padding: 0;
	background-color: transparent;
	letter-spacing: -1px;
    margin: 15px 0;
    border: none;
    cursor: pointer;
}

input[type=submit]:hover {
	   color: #00bfea;
}

.scroll {
position: absolute;
    bottom: 17px;
    left: 50%;
    margin-left: -3px;
    width: 8px;
    height: 36px;
  background-image: url(../images/scroll.svg);
  background-size: contain;
	z-index: 1;
}
.scroll2 {
position: absolute;
    bottom: 17px;
    left: 50%;
    margin-left: -3px;
    width: 8px;
    height: 36px;
  background-image: url(../images/scroll2.svg);
  background-size: contain;
	z-index: 1;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
/*Navigation*/
.navitems{
	text-align: left;
		position: absolute;
	opacity: 0;
	left: 15%;
	width: 100%;
	margin-top: 20%;
	z-index: 100;
	  -webkit-transition: all 0s ease-out;
	  -webkit-transition-delay: 0s;
}
.navcolumn h2{
	    font-family: SofiaPro-Bold;
    text-align: left;
    display: block;
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: 4px;
    color: #f47b22;
    text-transform: uppercase;
}
.navcolumn a{
	font-family: SofiaPro-regular;
    text-align: left;
    margin-top: 20px;
    display: block;
    font-size: 24px;
    color: #fff;
    text-decoration: underline;
}
.navcolumn p{
    	font-family: SofiaPro-regular;
    text-align: left;
    margin-top: 20px;
    display: block;
	line-height: inherit;
    font-size: 24px;
    color: #585f6d;
    text-decoration:line-through;
}
.navcolumn{
	widows: 33%;
	float: left;
	margin: 27px 140px 20px 0;
}
.navitems.active{
	opacity: 1;
		  -webkit-transition: all 0.9s ease-out;
	  -webkit-transition-delay: 0.5s;
}
.heady {
z-index: 600;
  width: 100%;
  height: 20vh;
  overflow: hidden;
  position: fixed;
	 -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
	  -webkit-transition-delay: .4s;
}
.heady.active {
  height: 100vh;
	 -webkit-transition: all 0.3s ease-out;
}
.logo{
    height: 50px;
    width: 50px;
    background-color: transparent;
    top: 10px;
    left: 10px;
    position: absolute;
    z-index: 100;
}
.logo img{
	width: 100%;
}
.bubble-wrap {
  height: 50px;
  width: 50px;
  background-color: transparent;
  top: 10px;
  right: 10px;
  position: absolute;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  display: block;
}

.bubble-wrap.active {
  display: none;
}

.bubble {
  height: 50px;
  width: 50px;
  background-color: #1a202b;
  top: 10px;
  right: 10px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
}

.bubble.active {
  -webkit-transform: scale(100);
  -webkit-transition: all 0.6s ease-out;
  -webkit-transition-delay: .4s;
	background-color: #1a202b;
}

.bubbleback {
  height: 50px;
  width: 50px;
  background-color: #000;
  top: 10px;
  right: 10px;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(1);
  opacity: 1;
}

.bubbleback.active {
  -webkit-transform: scale(1.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
}

.bar {
    background-color: #fff;
    height: 2px;
    border-radius: 5px;
    right: 13px;
    top: 18px;
}

.first {
  position: absolute;
	  width: 25px;
  -webkit-transition: all 0.2s ease-out;
}

.first.active {
  margin-top: 7px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-out;
  -webkit-transition-delay: .4s;
}

.second {
  margin-top: 6px;
	  width: 25px;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
}

.second.active {
  opacity: 0;
  margin-top: 7px;
  -webkit-transition: all 0.2s ease-out;
  -webkit-transition-delay: .4s;
}

.third {
  margin-top: 12px;
	  width: 13px;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
}

.third.active {
  margin-top: 7px;
	width: 25px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-out;
  -webkit-transition-delay: .4s;
}

/* ====  Preloader styles ==== */
#hola{
    width: 100vw;
    height: 100vh;
    background-color: #1a202b;
    position: fixed;
    z-index: 999;
}
#preloader {
	position:relative;
    width: 80px;
    height: 80px;
    top: 50%;
    margin: -40px auto 0;
	-webkit-animation: spin-1 2s infinite linear;
	        animation: spin-1 2s infinite linear;
}
@-webkit-keyframes spin-1 {
	0% {opacity: 1;}
	50% {opacity: 0.5;}
	100% {opacity: 1;}
}
@keyframes spin-1 {
	0% {opacity: 1;}
	50% {opacity: 0.5;}
	100% {opacity: 1;}
}
/* -------------------------------- 

Wordz

-------------------------------- */
.word {
      position: absolute;
    width: 100%;
    left: 0;
  opacity: 0;
}

.letter {
  display: inline-block;
  position: relative;
  float:none;
  -webkit-transform: translateZ(25px);
          transform: translateZ(25px);
  -webkit-transform-origin: 50% 50% 25px;
          transform-origin: 50% 50% 25px;
}

.letter.out {
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

.letter.in {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
  -webkit-transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* -------------------------------- 

Blob

-------------------------------- */
.fluid {
  width: 230px;
  height: 230px;
  background: #f47b22;
  margin: 145px auto;
  border-radius: 50%;
  animation: rotate 30s infinite;
}
.fluidbig {
  width: 300px;
  height: 300px;
  background: #f47b22;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  animation: rotate 30s infinite;
}
.fluiddark {
display: none;
}
.fluiddark.abouty {
  background:#f47b22;
	z-index: -200;
	position: absolute;
	top:0px;
	left:0px;
	  width: 300px;
  height: 300px;
	border: none;
	  border-radius: 50%;
	box-shadow:none;
	display: block;
}
.fluiddark.work {
  background: none;
	z-index: -200;
	position: absolute;
	top:-5%;
	left:0%;
	  width: 650px;
  height: 650px;
	  border-radius: 50%;
	box-shadow: inset -50px -50px 70px rgba(0, 0, 0, 0.62), 0 0 150px rgb(0, 0, 0);
}
.fluiddark.lbblob {
  background:url(../images/work-lb-background.png) top center no-repeat #0e131c;
	background-size: cover;
	z-index: 0;
	display: block;
	position: absolute;
	top:18%;
	left:50%;
	margin-left: -150px;
	  width: 300px;
  height: 300px;
	border: none;
	  border-radius: 50%;
	box-shadow: none;
}
.fluiddark.subblob {
  background:#004d8c;
	background-size: cover;
	z-index: 0;
	display: block;
	position: absolute;
	top:18%;
	left:50%;
	margin-left: -150px;
	  width: 300px;
  height: 300px;
	border: none;
	  border-radius: 50%;
	box-shadow: none;
}
.fluiddark.valeyblob {
  background:#101011;
	background-size: cover;
	z-index: 0;
	display: block;
	position: absolute;
	top:18%;
	left:50%;
	border: none;
	margin-left: -150px;
	  width: 300px;
  height: 300px;
	  border-radius: 50%;
	box-shadow: none;
}
.fluidbig.righty {
  margin: 0 auto;
}
.scotty{
	position:absolute;
	width: 370px;
	top:150px;
	left: 0;
	z-index: 100;
}
.scotty img{
width: 85%;
}
.canada{
	position:absolute;
	width: 100%;
	top:134px;
	left: 0;
	z-index: 100;
}
.canada img{
	width: 100%;
}
.homework1{
    position: absolute;
    width: 100%;
    top: 11%;
    left: 0%;
    z-index: 100;
}
.homework2{
	    position: absolute;
    width: 100%;
    top: 20%;
    right: 0%;
    z-index: 100;
}
.homework3{
    position: absolute;
    width: 120%;
    top: 20%;
    left: -10%;
    z-index: 100;
}


/* -------------------------------- 

Page Transitions

-------------------------------- */
body::after, body::before {
  /* these are the 2 half blocks which cover the content once the animation is triggered */
  content: '';
  height: 50vh;
  width: 100%;
  position: fixed;
  left: 0;
  background-color: #040608;
  z-index: 10000;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: -webkit-transform 0.4s 0.4s;
  -moz-transition: -moz-transform 0.4s 0.4s;
  transition: transform 0.4s 0.4s;
}
body::before {
  top: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
body::after {
  bottom: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
body.page-is-changing::after, body.page-is-changing::before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s 0s;
  -moz-transition: -moz-transform 0.4s 0s;
  transition: transform 0.4s 0s;
}

main {
  height: 100vh;
  text-align: center;
}
main .cd-main-content {
  position: relative;
  height: calc(100vh - 20px);
}
main .cd-main-content > div {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
main .cd-main-content::after, main .cd-main-content::before {
  /* these are the 2 gradient overlay at the top and bottom of the .cd-main-content - to indicate that you can scroll */
  content: '';
  position: absolute;
  left: 0;
  height: 50px;
  width: 100%;
}
main .cd-main-content::before {
  top: 0;
}
main .cd-main-content::after {
  bottom: 0;
}
main .cd-main-content.cd-index {
  /* .cd-main-content basic style - index page */
  /* vertically center its content */
  display: table;
  width: 100%;
}
main .cd-main-content.cd-index > div {
  /* vertically center the content inside the .cd-index */
  display: table-cell;
  vertical-align: middle;
}
main .cd-main-content.cd-about {
  display: inherit;
  width: 100%;
  /* .cd-main-content basic style - about page */
}
main .cd-main-content.cd-londonborn {
  /* .cd-main-content basic style - about page */
  display: table;
  width: 100%;

}
main .cd-main-content.cd-valeyo {
  /* .cd-main-content basic style - about page */
  display: table;
  width: 100%;

}
main .cd-main-content.cd-subaru {
  /* .cd-main-content basic style - about page */
  display: table;
  width: 100%;
}
main .cd-main-content.cd-contact {
  /* .cd-main-content basic style - about page */
  display: table;
  width: 100%;
}

.cd-cover-layer {
  /* layer that covers the content when the animation is triggered */
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #040608;
  -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
  -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
  transition: opacity 0.4s 0.4s, visibility 0s 0.8s;
}
.cd-about .cd-cover-layer {
  background-color: #040608;
}
.cd-londonborn .cd-cover-layer {
  background-color: #040608;
}
.cd-valeyo .cd-cover-layer {
  background-color: #040608;
}
.cd-subaru .cd-cover-layer {
  background-color: #040608;
}
.cd-contact .cd-cover-layer {
  background-color: #040608;
}
.page-is-changing .cd-cover-layer {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-loading-bar {
  /* this is the loding bar - visible while switching from one page to the following one */
  position: fixed;
  z-index: 20000;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 90%;
  background-color: #273040;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.4s, -webkit-transform 0.4s 0s ease-in;
  -moz-transition: visibility 0s 0.4s, -moz-transform 0.4s 0s ease-in;
  transition: visibility 0s 0.4s, transform 0.4s 0s ease-in;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cd-about .cd-loading-bar {
  background-color: #f47b22;
}
.cd-about .cd-loading-bar::before {
  background-color: #273040;
}
.cd-londonborn .cd-loading-bar {
  background-color: #f47b22;
}
.cd-londonborn .cd-loading-bar::before {
  background-color: #273040;
}
.cd-valeyo .cd-loading-bar {
  background-color: #f47b22;
}
.cd-valeyo .cd-loading-bar::before {
  background-color: #273040;
}
.cd-subaru .cd-loading-bar {
  background-color: #f47b22;
}
.cd-subaru .cd-loading-bar::before {
  background-color: #273040;
}
.cd-contact .cd-loading-bar {
  background-color: #f47b22;
}
.cd-contact .cd-loading-bar::before {
  background-color: #273040;
}
.cd-loading-bar::before {
  /* this is the progress bar inside the loading bar */
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #f47b22;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.page-is-changing .cd-loading-bar {
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(-50%) scaleX(0.3);
  -moz-transform: translateX(-50%) translateY(-50%) scaleX(0.3);
  -ms-transform: translateX(-50%) translateY(-50%) scaleX(0.3);
  -o-transform: translateX(-50%) translateY(-50%) scaleX(0.3);
  transform: translateX(-50%) translateY(-50%) scaleX(0.3);
  -webkit-transition: visibility 0s 0.3s, -webkit-transform 0.4s 0.4s;
  -moz-transition: visibility 0s 0.3s, -moz-transform 0.4s 0.4s;
  transition: visibility 0s 0.3s, transform 0.4s 0.4s;
}
.page-is-changing .cd-loading-bar::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.8s 0.8s ease-in;
  -moz-transition: -moz-transform 0.8s 0.8s ease-in;
  transition: transform 0.8s 0.8s ease-in;
}
/* -------------------------------- 

QUERY START

-------------------------------- */

/* -------------------------------- 

QUERY 650px

-------------------------------- */
@media only screen and (min-width: 650px) {
		.fluiddark {
	z-index: -200;
	position: absolute;
	top:-5%;
	left:0%;
			display: inline;
	  width: 650px;
  height: 650px;
	border: #273040 solid 2px;
	  border-radius: 50%;
	box-shadow: inset 0px 0px 40px rgba(0,0,0,.2), 0 0 90px rgba(0,0,0,.8);
}


.workpix img{
	width:74%;
}
.workpix{
	margin-top: 5%;
}
.workpix.subpic img{
	width:75%;
}
.workpix.valpic img{
	width:80%;
}
.worklbbanner{
	background-size: 70%;
}
.worksubarubanner{
	background-size: 70%;
}
.workvaleyobanner{
	background-size: 70%;
}
.wrapperwork {
	background-size: 70%;
}

.wrapper {
	background: url(../images/bubble7.png) bottom right no-repeat, url(../images/lines.png) top center repeat-y #273040;
	background-size: 18%, 70%;
}
.wrapper.contacty {
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 70%;
}
.wrapper.abouter {
	background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 70%;
}
.wrapper.homery {
	background: url(../images/bubble2.png) 154% 82vh no-repeat, url(../images/lines.png) top center repeat-y #273040;
	background-size: 53%, 70%;
}
.workbannerpic{
        position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -27%;
	margin-bottom: -1px;
    width: 55%;
    z-index: 1;
}
.contactbanner2{
	background-size: 70%;
}
.contactbanner{
		background: url(../images/bubble5.png) bottom left no-repeat, url(../images/bubble4.png) top right no-repeat;
	background-size: 29%, 20%;
}
.paperplane{
    position: absolute;
    top: 37vh;
    left: 50%;
    margin-left: -32%;
    /* margin-bottom: -1px; */
    width: 68%;
    z-index: 1;
		  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}



.skillz p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.abouttext2{
	padding: 6% 6% 6% 6%;
    width: 100%;
	z-index: 4;
	position: relative;
    margin: 0 auto 10%;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.abouttext2 h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 8vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.abouttext2 p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 24px;
	line-height: 40px;
}
.abouttext p{
	    color: #fff;
    text-align: center;
    font-family: SofiaPro-Regular;
    font-weight: normal;
    font-size: 26px;
    line-height: 40px;
    margin-top: 30px;
}

.andy{
    position: absolute;
    bottom: -2px;
    left: 0;
	text-align: center;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.andy img{
	height: 100%;
	width: auto;
}
.bannersplatabout{
	top: 55%;
	left: 50%;
	margin-left: -400px;
	margin-top: -325px;
	width: 800px;
	height: 800px;
}

.aboutbanner{
	height: 100vh;
    z-index: 2;
    position: relative;
	        width: 100%;
		background: url(../images/lines.png) top center repeat-y #273040;
	background-size: 70%;
}
.fluiddark.abouty {
  background:#f47b22;
	z-index: -200;
	position: absolute;
	top:0px;
	left:125px;
	  width: 550px;
  height: 550px;
	border: none;
	  border-radius: 50%;
	box-shadow:none;
	display: block;
}
.contacttxt{
	width: 100%;
	padding-top: 41vh;
	text-align: center;
	margin: 0 auto;
	    position: relative;
    z-index: 2;
}
.contacttxt h1{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 10vw;
	letter-spacing: -2px;
}
.contacttxt a{
	color: #f47b22;
	text-decoration: underline;
}
.bannersplatfoot{
	position: absolute;
	top: 47%;
	left: 50%;
	margin-left: -325px;
	margin-top: -325px;
	width: 650px;
	height: 650px;
	z-index: 0;
}
.canada{
	position:absolute;
	width: 450px;
	top:154px;
	left: 105px;
	z-index: 100;
}

.worktext p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.worktext2 p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.worktext a{
	    color: #f47b22;
    text-decoration: underline;
    padding-top: 25px;
    display: block;
    font-family: SofiaPro-SemiBold;
    font-size: 23px;
}
.worktext2 a{
	    color: #f47b22;
    text-decoration: underline;
    padding-top: 25px;
    display: block;
    font-family: SofiaPro-SemiBold;
    font-size: 23px;
}


#preloader {
	position:relative;
    width: 100px;
    height: 100px;
    top: 50%;
    margin: -50px auto 0;
	-webkit-animation: spin-1 2s infinite linear;
	        animation: spin-1 2s infinite linear;
}
.planewrap{
	margin-left: -155px;
	margin-top: -166px;
	width: 310px;
}
.planey{
display: inline;
	}
.planeymob{
	display: none;
}

.logo{
  height: 60px;
  width: 60px;
  top: 5px;
  left: 5px;
}

.bannersplat{
	margin-left: -325px;
	margin-top: -325px;
	width: 650px;
	height: 650px;
}
.bannertxt{
	padding-top: 39vh;
}
.bannertxtc{
	padding-top: 39vh;
}
.banner{
		background: url(../images/bubble1.png) top left no-repeat;
	background-size: 22%;
}
.fluid {
  width: 250px;
  height: 250px;
  margin: 190px auto;
}
.scotty{
	width: 500px;
	top:190px;
	left: 75px;
}
	.scotty img{
width: 70%;
}
.scroll {
  bottom: 30px;
  left: 50%;
  margin-left: -4px;
  width: 10px;
  height: 48px;
}
.scroll2 {
  bottom: 30px;
  left: 50%;
  margin-left: -4px;
  width: 10px;
  height: 48px;
}
.bubble-wrap {
  height: 60px;
  width: 60px;
  top: 5px;
  right: 5px;
}
.bubble {
  height: 60px;
  width: 60px;
  top: 5px;
  right: 5px;
}
.bubbleback {
  height: 60px;
  width: 60px;
  top: 5px;
  right: 5px;
}
.bar {
  background-color: #fff;
  height: 3px;
  border-radius: 5px;
  right: 15px;
  top: 21px;
}
.first {
  position: absolute;
	  width: 30px;
}

.first.active {
  margin-top: 10px;
}

.second {
  margin-top: 8px;
	  width: 30px;
}

.second.active {
  opacity: 0;
  margin-top: 10px;
}

.third {
  margin-top: 16px;
	  width: 15px;
}

.third.active {
  margin-top: 10px;
	width: 30px;
}
.homeworksplat{
position: absolute;
    top: 7%;
    left: -7%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.navcolumn{
	widows: 33%;
	float: none;
    margin: 0 50px 70px 0;
}
.navcolumn a{
	font-family: SofiaPro-regular;
    text-align: left;
    margin-top: 30px;
    display: block;
    font-size: 30px;
    color: #fff;
    text-decoration: underline;
}
.navcolumn p{
	font-family: SofiaPro-regular;
    text-align: left;
    margin-top: 30px;
    display: block;
	line-height: inherit;
    font-size: 30px;
    color: #585f6d;
    text-decoration:line-through;
}
.navcolumn h2{
	    font-family: SofiaPro-Bold;
    text-align: left;
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 4px;
    color: #f47b22;
    text-transform: uppercase;
}
.travels h4{
	    font-family: SofiaPro-Bold;
    margin-top: 15px;
    font-size: 15px;
    letter-spacing: 4px;
    color: #f47b22;
    text-transform: uppercase;
}
.homeworksplat2{
position: absolute;
    top: 7%;
    right: 40%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.travels p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 24px;
	line-height: 38px;
	margin-top: 30px;
}
.fullshot{
	padding: 0 5%;
	margin: 10% 0;
	display: block;
}
.homework1{
    position: absolute;
width: 45%;
    top: 15%;
    left: 6%;
    z-index: 100;
}
.homework2{
	    position: absolute;
    width: 45%;
    top: 20%;
    right: 50%;
    z-index: 100;
}
.homework3{
    position: absolute;
    width: 53%;
    top: 23%;
    left: 0;
    z-index: 100;
}
.fluiddark.lbblob {
  background:url(../images/work-lb-background.png) top center no-repeat #0e131c;
	background-size: cover;
	z-index: 0;
	position: absolute;
	top:10%;
	left:50%;
	margin-left: -350px;
	  width: 700px;
  height: 700px;
	border: none;
	  border-radius: 50%;
	box-shadow: 0 0 150px #000000a6;
}
.fluiddark.subblob {
  background:#004d8c;
	background-size: cover;
	z-index: 0;
	position: absolute;
	top:10%;
	left:50%;
	margin-left: -350px;
	  width: 700px;
  height: 700px;
	border: none;
	  border-radius: 50%;
	box-shadow: 0 0 150px #000;
}
.fluiddark.valeyblob {
  background:#101011;
	background-size: cover;
	z-index: 0;
	position: absolute;
	top:10%;
	left:50%;
	border: none;
	margin-left: -350px;
	  width: 700px;
  height: 700px;
	  border-radius: 50%;
	box-shadow: none;
}
.brandpicoversub{
	width:100%;
	position: absolute;
	top: 30%;
	height: 100%;
	left: 0;
	z-index: 100;
}
.brandpicoverval{
	width:95%;
	position: absolute;
	top: 20%;
	height: 100%;
	left: 2.5%;
	z-index: 100;
}
.brandpic{
    width: 100%;
    position: relative;
    height: 85vh;
    margin-top: 0;
    background: url(../images/wavy.png) center center no-repeat;
    background-size: 150%;
}
.workintrobox{
	padding: 16% 10% 16% 10%;
    width: 100%;
    margin: 0 auto;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.workintrobox h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 8vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.workintrobox p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 38px;
}
.wires{
	padding: 0 11%;
}
.wiresleft{
	width:100%;
	float: none;
}
.wiresright{
	width:100%;
	float: none;
}
.wiresleft h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 7vw;
	letter-spacing: -2px;
}
.wiresleft p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 38px;
	margin: 30px 0 30px 0;
}
.fontsncolours h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 7vw;
	margin-bottom: 50px;
	letter-spacing: -1px;
}
.font{
	width: 70%;
	float: none;
	clear: both;
	margin: 0 auto 40px auto;
}
.colours{
	width: 65%;
	float: none;
	margin: 0 auto;
}
	.mobileshots{
	display: none;
}
}

/* -------------------------------- 

QUERY 770px

-------------------------------- */
@media only screen and (min-width: 770px) {
  main .cd-main-content {
    height: 100%;
  }
.paperplane{
    position: absolute;
    top: 30vh;
    left: 50%;
    margin-left: -25%;
    /* margin-bottom: -1px; */
    width: 50%;
    z-index: 1;
		  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.fullshot{
	padding: 0 15%;
	margin: 10% 0;
	display: block;
}
.brandpicoversub{
	width:50%;
	position: absolute;
	top: 20%;
	height: 100%;
	left: 25%;
	z-index: 100;
}
.brandpicoverval{
	width:50%;
	position: absolute;
	top: 20%;
	height: 100%;
	left: 25%;
	z-index: 100;
}
.brandpic{
	width:100%;
	position: relative;
		height: 110vh;
	margin-top: 0;
	background: url(../images/wavy.png) center center no-repeat;
	background-size: 100%;
}
.workbannersubpic{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -14%;
    /* margin-bottom: -1px; */
    width: 28%;
    z-index: 1;
}
.workbannervalpic{
position: absolute;
    top: 50%;
    left: 0;
    /* margin-left: -12%; */
    margin-top: -9%;
    width: 60%;
    z-index: 1;
}
.nextsubbanner{
    width: 70%;
    margin: 6% auto 10%;
    background:url(../images/key.png)top center no-repeat #1b3ed3;
    background-size: 40%;
    box-shadow: 0 0 150px #000000a6;
}
.nextsubbanner a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 5vw;
	letter-spacing: -4px;
	text-decoration: none;
		display:block;
	padding:20% 0;
}
.nextlbbanner{
    width: 70%;
    margin: 6% auto 10%;
    background: url(../images/wine.png) top center no-repeat #ff4338;
    background-size: 30%;
    box-shadow: 0 0 150px #000000a6;
}
.nextlbbanner a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 5vw;
	letter-spacing: -4px;
	text-decoration: none;
		display:block;
	padding:20% 0;
}
.nextvalbanner{
    width: 70%;
    margin: 6% auto 10%;
    background: url(../images/hand.png) 0% 92% no-repeat #00d4d8;
    background-size: 60%;
    box-shadow: 0 0 150px #000000a6;
}
.nextvalbanner a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 5vw;
	letter-spacing: -4px;
	text-decoration: none;
	display:block;
	padding:20% 0;
}
.mobileshots{
	display: block;
	padding: 0 15%;
}

.shot1{
	width:31%;
	float: left;
	padding: 20px;
	margin: 0;
    background-color: #273040f2;
    box-shadow: 0 0 150px #000000a6;
}
.shot2{
	width:31%;
	float: right;
	margin: 0 auto;
		padding: 20px;
    background-color: #273040f2;
    box-shadow: 0 0 150px #000000a6;
}
.shot3{
	width:31%;
	margin: 0 auto;
		padding: 20px;
    background-color: #273040f2;
    box-shadow: 0 0 150px #000000a6;
}
.fontsncolours{
	padding: 6% 8% 6% 8%;
    width: 70%;
    margin: 7% auto 10%;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.fontsncolours h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 4vw;
	margin-bottom: 60px;
	letter-spacing: -1px;
}
.font{
	width: 55%;
	float: left;
	clear: both;
	margin: 0;
}
.colours{
	width: 35%;
	float: right;
	margin: 0;
}

.wires{
	padding: 0 13.5% 0 15%;
}
.wiresleft{
	width:45%;
	float: left;
}
.wiresright{
	width:50%;
	float: right;
}
.wiresleft h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: left;
	font-weight: normal;
	font-size: 4vw;
	letter-spacing: -2px;
}
.wiresleft p{
	color: #7c8898;
	text-align: left;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 38px;
	margin: 30px 0 0 0;
}
.workpix img{
	width:55%;
}
.workpix.subpic img{
	width:65%;
}
.workpix.valpic img{
	width:70%;
}
.workbannerpic{
        position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -12%;
	margin-bottom: -1px;
    width: 25%;
    z-index: 1;
}
.clients{
	padding: 6% 6% 10% 6%;
    width: 70%;
	z-index: 4;
	position: relative;
    margin: 0 auto;
    background-color: transparent;
    box-shadow: none;
}
/**form**/
.bluewrapcontact{
	    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
    padding: 6%;
    width: 70%;
    margin: 10% auto 10%;
}
.fieldlabel{
	font-size: 20px;
	margin-top: 30px;
}
input::placeholder {
	font-size: 18px;
}
.formmessagestyle::placeholder {
	font-size: 18px;
}
.formright{
	width:49%;
	float: right;
}
.formleft{
	width:49%;
	float: left;
}
.formmessage{
	width:100%;
}
input[type=text],input[type=email], select {
    padding: 25px 25px;
    margin: 8px 0;
	font-size: 18px;
}
.formmessagestyle {
    padding: 25px 25px;
    margin: 8px 0;
	min-height: 15vh;
	font-size: 18px;
}

input[type=submit] {
	font-size: 22px;
    margin: 20px 0;
}
.clients img{
	width: 80%;
}
.clients h2{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	text-align: center;
	font-weight: normal;
	font-size: 3vw;
	letter-spacing: -1px;
	margin-bottom: 60px;
}
.bannertxt2 h1{
    font-size: 14vw;
    letter-spacing: -8px;
}
.aboutfoot{
	width: 100%;
	padding-bottom: 11%;
}
.travelspic2{
	position: absolute;
	top:58px;
	right:18.5%;
	z-index: 100;
	width: 270px;
	margin: 0;
}
.planewrap2{
	margin-right: -120px;
	margin-top: -166px;
	right: 50%;
	width: 240px;
}
.aboutwork{
    width: 70%;
    margin: 0 auto;
    background: url(../images/wine.png) top center no-repeat #ff4338;
    background-size: 30%;
    box-shadow: 0 0 150px #000000a6;
}
.aboutwork a{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 5vw;
	letter-spacing: -4px;
	text-decoration: none;
		display:block;
	padding:20% 0;
}
.travels p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 35px;
	margin-top: 30px;
}
.travels h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 52px;
	margin-top: 70px;
	letter-spacing: -1px;
}
.travels3{
	    width: 44%;
    float: left;
    padding: 0 0 0 9.5%;
    text-align: left;
	margin-top: -5%;
}
.travels1{
width: 44%;
    float: left;
    padding: 0 0 0 9.5%;
    text-align: left;
}
.travels2{
    width: 44%;
    float: right;
    padding: 0 9.5% 0 0;
    text-align: right;
	margin: 50% 0 0 0;
	position: relative;
}
.travelspic{
	position: relative;
	top:310px;
	left:0;
	width: 240px;
	z-index: 100;
}
.travelspic3{
	position: relative;
	top:268px;
	left:-10px;
	width: 270px;
	z-index: 100;
}
.travels{
padding: 0 7% 5%;
    background: url(../images/wavy.png) top center no-repeat;
	background-color: none;
    background-size: 100%;
	   z-index: 0;
}
.travels h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 52px;
	margin-top: 70px;
	letter-spacing: -1px;
}
.abouttext2{
	padding: 6% 6% 6% 6%;
    width: 70%;
	z-index: 4;
	position: relative;
    margin: 0 auto 10%;
    background-color: #273040;
    box-shadow: 0px 0px 115px #000000a6;
}
.abouttext2 h2{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align: center;
	font-weight: normal;
	font-size: 4vw;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.abouttext2 p{
	color: #7c8898;
	text-align: center;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 40px;
}
.navcolumn{
	widows: 33%;
	float: left;
	margin: 0 100px 0 0;
}
.navcolumn a{
	font-family: SofiaPro-regular;
    text-align: left;
    margin-top: 30px;
    display: block;
    font-size: 30px;
    color: #fff;
    text-decoration: underline;
}
	.navcolumn p{
	font-family: SofiaPro-regular;
    text-align: left;
    margin-top: 30px;
		line-height: inherit;
    display: block;
    font-size: 30px;
    color: #585f6d;
    text-decoration:line-through;
}
.navcolumn h2{
	    font-family: SofiaPro-Bold;
    text-align: left;
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 4px;
    color: #f47b22;
    text-transform: uppercase;
}
.contactbanner{
		background: url(../images/bubble5.png) bottom left no-repeat, url(../images/bubble4.png) top right no-repeat;
	background-size: 20%, 16%;
}
.contacttxt{
	width: 100%;
	padding-top: 38vh;
	text-align: center;
	margin: 0 auto;
	    position: relative;
    z-index: 2;
}
.contacttxt h1{
	color:#fff;
	font-family:SofiaPro-Bold;
	text-align:center;
	font-weight: normal;
		z-index: 2000;
	font-size: 7vw;
	letter-spacing: -2px;
}
.contacttxt a{
	color: #f47b22;
	text-decoration: underline;
}
.workclose img{
	width:100%;
}
.workclose{
width: 100%;
	padding: 0 0 10vh 0;
}
.worktext a{
	    color: #f47b22;
    text-decoration: underline;
    padding-top: 25px;
    display: block;
    font-family: SofiaPro-SemiBold;
    font-size: 23px;
}
.worktext2 a{
	    color: #f47b22;
    text-decoration: underline;
    padding-top: 25px;
    display: block;
    font-family: SofiaPro-SemiBold;
    font-size: 23px;
}
.worktext h3{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 70px;
	letter-spacing: -1px;
}
.travels h4{
	    font-family: SofiaPro-Bold;
    margin-top: 15px;
    font-size: 13px;
    letter-spacing: 4px;
    color: #f47b22;
    text-transform: uppercase;
}
.worktext p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.worktext2 p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 22px;
	line-height: 35px;
	margin-top: 30px;
}
.worktext2 h3{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 70px;
	letter-spacing: -1px;
}
.worktext{
	padding-left: 20px;
	text-align: right;
}
.work {
  width: 100%;
	z-index: 10;
	position: relative;
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	box-shadow: none;
}
.work1{
	padding: 10% 5% 10%;
		position: relative;
}
.work2{
	padding: 10% 5% 10%;
		position: relative;
}
.work3{
	padding: 10% 5% 0;
	position: relative;
}
.workpic{
	width: 50%;
	float: left;
	height: 600px;
}
.workpic2{
	width: 50%;
	float: right;
	height: 600px;
}
.workintrobox{
	padding: 11% 6% 6% 6%;
    width: 70%;
    margin: 0 auto;
}
.workintrocont{
	padding: 12% 0 12%;
    margin: -22% 0 0;
}
.workintrobox h2{
	font-size: 4vw;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: -1px;
}
.workintrobox p{
	font-size: 20px;
	text-align: center;
	line-height: 40px;
}
.workintro{
width: 44%;
    float: right;
    padding: 0 11% 0 0;
	text-align: right;
}
.workintro2{
width: 44%;
	float: left;
	padding: 0 0 0 11%;
	text-align: left;
}
.workintro3{
width: 44%;
    float: right;
    padding: 0 9.5% 0 0;
    margin-top: 10%;
	text-align: right;
}
.homeworksplat{
position: absolute;
    top: 7%;
    left: 7%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.homeworksplat2{
position: absolute;
    top: 7%;
    right: 7%;
    width: 500px;
    height: 500px;
    z-index: 0;
}
.fluidbig {
  width: 500px;
  height: 500px;
  background: #f47b22;
  margin: 0 auto 0 0;
  border-radius: 50%;
  animation: rotate 30s infinite;
}
.fluidbig.righty {
  margin: 0 0 0 auto;
}
.homework1{
    position: absolute;
width: 33%;
    top: 15%;
    left: 14%;
    z-index: 100;
}
.homework2{
	    position: absolute;
    width: 34%;
    top: 20%;
    right: 12.5%;
    z-index: 100;
}
.homework3{
    position: absolute;
    width: 39%;
    top: 23%;
    left: 9.5%;
    z-index: 100;
}
.skillzpic2{
	position: absolute;
	top:106px;
	right:18.5%;
	z-index: 100;
	width: 240px;
	margin: 0;
}
.skillz p{
	color: #7c8898;
	font-family:SofiaPro-Regular;
	font-weight: normal;
	font-size: 20px;
	line-height: 35px;
	margin-top: 30px;
}
.skillz h3{
	color: #fff;
	font-family:SofiaPro-SemiBold;
	font-weight: normal;
	font-size: 60px;
	margin-top: 70px;
	letter-spacing: -1px;
}
.design{
	    width: 44%;
    float: left;
    padding: 0 0 0 9.5%;
    text-align: left;
	margin-top: -5%;
}
.direction{
width: 44%;
    float: left;
    padding: 0 0 0 9.5%;
    text-align: left;
}
.strategy{
    width: 44%;
    float: right;
    padding: 0 9.5% 0 0;
    text-align: right;
	margin: 50% 0 0 0;
	position: relative;
}
.skillzpic{
	position: relative;
	top:365px;
	left:0;
	width: 240px;
	z-index: 100;
}
.fluid.skilly{
	margin:64px auto 0 0;
	background: #1a202b;
	width: 230px;
	height: 230px;
}
.fluid.skillyright{
	margin:64px 0 0 auto;
	background: #1a202b;
	width: 230px;
	height: 230px;
}
.skillz{
padding: 0 7% 15%;
    background: url(../images/wavy.png) top center no-repeat, url(../images/bubble3.png) 140% 100% no-repeat;
	background-color: transparent;
    background-size: 100%, 44%;
	   z-index: 0;
}
.wrapper.homery {
	background: url(../images/bubble2.png) 140% 6% no-repeat, url(../images/lines.png) top center repeat-y #273040;
	background-size: 44%, 70%;
}
.leftylink{
    left: -3px;
    font-size: 18px;
	display: block;
}
.rightylink{
    right: -13px;
    font-size: 18px;
	display: block;
}
.leftbar{
    top: 0;
    left: 0;
    position: fixed;
    z-index: 11;
	width: 70px;
	background-color: #1a202b;
	height: 100%;
}
.abouttext h2{
	color:#fff;
	font-family:SofiaPro-SemiBold;
	text-align: center;
	font-weight: normal;
	font-size: 5vw;
	letter-spacing: -1px;
}
.abouttext p{
	    color: #fff;
    text-align: center;
    font-family: SofiaPro-Regular;
    font-weight: normal;
    font-size: 30px;
    line-height: 44px;
    margin-top: 30px;
}
.rightbar{
    top: 0;
    right: 0;
    position: fixed;
    z-index: 11;
	width: 70px;
	background-color: #1a202b;
	height: 100%;
}
.footright{
text-align: right;
    width: 30px;
    bottom: 30px;
    right: 20px;
}
.footleft{
    bottom: 93px;
    width: 190px;
    left: -63px;
    height: 40px;
}
.abouttext{
padding: 8% 8%;
    width: 60%;
    margin: 16% auto 4%;
    z-index: 500;
    position: relative;
    background-color: #273040bd;
    box-shadow: 0 0 150px #000000a6;
}
.footleft p{
	font-size: 16px;
}
  main.cd-index > div {
    padding-top: 200px;
  }
  main.cd-index > div {
    padding-top: 50px;
  }
  main p {
    font-size: 1.8rem;
    line-height: 2;
  }
  .cd-cover-layer {
    height: 100%;
    width: 100%;
  }
  .cd-loading-bar {
    width: 100%;
  }
.bannertxt h1{
	font-size: 9vw;
}
	.bannertxtc h1{
	font-size: 9vw;
}
main .cd-main-content.cd-about {
  display: table;
}
}
.cd-btn{
	color:#f47b22;
}