/********************************/
/*  Created by Mariusz Galka    */
/*  Created by Damian Bonar     */
/*  Copyright by IguanaStudio   */
/********************************/

/*---[ reset ]-----------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, main,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*---[ owl carousel ]-----------------------------------------------------------------------*/
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
	z-index: 0;
}
.owl-carousel .owl-animated-out {
	z-index: 1;
}
.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}

100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}

100% {
opacity: 0;
}
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}
.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
	content: '.';
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel.owl-loaded {
	display: block;
}
.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}
.owl-carousel.owl-hidden {
	opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
	display: none;
}
.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}
.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}
.owl-carousel.owl-rtl {
	direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
	transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}
.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url('owl.video.play.png') no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-moz-transition: scale 100ms ease;
	-ms-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3, 1.3);
	-moz-transition: scale(1.3, 1.3);
	-ms-transition: scale(1.3, 1.3);
	-o-transition: scale(1.3, 1.3);
	transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}
.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
}
/*---[ Magnific Popup ]-----------------------------------------------------------------------*/
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}
.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
	display: none;
}
.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}
.mfp-ajax-cur {
	cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
	cursor: auto;
}
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.mfp-loading.mfp-figure {
	display: none;
}
.mfp-hide {
	display: none !important;
}
.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a {
	color: #CCC;
}
.mfp-preloader a:hover {
	color: #FFF;
}
.mfp-s-ready .mfp-preloader {
	display: none;
}
.mfp-s-error .mfp-content {
	display: none;
}
button.mfp-close, button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 2.8rem;
	font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}
.mfp-close:active {
	top: 1px;
}
.mfp-close-btn-in .mfp-close {
	color: #333;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}
.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	fofont-size: 1.2rem;
	line-height: 18px;
	white-space: nowrap;
}
.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
	margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}
.mfp-arrow-left {
	left: 0;
}
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
	right: 0;
}
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
	border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
	top: -40px;
}
.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}
/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}
.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 1.2rem;
	line-height: 1.4rem;
}
.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape) , screen and (max-height: 300px) {
	/**
	 * Remove all paddings around the image on small screen
	 */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}
@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}
.mfp-ie7 .mfp-img {
	padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
	padding: 0;
}
.mfp-ie7 .mfp-content {
	padding-top: 44px;
}
.mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
/* Fade-zoom animation for first dialog*/
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}
/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
}
/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
/*---[ mb_YTPlayer ]-----------------------------------------------------------------------*/
.mb_YTPlayer:focus {
	outline: 0;
}
.mbYTP_wrapper {
	display: block;
	transform: translateZ(0) translate3d(0, 0, 0);
	transform-style: preserve-3d;
	perspective: 1000;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box;
}
.mb_YTPlayer .loading {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 12px;
	color: #fff;
	background: rgba(0, 0, 0, 0.51);
	text-align: center;
	padding: 2px 4px;
	border-radius: 5px;
	font-family: "Droid Sans", sans-serif;
	-webkit-animation: fade .1s infinite alternate;
	/* Chrome, Safari, Opera */
	animation: fade .1s infinite alternate;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes fade {
	0% {
		opacity: .5;
	}
	100% {
		opacity: 1;
	}
}
/* Standard syntax */
@keyframes fade {
	0% {
		opacity: .5;
	}
	100% {
		opacity: 1;
	}
}
.YTPFullscreen {
	display: block!important;
	position: fixed!important;
	width: 100%!important;
	height: 100%!important;
	top: 0!important;
	left: 0!important;
	margin: 0!important;
	border: none !important;
	opacity: 1 !important;
}
.mbYTP_wrapper iframe {
	max-width: 4000px !important;
}
.inline_YTPlayer {
	margin-bottom: 20px;
	vertical-align: top;
	position: relative;
	left: 0;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .7);
	background: rgba(0, 0, 0, .5);
}
.inline_YTPlayer img {
	border: none!important;
	margin: 0!important;
	padding: 0!important;
	transform: none!important;
}
/*CONTROL BAR*/
.mb_YTPBar .ytpicon {
	font-size: 20px;
	font-family: 'ytpregular';
}
.mb_YTPBar .mb_YTPUrl.ytpicon {
	font-size: 30px;
}
.mb_YTPBar {
	transition: opacity .5s;
	display: block;
	width: 100%;
	height: 10px;
	padding: 5px;
	background: #333;
	position: fixed;
	bottom: 0;
	left: 0;
	text-align: left;
	z-index: 1000;
	font: 14px/16px sans-serif;
	color: white;
	opacity: .1;
	box-sizing: border-box;
}
.mb_YTPBar.visible,
.mb_YTPBar:hover {
	opacity: 1;
}
.mb_YTPBar .buttonBar {
	transition: all .5s;
	background: transparent;
	font: 12px/14px Calibri;
	position: absolute;
	top: -30px;
	left: 0;
	padding: 5px;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
}
.mb_YTPBar:hover .buttonBar {
	background: rgba(0, 0, 0, 0.4);
}
.mb_YTPBar span {
	display: inline-block;
	font: 16px/20px Calibri, sans-serif;
	position: relative;
	width: 30px;
	height: 25px;
	vertical-align: middle;
}
.mb_YTPBar span.mb_YTPTime {
	width: 130px;
}
.mb_YTPBar span.mb_YTPUrl,
.mb_YTPBar span.mb_OnlyYT {
	position: absolute;
	width: auto;
	display: block;
	top: 6px;
	right: 10px;
	cursor: pointer;
}
.mb_YTPBar span.mb_YTPUrl img {
	width: 60px;
}
.mb_YTPBar span.mb_OnlyYT {
	left: 300px;
	right: auto;
}
.mb_YTPBar span.mb_OnlyYT img {
	width: 25px;
}
.mb_YTPBar span.mb_YTPUrl a {
	color: white;
}
.mb_YTPBar .mb_YTPPlaypause,
.mb_YTPlayer .mb_YTPBar .mb_YTPPlaypause img {
	cursor: pointer;
}
.mb_YTPBar .mb_YTPMuteUnmute {
	cursor: pointer;
}
/*PROGRESS BAR*/
.mb_YTPBar .mb_YTPProgress {
	height: 10px;
	width: 100%;
	background: #222;
	bottom: 0;
	left: 0;
}
.mb_YTPBar .mb_YTPLoaded {
	height: 10px;
	width: 0;
	background: #444;
	left: 0;
}
.mb_YTPBar .mb_YTPseekbar {
	height: 10px;
	width: 0;
	background: #bb110e;
	bottom: 0;
	left: 0;
	box-shadow: rgba(82, 82, 82, 0.47) 1px 1px 3px;
}
.mb_YTPBar .YTPOverlay {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: "flat";
	box-sizing: border-box;
}
/*RASTER OVERLAY*/
.YTPOverlay.raster {
	background: url("assets/img/raster.png");
}
.YTPOverlay.raster.retina {
	background: url("assets/img/raster@2x.png");
}
.YTPOverlay.raster-dot {
	background: url("assets/img/raster_dot.png");
}
.YTPOverlay.raster-dot.retina {
	background: url("assets/img/raster_dot@2x.png");
}
/*VOLUME SLIDER*/
.mb_YTPBar .simpleSlider {
	position: relative;
	width: 100px;
	height: 10px;
	border: 1px solid #fff;
	overflow: hidden;
	box-sizing: border-box;
	margin-right: 10px;
	cursor: pointer !important;
	border-radius: 3px;
}
.mb_YTPBar.compact .simpleSlider {
	width: 40px;
}
.mb_YTPBar .simpleSlider.muted {
	opacity: .3;
}
.mb_YTPBar .level {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #fff;
	box-sizing: border-box;
}
.mb_YTPBar .level.horizontal {
	height: 100%;
	width: 0;
}
.mb_YTPBar .level.vertical {
	height: auto;
	width: 100%;
}
/*---[ fonts ]-----------------------------------------------------------------------*/

