/*	Resets */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, 
img, ins, input, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup, 
menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
	display: block;
}

a img {border: 0;}

/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0; top:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; top:40;} }
@-moz-keyframes fadeIn { from { opacity:0; top:0;  opacity: 1\9; /* IE9 only */ } to { opacity:1; top:40;} }
@keyframes fadeIn { from { opacity:0; top:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; top:40;} }

.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn cubic-bezier(.79,-0.28,.38,1.09) 1;  /* call our keyframe named fadeIn, use animattion cubic-bezier and repeat it only 1 time */
	-moz-animation:fadeIn cubic-bezier(.79,-0.28,.38,1.09) 1;
	animation:fadeIn cubic-bezier(.79,-0.28,.38,1.09) 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:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.fade-in.one {
-webkit-animation-delay: 0.5s;
-moz-animation-delay: 0.5s;
animation-delay: 0.5s;
}

.fade-in.two {
-webkit-animation-delay: 0.8s;
-moz-animation-delay:0.8s;
animation-delay: 0.8s;
}

.fade-in.three {
-webkit-animation-delay: 1s;
-moz-animation-delay: 1s;
animation-delay: 1s;
}

.fade-in.four {
-webkit-animation-delay: 1.5s;
-moz-animation-delay: 1.5s;
animation-delay: 1.5s;
}

/*	Typography presets */

h1 {
	font-size: 100px;
	font-family: "europa",sans-serif;
	font-style: normal;
	font-weight: 700;
	line-height: 1em;
}

h2 {
	font-size: 48px;
	font-family: "europa",sans-serif;
	font-style: normal;
	font-weight: 700;
	line-height: 1em;
}

h3 {
	font-size: 34px;
	line-height: 1em;
	font-family: "europa",sans-serif;
	font-style: normal;
	font-weight: 400;
	margin-top: 5px;
}

