body {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background-color: #272425;
  font-size: 90%;
}
.intro {
	position: fixed;
	z-index: 10;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.wraper--open .intro {
	-webkit-transform: translate3d(0, -100%, 0) translate3d(0, 250px, 0);
	transform: translate3d(0, -100%, 0) translate3d(0, 250px, 0);
}
/* background setup */
.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50% !important;
}
/* fullscreen setup */
html, body {
    height:100%;
}
.fullscreen,
.content-a {
    width:100%;
    height:100%;
    overflow:hidden;
}
.fullscreen.overflow,
.fullscreen.overflow .content-a {
    height:auto;
    min-height:100%;
}
/* Intro content */
.intro__content {
	text-align: center;
	position: absolute;
	bottom: 0;
	padding-bottom: 1.5em;
	width: 100%;
}
.intro__title {
	margin: 0px;
	font-weight: 700;
	font-size: 5em;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #272425;
}
.intro__subtitle {
	padding: 4px;
	font-size: 1.6em;
	letter-spacing: 5px;
	line-height: 2;
	background-color: #fff;
	text-transform: uppercase;
	display: inline;
	text-align: center;
	color: #d52827;
	font-weight: 700;
}
/* Trigger button with SVG */
.trigger {
	position: relative;
	-webkit-flex: none;
	flex: none;
	overflow: hidden;
	padding: 0;
	outline: none;
	border: none;
	background: none;
	margin-top: 2em;
}
/* Hide the text */
.icon rect,
.icon line {
	stroke: #fff;
	fill: none;
	stroke-width: 2px;
}
.icon {
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
/* Hide grid and show cross when opening */
.icon--cross,
.trigger--active .icon--grid {
	opacity: 0;
	-webkit-transform: scale3d(0.5, 0.5, 1);
	transform: scale3d(0.5, 0.5, 1);
}
.trigger--active .icon--cross {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
/* Main content */
.items-wrap {
	position: relative;
	padding-top: 300px;
}
.items-wrap::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #d52827;
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	pointer-events: none;
}
.wraper--open .items-wrap::after {
	opacity: 0;
}
.item {
	position: relative;
	-webkit-flex: 1 0 25%;
	flex: 1 0 25%;
	overflow: hidden;
	height: 22vw;
	outline: none;
	border: 5px solid #2a2e39;
	border-width: 0 5px 10px;
	background: #e6e6e6;
}
.item__image {
	position: absolute;
	top: 50%;

	width: 100%;
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0) scale3d(1.2, 1.2, 1);
	transform: translate3d(0, -50%, 0) scale3d(1.2, 1.2, 1);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}
.item:hover .item__image {
	opacity: 1;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
}
.item__title {
	position: absolute;
	bottom: 0;
	margin: 0;
	padding: 1em;
	color: #dbdbdb;
	font-size: 1.85em;
	line-height: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}
.item:hover .item__title {
	opacity: 0;
	-webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}