@font-face {
	font-family: 'font-fileuploader';
	src: url('fonts/font-fileuploader.ttf?yhe2ig') format('truetype'),
		 url('fonts/font-fileuploader.woff?yhe2ig') format('woff'),
		 url('fonts/font-fileuploader.svg?yhe2ig#font-fileuploader') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="fileuploader-icon-"], [class*=" fileuploader-icon-"] {
	display: inline-block;
	font-family: 'font-fileuploader' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.fileuploader-icon-main:before {
	content: "\e900";
}
.fileuploader-icon-alert:before {
	content: "\e901";
}
.fileuploader-icon-calendar:before {
	content: "\e902";
}
.fileuploader-icon-camera:before {
	content: "\e903";
}
.fileuploader-icon-success:before {
	content: "\e904";
}
.fileuploader-icon-arrow-left:before {
	content: "\e905";
}
.fileuploader-icon-arrow-right:before {
	content: "\e906";
}
.fileuploader-icon-crop:before {
	content: "\e908";
}
.fileuploader-icon-download:before {
	content: "\e909";
}
.fileuploader-icon-edit:before {
	content: "\e90a";
}
.fileuploader-icon-external:before {
	content: "\e90b";
}
.fileuploader-icon-eye:before {
	content: "\e90c";
}
.fileuploader-icon-file:before {
	content: "\e90d";
}
.fileuploader-icon-video:before {
	content: "\e90f";
}
.fileuploader-icon-folder:before {
	content: "\e910";
}
.fileuploader-icon-help:before {
	content: "\e911";
}
.fileuploader-icon-image:before {
	content: "\e912";
}
.fileuploader-icon-link:before {
	content: "\e913";
}
.fileuploader-icon-message:before {
	content: "\e914";
}
.fileuploader-icon-menu:before {
	content: "\e915";
}
.fileuploader-icon-sort:before {
	content: "\e916";
}
.fileuploader-icon-audio:before {
	content: "\e917";
}
.fileuploader-icon-plus:before {
	content: "\e918";
}
.fileuploader-icon-retry:before {
	content: "\e919";
}
.fileuploader-icon-rotate:before {
	content: "\e91a";
}
.fileuploader-icon-save:before {
	content: "\e91b";
}
.fileuploader-icon-search:before {
	content: "\e91c";
}
.fileuploader-icon-settings:before {
	content: "\e91d";
}
.fileuploader-icon-share:before {
	content: "\e91e";
}
.fileuploader-icon-deny:before {
	content: "\e91f";
}
.fileuploader-icon-trash:before {
	content: "\e920";
}
.fileuploader-icon-upload:before {
	content: "\e921";
}
.fileuploader-icon-user:before {
	content: "\e922";
}
.fileuploader-icon-remove:before {
	content: "\e923";
}
.fileuploader-icon-zoom-in:before {
	content: "\e924";
}
.fileuploader-icon-zoom-out:before {
	content: "\e925";
}

@font-face {
	font-family: 'Alerts';
	src:url('fonts/alerts.eot');
	src:url('fonts/alerts.eot?#iefix') format('embedded-opentype'), url('fonts/alerts.woff') format('woff'), url('fonts/alerts.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@font-face {
	font-family: 'Icons';
	src:url('fonts/icons.eot');
	src:url('fonts/icons.eot?#iefix') format('embedded-opentype'), url('fonts/icons.woff') format('woff'), url('fonts/icons.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	text-rendering: optimizeLegibility;
}
.ico {
	font-family: 'Icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/*---[ alert icons ]---*/
.ico-caution:before {
	content: '\e800';
}
.ico-error:before {
	content: '\e801';
}
.ico-info:before {
	content: '\e802';
}
.ico-ok:before {
	content: '\e803';
}
/*---[ other icons ]---*/
.ico-home:before {
    content: "\e904";
}
.ico-home2:before {
    content: "\e905";
}
.ico-youtube:before {
    content: "\e902";
}
.ico-pinterest:before {
    content: "\e903";
}
.ico-instagram:before {
    content: "\e900";
}
.ico-facebook:before {
    content: "\e901";
}
/*---[ main ]-----------------------------------------------------------------------*/
html {
	font-size: 62.5%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-x: hidden;
}
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-size: 1.7rem;
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-weight: 400;
	/*color: #87898b;*/
	color: #696c70;
	background: #f5f5f5;
	line-height: 1.58;
}
a {
	color: #e71f32;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: color 0.35s ease-out;
	transition: color 0.35s ease-out;
}
a:hover {
	color: #9c1824;
}
a[href^=tel] {
	color: inherit;
	text-decoration: none;
	font-weight: inherit;
}
p {
	margin: 0 0 20px;
}
button {
	cursor: pointer;
	padding: 0;
	margin: 0;
	border: 0 none;
	background: none;
	overflow: visible;
}
button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input[type='text'],
input[type='password'],
input[type='file'],
select,
textarea {
	padding: 11px 15px 12px;
	margin: 0;
	vertical-align: top;
	color: #7a7a7a;
	font-family: 'Lato';
	font-size: 1.6rem;
	border: 1px solid #d6d6d6;
	box-shadow: inset 0 1px #f0f0f0;
	outline: none;
	background: #fff;
	width: 100%;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
textarea {
	resize: none;
}
input[type='text'].error,
input[type='password'].error,
input[type='file'].error,
select.error,
textarea.error {
	border-color: #e50000;
}
input[type='text'][disabled],
input[type='password'][disabled],
input[type='file'][disabled],
select[disabled],
textarea[disabled] {
	text-shadow: 1px 1px #fff;
	border-color: #d9d9d9;
	background-color: #f2f2f2;
	color: #919191;
}
::-webkit-input-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
:-moz-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
::-moz-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
::selection {
	background: #e71f32;
	color: #fff;
}
::-moz-selection {
	background: #e71f32;
	color: #fff;
}
ol {
	list-style: decimal;
	margin: 0 0 20px 20px;
}
ol li {
	margin: 0 0 3px;
}
ul {
	margin: 0 0 20px;
}
ul li {
	margin: 0 0 3px;
	padding: 0 0 0 25px;
	position: relative;
}
ul li:before {
	content: '';
	width: 8px;
	height: 8px;
	border: 2px solid #e71f32;
	position: absolute;
	top: 9px;
	left: 5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
ul li ul, ol li ul {
	margin: 5px 0 10px 10px;
	padding-top: 0;
}
ul li ul li {
	padding: 0 0 0 15px;
}
ul li ul li:before {
	font-size: .6rem;
	color: #0b6ab3;
	top: 8px;
}
ul li ul li:last-child {
	padding-bottom: 0;
}
ul li ul li ul {
	margin-left: 10px;
}
time {
	color: #989ea8;
	font-size: 1.2rem;
}
/*strong,
b {
	font-weight: 500;
}*/
hr {
	background: #eee;
	border: 0 none;
	font-size: 0;
	height: 2px;
	line-height: 0;
	margin: 50px 0 30px;
}
sup, sub {
	font-size: 1rem;
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
table {
	width: 100%;
	margin: 15px 0;
}
table th, table td {
	padding: 5px 10px;
	line-height: 150%;
	vertical-align: middle;
	border: 1px solid #e5e5e5;
}
table th {
	font-weight: bold;
	color: #434b56;
	background: #f0f0f0;
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-family: 'Lato';
	font-weight: 400;
}
h1,
.h1 {
	font-size: 2.8rem;
	margin: 0 0 25px;
	color: #2b2d31;
}
h2,
.h2 {
	font-size: 3rem;
	margin: 0 0 25px;
	color: #2b2d31;
}
h2 span,
.h2 span {
	color: #e71f32;
}
.bg-dark-grad h2,
.bg-dark-grad .h2,
.bg-dark h2,
.bg-dark .h2 {
	color: #f5f5f5;
}
h3,
.h3 {
	font-size: 2rem;
	margin: 0 0 18px;
	color: #2b2d31;
}
h4,
.h4 {
	font-size: 1.8rem;
	margin: 0 0 10px;
	color: #2b2d31;
}
h5 {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0 0 5px;
}
h6 {
	font-weight: bold;
	margin: 0 0 5px;
}
/*---[ clearfix ]-----------------------------------------------------------------------*/
.cf:before,
.cf:after {
	content: '';
	display: table;
	line-height: 0;
}
.cf:after {
	clear: both;
}
.cb {
	clear: both;
}
/*---[ grid system 12 columns  ]-----------------------------------------------------------------------*/
.row {
	margin-left: -15px;
	margin-right: -15px;
}
.row-small {
	margin-left: -5px;
	margin-right: -5px;
}
.row:before,
.row:after,
.row-small:before,
.row-small:after,
.row-no-gap:before,
.row-no-gap:after {
	content: '';
	display: table;
	line-height: 0;
}
.row:after,
.row-small:after,
.row-no-gap:after {
	clear: both;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	float: left;
}
.row-small > .col-1,
.row-small > .col-2,
.row-small > .col-3,
.row-small > .col-4,
.row-small > .col-5,
.row-small > .col-6,
.row-small > .col-7,
.row-small > .col-8,
.row-small > .col-9,
.row-small > .col-10,
.row-small > .col-11,
.row-small > .col-12 {
	padding-left: 5px;
	padding-right: 5px;
}
.row-no-gap > .col-1,
.row-no-gap > .col-2,
.row-no-gap > .col-3,
.row-no-gap > .col-4,
.row-no-gap > .col-5,
.row-no-gap > .col-6,
.row-no-gap > .col-7,
.row-no-gap > .col-8,
.row-no-gap > .col-9,
.row-no-gap > .col-10,
.row-no-gap > .col-11,
.row-no-gap > .col-12 {
	padding-left: 0;
	padding-right: 0;
}
.col-12 {
	width: 100%;
}
.col-11 {
	width: 91.66666667%;
}
.col-10 {
	width: 83.33333333%;
}
.col-9 {
	width: 75%;
}
.col-8 {
	width: 66.66666667%;
}
.col-7 {
	width: 58.33333333%;
}
.col-6 {
	width: 50%;
}
.col-5 {
	width: 41.66666667%;
}
.col-4 {
	width: 33.33333333%;
}
.col-3 {
	width: 25%;
}
.col-2 {
	width: 16.66666667%;
}
.col-1 {
	width: 8.33333333%;
}
.col-offset-12 {
	margin-left: 100%;
}
.col-offset-11 {
	margin-left: 91.66666667%;
}
.col-offset-10 {
	margin-left: 83.33333333%;
}
.col-offset-9 {
	margin-left: 75%;
}
.col-offset-8 {
	margin-left: 66.66666667%;
}
.col-offset-7 {
	margin-left: 58.33333333%;
}
.col-offset-6 {
	margin-left: 50%;
}
.col-offset-5 {
	margin-left: 41.66666667%;
}
.col-offset-4 {
	margin-left: 33.33333333%;
}
.col-offset-3 {
	margin-left: 25%;
}
.col-offset-2 {
	margin-left: 16.66666667%;
}
.col-offset-1 {
	margin-left: 8.33333333%;
}
/*---[ global ]-----------------------------------------------------------------------*/
.img-right {
	float: right;
	margin: 5px 0 10px 30px;
}
.img-left {
	float: left;
	margin: 5px 30px 10px 0;
}
.img-right img, .img-left img {
	display: block;
	max-width: 100%;
}
.img-right figcaption, .img-left figcaption {
	display: block;
	margin: 7px 0 0;
	text-align: center;
	font-size: 1.2rem;
	color: #666;
}
.img {
	text-align: center;
}
.img img {
	max-width: 100%;
}
.to-left {
	float: left;
}
.to-right {
	float: right;
}
.txt-center {
	text-align: center;
}
.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.lead {
	font-size: 2.2rem;
	line-height: 1.45;
}
.cc li:before {
	display: none;
	content: '';
}
.relative {
	position: relative;
}
/*---[ messages ]--------------------------------------------------------*/
.alert {
	border: 2px solid #eee;
	padding: 20px 25px 20px 55px;
	margin: 0 0 30px;
	font-size: 1.5rem;
	overflow: hidden;
	position: relative;
}
.alert h4 {
	margin: 0;
	font-family: 'Lato';
	font-size: 1.7rem;
	font-weight: 700;
}
.alert p {
	margin: 0;
}
.alert h4 + p {
	margin: 5px 0 0;
}
.alert:before {
	font-family: 'Alerts';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 2.3rem;
	position: absolute;
	top: 19px;
	left: 19px;
}
.alert-error {
	background: #ffeded;
	border-color: #fba1a1;
	color: #eb3232;
}
.alert-error:before {
	content: '\e801';
	color: #eb3232;
}
.alert-error h4 {
	color: #eb3232;
}
.alert-warning {
	background: #fffbf3;
	border-color: #e0c06a;
	color: #d1a11d;
}
.alert-warning:before {
	content: '\e800';
	color: #d1a11d;
}
.alert-warning h4 {
	color: #d1a11d;
}
.alert-info {
	background: #fff8ef;
	border-color: #ffa48a;
	color: #f45b30;
}
.alert-info:before {
	content: '\e802';
	color: #f45b30;
}
.alert-info h4 {
	color: #f45b30
}
.alert-ok {
	background: #f8ffef;
	border-color: #76b964;
	color: #33921d;
}
.alert-ok:before {
	content: '\e803';
	color: #33921d;
}
.alert-ok h4 {
	color: #33921d;
}
/*---[ buttons ]-----------------------------------------------------------------------*/
.btn {
	display: inline-block;
	color: #2b2d31;
	background-color: #fff;
	border: 1px solid #eb1c30;
	font-family: 'Lato';
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	padding: 14px 25px;
	position: relative;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.btn.ico-right {
	padding-right: 50px;
}
.btn.ico-left {
	padding-left: 50px;
}
.btn:hover,
button.btn:hover {
	color: #fff;
	background-color: #eb1c30;
}
.btn i {
	color: inherit;
	position: absolute;
	top: 50%;
	font-size: 1.5rem;
	margin: -7px 0 0;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.btn.ico-left i {
	left: 17px;
}
.btn.ico-right i {
	right: 17px;
}
.btn:hover i,
button.btn:hover i {
	color: inherit;
}
.btn.dark {
	color: #fff;
	background-color: #1b1c20;
}
.btn.dark:hover,
button.btn.dark:hover {
	color: #fff;
	background-color: #eb1c30;
}
.btn.red {
	color: #FFF;
	background-color: #eb1c30;
}
.btn.red:hover,
button.btn.red:hover {
	color: #fff;
	background-color: #1b1c20;
	border-color: #1b1c20;
}
/*---[ wrapper ]-----------------------------------------------------------------------*/
.container {
	max-width: 1400px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
}
.container:before,
.container:after {
	display: table;
	content: '';
	line-height: 0;
}
.container:after {
	clear: both;
}
.bg-white {
	background-color: #fff;
}
.bg-light {
	background-color: #f7f7f7;
}
.bg-dark {
	background-color: #1b1c20;
}
.bg-dark-2 {
	background-color: #323438;
}
.bg-grey {
	background-color: #60656d;
}
.bg-dark-grad {
	background-image: -webkit-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -moz-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -o-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -ms-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: linear-gradient(45deg, #1b1c20, #323438 99%);
}
.inner {
	padding: 110px 0;
}
.inner-50 {
	padding: 0 0 0 50px;
}
/*---[ top ]-----------------------------------------------------------------------*/
#top {
	border-bottom: 1px solid rgba(255,255,255,.2);
	background-color: rgba(0,0,0,0);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
	-webkit-transition: background-color 0.35s ease-out;
	transition: background-color 0.35s ease-out;
}
#kpo-ue-img {
	position: absolute;
	display: inline-flex;
	transition: all 0.35s ease-out;
	right: 170px;
	top: 50%;
	transform: translateY(-50%);
}

#kpo-ue-img-alt {
	display: none;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	transition: all 0.35s ease-out;
}

#kpo-ue-img:hover,
#kpo-ue-img-alt:hover {
	opacity: 0.5;
}

#kpo-ue-img img {
	width: 270px;
	height: auto;
}

#kpo-ue-img-alt img {
	width: 270px;
	height: auto;
}
.is-bg #top {
	background-color: rgba(0,0,0,.5);
}
#logo {
	float: left;
	margin: 20px 0;
	width: 214px;
	position: relative;
	z-index: 902;
}
#logo img {
	display: block;
	max-width: 100%;
}
#menu nav {
	background-color: #28292d;
	background-image: -webkit-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -moz-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -o-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -ms-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: linear-gradient(45deg, #1b1c20, #323438 99%);
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 900;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.is-open #menu nav {
	overflow-y: auto;
	opacity: 0.98;
	visibility: visible;
}
#menu nav:before {
	content: '';
	height: 1px;
	background-color: #38393c;
	position: fixed;
	top: 0;
	height: 68px;
	right: 0;
	left: 0;
	z-index: 901;
}
#menu > nav > ul {
	margin: -20px auto 0;
	padding: 100px 0 30px;
	opacity: 0;
	width: 245px;
	/*position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);*/
	-webkit-transition: all 0.35s 0.4s ease-out;
	transition: all 0.35s 0.4s ease-out;
}
.is-open #menu > nav > ul {
	margin: 0 auto;
	opacity: 1;
}
#menu > nav > ul li {
	margin: 0;
	padding: 0;
}
#menu > nav > ul li + li {
	margin: 20px 0 0;
}
#menu > nav > ul li:before {
	content: '';
	display: none;
}
#menu > nav > ul li a {
	display: block;
	color: #fff;
	font-size: 2.3rem;
	padding: 3px 0;
	text-align: center;
	-webkit-transition: background-color 0.35s ease-out, opacity 0.35s ease-out;
	transition: background-color 0.35s ease-out, opacity 0.35s ease-out;
}
#menu > nav > ul li a:hover,
#menu > nav > ul li a.active {
	background-color: #a11d2a;
}
#menu > nav > ul li ul {
	margin: 0;
}
#menu > nav > ul li ul li {
	margin-top: 5px !important;
}
#menu > nav > ul li ul li a {
	font-size: 1.9rem;
	opacity: 0.6;
}
#menu > nav > ul li ul li a:hover,
#menu > nav > ul li ul li a.active {
	background-color: transparent;
	opacity: 1;
}
#socials {
	background-color: rgba(167,172,180,.6);
	float: right;
	padding: 13px 10px;
}
#socials a {
	display: block;
	color: #fff;
	font-size: 2.1rem;
	line-height: 1;
	padding: 10px;
	float: left;
}
#socials a:hover {
	color: #60656e;
}
/*---[ slogan ]-------------------------------------------------------------------*/
#slogan,
#slogan-small {
	height: 797px;
	background: #5c636f url('../img/img-top.jpg') no-repeat 50% 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
