html {
	font-size: 62.5%;
}
/* @ FLEXBOX
 */
@media (min-width: 992px) {
	.flex {
		display: -webkit-box;	/* OLD - iOS 6-, Safari 3.1-6 */
		display: -moz-box;		/* OLD - Firefox 19- (buggy but mostly works) */
		display: -ms-flexbox;	/* TWEENER - IE 10 */
		display: -webkit-flex;	/* NEW - Chrome */
		display: flex;			/* NEW, Spec - Opera 12.1, Firefox 20+ */
		-webkit-box-flex: 1;	/* OLD - iOS 6-, Safari 3.1-6 */
		   -moz-box-flex: 1;	/* OLD - Firefox 19- */
		-webkit-flex: 1;		/* Chrome */
			-ms-flex: 1;		/* IE 10 */
				flex: 1;		/* NEW, Spec - Opera 12.1, Firefox 20+ */
	}
	/* Flex direction */
	.flex-row {
		flex-direction: row;
	}
	.flex-row-reverse {
		flex-direction: row-reverse;	
	}
	.flex-column {
		flex-direction: column;
	}
	.flex-column-reverse {
		flex-direction: column-reverse;
	}
	/* Flex wrap */
	.flex-wrap {
		flex-wrap: wrap;
	}
	.flex-wrap-nowrap {
		flex-wrap: nowrap;
	}
	.flex-wrap-reverse {
		flex-wrap: wrap-reverse;
	}
	/* Flex justify content */
	.flex-justify-start {
		justify-content: flex-start;
	}
	.flex-justify-end {
		justify-content: flex-end;
	}
	.flex-justify-center {
		justify-content: center;
	}
	.flex-justify-space-between {
		justify-content: space-between;
	}
	.flex-justify-space-around {
		justify-content: space-around;
	}
	/* Flex align items */
	.flex-align-start {
		-ms-flex-align: flex-start;
		   align-items: flex-start;
	}
	.flex-align-end {
		-ms-flex-align: flex-end;
		   align-items: flex-end;
	}
	.flex-align-center {
		-ms-flex-align: center;
		   align-items: center;
	}
	.flex-align-baseline {
		-ms-flex-align: baseline;
		   align-items: baseline;
	}
	.flex-align-stretch {
		-ms-flex-align: stretch;
		   align-items: stretch;
	}
	/* Flex align content */
	.flex-content-start {
		align-items: flex-start;
	}
	.flex-content-end {
		align-items: flex-end;
	}
	.flex-content-center {
		align-items: center;
	}
	.flex-content-space-between {
		align-items: space-between;
	}
	.flex-content-space-around {
		align-items: space-around;
	}
	.flex-content-stretch {
		align-items: stretch;
	}
}


body {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.4rem;
	line-height: 2.1rem;
	font-weight: 400;
	color: #000;
	word-wrap: break-word; /* This is a small security for too long strings titles */
}
@media (max-width: 1170px) {
	body {
		font-size: 1.3rem;
		line-height: 1.8rem;
	}
}

a,
a:hover {
	color: #231f20;
}

/* @ TEXT STYLES
 */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-top: 0;
}
h1, .h1, h2, .h2, h3, .h3 {
	font-weight: bold;
	margin-bottom: 20px;
}
h1, .h1,
h2, .h2 {
	font-size: 3.6rem;
	line-height: 4.6rem;
}
@media (max-width: 1400px) {
	h1, .h1,
	h2, .h2 {
		font-size: 2.8rem;
		line-height: 3.6rem;
	}
}
h3, .h3 {
	font-size: 1.6rem;
	line-height: 2.6rem;
	margin-bottom: 1rem;
}
@media (max-width: 1400px) {
	h3, .h3 {
		font-size: 1.5rem;
		line-height: 2.1rem;
	}
}

p {
	margin-bottom: 1.5rem;
}

.entry-content a {}
.entry-content a:hover {
	text-decoration: underline;
}

/* @ BUTTON STYLES
 */
.btn {
	font-weight: 300;
	color: #000;
	letter-spacing: .03rem;
	padding: .6rem 1.5rem;
	border-radius: .4rem;
	border-width: 2px;
	font-size: 1.4rem;
	line-height: 2rem;
	-webkit-transition: all .25s ease 0s;
	   -moz-transition: all .25s ease 0s;
			transition: all .25s ease 0s;
}

.btn-lg {
	font-size: 18px;
	line-height: 24px;
	line-height: 1.33;
	letter-spacing: .5px;
}
@media (min-width:1170px) {
	.btn-lg {
		font-size: 24px;
		line-height: 32px;
		line-height: 1.33;
	}
}
@media (min-width:1600px) {
	.btn-lg {
		font-size: 28px;
		line-height: 36px;
		line-height: 1.285;
		padding: 20px 60px;
		border-radius: 16px;
	}
}
/* Button Styles Resets */
.btn-flat.focus,
.btn-flat:focus,
.btn-outline.focus,
.btn-outline:focus {
	outline: 0 none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}
