/*
Theme Name: Black Apricot
Theme URI: http://blackapricot.com
Author: Oliver Stanley
Author URI: http://blackapricot.com
Description: The theme for Black Apricot website
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/** General **/

body, html {
	height: 100% !important;
	padding: 0;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: greyscale;
 	-webkit-text-size-adjust: 100%;
}

/** General Type **/

h1 {
	font-family: 'Merriweather-Regular', serif;
	margin: 0;
	font-size: 42px;
	line-height: 48px;
	font-weight: 400;
	color: #000;
}

h2 {
	font-family: 'Merriweather-Regular', serif;
	font-size: 30px;
	line-height: 36px;
	font-weight: 400;
}

h3 {
	font-family: 'Merriweather-Regular', serif;
	font-size: 24px;
	line-height: 36px;
	font-weight: 400;
}

h4 {
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.25em;
}

a {
	text-decoration: none;
	color: #000;
}

p {
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #3f3f3f;
}

p strong {
	font-family: 'Benton Sans Medium', sans-serif;
	font-weight: 400;
}

.button {
	display: inline-block;
	padding-bottom: 12px;
	border-bottom: 2px solid #000;
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	cursor: pointer;
}

.button:hover {
	border-bottom: 2px solid #fdbb30;
}

input, textarea {
	border-radius: 0;
	-webkit-appearance: none;
}

blockquote {
	position: relative;
	padding: 0 0 0 72px;
	margin: 48px 0;
	border-left: 1px solid #e5e5e5;
}

blockquote::before {
	font-family: 'Merriweather-Regular', serif;
	font-size: 60px;
	left: 36px;
	position: absolute;
	content: "\201C";
	color: #fdbb30;
}

hr {
	margin: 48px 0;
	border-top: 1px solid #e5e5e5;
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
}

/** Images **/

img.size-full {
	max-width: 900px;
	max-width: 100%;
	height: auto;
}

/** Font-Face **/


@font-face {
	font-family: 'Merriweather-Regular';
	src:	url('fonts/Merriweather-Regular.ttf')  format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
  	font-family: 'Benton Sans Medium';
  	src: url('fonts/BentonSans-Medium.eot?#iefix') format('embedded-opentype'),  
	 	url('fonts/BentonSans-Medium.woff') format('woff'), 
	 	url('fonts/BentonSans-Medium.ttf')  format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
  	font-family: 'Benton Sans Regular';
  	src: url('fonts/BentonSans-Regular.eot?#iefix') format('embedded-opentype'),  
	 	url('fonts/BentonSans-Regular.woff') format('woff'), 
	 	url('fonts/BentonSans-Regular.ttf')  format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Benton Sans Book';
  src: url('fonts/BentonSans-Book.eot?#iefix') format('embedded-opentype'),  
  		url('fonts/BentonSans-Book.otf')  format('opentype'),
		url('fonts/BentonSans-Book.woff') format('woff'), 
		url('fonts/BentonSans-Book.ttf')  format('truetype'), 
		url('fonts/BentonSans-Book.svg#BentonSans-Book.') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),  
  		url('fonts/Gotham-Bold.otf')  format('opentype'),
		url('fonts/Gotham-Bold.woff') format('woff'), 
		url('fonts/Gotham-Bold.ttf')  format('truetype'), 
		url('fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}


/** Animated **/

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 15%, 0);
		transform: translate3d(0, 15%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
  	}
}

@keyframes fadeInUp {
  	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 15%, 0);
		transform: translate3d(0, 15%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}


/** Structure **/

.fixedwidth-container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 72px;
	overflow: hidden;
}

.fullwidth-container {
	width: 100%;
	margin: 0 auto;
}

.fullwidth-content {
	max-width: 624px;
	margin: 0 auto;
	padding: 0 144px;
}

.divider {
	width: 15px;
	height: 2px;
	background-color: #c8c8c8;
	margin: 48px 0;
}

/** Columns **/

.one-half {
	width: 50%;
	float: left;
	padding-right: 30px;
	box-sizing: border-box;
}

.two-half {
	width: 50%;
	float: right;
	padding-left: 30px;
	box-sizing: border-box;
}

.one-third {
	width: 33%;
	float: left;
	padding: 0 30px;
	box-sizing: border-box;
}

.two-third {
	width: 33%;
	float: left;
	padding: 0 30px;
	box-sizing: border-box;
}

