/* Icons (made with Icomoon.io) */

@font-face {
	font-family: 'feather';
	font-weight: normal;
	font-style: normal;
	src: url('/wps/wcm/connect/d0112735-dc21-445e-a72f-b52c9c33de5e/feather.eot?MOD=AJPERES');
	src: url('/wps/wcm/connect/d0112735-dc21-445e-a72f-b52c9c33de5e/feather.eot?MOD=AJPERES#iefix') format('embedded-opentype'), url('/wps/wcm/connect/5151a1d6-ec06-4cd1-bb8c-50225f738864/feather.woff2?MOD=AJPERES') format('woff2'), url('/wps/wcm/connect/843f4567-053e-45a1-bde2-263994052255/feather.ttf?MOD=AJPERES') format('truetype'), url('/wps/wcm/connect/3323fe67-6218-464a-90f4-9c02d2cfb728/feather.woff?MOD=AJPERES') format('woff'), url('/wps/wcm/connect/a6ed9318-7d43-4e89-b3f4-73ea61752aa6/feather.svg?MOD=AJPERES#feather') format('svg');
}

.icon {
	font-family: 'feather';
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-transform: none;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
}

.icon--arrow-left:before {
	content:'\e055';
}

.icon--menu:before {
	content: '\e903';
    color: #c2c2c2;
}

.icon--cross:before {
	content: '\e117';
}


/* Menu styles */

.menu.intro {
    margin-top: -32px;
}

.menu {
	position: fixed;
	top: 110px;
	left: 0;
	width: 300px;
	height: calc(100vh - 120px);
	background: #fff;
}

.menu__wrap {
	position: absolute;
	top: 3.5em;
	bottom: 0;
	overflow: hidden;
	width: 100%;
}

.menu__level {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	overflow-y: scroll;
	width: calc(100% + 50px);
	height: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	background-color: #595959;
}

.menu__level--current {
	visibility: visible;
}

.menu__item {
	border-bottom: 1px solid #eeeeee;
	display: block;
	// width: calc(100% - 50px);
}

.menu__link {
    font-family: 'Arimo', sans-serif;
	position: relative;
	display: block;
	padding: 1em 2.5em 1em 1.5em;
	color: #ffd200;
	-webkit-transition: color 0.1s;
	transition: color 0.1s;
    font-size: 14px;
    text-decoration: none;
}

.menu__link[data-submenu]::after {
	content: '';
	font-family: 'feather';
	position: absolute;
	right: 58px;
	padding: 0.25em 1.25em;
	color: #2a2b30;
	background: url(../images/icon_submenu_link.png) no-repeat center;
	height: 15px;
}

.menu__link:hover,
.menu__link[data-submenu]:hover::after {
	color: #666666;
    text-decoration: none;

}

.menu__link--current::before {
	content: '';
	font-size: 1.5em;
	line-height: 0;
	position: absolute;
	left: 0.2em;
	height: 20px;
	color: #00448c;
	// background: url(../images/menu_link_current.png) no-repeat center left;
	background-size: contain;
	width: 13px;
}

[class^='animate-'],
[class*=' animate-'] {
	visibility: visible;
}

.animate-outToRight .menu__item {
	-webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes outToRight {
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.animate-outToLeft .menu__item {
	-webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes outToLeft {
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.animate-inFromLeft .menu__item {
	-webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes inFromLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.animate-inFromRight .menu__item {
	-webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes inFromRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.menu__breadcrumbs {
	border-bottom: 1px solid #eeeeee;
	font-size: 0.65em;
	line-height: 1;
	position: relative;
	padding: 2.2em 3.75em 1.5em 2.5em;
	font-weight: bold;
	background-color: #595959;
}

.menu__breadcrumbs a {
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
    font-size: 14px;
	text-transform: capitalize;
    color:#ffffff;
    font-family: 'Arimo', sans-serif;

}

.menu__breadcrumbs a:last-child {
	pointer-events: none;
}

.menu__breadcrumbs a:hover {
	color: #333;
}

.menu__breadcrumbs a:not(:last-child)::after {
	content: '|';
	font-family: 'feather';
	display: inline-block;
	padding: 0 0.5em;
	color: #999;
}

.menu__breadcrumbs a:not(:last-child):hover::after {
	color: #999;
}

.menu__back {
	font-size: 1.05em;
	position: absolute;
	z-index: 100;
	top: 0;
	right: 2.25em;
	margin: 0;
	padding: 1.365em 0.65em 0 0;
	cursor: pointer;
	color: #2a2b30;
	border: none;
	background: none;
}

.menu__back--hidden {
	pointer-events: none;
	opacity: 0;
}

.menu__back:hover,
.menu__back:focus {
	color: #fff;
	outline: none;
}


/* Open and close buttons */

.action {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
}

.action:focus {
	outline: none;
}

.action--open {
	font-size: 1.5em;
	margin-top: 26px;
	right: 1em;
	display: none;
	color: #fff;
	z-index: 1000000;
}

.action--close {
	font-size: 1.6em;
	top: 0.6em;
	right: 0.7em;
	display: none;
	color: #c0c0c0;
}

@media screen and (max-width:1170px) {
	.action--open,
	.action--close {
		display: block;
	}
	.menu {
		z-index: 1000;
		top: 112px;
		width: 100%;
		height: 100vh;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
	}
	.menu--open {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

}
