/*----------------------------------------
------------------------------------------
	## FIXES | BOOTSTRAP + RESET + GENERAL CONFIG
------------------------------------------
----------------------------------------*/

* {
	list-style: none;
	border: 0;
	text-decoration: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	margin: 0;
	padding: 0;
}

h1, h2, h3 {
	margin: 0;
	padding: 0;
}

ul {
	padding: 0;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
}

button:focus,
a:focus,
form input,
form textarea,
input[type="radio"] {
	outline: 0;
}

.cf::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
}

.no-padding {
	padding-right: 0!important;
	padding-left: 0!important;
}

a, button, img,
input[type="submit"],
input[type="reset"],
#clickform,
span.hover {
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.flex-container:before {
	display: inline;
}

.row:before, .row:after {
	display: none;
}

body.safari .row .col-1,
body.safari .row .col-2,
body.safari .row .col-3,
body.safari .row .col-4,
body.safari .row .col-5,
body.safari .row .col-6,
body.safari .row .col-7,
body.safari .row .col-8,
body.safari .row .col-9,
body.safari .row .col-10,
body.safari .row .col-11,
body.safari .row .col-12 {
	display: inline-block;
	vertical-align: top;
	margin: 0 -3px;
}

section {
 	position: relative;
}

.max-width {
	max-width: 1600px;
}

.container {
	max-width: 1320px;
}

form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder { color: #404148; }
form input::-moz-placeholder, form textarea::-moz-placeholder { color: #404148; }
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder { color: #404148; }
form input:-moz-placeholder, form textarea:-moz-placeholder { color: #404148; }

form input:-webkit-autofill, form textarea:-webkit-autofill,
form input:-webkit-autofill:hover, form textarea:-webkit-autofill:hover,
form input:-webkit-autofill:focus, form textarea:-webkit-autofill:focus,
form input:-webkit-autofill:active, form textarea:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: #404148!important;
}

 /*----------------------------------------
------------------------------------------
	## FONTS
------------------------------------------
----------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700');

@font-face {
	font-family: 'Ridley Grotesk';
	src: url('../fonts/RidleyGrotesk-Light.eot');
	src: url('../fonts/RidleyGrotesk-Light.eot?#iefix') format('embedded-opentype'),
		url('../fonts/RidleyGrotesk-Light.woff') format('woff'),
		url('../fonts/RidleyGrotesk-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Ridley Grotesk';
	src: url('../fonts/RidleyGrotesk-Regular.eot');
	src: url('../fonts/RidleyGrotesk-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/RidleyGrotesk-Regular.woff') format('woff'),
		url('../fonts/RidleyGrotesk-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Ridley Grotesk';
	src: url('../fonts/RidleyGrotesk-Bold.eot');
	src: url('../fonts/RidleyGrotesk-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/RidleyGrotesk-Bold.woff') format('woff'),
		url('../fonts/RidleyGrotesk-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Ridley Grotesk';
	src: url('../fonts/RidleyGrotesk-Black.eot');
	src: url('../fonts/RidleyGrotesk-Black.eot?#iefix') format('embedded-opentype'),
		url('../fonts/RidleyGrotesk-Black.woff') format('woff'),
		url('../fonts/RidleyGrotesk-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

h2 {
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 50px;
	line-height: 50px;
	color: #404148;
	font-weight: 900;
	text-transform: uppercase;
}

p {
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	line-height: 40px;
	color: #404148;
	font-weight: 300;
}

a.read-more {
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 22px;
	line-height: 22px;
	color: #404148;
	font-weight: 700;
	text-transform: uppercase;
}

a.read-more::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 80px;
	height: 2px;
	margin: 0 10px 0 0;
	background-color: #404148;
}

a.read-more:hover {
	color: #545872
}

a.read-more:hover::before {
	background-color: #545872;
}

/*----------------------------------------
------------------------------------------
	## FS MENU
------------------------------------------
----------------------------------------*/

#menu-icon {
	display: block;
	width: 75px;
	height: 75px;
	margin: 0;
	background-color: #404148;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	right: 50px;
	top: 60px;
	position: fixed;
	z-index: 99;
}

.nav-icon {
	width: 35px;
	height: 35px;
	margin: 28px 0 0 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

.nav-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #eee;
	opacity: 1;
	left: 0;
	border-radius: 3px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.nav-icon.open {
	position: fixed;
}

.nav-icon.open span {
	background-color: #fff;
}

.nav-icon:hover span,
.nav-icon.open:hover span {
	background-color: #fff;
}

.nav-icon span:nth-child(1) { top: 0px; }
.nav-icon span:nth-child(2) { top: 8px; }
.nav-icon span:nth-child(3) { top: 16px; }

.nav-icon.open span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.nav-icon.open span:nth-child(3) {
	top: 8px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

#fsmenu {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10;
	text-align: center;
	display: block;
	bottom: -100%;
	right: 0;
	left: 0;
	padding: 0;
	margin: 0;
	-webkit-transition: bottom .0s, opacity .5s ease-in-out;
	transition: bottom .0s, opacity .5s ease-in-out;
	opacity: 0;
	background: #222 url(../imgs/lines-2.png) center top repeat-y;
}

#fsmenu.opacity {
	opacity: 1;
	bottom: 0;
}

.fixed {
	position: fixed!important;
}

#fsmenu ul {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin: 0;
	padding: 0;
	display: block;
	-webkit-transition: 1s;
	transition: 1s;
	opacity: 0;
	z-index: 10;
}

#fsmenu.opacity ul {
	opacity: 1;
}

#fsmenu li {
	display: block;
	margin: 10px auto;
}