.three-third {
	width: 33%;
	float: right;
	padding: 0 30px;
	box-sizing: border-box;
}

.fullwidth-container .one-half, .fullwidth-container .two-half {
	padding: 0;
}

span.avoidwrap {
	display: inline-block;
}

/** Header **/

header {
	width: 100%;
	position: fixed;
	top: 48px;
	z-index: 500;
}

#logo {
	float: left;
	margin-left: 48px;
}

#logo a {
	height: 36px;
}

#logo img {
	height: 100%;
	width: auto;
}

.sticky {
	background-color: #fff;
	top: 0;
	padding: 12px 0 0 0;
}

.permanent-sticky {
	background-color: #fff !important;
	top: 0 !important;
	padding: 12px 0 0 0 !important;
}

.white-logo, .black-logo {
	display: none;
}

.active-logo {
	display: block;
}

.sticky .white-logo {
	display: none;
}

.sticky .black-logo {
	display: block;
}

.notice {
	display: block;
	margin-top: 60px;
	width: 100%;
	overflow: hidden;
	background-color: #000;
	text-align: center;
	color: #fff;
	cursor: pointer;
}

/** Navigation **/

/** Mobile Navigation **/

.mobile-main-nav {
	width: 100%;
}

ul#menu-main-menu {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	list-style: none;
}

ul#menu-main-menu li a {
	font-family: 'Merriweather-Regular', serif;
	font-size: 32px;
	line-height: 60px;
	font-weight: 400;
	color: #000;
	cursor: pointer;
}

/** Mobile Navigation Sub Menu **/

ul#menu-main-menu li ul.sub-menu {
	display: none;
	padding: 0;
}

ul#menu-main-menu li.sub-menu-open ul.sub-menu {
	display: block !important;
}

ul#menu-main-menu li ul.sub-menu li a {
	font-size: 24px;
}

/** Sticky Navigation **/

header.sticky ul#menu-main-menu-1 {
	margin: 7px 48px 0 0;
}

header.sticky ul#menu-main-menu-1 li {
	padding-bottom: 21px;
}

header.sticky ul#menu-main-menu-1 li ul.sub-menu {
	top: 60px;
}

header.sticky ul#menu-main-menu-1 li a {
	color: #000;
}

header.permanent-sticky ul#menu-main-menu-1 {
	margin: 7px 48px 0 0;
}

header.permanent-sticky ul#menu-main-menu-1 li {
	padding-bottom: 21px;
}

header.permanent-sticky ul#menu-main-menu-1 li ul.sub-menu {
	top: 60px;
}

header.permanent-sticky ul#menu-main-menu-1 li a {
	color: #000;
}

/** Desktop Navigation **/

ul#menu-main-menu-1 {
	float: right;
	margin: 5px 48px 0 0;
	list-style: none;
}

ul#menu-main-menu-1 li, ul.subnav li {
	float: left;
	margin-right: 36px;
	padding-bottom: 25px;
}

ul#menu-main-menu-1 li:last-child {
	margin-right: 0;
}

ul#menu-main-menu-1 li a {
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #fff;
	cursor: pointer;
}

.main-nav-black ul#menu-main-menu-1 li a {
	color: #000;
}

/** Desktop Navigation Sub Menu **/

ul#menu-main-menu-1 li ul.sub-menu {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	width: 225px;
	margin: 0;
	padding: 0;
	top: 45px;
	-webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

ul#menu-main-menu-1 li:hover ul.sub-menu {
	visibility: visible;
	opacity: 1;
}

ul#menu-main-menu-1 ul.sub-menu li {
	display: block;
	margin-left: 0;
	padding: 18px 24px !important;
	background-color: #fff;
	border-bottom: 1px solid #e3e3e3;
	float: none !important;
	margin-right: 0 !important;
}

ul#menu-main-menu-1 ul.sub-menu li a {
	color: #000;
}

ul#menu-main-menu-1 ul.sub-menu li:last-child {
	border-bottom: 0;
}

/** Mobile Navigation Overlay **/

#mobile-menu {
	position: fixed;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 200;
	-webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background-color: rgba(255,255,255,0.9);
}

#mobile-menu.open {
	visibility: visible;
	opacity: 1;
}