.btn-flat.active,
.btn-flat:active,
.btn-outline.active,
.btn-outline:active {
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

/* Button Style : Flat */
.btn-flat {
	background-color: transparent;
	border-color: #231f20;
	color: #231f20;
}
.btn-flat.focus, .btn-flat:focus, .btn-flat:hover {
	background-color: #231f20;
	color: #fff;
}


/* Button Style : Outline */
.btn-outline {
	background-color: transparent;
	border-color: #ccc;
	color: #ccc;
}
.btn-outline.focus, .btn-outline:focus, .btn-outline:hover {
	background-color: #ccc;
	color: #fff;
}
/* Button Style Theme */
.btn-outline {
	border-color: #231f20;
	color: #231f20;
}
.btn-outline.focus, .btn-outline:focus, .btn-outline:hover {
	background-color: #231f20;
}


/* Button Icons */
.btn > i {
	margin-left: 10px;
}

/* Button animation */
.btn-animate-icon {
	position: relative;
	padding-right: 40px;
}
@media (min-width:1170px) {
	.btn-animate-icon {
		position: relative;
		padding-right: 60px;
	}
}
.btn-animate-icon > i {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  margin-left: 0;
  right: auto;
  width: 30px;
  height: 20px;
  -webkit-animation: bounce 1.4s linear infinite;
          animation: bounce 1.4s linear infinite;
}


/* @ HEADER 
 */
.site-header {
	background-color: #ffffff;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,.35);
	   -moz-box-shadow: 0 0 5px rgba(0,0,0,.35);
			box-shadow: 0 0 5px rgba(0,0,0,.35);
}
.site-header-inner {
	height: 60px;
}
@media (min-width: 992px) {
	.site-header,
	.site-header-inner {
		height: 70px;
	}
}
@media (min-width: 1170px) {
	.site-header,
	.site-header-inner {
		height: 90px;
	}
}
.site-brading {
	height: 100%;
	padding: 10px 0;
}
@media (min-width: 1170px) {
	.site-branding {
		padding: 15px 0;
	}
}
.site-logo {
	display: block;
}
.site-logo > img {
	width: auto;
	max-height: 40px;
}
@media (min-width: 768px) {
	.site-logo > img {
		max-height: 50px;
	}
}
@media (min-width: 1170px) {
	.site-logo > img {
	}
}

/*  */
.main-content {
	padding-top: 6rem;
}
@media (min-width: 992px) {
	.main-content {
		padding-top: 70px;
	}
}
@media (min-width: 1170px) {
	.main-content {
		padding-top: 90px;
	}
}


/* @ NAVIGATION 
 */
.navbar-collapse {
    padding:0;
}

.site-navigation .navbar-nav {

}
@media (max-width: 991px) {
	.site-navigation .navbar-nav {
		border-top: 1px solid #aaa;
	}
}

.site-navigation-inner{
    padding: 13px 0;
    float: right;
}
.site-navigation .navbar-nav > li {
	margin: 0;
}
@media (max-width: 991px) {
	.site-navigation .navbar-nav {
		float: none;
	}
	.site-navigation .navbar-nav > li {
		float: none !important;
	}
}
@media (min-width: 992px) {
	.site-navigation .navbar-nav > li {
		height: 7rem;
		padding: 2rem 0;
	}
}
@media (min-width: 1170px) {
	.site-navigation .navbar-nav > li {
		height: 9rem;
		padding: 3rem 0;
	}
}
.site-navigation .navbar-nav > li > a {
	height: 3rem;
	font-size: 1.5rem;
	line-height: 2.7rem;
	line-height: 1.8;
	font-weight: 400;
	color: #4a4a4a;
	letter-spacing: .03rem;
	border-width: .01rem;
	border-style: solid;
	border-color: transparent;
	padding: 0;
	margin: 0 1.2rem;
	-webkit-transition: all .25s ease 0s;
	   -moz-transition: all .25s ease 0s;
			transition: all .25s ease 0s;
}
@media (max-width: 991px) {
	.site-navigation .navbar-nav > li > a {
		height: auto;
		font-size: 2rem;
		line-height: 4.5rem;
		line-height: 2.25;
		margin: 0;
		padding: 0 1.5rem;
		border-bottom-color: #aaa;
	}
}
@media (min-width: 1170px) {
	.site-navigation .navbar-nav > li > a {
		margin: 0 2rem;
	}
}

.site-navigation .navbar-nav > li.menu-item-lang {
}
@media (max-width: 991px) {
	.site-navigation .navbar-nav > li.menu-item-lang {
		margin-top: 1rem;
		margin-bottom: .3rem;
		display: inline-block;
	}
}

@media (max-width: 991px) {
	.site-navigation .navbar-nav > li.menu-item-lang > a {
		margin: 0 .5rem;
		line-height: 2.4rem;
		border-bottom-color: transparent;
	}
}
@media (min-width: 992px) {
	.site-navigation .navbar-nav > li.menu-item-lang > a {
		margin: 0 .3rem;
	}
	.site-navigation .navbar-nav > li.menu-item-lang.current-lang > a {
		margin-left: 2rem;
	}
}
.site-navigation .navbar-nav > li > a.flag-wrapper {
	padding-top: .4rem;
}
.site-navigation .navbar-nav > li > a.flag-wrapper > .img-thumbnail {
	width: 1.6rem;
	height: 1.6rem;
	padding: 0;
	border-color: transparent;
	border-width: 0;
	border-radius: 50%;
}
@media (max-width: 991px) {
	.site-navigation .navbar-nav > li > a.flag-wrapper > .img-thumbnail {
		width: 2.4rem;
		height: 2.4rem;
	}
}
@media (min-width: 1600px) {
	.site-navigation .navbar-nav > li > a.flag-wrapper > .img-thumbnail {
		width: 2rem;
		height: 2rem;
	}
}
@media (min-width: 992px) {
	.site-navigation .navbar-nav > li > a::after {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #231f20;
		background-color: #231f20;
		content: '';
		opacity: 0;
		-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
		-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
		transition: height 0.3s, opacity 0.3s, transform 0.3s;
		-webkit-transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	.site-navigation .navbar-nav > li > a:hover::after,
	.site-navigation .navbar-nav > li > a:focus::after {
		height: 3px;
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		transform: translateY(0px);
	}
	.site-navigation .navbar-nav>li>a:hover,
	.site-navigation .navbar-nav>li>a:focus {
		/*
		background-color: #231f20;
		background-color: #231f20;
		*/
		background-color: transparent;
		color: #4a4a4a;
	}
	.site-navigation .navbar-nav > li.current-menu-item > a::after,
	.site-navigation .navbar-nav > li.current-lang > a::after,
	.site-navigation .navbar-nav > li.current-menu-parent > a::after {
		height: 3px;
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		transform: translateY(0px);
	}
}

.site-navigation .navbar-nav > .active > a, 
.site-navigation .navbar-nav > .active > a:hover, 
.site-navigation .navbar-nav > .active > a:focus{
    background:none;
}
.site-navigation .navbar-nav>.open>a, 
.site-navigation .navbar-nav>.open>a:hover, 
.site-navigation .navbar-nav>.open>a:focus{
    background:none;
}

.dropdown-menu{
    border-radius:0;
    padding:0;
    margin-top:0;
}

.dropdown-menu li a{
    padding:10px 20px;
}

.dropdown-menu li a:hover, .dropdown-menu li a:focus{
    background:#009cee;
}

.navbar-toggle{
    float:none;
    margin:0;
    width:25%;
    border-radius:0;
    background:#111;
    border:none;
}

.navbar-header{
    text-align:center;
}

.navbar-toggle .icon-bar{
    margin-top:-20px;
    background-color:#fff !important;
}

@media (min-width:320px){

    .site-navigation-inner{
        float:none;
        padding: 0;
    }

    .site-navigation{
        padding:0;
    }

    .navbar{
        min-height:0;
        margin-bottom:0;
    }

    .navbar-nav>li>a{
        padding:10px 20px;
    }

    .navbar-nav{
        margin:0;
        box-shadow:none;
    }

    .navbar-default .navbar-collapse{
        border:none;
        box-shadow:none;
    }

    .navbar-default a{
        text-align:center;
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a{
        color:#fff;
    }

}


@media (min-width:768px){

    .navbar-default .navbar-nav .open .dropdown-menu>li>a{
        color:#111;
    }
}


/* @ SITE FOOTER
 */
.site-footer {
	border-color: #231f20;
	border-width: 0 0 15px 0;
	border-style: solid;
	margin-top: 6rem;
}
.site-footer-inner {
	padding: 15px 0;
}



/* @ COLOR SCHEMES
 */
.bg-cloudy {
	background-color: #d1d2d4;
}




/* @ PAGE HERO
 */
#page-hero {
	/* height: calc( 100vh - 60px ); */
	height: auto;
	position: relative;
	margin: 0 0 3rem;
	overflow: hidden;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
	#page-hero {
		height: calc( 100vh - 7rem ); /* viewport height - header height */
		margin: 0 0 4.5rem;
	}
}
@media (min-width: 1170px) {
	#page-hero {
		height: calc( 100vh - 9rem ); /* viewport height - header height */
	}
}