#fsmenu li a {
	font-weight: 700;
	font-size: 40px;
	line-height: initial;
	color: #eee;
	text-decoration: none;
	font-family: "Ridley Grotesk", sans-serif;
	text-transform: uppercase;
	padding: 20px 50px;
}

#fsmenu li a:hover,
#fsmenu li a.active:hover {
	color: #222;
}

#fsmenu li a.active {
	color: #fff;
}

.hvr-bounce-to-right {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-moz-box-shadow: 0 0 1px transparent;
	-webkit-box-shadow: 0 0 1px transparent;
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/*----------------------------------------
------------------------------------------
	## HOME
------------------------------------------
----------------------------------------*/

/****** MAIN BANNER ******/

body {
	background: #fff url(../imgs/lines.png) center top repeat-y;
}

.left-side {
	text-align: center;
	padding-top: 150px;
}

.left-side img.logo-home {
	padding: 0 20px;
}

.social-vertical {
	margin-left: -15px;
}

.social-vertical li:first-child {
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin: 150px auto 75px auto;
	display: block;
	font-family: "Ridley Grotesk", sans-serif;
	text-transform: uppercase;
	color: #bbb;
	font-weight: 900;
	font-size: 14px;
}

.social-vertical li a img {
	width: 20px;
	height: 20px;
	margin-bottom: 50px;
	opacity: .5;
}

.social-vertical li a:hover img {
	opacity: 1;
}

.swiper-container .swiper-slide {
	height: 900px;
}

.swiper-container .slide-001 { background: url(../imgs/main-banner-01.jpg) center center no-repeat; }
.swiper-container .slide-002 { background: url(../imgs/main-banner-02.jpg) center center no-repeat; }
.swiper-container .slide-003 { background: url(../imgs/main-banner-03.jpg) center center no-repeat; }
.swiper-container .slide-004 { background: url(../imgs/main-banner-04.jpg) center center no-repeat; }

.white-block {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 65%;
	height: 65px;
	background-color: #fff;
	display: block;
	z-index: 9;
	cursor: auto;
}

.swiper-pagination {
	position: relative;
	left: auto;
	right: 0;
	text-align: right;
	line-height: 65px;
	padding: 0 20px 0 0;
	margin: 0;
}

.swiper-pagination span {
	display: inline-block;
	margin: 0 20px;
}

.swiper-pagination-bullet {
	width: initial;
	height: initial;
	border-radius: initial;
	background-color: transparent;
	color: #404148;
	opacity: .5;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

/****** ABOUT ME ******/

#about-me-home {
	margin-top: 200px;
}

#about-me-home .left-col {
	text-align: right;
}