#menu-button {
	display: none;
	float: right;
	margin: 10px 48px 0 0;
	padding-bottom: 19px;
    width: 25px;
    height: 21px;
    position: relative;
    -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;
}

.sticky #menu-button {
	margin: 8px 48px 0 0;
}

#menu-button span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -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;
}

#menu-button.white span {
	background-color: #fff;
}

.sticky #menu-button.white span {
	background-color: #000;
}

#menu-button span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}

#menu-button span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#menu-button span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}

#menu-button.open span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0px;
    left: -2px;
    background: #000;
}

#menu-button.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
    background: #000;
}

#menu-button.open span:nth-child(3) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 18px;
    left: -2px;
    background: #000;
}


/** Homepage **/

/** Landing Section **/

#landing {
	background-image: url('./images/studio-picture-2.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#landing h1, #landing h3 {
	color: #fff;
}

.landing-2 {
	padding: 240px 0;
} 

.landing-3 {
	padding: 300px 0;
} 

#landing-content {
	max-width: 756px;
	padding: 0 156px
}

.landing-3 #landing-content h1 {
	color: #fff;
}

.scroll img {
	margin-top: 60px;
	width: 50px;
	height: 50px;
}

#scroll-down {
    width: 18px;
    height: 12px;
    position: absolute;
    bottom: 48px;
    left: 50%;
    margin-left: -10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
}

#scroll-down span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
}

#scroll-down span:nth-child(1) {
	-webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}

#scroll-down span:nth-child(2) {
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -3px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

/** Sub-Navigation **/

ul.subnav {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul.subnav li a {
	padding-bottom: 12px;
	border-bottom: 2px solid #fff;
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #fff;
}

ul.subnav li a:hover {
	border-bottom: 2px solid #fdbb30;
}

/** Introduction Section **/

#introduction .fixedwidth-container {
	max-width: 720px;
}

#introduction-content {
	margin: 48px 0;
}

/** Services Section **/

.services {
	width: 100%;
	padding: 180px 0;
	background-color: #f1f1f1;
}

.services h3 {
	margin-top: 0;
}

.services .fixedwidth-container {
	max-width: 1420px;
	padding: 0 42px;
}

.services a.button {
	margin-top: 24px;
}

/** Work Grid Section **/

.grid {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}

.work-grid {
	margin-top: 60px;
}

.grid-container {
	width: 100%;
	height: 100%;
}

.grid-container:after {
	content: '';
	display: block;
	clear: both;
}

.grid-container img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
}

.grid-item {
	position: relative;
	float: left;	
}

.small {
	width: 25%; 
	box-sizing: border-box;
	overflow: hidden;
}

.large { 
	width: 50%; 
	box-sizing: border-box;
	overflow: hidden;
}

.grid-caption {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0;
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.grid-caption:hover {
	opacity: 1;
}

.caption-container {
	width: 100%;
	height: 100%;
	display: table;
	background-color: rgba(0,0,0,0.7);
}

a.caption-content {
	display: table-cell;
	vertical-align: middle;
}

a.caption-content .button {
	color: #fff;
	border-bottom: 2px solid #fff;
}

a.caption-content .button:hover {
	border-bottom: 2px solid #fdbb30;
}


/** Contact Details Section **/

#contact-details {
	padding: 180px 0;
}

#contact-details .one-half {
	word-wrap: break-word;
}

#contact-details h2 {
	margin-top: 0;
}

#contact-details h4 {
	margin-top: 0;
	margin-bottom: 12px;
}

#contact-details p, #latest-tweets p {
	font-size: 18px;
}

#contact-details p:first-child, #latest-tweets p:first-child {
	margin-top: 0;
}

#contact-details p:last-child, #latest-tweets p:last-child {
	margin-bottom: 0;
}

/** Latest Tweets Section **/

#latest-tweets {
	width: 100%;
	padding: 96px 0;
	border-top: 1px solid #e5e5e5;
}

#latest-tweets h3 {
	margin: 0;
}

.tweet ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.tweet ul li a {
	text-decoration: none;
	color: #000;
}

.tweet ul li {
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 16px;
	line-height: 24px;
	color: #3f3f3f;
}

.tweet img.media {
	display: none;
}

.tweet .date {
	color: #000;
}

.tweets_txt span {
	display: inline-block;
	width: 100%;
	clear: both;
}

/** Footer Section **/

footer {
	width: 100%;
	padding: 24px 0;
	background-color: #f1f1f1;
}