.feed-container {
	padding-left: 35px;
	padding-right: 35px;
	margin-bottom: 5em;
}
.container {
	padding: 10px 0px 10px 0px;
}
#logo-list {
	text-align: center;
	margin-bottom: 10em;
}
#logo-list ul, li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 0px;
}
#logo-list img {
	padding: 0px 35px 0px 35px;
}
#social-list {
  margin-top: 0em;
  text-align: center;
  font-size: 1.2em;
  background-color: #d52827;
  padding-top: 30px;
  padding-bottom: 10px;
}
#social-list ul {
  list-style-type: none;
  display: inline;
  margin: 0;
  padding-left: 0px;
}
.fa-lg {
  color: #272425;
}
.fa-lg:hover {
  color: #fff;
  border: none;
  transition: all 0.6s ease 0s;
}
.footer-btn {
  padding: 10px 0px 10px 0px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 400;
  background-color: #d52827;
}
.footer {
  padding: 0px 0px 30px 0px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 400;
  background-color: #d52827;
}
.footer ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0px 5px 0px 5px;
}
.footer a {
  color: #272425;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}
.footer a:focus, a:hover {
  color: #fff;
}
.footer p {
	font-size: 1em;
	margin: 0px;
}
.footer img {
	padding-top: 1em;
}
/* buttons */
.btn-link {
  color: #d52827;
  font-size: 1em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #d52827;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  background-color: transparent;
  padding: 10px 30px 10px 30px;
  margin: 20px 0px 15px 10px;
}
.btn-link.active,.btn-link.focus,
.btn-link:active,.btn-link:focus,
.btn-link:hover,.open>.dropdown-toggle.btn-link {
  color:#fff;
  text-decoration: none;
  background-color: #d52827;
}
.btn-blog {
  color: #fff;
  font-size: 1em;
  border-radius: 0px;
  text-transform: uppercase;
  text-decoration: underline;
  border: transparent;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  background-color: transparent;
  padding: 5px 15px 5px 15px;
  margin: 20px 0px 15px 10px;
}
.btn-blog.active,.btn-blog.focus,
.btn-blog:active,.btn-blog:focus,
.btn-blog:hover,.open>.dropdown-toggle.btn-blog {
  color: #d52827;
  text-decoration: underline;
  background-color: transparent;
}
.btn-main {
  color: #fff;
  font-size: 1.4em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #d52827;
  width: 100%;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  background-color: transparent;
  padding: 20px 0px 20px 0px;
  margin-bottom: 15px;
}
.btn-main.active,.btn-main.focus,
.btn-main:active,.btn-main:focus,
.btn-main:hover,.open>.dropdown-toggle.btn-main {
  color:#fff;
  text-decoration: none;
  background-color: #d52827;
}
.btn-lang {
  color: #fff;
  font-size: 1em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #d52827;
  width: 100%;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  background-color: transparent;
  padding: 10px 0px 10px 0px;
}
.btn-lang.active,.btn-lang.focus,
.btn-lang:active,.btn-lang:focus,
.btn-lang:hover,.open>.dropdown-toggle.btn-lang {
  color:#fff;
  text-decoration: none;
  background-color: #d52827;
}
#lang {
	margin-right: 30px;
}
.btn-default {
  color: #fff;
  font-size: .8em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #272425;
  width: 5em;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  background-color: transparent;
  padding: 3px 0px 3px 0px;
}
.btn-default.active,.btn-default.focus,
.btn-default:active,.btn-default:focus,
.btn-default:hover,.open>.dropdown-toggle.btn-default {
  color:#fff;
  text-decoration: none;
  background-color: #272425;
  border: 1px solid #272425;
}
.btn-lang {
  color: #fff;
  font-size: .8em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #d52827;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  background-color: transparent;
  padding: 3px 3px 3px 3px;
}
.btn-lang.active,.btn-lang.focus,
.btn-lang:active,.btn-lang:focus,
.btn-lang:hover,.open>.dropdown-toggle.btn-lang {
  color:#fff;
  text-decoration: none;
  background-color: #d52827;
  border: 1px solid #d52827;
}
.btn-send {
  color: #fff;
  font-size: 1.2em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #d52827;
  margin-bottom: 5em;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  background-color: transparent;
  padding: 15px 35px 15px 35px;
}
.btn-send.active,.btn-send.focus,
.btn-send:active,.btn-send:focus,
.btn-send:hover,.open>.dropdown-toggle.btn-send {
  color:#fff;
  text-decoration: none;
  background-color: #d52827;
}
.btn-social {
  color: #fff;
  font-size: 1.4em;
  border-radius: 0px;
  text-transform: uppercase;
  border: 1px solid #d52827;
  transition: all 0.3s ease 0s;
  font-weight: 400;
  width: 70px;
  height: 70px;
  background-color: transparent;
  margin-top: 15px;
}
.btn-social.active,.btn-social.focus,
.btn-social:active,.btn-social:focus,
.btn-social:hover,.open>.dropdown-toggle.btn-social {
  color:#fff;
  text-decoration: none;
  background-color: #d52827;
}
.info {
	margin-top: 5em;
	margin-bottom: 2em;
	text-align: center;
	padding: 0em 5em 0em 5em;
}
.main-video {
	margin-top: 10em;
	margin-bottom: 10em;
}
.main-content {
	margin-top: 14em;
}
#title {
	text-align: left;
	font-size: 3em;
	text-transform: uppercase;
	font-weight: 700;
}
.main-pick {
	margin-right: 2em;
}
.side-pick {
	margin-top: 15px;
	padding-right: 0px;
	padding-left: 0px;	
}
#center {
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
}
#right {
	border-left: 10px solid transparent;
}
#left {
	border-right: 10px solid transparent;
}
.description {
	text-align: center;
	padding-top: 10px;
	font-size: 1em;
	color: #595959;
	font-weight: 700;
}
.description span {
	color: #d52827;
	font-weight: 700;
}
#space {
	padding-top: 10em;
}
.main-text h1 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3em;
  color: #fff;
  padding: 0em;
  margin: 0px;
}
.main-text h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0px 0px 4em 0px;
  font-size: 1.2em;
  line-height: 1.4;
  color: #d52827;
  margin: 0px;
  padding: 0.5em 0em 2em 0em;
}
.main-text h3 { 
	margin-top: 0em;
	margin-bottom: 0px;
	text-transform: uppercase;
}
.main-text p {
	color: #fff;
	font-size: 1.4em;
	font-weight: 300;
	line-height: 1.6;
	padding-bottom: 25px;
}
.main-text a {
	color: #fff;
	transition: all 0.3s ease 0s;
  	text-decoration: underline;
}
.main-text a:focus, a:hover {
  color: #d52827;
}
.thumbs {
	padding-bottom: 2em;
}
.gear {
	margin-top: 10em;
	margin-bottom: 10em;
}
.gear-text {
	margin-top: 5px;
	background-color: #fff;
	color: #595959;
	font-weight: 700;
	font-size: 1em;
	padding: 5px 10px 5px 10px;
}
.links {
	text-align: center;
	margin-bottom: 5em;
}
.container-fluid {
	padding: 0px;
}
.top-space {
	margin-top: 10em;
}
.blog-grid {
	margin: 10em 0em 10em 0em;
}
.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}
.form-control {
  background-color: #fff;
  box-shadow: none;
  border-radius: 0px;
  height: 65px;
  font-size: 1.2em;
  color: #7a7a7a;
  font-weight: 400;
}
#nospace {
	padding-bottom: 10px;
	margin: 0px;
}
#border-solid {
	border: 4px solid #fff;
}
.blog {
	background-color: #fff;
	color: #272425;
	padding: 10px;
	border-left: 30px solid #272425;
	border-right: 30px solid #272425;
	margin-bottom: 50px;
}
.blog span {
	color:#d52827;
	font-size: .4em;
}
.blog h1 {
	padding: 0px 0px 0px 10px;
	line-height: .8em;
	color: #272425;
}
.blog p {
	font-size: 1.2em;
	padding: 0px 0px 0px 10px;
}
.blog a {
	text-decoration: none;
}
.blog-post {
	background-color: #fff;
	color: #272425;
	padding: 0px;
}
.blog-post img {
	margin: 5.5em 0em 4em 0em;
}
.blog-post h1 {
	font-weight: 700;
	margin-top: 0px;
}
.blog-post h2 {
	font-weight: 400;
	font-size: 2em;
	margin-top: 0px;
}
.blog-post p {
	font-weight: 400;
	font-size: 1.4em;
	line-height: 20px;
	padding-top: 1em;
}
.blog-gallery {
	padding: 0;
	margin: 0;
}
.blog-gallery img {
	margin: 15px 0px 0px 0px;
	padding: 0px 15px 15px 0px;
}
.text-container {
	padding-left: 2em;
	padding-right: 2em;
	margin: 0px;
}
.text-container a {
	color: #d52827;
	font-weight: 400;
	text-decoration: underline;
}
.text-container a:hover, a:focus {
	color: #272425;
}
#post-info {
	color: #d52827;
	font-size: 1.2em;
	padding-left: 0em;
	line-height: 20px;
	margin: 0px;
	padding-top: 0px;
}
#post-info span {
	color: #272425;
}
ul.share-buttons{
	margin-top: 0px;
	list-style: none;
 	padding: 0;
}
ul.share-buttons li{
  	display: inline;
}
#share-list {
	border-top: 1px solid #cccccc;
	margin: 0em;
	text-align: center;
}
/* Vimeo Embed*/
.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
	} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	body {
		font-size: 95%;
	}
	.container {
    padding: 20px;
	}
	.container-fluid {
	padding: 0px 40px 0px 40px;
	}
	.description {
	text-align: right;
	}
	.main-text h3 { 
	margin-top: 5em;
	margin-bottom: 0px;
	}
  	.btn-send {
  	margin-bottom: 0em;
  	}
  	.text-container {
	padding-left: 1em;
	padding-right: 4em;
	}
	.top-space {
	margin-top: 20em;
	}
	.blog-post p {
	font-weight: 400;
	font-size: 1.2em;
	line-height: 20px;
	padding-top: 1em;
	}
	#post-info {
	color: #d52827;
	font-size: 1.2em;
	padding-left: 2em;
	line-height: 20px;
	}
	.blog-grid {
	margin: 20em 0em 10em 0em;
	}
	.blog-post img {
	margin: 0em 0em 8em 0em;
	}
	.blog-gallery img {
	margin: 25px 0px 15px 0px;
	padding: 0px 15px 15px 0px;
	}
	#share-list {
	margin-top: 4em;
	margin-bottom: 10em;
	text-align: right;
	}
	ul.share-buttons{
	margin-top: 20px;
	}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	body {
		font-size: 100%;
	}
	.container {
    padding: 20px;
	}
	.container-fluid {
	padding: 0px 40px 0px 40px;
	}
	.description {
	text-align: right;
	}
	.main-text h3 { 
	margin-top: 5em;
	margin-bottom: 0px;
	}
  	.btn-send {
  	margin-bottom: 0em;
  	}
  	.text-container {
	padding-left: 4em;
	padding-right: 8em;
	}
	.blog-post p {
	font-weight: 400;
	font-size: 1.4em;
	line-height: 34px;
	padding-top: 1em;
	}
	.top-space {
	margin-top: 20em;
	}
	#post-info {
	color: #d52827;
	font-size: 1.2em;
	padding-left: 8em;
	line-height: 20px;
	}
	.blog-grid {
	margin: 20em 0em 10em 0em;
	}
	.blog-post img {
	margin: 0em 0em 8em 0em;
	}
	.blog-gallery img {
	margin: 25px 0px 15px 0px;
	padding: 0px 15px 15px 0px;
	}
	#share-list {
	margin-top: 4em;
	margin-bottom: 10em;
	text-align: right;
	}
	ul.share-buttons{
	margin-top: 20px;
	}
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	body {
		font-size: 120%;
	}
	.container {
    padding: 20px;
	}
	.container-fluid {
	padding: 0px 40px 0px 40px;
	}
	.description {
	text-align: right;
	}
	.main-text h3 { 
	margin-top: 5em;
	margin-bottom: 0px;
	}
  	.btn-send {
  	margin-bottom: 0em;
  	}
  	.text-container {
	padding-left: 6em;
	padding-right: 10em;
	}
	.blog-grid {
	margin: 20em 0em 10em 0em;
	}
	.blog-post p {
	font-weight: 400;
	font-size: 1.4em;
	line-height: 34px;
	padding-top: 1em;
	}
	.top-space {
	margin-top: 20em;
	}
	#post-info {
	color: #d52827;
	font-size: 1.2em;
	padding-left: 8em;
	line-height: 20px;
	}
	.blog-post img {
	margin: 0em 0em 8em 0em;
	}
	.blog-gallery img {
	margin: 45px 0px 15px 0px;
	padding: 0px 15px 15px 0px;
	}
	#share-list {
	margin-top: 4em;
	margin-bottom: 10em;
	text-align: right;
	}
	ul.share-buttons{
	margin-top: 20px;
	}
}
/* Preloader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../img/tail-spin.svg) center no-repeat #d52827;
}
/* FLASHING */
@keyframes flash {
	0%,100%,50%{opacity:1}
	25%,75%{opacity:0}
}
.faa-flash.animated,
.faa-flash.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-flash {
	animation: flash 3.5s ease infinite;
}