/**
 * Table of Contents:
 *
 * 1.0 - General
 * 2.0 - Repeatable Elements & Patterns, Containers / Layout
 * 3.0 - Header
 * 4.0 - Lightbox Sections (Newsletter & Share)
 * 5.0 - Navigation
 * 6.0 - Slider
 *   6.1 - Carousel
 * 7.0 - Different Featured Content Boxes
 * 8.0 - Footer
 *   7.1 - Footer Sidebar
 * 9.0 - Blog
 *   9.1 - Blog Masonry
 *   9.2 - Blog Sidebar
 * 10.0 - Portfolio
 * 	 10.1 - Portfolio Single Page
 * 11.0 - Contact Page
 * 12.0 - 404 Page
 * -----------------------------------------------------------------------------
 */
 
 
 /**
 * 1.0 General
 * -----------------------------------------------------------------------------
 */
 
html,body {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	background: #ebebeb;
	font-family: 'Open Sans', sans-serif;
	color: #090909;
	font-size:14px;
	line-height:44px;
}
a {
	text-decoration:none;
	color:#e94b4b;
}
a:hover {
	color:#000;
}
strong {
	font-weight:700;
}
em {
	font-style:italic;
}
h1 {
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:3px;
	font-size:14px;
	margin-bottom:10px;
}
h2 {
	font-size:36px;
	line-height:52px;
	font-weight:300;
	margin-bottom:20px;
}
h3 {
	font-size:16px;
	margin-bottom:20px;
	font-weight:400;
	line-height:26px;
}
h4 {
	font-size:10px;
	text-transform:uppercase;
	margin-bottom:12px;
	font-weight:700;
	letter-spacing:2px;
}
article p {
	font-size:16px;
	margin-bottom:20px;
	color:#232323;
	line-height:34px;
}
blockquote {
	font-family: 'Cardo', serif;	
	font-size:34px;
	font-style:italic;
	line-height:52px;
	margin-bottom:40px;
}
.underlined {
	display:inline;
	font-style:16px;
	line-height:40px;
	font-weight:600;
	padding-bottom:3px;
	border-bottom:2px solid #000;
	color:#898989;
	background-color:#fff;
}

/* Fixes / Helper Classes */

.responsive-hidden {
	display:block;
}
.responsive-visible {
	display:none;
}
.table {
	display:table;
	height:100%;
	width:100%;
}
.table-cell {
	display:table-cell;
	vertical-align:middle;
	height:100%;
}
.left {
	float:left;
}
.right {
	float:right;
}
.overflow {
	overflow:hidden;
	position:fixed;
}

/* Responsive Video Embed */

.js-video {
	height: 0;
	padding-top: 25px;
	padding-bottom: 67.5%;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}
.js-video.vimeo {
	padding-top: 0;
}
.js-video.widescreen {
	padding-bottom: 57.25%;
}
.js-video embed, .js-video iframe, .js-video object, .js-video video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}
iframe {
	border:none;
	border-width:0;
}
/* Fixed Window Border */

#top,#bottom,#left,#right {
	background: #000;
	position: fixed;
	z-index: 1000;
}
#left,#right {
	top: 0;
	bottom: 0;
	width: 10px;
}
#left {
	left: 0;
}
#right {
	right: 0;
}
#top,#bottom {
	left: 0;
	right: 0;
	height: 10px;
}
#top {
	top: 0;
}
#bottom {
	bottom: 0;
}

/* Custom Tooltip */
.tipr_content {
	font-size:14px;
	color:#898989;
	background-color: #fff;
	padding: 9px 17px;
}
.tipr_container_bottom {
	display: none;
	position: absolute;
	margin-top: 13px;
	z-index: 1000;
}
.tipr_container_top {
	display: none;
	position: absolute;
	margin-top: -160px;
	z-index: 1000;
}
.tipr_point_top, .tipr_point_bottom {
	position: relative;
	background: #fff;
	border: 1px solid #dcdcdc;
}
.tipr_point_top:after, .tipr_point_top:before {
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	top: 100%;
	content: "";
	height: 0;
	width: 0;
}
.tipr_point_top:after {
	border-top-color: #fff;
	border-width: 8px;
	left: 50%;
	margin-left: -8px;
}
.tipr_point_top:before {
	border-top-color: #dcdcdc;
	border-width: 9px;
	left: 50%;
	margin-left: -9px;
}
.tipr_point_bottom:after, .tipr_point_bottom:before {
	position: absolute;
	pointer-events: none;
	border: solid transparent;
	bottom: 100%;
	content: "";
	height: 0;
	width: 0;
}
.tipr_point_bottom:after {
	border-bottom-color: #fff;
	border-width: 8px;
	left: 50%;
	margin-left: -8px;
}
.tipr_point_bottom:before {
	border-bottom-color: #dcdcdc;
	border-width: 9px;
	left: 50%;
	margin-left: -9px;
}

 /**
 * 2.0 Repeatable Elements & Patterns, Containers / Layout
 * -----------------------------------------------------------------------------
 */

/* Layout / Containers */

article {
	width:100%;
	padding:20px;
	padding:100px 0;
}
.container {
	margin:0 auto;
	width:100%;
	padding:0 40px;
}
.boxed-content .container {
	max-width:1340px;
}
.full-width .container {
	max-width:none;
}
.post-without-sidebar .container {
	max-width:1000px;
}