/** Sitemap **/

.footer-sitemap ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-sitemap ul li {
	float: left;
	margin-right: 36px;
}

.footer-sitemap ul li:last-child {
	margin-right: 0;
}

.footer-sitemap ul li a {
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #000;
}

/** Social Media Section **/

ul#social-media {
	float: right;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul#social-media li {
	float: right;
	margin-left: 24px;
}

ul#social-media img {
	width: 15px;
	height: auto;
}


/** Studio Page **/

/** Studio Image Section **/

#studio-image {
	background-image: url('./images/studio-picture-1.jpg');
	background-size: cover;
	background-position: center;
}

/** About Us Section **/

#about-us {
	padding: 240px 0;
}

#about-us h2 {
	margin: 0 0 48px 0;
	text-align: center;
}

/** Team Section **/

#team {
	overflow: hidden;
}

.team-member {
	position: relative;
	height: auto;
	width: 50%;
	max-height: 550px;
	float: left;
}

.team-image {
	position: relative;
	width: 100%;
	max-height: 550px;
	height: auto;
	z-index: 0;
	text-align: center;
	background-color: #F8F9FA;
}

.team-image img {
	width: auto;
	max-width: 100%;
	max-height: 550px;
}

.team-content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 48px;
	background-color: rgba(0,0,0,0.7);
	opacity: 0;
	box-sizing: border-box;
	z-index: 25;
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.team-content:hover {
	opacity: 1;
}

.team-content h2 {
	margin: 0;
	color: #fff;
}

.team-content h4 {
	margin-top: 6px;
	color: #fff;
}

/** Clients Section **/

#clients {
	width: 100%;
	padding: 180px 0;
	background-color: #f1f1f1;
}

#clients h2 {
	margin-top: 0;
}

#clients p:first-child {
	margin-top: 10px;
}

ul.client-list {
	clear: both;
	padding: 72px 0 0 0;
	margin: 0;
	list-style: none;
	overflow: hidden;
}

ul.client-list li {
	float: left;
	width: 12.5%;
	margin-right: 5%;
}

ul.client-list li:last-child {
	margin-right: 0;
}

.client img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	width: auto;
	height: auto;
	max-height: 100px;
}

/** Services Page **/

/** Service Description Section **/

#service-description {
	padding: 180px 0 108px 0;
}

#service-description h2 {
	margin: 0 0 48px 0;
}

.branding {
	background-image: url('./images/branding-notepad.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;	
}

.print {
	background-image: url('./images/styleboard-makeney-hall-brochure-1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.digital {
	background-image: url('./images/html-coding-1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/** Service Offering Section **/

#service-offering {
	padding: 24px 0 180px 0;
}

#service-offering ul {
	padding: 0;
	list-style: none;
}

#service-offering ul li::before {
	content: "–";
	padding-right: 6px;
}

#service-offering ul li {
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 16px;
	line-height: 36px;
	color: #3f3f3f;
}

#service-offering .button {
	float: left;
	clear: both;
	margin-top: 60px;
}

/** Service Process Section **/

#service-process {
	padding: 180px 0;
	background-color: #f1f1f1;
}

#service-process h2 {
	margin-top: 0;
}

#service-process p {
	margin-bottom: 0;
}

.the-process {
	margin: 0 -10px;
}

.process-item {
	position: relative;
	float: left;
	width: 25%;
	padding: 0 10px;
	box-sizing: border-box;
}

.process-title {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 24px;
	float: left;
	margin-right: 12px;
	border-right: 2px solid #000;
}

.process-title h4 {
	position: relative;
	left: 15px;
	margin: 0;
	transform: rotate(90deg);
	transform-origin: left top 0;
}

.process-text {
	width: 100%;
	padding-left: 48px;
	float: right;
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #3f3f3f;
	box-sizing: border-box;
}


/** Contact Page **/

/** Contact Details Section **/

#contact .fullwidth-container {
	height: 100%;
}

#contact .fp-tableCell {
	vertical-align: top;
}

#contact .one-half {
	height: 100%;
	padding: 0;
}

#contact .two-half {
	padding: 180px 60px;
}

#contact .two-half p {
	margin-top: 60px;
}

#map {
	height: 100%;
}

#wpcf7-f25-o1.wpcf7 p {
	margin-top: 24px;
}