#about-me-home .left-col h4,
#about-me-home .left-col img {
	position: relative;
	z-index: 1;
}

img.mobile {
	display: none;
}

#about-me-home .left-col .gray-box {
	display: block;
	width: 640px;
	height: 700px;
	background-color: #eee;
	position: absolute;
	z-index: 0;
	margin-top: 175px;
	
}

#about-me-home .left-col h4 {
	position: absolute;
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin: -130px 0 0 -23px;
	display: block;
	font-family: "Ridley Grotesk", sans-serif;
	text-transform: uppercase;
	color: #bbb;
	font-weight: normal;
	font-size: 24px;
	line-height: 24px;
}

#about-me-home .right-col {
	max-width: 640px;
	padding-left: 75px;
}

#about-me-home .right-col h2 {
	padding-top: 200px;
	padding-bottom: 50px;
}

#about-me-home .right-col p {
	margin-bottom: 50px;
}

#about-me-home a {
	margin-left: 160px;
}

#about-me-home .three-logos {
	margin: 200px auto 150px auto;
}

#about-me-home .three-logos::after {
	content: none;
	display: none;
}

/****** PORTFOLIO ******/

#portfolio-home {
	max-width: 1600px;
	z-index: 1;
}

#portfolio-home > div > div {
	padding: 0 10px;
}

#portfolio-home a {
	display: block;
	width: 100%;
	height: 90%;
	background-color: #fff;
	overflow: hidden;
}

span.hover {
	position: absolute;
	width: 100%;
	height: auto;
	text-align: center;
	z-index: 2;
	padding-top: 70%;
	font-family: "Ridley Grotesk", sans-serif;
	text-transform: uppercase;
	color: #222;
	font-weight: 900;
	font-size: 30px;
	line-height: 30px;
	text-decoration: underline;
	opacity: 0;
	overflow: hidden;
}

#portfolio-home a:hover span.hover {
	opacity: 1;
	padding-top: 65%;
}

#portfolio-home a:hover img {
	opacity: .2;
}

#portfolio-home .white-line {
	display: inline-block;
	width: 1px;
	height: 100px;
	background-color: #fff;
	margin: -40px 0 0 20px;
	position: absolute;
	z-index: 2;
}

#portfolio-home p {
	font-family: "Ridley Grotesk", sans-serif;
	text-transform: uppercase;
	color: #fff;
	font-weight: normal;
	font-size: 18px;
	line-height: 18px;
	display: block;
	margin: 30px 0 0 50px;
}

#portfolio-home-2 {
	background-color: #222;
	margin-top: -300px;
	padding: 450px 0 0 0;
	z-index: 0;
	text-align: center;
}

.big-title {
	text-align: center;
	margin: 0 auto;
	left: 0;
	right: 0;
	z-index: 0;
	padding: 0 20px;
}

h3 {
	text-align: center;
	font-family: "Ridley Grotesk", sans-serif;
	text-transform: uppercase;
	color: #fff;
	font-weight: 300;
	font-size: 50px;
	line-height: 50px;
	display: block;
	position: relative;
	z-index: 1;
	margin: -100px auto 100px auto;
	letter-spacing: 1px;
}

#portfolio-home-2 p {
	max-width: 640px;
	color: #fff;
	margin: 0 auto;
}

#portfolio-home-2 .white-line {
	display: block;
	width: 1px;
	height: 70px;
	background-color: #fff;
	margin: 50px auto 20px auto;
}

#portfolio-home-2 a {
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 22px;
	line-height: 22px;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
}

.instagram-title {
	margin-top: 150px;
}

.instagram-feed {
	margin-top: 50px;
}

ul.stream {
	width: 100%;
}

.modern.light .stream li,
.modern .stream li {
	height: 0;
	padding-bottom: 25%;
	width: 25%;
	overflow: hidden;
}

.modern.light .stream li .section-intro,
.modern.light .stream li .socicon {
	display: none;
}

.modern .stream li.dcsns-instagram .section-thumb img,
.modern .stream li {
	margin: 0;
}