/* Split Layout */

.split-section .container {
	padding-top:100px;
	padding-bottom:100px;	
}
.split-section {
	padding:0;
	overflow:hidden;
}
.split_section_1_of_2 {
	width:50%;
	float:left;
	margin:0;
    padding-bottom: 100%;
    margin-bottom: -100%;
}
.split_section_1_of_3 {
	width:33.33%;
	float:left;
	margin:0;
    padding-bottom: 100%;
    margin-bottom: -100%;
}
.split_section_2_of_3 {
	width:66.66%;
	float:left;
	margin:0;
    padding-bottom: 100%;
    margin-bottom: -100%;
}
.split-container {
	padding:30px;
	margin:0 auto;
}

/* Center Box / Section Title */

.center-box {
	margin-left:auto !important;
	margin-right:auto !important;
	float:none;
	text-align:center;
	width:80%;
	max-width:950px;
}
.center-box img {
	margin:0 auto;
	margin-bottom:30px;
}
.section-title {
	margin-bottom:80px;
}

/* Page Header Title */

.page-title {
	padding-bottom:50px;
	text-align:center;
}
.page-title h3 {
	font-size:14px;
	color:rgba(0,0,0,0.5);
	text-transform:uppercase;
	letter-spacing:1px;
	margin-bottom:0;
}
.page-title h3:before {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
    border: medium none;
    content: "";
    display: block;
    height: 1px;
    margin: 18px auto;
    width: 70px;
}

/* Breadcrumbs */

.breadcrumbs {
	font-size:11px;
}
.breadcrumbs .col:last-child {
	text-align:right;
}
.breadcrumbs a {
	padding:10px 7px;
	display:inline-block;
}
.breadcrumbs .sep {
	color:#898989;
}
.breadcrumbs span:last-child {
	padding-left:7px;
}

/* Buttons */

.buttons li {
	display:inline-block;
	margin-right:30px;
}
.buttons li:last-child {
	margin-right:0;
}
.button {
    background-color: rgba(0, 0, 0, 0.03);
    border: 2px solid #000;
    color: #000;
    font-size: 14px;
    padding: 10px 20px;
    text-transform: uppercase;
	display:inline-block;
}
.button:hover {
	background-color:#000;
	color:#fff;
}
.white-button {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 14px;
    padding: 10px 20px;
    text-transform: uppercase;
	display:inline-block;
}
.white-button:hover {
	background-color:#fff;
	color:#000;
}
.small-button {
	font-weight:bold;
	font-size:14px;
	text-transform:uppercase;
	display:inline-block;
	padding-bottom:2px;
	border-bottom:2px solid #e3e3e3;
}
.read-more {
	font-weight:bold;
	font-size:11px;
	text-transform:uppercase;
	display:inline-block;
	padding-bottom:2px;
	border-bottom:2px solid #e3e3e3;
}

/* Sections Background Colors */

.white {
	background-color:#fff;
}
.light-gray {
	background-color:#fafafa;
}
.medium-gray {
	background-color:#ebebeb;
}
.light-yellow {
	background-color:#f4e1a1;
}
.light-blue {
	background-color:#a1d4f4;
}
.dark-blue {
	background-color:#253843;
	color:#fff;
}
/* Gradient (for 3 sections side by side) */
.tone-dark {
	background-color:#7d8a9b;
}
.tone-medium {
	background-color:#a2adbc;
}
.tone-light {
	background-color:#c5ceda;
}
/* Image Section Backgrounds */
.feature-background {
	background:#adc1d1 url(../img/feature-background.jpg) center top no-repeat;
	background-size:cover;
}

 /**
 * 3.0 Header
 * -----------------------------------------------------------------------------
 */
 