#slogan-small {
	height: 295px;
}
#slogan .container {
	height: inherit;
	padding: 68px 15px 213px;
}
#slogan h1 {
	color: #fff;
	font-size: 3.6rem;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	margin: 0;
	padding: 0 5%;
	position: relative;
	top: 50%;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#slogan h1 span {
	display: block;
	font-size: 5.5rem;
	font-weight: 700;
	line-height: 1.18;
	text-transform: uppercase;
}
#slogan #concept-shape,
#slogan-small #concept-shape {
	/*-webkit-clip-path: url('#cp');
	clip-path: url('#cp');
	background: transparent url("../images/img-top.jpg") no-repeat scroll 50% 150px;*/
	width: 648px;
	height: 648px;
	margin: 0 0 0 -324px;
	position: absolute;
	top: 40px;
	left: 50%;
	z-index: 1;
}
#slogan-small .submenu {
	background-color: rgba(0,0,0,.4);
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
}
#slogan-small .submenu ul {
	margin: 0;
}
#slogan-small .submenu ul li {
	float: left;
	margin: 0;
	padding: 0;
}
#slogan-small .submenu ul li + li {
	margin: 0 0 0 35px;
}
#slogan-small .submenu ul li:before {
	content: '';
	display: none;
}
#slogan-small .submenu ul li.home {
	color: #fff;
	font-size: 2.1rem;
	padding: 21px 0 19px;
}
#slogan-small .submenu ul li.home a {
	display: block;
	color: #fff;
	font-size: 2.1rem;
	padding: 0;
	position: relative;
}
#slogan-small .submenu ul li.separator {
	color: #fff;
	font-size: 2.1rem;
	padding: 20px 0;
	margin-left: 20px;
}
#slogan-small .submenu ul li.section {
	color: #fff;
	font-size: 2.1rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 20px 0;
	margin-left: 20px;
}
#slogan-small .submenu ul li a {
	display: block;
	color: #fff;
	font-size: 1.8rem;
	padding: 22px 0 23px;
	position: relative;
}
#slogan-small .submenu ul li a.active:before {
	content: '';
	background-color: #b70000;
	height: 3px;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
}
#slogan-small .submenu ul li a:hover,
#slogan-small .submenu ul li a.active {
	color: #ff0000;
}
/*---[ main ]-------------------------------------------------------------------*/
#main {
	position: relative;
	z-index: 3;
}
/*---[ heading ]-------------------------------------------------------------------*/
#heading {
	padding: 140px 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