@media (max-width: 767px) {
	#page-hero .page-hero_media-holder {
		height: calc( 100vh - 6rem );
		overflow: hidden;
		position: relative;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#page-hero .page-hero_media-holder {
		height: 0;
		padding-bottom: 56.57%;
		position: relative;
		overflow: hidden;
	}	
}
@media (min-width: 992px) {
	#page-hero .page-hero_media-holder {
		position: absolute;
		top: 0;
		height: 76%;
		width: 100%;
		overflow: hidden;
	}
}

#page-hero .page-hero_slider-vid {
	top: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    width: auto;
    height: auto;
    z-index: -100;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (min-width: 992px) {
	#page-hero .page-hero_slider-vid {
		top: 6rem;
	}
}
@media (min-width: 992px) {
	#page-hero .page-hero_slider-vid {
		top: 80%;
	}
}

/* Page Hero Section : Slider */
#page-hero .hero-slider {
	width: 100%;
}
@media (min-width: 992px) {
	#page-hero .hero-slider {
		background: transparent;
		height: 76.15499254843517%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
	}
}

.page-hero_splash-text-holder {
	width: 100%;
	text-align: center;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-bottom: 3rem;
	padding-top: 3rem;
}
@media (max-width: 767px) {
	.page-hero_splash-text-holder {
		height: 100%;
	}
}
@media (min-width: 768px) {
	.page-hero_splash-text-holder {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;	
		left: 0;
	}
}
@media (min-width: 992px) {
	.page-hero_splash-text-holder {
		width: calc( 100% - 23% );

	}
}
.page-hero_splash-text {
	width: 100%;
	height: 100%;
}
.page-hero_splash-text {
		display: table;
		vertical-align: middle;
	}
.page-hero_splash-text h1 {
	color: #fff;
	text-shadow: 0 3px 10px rgba(0,0,0,.5);
	font-size: 4.2rem;
	line-height: 5.6rem;
	line-height: 1.16;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	margin: 0;
	text-align: center;
}
@media (max-width: 991px) {
	.page-hero_splash-text h1 {
		font-size: 2.4rem;
		line-height: 2.8rem;
	}
}



/* Page Hero Section : Banner */
#page-hero .hero-banner {
	background-color: #231f20;
	padding: 2rem 1.5rem;
}
@media (min-width: 992px) {
	#page-hero .hero-banner {
		width: 21%;
		height: 100%;
		position: absolute;
		top: 0;
		right: 2%;
		z-index: 10;
	}
}
@media (min-width: 1600px) {
	#page-hero .hero-banner {
		padding: 4rem 3rem;
	}
}
@media (min-width: 2100px) {
	#page-hero .hero-banner {
		padding: 6rem 4.5rem;
	}
}
#page-hero .hero-banner .hero-banner-inner {
	height: 100%;
	width: 100%;
}
.hero-banner .hero-banner-section {
	margin: 0 0 3rem;
}
@media (min-width: 1600px) {
	.hero-banner .hero-banner-section {
		margin: 0 0 3rem;
	}
}
.hero-banner .hero-banner-heading  {
	margin-bottom: 1rem;	
}
.hero-banner .hero-banner-heading .hero-banner-title {
	font-size: 17px;
	line-height: 22px;
	line-height: 1.294117647058824;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin: 0;
}

/**/
@media (min-width: 768px) and (max-width: 991px) {
	.hero-banner-main::after,
	.hero-banner-inner::after {
		content: " ";
		display: table;
		clear: both;
	}
	.hero-banner .hero-banner-main,
	.hero-banner .hero-banner-bottom {
		float: left;
	}
	.hero-banner .hero-banner-main {
		width: 75%;
	}
	.hero-banner .hero-banner-bottom {
		width: 25%;
	}
	.hero-banner .hero-banner-main .hero-banner-section {
		float: left;
		width: 33.333336%;
		padding-right: 1.5rem;
		margin: 0;
	}
}

@media (min-width: 1600px) {
	.hero-banner .hero-banner-heading  {
		margin-bottom: 15px;	
	}
	.hero-banner .hero-banner-heading .hero-banner-title {
		font-size: 20px;
		line-height: 26px;
		line-height: 1.3;
	}
}

/* News Holder */
.news-holder {

}
.news-holder .news-item {
	margin: 0 0 1.5rem;
}
.news-holder .news-item:last-child {
	margin: 0;
}
.news-holder .news-item .news-item-thumbnail {
	width: 20%;
	max-width: 12.5rem;
	margin: 0 0 .5rem;
}
@media (min-width: 1600px) {
	.news-holder .news-item .news-item-thumbnail {
		width: 25%;
		margin: 0 0 1rem;
	}
}
.news-holder .news-item .news-item-title {
	font-size: 14px;
	line-height: 20px;
	line-height: 1.428571428571429;
	font-weight: 300;
	color: #fff;
	letter-spacing: .3px;
	margin: 0;
}
.news-holder .news-item .news-item-title a {
	color: #fff;
}
@media (max-width: 767px) {
	.news-holder .news-item {
		width: 50%;
		float: left;
	}
	.news-holder .news-item .news-item-thumbnail {
		width: 50%;
	}
}
@media (min-width: 1600px) {
	.news-holder .news-item .news-item-title {
		font-size: 16px;
		line-height: 24px;
		line-height: 1.5;
	}
}