.modern .stream li .section-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto!important;
	height: 100%;
	width: 100%!important;
	max-width: 100%!important;
}

/****** CONTACT ******/

#contact-home {
	padding-top: 150px;
}

#contact-home > .row > .col-12 {
	text-align: center;
}

#contact-home .big-title {
	margin-bottom: -25px;
}

.phone {
	color: #aaa;
	margin-top: -7px;
	font-weight: 500;
}

form {
	display: block;
	margin-top: 150px;
	max-width: 640px;
}

form input,
form textarea {
	background-color: transparent;
	margin-bottom: 40px;
	border-bottom: 1px solid #ccc;
	width: 100%;
	font-family: "Open Sans", sans-serif;
	font-size: 22px;
	line-height: 40px;
	font-weight: 300;
	color: #404148;
	padding: 0 10px;
}

form textarea {
	resize: vertical;
	height: 200px;
	min-height: 40px;
}

form #btnSendMail {
	display: inline-block;
	padding: 15px 50px;
	background-color: #404148;
	color: #fff;
	text-transform: uppercase;
	text-align: right;
	width: auto;
	float: right;
	cursor: pointer;
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 20px;
	line-height: initial;
	font-weight: normal;
}

form #btnSendMail:hover {
	background-color: #5c5e6f;
}

#after-form {
	display: none;
}

#after-form h2 {
	margin: 100px 0 30px 0;
}

#after-form button {
	display: inline-block;
	padding: 15px 50px;
	background-color: #404148;
	color: #fff;
	text-transform: uppercase;
	text-align: left;
	width: auto;
	cursor: pointer;
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 20px;
	line-height: initial;
	font-weight: normal;
	margin-top: 30px;
}

#after-form button:hover {
	background-color: #5c5e6f;
}

/*----------------------------------------
------------------------------------------
	## BOTTOM
------------------------------------------
----------------------------------------*/

#bottom {
	text-align: center;
	padding: 50px 20px;
}

#bottom.bottom-internal {
	margin-top: 100px;
	padding-top: 150px;
}

#bottom.bottom-dark {
	background-color: #222;
}

#bottom .center-txt {
	margin: -90px auto 100px auto;
}

#bottom h3,
#bottom a.hollow {
	margin: 0 10px;
	display: inline-block;
	vertical-align: middle;
}

#bottom a.hollow {
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 20px;
	line-height: initial;
	font-weight: normal;
	color: #fff;
	text-transform: uppercase;
	-moz-box-shadow: inset 0 0 0 1px #fff;
	-webkit-box-shadow: inset 0 0 0 1px #fff;
	box-shadow: inset 0 0 0 1px #fff;
	padding: 15px 30px;
}

#bottom a.hollow:hover {
	color: #222;
}

ul.social-bottom {
	display: block;
	margin-bottom: 30px;
}

#bottom.bottom-internal ul.social-bottom {
	margin-bottom: 20px;
}

ul.social-bottom li {
	display: inline-block;
}

ul.social-bottom li a {
	margin: 0 10px;
	display: block;
}

ul.social-bottom li a img {
	opacity: .5;
}

ul.social-bottom li a:hover img {
	opacity: 1;
}

ul.social-bottom li span {
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	height: 1px;
	background-color: #aaa;
	margin: 0 20px 0 10px;
}

ul.social-bottom li:last-child {
	vertical-align: middle;
	display: inline-block;
	margin-top: -15px;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	color: #aaa;
	font-weight: 400;
	margin-right: 10px;
}

small {
	font-size: 60%;
}

/*----------------------------------------
------------------------------------------
	## HEADERS INTERNAL
------------------------------------------
----------------------------------------*/

#header .left-side {
	padding-top: 70px;
}

.header-internal-wrapper {
	height: 300px;
	display: block;
}

.header-internal {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-color: #eee;
}

.header-001 { background-image: url(../imgs/header-internal-001.jpg); }
.header-002 { background-image: url(../imgs/header-internal-002.jpg); }
.header-003 { background-image: url(../imgs/header-internal-003.jpg); }
.header-004 { background-image: url(../imgs/header-internal-004.jpg); }

