@charset "UTF-8";
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html {
	color: #2d3c23;
	font-size: 1em;
	font-family: "Lato", sans-serif;
	line-height: 1.4;
	/* Smoothing */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
}

body {
	position: relative;
	margin: 0;
	/* Allows you to scroll below the viewport; default value is visible */
	overflow-y: scroll;
	 
	/* To smooth any scrolling behavior */
	-webkit-overflow-scrolling: touch;
}

html,
body {
	/* Allows content to fill the viewport and go beyond the bottom */
	height: 100%;
}

a,
a div,
a span,
button,
button div,
button span,
input,
textarea,
.touch-action {
	-ms-touch-action: manipulation;
	touch-action: manipulation; /*disable the delay of click events caused by support for the double-tap to zoom gesture. */
}

/**
 * Force Hand Cursor over Clickable Items
 */
a[href],
input[type='submit'],
input[type='image'],
label[for],
select,
button,
.pointer,
.clickable,
.tappable {
	cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] { 
    -moz-appearance:textfield; 
} 

.logo-placeholder,
.replace-title-logo, 
.replace-title-logo-white {
	width:160px;
	height:64px;
}

.logo-placeholder {
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
}

.replace-title-logo, 
.replace-title-logo-white {
	position: absolute;
	top: 0;
	left: 0;
	direction: ltr;
	text-indent:-9999px;
	margin: 0 auto;
	/*background: url("../img/logo/aft_logo_color.svg") top left/160px 100% no-repeat scroll padding-box border-box transparent;*/
	background-position: top left;
	background-size: 160px 100%;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-origin: padding-box;
	background-clip: border-box;
	background-color: transparent;
	transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.replace-title-logo  {
	opacity: 1;
	background-image: url("../img/logo/aft_logo_color.svg");
}
.replace-title-logo-white  {
	opacity: 0;
	background-image: url("../img/logo/aft_logo_white.svg");
}

.has-nav-open .replace-title-logo  {
	opacity: 0;
	transition-delay: .1s;
}
.has-nav-open .replace-title-logo-white  {
	opacity: 1;
	transition-delay: .1s;
}


/*@media (min-width: 1200px) {
	body.has-nav-open {
		overflow: hidden;
	}
}*/

h3, .h3 {
	font-family: "Lato", sans-serif;
	font-size: 40px;
	line-height: 52px;
	color: #e89335;
	font-weight: 900;
	margin-bottom: 30px;
}

h4, .h4 {
	font-family: "Lato", sans-serif;
	font-size: 26px;
	line-height: 31px;
	color: #D1BB2A;
	font-weight: 300;
	margin-bottom: 30px;
}

.--dark {
	color: #246E3F;
}

p {
	font-family: "Lato", sans-serif;
	font-size: 18px; /* was 22px; */
	line-height: 22px; /* was 32px; */
	color: #777; /*was: #2d2d2d*/
	font-weight: 300;
	margin-bottom: 35px;
}

h3, .h3, p {
	position: relative;
	z-index: 1;
}

li {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	color: #777;
}

.single-publication-content-wrapper li {
	font-size: 20px;
	line-height: 26px;
}

p > strong, 
p > span { 
	color: #2D3C23;
	/*make a darker text here*/
}

p > b {
	font-weight: 700;
}

p > a {
	font-weight: 700;
	color: #E89335;
}


@media (min-width: 992px) {
	p {
		font-size: 20px;
		line-height: 26px;
	}
}

.main ul {
	list-style: none;
	padding-left: 0;
}

.main ul li {
	font-size: 20px;
	line-height: 26px;
	font-family: "Lato", sans-serif;
	font-weight: 300;
	color: #777;
	margin-bottom: 10px;
	position: relative;
}

.main ul li > b {
	font-weight: 900;
	color: #2D3C23;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.em-container {
	max-width: 1630px;
}

@media (min-width: 576px) {
  .container {
  	padding-left: 30px;
  	padding-right: 30px;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1630px) {
/*	.em-container {
		padding-left: 30px;
		padding-right: 30px;
	}*/
}

.js-aft-container {
	height: 100%;
}

/*
* only these properties benefit from harduare accelerator
* transform
* opacity
* filter
*/
.gpu-accelerated {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	-webkit-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000;

	-webkit-transform: rotateZ(360deg);
	transform: rotateZ(360deg);
}

.grayscale {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}

.blur {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-ms-filter: blur(5px);
	-o-filter: blur(5px);
	filter: blur(5px);
}

.transform {
	-webkit-transform: scale(0.8);
	-moz-transform:    scale(0.8);
	-ms-transform:     scale(0.8);
	-o-transform:      scale(0.8);
	transform:         scale(0.8);
}

.drop-shadow-bottom {
	background-color:#fff;
	border-color:#fff;
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.25);
	-moz-box-shadow: 0 5px 15px rgba(0,0,0,0.25);
	box-shadow: 0 5px 15px rgba(0,0,0,0.25);
	z-index: 8;
}

.center-element-vertical {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-khtml-transform: translateY(-50%);
}

.radius {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%; /* for old Konqueror browsers */
}

.flip {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

.rotate {
	/* for firefox, safari, chrome, and any other gecko/webkit browser */
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	/* for ie */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=9);
	/* opera */
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.background-preview {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-origin: border-box;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment: scroll;
	background-color: transparent;
	/*background-image: url('');*/
	background-position: center center;
	background-clip: border-box;
	background-blend-mode: normal; /*normal|multiply|screen|overlay|darken|lighten|color-dodge|saturation|color|luminosity;*/
}

.section-title {
	font-size: 27px;
	height: 2px;
	margin: 0;
	margin-top: -1px;  /* subtract half the height */
	line-height: 0px;  /* centre the text on the base line */
	color: #fff;
	text-transform: uppercase;
	text-align: center;

   	position: absolute;
    top: 0;
    left: 25px;
    right: auto;
    z-index: 1;
    padding: 0;
	white-space: nowrap;

	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	transform-origin: 0 50%;
	/* Safari */
	-webkit-transform: rotate(-90deg) translate(-50%, 50%);
	/* Firefox */
	-moz-transform: rotate(-90deg) translate(-50%, 50%);
	/* IE */
	-ms-transform: rotate(-90deg) translate(-50%, 50%);
	/* Opera */
	-o-transform: rotate(-90deg) translate(-50%, 50%);
	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	/* WebKit browsers*/
	transform: rotate(-90deg) translate(-50%, 50%);
}

.section-title.right {
	left: auto;
	right: 25px;
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	/* Safari */
	-webkit-transform: rotate(-90deg) translate(50%, 50%);
	/* Firefox */
	-moz-transform: rotate(-90deg) translate(50%, 50%);
	/* IE */
	-ms-transform: rotate(-90deg) translate(50%, 50%);
	/* Opera */
	-o-transform: rotate(-90deg) translate(50%, 50%);
	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	/* WebKit browsers*/
	transform: rotate(-90deg) translate(50%, 50%);
}


/* PRELOADER */
.ip-header {
	position: fixed;
	top: 0;
	z-index: 1031;
	min-height: 480px;
	width: 100%;
	height: 100%;
	background: #2D3C23;
}

.ip-logo,
.ip-loader {
	position: absolute;
	left: 0;
	width: 100%;
	opacity: 0;
	cursor: default;
	pointer-events: none;
}

.ip-logo {
	top: 0;
	height: 100%;
	-webkit-transform: translate3d(0,25%,0);
	transform: translate3d(0,25%,0);
}

.ip-loader {
	bottom: 20%;
}

.ip-header .ip-inner,
.ip-header .loader-logo,
.ip-header .logo-gif {
	display: block;
	margin: 0 auto;
}

.ip-header .logo-gif {
	max-width: 210px;
	height: auto;
}

.ip-header .ip-logo svg {
	min-width: 200px;
	max-width: 210px;
	width: 20%;
}

.ip-header .ip-logo svg path {
	fill: #fff;
}

.ip-header .ip-loader svg path {
	fill: none;
	stroke-width: 6;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
	stroke: #C9AD23;  /* background*/
}

.ip-header .ip-loader svg path.ip-loader-circle {
	-webkit-transition: stroke-dashoffset 0.2s;
	transition: stroke-dashoffset 0.2s;
	stroke: #fff;  /* fill*/
}

/* Content */
.ip-main {
	/*	
	overflow: hidden;
	margin: 0 auto;
	height: 100%;
	padding: 160px 0 10em 0;
	max-width: 1100px;
	width: 90%;
	*/
}

/* Animations */

/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
	opacity: 1;
	-webkit-animation: animInitialHeader 1s cubic-bezier(0.7,0,0.3,1) both;
	animation: animInitialHeader 1s cubic-bezier(0.7,0,0.3,1) both;
}

.loading .ip-loader {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

@-webkit-keyframes animInitialHeader {
	from { opacity: 0; -webkit-transform: translate3d(0,800px,0); }
}

@keyframes animInitialHeader {
	from { opacity: 0; -webkit-transform: translate3d(0,800px,0); transform: translate3d(0,800px,0); }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
	opacity: 1;
}

.loaded .ip-logo {
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLogo {
	to { opacity: 0; -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

@keyframes animLoadedLogo {
	to { opacity: 0; -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

.loaded .ip-loader {
	-webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLoader {
	to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

@keyframes animLoadedLoader {
	to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

/* Change the color of the logo */
.loaded .ip-logo svg path {
	-webkit-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
	fill: #fff;
}

/* Header animation when loading finishes */
.loaded .ip-header {
	-webkit-animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedHeader {
	to { -webkit-transform: translate3d(0,-100%,0); }
}

@keyframes animLoadedHeader {
	to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}

/* Content animations */
/*.loaded .ip-main {
	-webkit-animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
	animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animLoadedContent {
	from { opacity: 0; -webkit-transform: translate3d(0,200px,0); }
}

@keyframes animLoadedContent {
	from { opacity: 0; -webkit-transform: translate3d(0,200px,0); transform: translate3d(0,200px,0); }
}*/

/* Change layout class for header */
.layout-switch .ip-header {
	position: absolute;
	display: none;
}

/* No JS */
.no-js .ip-header {
	position: relative;
	min-height: 0px;
}

.no-js .ip-header .ip-logo {
	margin-top: 20px;
	height: 180px;
	opacity: 0;
	-webkit-transform: none;
	transform: none;
}

.no-js .ip-header .ip-logo svg path {
	fill: #fff;
}



/********/
/*SEARCH*/
/********/
/* Layout for search container */
.search {

	display: -webkit-flex;
	display: flex;

	-webkit-flex-direction: column;
	flex-direction: column;

	-webkit-align-items: center;
	align-items: center;

	-ms-flex-pack: center;
	justify-content: center;
	
	text-align: center;
	background: rgba(56, 70, 46, 0.97);

}

.js .search {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.search::before,
.search::after {
	content: '';
	position: absolute;
	width: calc(100% + 15px);
	height: calc(100% + 15px);
	pointer-events: none;
	border: 1.5em solid #efa521;
}

.search::before {
	top: 0;
	left: 0;
	border-right-width: 0;
	border-bottom-width: 0;
}

.search::after {
	right: 0;
	bottom: 0;
	border-top-width: 0;
	border-left-width: 0;
}

.btn--search-close {
	font-size: 2em;
	position: absolute;
	top: 1.25em;
	right: 1.25em;
	display: none;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
	text-decoration: none;
	color: rgba(201, 173, 35, 0.75);
	outline: none;
}

.btn--search-close:hover {
	color: #efa521;
}

.js .btn--search-close {
	display: block;
}

.search__form {
	margin: 5em 0;
}

/* Reset Search Input */
.search__input {
	border: 0;
	background: transparent;
	border-radius: 0;
	-webkit-appearance: none;
	font-family: inherit;
	font-size: 6vw;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 75%;
	padding: 0.05em 0;
	color: #e89335;
	border-bottom: 2px solid;
}

.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	opacity: 0.5;
	color: #e89335;
}

.search__input::-moz-placeholder {
	opacity: 0.5;
	/* Mozilla Firefox 19+ */
	color: #e89335;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	opacity: 0.5;
	color: #e89335;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
	-moz-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__input:focus {
	outline: none;
}

.search__info {
	font-size: 90%;
	font-weight: bold;
	display: block;
	width: 75%;
	margin: 0 auto;
	padding: 0.85em 0;
	text-align: right;
	color: #e89335;
}

.search__related {
	display: flex;
	width: 75%;
	pointer-events: none;
}

.search__suggestion {
	width: 33.33%;
	text-align: left;
	color: #a0a2ae;
}

.search__suggestion:nth-child(2) {
	margin: 0 3em;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
}

/**************************/
/* Transitions For Search */
/**************************/

.js .search {
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}

.js .search--open {
	pointer-events: auto;
	opacity: 1;
}

/* Border */
.search::before,
.search::after {
	transition: transform 0.5s;
}

.search::before {
	-webkit-transform: translate3d(-15px, -15px, 0);
	transform: translate3d(-15px, -15px, 0);
}

.search::after {
	-webkit-transform: translate3d(15px, 15px, 0);
	transform: translate3d(15px, 15px, 0);
}

.search--open::before,
.search--open::after {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* Close button */
.btn--search-close {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.btn--search-close.focus,
.btn--search-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(232,147,53,.25);
}

.search--open .btn--search-close {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

/* Search form with input and description */
.js .search__form {
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}

.js .search--open .search__form {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.search__suggestion {
	opacity: 0;
	transform: translate3d(0, -30px, 0);
	transition: opacity 0.5s, transform 0.5s;
}

.search--open .search__suggestion {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.search--open .search__suggestion:nth-child(2) {
	transition-delay: 0.1s;
}

.search--open .search__suggestion:nth-child(3) {
	transition-delay: 0.2s;
}

@media screen and (max-width:40em) {
	.search__form {
		margin: 5em 0 1em;
	}
	.btn--search-close {
		font-size: 1.25em;
		top: 1.5em;
		right: 1.5em;
	}
	.search__info {
		text-align: left;
	}
	.search__suggestion {
		font-size: 80%;
		width: 100%;
	}
	.search__suggestion:nth-child(2),
	.search__suggestion:nth-child(3) {
		display: none;
	}
}

/* Icons */
.btn--search-close .icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.hidden-svg {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
}

.slide-from-top {
	transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

	-webkit-transform: translate3d(0,-100%,0);
      -ms-transform: translate3d(0,-100%,0);
	    transform: translate3d(0,-100%,0);

	-webkit-backface-visibility: hidden;
	    	backface-visibility: hidden;

	-webkit-perspective: 1000;
	    -ms-perspective: 1000;
	        perspective: 1000;
}

.layout-switch .slide-from-top {
  -webkit-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
}

/*TOP NAvigation*/
.c-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/*width: 100%;*/
	-webkit-backface-visibility: hidden;
	    	backface-visibility: hidden;
	z-index: 900;
	padding-left: 0;
	margin-left: 0;
	background-color: rgba(255,255,255, .76);
}

.layout-switch .c-header {
	transition-delay: .2s;
}

.main-navbar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 902;
	background-color: rgba(255,255,255, 0);
	padding-left: 0;
	padding-right: 0;
}

.is-loading .main-navbar {
	transition-delay: .2s;
}

.layout-switch .main-navbar {
	transition-delay: .4s;
}

.c-header,
.main-navbar {
	height: 100px;
}

.languages-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding-left: 0;
	margin-top: 4px;
	list-style: none;
}

.languages-nav__item {
	margin: 0 !important;
}
.languages-nav__link {
	position: relative;
	display: block;
	color: #2d3c23;
	padding: 0 5px !important;
}

.languages-nav__item.active > .languages-nav__link {
	font-weight: bold;
}

.languages-nav__link,
.languages-nav__link:hover,
.languages-nav__link:focus {
	text-decoration: none;
	color: #2d3c23;
	-webkit-transition: color .3s; /* For Safari 3.0 to 6.0 */
	transition: color .3s; /* For modern browsers */
}

.has-nav-open .languages-nav__link  {
  color: #fff;
  transition-delay: .2s;
}

.aft-nav {
  flex-direction: row;
}

.nav-item {
	margin-right: 40px
}

.nav-item:last-child {
	margin-right: 0;
}

@media (max-width: 767px) {
	.nav-item {
		margin-right: 20px
	}
}

.nav-link {
	color: #2c3a24;
}

.btn-search {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 32px;
	height: 32px;
	margin-top: 2px;
}

.btn-search__svg {
	width: 32px;
	height: 32px;
}

.btn-search__svg path {
	fill: #2d3c23;
	-webkit-transition: fill .3s; /* For Safari 3.0 to 6.0 */
	transition: fill .3s; /* For modern browsers */
}

.has-nav-open .btn-search__svg path  {
	fill: #fff;
	transition-delay: .2s;
}


/* FULLSCREEN MENU */
.o-scroll {
    height: 100%;
}

.c-nav-button {
	display: inline-block;
	margin-top: 2px;
	padding: 0;
	outline: 0;
	border: 0;
	background: none;
	color: inherit;
	vertical-align: middle;
	z-index: 902;
	text-align: center;
	text-decoration: none;
    text-transform: none;
    line-height: normal;
	-webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.c-nav-button:focus {
    outline: 0;
}

.c-nav-button_wrap {
  display: inline-block;
}


.c-nav-button_icon {
  display: inline-block;
  margin-top: 0.25rem;
  width: 40px;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-nav-open .c-nav-button_icon {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
 		  transition-delay: 0.2s;
}

.c-nav-button_line {
  position: relative;
  display: block;
  height: 1px;
  margin-bottom: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: opacity 0.15s 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.15s 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.15s 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.c-nav-button_line::before,
.c-nav-button_line::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 4em;
	background-color: #2c3a24;
	transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
	-webkit-transition: background-color .3s; /* For Safari 3.0 to 6.0 */
	transition: background-color .3s; /* For modern browsers */
}

.c-nav-button_line::after {
	opacity: 0;
}

.c-nav-button_line:nth-child(1)::before {
	transition-delay: 0.2s;
}

.has-nav-open .c-nav-button_line:nth-child(1) {
	transition-delay: 0s, 0.2s;
}

.has-nav-open .c-nav-button_line::before,
.has-nav-open .c-nav-button_line::after { 
	background-color: #fff;
	transition-delay: 0.2s;
}

@media (max-width: 699px) {
  .has-nav-open .c-nav-button_line:nth-child(1) {
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@media (min-width: 700px) {
  .has-nav-open .c-nav-button_line:nth-child(1) {
    -webkit-transform: translateY(0.625rem);
        -ms-transform: translateY(0.625rem);
            transform: translateY(0.625rem);
  }
}

.c-nav-button_line:nth-child(2) {
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.c-nav-button_line:nth-child(2)::before {
  transition-delay: 0.1s;
}

.has-nav-open .c-nav-button_line:nth-child(2) {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  transition-delay: 0.15s;
}

.c-nav-button_line:nth-child(3) {
  position: relative;
  margin-bottom: 0;
}

.c-nav-button_line:nth-child(3)::before {
  transition-delay: 0.0s;
}

.has-nav-open .c-nav-button_line:nth-child(3) {
  -webkit-transform: translateY(-0.59375rem);
      -ms-transform: translateY(-0.59375rem);
          transform: translateY(-0.59375rem);
  opacity: 0;
  transition-delay: 0s, 0.15s;
}

.c-nav-button_line:nth-child(3)::after {
	top: 0.59375rem;
}

/* Navigation Overlay */
.c-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 901;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s 0.85s;
}

.has-nav-open .c-nav {
  visibility: visible;
  transition-delay: 0s;
}

body.is-loading[data-route-option="via-nav"] .c-nav {
	visibility: visible;
}

/*background transition*/
.c-nav_background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-nav_background::before,
.c-nav_background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-nav_background::before {
  background-color: #efa521; /*was #000*/
  transition-delay: 0.25s;
  z-index: 1;
}

.c-nav_background::after {
  background-color: rgba(45, 60, 35, .95);
  transition-delay: 0.10s;
  z-index: 3;
}

@media (max-width: 575px) {
	.c-nav_background::after {
		bottom: 70px;
	}
}

.has-nav-open .c-nav_background::before, 
.has-nav-open .c-nav_background::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.has-nav-open .c-nav_background::before {
  transition-delay: 0s;
}

.has-nav-open .c-nav_background::after {
  transition-delay: 0.15s;
}

/*Navigation container*/
.c-nav_list-wrap {
	position: relative;
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
	padding-top: 130px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	z-index: 4;
}

@media (max-width: 575px) {
	.c-nav_list-wrap {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 70px;
		left: 0;
		height: auto;
		font-size: 26px;
	}
}

@media (min-width: 576px) and (max-width: 1199px) {
  .c-nav_list-wrap {
    height: 100%;
  }
}


@media (max-width: 1199px) {
  .c-nav_list-wrap {
    visibility: hidden;
    transition: visibility 0s 0.6s;
  }
  .has-nav-open .c-nav_list-wrap {
    transition-delay: 0s;
    visibility: visible;
  }
}

.c-nav_list {
  position: relative;
  list-style: none;
  line-height: 1;
  z-index: 4;
  font-size: 2.75rem;

  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding-right: 15px;
  padding-left: 15px;

	/*  
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;*/
}

@media (max-width: 767px) {
  .c-nav_list {
    font-size: 1.6rem;
  }
}

@media (max-width: 575px) {
  .c-nav_list {
    font-size: 1.4rem;
  }
}

/*List item element on menu*/
.c-nav_item {
	position: relative;
	margin-bottom: 15px;

	-webkit-transform: translateX(-100%) translateX(-7.5rem);
	    -ms-transform: translateX(-100%) translateX(-7.5rem);
	        transform: translateX(-100%) translateX(-7.5rem);

	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.c-nav_item:last-child {
    margin-bottom: 0;
}

.c-nav_item:nth-child(1) {
  transition-delay: 0.2s;
}

.c-nav_item:nth-child(2) {
  transition-delay: 0.1s;
}

.c-nav_item:nth-child(3) {
  transition-delay: 0.0666666667s;
}

.c-nav_item:nth-child(4) {
  transition-delay: 0.05s;
}

.c-nav_item:nth-child(5) {
  transition-delay: 0.04s;
}

.c-nav_item:nth-child(6) {
  transition-delay: 0.0333333333s;
}

.c-nav_item:nth-child(7) {
  transition-delay: 0.0285714286s;
}

.c-nav_item:nth-child(8) {
  transition-delay: 0.025s;
}

.c-nav_item:nth-child(9) {
  transition-delay: 0.0222222222s;
}

.c-nav_item:nth-child(10) {
  transition-delay: 0.02s;
}

.c-nav_item:nth-child(11) {
  transition-delay: 0.0181818182s;
}

.c-nav_item:nth-child(12) {
  transition-delay: 0.0166666667s;
}

.has-nav-open .c-nav_item {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.has-nav-open .c-nav_item:nth-child(1) {
  transition-delay: 0.19s;
}

.has-nav-open .c-nav_item:nth-child(2) {
  transition-delay: 0.23s;
}

.has-nav-open .c-nav_item:nth-child(3) {
  transition-delay: 0.27s;
}

.has-nav-open .c-nav_item:nth-child(4) {
  transition-delay: 0.31s;
}

.has-nav-open .c-nav_item:nth-child(5) {
  transition-delay: 0.35s;
}

.has-nav-open .c-nav_item:nth-child(6) {
  transition-delay: 0.39s;
}

.has-nav-open .c-nav_item:nth-child(7) {
  transition-delay: 0.43s;
}

.has-nav-open .c-nav_item:nth-child(8) {
  transition-delay: 0.47s;
}

.has-nav-open .c-nav_item:nth-child(9) {
  transition-delay: 0.51s;
}

.has-nav-open .c-nav_item:nth-child(10) {
  transition-delay: 0.55s;
}

.has-nav-open .c-nav_item:nth-child(11) {
  transition-delay: 0.59s;
}

.has-nav-open .c-nav_item:nth-child(12) {
  transition-delay: 0.63s;
}

.has-search-open .c-nav_item {
 -webkit-transform: translateX(-100%) translateX(-7.5rem);
      -ms-transform: translateX(-100%) translateX(-7.5rem);
          transform: translateX(-100%) translateX(-7.5rem);
  	opacity: 0;
}

@media (min-width: 1200px) {
  .c-nav_item.-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-nav_item.-dropdown::after {
    content: "";
    display: inline-block;
    height: 1px;
    background-color: #000000;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0 2.1875rem;
    -webkit-transform: translateX(-0.625rem) scaleX(0);
        -ms-transform: translateX(-0.625rem) scaleX(0);
            transform: translateX(-0.625rem) scaleX(0);
    -webkit-transform-origin: center left;
        -ms-transform-origin: center left;
            transform-origin: center left;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }
}

@media (min-width: 1200px) and (min-width: 700px) {
  .c-nav_item.-dropdown::after {
    min-width: 7.5rem;
  }
}

@media (min-width: 1200px) {
  .c-nav_item.-dropdown:hover {
    z-index: 2;
  }
  .c-nav_item.-dropdown:hover::after {
    -webkit-transform: translateX(0) scaleX(1);
        -ms-transform: translateX(0) scaleX(1);
            transform: translateX(0) scaleX(1);
    transition-delay: 0.1s;
  }
}

/*Item menu link*/
.c-nav_link {
  display: inline-block;
  text-transform: lowercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 699px) {
  .c-nav_link {
    padding: 10px 0;
  }
}

@media (max-width: 1199px) {
  .c-nav_item.has-dropdown .c-nav_link {
    color: #ffffff !important;
  }
}

@media (min-width: 700px) {
  .c-nav_link {
    padding: 0.5rem 0;
  }
}

/*Make last item black*/
/*.c-nav_item:last-child .c-nav_link {
  color: #000000;
}*/

/*on hover of the list make all list item black*/
/*@media (min-width: 1200px) {
  .c-nav_list:hover .c-nav_link {
    color: #000000;
  }
} */

@media (max-width: 1199px) {
  .c-nav_list.has-dropdown .c-nav_link {
    color: #000000;
  }
}

.c-nav_item.-dropdown:hover .c-nav_link, 
.c-nav_item.active .c-nav_link,
.c-nav_link:hover {
  color: #efa521 !important;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .c-nav_item.-dropdown:hover .c-nav_link, .c-nav_link:hover {
    -webkit-transform: translateX(0.625rem);
        -ms-transform: translateX(0.625rem);
            transform: translateX(0.625rem);
  }
}
/*sub level menu items*/

.c-nav_dropdown {
  visibility: hidden;
  line-height: 1;
  transition: visibility 0s 0.6s;
}

@media (max-width: 1199px) {
  .c-nav_dropdown {
    display: none;
    visibility: visible;
    font-size: 16px;
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .c-nav_dropdown {
    position: absolute;
    top: 50%;
    left: 100%;
    font-size: 0.875rem;
    padding-left: 21.875rem;
    margin-left: -21.875rem;
  }
}

.c-nav_item:hover .c-nav_dropdown {
  visibility: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  transition-delay: 0s;
}

@media (max-width: 699px) {
  .c-nav_dropdown_wrap {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .c-nav_item.has-dropdown .c-nav_dropdown_wrap {
    opacity: 1;
  }
}

.c-nav_dropdown_list {
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .c-nav_dropdown_list {
    padding-top: 5px;
    padding-left: 20px;
    padding-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .c-nav_dropdown_list {
    margin-top: -0.9375rem;
  }
}

.c-nav_dropdown_item {
  display: block;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1200px) {
  .c-nav_dropdown_item {
    opacity: 0;
    -webkit-transform: translateX(-30%);
        -ms-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}

.c-nav_dropdown_item:nth-child(1) {
  transition-delay: 0.2s;
}

.c-nav_dropdown_item:nth-child(2) {
  transition-delay: 0.1s;
}

.c-nav_dropdown_item:nth-child(3) {
  transition-delay: 0.0666666667s;
}

.c-nav_dropdown_item:nth-child(4) {
  transition-delay: 0.05s;
}

.c-nav_dropdown_item:nth-child(5) {
  transition-delay: 0.04s;
}

.c-nav_dropdown_item:nth-child(6) {
  transition-delay: 0.0333333333s;
}

.c-nav_dropdown_item:nth-child(7) {
  transition-delay: 0.0285714286s;
}

.c-nav_dropdown_item:nth-child(8) {
  transition-delay: 0.025s;
}

.c-nav_dropdown_item:nth-child(9) {
  transition-delay: 0.0222222222s;
}

.c-nav_dropdown_item:nth-child(10) {
  transition-delay: 0.02s;
}

.c-nav_dropdown_item:nth-child(11) {
  transition-delay: 0.0181818182s;
}

.c-nav_dropdown_item:nth-child(12) {
  transition-delay: 0.0166666667s;
}

.c-nav_dropdown_item:nth-child(13) {
  transition-delay: 0.0153846154s;
}

.c-nav_dropdown_item:nth-child(14) {
  transition-delay: 0.0142857143s;
}

.c-nav_dropdown_item:nth-child(15) {
  transition-delay: 0.0133333333s;
}

.c-nav_dropdown_item:nth-child(16) {
  transition-delay: 0.0125s;
}

.c-nav_dropdown_item:nth-child(17) {
  transition-delay: 0.0117647059s;
}

.c-nav_dropdown_item:nth-child(18) {
  transition-delay: 0.0111111111s;
}

.c-nav_dropdown_item:nth-child(19) {
  transition-delay: 0.0105263158s;
}

.c-nav_dropdown_item:nth-child(20) {
  transition-delay: 0.01s;
}

.c-nav_item:hover .c-nav_dropdown_item {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(1) {
  transition-delay: 0.34s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(2) {
  transition-delay: 0.38s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(3) {
  transition-delay: 0.42s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(4) {
  transition-delay: 0.46s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(5) {
  transition-delay: 0.5s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(6) {
  transition-delay: 0.54s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(7) {
  transition-delay: 0.58s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(8) {
  transition-delay: 0.62s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(9) {
  transition-delay: 0.66s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(10) {
  transition-delay: 0.7s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(11) {
  transition-delay: 0.74s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(12) {
  transition-delay: 0.78s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(13) {
  transition-delay: 0.82s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(14) {
  transition-delay: 0.86s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(15) {
  transition-delay: 0.9s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(16) {
  transition-delay: 0.94s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(17) {
  transition-delay: 0.98s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(18) {
  transition-delay: 1.02s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(19) {
  transition-delay: 1.06s;
}

.c-nav_item:hover .c-nav_dropdown_item:nth-child(20) {
  transition-delay: 1.1s;
}

.c-nav_dropdown_link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 0.625rem 0;
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1200px) {
  .c-nav_dropdown_link {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

.c-nav_dropdown_link:hover {
	color: #ffffff;
    text-decoration: none;
}

@media (min-width: 700px) {
  .c-nav_dropdown_link:hover {
    -webkit-transform: translateX(0.3125rem);
        -ms-transform: translateX(0.3125rem);
            transform: translateX(0.3125rem);
  }
}

/*offcanvas menu lang bottom*/
.c-nav_aside {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
	padding: 10px 30px;
	height: 70px;
	display: none;
}

@media (max-width: 575px) {
  .c-nav_aside {
    display: block;
  }
}

.c-nav_lang {
  display: inline-block;
}

.c-nav_lang_link {
  font-family: "Lato", sans-serif;
  display: inline-block;
  color: #ffffff;
  margin-right: 10px;
  font-size: 20px;
  line-height: 50px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transition-delay: 0.1s;
}

.c-nav_lang_link.active {
	font-weight: bold;
	color: #2d3c23;
}

@media (max-width: 699px) {
  .c-nav_lang_link {
    -webkit-transform: translateX(-60px);
        -ms-transform: translateX(-60px);
            transform: translateX(-60px);
  }
}

.c-nav_lang_link:hover {
  color: #2d3c23;
  text-decoration: none;
}

.has-nav-open .c-nav_lang_link {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  transition-delay: 0.45s;
  opacity: 1;
}


.c-nav_social {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: -0.875rem;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transition-delay: 0.15s;
}

@media (max-width: 699px) {
  .c-nav_social {
    right: 30px;
    bottom: 15px;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .c-nav_social {
    right: 7.5rem;
    bottom: 3.75rem;
  }
}

@media (min-width: 700px) and (max-width: 749px) {
  .c-nav_social {
    bottom: 1.875rem;
  }
}

@media (max-width: 999px) {
  .c-nav_social {
    position: absolute;
  }
}

.has-nav-open .c-nav_social {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  transition-delay: 0.4s;
  opacity: 1;
}

@media (max-width: 999px) {
  .c-nav_social_item {
    display: inline-block;
  }
}

.c-nav_social_link {
  display: inline-block;
  line-height: 1;
}

@media (max-width: 699px) {
  .c-nav_social_link {
    padding: 10px;
  }
}

@media (min-width: 700px) {
  .c-nav_social_link {
    padding: 0.875rem;
  }
}

@media (max-width: 499px) {
  .c-nav_social_link {
    padding: 10px 5px;
  }
}

.c-nav_social_icon {
  fill: #ffffff;
}

@media (max-width: 699px) {
  .c-nav_social_icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .c-nav_social_icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

@media (min-width: 1000px) {
  .c-nav_social_icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .c-nav_social_icon {
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .c-nav_social_link:hover .c-nav_social_icon {
    -webkit-transform: translateX(7px);
        -ms-transform: translateX(7px);
            transform: translateX(7px);
  }
}

/*Page contents*/
.wrapper {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	overflow: hidden;
}

.wrapper--extraspace {
	padding-top: 100px;
	padding-bottom: 100px;
}

.c-title {
	font-family: "Lato", sans-serif;
	font-size: 40px;
	line-height: 62px;
	font-weight: 900;
	text-transform: lowercase;
	color: #E89335;
	margin-top: .5rem;
}

.c-tittle--white {
	color: #fff;
}

.c-tittle--cap {
	text-transform: capitalize;
}

@media (max-width: 767px) {
	.c-title {
		font-size: 34px;
		line-height: 56px;
	}
}

.c-desription {
	font-family: "Lato", sans-serif;
	font-size: 20px;
	line-height: 26px;
	font-weight: 300;
	color: #777;
}

.title-border-top {
	position: relative;
	padding-top: 30px;
}

.title-border-top::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background-color: #E89335;
}

/*Btn link*/
.btn-link {
	position: relative;
	display: inline-block;
	text-transform: lowercase;
	padding-top: 13px;
	padding-left: 30px;
	padding-bottom: 13px;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 32px;
	font-family: "Lato", sans-serif;
	color: #E89335;
	text-align: right;
	min-width: 235px;
	-webkit-transition: color .3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-link::before,
.btn-link::after {
	position: absolute;
	pointer-events: none;
}

.btn-link::before {
	content: '+';
	top: 13px;
	left: 0;
}

.btn-link::after {
	content: '';
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom-width: 2px;
	border-bottom-color: #fff;
	border-bottom-style: solid;
	-webkit-transition: border-bottom-color .3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: border-bottom-color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-link:hover,
.btn-link:focus {
	text-decoration: none;
	color: #fff;
}

.btn-link--dark {
	color: #2D3C23;
}
.btn-link--dark::after {
	border-bottom-color: #2D3C23;
}
.btn-link--dark:hover,
.btn-link--dark:focus {
	color: #e89335;
}
.btn-link--dark:hover::after {
	border-bottom-color: #e89335;
}

.btn-link--white {
	color: #fff;
}
.btn-link--white::after {
	border-bottom-color: #fff;
}
.btn-link--white:hover,
.btn-link--white:focus {
	color: #2D3C23;
}
.btn-link--white:hover::after {
	border-bottom-color: #2D3C23;
}

@media (max-width: 767px) {
	.btn-link {
		font-size: 22px;
	}
}

/* Hero Header */
.hero-section {
	position: relative;
	width: 100%;
	padding: 15px;
	min-height: 320px;
	overflow: hidden;
	background-color: #246e3f;
}

.hero-section--image {
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-origin: padding-box;
	background-clip: border-box;
	background-color: transparent;
}

.hero-section--overlay-gradient::before,
.hero-section--overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-section--overlay-gradient::before {
	background-image: linear-gradient(to right, rgba(43,39,36, .8), rgba(43,39,36, .46));
}

.hero-section--overlay::before {
	background-color: rgba(43,39,36, .67);
}

.hero-section__figure {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 0;
	margin: 0 auto;
}

.hero-section__title {
	font-size: 32px;
	line-height: 38px;
	font-family: "Lato", sans-serif;
	font-weight: 900;
	text-transform: lowercase;
	color: #E89335;
	z-index: 2;
	text-align: center;
}

.hero-section__title--white {
	color: #fff;
}

.hero-section__title--left {
	font-weight: 300;
	text-align: left;
}

.hero-section__title--left b,
.hero-section__title--left strong {
	font-weight: 900;
}


@media (min-width: 768px) {
	.hero-section {
		min-height: 400px;
	}

	.hero-section__title {
	    font-size: 40px;
	    line-height: 52px;
	}
}

/* End hero header */

/*tabs*/
.nav-tabs {
	padding-left: 0;
	padding-right: 0;
	border-bottom: 0px solid transparent;
	-ms-flex-direction: column;
	flex-direction: column;
}

.nav-tabs .nav-link  {
	font-size: 26px;
	line-height: 38px;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	color: #303030;
	border: 0;
    border-bottom: 5px solid #E5E5E5;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
	margin-right: 0;
	padding: 1.5rem 1rem;

	-webkit-transition: color .3s cubic-bezier(0.4, 0, 0.2, 1),  border-bottom-color .3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: color .3s cubic-bezier(0.4, 0, 0.2, 1),  border-bottom-color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-tabs .nav-item {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
	color: #E89335;
    border-bottom-color: #E89335;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    color: #E89335;
    font-weight: 600;
    border-bottom-color: #E89335;
}


@media (min-width: 992px) {
	.nav-tabs  {
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.nav-tabs .nav-link  {
		font-size: 22px;
	}
}

@media (min-width: 1200px) {
	.nav-tabs .nav-link  {
		font-size: 32px;
		padding: 1.5rem 1rem;
	}
}

/*single publication*/
.single-publication-image-wrapper {
	display: block;
	float: none;
	padding-bottom: 35px;
}

@media (min-width: 992px) {
	.single-publication-image-wrapper  {
		float: left;
		padding-right: 70px;
	}
}


/*Placeholders - works with transparent backgrounds*/
.with-placeholder {
	position: relative;
}
.with-placeholder::before {
	content: attr(data-placeholder);
	position: absolute;
	top: 0; /*was 50*/
	left: 15px;
	width: 100%;
	height: 100%;
	font-family: 'Superclarendon', sans-serif;
	font-size: 8vw;
	color: #0F0F0F;
	opacity: 0.03;
	font-weight: bold;
	z-index: 0;
	text-transform: lowercase;
	line-height: 1;

	display: -ms-flexbox;
	display: flex;

	-ms-flex-align: start;
	align-items: flex-start;

	-ms-flex-align: end ;
	align-items: flex-end;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.with-placeholder--vertical::before {
	word-spacing: 99999px;
	padding-left:.147em;
	text-indent:-.147em;
}

.with-placeholder--homepage::before {
	font-size: 12vw;

	padding-left:1em;
	text-indent:-1em;

	text-align: justify;
	-moz-text-align-last: center;
	text-align-last: center;
}

.with-placeholder--vertical-center::before {
	-ms-flex-align: center;
	align-items: center;
}


/*Homepage Mai Slider*/
.slider-wrapper {
	position: relative;
	margin: 0;
	padding: 0;
}

.fotorama {
	overflow: hidden;
	position: relative;
}

.scroll-d-btn{
	font-family: "Lato";
	font-size: 27px;
	line-height: 32px;
	color: #fff;
	position: absolute;
	right: 30px;
	bottom: 150px;
}
.scroll-d-btn::before{
	content: "";
    position: absolute;
    bottom: 6px;
    left: -45px;
    width: 30px;
    height: 3px;
    background-color: #fff;
}
.scroll-d-btn:hover{
	color: #E89335;
	text-decoration: none;
}

.scroll-d-btn:hover::before {
	background-color: #E89335;
}
@media (max-width: 768px) {
	.scroll-d-btn{
		display: none;
	}
}

/* Main Slaider Fotorama */
.fotorama__html:after{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,.1);
	content: "";
}

.slide {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
    bottom: 60px;
    padding-right: 150px;
    z-index: 1;
}
.slide__title{
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-size: 48px;
	line-height: 60px;
	color: #fff;
	text-align: left;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	margin-bottom: 30px;
}
.slide__num {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-size: 26px;
	line-height: 32px;
	color: #fff;
}
.slide__num b {
	font-weight: 900;
}


@media (max-width: 1280px) {
	.slide__title {
	    font-size: 42px;
	    line-height: 52px;
	}
}
@media (max-width: 992px) {
	.slide {
	    padding-right: 30px;
	}

	.slide__title {
		margin-bottom: 20px;
	    font-size: 32px;
	    line-height: 42px;
	}
	.slide__num {
	    font-size: 20px;
	    line-height: 26px;
	}
}
@media (max-width: 575px) {
	.slide {
	    bottom: 30px;
	}

	.slide__title {
	    font-size: 22px;
	    line-height: 28px;
	}
}

/*Company*/
.company-wrapper {
	position: relative;
	/*overflow: hidden;*/
}

.company-wrapper::before {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-origin: border-box;
	background-clip: border-box;
	background-image: url("../img/logo/aft_dark.png");
	background-size: auto;
	background-position: center right;
	display: block;
	top: 0;
	right: 0;
	-webkit-transform: translateX(250px);
		transform: translateX(250px);
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.08;
}

.company__text {
	font-family: "Prata";
	font-size: 24px;
	line-height: 44px;
	color: rgba(45,45,45,0.63);
	margin-top: 35px;
	margin-bottom: 35px;
}

.company__text span {
	color: rgba(45,45,45,1);
}

@media (max-width: 767px) {
	.company__text {
		font-size: 20px;
		line-height: 1.47;
		margin-top: 0;
		margin-bottom: 45px;
	}

	.company-wrapper::before {
		-webkit-transform: translateX(0);
			transform: translateX(0);
	}
}

/*PRODUCTS*/
.products-wrapper {
	background-color: #E89335;
	overflow: hidden;
}
.products-wrapper::before {
	content: attr(data-title);
	position: absolute;
	top: 0; /*was 50*/
	left: 0;
	width: 100%;
	height: 100%;
	font-family: 'Superclarendon', sans-serif;
	font-size: 16vw;
	color: #0F0F0F;
	opacity: 0.03;
	font-weight: bold;
	z-index: 0;
	text-transform: lowercase;

	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
    align-items: center;
}

.product {
	margin-top: 30px;
	margin-bottom: 5px;
}

.product__title {
	font-family: "Lato";
	font-size: 36px;
	line-height: 46px;
	color: #fff;
	font-weight: 900;
	text-transform: lowercase;
	margin-bottom: 1.6rem;
}

.product__list {
	min-height: 93px;
}

.product__item {
	font-family: "Lato";
	font-size: 22px;
	line-height: 32px;
	color: #fff;
	font-weight: 400;
}

@media (max-width: 767px) {
	.product__title {
	    font-size: 32px;
	    line-height: 38px;
	    margin-bottom: 1rem;
	}
	.product__item {
		font-size: 20px;
	}
}

/*SERVICES*/
.services-wrapper {}

.service {
	position: relative;
	margin-top: 40px;
	margin-bottom: 40px;
}
.service--arrow::after {
	content: "";
	position: absolute;
	top: 100px;
	right: 0;
	width: 19px;
	height: 33px;
	background: url("../img/icons/svg/arrow-right.svg") top left/19px 100% no-repeat scroll padding-box border-box transparent;
	margin-top: -16px;
}

.service__image {
	width: 115px;
	height: 115px;
	object-fit: contain;
	margin-bottom: 15px;
	display: inline-block;
}

.service__title {
	font-size: 36px;
	line-height: 40px;
	font-family: "Lato";
	font-weight: 900;
	color: #303030;
	text-transform: lowercase;
	-webkit-transition: color .3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service__link {
	z-index: 5;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;	
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service--sm {
	width: 70px;
	height: 70px;
}

.service:hover .service__title {
	color: #E89335;
}

@media (min-width: 576px) {
	.service {
		max-width: 320px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.service__title {
		font-size: 30px;
		line-height: 32px;
	}
}

@media (max-width: 575px) {
	.service-col {
		text-align: center;
	}

	.service {
		display: inline-block;
		max-width: 320px;
	}

	.service--arrow::after {
		top: unset;
	    bottom: -55px;
	    right: 50%;
	    margin-right: -9px;
	    margin-top: -16px;
	    -webkit-transform: rotate(90deg);
	    -moz-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	}
}


/*QUOTE SECTION*/
.quote {
	background: url("../img/olive.jpg") center center/cover no-repeat scroll padding-box border-box #374328;
	overflow: hidden;
}

.quote-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 66.666666%;
	height: 100%;
	background-color: rgba(36, 110, 63, 0.95);
}

.blockquote {
	position: relative;
	z-index: 3;
	padding-top: 35px;
	padding-right: 10px;
	padding-bottom: 35px;
	margin-bottom: 30px;
}

.blockquote__text {
	position: relative;
	color: #D6C4B4;
	font-size: 24px;
	line-height: 44px;
	font-family: "Prata";
	margin-bottom: 15px;
}

.blockquote__author {
	font-family: 'Lato';
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	font-style: normal;
	color: #D6C4B4;
}

@media (max-width: 767px) {
	.quote-overlay {
		width: 100%;
	}

	.blockquote {
		padding-top: 0;
		padding-right: 0;
		padding-bottom: 0;
	}


	.blockquote__text {
		font-size: 20px;
		line-height: 1.47;
	}

	.blockquote__author {
		font-size: 16px;
		line-height: 18px;
	}
}

/*NEWS SECTION*/
.news-and-event {
	position: relative;
	padding-top: 55px;
}

.owl-nav {
	position: absolute;
	top: 5px;
	right: 0;
	width: 120px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.owl-prev,
.owl-next {
	position: relative;
	display: block;
	width: 18px;
	height: 45px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-origin: border-box;
	background-size: 17px 44px;
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-clip: border-box;
	direction: ltr;
	text-indent:-9999px;
}

.owl-nav .owl-prev {
	background-image: url("../img/icons/svg/left.svg");
}

.owl-nav .owl-next {
	background-image: url("../img/icons/svg/right.svg");
}

.news {
	position: relative;
	overflow: hidden;
	padding: 0;
	margin-bottom: 0;
	background: #26453f;
	cursor: pointer;

	-webkit-transition: background-color .3s cubic-bezier(0.4, 0, 0.2, 1); /* For Safari 3.0 to 6.0 */
	transition: background-color .3s cubic-bezier(0.4, 0, 0.2, 1); /* For modern browsers */
}

.news figcaption {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 20px 15px;
}

.news figcaption::before,
.news figcaption::after {
	pointer-events: none;
}

.news__image {
	position: relative;
	display: block;
	width: 100%;
	height: 290px;
	object-fit: cover;
	object-position: center center;
}

.news__title {
	position: relative;
	font-size: 22px;
	line-height: 26px;
	font-family: Lato;
	font-weight: 700;
	color: #fff;
	display: block;
	margin: 0 0 10px;
	height: 54px;
	overflow: hidden;
	text-overflow: -o-ellipsis-lastline;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
}

.news__description {
	position: relative;
	font-size: 16px;
	line-height: 20px;
	font-family: Prata;
	color: #fff;
	display: block;
	margin: 0 0 10px;
	height: 40px;
	overflow: hidden;
	text-overflow: -o-ellipsis-lastline;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
}

.news__date {
	font-size: 14px;
	line-height: 29px;
	color: #E89335;
}

.news__link {
	z-index: 5;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;	
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news--mb {
	margin-bottom: 60px;
}

.news {
	-webkit-transition: background-color .3s cubic-bezier(0.4, 0, 0.2, 1);
			transition: background-color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news__title,
.news__description,
.news__date {
	transition: color .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news__description:hover {
	text-decoration: none;
}

.news:hover {
	background-color: #c3af18;
}

.news:hover .news__title,
.news:hover .news__description,
.news:hover .news__date {
	color: #fff;
}

/*FOOTER*/
.dark-bg {
	background-color: rgba(45,60,35, .95);
}

.dark-bg::before {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-origin: border-box;
	background-clip: border-box;
	background-position: center right;
	background-image: url("../img/logo/aft_logo_black.png");
	background-size: auto;
	display: block;
	top: 0;
	right: 0;
	-webkit-transform: translateX(150px);
		transform: translateX(150px);
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.08;
}


.mr-bottom-footer {
	margin-bottom: 35px;
}

.footer-element {}

.footer-element__title,
.footer-element__list-item,
.footer-element__list-link {
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	font-family: "Lato";
	text-transform: lowercase;
}

.footer-element__title {
	font-weight: 700;
	margin-bottom: 35px;
}

.footer-element__list-item,
.footer-element__list-link  {
	color: #6c757d;
	font-weight: 400;
	/*opacity: 0.95;*/
}

.footer-element__list-item {
	margin-bottom: 10px;
}

.footer-element__list-item:last-child {
	margin-bottom: 0;
}

.footer-element__list-link {
	-webkit-transition: color .3s cubic-bezier(0.4, 0, 0.2, 1); /* For Safari 3.0 to 6.0 */
	transition: color .3s cubic-bezier(0.4, 0, 0.2, 1); /* For modern browsers */
}

.footer-element__list-link:hover{
	text-decoration: none;
	color: #C9AD23;
}

.footer-logo {
	width: 120px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 30px;
}

.address__title,
.address__info {
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	font-family: "Lato";
}

.address__title {
	font-weight: 700;
	margin-bottom: 30px;
}

.address__info {
	color: #6c757d;
	font-weight: 400;
}

.newsletter-form__btn {
	font-family: "Lato";
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	color: #fff;
	border: none;
	background: none;
	text-decoration: none;
	border-bottom: 2px solid #fff;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: .375rem .75rem;

	-webkit-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form__btn:hover {
	color: #e89335;
	border-bottom-color: #e89335;
}

.newsletter-form__input {
	font-family: "Lato";
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	height: auto;
	color: #fff;
	background: none;
	border: none;
	border-bottom: 2px solid #fff;
	border-radius: 0;
	padding-left: 0;
}

.newsletter-form__input:focus {
	background: none;
    border-color: #C9AD23;
    box-shadow: none;
    color: #C9AD23;
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.dark-bg::before {
		-webkit-transform: translateX(0);
			transform: translateX(0);
	}

	.footer-element__title {
		margin-top: 35px;
		margin-bottom: 25px;
	}
	.address__title {
		margin-bottom: 15px;
	}

	.newsletter-form {
		margin-top: 15px;
	}
}

@media (min-width: 576px) {
	.newsletter-form .newsletter-form__input {
	    width: 420px;
	}
}

.newsletter-form__input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}

.newsletter-form__input::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}

.newsletter-form__input:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}

.newsletter-form__input::-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}

.newsletter-form__input::-moz-placeholder { /* Firefox 18- */
    color: #fff;
}


/*CONTACT FORM PAGE*/
.contact-form__input,
.contact-form__submit {
	font-family: "Lato", sans-serif;
	font-size: 26px;
	line-height: 31px;
	height: 85px;
	border-radius: .8em;
	font-weight: 300;
	padding: 1.5rem 1.47rem;
}

.contact-form__input {
	background-color: #F9F9F9;
	border: 0px solid #F9F9F9;
}

.contact-form__submit {
	background-color: #246E3F;
	border: 1px solid #246E3F;
	color: #fff;
	font-weight: 600;
	width: 100%;
	text-transform: uppercase;
}

.contact-form__input:focus {
    border-color: #D1BB2A;
    box-shadow: 0 0 0 0.2rem rgba(209,187,42,.25);
}

.contact-form__submit:hover {
	color: #fff;
    background-color: #D1BB2A;
    border-color: #D1BB2A;
}

.contact-form__submit.focus, 
.contact-form__submit:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(209,187,42,.25);
}

/*CV Uploader*/
.uploader-wrapper {
	position: relative;
	background-image: url("../img/assets/uploader.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-origin: padding-box;
	background-clip: border-box;
	padding-top: 125px;
	padding-bottom: 125px;
}

.uploader-wrapper::before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: rgba(36, 110, 63, .75);
}

.cv-upload {
	display: block;
	margin-top: 50px;
	margin-bottom: 50px;
}

.cv-upload__title {
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-size: 54px;
	line-height: 64px;
	color: #fff;
}

.cv-upload__form {
	-ms-flex-pack: center;
	justify-content: center;
}

.cv-upload__input {}

.cv-upload__form .custom-file {
	margin-right: 30px;
	cursor: pointer;

	overflow: hidden;
	text-overflow: ellipsis;
}

.cv-upload__form .custom-file-label {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 42px;
    color: #fff;
    padding: 0;
    padding-left: 30px;

    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    border-bottom-color: #fff;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    /*
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    */
}

.cv-upload__form .custom-file-label::after {
    display: none;
}

.file-upload-img {
	position: absolute;
	left: 4px;
	top: 12px;
	width: auto;
	height: 28px;
}

.cv-upload__form .cv-upload__btn {
	font-family: "Lato";
	font-size: 35px;
	line-height: 42px;
	font-weight: 900;
	color: #fff;

	border: none;
	border-radius: 0;
	border-bottom: 1px solid #fff;
	background: none;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	padding: .375rem 0;

	-webkit-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
		transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-upload__form .cv-upload__btn:hover {
	color: #e89335;
	border-bottom-color: #e89335;
}

.cv-upload__form .custom-file,
.cv-upload__form .custom-file-input,
.cv-upload__form .custom-file-label,
.cv-upload__form .cv-upload__btn {
    height: 50px;
    cursor: pointer;
}

@media (max-width: 767px) {
  .cv-upload__title {
  	font-size: 45px;
  	text-align: center;
  }
  .cv-upload__form .custom-file-label,
  .cv-upload__form .cv-upload__btn {
  	font-size: 28px;
  	line-height: 46px;
  }
}


@font-face {
    font-family: 'Superclarendon';
    src: url('../fonts/Superclarendon/SuperclarendonRg.eot');
    src: url('../fonts/Superclarendon/SuperclarendonRg.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Superclarendon/SuperclarendonRg.woff2') format('woff2'),
        url('../fonts/Superclarendon/SuperclarendonRg.woff') format('woff'),
        url('../fonts/Superclarendon/SuperclarendonRg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Biomas pages style */
/* Biomas Navigation */
.biomas-nav{
	background-color: #e89335;
}

.biomas-nav__item {
	margin-right: 0px;
}

.biomas-nav__link{
	display: block;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	padding: 20px;
	text-transform: lowercase;
	transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.biomas-nav__item.active > a {
	font-weight: 600;
}

.biomas-nav__item.dropdown .nav-link:after{
	content: none;
}

.biomas-nav__link:hover, 
.biomas-nav__item.dropdown.show > a{
	background-color: #fff;
	color: #e89335;
}

.biomas-nav__item.dropdown li a{
    color: #cc7f33;
}

.biomas-nav__item.dropdown li a:hover{
	background-color: #cc7f33;
	color: #fff;
}

.biomas-nav__item.dropdown .dropdown-menu {
	margin-top: 0px;
	border: 0px;
 	border-radius: 0; 
 	padding: 0px;
 	min-width: 300px;
}

@media (min-width: 992px) {
	.biomas-nav__link{
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.biomas-nav__link{
		font-size: 22px;
	}
}
/* End Navigation */


/* Breadcrumb */
.breadcrumb {
	background-color: transparent;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
}

.breadcrumb-item {
    color: #777;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    text-transform: lowercase;
}

.breadcrumb-item.active {
    color: #000;
}

.breadcrumb-link {
	color: #777;
}

.breadcrumb-link:hover {
	color: #e89335;
	text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: " ";
    width: 20px;
    height: 16px;
    background-image: url('../img/right-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
/* End Breadcrumb */

/*Donwload btn*/
.download-projects-btn {
	display: block;
	padding: 10px 0;
	color: #777;
	font-size: 27px;
	line-height: 32px;
	font-weight: 400;
	vertical-align: middle;
	margin-top: 15px;
	white-space: normal;
}

.download-projects-btn:hover {
	text-decoration: none;
	color: #e89335;
}

.download-img-link {
	display: inline-block;
	margin-right: 17px;
}

/*Helpers*/
.mb-40{
	margin-bottom: 40px;
}
.pt-50{
	padding-top: 50px;
}

.alignleft{
	float: left;
	margin-right: 60px;
}

.alignright {
	float: right;
	margin-left: 60px;
}

.alignleft,
.alignright {
	margin-bottom: 60px;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
	.alignleft{
		max-width: 50%;
	}
}

@media (min-width: 1200px) {
}


/*End Helpers*/

/* Inner page Content */
.select-group {
	position: relative;
	margin-right: 30px;
}

.emmission-form__input{
	background-clip: padding-box;
	font-family: "Lato";
	font-weight: 900;
	font-size: 24px;
	line-height: 32px;
	color: #e89335;
	border: 0;
	border-bottom: 4px solid #e89335;
	padding-top: 15px;
	padding-bottom: 15px;
	flex-grow: 1;
}

.emmission-form__input:focus {
	outline: none;
	box-shadow: none;
}

.emmission-form__input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #e89335;
}
.emmission-form__input::-moz-placeholder { /* Firefox 19+ */
  color: #e89335;
}
.emmission-form__input:-ms-input-placeholder { /* IE 10+ */
  color: #e89335;
}
.emmission-form__input:-moz-placeholder { /* Firefox 18- */
  color: #e89335;
}

.emmission-form__input--select {
	background-image: url("../img/assets/arrow_down.png");
	background-size: 34px 19px;
	background-position: calc(100% - 15px) center;
	background-repeat: no-repeat;
	padding-right: 60px;
	display: block;
	width: 100%;

	-webkit-appearance: none;
	   -moz-appearance: none;
		-ms-appearance: none;
	 	 -o-appearance: none;
			appearance: none;
}

.emmission-form__input--select::-ms-expand {
	display: none;
}

.emmision-save-desc {
	line-height: 34px;
}

.n-handler{
	background-color: rgba(119, 119, 119, .13);
	border-radius: 10px;
	color: #c9ad23;
	font-weight: 900;
	padding: 10px 15px;
	white-space: nowrap;
}


@media only screen and (max-width:767px){
	.select-group {
		margin-right: 0px;
		width: 100%;
	}

	.emmission-form__input{
		width: 100%;
		font-size:22px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.notice-wrapper{
	background-color: #e89335;
	padding: 50px 0;
	color: #fff;
}

.info__title,
.info__description  {
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
}

.info__title {
	font-weight: 900;
	margin-bottom: 5px;
}

.info__description {
	margin-bottom: 35px;
}

.info-block-content {  }

.info-block-content svg {
	width: 65px;
	height: 65px;
	display: block;
	margin: 20px auto;
}

.biomas-carousel .news__title{
	text-align: center;
	height: initial;
	font-size: 20px;
}

/*.biomas-carousel .owl-stage-outer{
	margin-left: 45px;
	margin-right: 45px;
}*/

.biomas-carousel .owl-nav {
    top: 50%;
    width: 100%;
    margin-top: -22px;
}

.biomas-carousel .owl-nav .owl-prev,
.biomas-carousel .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.biomas-carousel .owl-nav .owl-prev {
	left: 15px;
    background-image: url(../img/icons/svg/left-orange.svg);
}
.biomas-carousel .owl-nav .owl-next {
	right: 15px;
    background-image: url(../img/icons/svg/right-orange.svg);
}


/*Application*/
.application {
	border-radius: 0;
    border-color: #E89335;
    border-right: 1px solid transparent;
    border-left:  1px solid transparent;
    border-top:  1px solid transparent;

}

 .application__header {
	background-color: unset;
	border-bottom: 1px solid rgba(232,147,53,.25);
	margin-bottom: -1px; /* to place on top of eachother the borders*/
	padding-left: 0;
	padding-right: 0;
} 

.application__header:first-child {
    border-radius: 0; 
}

.application__title {
	color: #E89335;
	font-size: 22px;
	text-decoration: none;
	display: block;
	padding: 15px 0;
}

.application__title:hover {
    color: #f98505;
    text-decoration: none;
}

@media (min-width: 992px) {
	.application__title {
		font-size: 24px;
	}
}

/*Timeline*/
.timeline {
	position: relative;
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

.timeline:before {
	content: '';
	display: block;
	position: absolute;
	background: #338B61;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 6px;
	height: 100%;
	border-radius: 2em;
	/*
	left: 0;
	right: 0;
	margin: 0 auto;
	*/
}

.timeline:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #E89335;
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

.timeline__article {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.timeline__article:after {
  content: '';
  display: block;
  clear: both;
}

.timeline_inner {
	width: 42%;
	float: left;
}

.timeline__article:nth-child(2n+2) .timeline_inner {
	float: right;
}

.timeline__number {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;

  width: 100px;
  height: 100px;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50px;
  border-radius: 100%;
  font-family: "Lato", sans-serif;
  font-size: 60px;
  line-height: 72px;
  font-weight: 900;
  background: #E89335;
  color: #fff;
}

.timeline_inner p,
.timeline__description {
	margin-bottom: 1rem;
	font-size: 20px;
	line-height: 24px;
}

.timeline_inner ul {
	color: #777;
}

.timeline_inner p b,
.timeline_inner p strong,
.timeline_inner ul b,
.timeline_inner ul strong {
	font-weight: bold;
	color: #515151;
}

.timeline_inner img {
	margin-top: 20px;
}



.timeline_inner small {
	font-weight: 300;
	font-size: 18px;
	line-height: 21px;
	font-style: italic;
}

@media only screen and (max-width:767px){
	.timeline {
		width: 100%;
	}
	.timeline:before,
	.timeline:after {
		left: unset;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.timeline:before {
		right: 30px;
	}

	.timeline:after {
		right: 18px;
	}

	.timeline__article {
	    padding-right: 66px;
	}

	.timeline__number {
	  left: unset;
	  right: 4px;
	  width: 60px;
	  height: 60px;
	  font-size: 38px;
	  line-height: 60px;
	}

	.timeline_inner {
		width: 100%;
	}
}