#wpcf7-f25-o1.wpcf7 input, #wpcf7-f25-o1.wpcf7 textarea {
	width: 100%;
	max-width: 480px;
	margin: 0;
	padding: 14px 24px 10px 24px;
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #3f3f3f;
	border: solid 1px #e5e5e5;
	box-sizing: border-box;
}

#wpcf7-f25-o1.wpcf7 textarea {
	height: 120px;
}

#wpcf7-f25-o1.wpcf7 input[type="submit"] {
	width: auto;
	padding: 12px 0;
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid #000;
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	cursor: pointer;
}

#wpcf7-f25-o1.wpcf7 input[type="submit"]:hover {
	border-bottom: 2px solid #fdbb30;
}

span.wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 13px !important;
}

.wpcf7-response-output {
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #3f3f3f;
	display: inline-block !important;
	margin: 0 !important;
	padding: 6px 0 0 0 !important;
	width: auto;
	border: 0 !important;
}


/** Case Study Page **/

#work-info {
	padding: 180px 0 120px 0;
}


/** Blog **/

/** Home Page **/

article.blog-content {
	width: 100%;
	overflow: hidden;
}

.blog-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.blog-content ul .post-title, .blog-content ul .post-date, .blog-content ul .post-meta {
	text-align: left;
}

.blog-content ul h1.post-title {
	font-size: 30px;
	line-height: 36px;
}

.blog-content ul .post-date {
	margin: 0 0 12px 0;
}

.blog-content ul .post-meta {
	margin: 12px 0 0 0;
}

.blog-content ul li.blog-item {
	width: 33%;
	float: left;
	padding: 0 30px;
	box-sizing: border-box;
}

.blog-content ul li.blog-item:nth-child(3n+1) {
	clear: both;
}

a.blog-image-container {
	display: block;
	width: 100%;
	overflow: hidden;
	margin-bottom: 24px;
}

.blog-image-container img {
	width: 100%;
	height: auto;
}

.blog-cta {
	clear: both;
	text-align: center;
}

/** Sign Up **/

#sign-up {
	position: fixed;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 200;
	-webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background-color: rgba(0,0,0,0.9);
    color: #fff;
}

#sign-up.open {
	visibility: visible;
	opacity: 1;
}

.close {
	display: inline-block;
	margin: 0;
	opacity: 0.5;
	cursor: pointer;
}

.close:hover {
	opacity: 1;
}

#sign-up .fixedwidth-container {
	max-width: 600px;
}

input#fieldqiudtk, input#fieldEmail {
	width: 100%;
	margin: 0;
	padding: 14px 24px 10px 24px;
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #3f3f3f;
	border: solid 1px #e5e5e5;
	box-sizing: border-box;
}

button[type="submit"] {
	width: auto;
	padding: 12px 0;
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid #fff;
	font-family: 'Benton Sans Medium', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #fff;
	cursor: pointer;
}

button[type="submit"]:hover {
	border-bottom: 2px solid #fdbb30;
}

/** Single Post **/

.post {
	padding: 120px 0;
	border-bottom: 1px solid #e5e5e5;
}

.post .fixedwidth-container.blog-home {
	max-width: 1140px;
	padding: 0 42px;
}

.post-info, .archive-info {
	padding-bottom: 120px;
}

.post-date, .post-title, .post-meta {
	text-align: center;
}

.post-meta {
	margin-top: 24px;
}

.post-meta .author, .blog-item .category {
	font-family: 'Benton Sans Book', sans-serif;
}

.post-content {
	max-width: 900px;
	margin: 0 auto;
	border-bottom: 1px solid #e5e5e5;
}

.post-author {
	padding: 120px 0;
	text-align: center;
}

.post-author h4 {
	margin: 0 0 6px 0;
}

.post-author p {
	margin: 0;
}

.avatar {
	border-radius: 50%;
	margin-bottom: 24px;
}

/** Sharing **/

.share-post {
	max-width: 900px;
	position: relative;
	margin: 0 auto;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
}

.share, .share-fb, .share-twitter, .share-linkedin {
	float: left;
	width: 25%;
	box-sizing: border-box;
}

.share-fb, .share-twitter, .share-linkedin {
	position: absolute;
	top: 0;
	bottom: 0;
	background-color: #eee;
	border-left : 1px solid #e5e5e5;
}