/* Link List */
#page-hero .link-list-holder {}
#page-hero .link-list-holder .link-list {}
#page-hero .link-list-holder .link-list-item {
	margin: 0 0 10px;
}
#page-hero .link-list-holder .link-list-item a {
	font-size: 14px;
	line-height: 21px;
	line-height: 1.5;
	font-weight: 300;
	color: #fff;
	letter-spacing: .3px;
	display: block;
}
#page-hero .link-list-holder .link-list-item a::before {
	content: ">";
    margin-right: 5px;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}
@media (min-width: 1600px) {
	#page-hero .link-list-holder .link-list-item a {
		font-size: 16px;
		line-height: 24px;
		line-height: 1.5;
	}
	#page-hero .link-list-holder .link-list-item a::before {
		margin-right: 10px;
		font-size: 20px;
	}
}

/* Bottom */
.hero-banner-bottom-social-media {
	margin: 0 0 2rem;
}
.hero-banner-bottom-social-media-copy {
	color: white;
    font-size: 1.4rem;
   	line-height: 2rem;
	letter-spacing: .03rem;
    margin: 0 0 .8rem;
    display: block;
}
@media (min-width: 1600px) {
	.hero-banner-bottom-social-media-copy {
		color: white;
		font-size: 1.4rem;
		line-height: 2rem;
		letter-spacing: .03rem;
		margin: 0 0 .8rem;
		display: block;
	}
}
.hero-banner-bottom-social-media ul.social-icons {
	margin: -2px;
}
.hero-banner-bottom-social-media ul.social-icons > li{
	padding-left: 2px;
	padding-right: 2px;
}
.hero-banner-bottom-social-media .social-icons li a {
	height: 3rem;
	width: 3rem;
	padding: .5rem;
	color: #fff;
	border-color: #fff;
}
.hero-banner-bottom-social-media .social-icons li.smiley a {
    background-image: url(../img/smiley-white.png);
}
.hero-banner-bottom-social-media .social-icons li a i::before {
	font-size: 1.5rem;
	line-height: 1;
}

#page-hero .hero-banner-bottom .hero-banner-bottom-link {
	display: inline-block;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 17px;
}

/* Page Hero Section : Grid */
#page-hero .hero-grid {
	width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
	#page-hero .hero-grid {
		padding: 2rem 0;
	}
}
#page-hero .hero-grid .hero-grid_container {
}
#page-hero .hero-grid .hero-grid_row {
	margin: 0 !important;
}
#page-hero .hero-grid .hero-grid-col {
	padding-left: .5rem;
	padding-right: .5rem;
	margin: 0 0 1rem;
}
@media (max-width: 767px) {
	#page-hero .hero-grid {
		margin: 1rem 0;
	}
	#page-hero .hero-grid .hero-grid_container {
		width: 100%;
		padding-left: .5rem;
		padding-right: .5rem;
	}
}
@media (min-width: 768px) and (max-width:991px) {
	#page-hero .hero-grid .hero-grid_row {
		margin-left: -1rem !important;
		margin-right: -1rem !important;
	}
	#page-hero .hero-grid .hero-grid-col {
		width: 20% !important;
		margin-bottom: 0;
	}
}
@media (min-width: 992px) {
	#page-hero .hero-grid {
		height: 24%;
		width: calc( 77% - 1rem );
		position: absolute;
		top: 76%;
		left: .5rem;
		right: 0;
		z-index: 11;
	}
	#page-hero .hero-grid .hero-grid_container {
		width: 100%;
		height: 100%;
		padding: 0 !important;
	}
	#page-hero .hero-grid .hero-grid_row {
		height: 100%;
		width: 100%;
	}
	#page-hero .hero-grid .hero-grid-col {
		height: 100%;
		width: 20% !important;
		margin: 0;
		display: table;
		vertical-align: middle;
	}
}

