/*
	Theme Name: Fletcher Tables
	Theme URI: https://www.rubberdesign.co.uk
	Description: Custom theme built for Fletcher Tables
	Version: 1
	Author: Vicki Ball
	Author URI: https://www.rubberdesign.co.uk
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
@charset "UTF-8";

* {
	margin:0;
	padding:0;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	-moz-box-sizing:    border-box;
	-webkit-box-sizing: border-box;
	box-sizing:        border-box;
} 
*, ::after, ::before {
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/* ICONS */

@font-face {
	font-family: 'ElegantIcons';
	src:url('fonts/ElegantIcons.eot');
	src:url('fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
		url('fonts/ElegantIcons.woff') format('woff'),
		url('fonts/ElegantIcons.ttf') format('truetype'),
		url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'ElegantIcons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html,body {
    height:100%;
}
html {
	min-width: 320px;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: inherit;
	text-decoration:none;
}
a:hover {
	color:#27657B;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.container {
    width: 100%;
    height: auto;
    position: relative;
    padding: 0px;
    min-height: 100%;
    float: left;
}
@media (max-width: 1600px) {
	.container {
		padding: 20px 30px 30px 30px;
	}
	
}
.header {
    display: block;
    width: 100%;
    height: 100px;
    position: fixed;
    left: 0;
	top: 0;
    background-color: #FFF;
	z-index: 100;
}
.header .header-container {
    display: block;
	position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 30px 15px 30px;
	margin-left:auto;
	margin-right:auto;
    max-width: 1600px;
}
.header .logo{
	display:block;
	float:left;
	width:205px;
	height:auto;
	margin-top: 0px;
}
@media (max-width: 1600px) {
	.header .logo{
		width:205px;
		height:auto;
		margin-top: 0px;
	}
}
.headernav {
	display:block;
	top: 30px;
	right: 30px;
	position:absolute;
}

.headernav ul {
	list-style: none;
	opacity: 1;
}
.headernav ul li {
	float:left;
	padding: 10px;
}
.headernav ul li a {
	text-decoration:none;
	text-transform: uppercase;
	font-weight:800;
	color:#6A6A6A;
	font-size:13px;
	line-height: 13px;
	letter-spacing: 0.07em;
	-moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.headernav ul li a:hover {
	color:#9A1915;
}
.headernav ul li:last-of-type {
	padding-right: 0px;
}
.nav_toggle {
	position:absolute;
	top:28px;
	right:30px;
	background:#F3F3F1;
	display:none;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	cursor: pointer;
	z-index: 100;
	-moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.nav_toggle:before {
	content: "";
	background-image: url(images/Menu.svg);
	background-repeat: no-repeat;
	background-position: top 15px right 12px;
	background-size: 18px 13px;
	width: 44px;
	height: 44px;
	display: block;
	z-index: 200;
}
.nav_toggle:hover {
	background:#E5E4E1;
	
}
.social {
    display: none;
    position:absolute;
	bottom:25px;
	right:25px;
	z-index: 100;
}
.social  a {
    -webkit-appearance: none;
    border: none;
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    padding-right: 5px;
    font-size: 18px;
    line-height: 50px;
    color: #6A6A6A;
}
.social  strong {
    color:#6A6A6A;
	font-size: 18px;
	font-weight: 400;
}
@media (max-width: 1600px) {
	.header {
		height: 100px;
	}
}
@media (max-width: 870px) {
	.headernav ul {
		opacity: 0;
	}
	.nav_toggle {
		display:block;
	}
}

/* NAV OPEN */
.menuopen {
   height:100%;
}
.headernav.open {
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	background:#F7F7F7;
	z-index: 50;
}
.menuopen .nav_toggle {
    background: #FFF;
	display: block;
}
.menuopen .logo{
	position:absolute;
	z-index: 100;
}
.headernav.open ul {
    display: block;
	position:absolute;
	top:100px;
	left:0px;
	z-index: 100;
	width:100%;
	opacity: 1;
}
.headernav.open ul li {
    display: block;
	width:100%;
	float:none;
	text-align: center;
	padding: 0px;
}
.headernav.open ul li a {
	font-size:18px;
	line-height:18px;
    display: block;
	width:100%;
	padding: 20px;
}
.menuopen .social {
    display: block;
}


/* STRUCTURE */
.row {
	margin-left:auto;
	margin-right:auto;
    max-width: 1600px;
	/*margin-left: -30px;
	margin-right: -30px;*/
	clear:both;
}
.col-1 {
	width: 100%;
	float: left;
	padding:30px;
}
.col-2 {
	width: 50%;
	float: left;
	padding:30px;
}
.img-responsive {
	width: 100%;
	display:block;
}
@media (max-width: 1600px) {
	.row {
		margin-left: -30px;
		margin-right: -30px;
	}
	
}
@media (max-width: 950px) {
	.col-2 {
		width: 100%;
		float: left;
	}
}

/* STRUCTURE */


.content {
	display:block;
	float:left;
	width: 100%;
	margin-top: 100px;
	min-height: calc(100% - 100px);
	background: #F7F7F7;
	padding: 30px 60px 30px 60px;
	background-image:url(images/BGPattern.svg);
	background-repeat: repeat-y;
	background-size: 100%;
	position: absolute;
}
/*.content-container {
    display: block;
	position: relative;
    width: 100%;
	margin-left:auto;
	margin-right:auto;
    max-width: 1540px;
	padding: 40px 0px 40px 0px;
}*/
@media (max-width: 1600px) {
	.content {
		margin-top: 80px;
		min-height: calc(100% - 100px);
		padding: 30px 60px 30px 60px;
		width: calc(100% - 60px);
		border-bottom: solid 30px white;
	}
	.content-container {
		padding: 0px;
	}
	
}
@media (max-width: 950px) {
	.content {
		padding: 10px 40px 10px 40px;
	}
	
}
@media (max-width: 550px) {
	.content {
		padding: 0px 30px 0px 30px;
	}
	
}
.content h1 {
	font-size:40px;
	line-height:51px;
	font-weight:300;
	padding-bottom:30px;
}
.content h2 {
	font-size:26px;
	line-height:36px;
	font-weight:900;
	padding-bottom:20px;
	color:#9A1915;
	text-transform:uppercase;
}
.content h3 {
	font-size:24px;
	line-height:34px;
	font-weight:900;
	padding-bottom:20px;
}
.content h4 {
	font-size:22px;
	line-height:26px;
	color:#000;
	font-weight:300;
	padding-bottom:10px;
	text-transform: uppercase;
}
.content h5 {

}
.content h6 {
	font-size:17px;
	line-height:24px;
	color:#000;
	font-weight:300;
	padding-bottom:10px;
}
.content p {
	font-size:16px;
	line-height:24px;
	color:#000;
	font-weight:300;
	padding-bottom:20px;
}
.content a {
	color:#000;
	text-decoration:none;
	border-bottom: 1px solid #9A1915;
}
.content p:last-of-type {
	padding-bottom:0px;
}
strong {
	font-weight:700;
}
.callout {
	padding: 15px 0px 15px 50px;
	border-left: 5px solid #9A1915;
}
.content ul, .content ol {
    padding: 10px 15px 10px 15px;
}
.content ul li, .content ol li {
    padding: 5px 0px 5px 0px;
}
.wp-block-quote {
    padding: 15px 0px 15px 50px;
    border-left: 5px solid #9A1915;
    margin: 30px 0 30px 0;
}
.wp-block-quote cite {
    font-weight: 900;
    padding-top: 10px;
    display: block;
}
.stdrule, .wp-block-separator {
	display:block;
	float:left;
	height:1px;
	width:100%;
	margin: 30px 0 30px 0;
	border: none;
	border-bottom: 1px dashed rgba(112, 112, 112, 0.3);
	border-image-source:url("images/DashedBorder.svg");
	border-image-slice: 1;
	border-image-repeat: round;
}
.wp-block-gallery {
    clear:both;
}
.wp-caption-text {
    font-size: 1em;
    line-height: 17px;
    font-weight: bold;
    padding: 8px;
    margin: 0;
    background: rgba(80,80,80,0.8);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
	color: #FFF;
}
.breadcrumbs a {
    font-size: 13px;
	font-weight:700;
}
.breadcrumbs img {
    padding: 0 5px 0 5px;
	vertical-align: middle;
}
.blockgallery + .stdrule {
  margin: 0px 0 30px 0;
}

@media (max-width: 1000px) {
	.content h1 {
		font-size:30px;
		line-height:41px;
		padding-bottom:20px;
	}
	.content h2 {
		font-size:20px;
		line-height:28px;
		padding-bottom:20px;
	}
	.content p {
		font-size:15px;
		line-height:22px;
	}
}
@media (max-width: 550px) {
	.content h1 {
		font-size:25px;
		line-height:35px;
		padding-bottom:15px;
	}
	.callout {
		padding: 0px 0px 0px 30px;
		border-left: 3px solid #9A1915;
	}
	.stdrule {
		margin: 20px 0 20px 0;
	}
	
}
.content .sizeslist {
  margin: 0;
  padding: 30px 0 0 0;
  list-style-type: none;
}
.content .layontext {
    margin-left: 60px;
    background-color: rgb(221,220,215, 0.6);
    padding: 15px 20px 18px 45px;
    font-size: 15px;
    line-height: 20px;
    background-repeat: no-repeat;
    background-position: 12px 12px;
    background-image: url(images/icon_info_alt.svg);
    background-size: 25px 25px;
}
.content .sizeslist li {
  counter-increment: step-counter;
  padding-left: 60px;
	position:relative;
	padding-bottom:30px;
	font-size: 16px;
line-height: 24px;
	padding-top: 0;
}
.content .sizeslist li:last-of-type {
    padding-bottom: 20px;
}
.tablesizes .col-2 {
	padding-top:0;
	
}
.sizeslist li::before {
position:absolute;
	left:0;
	top:0;
  content: counter(step-counter);
  font-size: 52px;
  color: #9A1915;
  font-weight: 900;
  line-height:42px;
}
.blockgallery {
	display:block;
	width:100%;
	float:left;
	height:auto;
	min-height:450px;
	margin: 60px 0px 30px 0px;
	
}
.blockgallery .quarterimage {
	display:block;
	width:25%;
	padding-bottom: 50%;
	float:left;
	position:relative;
	border-right: 8px solid #F7F7F7;
}
.blockgallery .quarterimagetop {
	display:block;
	width:100%;
	position:absolute;
	top:0;
	height:50%;
	border-bottom: 4px solid #F7F7F7;
}
.blockgallery .quarterimagebottom {
	display:block;
	width:100%;
	position:absolute;
	top:50%;
	height:50%;
	border-top: 4px solid #F7F7F7;
}
.blockgallery .halfimage {
	display:block;
	width:50%;
	padding-bottom: 50%;
	float:left;
}
.blockgallery div {
	background-size: cover;
	background-position: center;
}
@media (max-width: 950px) {
	.blockgallery .quarterimage {
		width:50%;
		border-right: 8px solid #F7F7F7;
	}
	.blockgallery .halfimage {
		width:100%;
		border-top: 8px solid #F7F7F7;
	}
	.blockgallery > div:nth-child(2) {
		border-right: none;
	}
	
}
@media (max-width: 950px) {
	.blockgallery {

		min-height: 100px;
		margin: 30px 0px 30px 0px;
	}
}
.stdgallery {
	display:block;
	width:100%;
	float:left;
	height:auto;
	margin: 60px 0px 30px 0px;
}
.stdgallery {
	display:block;
	width:100%;
	float:left;
	height:auto;
	margin: 60px 0px 30px 0px;
}
.stdgallery:last-of-type {
	margin-bottom: 0px;
}
.stdgallery img {
	display:block;
	float:left;
	height:auto;
}
.twoimage img {
	width:50%;
	padding-bottom:8px;
	padding-right:8px;
}
.oneimage img {
	width:100%;
	padding-bottom:8px;
	padding-right:0px;
}
.threeimage img {
	width:33.333%;
	padding-bottom:8px;
	padding-right:8px;
}
.fourimage img {
	width:25%;
	padding-bottom:8px;
	padding-right:8px;
}
@media (max-width: 950px) {
	.fourimage img {
		width:50%;
	}
}
@media (max-width: 650px) {
	.threeimage img, .threeimage .video, .twoimage img {
		width:50%;
	}
}
@media (max-width: 590px) {
	.fourimage img, .threeimage img, .twoimage img {
		width:100%;
		padding-right: 0px;
	}
}
.videogallery {
	display:block;
	width:calc(100% + 40px);
	float:left;
	height:auto;
	margin-left: -20px;
	margin-right: -20px;
}
.videogallery .video {
	display:block;
	float:left;
	height:auto;
	width:33.333%;
	padding:20px;
}
@media (max-width: 1000px) {
	.videogallery .video {
		width:50%;
	}
}
@media (max-width: 850px) {
	.videogallery {
		width:calc(100% + 20px);
		margin-left: -10px;
		margin-right: -10px;
	}
	.videogallery .video {
		padding:10px;
	}
	
}
@media (max-width: 700px) {
	.videogallery {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.videogallery .video {
		width: 100%;
		padding: 10px 0px 10px 0px;
		clear:both;
	}
	
}

/* CONTACT FORM */

.contact-form {
    width: 100%;
    display: block;
    float: left;
}
.contact-address {
    width: 30%;
    display: block;
    float: left;
}
#contactForm {
    width: 70%;
    display: block;
    float: left;
	background-color:rgb(221,220,215, 0.6);
	padding: 30px 20px 30px 20px;
}
.error {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 0 0 20px 20px;
}
.contact-address ul {
	list-style:none; 
	padding-top:20px;
	font-size: 16px;
	line-height: 24px;
	padding-left: 0;
}
.contact-address ul li {
	padding-bottom:10px;
	background-repeat: no-repeat;
	background-position: 0px 7px;
	font-weight:300;
}
.contact-address .phone {
	background-image: url(images/phone-icon.svg);
	background-size: 17px 17px; 
}

.contact-address .phone, .contact-address .email {
	padding-left:30px;
}
.contact-address .email {
	background-image: url(images/mail-icon.svg);
	background-size: 19px 14px; 
}
.contact-address .email a {
	font-weight:300;
}
.contact-address .social {
    display: block;
    position: relative;
    bottom: 0px;
    right: 0px;
    z-index: 50;
	clear:both;
	padding-top: 15px;
}
.contact-address .social a {
    border-bottom: none;
	color:#6A6A6A;
}
#contactForm > p {
    width:50%;
	float:left;
	padding:10px 20px 10px 20px;
	position: relative;
}
#contactForm > .fullwidth {
	width:100%;
}
#contactForm > p > label {
    position: absolute;
	top:10px;
	left:30px;
	height: 45px;
	line-height: 45px;
	color: #000;
	font-weight: 700;
	font-size:14px;
	text-transform:uppercase;
}
#contactForm > p > label > em {
    color: #9A1915;
	padding-left:5px;
	font-weight: 800;
}
#contactForm > p > input {
    width:100%;
	display:block;
	background-color: white;
	border:none;
	height: 45px;
	padding:0px 20px 0px 100px;
	font-size: 14px;
	line-height: 45px;
	color: #454444;
}
#contactForm > .error > input {
    border-right: 5px solid #9A1915;
}
#contactForm > p > textarea {
    width:100%;
	display:block;
	background-color: white;
	border:none;
	height: 200px;
	padding:10px 20px 20px 100px;
	font-size: 14px;
	line-height: 22px;
	color: #454444;
}
#contactForm > p > #submit {
    background-color: #9A1915;;
    color: #FFF;
    padding: 6px 40px 6px 8px;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 0px;
    font-weight: 700;
	border-radius: 4px;
	background-image: url(images/arrow_right.svg);
	background-size: 25px 15px;
	background-repeat: no-repeat;
	background-position:right 8px top 8px;
	cursor: pointer;
}
#contactForm > p > #submit:hover {
    background-color: #000;
}