.header-internal-wrapper .white-block {
	width: 640px;
	height: 75px;
	background-color: #fff;
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: initial;
	margin-top: 225px;
}

.title-internal {
	margin: 100px 0;
}

/*----------------------------------------
------------------------------------------
	## ABOUT ME
------------------------------------------
----------------------------------------*/

.first-txt {
	padding-right: 80px;
}

.second-txt {
	padding-right: 100px;
}

.font-light {
	font-weight: 300;
}

.about-imgs {
	width: 100%;
	margin-top: 100px;
}

.about-img-01 {
	position: absolute;
	z-index: 1;
	float: left;
	max-width: none;
}

.right {
	text-align: right;
	width: 100%;
	display: inline-block;
}

.about-img-02 {
	position: relative;
	z-index: 2;
	float: right;
	margin-top: 50px;
	margin-bottom: 100px;
}

.about-imgs .gray-block {
	position: absolute;
	z-index: 0;
	width: 500px;
	height: 400px;
	background-color: #eee;
	display: block;
	bottom: 220px;
	margin-left: 165px;
}

h4.name-about {
	float: right;
	text-align: right;
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 24px;
	line-height: initial;
	font-weight: 300;
	color: #bbb;
	text-transform: uppercase;
	margin: 50px 100px 0 0;
}

.three-logos {
	text-align: center;
}

.three-logos img {
	padding: 0 4%;
	vertical-align: middle;
}

.three-logos::after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background-color: #eee;
	margin: 100px 0 100px 0;
}

/*----------------------------------------
------------------------------------------
	## PORTFOLIO
------------------------------------------
----------------------------------------*/

.grid:after {
	content: '';
	display: block;
	clear: both;
}

.grid-item,
.grid-sizer {
	width: 33.333%;
	padding: 0 5px;
	float: left;
}

.grid-item img {
	display: block;
	max-width: 100%;
}

.button-group {
	margin: 100px 0;
	display: block;
}

.button-group button {
	float: left;
	margin: 0 10px;
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 20px;
	line-height: initial;
	font-weight: normal;
	color: #404148;
	padding: 20px 50px;
	text-align: center;
	background-color: transparent;
	text-transform: uppercase;
	-moz-box-shadow: inset 0 0 0 2px #404148;
	-webkit-box-shadow: inset 0 0 0 2px #404148;
	box-shadow: inset 0 0 0 2px #404148;
	white-space: nowrap;
	cursor: pointer;
}

.button-group button:first-child {
	margin-left: 0;
}

.button-group button.hvr-bounce-to-right:before {
	background-color: #404148;
}

.button-group button:hover,
.button-group button.is-checked {
	color: #fff;
}

.button-group button.is-checked:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.grid-item a:hover img {
	opacity: .7;
}

.black-line {
	display: block;
	width: 1px;
	height: 70px;
	background-color: #222;
	position: absolute;
	margin: -30px 0 0 20px;
	z-index: 2;
}

.grid-item span {
	font-family: "Ridley Grotesk", sans-serif;
	font-size: 18px;
	line-height: initial;
	font-weight: normal;
	color: #888;
	display: block;
	margin: 10px 0 30px 40px;
	text-transform: uppercase;
}

/*----------------------------------------
------------------------------------------
	## PRESS
------------------------------------------
----------------------------------------*/

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

.video-row .videoWrapper {
	position: relative;
	padding-bottom: 53%;
	padding-top: 25px;
	height: 0;
}

.video-row .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*----------------------------------------
------------------------------------------
	## CONTACT
------------------------------------------
----------------------------------------*/

.contact-txt {
	max-width: 480px;
}

.social-contact-title {
	color: #222;
	margin: 0;
	text-align: left;
}

.social-contact {
	margin-top: 20px;
}

.social-contact li {
	display: inline-block;
	margin-right: 20px;
}

.social-contact li a img {
	opacity: .5;
}

.social-contact li a:hover img {
	opacity: 1;
}

.form-contact-page {
	margin-top: 100px;
}

.form-contact-page form {
	margin-top: 50px;
}