.hero-grid .hero-grid-item {
	width: 100%;
	height: 100%;	
	position: relative;
	overflow: hidden;
}
.hero-grid .hero-grid-item .hero-grid_item-inner {
	overflow: hidden;
	position: relative;
}
@media (min-width: 992px) {
	.hero-grid .hero-grid-item .hero-grid_item-inner {
		margin: .5rem .5rem 0;
	}
}
.hero-grid .hero-grid-item .hero-grid-item-thumbnail {
}
.hero-grid .hero-grid-item .hero-grid-item-header {
	background-color: #000;
	background-color: rgba(0,0,0,.72);
	text-align: center;
	padding: .8rem .8rem 1rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
@media (min-width: 992px) {
	.hero-grid .hero-grid-item .hero-grid-item-header {
		bottom: auto;
		top: 50%;
		margin-top: -2.15rem;
	}
	.hero-grid .hero-grid-item {
		display: table-cell;
		vertical-align: middle;
		/* fix */
		vertical-align: bottom;
	}
	.hero-grid .hero-grid-item .hero-grid-item-thumbnail {
	}
}
.hero-grid .hero-grid-item .hero-grid-item-title {
	color: #fff;
	margin: 0;
}
.hero-grid .hero-grid-item .hero-grid-item-copy {
	font-size: 1.2rem;
	line-height: 1.6rem;
	line-height: 1.33;
	color: #fff;
	display: block;
}
@media (max-width: 767px) {
	.hero-grid .hero-grid-item .hero-grid-item-copy {
		display: none;
	}
}
@media (min-width: 768px) {
	.hero-grid .hero-grid-item .hero-grid-item-title {
		margin: .5rem 0;
	}
}


/**/
.content-row {
}
.content-row-col {
	padding: 0;
}
.content-row-col-inner {
}
@media (max-width: 991px) {
	.content-row-col-inner {
		padding: 0 1.5rem;
	}
}
@media (min-width: 992px) {
	.content-row-col-inner {
		width: 100%;
		height: 100%;
		padding: 4rem 8rem;
		overflow: hidden;
	}
}

/**/
.col-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.image-column .col-container.col-container_4-3 {
	padding-bottom: 75%;
}
.col-container_content,
.col-container_content .flex-item {
	width: 100%;
}
@media (min-width: 992px) {
	.col-container.col-container_4-3 {
		padding-bottom: 75%;
	}
	.col-container > .col-container_inner {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		padding: 4rem 8rem;
	}
	.col-container .col-container_content {
		height: 100%;
		/*overflow: hidden;*/
	}
}
@media (max-width: 1400px) {
	.col-container.col-container_4-3 > .col-container_inner {
		padding: 2rem 4rem;
	}
}

/***************
 * IPAD FIX    *
 ***************/
@media (min-width: 992px) and (max-width: 1100px) {
	.col-container > .col-container_inner {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}
	.col-container > .col-container_inner .entry-content h1,
	.col-container > .col-container_inner .entry-content h2,
	.col-container > .col-container_inner .entry-content h3 {
		margin-bottom: 1.2rem;
	}
	.col-container > .col-container_inner .entry-content p {
		margin-bottom: 1rem;
	}
}


.image-column .col-container.col-container_4-3 > .col-container_inner {
	padding: 0;
}
@media (max-width: 991px) {
	.image-column .col-container {
		padding-bottom: 75%;
	}
	.image-column .col-container > .col-container_inner {
		padding: 0;
	}
}

.col-container.col-container_auto > .col-container_inner {
	position: relative;
}
@media (max-width: 1400px) {
	.col-container.col-container_auto > .col-container_inner {
		padding: 4rem 4rem;
	}
}

.content-row .image-column {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
}


@media (min-width: 992px) {
	.content-row.image_on_left .image-column,
	.content-row.image_on_right .contents-column {
		float: left !important;
	}
	.content-row.image_on_right .image-column,
	.content-row.image_on_left .contents-column {
		float: right !important;
	}
}

.page-builder > section {
	margin: 6rem 0;	
}
.page-builder > section._0-margin {
	margin: 0 !important;
}
.page-builder > section:last-child {
	margin-bottom: 0;
}

.section-header {
	text-align: center;
	margin: 0 0 4rem;
}
.section-header .section-title {
	margin: 0 0 2rem;
}

/* @ ROW : TESTIMONIAL
 */
.testimonials-container {
	padding: 45px 0;
}


/* @ ROW : CLIENTS CAROUSEL
 */
.clients-container {}
.clients-container .client-slide {
	padding: 0 30px;
    display: table;
    width: 100%;
    height: 120px;
	overflow: hidden;
}
.clients-container .client-slide-content {
	display: table-cell;
    vertical-align: middle;
}
.clients-container .client-logo {
	position: relative;
}
.clients-container .client-logo > img {
	margin: 0 auto;
    max-height: 120px;
    width: auto;
    max-width: 100%;
}


/* @ ROW : CLIENTS TABLE
 */
.client-table {
    background-color: transparent !important;
    display: table;
    border-collapse: collapse;
    width: 100%;
    /* box-sizing: content-box; */
}
.client-table_row {
    width: 100%;
    display: table-row;
    text-align: center;
}

.client-table .client-table_col {
	background-color: #fff;
    display: table-cell;
    border-width: 1px;
    border-style: solid;
	border-color: #ededed;
}
.client-table .client-table_col {
    margin: 0;
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.client-table .client-table_col-one-fifth {
    margin: 0;
    width: 16.666667%;
    float: none;
    position: static;
}
@media screen and (max-width: 767px) {
	.client-table .client-table_col-one-fifth {
		height: 8rem;
		width: 50% !important;
		float: left !important;
		margin-top: -1px !important;
		display: table;
	}
	.client-table .client-table_col .client-table_col-fix {
		height: 6rem;
		vertical-align: middle;
		display: table-cell;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media screen and (max-width: 991px) and (min-width: 768px) {
	.wtrClientsTable .wtrColOneFifth {
		width: 50% !important;
		float: left !important;
		margin-top: -1px !important;
	}
}

.client-table .client-table_col .client-table_col-fix {

}

.client-table_client-url {
    position: absolute;
    opacity: 0;
    z-index: 2;
    bottom: 35%;
    width: 100%;
    left: 0px;
    font-weight: normal !important;
    font-size: 1.4rem;
}
.client-table_client-logo {
    width: auto;
	max-width: 50%;
	max-height: 6rem;
    display: block;
    margin: .5rem auto;
}
@media screen and (max-width: 767px) {
	.client-table_client-logo {
		max-width: 100%;
	}
}
.client-table_client-logo-animate, 
.client-table_client-url {
    -webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
    	 -o-transition: all 0.3s ease-in-out;
    		transition: all 0.3s ease-in-out;
}
.client-table_col:hover .client-table_client-logo-animate {
	-webkit-transform: scale(0.9);
	   -moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		 -o-transform: scale(0.9);
			transform: scale(0.9);
    /*opacity: 0.1;*/
}



/* @ ROW : CTA
 */
.cta-wrap {
	padding: 3rem 0;
    margin: 0 auto;
    max-width: 1600px;
    text-align: center;
}
.cta-label {
	display: block;
    font-size: 3.6rem;
    line-height: 4rem;
    font-weight: 200;
	margin: 0 0 2rem;
}
.cta-title {
	font-size: 4rem;
	line-height: 4rem;
	line-height: 1;
    font-weight: bold;
    letter-spacing: .08rem;
    display: block;
	color: white !important;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
	.cta-wrap {
		padding: 6rem 0;
	}
	.cta-label {
		font-size: 4.8rem;
		line-height: 5.4rem;
		margin: .5rem 0 1rem;
	}
	.cta-title {
		font-size: 8.4rem;
		line-height: 8.4rem;
		letter-spacing: .2rem;
		color: white !important;
	}
}
@media (min-width: 1170px) {

}


/* @ ROW : COLUMN GRID
 */
.grid-col {
	padding-left: 5px;
	padding-right: 5px;
}
.grid-col .grid-col-thumbnail {
	margin: 0 0 20px;
}
.grid-col .grid-col-header {
	text-align: left;
}
.grid-col .grid-col-title {
}


/* @ ROW : CASES
 */
#cases .grid-col .grid-col-thumbnail {
	margin: 0;
}





/* @ CONTACT PAGE
 */

/* Google Map */



/* Contacts */
#contact {
	padding: 30px 15px;
}
#contact ul li {
	font-size: 1.5rem;
    line-height: 2.4rem;
    line-height: 1.6;
}


#primary_contact,
#secondary_contact {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
	#primary_contact {
		border-width: 0 0 1px 0;
		border-color: #000;
		border-style: solid;
	}
}
@media (min-width: 768px) {
	#primary_contact,
	#secondary_contact {
		padding-top: 4rem;
		padding-bottom: 4rem;
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	#primary_contact {
		padding-right: 3rem;
	}
	#secondary_contact {
		padding-left: 3rem;
		border-left: .1rem solid #000;
	}
}
@media (min-width: 1600px) {
	#primary_contact {
		padding-right: 4.5rem;
	}
	#secondary_contact {
		padding-left: 4.5rem;
	}
}