#heading.protecting-values {
	background-image: url('../img/heading-protecting-values.jpg');
}
#heading.strategy {
	background-image: url('../img/heading-strategy.jpg');
}
#heading.articles {
	background-image: url('../img/heading-articles.jpg');
}
#heading.contact {
	background-image: url('../img/heading-contact.jpg');
}
#heading.investments {
	background-image: url('../img/heading-investments.jpg');
}
#heading.vision {
	background-image: url('../img/heading-vision.jpg');
}
#heading .title {
	display: block;
	color: #fff;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 0 60%;
	text-align: center;
	position: relative;
}
#heading .title span {
	position: relative;
	z-index: 2;
}
#heading .title:before {
	content: '';
	background-color: transparent;
	border: 25px solid #27292c;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*---[ about us ]-------------------------------------------------------------------*/
#about-us {
	background: #fff url('../img/world-map.png') no-repeat 50% 0;
	height: 634px;
}
.img-text-box {
	color: #758095 !important;
	display: block;
	background-image: -webkit-linear-gradient(45deg, #1b1c20, #323438 50%);
	background-image: -moz-linear-gradient(45deg, #1b1c20, #323438 50%);
	background-image: -o-linear-gradient(45deg, #1b1c20, #323438 50%);
	background-image: -ms-linear-gradient(45deg, #1b1c20, #323438 50%);
	background-image: linear-gradient(45deg, #1b1c20, #323438 50%);
	margin: -214px 0 0;
	box-shadow: 0 0 30px rgba(0,0,0,0);
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.img-text-box:hover {
	box-shadow: 0 0 30px rgba(0,0,0,.5);
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
}
.img-text-box figure {
	float: right;
}
.img-text-box figure img {
	display: block;
	max-width: 100%;
	height: auto;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.img-text-box .inner {
	padding: 70px 35px 0 50px;
}
.img-text-box h2 {
	color: #fff;
}
.img-text-box p {
	color: #696c70;
}
.global-reach-box {
	padding: 220px 0 0 50px;
}
.global-reach-box p {
	color: #1d1e22;
	font-size: 3.2rem;
	font-weight: 300;
	margin: 0;
}
.global-reach-box h2 {
	font-size: 5.2rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 20px;
}
/*---[ selected investments ]-------------------------------------------------------------------*/
#selected-investments {
	position: relative;
}
#selected-investments .inner {
	margin: 0 0 0 50px;
}
#selected-investments .slider {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
#selected-investments .slide-1,
#selected-investments .slide-2,
#selected-investments .slide-3 {
	background: transparent no-repeat 50%;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
#selected-investments .slide-1 {
	background-image: url('../img/investment-1.jpg');
	-webkit-animation: fade-1 12s infinite;
	animation: fade-1 12s infinite;
}
#selected-investments .slide-2 {
	background-image: url('../img/investment-2.jpg');
	-webkit-animation: fade-2 12s infinite;
	animation: fade-2 12s infinite;
}
#selected-investments .slide-3 {
	background-image: url('../img/investment-3.jpg');
	-webkit-animation: fade-3 12s infinite;
	animation: fade-3 12s infinite;
}
@keyframes fade-1
{
	0% { opacity: 1 }
	33.333% { opacity: 0 }
	66.666% { opacity: 0 }
	100% { opacity: 1 }
}
@keyframes fade-2
{
	0% { opacity:0 }
	33.333% { opacity: 1 }
	66.666% { opacity: 0 }
	100% { opacity: 0 }
}
@keyframes fade-3
{
	0% { opacity:0 }
	33.333% { opacity: 0 }
	66.666% { opacity: 1 }
	100% { opacity: 0 }
}
#selected-investments .container {
	z-index: 2;
}
#selected-investments p {
	margin: 0 0 35px;
}
/*---[ articles ]-------------------------------------------------------------------*/
#recent-articles {
	background: #f7f7f7 url('../img/img-recent-articles.jpg') no-repeat 50% 0;
}
#recent-articles.inner {
	padding: 130px 0 90px;
}
#recent-articles h2 {
	margin: 0 0 60px 50px;
}
#recent-articles .more {
	text-align: center;
	margin: 70px 0 0;
}
.articles-list .item {
	display: block;
	background-color: #fff;
	box-shadow: 2px 3px 10px rgba(0,0,0,.03);
	position: relative;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
.articles-list .item:hover {
	display: block;
	background-color: #fff;
	box-shadow: 8px 13px 26px rgba(0,0,0,.16);
}
.articles-list figure {
	position: relative;
}
.articles-list figure span {
	background-color: #b70000;
	color: #fff;
	font-size: 1.3rem;
	padding: 5px 15px;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	bottom: 0;
}
.articles-list img {
	max-width: 100%;
	display: block;
}
.articles-list .video figure {
	float: right;
	width: 50%;
}
.articles-list .video figure em {
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	background-color: rgba(21,22,24,.7);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.articles-list .video figure em:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 17px 0 17px 18px;
	border-color: transparent transparent transparent #d32a3b;
	margin: -17px 0 0 -5px;
	position: absolute;
	top: 50%;
	left: 50%;
}
.articles-list .video:hover figure em {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.articles-list .inner {
	padding: 30px 50px 40px;
}
.articles-list .video .inner {
	width: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.articles-list .title {
	color: #2b2d31;
	font-size: 2.3rem;
	margin: 0 0 12px;
}
.articles-list p {
	margin: 0;
	color: #989ea8;
	font-size: 1.7rem;
	line-height: 1.58;
}
#articles {
	padding: 60px 15px;
}
#articles .articles-list {
	position: relative;
	width: 100%;
}
#articles .articles-list .grid-item {
	width: 20%;
}
#articles .articles-list .grid-item.w-2 {
	width: 40%;
}
#articles .articles-list .grid-item.w-3 {
	width: 60%;
}
#articles .articles-list .item {
	margin: 15px;
}
#article {
	padding: 60px 0;
}
#article h1 {
	font-size: 3rem;
}
/*---[ investments ]-------------------------------------------------------------------*/
#investments .section-1 {
	color: #696c70;
	padding: 50px 0 50px;
}
#investments .section-2 {
	color: #696c70;
	padding: 70px 0 50px;
	background-image: url("../img/bg-investments-3.jpg");
	background-repeat: no-repeat;
	background-position: 50% 0;
}
#investments .section-3 {
	padding: 100px 0 90px;
	background: #FFF url("../img/bg-investments-2.jpg") no-repeat 50% 0;
}
#investments .section-3 h2 {
	margin: 0 0 80px;
}
#investments .section-3 .counters-group {
	margin-top: 40px;
}
#investments .section-3 .number {
	float: left;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #8a8c8f;
	color: #989ea8;
	font-size: 1.6rem;
	text-align: center;
	text-transform: uppercase;
	padding: 50px 0 0;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