h4{
	font-size: 16px;
    line-height: 1em;
    font-family: "europa",sans-serif;
    font-style: italic;
    font-weight: 200;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-top: 14px;
    margin-top: -45px;
    display: block;
    background: linear-gradient(#4444447a, #00000045);
    z-index: 1;
    position: relative;
    border-radius: 0px 0px 5px 5px;
}

h5{
	font-size: 24px;
    line-height: 1.5em;
    font-family: "europa",sans-serif;
    font-style: normal;
    font-weight: 200;
}

 html, body {
	width: 100%;	
	height: auto;
}

p{
	font-size: 24px;
	line-height: 1.65em;
  	font-family: "edita",serif;
	font-style: normal;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	color: #707070;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

.small, small {
	font-size: 13px;
	line-height: 18px;
}

/* COLOURS LIGHT */

@media (prefers-color-scheme: light) {
  	.orange-bg{
		background-color: #ff791f;
	}

	.white-bg{
		background-color: #fff;
	}

	.black-bg{
		background-color: #333;
	}

	.light-grey-bg{
		background-color: #efefef;
	}

	.white-text{
		color: #fff;
	}

	.black-text{
		color: #333;
	}

	.grey-text{
		color: #707070;
	}

	.orange-text{
		color: #ff791f;
	}

	.transition{
		transition: all 0.5s;
	}

	.shadow {
		box-shadow: 0 1.25rem 3.5rem rgba(0,0,0,.2);
	}
	.sticky{
		position: sticky;
		position: -webkit-sticky;
	  	position: -moz-sticky;
	  	position: -ms-sticky;
	  	position: -o-sticky;
		top:-5px;
		z-index: 1000;
		background-color: #fffffff2;
		-webkit-backdrop-filter: blur(25px);
		backdrop-filter: blur(25px);
		padding: 20px 30px !important;
		border-top: none !important;
		border-radius: 5px;
	}
	.work-link:hover h2{
	    color: #000 !important;
	    transition: all 0.5s;
	}
	.work-link-bottom{
		border-bottom: 1px solid #DBDBDB;
	}

	.work-link{
		cursor: pointer;
		transition: all 0.5s;
		padding: 40px;
	    border-top: 1px solid #DBDBDB;
	}
	.project-btn{
		width: 25px;
		height: 25px;
	    opacity: 0.25;
	    float: right;
	    margin-top: -55px;
	    transition: opacity 0.5s;
	    background-image: url(assets/open-close.svg);
	    background-size: contain;
	}
}

/* COLOURS DARK */

@media (prefers-color-scheme: dark) {
  	.orange-bg{
		background-color: #ff791f;
	}

	.white-bg{
		background-color: #fff;
	}

	.black-bg{
		background-color: #3a3a3a;
	}

	.light-grey-bg{
		background-color: #191919;
	}

	.white-text{
		color: #fff;
	}

	.black-text{
		color: #f5f5f5;
	}

	.grey-text{
		color: #949494
	}

	.orange-text{
		color: #ff791f;
	}

	.transition{
		transition: all 0.5s;
	}

	.shadow {
		box-shadow: 0 1.25rem 3.5rem rgba(0,0,0,.2);
	}
	.sticky{
		position: sticky;
		position: -webkit-sticky;
	  	position: -moz-sticky;
	  	position: -ms-sticky;
	  	position: -o-sticky;
		top:-5px;
		z-index: 1000;
		background-color: #252525f2;
		-webkit-backdrop-filter: blur(25px);
		backdrop-filter: blur(25px);
		padding: 20px 30px !important;
		border-top: none !important;
		border-radius: 5px;
	}
	.work-link:hover h2{
	    color: #cccccc !important;
	    transition: all 0.5s;
	}
	.work-link-bottom{
		border-bottom: 1px solid #464646;
	}

	.work-link{
		cursor: pointer;
		transition: all 0.5s;
		padding: 40px;
	    border-top: 1px solid #464646;
	}
	.project-btn{
		width: 25px;
		height: 25px;
	    opacity: 0.25;
	    float: right;
	    margin-top: -55px;
	    transition: opacity 0.5s;
	    background-image: url(assets/open-close_white.svg);
	    background-size: contain;
	}
}

.fixed{
	position: fixed;
	top: 0;
}	

.arrange-back{
	z-index: -100;
}

.arrange-front{
	z-index: 100;
}



.perspective{
	perspective: 1500px;
    -webkit-perspective: 1500px;
}

.background-preload{
	height: 0px;
	width: 0px;
}

.preload{
	height: 0px;
	width: 0px;
	display: none;
}

/* Selection colours */

::selection 	 	{background: #eee;}
::-moz-selection 	{background: #eee;}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: #eee;}



/*		Default Layout    */

.wrap {
	width: 85%;
	max-width: 1240px;
	color: #3f3f3f;
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
	margin: 0 auto;
/*	overflow: hidden;*/
	padding: 0 10px 0 10px;
}

.full-width{
	float: left;
	width: 100%;
}

.one-col{
	float: left;
	width: 100%;
}

.two-col{
	/*margin: 10px 0 10px 0;*/
	float: left;
	width: 50%;
}

.three-col{
	/*margin: 10px 0 10px 0;*/
	float: left;
	width: 33.33%;
}

.two_thirds-col{
	/*margin: 10px 0 10px 0;*/
	float: left;
	width: 66.66%;
}

.four-col{
	/*margin: 10px 0 10px 0;*/
	float: left;
	width: 25%;
}

.three_fourths-col{
	/*margin: 10px 0 10px 0;*/
	float: left;
	width: 75%;
}

.six-col{
	/*margin: 10px 0 10px 0;*/
	float: left;
	width: 16.66%;
}

.clear{
	clear: both;
}

.left{
	float: left !important;
}

.right{
	float: right !important;
}

.overflow{
	overflow: visible;
}

.content{
	padding: 10px;
}

.bottom-margin{
	margin-bottom: 50px;
}

.spacer{
	width: 100%;
	height: 20px;
	display: inline-block;
}

.footer{
	width: 100%;
	height:50px;
	display: inline-block;
}

.loader{
	display: none;
    width: 100%;
    height: 5px;
    z-index: 1000;
    position: relative;
	background-size: 200% 200% !important;
	background: linear-gradient(to right, #FFC107 0%,#ff791f 50%,#FFC107 50%,#ff791f 100%);
	-webkit-animation: Gradient 2s ease-in-out infinite;
	-moz-animation: Gradient 2s ease-in-out infinite;
	animation: Gradient 2s ease-in-out infinite;
    opacity: 0;
    transition: all 0.5s;
}

.loader-on{
	opacity: 1 !important;
	transition: all 0.5s;
}

input{
	 -webkit-appearance:none;
	 margin: 0 0 10px 0;
	 padding: 10px;
	 width: 50%;
	 border-style: none;
	 border: none;
	 outline: none;
	 width: 100%;
	 height: 44px;
}

/* HEADER */

.header-text{
	width: 50%;
}

.my-name{
	padding: 40px;
	margin-top: 140px;
	min-width: 534px;
	margin-left: -10px;
	border-radius: 5px;
}

.my-title{
	padding: 40px 40px 0px 30px;
}

.my-job{
	padding: 0px 40px 20px 30px;
}

.bio-text{
	padding: 10px 40px 100px 30px;
	width: 37.5%;
}

.profile-image{
    background-blend-mode: multiply;
    background-image: -webkit-linear-gradient(to bottom, #f89728, #ff6600), url(assets/Luuk-Himself-O.png);
    background-image: -o-linear-gradient(to bottom, #f89728, #ff6600), url(assets/Luuk-Himself-O.png);
    background-image: -moz-linear-gradient(to bottom, #f89728, #ff6600), url(assets/Luuk-Himself-O.png);
    background-image: linear-gradient(to bottom, #f89728, #ff6600), url(assets/Luuk-Himself-O.png);
	background-size: cover;
    background-position: bottom;
    max-width: 750px;
    max-height: 650px;
    min-height: 540px;
    height: 80%;
    width: 60%;
    position: absolute;
    left:50%;
    top: 40px;
    margin-left: -5%;
   	transform: rotateY(-7.5deg);
   	border-radius: 5px;
}

.contact-text{
	padding: 10px 40px 10px 40px;
	width: 100%;
}


/* WORK */

.work{
	display: none;	
	height: auto;
    overflow: visible !important;
}

.work-background{
	padding: 0px 20px !important;
	margin: 0;
	width: 100%;
}




.work-link h4{
	opacity: 0;
	transition: all 0.5s;
}

.work-link:hover h4{
	opacity: 1;
}

.work video{
	width: 100%;
}

.macbook-video{
	padding: 4.9% 12% 7.5% 12%;
    background-image: url(assets/AppleMacbookPro15-Outline.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.iphone-video{
	padding: 28.4% 7% 29% 7%;
    background-image: url(assets/Frame_SpaceGrey-Outline.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.small-macbook-video{
	width: 90%;
    margin: 50px auto;
}

.logo{
    margin: auto;
    display: table-cell;
    text-align: center;
    height: 40vh !important;
    max-height: 320px;
    width: 50% !important;
    max-width: 300px !important;
}

.work img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

.work .max-img {
	width: 120%;
	margin-left: -10%;
	height: auto;
}

.work .img-right{
	float: right;
	margin-right: -300px
}

.global-hero{
	height: 40vh;
	max-height: 320px;
	background-attachment: scroll;
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
    z-index: -1;
    width: 110%;
    margin-left: -5%;
    margin-top: -20px;
    transition: 0s linear;
    transition-property: background-position;
    border-radius: 5px;
}

.hero-title{
	color: #fff;
    position: absolute;
    bottom: 0;
    z-index: 1000;
    padding: 20px;
    display: table;
    margin: 10vh 5% 10px;
}

.work-link:hover .project-btn{
	opacity: 1;
	transition: opacity 0.5s;
}




/* PROJECT SPECIFIC*/

.adp-canada-Hero{
    background-image: -webkit-linear-gradient(to bottom, #c60c30, #9d0023), url(assets/adp/ADP-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #c60c30, #9d0023), url(assets/adp/ADP-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #c60c30, #9d0023), url(assets/adp/ADP-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #c60c30, #9d0023), url(assets/adp/ADP-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.adp-canada-color{
	background-color: #dc1e33;
}

.brookfield-Hero{
    background-image: -webkit-linear-gradient(to bottom, #00467f, #7699c1), url(assets/brookfield/Brookfield-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #00467f, #7699c1), url(assets/brookfield/Brookfield-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #00467f, #7699c1), url(assets/brookfield/Brookfield-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #00467f, #7699c1), url(assets/brookfield/Brookfield-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.brookfield-color{
	background-color: #00467f;
}

.brookfield-video-bg{
    float: left;
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px;
    /*margin: 10px 10px 10% 10px;*/
    border-radius: 5px;
    height: 65%;
    /*min-height: 430px;
    max-height: 460px;*/
    padding-top: 5%;
    background: linear-gradient(10deg, #00467f, #7699c1);
}

.brookfield-video-bg .video-description{
	margin-top: 20%;
    margin-left: -10%;
    margin-right: 10%;
}

.ttt-Hero{
    background-image: -webkit-linear-gradient(to bottom, #ed1f24, #790301), url(assets/ttt/TTT-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #ed1f24, #790301), url(assets/ttt/TTT-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #ed1f24, #790301), url(assets/ttt/TTT-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #ed1f24, #790301), url(assets/ttt/TTT-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.ttt-color{
	background-color: #ed1f24;
}

.ttt-video-bg{
    float: left;
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px;
   /* margin: 10px 10px 30% 10px;*/
    border-radius: 5px;
    height: 65%;
   /* min-height: 480px;
    max-height: 500px;*/
    padding-top: 5%;
    background: linear-gradient(10deg, #ed1f24, #790301);
}

.ttt-video-bg .video-description{
	margin-top: 25%;
    margin-left: 20%;
}

.video-description h3{
	margin-bottom: 20px;
    line-height: 1.3em;
}

.hydro-Hero{
    background-image: -webkit-linear-gradient(to bottom, #deb407, #bf9a00), url(assets/hydropool/Hydro-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #deb407, #bf9a00), url(assets/hydropool/Hydro-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #deb407, #bf9a00), url(assets/hydropool/Hydro-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #deb407, #bf9a00), url(assets/hydropool/Hydro-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.hydro-color{
	background-color: #cd9700;
}

.zimmer-Hero{
    background-image: -webkit-linear-gradient(to bottom, #199ddd, #1e3d8c), url(assets/zimmer/Zimmer-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #199ddd, #1e3d8c), url(assets/zimmer/Zimmer-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #199ddd, #1e3d8c), url(assets/zimmer/Zimmer-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #199ddd, #1e3d8c), url(assets/zimmer/Zimmer-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.zimmer-color{
	background-color: #099ad6;
}

.zimmer-video-bg{
    float: left;
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px;
    /*margin: 10px 10px 10% 10px;*/
    border-radius: 5px;
    height: 65%;
    /*min-height: 430px;
    max-height: 460px;*/
    padding-top: 5%;
    background: linear-gradient(10deg, #199ddd, #1e3d8c);
}

.zimmer-video-bg .video-description{
	margin-top: 20%;
    margin-left: -10%;
    margin-right: 10%;
}

.zimmer-video-bg .video-description-left{
	margin-top: 20%;
    margin-left: 20%;
}

.traderev-Hero{
	background-image: -webkit-linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.traderev-app-Hero{
	background-image: -webkit-linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-app-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-app-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-app-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #82bc00, #4b6a0a), url(assets/traderev/traderev-app-Hero-BW.jpg);
    background-blend-mode: multiply;
}

.traderev-color{
	background-color: #82bc00;
}

.traderev-app-video-bg{
    float: left;
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px;
    /*margin: 10px 10px 30% 10px;*/
    border-radius: 5px;
    height: 65%;
   /* min-height: 480px;
    max-height: 500px;*/
    padding-top: 5%;
    background: linear-gradient(10deg, #82bc00, #4b6a0a);
}

.traderev-app-video-bg .video-description{
	margin-top: 35%;
    margin-left: 10%;
}

.traderev-app-video-bg .video-description-left{
	margin-top: 35%;
}

.traderev-video-bg{
    float: left;
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px;
   /* margin: 10px 10px 10% 10px;*/
    border-radius: 5px;
    height: 65%;
    /*min-height: 430px;
    max-height: 460px;*/
    padding-top: 5%;
    background: linear-gradient(10deg, #82bc00, #4b6a0a);
}

.traderev-video-bg .video-description{
	margin-top: 20%;
    margin-left: -10%;
    margin-right: 10%;
}

.traderev-video-bg .video-description-left{
	margin-top: 20%;
    margin-left: 20%;
}

.inflow-Hero{
	background-image: -webkit-linear-gradient(to bottom, #F7C855, #D78829), url(assets/inflow/inflow-Hero-BW.jpg);
    background-image: -o-linear-gradient(to bottom, #F7C855, #D78829), url(assets/inflow/inflow-Hero-BW.jpg);
    background-image: -moz-linear-gradient(to bottom, #F7C855, #D78829), url(assets/inflow/inflow-Hero-BW.jpg);
    background-image: linear-gradient(to bottom, #F7C855, #D78829), url(assets/inflow/inflow-Hero-BW.jpg);
    background-blend-mode: multiply;
    background-position: center;
}

.inflow-color{
	background-color: #F7C855;
}

.inflow-video-bg{
    float: left;
    width: calc(100% - 20px);
    margin: 10px 10px 10px 10px;
    /*margin: 10px 10px 30% 10px;*/
    border-radius: 5px;
    height: 65%;
   /* min-height: 480px;
    max-height: 500px;*/
    padding-top: 5%;
    background: linear-gradient(10deg, #F7C855, #D78829);
}


/*		Tablet Layout: 640px.
		Inherits styles from: Default Layout.     */

@media only screen and (min-width: 640px) and (max-width: 1100px) {
	
	.wrap {
		width: 80%;
	}

	h1 {
		font-size: 60px;
		line-height: 1em;
	}

	h2 {
		font-size: 36px;
		line-height: 1em;
	}

	h3 {
		font-size: 24px;
		line-height: 1em;
		margin-top: 5px;
	}

	p{
		font-size: 20px;
	}

	.three-col{
		margin: 0;
		float: left;
		width: 100%;
	}

	.two_thirds-col{
		margin: 10px 0 10px 0;
		float: left;
		width: 100%;
	}

	.two-col {
		margin: 0;
		max-width: 450px;
		width: 50%;
	}

	.six-col{
		display: none;
	}

	.four-col{
		margin: 0;
		max-width: 450px;
		width: 25%;
	}

	.my-name{
		margin-top: 80px;
		min-width: 350px;
	}

	.profile-image{
	    max-width: 380px;
	    height: 380px;
	    min-height: auto;
	    width: 60%;
	    background-position: -130px center;
	    left: 50%;
	    top: 30px;
	    margin-left: -40px;
	}
	.project-btn {
	    margin-top: -45px;
	}

	.bio-text{
		padding: 10px 40px 40px 30px;
	}

	.work-background{
		width: 100%;
	}

	.small-video-col{
		width: 60%;
	    margin: auto;
	    float: none;
	    display: block;
	}

	.video-center{
		width: 60%;
		margin: auto;
		margin-bottom: 20px;
	}

	.small-macbook-video {
    	width: 90%;
    	margin: 0px auto;
    	margin-bottom: 15px;
	}

	.ttt-video-bg .video-description{
		margin:0;
		width: 60%;
    	margin: auto;
	}

	.ttt-video-bg, .traderev-app-video-bg{
		/*margin: 10px 10px 70% 10px;*/
	}

	.brookfield-video-bg .video-description, .zimmer-video-bg .video-description-left, .zimmer-video-bg .video-description, .traderev-video-bg .video-description, .traderev-app-video-bg .video-description, .traderev-app-video-bg .video-description-left, .ttt-video-bg .video-description, .traderev-video-bg .video-description-left{
    	margin: 0;
    	text-align: center;
	}

}



/*		Mobile Layout: 240px.
		Inherits styles from: Default Layout.    */

@media only screen and (max-width: 640px) {
	
	.wrap {
		width: 100%;
	}

	h1 {
		font-size: 36px;
		line-height: 1em;
	}

	h2 {
		font-size: 24px;
		line-height: 1em;
	}

	h3 {
		font-size: 18px;
		line-height: 1em;
		margin-top: 5px;
	}

	h4{
		padding-bottom: 5px;
	    padding-left: 10px;
	    padding-top: 5px;
	    margin-top: -25px;
	}

	h5{
		font-size: 16px;
	}

	p{
		font-size: 18px;
	}

	.one-col, .two-col, .three-col, .four-col, .two_thirds-col{
		max-width: 620px;
		width: 100%;
	}

	.six-col{
		display: none;
	}

	.content{
		padding: 10px;
	}

	.small-video-col{
		width: 60%;
	    margin: auto;
	    float: none;
	    display: block;
	}

	.sticky{
		padding: 15px !important;
	}

	.work-background{
		padding: 5px !important;
	}

	.global-hero{
		width: calc(100% + 20px);
		margin-left: -10px;
		border-radius: 0px;
	}

	.perspective{
		perspective: unset;
	    -webkit-perspective: unset;
	}

	.work .max-img {
		max-width: calc(100% + 20px);
		margin-left: -10px;
		height: auto;
	}

	.work .img-right{
		float: left;
		margin-right: 0px
	}

	.work-link{
		padding: 15px;
	}

	.header-text{
		width: 55%;
	}

	.video-center{
		width: 75%;
		margin: auto;
		margin-bottom: 20px;
	}

	.small-macbook-video {
    	width: 90%;
    	margin: 0px auto;
    	margin-bottom: 15px;
	}

	.video-description h3, .video-description-left h3{
		margin-bottom: 0px;
		margin-top: 0px;
	}

	.brookfield-video-bg .video-description, .zimmer-video-bg .video-description-left, .zimmer-video-bg .video-description, .traderev-video-bg .video-description, .traderev-app-video-bg .video-description, .traderev-app-video-bg .video-description-left, .ttt-video-bg .video-description, .traderev-video-bg .video-description-left{
    	margin: 0;
    	text-align: center;
	}

	.ttt-video-bg, .traderev-app-video-bg{
		/*margin: 10px 10px 50% 10px;
    	min-height: 200px;
   		max-height: 200px;*/
   		padding-top: 10px;
	}

	.brookfield-video-bg, .zimmer-video-bg, .traderev-video-bg{
		/*margin: 10px 10px 30% 10px;
    	min-height: 150px;
    	max-height: 150px;*/
    	padding-top: 10px;
    }

	.my-name{
		padding: 30px 30px 30px 25px;
	    margin-top: 50px;
	    margin-left: -20px;
	    min-width: 230px;
	    border-radius: 0px 5px 5px 0px;
	}

	.my-title{
		padding: 100px 10px 0px 5px;
	}

	.my-job{
		padding: 5px 10px 10px 5px;
	}

	.bio-text{
		padding: 5px 5px 30px 5px;
		width: 100%;
	}

	.profile-image{
	    min-width: 215px;
	    height: 230px;
	    min-height: auto;
	    width: 50%;
	    background-position: 0px bottom;
	    right: 0;
	    top: 30px;
	    left: initial;
	    margin-left: initial;
	   	transform: none;
	   	border-radius: 5px 0px 0px 5px;
	}
	
	.project-btn {
	    max-width: 15px;
	    max-height: 15px;
	    margin-top: -30px;
	}

	.footer {
	    height: 0px;
	}
}