#primary_contact .contacts-col-padder {

}

.contacts-col-padder {

}

 
/* Call List */
.call-list_container {
	padding: 3rem 0;
}
@media (min-width: 768px) {
	.call-list_container {
		padding: 4.5rem 0;
	}
}
.call-list_title {
	font-size: 1.6rem;
	line-height: 2.4rem;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
	margin: 0 0 2rem;
}
@media (min-width: 768px) {
	.call-list_title {
		font-size: 2.4rem;
		line-height: 3rem;
		line-height: 1.25;
		margin: 0 0 2.5rem;
	}
}
.call-list_list-holder ul {
	text-align: center;
	margin: 0;
}
.call-list_list-holder ul li {
	font-size: 1.5rem;
	line-height: 2.4rem;
	line-height: 1.6;
}






/* @ MODAL
 */

/* modal sizing */
@media (min-width: 1600px) {
	.modal-lg {
		width: 1280px;
	}
}

/* vertical centering */
.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
    pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
}
.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events:none;
}
.modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
}

/* dismiss button */
.modal-dismiss {
	position: absolute;
	top: -50px;
	right: 0;
	padding: 0;
    border: 0;
    box-shadow: none;
    background-color: transparent;
    border-radius: 0;
    color: white;
	outline: 0 none !important;
}
.modal-dismiss:hover {
	color: white;
}
.modal-dismiss > i {
	margin: 0;
}
.modal-dismiss > i::before {
	font-size: 40px;
	line-height: 40px;
	line-height: 1;
}
/* Video Modal */
.video-modal {

}
.video-modal .modal-body {
	padding: 0;
}
.video-modal .modal-content {
	border-radius: 0;
	border: 0 none;
}


/* @ FOOTER 
 */
.footer-widget-area {
}
@media (min-width: 768px) {
	.footer-widget-area {
		margin-bottom: 2rem;
	} 
}

/* Page Links Widget */
.page-links-widget {

}
.page-links-widget .widget-header {
	text-align: center;
}
.page-links-widget .widget-title {
	font-size: 1.8rem;
	line-height: 2.6rem;
	line-height: 1.44;
	margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
	.page-links-widget .widget-title {
		font-size: 3.2rem;
		line-height: 4.2rem;
		line-height: 1.3125;
		margin-bottom: 1rem;
	}
}

.page-links-grid {
}
.page-links-grid .page-link-col {
	padding-left: .5rem;
	padding-right: .5rem;
	margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
	.page-links-grid .page-link-col {
		margin-bottom: 3rem;
	}
}
@media (min-width: 992px) {
	.page-links-grid .page-link-col {
		width: 20%;
	}
}
.page-links-grid .page-link-col .page-link-thumbnail {
	position: relative;
	margin: 0 0 .5rem;
}
@media (min-width: 768px) {
	.page-links-grid .page-link-col .page-link-thumbnail {
		margin: 0 0 1rem;	
	}
}
.page-links-grid .page-link-col .page-link-thumbnail > a::before {
	content: "";
	background-color: rgba(255,255,255,.0);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: background-color .35s ease 0s;
	   -moz-transition: background-color .35s ease 0s;
			transition: background-color .35s ease 0s;
}
.page-links-grid .page-link-col .page-link-thumbnail:hover > a::before {
	background-color: rgba(255,255,255,.75);
}
.page-links-grid .page-link-col .page-link-header {
	text-align: center;
}
.page-links-grid .page-link-col .page-link-title {
	font-size: 1.4rem;
	line-height: 1.7rem;
	line-height: 1.21;
	font-weight: bold;
	letter-spacing: .04rem;
	margin: 0;
}
@media (min-width: 768px) {
	.page-links-grid .page-link-col .page-link-title {
		font-size: 1.7rem;
		line-height: 2.1rem;
		line-height: 1.235;	
	}
}


/* @ EMPLOYEES
 */
#posts-grid {
	min-height: 20rem;
}
#posts-grid.loading {
	position: relative;
}
#posts-grid.loading > * {
    opacity:0.2;
}
#posts-grid.loading:before {
    content: url(../img/loader.svg);
    padding: 5rem;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	text-align: center;
	width: 100%;
}

.section-nav_holder {
	margin: 0 0 4rem;
}
.section-nav_navigation .section-nav_navigation-menu {
	list-style-type: none;
	margin: 0 -.5rem;
	padding: 0;
	font-size: 0;
	line-height: 0;
	text-align: center;
	vertical-align: top;
}
.section-nav_navigation .section-nav_navigation-menu > li {
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: 600;
	display: inline-block;
	vertical-align: top;
	padding: 0 .5rem;
}
@media (max-width: 991px) {
	.section-nav_navigation .section-nav_navigation-menu > li {
		margin: 0 0 .5rem;
	}
}
.section-nav_navigation .section-nav_navigation-menu > li a {
	display: block;
	padding: .6rem 1.5rem;
	border-radius: .4rem;
	border-width: 2px;
	border-style: solid;
	border-color: #000;
	text-decoration: none !important; 
	-webkit-transition: all .35s ease 0s;
	   -moz-transition: all .35s ease 0s;
			transition: all .35s ease 0s;
}
.section-nav_navigation .section-nav_navigation-menu > li a:hover,
.section-nav_navigation .section-nav_navigation-menu > li a:focus,
.section-nav_navigation .section-nav_navigation-menu > li a:active,
.section-nav_navigation .section-nav_navigation-menu > li a.active {
	background-color: #000;
	color: #fff;
}