#investments .section-3 .number + .number {
	margin: 0 0 0 50px;
}
#investments .section-3 .number:hover {
	box-shadow: 0 0 0 3px #970d1a;
}
#investments .section-3 .number span {
	display: block;
	color: #1d1e22;
	font-size: 6rem;
	font-weight: 300;
	line-height: 1;
	margin: 0 0 5px;
}
#investments .section-3 .stats {
	color: #696c70;
	font-size: 1.7rem;
	margin: 0 0 24px;
}
#investments .section-3 .stats strong {
	display: block;
	color: #989ea8;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 4px;
}
#investments .section-3 .stats strong span {
	color: #1d1e22;
	font-size: 3.6rem;
	margin: 0 6px 0 0;
}
#investments .section-4 {
	color: #d3d7dd;
	padding: 70px 0 65px;
}
#investments .section-4 h2 {
	color: #FFF;
}
#investments .section-5 {
	background: #FFF url("../img/bg-investments-1.jpg") no-repeat 50% 0;
	height: 635px;
}
#investments .section-5 .container,
#investments .section-5 .inner-50 {
	height: 100%;
}
#investments .section-5 .inner-50 .invest-logo {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	max-width: 100%;
}
#investments .section-6 {
	color: #989ea8;
	padding: 200px 0 150px;
	position: relative;
}
#investments .section-6 .container {
	z-index: 2;
}
#investments .section-6 .absolute {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
#investments .section-6 .absolute .col-6 {
	height: 100%;
}
#investments .section-6 .img-bg {
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	width: 100%;
	height: 100%;
}
#investments .section-6 .img-investments-1 {
	background-image: url('../img/img-investments-1.jpg');
}
#investments .section-7 .inner-50 {
	padding: 60px 30px 40px 50px;
	z-index: 4;
}
#investments .section-7 {
	position: relative;
}
#investments .section-7:before,
#investments .section-7:after {
	content: '';
	background-image: -webkit-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -moz-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -o-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -ms-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: linear-gradient(45deg, #1b1c20, #323438 99%);
	width: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
}
#investments .section-7:before {
	left: 0;
}
#investments .section-7:after {
	right: 0;
}
#investments .section-7 .container {
	z-index: 2;
}
#investments .section-7 .img {
	height: 590px;
	position: relative;
}
#investments .section-7 .img img {
	width: auto;
	height: 100%;
	max-width: none;
	position: absolute;
	top: 0;
}
#investments .section-7 .col-6.left .img img {
	right: 0;
}
#investments .section-7 .col-6.right .img img {
	left: 0;
}
/*---[ vision ]-------------------------------------------------------------------*/
#vision .section-1 {
	color: #2b2d31;
	padding: 80px 0 60px;
	font-size: 3rem;
	line-height: 1.4;
}

#vision .section-1 h2 span{
	color: #2b2d31;
	text-transform: uppercase;
}

#vision .section-2 {
	min-height: 800px;
	display: flex;
	align-items: flex-end;
	background: #222 url("../img/bg-vision-1.jpg") no-repeat 50% 0;
}
#vision .section-2 .info {
	width: 100%;
	position: relative;
	background-image: -webkit-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: -moz-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: -o-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: -ms-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	padding: 80px 0 60px;
	font-size: 31px;
	line-height: 1.4;
	color: #FFF;
}

#vision .section-2 h2 {
	color: #FFF;
}

#vision .section-2 img {
	position: absolute;
	bottom: 0;
	left: 45%;
	right: 0;
	width: 53%;
	width: 855px;
	height: auto;
}
#vision .section-3 {
	padding: 80px 0 65px;
}
#vision .section-3 h2 {
	margin-bottom: 35px;
}
#vision .section-3 ul {
	margin: 0 0 0 20px;
}
#vision .section-3 ul li {
	margin: 0 0 10px;
	padding: 0 0 0 30px;
	font-size: 2.1rem;
}
#vision .section-3 ul li:before {
	width: 10px;
	height: 10px;
	top: 12px;
}
#vision .section-4 {
	background-image: -webkit-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -moz-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -o-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -ms-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: linear-gradient(45deg, #1b1c20, #323438 99%);
}

#vision .section-4 h2 {
	color: #fff;
	margin-bottom: 0;
}
#vision .section-4 .section-4-bg {
	background: transparent url("../img/img-section-4-1.png") no-repeat 50% 0;
	padding: 60px 0 0;
}
#vision .section-4 .top {
	color: #FFF;
	font-size: 3rem;
	line-height: 1.45;
	padding-bottom: 45px;
}
#vision .section-4 .bottom {
	background-image: -webkit-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -moz-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -o-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: -ms-linear-gradient(45deg, #1b1c20, #323438 99%);
	background-image: linear-gradient(45deg, #1b1c20, #323438 99%);
	padding-bottom: 60px;
	padding-top: 45px;
}
#vision .section-4 .bottom h3 {
	font-size: 1.7rem;
	color: #989ea8;
	text-transform: uppercase;
	margin-bottom: 30px;
}

#vision .section-4 .number-list {
	display: flex;
	flex-wrap: wrap;
	margin: -12px;
}

#vision .section-4 .number {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #8a8c8f;
	color: #989ea8;
	font-size: 1.6rem;
	flex-shrink: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-transform: uppercase;
	padding: 0 0 0;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
	margin: 12px;
}

#vision .section-4 .number:hover {
	box-shadow: 0 0 0 3px #970d1a;
}
#vision .section-4 .number img {
	display: block;
	width: auto;
	margin: 0 auto;
	height: 40px;
	opacity: 0.8;
	margin-bottom: 10px;
}

#vision .section-4 .number span {
	display: block;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1;
}