.share-fb:hover, .share-twitter:hover, .share-linkedin:hover {
	background-color: #e5e5e5;
}

.share-twitter {
	left: 50%;
}

.share-linkedin {
	left: 75%;
	border-right: 1px solid #e5e5e5;
}

.share-fb img, .share-twitter img, .share-linkedin img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px;
	width: 32px;
	height: auto;
}

/** Archive **/

.archive-content {
	max-width: 900px;
	margin: 0 auto;
}

.archive-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li.blog-item {
	margin-bottom: 96px;
}

.archive-content li.blog-item:last-child{
	margin-bottom: 0;
}

ul.archive-list li {
	font-family: 'Benton Sans Book', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #3f3f3f;
	text-align: center;
}

ul.archive-list {
	margin-bottom: 96px;
}

ul.archive-list:last-child {
	margin-bottom: 0;
}

.archive-subtitle, .archive-title, .archive-date, .archive-post-title, .blog-item p {
	text-align: center;
}

.archive-date {
	margin-bottom: 0;
}

.archive-post-title {
	margin-top: 12px;
}


/** Media Queries **/

@media screen and (min-width: 1500px) {

	/** General Type **/

	h1 {
		font-size: 48px;
		line-height: 60px;
	}

	h2 {
		font-size: 36px;
		line-height: 48px;
	}

	p {
		font-size: 16px;
	}

	/** Structure **/

	.fixedwidth-container {
		max-width: 1360px;
	}

	.divider {
		margin: 60px 0;
	}

	.landing-3 {
		padding: 360px 0;
	} 


	/** Homepage **/

	/** Landing Section **/

	#landing-content {
		max-width: 1080px;
	}


	/** Services Page **/

	/** Service Description Section **/

	#service-offering ul li {
		font-size: 18px;
	}

	/** Service Offering Section **/

	#service-offering {
		padding: 72px 0 180px 0;
	}

	/** Service Process Section **/

	.process-text {
		font-size: 16px;
	}


	/** Case Study Page **/

	#work-info {
		padding: 240px 0 180px 0;
	}


	/** Studio Page **/

	/** Clients Section **/

	ul.client-list li {
		width: 12.5%;
		margin-right: 5%;
	}


	/** Blog **/

	/** Single Post **/

	.post .fixedwidth-container.blog-home {
		max-width: 1420px;
	}

}

/** 1224px **/

@media screen and (max-width: 1224px) {

	/** Studio Page **/

	/** Clients Section **/

	ul.client-list li {
		width: 30%;
		margin-right: 5%;
		margin-bottom: 72px;
	}

	ul.client-list li:nth-child(3n) {
		margin-right: 0;
	}

	ul.client-list li:nth-child(4), ul.client-list li:nth-child(5), ul.client-list li:nth-child(6) {
		margin-bottom: 0;
	}

}

/** 1080px **/

@media screen and (max-width: 1080px) {

	/** Landing Section **/

	#landing-content {
		padding: 0 120px
	}

	/** Navigation **/

	ul#menu-main-menu-1 {
		display: none;
	}

	#menu-button {
		display: block;
	}


	/** Studio Page **/

	/** Team Section **/

	.team-content h2 {
		font-size: 24px;
		line-height: 36px;
	}

	.team-content h4 {
		font-size: 11px;
		margin-top: 2px;
	}


	/** Footer Section **/

	footer {
		padding: 60px 0;
	}

	/** Sitemap **/

	.footer-sitemap ul {
		clear: both;
		width: 100%;
	}

	/** Social Media Section **/

	ul#social-media {
		float: left;
		margin-bottom: 24px;
	}

	ul#social-media li:last-child {
		margin-left: 0;
	}


	/** Blog **/

	/** Home Page **/

	.blog-content ul li.blog-item {
		width: 50%;
		padding: 0 15px;
	}

	.blog-content ul li.blog-item:nth-child(3n+1) {
		clear: none;
	}

	.blog-content ul li.blog-item:nth-child(2n+1) {
		clear: both;
	}

	/** Single Post **/

	.post .fixedwidth-container.blog-home {
		padding: 0 57px;
	}

}

/** 950px **/