.employee_item-col {
	margin: 0 0 4rem;
}
@media (min-width: 768px) and (max-width: 991px) {
	.employee_item-col:nth-child(2n+1) {
		clear: left;
	}
}
@media (min-width: 992px) and (max-width: 1169px) {
	.employee_item-col:nth-child(3n+1) {
		clear: left;
	}
}
@media (min-width: 1170px) {
	.employee_item-col:nth-child(4n+1) {
		clear: left;
	}
}
.employee_thumbnail {
	margin: 0 0 2rem;
	text-align: center;
}
.employee_thumbnail img {}
.employee_meta {
	text-align: center;
}
.employee_meta .employee_meta-name,
.employee_meta .employee_meta-position,
.employee_meta .employee_meta-email,
.employee_meta .employee_meta-phone,
.employee_meta .employee_meta-mobile {
	display: block;
}
.employee_meta .employee_meta-name {
	font-weight: 600;
}
.employee_meta .employee_meta-email {
	font-size: 14px;
	font-weight: normal;
}
.employee_meta .employee_meta-position,
.employee_meta .employee_meta-phone,
.employee_meta .employee_meta-mobile {
	font-size: 14px;
	font-weight: normal;
}

 
/* Address */
.site-info {}
@media (max-width: 767px) {
	.site-info {
		margin: 0 0 1.5rem;
	}
}
.address {
	font-size: 1.5rem;
	line-height: 2.2rem;
	line-height: 1.46;
	font-weight: 600;
	letter-spacing: .03rem;
	margin-bottom: 0;
	margin-left: -1rem;
	margin-right: -1rem;
}
.address li {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
}
@media (max-width: 767px) {
	.address {
		text-align: center;
	}
}
@media (min-width: 768px) {
	.address {
		font-size: 1.5rem;
		line-height: 2.4rem;
		padding: .6rem 0;
	}
	.address li {
		float: left;
	}
	.address li::after {
		content: "";
		width: .2rem;
		height: 2.4rem;
		position: absolute;
		background-color: #231f20;
		right: -.1rem;
		top: 50%;
		margin-top: -1.2rem;
	}
	.address li:last-child::after {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.address {
		margin: 0 0 1.5rem;
	}
}
@media (min-width: 1170px) {
	.address {
		padding: 0;
		font-size: 1.7rem;
		line-height: 3.6rem;
		line-height: 2.117;
	}
}

.address li a {
	color: #231f20;
}


#sub-footer .social-icons li a:hover {
	color: #231f20;
	border-color: #231f20;
}
 
/* Social Icons */
.social-icons-holder {
	text-align: center;
}
@media (min-width: 992px) {
	.social-icons-holder {
		text-align: right;
	}
}
.social-icons {
	margin-bottom: 0;
}
.social-icons li {
	vertical-align: bottom;
}
.social-icons li a {
    width: 36px;
    height: 36px;
    color: #000;
    display: block;
    padding: 6px;
    border-radius: 50%;
    border-width: 2px;
	border-style: solid;
	border-color: #000;
	-webkit-transition: all .3s ease 0s;
	   -moz-transition: all .3s ease 0s;
	   		transition: all .3s ease 0s;
}
.social-icons li.smiley a {
    border-color: transparent;
    border-width: 0;
    background-image: url(../img/smiley.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.social-icons li a:hover {
	text-decoration: none;
}
.social-icons li a i {
}
.social-icons li a i::before {
	display: inline-block;
	vertical-align: top;
}


/* @ IMAGE ANIMATIONS
 */
.img-anim {
	position: relative;
}
.img-anim > a::before {
	content: "";
	background-color: rgba(255,255,255,0);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	-webkit-transition: background-color .35s ease 0s;
	   -moz-transition: background-color .35s ease 0s;
			transition: background-color .35s ease 0s;
}
.img-anim:hover > a::before {
	background-color: rgba(255,255,255,.75);
}

/* Image Zoom */
.img-zoom {
	overflow: hidden;
}
.img-zoom img {
    backface-visibility: hidden;
    -webkit-transition: all 700ms;
       -moz-transition: all 700ms;
    		transition: all 700ms;
}
.img-zoom:hover img {
	-webkit-transform: scale(1.1) rotate(0.1deg);
	   -moz-transform: scale(1.1) rotate(0.1deg);
    	-ms-transform: scale(1.1) rotate(0.1deg);
    	 -o-transform: scale(1.1) rotate(0.1deg);
			transform: scale(1.1) rotate(0.1deg);
}

/* Read More Button */
.read-more-label {
	opacity: 0;
	position: absolute;
    top: 50%;
	left: 0;
    margin-top: -20px;
    height: 40px;
    line-height: 36px;
    width: 50%;
    text-align: center;
    color: black;
    z-index: 11;
    font-weight: 700;
    margin-left: 25%;
    border: 2px solid #000;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .5px;
    border-radius: 3px;
	-webkit-transition: all .35s ease 0s;
	   -moz-transition: all .35s ease 0s;
			stransition: all .35s ease 0s;
}
.img-anim:hover .read-more-label {
    opacity: 1;
}
.read-more-label:hover {
	background-color: #000;
	color: #fff;
}
@media (max-width: 1024px) {
	.read-more-label {
		display: none !important;
		visibility: hidden !important;
	}
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}


/* Images and wp-captions should always fit and be responsive */
img {
	display: inline-block;
	height: auto;
	width: 100%;
	max-width: 100%;
}
img[class*="wp-image-"] {
	margin-top: 10px;
	margin-bottom: 10px;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	max-width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0 10px;
}
.wp-caption.aligncenter {
	margin-bottom: 10px;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
}
.wp-caption .wp-caption-text {
	text-align: center;
	margin-top: 10px;
}

/* WP Gallery */
.gallery {
	margin-bottom: 1.5em;
}
.gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.gallery dd {
	margin: 0;
}


/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}


/* Clearing */
.clear {
	clear: both;
}


/* Here some needed widget styles
 * Most widgets are adapted in the file bootstrap-wp.js - and REALLY easy to modify! ;) */
.widget { margin-bottom: 2em; }
.widget_nav_menu ul.sub-menu li, .widget_pages ul.children li { padding-left: 15px; }

/* Hiding the search widget's button in widgets. thats just too old-skool. :) but if you want it back, just delete the next line.
 * Note: you can change the whole appearance of the search_form() function in our searchform.php */
.widget_search .search-form input[type="submit"] { display: none; }

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}


.gallery-row {
  padding: 15px 0; }

.aligncenter {
  display: block;
  margin: 0 auto; }

.alignleft {
  float: left; }

.alignright {
  float: right; }