#vision .section-5 {
	background: #FFF url("../img/img-section-5-1.jpg") no-repeat 50% 0;
	padding: 90px 0 70px;
	font-size: 2.1rem;
}
/*---[ protecting values ]-------------------------------------------------------------------*/
#protecting-values .section-1 {
	color: #696c70;
	padding: 80px 0 45px;
}
#protecting-values .section-1 h2 {
	margin: 0 0 28px;
}
/* #protecting-values .section-2 {
	padding: 0 30px;
} */
#protecting-values .section-2 {
	padding: 45px 0;
}
#protecting-values .products-carousel .item {
	width: 320px;
	display: block;
	background-color: #fff;
	box-shadow: 2px 3px 10px rgba(0,0,0,.03);
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
	margin: 35px 15px;
}
#protecting-values .products-carousel .item:hover {
	box-shadow: 8px 13px 23px rgba(0,0,0,.16);
}
#protecting-values .products-carousel .inner {
	padding: 28px 40px;
}
#protecting-values .products-carousel .title {
	font-size: 2.3rem;
	font-weight: 700;
	margin: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#protecting-values .section-3 {
	background: #181818;
	padding: 0;
	height: 680px;
}
#protecting-values .section-3 h2 {
	color: #fff;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 4.2rem;
	padding-top: 50px;
}
#protecting-values .section-4 {
	color: #696c70;
	font-size: 2.1rem;
	padding: 70px 0 60px;
}
#protecting-values .section-4 h2 {
	margin: 0 0 45px;
}
#protecting-values .section-4 ul {
	margin: 0 0 0 20px;
}
#protecting-values .section-4 ul li {
	margin: 0 0 10px;
	padding: 0 0 0 30px;
}
#protecting-values .section-4 ul li:before {
	width: 10px;
	height: 10px;
	top: 12px;
}
#protecting-values .section-5 {
	background: #323438 url('../img/protecting-values-1.jpg') no-repeat 50% -180px;
}
#protecting-values .section-5 .statistics {
	padding: 85px 0 60px;
}
#protecting-values .section-5 .statistics h2 {
	color: #fff;
}
#protecting-values .section-5 .statistics .text {
	padding-top: 20px;
}
#protecting-values .section-5 .number {
	float: left;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	box-shadow: 0 0 0 1px #8a8c8f;
	color: #989ea8;
	font-size: 1.6rem;
	text-align: center;
	text-transform: uppercase;
	padding: 50px 0 0;
	-webkit-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
}
#protecting-values .section-5 .number + .number {
	margin: 0 0 0 80px;
}
#protecting-values .section-5 .number:hover {
	box-shadow: 0 0 0 3px #970d1a;
}
#protecting-values .section-5 .number span {
	display: block;
	color: #fff;
	font-size: 6rem;
	font-weight: 300;
	line-height: 1;
	margin: 0 0 5px;
}
#protecting-values .section-5 .logos {
	padding: 55px 10% 45px;
}
#protecting-values .section-5 .logos img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
	opacity: 0.6;
}
#protecting-values .section-6 {
	padding: 90px 0;
}
#protecting-values .section-6 .inner-50 {
	padding: 140px 0 0 50px;
}
#protecting-values .section-6 p {
	color: #1d1e22;
	font-size: 3.2rem;
	font-weight: 300;
	margin: 0;
}
#protecting-values .section-6 h2 {
	font-size: 4.1rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 20px;
}
#protecting-values .section-6 figure {
	float: right;
}
#protecting-values .section-6 figure img {
	display: block;
	max-width: 100%;
}
/*---[ strategy ]-------------------------------------------------------------------*/
#strategy .section-1 {
	color: #696c70;
	font-size: 2.1rem;
	padding: 80px 0;
}
#strategy .section-1 h2 {
	margin: 0 0 45px;
}
#strategy .section-1 ul {
	margin: 0 0 0 20px;
}
#strategy .section-1 ul li {
	margin: 0 0 10px;
	padding: 0 0 0 30px;
}
#strategy .section-1 ul li:before {
	width: 10px;
	height: 10px;
	top: 12px;
}
#strategy .section-2 {
	background: #303135 url('../img/strategy-1.jpg') no-repeat 50% bottom;
	color: #989ea8;
}
#strategy .section-2 .grey-box {
	background-image: -webkit-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: -moz-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: -o-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: -ms-linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	background-image: linear-gradient(45deg, rgba(27,28,32,.95), rgba(50,52,56,.95) 99%);
	margin: 495px 0 0;
	padding: 80px 0 50px;
}
#strategy .section-2 h2 {
	color: #fff;
	margin: 0 0 28px;
}
#strategy .section-2 p {
	margin: 0 0 27px;
}
#strategy .section-3 {
	background: #dde0e3 url('../img/strategy-2.jpg') no-repeat 50% 0;
	color: #393a3f;
	padding: 110px 0 85px;
}
#strategy .section-3 h2 {
	margin: 0 0 28px;
}

#strategy .section-2-body {
	min-height: 200px;
}

#strategy .section-2 h3 {
	color: #fff;
	margin: 0 0 28px;
	text-transform: uppercase;
}

#strategy .section-2 p span {
	color: #fff;
	font-size: 22px;
}

/* tenders */

#tenders .section-1 {
	padding: 80px 0 60px;
}
#tenders .section-2 h2,
#tenders .section-1 h2 {
	margin-bottom: 15px;
}

#tenders .section-2 .inner-50 > span,
#tenders .section-1 .inner-50 > span {
	opacity: 0.7;
	display: block;
	margin-bottom: 20px;
}
#tenders .section-2 .form,
#tenders .section-1 .form {
	padding-bottom: 40px;
}


#tenders .section-2 {
	padding: 80px 0 60px;
	background-color: #ececec;
}

/* width-bar */

.width-bar {
	display: flex;
	flex-direction: column;
	max-width: 370px;
	width: 100%;
	margin-bottom: 20px;
}

.width-bar > span {
	display: block;
	width: 100%;
	background-color:#2b2c30;
	position: relative;
	color: #fff;
	margin-bottom: 10px;
}


.width-bar > span > span:first-child {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #9b000e;

}

.width-bar > span > span:last-child {
	position: relative;
	z-index: 2;
	padding-left: 20px;

}

/* file  */
.files-list {
	list-style: none;
	margin-bottom: 40px;
}

.file-item  {
	position: relative;
	margin-bottom: 10px;
}

.file-item a {
	display: inline-flex;
	flex-wrap: nowrap;
	color: inherit;
	fill: #9b000e;
	font-size: inherit;
	font-weight: inherit;
	text-transform: inherit;
	text-decoration: inherit;
	padding-left: 35px;
}

.file-item a:hover {
	color: #9b000e;
	fill: #9b000e;

}

.file-item svg {
	position: absolute;
	top: 3px;
	left: 0;
	flex-shrink: 0;
	width: 20px;
	height: auto;
}


/* fileuploader */

/* .fileuploader {
	background-color: transparent;
	padding: 0;
	display: block;
	position: relative;
	margin: 0;
	font-family: 'Lato';
	margin-bottom: 20px;
}

.fileuploader-input .fileuploader-input-button {
	display: inline-block;
	color: #2b2d31;
	background: #fff;
	border: 1px solid #eb1c30;
	font-family: 'Lato';
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px 30px;
	box-shadow: none;
	position: relative;
	border-radius: 0;
	box-shadow: none !important;
	transform: none !important;
}

.fileuploader-input .fileuploader-input-button:hover {
	color: #fff;
	background: #eb1c30;
	border: 1px solid #eb1c30;
}

.fileuploader-input .fileuploader-input-button span {
	margin-bottom: 0 !important;
	text-transform: uppercase;
	font-style: normal;
}
.fileuploader-items .fileuploader-item .fileuploader-item-icon,
.fileuploader-items .fileuploader-item .fileuploader-item-image,
.fileuploader-items .fileuploader-item span.fileuploader-action-popup {
	border-radius: 0 !important;
}

.fileuploader-items .fileuploader-item .column-title div {
	color: #2b2d31;
	font-style: normal !important;
	font-family: 'Lato';
}

.fileuploader-items .fileuploader-item .column-title span {
	color: #2b2d31;
	font-style: normal !important;
	font-weight: 400 !important;
	margin-bottom: 0 !important;
	font-family: 'Lato';
	opacity: 0.5;
}

.fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-remove {
	box-shadow: none !important;
}

.fileuploader-items .fileuploader-items-list {

} */

/*---[ contact ]-------------------------------------------------------------------*/
#contact {
	padding: 60px 0;
	position: relative;
}
#contact-map {
    position: relative;

    min-height: 440px;
}
/*---[ form ]-----------------------------------------------------------------------*/
ul.form {
	margin: 0 0 15px;
	overflow: hidden;
}
ul.form li {
	margin: 1% 0 0;
	padding: 0;
	background: none;
}
ul.form li:first-child {
	margin: 0;
}
ul.form li label {
	font-weight: 600;
	line-height: 1.2;
	text-align: right;
	display: block;
	float: left;
	width: 125px;
	padding: 12px 0 10px;
}
ul.form li label span {
	color: #0089bc;
	font-weight: bold;
}
ul.form li.captcha {
	overflow: hidden;
	float: left;
}
ul.form li.captcha img {
	float: left;
}
ul.form li.captcha input[type='text'] {
	width: 190px;
	text-align: center;
	margin: 0 0 0 10px;
}
ul.form li input[type='text'] ,
ul.form li input[type='text'] ,
ul.form li input[type='text']  {
	width: 32.6667%;
	float: left;
}
ul.form li.cf input[type='text'] + input[type='text'] {
	margin: 0 0 0 1%;
}
ul.form li input[type='text'].error,
ul.form li input[type='password'].error,
ul.form li input[type='file'].error,
ul.form li select.error,
ul.form li textarea.error {
	border-color: #f1d6d6;
	background: #fff5f5;
}
ul.form li.submit {
	float: right;
	position: relative;
	z-index: 1;
}
/*---[ footer ]-------------------------------------------------------------------*/
#footer p {
	margin: 0;
}
#footer .bottom {
	background-color: #1a1c1f;
	color: #818181;
	font-size: 1.5rem;
	padding: 65px 0;
}
#footer .bottom a {
	color: #ddd;
}
#footer .bottom a:hover {
	color: #fff;
}
#footer .bottom h3 {
	color: #fff;
	font-size: 1.5rem;
	text-transform: uppercase;
	margin: 0 0 30px;
}
#footer .menu-bottom ul {
	margin: 0;
}
#footer .menu-bottom ul li {
	margin: 0;
	padding: 0;
	line-height: 1.4;
}
#footer .menu-bottom ul li li {
	margin: 0 0 0 9px;
	padding: 0;
}
#footer .menu-bottom ul li:before {
	content: '';
	display: none;
}
#footer .menu-bottom ul li a {
	color: #818181;
}
#footer .articles-short-list .item {
	overflow: hidden;
}
#footer .articles-short-list .item + .item {
	margin: 25px 0 0;
}
#footer .articles-short-list figure {
	float: left;
	width: 64px;
	height: 64px;
}
#footer .articles-short-list figure img {
	display: block;
	width: 100%;
	height: 100%;
}
#footer .articles-short-list .inner {
	padding: 0 0 0 84px;
	line-height: 1.5;
}
#footer .articles-short-list .title {
	font-size: rem;
	margin: -5px 0 5px;
}
#footer .socials {
	line-height: 1.4;
}
#footer .socials-list {
	font-size: 3rem;
	margin: 18px 0 0;
}
#footer .socials-list a + a {
	margin: 0 0 0 3px;
}
#footer .contact {
	line-height: 1.4;
}
#footer .contact strong {
	font-weight: 600;
}
#footer .contact p + p {
	margin: 20px 0 0;
}
#footer .footer {
	background-color: #2c2e31;
	color: #777879;
	font-size: 1.4rem;
	padding: 20px 0;
}
#footer .footer a {
	color: #777879;
	font-weight: 600;
}
#footer .footer a:hover {
	color: #fff;
}
#footer .copy {
	float: left;
}
#footer .create {
	float: right;
	text-align: right;
}
/*-----------------------------------------------------------------------------*/
/*---[ RWD ]-------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------*/
html.is-open,
.is-open body {
	overflow: hidden;
}
#menu-trigger {
	display: block;
	color: #fff;
	text-transform: uppercase;
	background-color: rgba(33,39,47,.5);
	float: right;
	position: relative;
	z-index: 902;
	padding: 24px 64px 24px 20px;
	height: 68px;
	font-size: 1.2rem;
	/*text-indent: -9999px;*/
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	cursor: pointer;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
}
#menu-trigger strong {
	font-weight: 400;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