header {
	position: fixed;
	left: 0;
	right: 0;
	top: 10px;
	z-index: 900;
	color: #fff;
	padding:0;
}
.top-header {
	background:rgba(19,20,21,0.9);
	padding:20px 40px;
	margin-top:0;
	opacity:1;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.top-header > div {
	width:33.33%;
}

/* Subscribe & Share Buttons */

.overlay-sections li {
	display:inline-block;
	margin-right:5px;
}
.overlay-sections p {
	display: inline-block;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	line-height: 16px;
	font-weight: 700;
	background-color:rgba(0,0,0,0.3);
	background-repeat:no-repeat;
	background-position:left 3px center;
	padding: 2px 5px 2px 26px;
	border:2px solid #fff;
}
.overlay-sections p:hover {
	background-color:#000;
}

/* Logo */
.logo {
	text-align: center;
	margin:0 auto;
}
.logo a {
	display: inline-block;
}
.logo img {
	display: inline-block;
}


/* Search Form */
.search-form {
    text-align: right;
	position:relative;
}
.search-form input, .search-form input[type="search"] {
	border:none;
	border-bottom:1px solid rgba(255,255,255,0.3);
	padding:5px 35px 5px 0;
	background:none;
	color:#76797d;
	width:180px;
}
.search-form input[type="search"]:focus {
	border-bottom:1px solid #fff;
}
.search-form input[type="submit"] {
	background:none;
	background-image:url(../img/search-icon.png);
	background-repeat:no-repeat;
	background-position:center center;
	border:none;
	font-size:0;
	width:25px;
	height:25px;
	position:absolute;
	right:0;
	padding:0;
}

 /**
 * 4.0 Lightbox Sections (Newsletter & Share)
 * -----------------------------------------------------------------------------
 */
 
/* Newsletter Section */

.subscribe {
	background-image: url(../img/subscribe.png);
}
.subscribe-wrapper {
	background-color: #fff;
	z-index: 999;
	position: fixed;
	text-align: center;
	color: #000;
	display: table;
	width: 80%;
	height: 90%;
	top: -100%;
	bottom: 0;
	left: 10%;
	right: 10%;
	opacity:0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.subscribe-open {
	width: 100%;
	height: 100%;
	top: 0;
	left:0;
	right:0;
	opacity:1;
	cursor: url(../img/close.png), pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.subscribe-container {
	display: table-cell;
	vertical-align: middle;
}
.newsletter {
	position:relative;
	width:80%;
	margin:0 auto;
}
.newsletter #newsletter-email {
	border:none;
	border-bottom:1px solid #ddd;
	padding:40px 180px 40px 0;
	background:#fff;
	width:100%;
	font-size:48px;
	font-weight:300;
}
.newsletter #newsletter-email:focus {
	border-bottom-color:#181818;
}

.newsletter #newsletter-button {
	font-size:18px;
	background-color: #181818;
	border:none;
	border-radius: 4px;
	color: #fff;
	padding: 20px 38px;
	text-align: center;
	position:absolute;
	right:0px;
	top:35px;
	font-weight: 200;
    cursor: pointer;
}
.newsletter #newsletter-button:hover {
    background-color: #080808;
}

/* Share Section */