@media screen and (max-width: 950px) {

	/** General Type **/

	h1 {
		font-size: 36px;
		line-height: 48px;
	}

	h2 {
		font-size: 28px;
		line-height: 36px;
	}

	/** Structure **/

	.fixedwidth-container {
		padding: 0 48px;
	}

	/** Columns **/

	.one-half {
		width: 100%;
		padding-right: 0;
		margin-bottom: 36px;
	}

	.two-half {
		width: 100%;
		float: left;
		padding-left: 0;
	}

	.one-third {
		width: 100%;
		float: left;
		padding: 0;
		margin-bottom: 96px;
	}

	.two-third {
		width: 100%;
		float: left;
		padding: 0;
		margin-bottom: 96px;
	}

	.three-third {
		width: 100%;
		float: left;
		padding: 0;
	}

	/** Landing Section **/

	#landing-content {
		padding: 0 48px
	}

	.landing-2 {
		padding: 180px 0;
	} 

	.landing-3 {
		padding: 180px 0;
	} 

	/** Services Section **/

	.services {
		padding: 120px 0;
	}

	.services .fixedwidth-container {
		padding: 0 48px;
	}

	/** Work Grid Section **/

	.large { 
		width: 100%; 
	}

	/** Contact Details Section **/

	#contact-details {
		padding: 120px 0;
	}

	#contact-details h2 {
		margin-bottom: 0;
	}

	/** Footer Section **/

	footer {
		padding: 60px 0;
	}

	/** Sitemap **/

	.footer-sitemap ul {
		clear: both;
		width: 100%;
	}

	.footer-sitemap ul li {
		float: none;
		line-height: 24px;
	}

	/** Social Media Section **/

	ul#social-media {
		float: left;
		margin-bottom: 24px;
	}

	ul#social-media li:last-child {
		margin-left: 0;
	}


	/** Studio Page **/

	/** About Us Section **/

	#about-us {
		padding: 120px 0;
	}

	#about-us h2 {
		text-align: left;
	}

	/** Team Section **/

	.team-member, .team-member:last-child {
		width: 100%;
	}

	.team-content h2 {
		font-size: 32px;
		line-height: 44px;
	}

	.team-content h4 {
		font-size: 12px;
		margin-top: 2px;
	}

	/** Clients Section **/

	#clients {
		padding: 120px 0;
	}


	/** Services Page **/

	/** Service Description Section **/

	#service-description {
		padding: 120px 0 72px 0;
	}

	#service-description h2 {
		margin: 0 0 12px 0;
	}

	/** Service Offering Section **/

	#service-offering {
		padding: 0 0 120px 0;
	}

	#service-offering .two-half .one-half, #service-offering .two-half .one-half ul {
		margin-bottom: 0;
	}

	#service-offering .two-half .two-half ul {
		margin-top: 0;
	}

	#service-offering ul li::before {
		content: "–";
		padding-right: 6px;
	}

	/** Service Process Section **/

	#service-process {
		padding: 120px 0;
	}

	.process-item {
		width: 100%;
		margin-bottom: 60px;
	}

	.process-item:last-child {
		margin-bottom: 0;
	}


	/** Contact Page **/

	/** Structure **/

	#contact .fp-section.fp-table, .fp-tableCell {
		height: 100% !important;
	}

	#contact .fp-tableCell {
		padding: 120px 0;
	}

	/** Contact Details Section **/

	#contact .fullwidth-container {
		height: 100%;
	}

	#contact .fp-tableCell {
		vertical-align: top;
	}

	#contact .one-half {
		position: relative !important;
		height: 100%;
		padding: 0;
		margin-top: -120px;
	}

	#contact .two-half {
		padding: 96px 60px 120px 60px;
		margin-bottom: -120px;
		border-bottom: 1px solid #e5e5e5;
	}

	#map {
		height: 400px;
	}

	#wpcf7-f25-o1.wpcf7 input, #wpcf7-f25-o1.wpcf7 textarea {
		max-width: 100%;
	}


	/** Case Study Page **/

	#work-info {
		padding: 120px 0 60px 0;
	}


	/** Blog **/

	/** Home Page **/

	.blog-content ul li.blog-item {
		padding: 0 15px;
	}

	.blog-content ul h1.post-title {
		font-size: 28px;
		line-height: 36px;
	}

	/** Single Post **/

	.post .fixedwidth-container.blog-home {
		padding: 0 33px;
	}

	.post {
		padding: 96px 0 120px 0;
	}

	.post-info, .archive-info {
		padding-bottom: 96px;
	}

	.post-author {
		padding: 60px 0;
	}

	.share-fb img, .share-twitter img, .share-linkedin img {
		margin: -12px;
		width: 24px;
		height: auto;
	}

}