#menu-trigger:hover,
#menu-trigger:focus,
#menu-trigger.is-active {
	outline: none;
}
#menu-trigger span,
#menu-trigger span:before,
#menu-trigger span:after {
	display: block;
	position: absolute;
	height: 2px;
	background: #fff;
}
#menu-trigger span {
	top: 33px;
	left: 70px;
	right: 20px;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
#menu-trigger span:before,
#menu-trigger span:after {
	left: 0;
	width: 100%;
	content: '';
	-webkit-transition-duration: 0.3s, 0.3s;
	transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s;
	transition-delay: 0.3s, 0s;
}
#menu-trigger span:before {
	top: -6px;
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}
#menu-trigger span:after {
	bottom: -6px;
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}
.is-open #menu-trigger {
	background-color: rgba(33,39,47,0);
}
.is-open #menu-trigger strong {
	opacity: 0;
}
.is-open #menu-trigger span {
	background: none;
}
.is-open #menu-trigger span:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-delay: 0s, 0.3s;
	transition-delay: 0s, 0.3s;
}
.is-open #menu-trigger span:after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition-delay: 0s, 0.3s;
	transition-delay: 0s, 0.3s;
}
.iframe-rwd  {
	position: relative;
	padding-bottom: 65.25%;
	height: 0;
	overflow: hidden;
}
.iframe-rwd iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.table-rwd {
	overflow-x: auto;
	padding: 0 1px;
}
/*
@media screen and (min-width: 1101px) {
	#main {
		margin-bottom: 405px;
		background-color: #f5f5f5;
		position: relative;
		z-index: 3;
		box-shadow: 0 0 7px 0px rgba(0,0,0,0.25);
	}
	#footer {
		position: fixed;
		width: 100%;
		bottom: 0;
	}
}
*/


@media screen and (max-width: 1600px) {
	#vision .section-2 img {
		width: 600px;
	}

	#vision .section-2 {
		min-height: 600px;
	}
}
@media screen and (max-width: 1400px) {
	#articles .articles-list .grid-item {
		width: 25%;
	}
	#articles .articles-list .grid-item.w-3 {
		width: 50%;
	}

	#vision .section-4 .col-5 {
		width: 50%;

	}

	#vision .section-4 .col-offset-2 {
		margin-left: 0;
	}
}
@media screen and (max-width: 1280px) {
	.img-text-box .inner {
		padding: 30px 30px 0 30px;
	}
	#protecting-values .section-5 .col-4 {
		width: 100%;
		text-align: center;
	}
	#protecting-values .section-5 .col-8 {
		width: 100%;
		text-align: center;
	}
	#protecting-values .section-5 .col-8 .to-right {
		float: none;
	}
	#protecting-values .section-5 .number,
	#protecting-values .section-5 .number + .number {
		display: inline-block;
		float: none;
		margin: 20px;
		vertical-align: top;
	}
	#protecting-values .section-6 .inner-50 {
		text-align: center;
		float: none;
		padding: 0;
		margin: 0 0 50px;
	}
	#protecting-values .section-6 figure {
		float: none;
		text-align: center;
	}
	#protecting-values .section-6 figure img {
		margin: 0 auto;
	}
	#strategy .section-3 {
		background-size: cover;
		background-position: 50% 50%;
	}
	#strategy .section-3 .col-5 {
		width: 100%;
		padding-right: 450px;
	}

	#vision .section-4 .col-5:first-child {
		width: 60%;
	}

	#vision .section-4 .col-5:last-child {
		width: 40%;
	}

	#vision .section-4 .col-offset-2 {
		margin-left: 0;
	}
}
@media screen and (max-width: 1100px) {
	.inner-50 {
		padding: 0;
	}
	#top .container {
		padding: 0;
	}
	#logo {
		margin: 20px 0 20px 15px;
	}
	/*#about-us > .container > .row > .col-6 {
		width: 100%;
	}*/
	.img-text-box figure {
		width: 100%;
	}
	.img-text-box .inner {
		width: 100%;
		padding: 30px;
	}
	.global-reach-box {
		padding: 115px 0 0 50px;
	}
	#investments .section-5 .invest-logo {
		text-align: center;
	}
	#recent-articles .articles-list .col-3 {
		width: 50%;
	}
	#recent-articles .articles-list .item {
		margin: 0 0 30px;
	}
	#recent-articles .more {
		margin: 30px 0 0;
	}
	#investments .section-2 .col-5 {
		width: 50%;
	}
	#investments .section-2 .col-offset-2 {
		margin: 0;
	}
	#investments .section-3 {
		padding: 50px 0 40px;
		background-size: cover;
		background-position: 50% !important;
	}
	#investments .section-3 h2 {
		margin: 0 0 35px;
	}
	#investments .section-6 {
		padding: 50px 0 40px;
	}
	#investments .section-7 .inner-50 {
		padding: 50px 30px 40px 30px;
	}
	#investments .section-7 .left .inner-50 {
		padding: 50px 30px 40px 0;
	}
	#protecting-values .section-1 .col-5 {
		width: 50%;
	}
	#protecting-values .section-1 .col-offset-2 {
		margin: 0;
	}
	#protecting-values .section-5 {
		background-size: cover;
		background-position: 50% 50%;
	}
	#investments .section-1 .col-5 {
		width: 50%;
	}
	#investments .section-1 .col-offset-2 {
		margin: 0;
	}
	#investments .section-4 .col-5 {
		width: 50%;
	}
	#investments .section-4 .col-offset-2 {
		margin: 0;
	}
	#strategy .section-2 .col-5 {
		width: 50%;
	}
	#strategy .section-2 .col-offset-2 {
		margin: 0;
	}
	#strategy .section-3 .col-5 {
		padding-right: 350px;
	}
	#articles {
		padding: 15px;
	}
	#articles .articles-list .grid-item {
		width: 33.33333%;
	}
	#articles .articles-list .grid-item.w-3 {
		width: 66.66666%;
	}
	#footer .col-offset-1 {
		margin: 0;
	}
	#footer .bottom {
		padding: 30px 0;
	}
	#footer .menu-bottom {
		width: 100%
	}
	#footer .articles-short-list {
		width: 100%
	}
	#footer .socials,
	#footer .contact {
		width: 100%
	}
	#footer .menu-bottom,
	#footer .articles-short-list,
	#footer .socials {
		border-bottom: 1px solid #2b2b2b;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	#footer .menu-bottom ul {
		margin: 0;
	}
	#footer .menu-bottom ul li {
		margin: 0;
	}
	#footer .menu-bottom ul li + li {
		border-top: 1px solid #2b2b2b;
	}
	#footer .menu-bottom ul li a {
		display: block;
		font-size: 1.7rem;
		padding: 10px 0;
/* 		text-align: center; */
	}
	#footer .menu-bottom ul li ul {
		margin: 0;
	}
	#footer .menu-bottom ul li ul li {
		margin: 0;
		border: 0 none;
	}
	#footer .menu-bottom ul li ul li a {
		padding: 3px 0;
		font-size: 1.4rem;
	}
	#footer .create,
	#footer .copy {
		float: none;
		text-align: center;
		margin: 4px 0;
	}

	#vision .section-2 {
		min-height: 600px;
	}

	#vision .section-2 img {
		width: 500px;
	}
}
@media screen and (max-width: 980px) {
	#vision .section-4 .col-5 {
		width: 100% !important;
		text-align: center;
	}
	#vision .section-4 .bottom .col-5:first-child {
		margin-bottom: 40px;

	}


	#vision .section-4 .number-list {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	#vision .section-4 h2 {
		padding: 0 10%;
	}
}