.share {
	background-image: url(../img/share.png);
}
.share-wrapper {
	background-color: #fff;
	z-index: 999;
	position: fixed;
	text-align: center;
	color: #000;
	display: table;
	width: 80%;
	height: 90%;
	top: -100%;
	bottom: 0;
	left: 10%;
	right: 10%;
	opacity:0;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.share-open {
	width: 100%;
	height: 100%;
	top: 0;
	left:0;
	right:0;
	opacity:1;
	cursor: url(../img/close.png), pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.share-container {
	display: table-cell;
	vertical-align: middle;
}
.share-container ul {
	cursor: default;
	display: inline-block;
}
.share-container ul li {
	display: inline-block;
	margin: 0 5px;
}
.share-container a {
	padding: 20px 35px;
	display: block;
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.share-container a:hover {
	background-color: #000;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.share-facebook {
	background-color: #617AAC;
}
.share-twitter {
	background-color: #00ACEE;
}
.share-google {
	background-color: #DD4A38;
}
.share-pinterest {
	background-color: #CD272A;
}

 /**
 * 5.0 Navigation
 * -----------------------------------------------------------------------------
 */
 
nav {
	position:relative;
	z-index: 900;
	width:100%;
}
.toggle-menu {
	display: block;
	width:100%;
	padding: 0;
	height:50px;
	background-color: rgba(19, 20, 21, 0.3);
	background-image:url(../img/menu.png);
	background-position:center center;
	background-repeat:no-repeat;
	font-size:0;
	cursor:pointer;
}
.toggle-menu:hover {
	background-color: rgba(19, 20, 21, 0.5);
}
.close-menu {
	background-image:url(../img/menu-close.png);
}
.close-menu:hover {
}
.nav-wrapper {
	background-color: rgba(255, 255, 255, 0.95);
	position: fixed;
	text-align: center;
	margin-left:0;
	color: #000;
	width: 100%;
	top:-150%;
	height:0px;
}
.nav-container {
	height:0px;
	overflow:hidden;
	-webkit-overflow-scrolling: touch;
  	-webkit-transition: all .5s ease-in;
	-moz-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;

}
.nav-wrapper {
	top:auto;
	position:relative;
	-webkit-transition: all .5s ease-in;
	-moz-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
nav ul {
	width:100%;
	margin-bottom:60px;
}
nav ul li {
	margin: 0;
	width: auto;
	text-align: center;
	border-bottom:1px solid rgba(0, 0, 0, 0.1);
}
nav ul li:last-child {
	border-bottom:none;
}
nav a {
	display:block;
	font-size:28px;
	padding:20px 0;
	font-weight:800;
	text-transform:uppercase;
	color:#000;
}
nav a:hover {
	background-color:rgba(19, 20, 21, 0.90);
	color:#fff;
}
.sub-menu {
	margin-bottom:10px;
}
.sub-menu > li {
    border: none;
}
.sub-menu > li a {
	text-transform:none;
	font-weight:400;
	font-size:18px;
	padding:8px 0;
}

 /**
 * 6.0 Slider
 * -----------------------------------------------------------------------------
 */

#slides {
  position: relative;
}
#slides .slides-container {
  display: none;
}
#slides .scrollable {
  *zoom: 1;
  position: relative;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
#slides .scrollable:after {
  content: "";
  display: table;
  clear: both;
}
.slides-pagination {
  position: absolute;
  z-index: 3;
  bottom: 80px;
  text-align: center;
  width: 100%;
}
.slides-pagination a {
  border: 2px solid #222;
  border-radius: 15px;
  width: 10px;
  height: 10px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin: 2px;
  overflow: hidden;
  text-indent: -100%;
}
.slides-pagination a.current {
  background: #222;
}

/* Custom Slider Style */

#slider {
	background:#0d0d0d;
}
.slides-container li {
	position:relative;
}
.slides-caption-table {
	display:table;
	width:90%;
	height:100%;
	max-width:950px;
	margin:0 auto;
	text-align:center;
}
.slides-caption {
	display:table-cell;
	vertical-align:middle;
	font-size:26px;
	line-height:38px;
	font-weight:400;
	color:#fff;
}
.slides-caption h1 {
	font-size:72px;
	line-height:72px;
	margin-bottom:20px;
	margin-top:50px;
	border:none;
	text-transform:none;
	letter-spacing:0;
	font-weight:700;
}
.slides-caption p {
	max-width:800px;
	margin:0 auto 20px auto;

}
.slides-caption p::after {
	content:"";
	display:block;
	border:none;
	height:3px;
	width:30px;
	background:#fff;
	margin:15px auto 0 auto;
}
.slides-caption a {
	text-transform:uppercase;
	font-size:14px;
	border:2px solid #fff;
	padding:10px 20px;
	color:#FFF;
	background-color:rgba(0,0,0,0.3);
}
.slides-caption a:hover {
	background-color:#fff;
	color:#000;
}
/* Slider Navigation */
.slides-navigation {
	position:absolute;
	bottom:30px;
	margin:0 auto; 
	height:auto;
	width:100%;
	text-align:center;
	z-index: 3;
}
.slides-navigation ul {
	margin:0 auto;
	text-align:center;
	width:100%;
	font-size:0;
}
.slides-navigation ul li {
	display:inline-block;
	margin-left:1px;
	overflow:auto;
}
.slides-navigation a {
	display: block;
	font-size:0;
	background-color:rgba(19,20,21,0.8);
	background-image:url(../img/left-right.png);
	background-repeat:no-repeat;
	width:30px;
	height:30px;
}
.slides-navigation a:hover {
	background-color:#000;
}
.slides-navigation a.prev {
	background-position:center left -5px;
}
.slides-navigation a.next {
	background-position:center right -5px;
}
.start {
	display: block;
	height:30px;
	cursor:pointer;
	background-image:url(../img/down-arrow.png);
	background-position:center right;
	background-repeat:no-repeat;
	background-color:#e94b4b;
	font-size:11px;
	line-height:30px;
	font-weight:bold;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#fff;
	width:auto;
	padding:0 40px 0 10px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.start:hover {
	padding:0 45px 0 15px;
	background-color:#e94b4b;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

 /**
 * 6.1 Carousel
 * -----------------------------------------------------------------------------
 */
 
.carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.carousel  .owl-wrapper,
.carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}
/* Owl Carousel Theme */
.carousel-theme .owl-controls{
	margin-top: 20px;
	text-align: center;
	float:left;
	width:100%;
	border-top:1px solid rgba(0,0,0,0.1);
	padding:10px 3px 0 3px;
}
/* Next and Prev buttons */
.carousel-theme .owl-controls .owl-buttons div{
	color: #000;
	display: inline-block;
	zoom: 1;
	margin:0 0 0 20px;
	padding: 2px 0;
	font-size: 12px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
}
.carousel-theme .owl-controls.clickable .owl-buttons div:hover{
	opacity: 1;
	text-decoration: none;
}
/* Pagination*/
.carousel-theme .owl-pagination {
	float:left;
	padding-top:3px;
}
.carousel-theme .owl-buttons {
	float:right;
}
.carousel-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
}
.carousel-theme .owl-controls .owl-page span{
	display: block;
	width: 7px;
	height: 7px;
	margin: 5px 8px 5px 0;
	opacity: 0.3;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
	background: #000;
}
.carousel-theme .owl-controls .owl-page.active span,
.carousel-theme .owl-controls.clickable .owl-page:hover span{
	opacity: 0.6;
	background:none;
	border:1px solid #000;
	width: 9px;
	height: 9px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
	margin: 4px 8px 4px 0;
}
.carousel-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.team .container {
	padding-top:75px;
	padding-bottom:75px;
}

 /**
 * 7.0 Different Featured Content Boxes
 * -----------------------------------------------------------------------------
 */

/* Icon Feature */
.icon-feature {
	text-align:center;
	padding:40px 30px;
	border:1px solid #E3E3E3;
	position:relative;
}
.icon-feature:hover {
	background:#FFF;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
}
.icon-feature a {
	position: absolute;
	width:100%;
	height:100%;
	display:block;
	top:0;
	left:0;
	bottom:0;
	right:0;
	font-size:0;s
}
.icon-feature h2 {
	text-transform:uppercase;
	font-weight:700;
	font-size:14px;
	line-height:22px;
	margin:50px 0 0 0;
}
.icon-feature h2::before {
	content:"";
	display:block;
	border:none;
	height:3px;
	width:30px;
	background:#E3E3E3;
	margin:25px auto;
}
.icon-feature img {
	display:inline-block;
}