@media (max-width: 1100px) {
	.contact-address {
		width: 100%;
		padding-bottom:30px;
	}
	.contact-address p > br {
		display:none;
	}
	.contact-address ul {
		padding-top:10px;
	}
	.contact-address ul li {
		float:left;
		margin-right:20px;
	}
	#contactForm {
		width: 100%;
	}
	.contact-address .social {
		padding-top: 0px;
	}
}
@media (max-width: 950px) {
	
	#contactForm {
		padding: 10px 10px 10px 10px;
	}
	#contactForm > p {
		width: 50%;
		float: left;
		padding: 10px 10px 10px 10px;
		position: relative;
	}
	
	#contactForm > p > label {
		top: 10px;
		left: 20px;
		height: 40px;
		line-height: 40px;
		font-size: 12px;
	}
	#contactForm > p > input {
		height: 40px;
		padding: 0px 10px 0px 80px;
		font-size: 13px;
		line-height: 45px;
		color: #454444;
	}
	#contactForm > p > textarea {
		padding:10px 10px 10px 80px;
		font-size: 13px;
	}
}
@media (max-width: 750px) {
	#contactForm > p {
		width: 100%;
		float: left;
		padding: 10px 10px 10px 10px;
		position: relative;
	}
	
}
@media (max-width: 550px) {
	#contactForm {
		padding: 0px;
		background-color: transparent;
	}
	
}