/** 800px **/

@media screen and (max-height: 800px) {

	/** Structure **/

	.fp-section.fp-table, .fp-tableCell {
		height: 100% !important;
	}

	.fp-tableCell {
		padding: 120px 0;
	}

	#landing .fp-tableCell {
		padding: 144px 0;
	}

	#mobile-menu .fp-tableCell {
		padding: 0;
	}

	/** Contact Page **/

	/** Contact Details Section **/

	#contact .one-half {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	#contact .two-half {
		padding: 60px;
	}

}

/** 800px height & 900px width **/

@media screen and (max-height: 800px) and (max-width: 900px) {
	#contact .two-half {
		padding: 96px 60px 120px 60px;
	}
}

/** 768px **/

@media screen and (max-width: 800px) {

	/** Studio Page **/

	/** Clients Section **/

	ul.client-list {
		padding: 48px 0 0 0
	}

	ul.client-list li {
		width: 49%;
		margin-right: 2%;
	}

	ul.client-list li:nth-child(2n) {
		margin-right: 0;
	}

	ul.client-list li:nth-child(3n) {
		margin-right: 0;
	}

	ul.client-list li:nth-child(3) {
		margin-right: 2%;
	}

	ul.client-list li:nth-child(4) {
		margin-bottom: 60px;
	}

	ul.client-list li:nth-child(5), ul.client-list li:nth-child(6) {
		margin-bottom: 0;
	}

}

/** 600px **/

@media screen and (max-width: 600px) {

	/** Structure **/

	.divider {
		margin: 36px 0;
	}

	/** Contact Details Section **/

	#contact-details h2 {
		font-size: 28px;
		line-height: 36px;
	}

	/** Blog **/

	/** Home Page **/

	.blog-content ul li.blog-item {
		width: 100%;
		padding: 0 15px;
	}

	/** Work Grid Section **/

	.small {
		width: 50%; 
	}

}

/** 480px **/

@media screen and (max-width: 480px) {

	/** Structure **/

	.fixedwidth-container {
		padding: 0 36px;
	}

	/** Header **/

	header {
		top: 36px;
	}

	#logo {
		margin-left: 36px;
	}

	/** Navigation **/

	#menu-button {
		margin: 10px 36px 0 0;
	}

	.sticky #menu-button {
		margin: 8px 36px 0 0;
	}

	/** Landing Section **/

	#landing-content {
		padding: 0 36px
	}

	#scroll-down {
		display: none;
	}

	/** Services Section **/

	.services .fixedwidth-container {
		padding: 0 36px;
	}


	/** Studio Page **/

	/** Team Section **/

	.team-content {
		padding: 36px;
	}

	.team-content h2 {
		font-size: 24px;
		line-height: 36px;
	}

	.team-content h4 {
		font-size: 11px;
		margin-top: 2px;
	}


	/** Contact Page **/

	/** Contact Details Section **/

	#contact .two-half {
		padding: 84px 36px 120px 36px;
	}


	/** Studio Page **/

	/** Clients Section **/

	ul.client-list {
		padding: 36px 0 0 0
	}

	ul.client-list li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 36px;
	}

	ul.client-list li:nth-child(3) {
		margin-bottom: 24px;
	}


	ul.client-list li:nth-child(4) {
		margin-bottom: 60px;
	} 

	ul.client-list li:nth-child(5) {
		margin-bottom: 36px;
	}

	ul.client-list li:nth-child(3n) {
		margin-right: 0;
	}

	/** Blog **/

	/** Single Post **/

	.post .fixedwidth-container.blog-home {
		padding: 0 21px;
	}

	/** Sharing **/

	.share h3 {
		font-size: 18px;
	}

}

/** 400px **/

@media screen and (max-width: 400px) {

	/** General Type **/

	h1 {
		font-size: 32px;
		line-height: 44px;
	}

	/** Navigation **/

	ul#menu-main-menu-1 li, ul.subnav li {
		margin-right: 24px;
	}

	/** Mobile Navigation **/

	ul#menu-main-menu li a {
		font-size: 28px;
		line-height: 48px;
	}

	/** Work Grid Section **/

	.small {
		width: 100%; 
	}


}