/* Framed picture with footer */
.framed-picture {
	padding:4px;
	background:rgba(255,255,255,0.9);
	margin:0 3px;
	border:1px solid rgba(0,0,0,0.2)
}
.framed-picture h3 {
	margin-bottom:6px;
	font-weight:700;
	font-size:14px;
	line-height:18px;
}
.framed-picture h3 a {
	color:#000;
}
.framed-picture .position {
	font-size:11px;
	line-height:12px;
	margin:0;
}
.framed-picture .bio {
	font-size:14px;
	line-height:22px;
	color:#898989;
	padding-top:10px;
	margin:0;
}
.framed-picture-footer {
	position: relative;
	background: #fff;
	padding:10px;
}
.framed-picture-footer:after {
	bottom: 100%;
	left: 18px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255,255,255,0);
	border-bottom-color: #fff;
	border-width: 5px;
	margin-left: -5px;
}
.framed-picture img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.framed-picture:hover img {
	opacity:0.7;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

/* Parallax Call to action */
.call-to-action {
	position:relative;
}
.call-to-action h3 {
	font-size:36px;
	line-height:48px;
	font-weight:800;
	text-transform:uppercase;
	margin-bottom: 50px;
}
.call-to-action h3::after {
    background:rgba(0,0,0,0.1);
    border: medium none;
    content: "";
    display: block;
    height: 1px;
    margin: 25px auto;
    width: 250px;
}
.call-to-action-bg-overlay {
	background:rgba(19,20,21,0.8);
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index: 0;
}
.call-to-action .container {
	position:relative;
	z-index:1;
}
.parallax-bg1 {
	background-image:url(../img/parallax1.jpg);
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;
	color:#fff;
}
.parallax-bg1 h3 {
	color:#fff;
}
.parallax-bg1 h3::after {
    background:rgba(255,255,255,0.1);
}
.parallax-bg1 .small-button:hover {
	color:#fff;
}

/* Small Wide Call to Action */
.small-call-to-action {
	padding:40px 0;
}
.small-call-to-action .center-box {
	border:1px solid rgba(0,0,0,0.2);
	background:rgba(255,255,255,0.1);
	padding:30px 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.small-call-to-action h2 {
	font-size:18px;
	line-height:24px;
	margin:0;
}

/* List Box */

.list-box {
	border:1px solid rgba(0,0,0,0.1);
	background:#f8f8f8;
	-webkit-box-shadow: 3px 3px 0px 0px rgba(50, 50, 50, 0.06);
	-moz-box-shadow: 3px 3px 0px 0px rgba(50, 50, 50, 0.06);
	box-shadow: 3px 3px 0px 0px rgba(50, 50, 50, 0.06);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.list-box h1 {
	padding:15px;
	margin:4px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	text-align:center;
}
.list-box ul li {
	border-top:1px solid rgba(0,0,0,0.1);
	background:#f8f8f8;
}
.list-box ul li:nth-child(odd) {
	background-color:#fff;
}
.list-box li p {
	display:block;
	padding:10px 10px 5px 32px;
	background:url(../img/check.png) no-repeat left 10px top 15px;
	color:#000;
	font-weight:600;
	font-size:13px;
	margin:0;
	line-height:20px;
}
.list-box li small {
	color:#898989;
	font-size:12px;
	display:block;
	padding:0px 10px 10px 32px;
}
.list-box li a:hover {
	color:#000;
}

 /**
 * 8.0 Footer
 * -----------------------------------------------------------------------------
 */
 
footer {
	width:100%;
	border-top:1px solid #dadada;
	padding-top:30px;
	padding-bottom:40px;
	color:#909090;
}
footer p {
	margin:0;
	line-height:36px;
}
.footer-social-media ul {
	float:right;
}
.footer-social-media ul li {
	float:left;
	margin-left:10px;
}
.footer-social-media ul li a {
	border:1px solid #121212;
	padding:5px;
	display:block;
}
.footer-social-media ul li a:hover {
	background-color:rgba(19,20,21,0.05);
}
/* Footer Navigation */
.horizontal-navigation ul {
	margin:0 auto;
	width:100%;
	padding:0 40px;
	text-align:center;
	cursor:default;
}
.horizontal-navigation ul li {
	display:inline-block;
	text-align:center;
}
.horizontal-navigation ul li a {
	padding:20px;
	display:inline-block;
	color:#FFF;
	font-weight:bold;
	font-size:14px;
}
.horizontal-navigation ul li a:hover {
	background:rgba(0,0,0,0.2)
}

 /**
 * 8.1 Footer Sidebar
 * -----------------------------------------------------------------------------
 */
 
.footer-sidebar {
}
.footer-sidebar h2 {
	max-width:750px;
	margin-bottom:40px;
}
.footer-sidebar .widget_recent_entries ul {
	margin-bottom:30px;
}
.footer-sidebar .widget_recent_entries ul li a {
	padding:0;
	display:block;
	color:#000;
}
.footer-sidebar .widget_recent_entries ul li a:hover {
	color:#a1a1a1;
}
.footer-sidebar .widget_recent_entries ul li span {
	font-size:10px;
	padding-bottom:6px;
	font-style:italic;
	display:block;
	color:#898989;
}

.footer-sidebar .widget_contact li {
	width:100%;
	padding:0 0 20px 0;
}
.footer-sidebar .widget_contact h4 {
	width:100%;
	line-height:26px;
	margin:0;
}
.footer-sidebar .widget_contact ul p {
	margin:0;
	font-size:14px;
	color:#898989;
	line-height:26px;
}
 /**
 * 9.0 Blog
 * -----------------------------------------------------------------------------
 */

/* Classic Blog Archive Page */

.blog-post-box {
	border-bottom:1px solid rgba(0,0,0,0.1);
	padding-bottom:50px;
	margin-bottom:50px;
}
.blog-post-box h1 a {
	color:#090909;
}
.blog-post-box h1 a:hover {
	color:#898989;
}

/* Blog Post Page */

.meta-data {
	font-size:12px;
	color:#898989;
	padding:10px 0;
	border-top:1px solid rgba(0,0,0,0.1);
	border-bottom:1px solid rgba(0,0,0,0.1);
	margin-bottom:30px;
}
.meta-data a {
	color:#121212;
}
.post p {
	margin-bottom:30px;
}
.post h1 {
	font-size:46px;
	line-height:68px;
	margin-bottom:30px;
	letter-spacing:-0.08px;
	text-transform:none;
	max-width:900px;
}
.post h2 {
    font-size: 36px;
    letter-spacing: -0.08px;
    line-height: 48px;
    margin-bottom: 30px;
    text-transform: none;
	font-weight:700;
}
.post h3 {
    font-size: 26px;
    letter-spacing: -0.08px;
    line-height: 38px;
    margin-bottom: 30px;
    text-transform: none;
	font-weight:700;
}
.post h4 {
    font-size: 18px;
    letter-spacing: -0.08px;
    line-height: 28px;
    margin-bottom: 30px;
    text-transform: none;
	font-weight:700;
}
.post h5 {
    font-size: 16px;
    letter-spacing: -0.08px;
    line-height: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
	font-weight:700;
}
.post h6 {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 22px;
    margin-bottom: 30px;
    text-transform: uppercase;
	font-weight:700;
	color:#898989;
}
.post .intro-p {
	font-size:16px;
	font-weight:700;
}
.post img {
	margin-bottom:30px;
}
.post blockquote {
	margin:20px 0 30px 0;
	font-size:26px;
	line-height:38px;
	border-left:3px solid #898989;
	padding-left:20px;
}
hr {
	border:0;
	height:1px;
	background:rgba(0,0,0,0.1);
	margin:0 auto;
	margin-bottom:30px;
	width:20%;
}

/* Author Box */

.author-box {
	padding:20px;
	margin-top:40px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-bottom:1px solid rgba(0,0,0,0.1);
}
.author-avatar {
	padding:20px;
}
.author-box img {
	margin:0;
	border:1px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	padding:5px;
}
.author-box p {
	font-size:14px;
	line-height:22px;
	color:#898989;
	margin-bottom:20px;
}
.author-box h6 {
	margin-bottom:0px;
	font-size:10px;
	letter-spacing:1px;
}
.author-box h5 {
	text-transform:none;
	margin-bottom:20px;
}
.author-box small {
}

/* Comments */

.comments-area {
	margin-top:80px;
	background:#fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-bottom:1px solid rgba(0,0,0,0.1);
}
.comments-title {
	padding:20px;
	margin-bottom:10px !important;
}
.comments-area ol {
	list-style:none;
	margin:0;
}
.comments-area ol li {
	padding:40px;
	border-bottom:1px solid rgba(0,0,0,0.1);
}
.comment-header h5 {
	text-transform:none;
	margin-bottom:4px;
	font-weight:normal;
	font-size:14px;
}
.comment-header {
	margin-bottom:20px;
}
.comment-header .avatar {
	float:left;
	margin:0 20px 0 0;
	border:1px solid rgba(0,0,0,0.1);
	padding:2px;
}
.comment time {
	font-size:12px;
}
.no-comments {
	font-weight:700;
	text-align:center;
	margin:30px 0;
}
.comment-list  .depth-2 {
	padding-left:100px;
}
.comment-list  .depth-3 {
	padding-left:200px;
}

/** Comment form **/

#comment-form-title {
	font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.08px;
    line-height: 28px;
    margin-bottom: 40px;
    text-transform: none;
}
.respond-form {
	padding:60px 40px;
}

.respond-form form li {
	margin-bottom:25px;
}

.respond-form form li label,.respond-form form li small {
	display: none;
}
.respond-form form li small {
	display: inline-block;
	margin-left:20px;
	color:#898989;
}
.respond-form form input[type=text],.respond-form form input[type=email],.respond-form form input[type=url],.respond-form form textarea {
	padding: 15px;
	background: #fff;
	border: 1px solid #cecece;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.respond-form form input[type=text]:focus,.respond-form form input[type=email]:focus,.respond-form form input[type=url]:focus,.respond-form form textarea:focus {
	background: #fff;
	border-color:#3c3c3c;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.respond-form form input[type=text]:invalid,.respond-form form input[type=email]:invalid,.respond-form form input[type=url]:invalid,.respond-form form textarea:invalid {
	outline: none;
	border-color: #fbc2c4;
	background-color: #f6e7eb;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
}
.respond-form form input[type=text],.respond-form form input[type=email],.respond-form form input[type=url] {
	width:100%;
	max-width: 400px;
}
.respond-form form textarea {
	resize: none;
	width: 100%;
	height: 150px;
}
#allowed_tags {
	margin: 0;
	padding:10px 15px;
	border:1px dotted rgba(0,0,0,0.2);
	background:rgba(19,20,21,0.05);
	line-height:normal;
}

/* Related Articles */

.related-articles .blog-entry div {
	padding:10px;
}
.related-articles .blog-entry div h2 {
	font-size:14px;
	margin-bottom:5px;
}
.related-articles .blog-entry div small {
	margin:0;
}

/* Next / Previous Post Navigation */

.next-prev {
	background-color:#FFF;
	border-top:1px solid rgba(0,0,0,0.1);
	font-size:24px;
	font-weight:300;
}
.next-prev ul li {
	float:left;
	width:45%;
	border-right:1px dotted rgba(0,0,0,0.2);
}
.next-prev ul li:last-child {
	text-align:right;
	border-right:none;
}
.next-prev .back-home {
	float:left;
	width:10%;
}
.next-prev .back-home span {
	display:block;
	text-indent:-9999px;
	border-top-color:rgba(0,0,0,0);
}
.next-prev .back-home a {
	background:url(../img/pagination-back.png) center center no-repeat;
}
.next-prev .back-home a:hover {
	background-color:#fafafa;
}
.next-prev a {
	width:100%;
	height:100%;
	display:block;
	padding-top:25px;
}
.next-prev a span {
	border-top:2px solid rgba(0,0,0,0.1);
	width:100%;
	display:block;
	padding-top:20px;
	padding-bottom:35px;
}
.next-prev a:hover {
	background-color:#fafafa;
	color:#121212;
}

/* Next / Previous Page Navigation */
.next-prev-page ul li{
	width:50%;
}
.next-prev ul li:last-child {
	float:right;
}


 /**
 * 9.1 Blog Masonry
 * -----------------------------------------------------------------------------
 */
 
.masonry-blog {
	margin:0 auto;
	position:relative;
	width:102.4%;
	left:-1.2%;
}
.masonry-blog .item { 
	width: 30.9%;
	margin-bottom:30px;
	float:left;
	margin:0 1.2% 40px 1.2%;
}

/* Blog Entry Box */

.blog-entry {
	background:#fff;
}
.blog-entry img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.blog-entry:hover img {
	opacity:0.7;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.blog-entry div {
	padding:30px;
}
.blog-entry h2 {
	font-size:18px;
	line-height:20px;
	margin-bottom:10px;
	font-weight:400;
}
.blog-entry h2 a {
	color:#000;
}
.blog-entry small {
	font-family: 'Cardo', serif;	
	font-size:14px;
	font-style:italic;
	margin-bottom:20px;
	display:block;
}
.blog-entry p {
	font-size:14px;
	line-height:26px;
	color:#898989;
}

 /**
 * 9.2 Blog Sidebar
 * -----------------------------------------------------------------------------
 */

.blog-sidebar {
	color:#898989;
	padding-left:30px;
	padding-top:20px;
}
.blog-sidebar h1 {
	color:#090909;
}
.blog-sidebar p {
	font-size:14px;
	line-height:22px;
	margin:20px 0;
}
.blog-sidebar .widget {
	margin-bottom:40px;
	padding-bottom:30px;
	border-bottom:1px solid rgba(0,0,0,0.1);
}
.blog-sidebar .widget li {
	margin-bottom:10px;
}
.tagcloud a {
	display: inline-block;
	background:#fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-bottom:1px solid rgba(0,0,0,0.1);
	margin:0 5px 5px 0;
	padding:4px 8px;
	color:#121212;
}
.blog-sidebar .widget_recent_entries li:after {
	background: rgba(0,0,0,0.1);
	border: none;
	content: "";
	display: block;
	height: 2px;
	margin: 10px 0 0 0;
    width: 30px;
}
.blog-sidebar .widget_recent_entries li:last-child:after {
	display: none;
}

 /**
 * 10.0 Portfolio
 * -----------------------------------------------------------------------------
 */
 
.portfolio {
	margin-left:-2%;
	overflow:hidden;
}
.portfolio li {
	margin-bottom:50px;
	width:31.33%;
	margin-left:2%;
	float:left;
}
.portfolio li:nth-child(3n+1) {
	margin-left:2%;
}

/* Filter */
.filter {
	font-size:14px;
	font-weight:700;
	padding:30px 0;
}
.filter-ul {
	float:left;
}
.filter-ul li {
	float:left;
	padding:5px 10px;
	border:1px solid rgba(0, 0, 0, 0);
	cursor:pointer;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.filter-ul li:hover {
	color:#898989;
}
.filter-ul .active {
	position:relative;
	color:#E94B4B;
	background:#fff;
	border:1px solid rgba(0, 0, 0, 0.1);
}
.filter-ul .active:after,.filter-ul .active:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.filter-ul .active:after {
	border-color: rgba(255,255,255,0);
	border-top-color: #fff;
	border-width: 4px;
	margin-left: -4px;
}

.filter-ul .active:before {
	border-color: rgba(37,56,67,0);
	border-top-color: rgba(0, 0, 0, 0.2);
	border-width: 5px;
	margin-left: -5px;
}
.filter-ul .active:hover {
	color:#E94B4B;
	cursor:default;
}
.filter .col:last-child {
	text-align:right;
}
.filter a {
	padding:10px 7px;
	display:inline-block;
}
#filter-title {
	cursor:default;
	text-transform:uppercase;
	letter-spacing:1px;
	font-size:10px;
	padding-right:16px;
	color:#898989;
	line-height:32px;
	float:left;
}
/* Sort */
#sort {
	float:right;
	margin:0;
}
#sort li {
	float:left;
	cursor:pointer;
	padding:7px;
	border:1px solid rgba(0,0,0,0.1);
	margin-left:5px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
#sort li:hover {
	border:1px solid rgba(0,0,0,0.3);
	background:rgba(19,20,21,0.07)
}
#sort .active {
	cursor:default;
}
#sort .active:hover {
	cursor:default;
	border:1px solid rgba(0,0,0,0.1);
	background:#fff;
}
#sort .active img {
	opacity:0.3;
}