figure.alignnone {
  margin-left: 0;
  margin-right: 0; }
  

@-webkit-keyframes shakeMe {
    0% {
        -webkit-transform: translate(.2rem, .1rem) rotate(.1deg)
    }
    10% {
        -webkit-transform: translate(-0.1rem, -0.2rem) rotate(.1deg)
    }
    20% {
        -webkit-transform: translate(-0.3rem, 0) rotate(.1deg)
    }
    30% {
        -webkit-transform: translate(0, .2rem) rotate(.1deg)
    }
    40% {
        -webkit-transform: translate(.1rem, -0.1rem) rotate(.1deg)
    }
    50% {
        -webkit-transform: translate(-0.1rem, .2rem) rotate(.1deg)
    }
    60% {
        -webkit-transform: translate(-0.3rem, .1rem) rotate(.1deg)
    }
    70% {
        -webkit-transform: translate(.2rem, .1rem) rotate(.1deg)
    }
    80% {
        -webkit-transform: translate(-0.1rem, -0.1rem) rotate(.1deg)
    }
    90% {
        -webkit-transform: translate(.2rem, .2rem) rotate(.1deg)
    }
    100% {
        -webkit-transform: translate(.1rem, -0.2rem) rotate(.1deg)
    }
}

@keyframes shakeMe {
    0% {
        transform: translate(.2rem, .1rem) rotate(.1deg)
    }
    10% {
        transform: translate(-0.1rem, -0.2rem) rotate(.1deg)
    }
    20% {
        transform: translate(-0.3rem, 0) rotate(.1deg)
    }
    30% {
        transform: translate(0, .2rem) rotate(.1deg)
    }
    40% {
        transform: translate(.1rem, -0.1rem) rotate(.1deg)
    }
    50% {
        transform: translate(-0.1rem, .2rem) rotate(.1deg)
    }
    60% {
        transform: translate(-0.3rem, .1rem) rotate(.1deg)
    }
    70% {
        transform: translate(.2rem, .1rem) rotate(.1deg)
    }
    80% {
        transform: translate(-0.1rem, -0.1rem) rotate(.1deg)
    }
    90% {
        transform: translate(.2rem, .2rem) rotate(.1deg)
    }
    100% {
        transform: translate(.1rem, -0.2rem) rotate(.1deg)
    }
}


/* @ NEWSLETTER
 */
.input input {
    background: #fff;
    border: 0.2rem solid #fff;
    border-radius: 0;
    color: #444;
    outline: none;
    margin: 0;
    padding: 0 1rem;
    width: 100%;
    height: 3.2rem;
    font-family: 'Open Sans',sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.8rem;
    font-size: 1.2000000000000002rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
} 
@media (min-width: 768px) {
	.input input {
		padding: 0 1.5rem;
		height: 5rem;
		line-height: 2rem;
		font-size: 1.4000000000000001rem;
	}
}

#newsletter_signup {
	width: 100%;
	max-width: 768px;
    margin: 0 auto 40px;
    padding: 20px 15px;
}

#newsletter_signup .the_title {
	font-size: 48px;
    line-height: 58px;
    line-height: 1.2083;
	text-align: center;
	letter-spacing: .3;
    margin: 0 0 30px;
}

#newsletter_signup .the_copy {
    padding: 1rem 0;
    font-weight: 600;
    line-height: 1.8rem;
    font-size: 1.2000000000000002rem
}

#newsletter_signup .the_copy br {
    display: none;
}

#newsletter_signup .form_wrapper {
    position: relative;
}

#newsletter_signup form {
    position: relative;
    z-index: 222;
    border: 2px solid #ccc;
	border-radius: 32px;
	overflow: hidden;
    -webkit-transition: border-color .1s ease-out;
    -moz-transition: border-color .1s ease-out;
    -ms-transition: border-color .1s ease-out;
    transition: border-color .1s ease-out
}

#newsletter_signup.invalid {
    -webkit-animation-name: shakeMe;
    -webkit-animation-duration: .4s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: 2;
    -webkit-animation-iteration-repeat: 1;
    -webkit-animation-timing-function: linear;
    animation-name: shakeMe;
    animation-duration: .4s;
    transform-origin: 50% 50%;
    animation-iteration-count: 2;
    animation-iteration-repeat: 1;
    animation-timing-function: linear
}

#newsletter_signup.invalid form {
    border-color: #f00
}

#newsletter_signup form .input_email {
    position: relative;
    z-index: 222;
    width: calc(100% - 50px);
}
#newsletter_signup form .input_email input {
	height: 64px;
}
@media (min-width: 768px) {
	.input input {
		padding: 0 24px;
		line-height: 2rem;
		font-size: 20px;
		font-weight: 400;
	}
}

#newsletter_signup form .button_triangle {
	width: 64px;
    position: absolute;
    top: 0;
    right: 0;
	bottom: 0;
    z-index: 111
}
.button_triangle button {
    position: relative;
    background: #fff;
    border: 0.2rem solid #fff;
    color: #444;
    outline: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.button_triangle button i::before {
	font-size: 32px;
	line-height: 32px;
	line-height: 1;
}

#newsletter_signup .the_confirm {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
    opacity: 0;
    padding: 1.5rem 0;
    font-weight: 600;
    line-height: 2.4000000000000004rem;
    font-size: 1.6rem;
    -webkit-transform: translateY(-1rem);
    -moz-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out
}

#newsletter_signup.completed form {
    left: -9999rem
}

#newsletter_signup.completed .the_confirm {
    z-index: 333;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.cookie-notice-container {
	padding: 20px 15px;
}
#cookie-notice #cn-notice-text {
	font-size: 14px;
    line-height: 21px;
    display: block;
}
#cookie-notice .button {
	font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    height: 40px;
    border: 2px solid #fff;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    padding: 10px 28px 12px;
	margin: 15px 5px 0;
	-webkit-transition: all .3s ease 0s;
	   -moz-transition: all .3s ease 0s;
		-ms-transition: all .3s ease 0s;
			transition: all .3s ease 0s;
}
#cookie-notice .button:hover,
#cookie-notice .button:focus {
	background-color: #fff;
	color: #333;
}
@media (min-width: 768px) {
	#cookie-notice #cn-notice-text {
		font-size: 14px;
		line-height: 40px;
		display: inline-block;
		vertical-align: middle;	
	}
	#cookie-notice .button {
    	margin: 0 0 0 15px;
	}
}