/* PORTFOLIO */

.filter {
	display:block;
	float:left;
	width:100%;
	margin-bottom:30px;
}
.filter h4 {
    display: inline-block;
    float: left;
    padding-right: 20px;
    line-height: 48px;
    text-transform: none;
}
.filter ul {
	display:block;
	float:left;
	list-style:none;
}
.content .filter li {
    display: block;
    float: left;
    padding-right: 8px;
    padding-bottom: 10px;
    padding-top: 3px;
    padding-left: 3px;
}
.filter li a {
	background-color: #9A1915;
	padding: 6px 8px 6px 8px;
	color: #FFF;
	font-weight: 700;
	text-transform:uppercase;
	letter-spacing:0.1em;
	border-radius: 4px;
	font-size:13px;
	line-height:13px;
	border-bottom: none;
	-moz-transition: background-color .4s ease-out;
    -o-transition: background-color .4s ease-out;
    -webkit-transition: background-color .4s ease-out;
    transition: background-color .4s ease-out;
}
.filter .superyacht a, .cattag.superyacht a {
	background-image:url(images/Superyacht_Icon.svg);
	background-repeat: no-repeat;
	background-size: 40px 12px;
	background-position: top 6px left 6px;
	padding-left: 53px;
}
.filter .residential a, .cattag.residential a {
	background-image:url(images/Residential_Icon.svg);
	background-repeat: no-repeat;
	background-size: 21px 16px;
	background-position: top 6px left 8px;
	padding-left: 36px;
}
.filter li a:hover {
	background-color: #000;
}