/* Project Box */
.work-item {
	position:relative;
	background:#253843;
	overflow:hidden;
}
#portfolio .work-item {
	opacity: 0;
	display: none;
}
.work-item h4 {
	margin-bottom:0;
	letter-spacing:1px;
	font-size:14px;
	padding:20px;
	position: relative;
	background: #131415;
}
.work-item h4:after {
	top: 100%;
	left: 30px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(19,20,21,0);
	border-top-color: #131415;
	border-width: 6px;
	margin-left: -6px;
}
.work-item .open-project {
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	left:0; right:0; top:0; bottom:0;
	font-size:0;
	z-index:20;
}
.work-item-details {
	position:absolute;
	width:100%;
	bottom:0;
	background:rgba(19,20,21,0.7);
	color:#fff;
	z-index:10;
}
.work-item-details div {
	max-height:0;
	opacity:0;
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
}
.work-item:hover .work-item-details div {
	max-height:150px;
	opacity:1;
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
}
.work-item-details p {
	color:#fff;
	padding:20px;
	font-size:12px;
	line-height:18px;
	margin-bottom:0px;
}
.work-item img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.work-item:hover img {
	opacity:0.7;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.work-item small {
	margin:0 20px 20px 20px;
	color:#E94B4B;
}

/* Projects List View mode */

.list {
	border-top:1px solid rgba(19,20,21,0.1);
	margin:0 !important;
}
.list .work-item {
	width:100%;
	text-align:center;
	background:none;
	padding:30px 0 20px 0;
	margin:0 !important;
	border-bottom:1px solid rgba(19,20,21,0.1);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.list .work-item h4 {
	background:none;
}
.list .work-item h4:after {
	border:none;
}
.list .work-item:hover {
	background:#fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.list .work-item h4 {
	font-size:24px;
	text-transform:none;
}
.list .work-item-details {
	background:none;
	color:#000;
}
.list .work-item-details p {
	color:#898989;
	font-size:14px;
	line-height:26px;
}
.list .work-item img {
	display:none;
}
.list .work-item-details {
	position:relative;
}
.list .work-item-details div {
	height:auto;
	display:block;
	opacity:1;
	max-height:500px;
	max-width:800px;
	margin:0 auto;
}

 /**
 * 10.1 Portfolio Single Page / Case Study
 * -----------------------------------------------------------------------------
 */
 
.case-study {
	max-width:1500px;
}
.case-study-info {
	margin-bottom:80px;
}
.case-study-info h2 {
	max-width:900px;
}
.case-study-info p {
	color:#898989;
}
.case-study-info-details {
	padding-top:15px;
}
.case-study-info-details li {
	border-top:1px solid rgba(0,0,0,0.1);
	padding:10px 0;
	margin:0;
}
.case-study-info-details li p {
	margin-bottom:0;
	font-size:12px;
	line-height:18px;
}
.case-study-info-details li span {
	color:#000;
	font-weight:600;
	min-width:70px;
	display:inline-block;
}
.accord-header {
	padding-top:10px;
	border-top:1px solid rgba(0,0,0,0.1);
}
.accord-header span {
	color:#E94B4B;
	display:inline-block;
	cursor:pointer;
}
.accord-content { 
	display: none;
	padding-bottom:10px;
}
.case-study-images img {
	margin:50px 0 20px 0;
}
.case-study-images p {
	max-width:900px;
}
 
  /**
 * 11.0 Contact Page
 * -----------------------------------------------------------------------------
 */

.contact-email, .contact-phone {
	font-size:24px;
	padding-left:50px;
	margin-bottom:40px;
}
.contact-email {
	background:url(../img/contact-email.png) no-repeat center left;
}
.contact-phone {
	background:url(../img/contact-phone.png) no-repeat center left;
}
.contact-address {
	background:url(../img/contact-address.png) no-repeat top left;
	padding-left:50px;
}
#contact-area {
}
#contact-area input[type=text], #contact-area textarea {
	padding: 12px;
	background: #fff;
	border: 1px solid #cecece;
	width:100%;
	margin-bottom:20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
#contact-area textarea {
}
#contact-area textarea:focus, #contact-area input:focus {
	border-color:#3c3c3c;
	-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.1);	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
#contact-area input.submit-button {
}
#contact-area label {
	width: 100%;
	font-weight:700;
	text-transform:uppercase;
	padding-bottom:8px;
	color:#898989;
	display:block;
}
#success {
	font-weight:bold;
	margin:30px 0;
	color:#E94B4B;
}
#success span {
	font-weight:bold;
	margin:30px 0;
	color:#569d4d;
}

 /**
 * 12.0 404 Page
 * -----------------------------------------------------------------------------
 */

.page404 .container {
	max-width:850px;
	text-align:center;
	padding:50px 40px 100px 40px;
}