@import url('https://fonts.googleapis.com/css?family=Squada+One');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	font-size: 2.1rem;
	font-family: 'Roboto', sans-serif;
}


/* ------------------------------------------------------------------------------------------------------------------------- */
/* header */
/* ------------------------------------------------------------------------------------------------------------------------- */

.header {
	position: fixed;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	width: 100%;
	z-index: 2;
	padding: 20px;
	align-items: center;

	-webkit-transition: -webkit-transform .5s ease-in;
	transition: -webkit-transform .5s ease-in;
	-o-transition: transform .5s ease-in;
	transition: transform .5s ease-in;
	transition: transform .5s ease-in, -webkit-transform .5s ease-in;
}

.mobile-nav-controller {
	display: none;
}

.header .mobile-nav-button {
	display: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header .mobile-nav-button .mobile-nav-button-icon {
    position: relative;
    display: block;
    height: 24px;
    width: 24px;
    float: right;
    margin-left: 10px;
    overflow: hidden;
}

.header .mobile-nav-button .mobile-nav-button-icon i {
    display: block;
    width: 24px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    opacity: 1;
    
    -webkit-transition: all .4s ease .1s;
	transition: all .4s ease .1s;
}

.header .mobile-nav-button .mobile-nav-button-icon i:nth-child(1) {
    top: 0;
}

.header .mobile-nav-button .mobile-nav-button-icon i:nth-child(2) {
	top: 8px;
}

.header .mobile-nav-button .mobile-nav-button-icon i:nth-child(3) {
	top: 16px;
}

.header nav,
.header .small-logo,
.header .cta-button {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

.header nav ul {
	list-style-type: none;
	display: flex;
    margin: 0;
    padding: 0;
}

.header nav ul li {
	margin: 0 40px;
}

.header nav ul li a {
	color: #fff;
	text-decoration: none;
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
    padding: 0px 8px;

    -webkit-transition: color .4s linear;
    -o-transition: color .4s linear;
    transition: color .4s linear;
}

.header nav ul li a:before {
	content: "";
	position: absolute;
	top: 7px;
    left: 0;
	width: 100%;
	height: 2px;
	background-color: #33FFC5;

	-webkit-transform: translateX(-102%);
	-ms-transform: translateX(-102%);
	transform: translateX(-102%);

	-webkit-transition: -webkit-transform .15s ease-in;
	transition: -webkit-transform .15s ease-in;
	-o-transition: transform .15s ease-in;
	transition: transform .15s ease-in;
	transition: transform .15s ease-in, -webkit-transform .15s ease-in;
}

.header nav ul li a:hover {
	color: #33FFC5;
}

.header nav ul li a:hover:before {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.header .small-logo {
	text-align: center;
}

.header .cta-button {
	text-align: right;
}

.header .cta-button a {
	background-color: #33FFC5;
	font-family: 'Squada One';
	font-size: 2.8rem;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	padding: 10px 30px 30px 10px;
	display: inline-block;
}

.header.dynamic {
	background-color: rgba(255, 255, 255, .96);
}

.header.dynamic nav ul li a {
	color: #000;
}

.header.dynamic .mobile-nav-button .mobile-nav-button-icon i {
	background-color: #000;
}

.header.hide {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of header */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* cover */
/* ------------------------------------------------------------------------------------------------------------------------- */

.cover {
	position: relative;
	height:100vh;
	overflow: hidden;
    background: #000;
}

.cover > img {
	position: absolute; 
  	top: 0; 
  	left: 0; 
	
  	min-width: 100%;
  	min-height: 100vh;
	
	filter: saturate(30%);
	opacity: 0.7;

	left: 50%;

    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cover .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8vw;

    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cover .logo svg {
	width: 100%;
	height: 100%;
}

.cover h1 {
	font-family: 'Squada One';
	font-size: 3vw;
	text-transform: uppercase;
	color: #fff;

}

.cover h1 b {
	color: #33FFC5;
	font-size: 4vw;
	font-weight: normal;
	display: block;
}

.cover h1:nth-child(3) {
	position:absolute;
	left: 10%;
	top: 20%;
	text-align: right;
}

.cover h1:nth-child(4) {
	position:absolute;
	right: 10%;
    bottom: 20%;
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of cover */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* works-selection */
/* ------------------------------------------------------------------------------------------------------------------------- */

.works-selection {
	padding: 0 calc((100% - 1280px) / 2);
	margin: 100px 0;
}

.works-selection h2 {
	position: absolute;
	left: calc((100% - 1330px) / 2);
	font-family: 'Squada One';
	font-size: 3.1rem;
	font-weight: normal;
	text-transform: uppercase;
    
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.works-grid-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-bottom: 50px;
}

.works-grid-wrapper .work-item {
	position: relative;
    display: block;
    height: 100%;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #fff;
}

.works-grid-wrapper .work-item:after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	left: 50%;
	top: 50%;
	/*border: 10px solid #33FFC5;*/
	border: 10px solid #000;

	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);

	-webkit-transition: -webkit-transform .15s ease-in;
	transition: -webkit-transform .15s ease-in;
	transition: transform .15s ease-in;
	transition: transform .15s ease-in, -webkit-transform .15s ease-in;
}

.works-grid-wrapper .main-column .work-item {
	cursor: default;
}

.works-grid-wrapper .main-column .work-item:after {
	content:"coming soon";
	width: auto;
	height: auto;
	padding: 10px;
}

.works-grid-wrapper .work-item img {
	opacity: 1;

	-webkit-transition: opacity .15s linear;
	transition: opacity .15s linear;
}

.works-grid-wrapper .work-item h3 {
	position: absolute;
	margin: 0;
	top: 20px;
	left: 10px;
	z-index: 1;
	overflow: hidden;
	color: transparent;
    padding: 0 10px;
    max-width: calc(100% - 20px);

	-webkit-transition: color .25s linear;
	transition: color .25s linear;
}

.works-grid-wrapper .work-item h3:before {
	content: "";
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	width: 100%;
	/*height: 30px;*/
	height: 100%;
	background-color: #33FFC5;
	z-index: -1;

	-webkit-transition: top .15s ease-in;
	transition: top .15s ease-in;
}

.works-grid-wrapper .work-item p {
	position: absolute;
	bottom: 20px;
	right: 20px;
	margin: 0;
	z-index: 1;
	overflow: hidden;
	color: transparent;

	-webkit-transition: color .25s linear;
	transition: color .25s linear;
}

.works-grid-wrapper .work-item p:before {
	content: "";
	position: absolute;
	display: block;
	top: -100%;
	left: 0;
	width: 100%;
	height: 20px;
	/*background-color: #33FFC5;*/
	background-color: rgba(255, 255, 255, .2);
	z-index: -1;

	-webkit-transition: top .25s ease-in;
	transition: top .25s ease-in;
}

.works-grid-wrapper .work-item:hover:after {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.works-grid-wrapper .work-item:hover img {
	opacity: 0.4;
}

.works-grid-wrapper .work-item:hover h3 {
	color: #000;

	-webkit-transition: color .25s ease-in;
	transition: color .25s ease-in;
}

.works-grid-wrapper .work-item:hover h3:before {
	top: 0%;
}

.works-grid-wrapper .work-item:hover p {
	color: #000;

	-webkit-transition: color .25s ease-in;
	transition: color .25s ease-in;
}

.works-grid-wrapper .work-item:hover p:before {
	top: 0%;
}

.works-grid-wrapper .main-column {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 calc(33% - 10px);
	flex: 1 1 calc(33% - 10px);
	max-width: calc(33% - 20px);
}

.works-grid-wrapper .secondary-column {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 calc(66% - 10px);
	flex: 1 1 calc(66% - 10px);
	max-width: calc(66% - 10px);
}

.works-grid-wrapper .main-column {
    margin: 10px 10px 10px 20px;
    height: 43vw;
    max-height: 562px;
}

.works-grid-wrapper .secondary-column {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.works-grid-wrapper .secondary-column > div {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 calc(50% - 20px);
	flex: 1 0 calc(50% - 20px);
	margin:10px;
}

.works-grid-wrapper .main-column .work-item {
	overflow: hidden;
}

.works-grid-wrapper .main-column .work-item img {
	width: auto;
    height: 100%;
    position:relative;
    left: 50%;
    
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.works-grid-wrapper .secondary-column > div .work-item img {
	width:100%;
}

/*.works-selection .more-button*/ 
.works-selection .more-pseudo-button {
	/*background-color: #33FFC5;*/
	font-family: 'Squada One';
	font-size: 2.8rem;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	padding: 10px 30px 30px 10px;
	position: relative;
    /*margin-left: calc(91%);*/
    /*margin-left: calc(100% - 116px);*/
    margin-left: calc(100% - 264px);
    user-select: none;
}

/*.works-selection .more-button:before*/
.works-selection .more-pseudo-button:before {
	content: "";
	width: 100%;
	height: 100%;
	position:absolute;
	bottom: 0;
	left:0;
	background-color: #33FFC5;
	max-height: 16px;
	z-index: -1;

	-webkit-transition: max-height .15s ease-in;
	transition: max-height .15s ease-in;
}

/*.works-selection .more-button:hover:before*/
.works-selection .more-pseudo-button:hover:before {
	max-height: 100%;
}


	/* ------------------------------------------------------------------------------------------------------------------------- */
	/* TOUCH DEVICES */
	/* ------------------------------------------------------------------------------------------------------------------------- */

.touchevents .works-selection .main-column .work-item:after {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.touchevents .works-selection .work-item h3 {
	color: #000;

	-webkit-transition: color .25s ease-in;
	transition: color .25s ease-in;
}

.touchevents .works-selection .work-item h3:before {
	top: 0%;
}

.touchevents .works-selection .work-item p {
	color: #000;

	-webkit-transition: color .25s ease-in;
	transition: color .25s ease-in;
}

.touchevents .works-selection .work-item p:before {
	top: 0%;
}

	/* ------------------------------------------------------------------------------------------------------------------------- */
	/* end of TOUCH DEVICES */
	/* ------------------------------------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of works-selection */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* works-selection */
/* ------------------------------------------------------------------------------------------------------------------------- */

.about-me {
	margin: 200px 0;
}

.about-me .content-wrapper {
	display:flex;
}

.about-me h2 {
	position: absolute;
	left: calc(((100% - 1280px) / 2) + 1330px);
	font-family: 'Squada One';
	font-size: 3.1rem;
	font-weight: normal;
	text-transform: uppercase;
	z-index:1;
    
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.about-me .highlighted-text {
	padding: 50px 30px 50px calc((100% - 1240px) / 2);
	background-color: #33FFC5;
	text-align: right;
	font-family: 'Squada One';
	font-size: 5rem;
	text-transform: uppercase;
	max-width: 50%;
}

.about-me .highlighted-text-author {
	display: block;
	margin-top:20px;
	font-size: 2.2rem;
	font-family: 'Roboto', sans-serif;
}

.about-me .text-content {
	padding: 50px calc((100% - 1240px) / 2) 50px 30px;
	line-height: 4.5rem;
	max-width: 50%;
}

.about-me .more-button {
	font-family: 'Squada One';
	font-size: 2.8rem;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	padding: 10px 30px 30px 10px;
	position: relative;
    margin-left: calc(((100% - 1280px) / 2) + 1174px);
}

.about-me .more-button:before {
	content: "";
	width: 100%;
	height: 100%;
	position:absolute;
	bottom: 0;
	left:0;
	background-color: #33FFC5;
	max-height: 16px;
	z-index: -1;

	-webkit-transition: max-height .15s ease-in;
	transition: max-height .15s ease-in;
}

.about-me .more-button:hover:before {
	max-height: 100%
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of works-selection */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* what-i-do */
/* ------------------------------------------------------------------------------------------------------------------------- */

.what-i-do {
	padding: 0 calc((100% - 1280px) / 2);
	margin: 200px 0;
}

.what-i-do h2 {
	position: absolute;
	left: calc((100% - 1240px) / 2);
	font-family: 'Squada One';
	font-size: 3.1rem;
	font-weight: normal;
	text-transform: uppercase;
	z-index:1;
    
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.what-i-do .flex-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.what-i-do .flex-wrapper div {
	min-width: 50%;
	padding-left: 220px;
}

.what-i-do .flex-wrapper div:nth-child(1),
.what-i-do .flex-wrapper div:nth-child(2) {
	margin-bottom: 120px;
}

.what-i-do .flex-wrapper div h3 {
	position: relative;
	font-family: 'Squada One';
	font-size: 5rem;
	font-weight: normal;
}

.what-i-do .flex-wrapper div h3:before {
	content: "";
	width: 52px;
	height: 52px;
	border: 9px solid #33FFC5;
	position: absolute;
    top: -9px;
    left: -16px;
	z-index: -1;
}

.what-i-do .flex-wrapper div ul {
	list-style-type: none;
}

.what-i-do .flex-wrapper div ul li {
	margin: 10px 0;
	font-size: 2.4rem;
	font-weight: bold;
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of what-i-do */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* what-i-do */
/* ------------------------------------------------------------------------------------------------------------------------- */

.news {
	padding: 0 calc((100% - 1280px) / 2);
	margin: 200px 0;
}

.news h2 {
	position: absolute;
	left: calc((100% - 1330px) / 2);
	font-family: 'Squada One';
	font-size: 3.1rem;
	font-weight: normal;
	text-transform: uppercase;
	z-index:1;
    
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.news .grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.news .grid > div {
	min-width: 25%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 25%;
	flex: 1 1 25%;
	height: 0;
	padding-bottom: 25%;
}

.news .grid > div a img {
	width: 100%;
}

.news .grid > div a {
	text-decoration: none;
	color: #000;
	line-height: 3.6rem;
}

.news .grid > div a h4 {
	margin: 0;
}

.news .grid > div.blog-post {
	min-width: 50%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	background-color: #33FFC5;
}

.news .grid > div.blog-post a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.news .grid > div.blog-post a .image-wrapper {
	max-width: 50%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
}

.news .grid > div.blog-post a h4 {
	max-width: 50%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;

	padding: 50px 25px;

	font-size: 2.4rem;
}

.news .grid > div.instagram-post h4 {
	display: none;
}

.news .grid > div.twitter-post {
	border: 13px solid #33FFC5;
}

.news .grid > div.twitter-post {
	padding-bottom: calc(25% - 26px);
	position: relative;
}

.news .grid > div.twitter-post a {
	position: absolute;
	padding: 80px 30px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of what-i-do */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* lets-talk */
/* ------------------------------------------------------------------------------------------------------------------------- */

.lets-talk {
	background-color: #33FFC5;
	font-family: 'Squada One';	
	font-size: 5rem;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lets-talk a {
	background-color: #fff;
	font-family: 'Squada One';
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	padding: 10px 30px 30px 10px;
	margin-left: 40px;
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of what-i-do */
/* ------------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------------- */
/* footer */
/* ------------------------------------------------------------------------------------------------------------------------- */

.footer {
	background-color: #000;
	padding: 20px;
}

.footer .social-links {
	margin: 20px 0 80px 0;
}

.footer .social-links ul {
	margin: 0;
	display: flex;
	list-style-type: none;
	justify-content: center;
	padding: 0 44%;
}

.footer .social-links ul li {
	margin: 0 20px;
}

.footer .social-links ul li:nth-child(4) span svg,
.footer .social-links ul li:nth-child(5) span svg {
	opacity: 0.3;
}

.footer .copy {
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
}

/* ------------------------------------------------------------------------------------------------------------------------- */
/* end of footer */
/* ------------------------------------------------------------------------------------------------------------------------- */


@media (max-width: 1450px) {

	.works-selection h2 {
		transform: none;
    	position: inherit;
    	padding: 0 10%;
	}

	.about-me h2 {
		transform: none;
    	position: inherit;
    	padding: 0 calc((100% - 1280px) / 2);
    	padding: 0 10%;
	}

	.about-me .more-button {
		margin-left: calc(100% - 116px);
	}

	.what-i-do h2 {
		transform: none;
    	position: inherit;
    	padding: 0 10%;
	}

	.news h2 {
		transform: none;
		padding: 0 10%;
	}
}

@media (max-width: 1200px) {

	.cover .logo {
		width: 18vw;
	}

	.cover h1 {
		font-size: 5vw;
	}

	.cover h1 b {
		font-size: 6vw;
	}

	.cover h1:nth-child(3) {
		top: 12%;
	}

	.cover h1:nth-child(4) {
	    bottom: 12%;
	}

	.what-i-do .flex-wrapper div {
		padding-left: 120px;
	}
}

@media (max-width: 890px) {

	.header .mobile-nav-button {
		display: inherit;
		z-index: 4;
	}

	.header nav {
		visibility: hidden;
		position:fixed;
		opacity: 0;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: #fff;

		-webkit-transition: opacity .4s linear;
		transition: opacity .4s linear;
	}

	.header nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		justify-content: space-evenly;
    	height: 50vh;
    	margin-top: 25vh;
        margin-left: 10%;
	}

	.header nav ul li {
		margin: 20px 0;
	}

	.header nav ul li a {
		font-size: 9rem;
	}

	.header .cta-button {
	    z-index: 4;
    	position: relative;
	}

	.mobile-nav-controller:checked~.header nav.no-js {
		visibility: visible;
	}

	.mobile-nav-controller:checked~.header .mobile-nav-button .mobile-nav-button-icon .mobile-nav-button-line:nth-child(1) {
		top:8px;

		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}

	.mobile-nav-controller:checked~.header .mobile-nav-button .mobile-nav-button-icon .mobile-nav-button-line:nth-child(2) {
		-webkit-transform: translateX(-32px);
		transform: translateX(-32px);
	}

	.mobile-nav-controller:checked~.header .mobile-nav-button .mobile-nav-button-icon .mobile-nav-button-line:nth-child(3) {
		top:8px;

		-webkit-transform: rotateZ(-45deg);
		transform: rotateZ(-45deg);
	}

	.mobile-nav-controller:checked~.header .mobile-nav-button .mobile-nav-button-icon .mobile-nav-button-line {
		background-color: #000;
	}

	.header nav ul li a {
		color: #000;
	}
	.works-grid-wrapper {
		/*flex-direction: column;*/
	}

	.works-grid-wrapper .main-column,
	.works-grid-wrapper .secondary-column {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.works-grid-wrapper .main-column {
		height: 64vw;
		margin: 10px;
		max-width: calc(100% - 20px);
	}

	.works-grid-wrapper .secondary-column {
		display: block;
	}

	.works-grid-wrapper .secondary-column div {
		max-width: calc(50% - 23px);
		display: inline-block;
	}

	.works-grid-wrapper .main-column a {
		overflow: hidden;
	}

	.about-me .content-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.about-me .highlighted-text,
	.about-me .text-content {
		max-width: inherit;
		padding:10%;
	}

	.about-me .highlighted-text {
		text-align: left;
	}

	.what-i-do .flex-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		align-items: stretch;
	}

	.what-i-do .flex-wrapper div {
		padding-left: 30%;
	}

	.what-i-do .flex-wrapper div:nth-child(1),
	.what-i-do .flex-wrapper div:nth-child(2) {
		margin-bottom: 0;
	}
}

@media (max-width: 640px) {

	.header {
		padding: 10px;
	}

	.header nav ul li a {
		font-size: 3rem;
	}

	.cover .logo {
		top: 53%;
		width: 40%;
	}

	.cover .logo svg {
		width: 100%;
	}

	.cover h1 {
		font-size: 3rem;
	}

	.cover h1:nth-child(3) {
		top: 16%;
	}

	.cover h1:nth-child(4) {
		bottom: 12%;
	}

	.cover h1 b {
		font-size: 4rem;
		display: block;
	}

	.works-selection h2 {
		position:inherit;

		-webkit-transform: none;
		transform: none;
	}

	.touchevents .works-selection .work-item p {
		display:none;
	}


	.works-grid-wrapper .secondary-column {
		display:block;
	}

	.works-grid-wrapper .secondary-column > div {
	    max-width:inherit;
	    width: calc(100% - 20px);
	}

	/*
		TOUCH EVENTS
	*/

	.touchevents .works-selection .main-column .work-item:after {
		white-space:nowrap;
	}

	/*
		END OF TOUCH EVENTS
	*/

	.about-me .highlighted-text {
		font-size: 3rem;
	}

	.about-me .text-content {
		line-height: 3.6rem;
    	font-size: 1.8rem;
	}

	.what-i-do {
		padding: 20px;
	}

	.what-i-do .flex-wrapper div {
		padding-left: 20%;
	}

	.what-i-do .flex-wrapper div h3 {
		font-size: 4rem;
	}

	.what-i-do .flex-wrapper div ul {
		padding-left: 15px;
	}

	.what-i-do .flex-wrapper div ul li {
		font-size: 1.7rem;
	}

	.news .grid > div {
		max-width: 50%;
    	-webkit-box-flex: 1;
    	-ms-flex: 1 1 50%;
    	flex: 1 1 50%;
	    padding-bottom: 50%;
	}

	.news .grid > div.blog-post {
		max-width: 100%;
    	-webkit-box-flex: 1;
    	-ms-flex: 1 1 100%;
    	flex: 1 1 100%;
	}

	.lets-talk {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		font-size: 4rem;
		padding: 0 0 20px 0;
	}

	.lets-talk p {
		margin: 10px;
	}

	.lets-talk a {
		margin-left: 0;
	}

	.footer .social-links ul li {
		margin: 0 10px;
	}
}

@media screen and (device-aspect-ratio: 3/4) and (orientation : portrait) {

	.cover .logo {
		width: 20vw;
	}

	.cover h1 {
		font-size: 6vw;
	}

	.cover h1 b {
		font-size: 8vw;
	}
}