.portfolio {
	display:block;
	float:left;
	width:calc(100% + 30px);
	margin-left:-15px;
	margin-right:-15px;
}
.portfolio section {
	display:block;
	float:left;
	width:33.33%;
	position:relative;
	min-height:300px;
	padding:15px;
}
.portfolio section > div {
	position:absolute;
	top:0;
	left:0;
	width:calc(100% - 30px);
	height:calc(100% - 30px);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin:15px;
}
.portfolio section a {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: 20;
	border-bottom: none;
}
.portfolio section a strong {
	position:absolute;
	bottom:0;
	left:0;
	background-color:#4D4D4D;
	width:100%;
	min-height:35px;
	height:auto;
	z-index: 20;
	border-bottom: none;
	color:#FFF;
	padding: 10px 45px 10px 10px;
	text-transform:uppercase;
	font-size:14px;
	line-height:14px;
	letter-spacing:0.1em;
	background-image:url(images/grey-arrow.svg);
	background-repeat: no-repeat;
	background-size: 25px 14px;
	background-position: top 10px right 11px;
	-moz-transition: background-color .4s ease-out;
    -o-transition: background-color .4s ease-out;
    -webkit-transition: background-color .4s ease-out;
    transition: background-color .4s ease-out;
}
.portfolio section a:hover strong {
	background-color:#212121;
}
.portfolio section .portfolio-information div {
	opacity:0;
	color:#FFF;
	background: rgba(0,0,0,0.6);
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	padding: 50px 40px 0px 40px;
	font-size:13px;
	line-height:18px;
	-moz-transition: opacity .4s ease-out;
    -o-transition: opacity .4s ease-out;
    -webkit-transition: opacity .4s ease-out;
    transition: opacity .4s ease-out;
}
.portfolio section .portfolio-information div dt {
	font-weight:700;
	text-transform:uppercase;
	color:#9A1915;
	float:left;
	width: 85px;
	padding-top:4px;
	clear:both;
}
.portfolio section .portfolio-information div dd {
	width: calc(100% - 85px);
	float:right;
	padding-top:4px
}
.portfolio section .portfolio-information {
	position: absolute;
    width: 100%;
    height: 100%;
}
.portfolio section .portfolio-information img {
	position: absolute;
    top: 15px;
    left: 15px;
	filter: drop-shadow( 0 0 4px #000);
	z-index: 30;
}
.portfolio section .portfolio-information span {
	position: absolute;
    top: 15px;
    right: 15px;
	background-color: #9A1915;
	padding: 3px 4px 3px 4px;
	color: #FFF;
	font-weight: 700;
	text-transform:uppercase;
	border-radius: 4px;
	font-size:12px;
	line-height:12px;
	z-index: 30;
}
.portfolio section a:hover + .portfolio-information {
	
}
.portfolio section a:hover + .portfolio-information > div {
	opacity:1;
}
@media (max-width: 1200px) {
	.portfolio section {
		width:50%;
	}
}
@media (max-width: 830px) {
	.portfolio section {
		width:100%;
	}
}
@media (max-width: 460px) {

	.portfolio section .portfolio-information div dt {
		display:none;
	}
	.portfolio section .portfolio-information div dd {
		width: 100%;
		float:right;
	}
}


.cattag {
    float: right;
	padding-top: 10px;
}
.cattag a {
	background-color: #9A1915;
	padding: 6px 8px 6px 8px;
    padding-left: 8px;
	color: #FFF;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 4px;
	font-size: 13px;
	line-height: 13px;
	border-bottom: none;
	-moz-transition: background-color .4s ease-out;
	-o-transition: background-color .4s ease-out;
	-webkit-transition: background-color .4s ease-out;
	transition: background-color .4s ease-out;
}
.portfolio-tech {
	float:right;
	width: 40%;
	padding: 0px 0px 20px 60px;
	font-size: 15px;
}
.portfolio-tech dt {
	font-weight:700;
	text-transform:uppercase;
	float:left;
	width: 100px;
	padding-top:4px;
	clear:both;
	font-size: 13px;
}
.portfolio-tech dd {
	width: calc(100% - 100px);
	float:right;
	padding-top:4px
}
@media (max-width: 1000px) {
	.portfolio-tech {
		width: 50%;
		padding: 0px 0px 20px 40px;
	}
}
@media (max-width: 750px) {
	.portfolio-tech {
		width: 100%;
		padding: 0px 0px 30px 0px;
	}
	.cattag {
		width: 100%;
	}
	.cattag a {
		width:100%;
		display: block;
		text-align: right;
	}
}
@media (max-width: 500px) {
	.portfolio-tech dt, .portfolio-tech dd {
		width: 100%;
	}
}

.homepage {
    padding: 0;
}
.social_home {
    display: block;
    bottom: 80px;
    left: 50%;
    max-width: 770px;
    text-align: right;
	padding-left: 90px;
}
.social_home a, .social_home strong {
	border-bottom: none;
    color: #fff;
}
.social_home a:hover {
    color: #9A1915!important;
}
.home_one {
    /*background-image: url(images/VideoBackground@2x.jpg);
    background-repeat:no-repeat;
    background-size: cover;
	background-position: center;*/
	display: block;
	float: left;
	width: 100%;
	margin-top: 0px;
	min-height: 100%;
	position: absolute;
	overflow: hidden;
}


.video-container {
  position: absolute;
top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-container > video {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
	min-width: 100%;
	min-height: 100%;
}
.home_one .overlay {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.4);
	z-index: 10;
}
@keyframes scrolldown {
  0%   {padding-top:12px;}
  25%  {padding-top:16px;}
  100%  {padding-top:12px;}
}
@keyframes scrollup {
  0%   {padding-bottom:12px;}
  25%  {padding-bottom:7px;}
  100%  {padding-bottom:12px;}
}
.arrow_down, .arrow_up {
	text-align: center;
    position: absolute;
    bottom: 120px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
	border-radius: 30px;
    background-color: #9A1915;
	cursor: pointer;
	-o-transition: transform 0.3s ease-in-out;
	-webkit-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	z-index: 95;
}
.arrow_down:hover {
	transform: translate(0px, 6px);
}
.arrow_down img {
	padding-top:12px;
	animation-name: scrolldown;
  	animation-duration: 3s;
	animation-iteration-count: infinite;
}
.arrow_up img {
	transform: rotate(180deg);
	padding-bottom:12px;
	animation-name: scrollup;
  	animation-duration: 3s;
	animation-iteration-count: infinite;
}
.home_one_inner {
    position: absolute;
    bottom: 120px;
    right: 50%;
    max-width: 770px;
    z-index: 50;
	padding-right: 90px;
}
.home_one_inner h1 {
    color:#FFF;
}
.home_one_inner h2 {
    color:#FFF;
	text-transform: none;
	font-weight: 300;
	font-size:17px;
	line-height:25px;
	padding: 8px 0px 8px 50px;
border-left: 5px solid #9A1915;
}

@media (max-width: 1600px) {
	.home_one_inner {
		bottom: 80px;
		padding-right: 80px;
		padding-left: 80px;

	}
	.social_home {
		bottom: 10px;
		right: 20px;
		left: auto;
	}
}
@media (max-width: 1400px) {
	.home_one_inner h1 {
		font-size: 30px;
		line-height: 41px;
		padding-bottom: 20px;
	}
	.home_one_inner h2 {
		font-size: 15px;
   		 line-height: 23px;
		padding: 8px 0px 8px 30px;
	}	
}
@media (max-width: 1100px) {
	.home_one_inner {
		top: 80px;
		width: 100%;
		left: 0;
		max-width: 100%;
		text-align: center;
	}
	.home_one_inner h2 {
		border: none;
		padding-left: 0px;
	}
	.arrow_down {
		bottom: 80px;
	}
}
@media (max-width: 650px) {
	.home_one_inner {
		padding: 0 30px 0 30px;
	}
	.arrow_down {
		bottom: 50px;
	}
	.home_one_inner h2 {
		font-size: 14px;
   		 line-height: 20px;
	}
}
.home_one{
	/*display:none;*/
}
.home_two {

    display: block;
    float: left;
    width: 100%;
    margin-top: 0px;
    min-height: 100%;
    position: absolute;
	overflow:hidden;
    /*background-image: url(images/HPTableImage@2x.png);
    background-repeat: no-repeat;
	background-position: 180% 50%;
    /*background-position: calc(100% + 80%) calc(100% + 100px);
    background-size: 70% auto;*/

}
.tableimage {
	position: absolute;
	top: 2.5%;
	max-height: 95%;
	width:auto;
	right: -10%;
}
.home_two_inner {
    width: calc(50% - 100px);
    height: calc(100% - 260px);
    background-color: rgba(221,220,215,0.6);
    position: absolute;
    padding: 60px;
    top: 130px;
	right: 50%;
	max-width: 770px;
	overflow-y: scroll;
}
.home_two h2, .home_three h2 {
	font-size: 40px;
	line-height: 51px;
	font-weight: 300;
	color:#000;
	text-transform: none;
}	
.table_sizes {
    display: block;
    float: left;
    width: 100%;
}
.table_sizes > div {
    display: block;
    float: left;
    width: 33.333%;
	text-align: center;
	padding: 0 10px 0 10px;
}
.sizeone svg {
	padding-top:20px;
    width: 50%;
}
.sizetwo svg {
	padding-top:10px;
    width: 60%;
}
.sizethree svg {
    width: 70%;
}
.table_sizes h4 {
    padding: 0;
    color: #9A1915;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    margin: 15px 0px 5px 0px;
}
.table_sizes h5 {

    background-image: url(images/Chair.svg);
    background-repeat: no-repeat;
    background-size: 13px 18px;
    background-position: top 6px left 6px;
    padding-left: 25px;
    display: block;
    clear: both;
    min-height: 24px;
    font-size: 18px;
    line-height: 24px;
    width: 72px;
    margin-left: auto;
    margin-right: auto;
}
.home_two_inner p {
    clear: both;
    padding-top: 30px;
}
@media (max-width: 1600px) {
	.arrow_down {
		bottom: 50px;
	}
}
@media (max-width: 1300px) {
	.home_two_inner {
		padding: 40px;
		width: calc(50% - 60px);
		height: calc(100% - 250px);
		top: 125px;
	}
}
@media (max-width: 1150px) {
	.home_two {
		background-position: right 160% top 50%;
		background-size: 150%;
	}
	.home_two_inner {
		width: calc(100% - 200px);
		height: calc(100% - 200px);
		background-color: rgba(221,220,215,0.9);
		top: 100px;
		right: 100px;
		max-width: 100%;
	}
	.arrow_down, .arrow_up {
		bottom: 40px;
		width: 40px;
		height: 40px;
	}
	.arrow_down img, .arrow_up img {
		width: 12px;
		padding-top: 9px;
	}
}
@media (max-width: 800px) {
	.home_two_inner {
		width: calc(100% - 100px);
		height: calc(100% - 100px);
		background-color: rgba(221,220,215,0.9);
		top: 50px;
		right: 50px;
	}
	.social_home {
	   display:none;
	}
	
}
@media (max-width: 700px) {
	.home_two_inner {
		padding: 30px;
	}
	.table_sizes h4 {
		padding: 3px 4px 3px 4px;
		font-size: 13px;
		line-height: 13px;
		margin: 10px 0px 7px 0px;
	}
	.table_sizes h5 {
		background-position: top 3px left 6px;
		font-size: 14px;
		line-height: 24px;
		width: 62px;
	}
	.home_two h2, .home_three h2 {
		font-size: 32px;
		line-height: 41px;
		text-align: center;
	}
	.home_two_inner p {
		text-align: center;
	}
	.sizeone .tableanim {
		padding-top:20px;
		width: 60%;
	}
	.sizetwo .tableanim {
		padding-top:10px;
		width: 70%;
	}
	.sizethree > .tableanim {
		width: 80%;
	}
}
@media (max-width: 550px) {
	.table_sizes h5 {
		background-position: center top;
		padding: 18px 0 0 0;
	}
}
@media (max-width: 460px) {
	.tableimage {
		display: none;
	}
	.home_two_inner {
		width: 100%;
		height: 100%;
		background-color: transparent;
		top: 0px;
		right: 0px;
	}
	.sizeone .tableanim {
		padding-top:20px;
		width: 70%;
	}
	.sizetwo .tableanim {
		padding-top:10px;
		width: 80%;
	}
	.sizethree > .tableanim {
		width: 90%;
	}
	.home_two_inner h2 {
		font-size: 25px;
		line-height: 30px;
	}	
	.home_two_inner p {
		font-size: 13px;
		line-height: 20px;
		padding-top: 20px;
	}
	.arrow_down {
		bottom: 40px;
		width: 40px;
		height: 40px;
	}
	.arrow_down img {
		width: 12px;
		padding-top: 9px;
	}
}
.home_two{
	opacity:0;
}

.home_three {
    margin-left: auto;
    margin-right: auto;
    max-width: 1540px;
    clear: both;
	padding-top: 100px;
}
@media (max-width: 1600px) {
	.home_three {
		padding: 60px 60px 60px 60px;
	}
}
@media (max-width: 1200px) {
	.home_three .portfolio {
		margin-bottom: 30px;
	}
	
	.arrow_up {
		position: relative;
		clear: both;
		left: auto;
		bottom: auto;
		margin-left: auto;
		margin-right: auto;
	}

}
@media (max-width: 950px) {
	.home_three {
		padding: 40px 40px 40px 40px;
	}
}
@media (max-width: 550px) {
	.home_three {
		padding: 30px 30px 30px 30px;
	}
}
.home_three {
	display:none;
	opacity:0;
}
.showhomethree {
	display:block;
}

#preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 99;
    height: 100%;
}
#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(images/rolling.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}
/* HOME */

.pagination {
    display: block;
    float: right;
    padding-top: 10px;
}
.pagination a {
    margin-left: 10px;
}
@media (max-width: 900px) {
    .pagination {
        width:100%;
        float: none;
        padding-bottom: 10px;
    }
    .pagination a {
        margin-left: 0px;
        margin-right: 10px;
    }
}