@media screen and (max-width: 950px) {
	#strategy .section-3 .col-5 {
		padding-right: 250px;
	}
	#articles .articles-list .grid-item {
		width: 50%;
	}
	#articles .articles-list .grid-item.w-3 {
		width: 100%;
	}
	#contact {
		padding-bottom: 0;
	}
	#contact .col-5 {
		width: 100%;
	}
	#contact #contact-map {
		margin: 40px 0 0;
		width: 100%;
		position: relative;
		height: 400px;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
	}

	#vision .section-2 {
		min-height: 500px;
	}

	#vision .section-2 img {
		width: 500px;
	}

	#vision .section-2 .info {
		font-size: 30px;
		padding: 50px 0 30px;

	}
}


@media screen and (max-width: 750px) {
	#kpo-ue-img {
		display: none;
	}

	#kpo-ue-img-alt {
		display: block;
	}
	#socials {
		display: none;
	}

	#slogan h1 {
		top: 55%
	}
	
	#about-us {
		height: auto;
		padding: 15px 0 0;
		background: none;
	}
	#about-us .container {
		padding: 0;
	}
	#about-us > .container > .row > .col-6 {
		width: 100%;
	}
	.img-text-box figure {
		width: 50%;
	}
	.img-text-box .inner {
		width: 50%;
	}
	.img-text-box {
		margin: 0 15px 15px;
	}
	.img-text-box .inner {
		padding: 30px 30px 0;
	}
	.global-reach-box {
		padding: 100px 0;
		text-align: center;
		background: #fff url("../img/world-map.png") no-repeat scroll 50% 50%;
		background-size: cover;
	}
	.global-reach-box h2 {
		font-size: 3.2rem;
	}
	.global-reach-box p {
		font-size: 2rem;
	}
	#recent-articles h2 {
		margin: 0 0 60px;
	}
	#selected-investments {
		text-align: center;
	}
	#selected-investments .inner {
		padding: 0;
		margin: 0;
	}
	.articles-list .inner {
		padding: 20px 30px 30px
	}
	#heading .title {
		margin: 0;
	}
	#protecting-values .section-1 {
		padding: 30px 0;
	}
	#protecting-values .section-1 .col-5 {
		width: 100%;
	}
	#protecting-values .products-carousel .owl-stage-outer {
		padding: 30px 0;
	}
	#investments .section-3 {
	    padding: 30px 0;
	}
	#investments .section-3 h2 {
		word-break: break-all;
	}
	#protecting-values .section-3 {
		padding: 0;
		height: 460px;
	}
	#protecting-values .section-3 h2 {
		font-size: 3rem;
	}
	#protecting-values .section-4 {
		padding: 30px 0;
	}
	#protecting-values .section-4 .col-4 {
		width: 100%;
	}
	#protecting-values .section-5 .statistics {
		padding: 30px 0;
	}
	#protecting-values .section-6 {
		padding: 30px 0 15px;
	}
	#protecting-values .section-6 h2 {
		font-size: 3.2rem;
	}
	#protecting-values .section-6 p {
		font-size: 2rem;
	}
	#investments .section-1 {
		padding: 30px 0;
	}
	#investments .section-2 {
		padding: 30px 0;
	}
	#investments .section-2 .col-5 {
		width: 100%;
	}
	#investments .section-4 {
		padding: 30px 0;
	}
	#investments .section-4 .col-5 {
		width: 100%;
	}
	#investments .section-3 {
		text-align: center;
	}
	#investments .section-5 {
		height: 350px;
		background-size: cover;
		background-position: 50% !important;
	}
	#investments .section-5 img {
		max-width: 80%;
	}
	#investments .section-6 {
		padding: 0 0 40px;
	}
	#investments .section-6 .absolute {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
	}
	#investments .section-6 .col-6,
	#investments .section-6 .col-5 {
		width: 100%;
	}
	/*#investments .section-6 .col-6 {
		padding: 0 15px;
	}*/
	#investments .section-6 .img-bg {
		height: 300px;
		margin: 0 0 30px;
	}
	#investments .section-7:before,
	#investments .section-7:after {
		display: none;
	}
	#investments .section-7 .col-6 {
		width: 100%;
	}
	#investments .section-7 img {
		display: none;
	}
	#investments .section-7 .img {
		height: 300px;
		background-size: cover;
		background-position: 50%;
		background-repeat: no-repeat;
		margin: 0 -15px;
	}
	#investments .section-7 .left .img {
		background-image: url('../img/img-investments-2.jpg');
	}
	#investments .section-7 .right .img {
		background-image: url('../img/img-investments-3.jpg');
	}
	#investments .section-7 .left .inner-50,
	#investments .section-7 .right .inner-50 {
		padding: 30px 0 40px;
	}
	#strategy .section-1 {
		padding: 30px 0;
	}
	#strategy .section-2 {
		background-size: cover;
	}
	#strategy .section-2 .grey-box {
		padding: 30px 0;
		margin: 0;
	}
	#strategy .section-2 .col-5 {
		width: 100%;
	}
	#strategy .section-3 {
		background: #d8d9dd;
		padding: 30px 0;
	}
	#strategy .section-3 .col-5 {
		padding-right: 15px;
	}

	#vision .section-1 {
		padding: 30px 0 10px;
	}

	#vision .section-1 h2 {
		font-size: 30px;
	}

	#vision .section-2 {
		min-height: 0;

	}
	#vision .section-2 .info {
		padding: 30px 0 10px;
	}

	#vision .section-2-img {
		text-align: center;
	}

	#vision .section-2 img {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		width: auto;
		width: 300px;
		height: auto;
	}

	#vision .col-5 {
		width: 100%;
		text-align: center;
	}


	#vision .section-3 {
		padding: 30px 0;
	}

	#vision .section-3 h2 {
		margin-bottom: 30px;
	}

	#vision .section-5 {
		padding: 30px 0 10px;
	}

	#vision .section-5 .col-7 {
		width: 100%;
	}

	#vision .section-4 .bottom {
		padding: 30px 0;
	}

	#strategy .section-2-body {
		min-height: 0;
	}

	#tenders .section-1 {
		padding: 30px 0 10px;
	}


	#tenders .section-2 {
		padding: 30px 0 10px;
	}
	#tenders .section-1 h2,
	#tenders .section-2 h2 {
		font-size: 24px;
	}

	#tenders .section-2 .form,
	#tenders .section-1 .form {
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 650px) {
	#slogan-small .submenu ul li.home {
		padding: 20px 0 0;
	}
	#slogan-small .submenu ul li.separator {
		padding: 20px 0 0;
	}
	#slogan-small .submenu ul li.section {
		float: none;
		padding: 20px 0 0;
	}
	#slogan-small .submenu ul li.section + li {
		clear: both;
	}
	#slogan-small .submenu ul li + li {
		margin: 0 15px 0 0;
	}
	#slogan-small .submenu ul li a {
		padding: 15px 0;
		font-size: 1.5rem;
	}
	#articles .articles-list .grid-item {
		width: 100%;
	}
	ul.form li input[type='text'] ,
	ul.form li input[type='text'] ,
	ul.form li input[type='text']  {
		width: 100%;
	}
	ul.form li.cf input[type="text"] + input[type="text"] {
		margin: 1% 0 0;
	}

	.hidden-mobile {
		display: none !important;
	}
}
@media screen and (max-width: 550px) {
	.img-text-box figure {
		width: 100%;
	}
	.img-text-box .inner {
		width: 100%;
		padding: 30px;
	}
	#recent-articles .articles-list .col-3 {
		width: 100%;
	}
	#protecting-values .section-5 .logos {
		padding: 25px 0 35px
	}
	#protecting-values .section-5 .logos .col-3 {
		height: 75px;
		line-height: 75px;
		text-align: center;
	}
	#protecting-values .section-5 .logos img {
		display: inline-block;
		max-width: 60%;
		vertical-align: middle;
	}

	.captcha {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		float: none;
	}

	#fCaptcha {
		margin-left: 0;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.fileuploader {
		margin-bottom: 10px !important;
		margin-top: 10px;
	}

	.form .submit {
		float: none;
		width: 100%;
	}
	.form .submit .btn {
		text-align: center;
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#logo {
		width: 160px;
		margin: 24px 0 23px 15px
	}
	#slogan-small .submenu ul li.section {
		float: none;
		font-size: 1.8rem;
		padding: 20px 0 0px
	}
	#slogan-small .submenu ul li a {
		padding: 10px 0;
		font-size: 1.2rem;
	}

	#vision .section-4 h2 {
		padding: 0;
	}
}
