/* Icons (made with Icomoon.io) */

@font-face {
	font-family: 'feather';
	font-weight: normal;
	font-style: normal;
	src: url('../fonts/feather/feather.eot?1gafuo');
	src: url('../fonts/feather/feather.eot?1gafuo#iefix') format('embedded-opentype'), url('../fonts/feather/feather.woff2?1gafuo') format('woff2'), url('../fonts/feather/feather.ttf?1gafuo') format('truetype'), url('../fonts/feather/feather.woff?1gafuo') format('woff'), url('../fonts/feather/feather.svg?1gafuo#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: '\e901';
}

.icon--menu:before {
	content: '\e903';
}

.icon--cross:before {
	content: '\e117';
}


/* Menu styles */

.menu {
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	height: calc(75vh - 120px);
	/* background: #1c1d22; */
}

.menu__wrap {
	position: absolute;
	top: 3.5em;
	bottom: 0;
	overflow: hidden;
	width: 100%;
}

.menu__level {
	position: absolute;
	top: 0;
	left: 1em;
	visibility: hidden;
	overflow: hidden;
	overflow-y: scroll;
	width: calc(100% + 50px);
	height: 100%;
	margin: 0;
	padding: 0;
	padding-left: 2em;
	padding-top: 2em;
	list-style-type: none;
}

.menu__level:focus {
	outline: none;
}

.menu__level--current {
	visibility: visible;
}

.menu__item {
	display: block;
	width: calc(100% - 50px);
	height: 70px;
}



.menu__link {
	font-weight: 600;
	position: relative;
	display: block;
	/* padding: 1em 2.5em 1em 1.5em; */
	padding: 0em;
	color: #000000;
	-webkit-transition: color 0.1s;
	transition: color 0.1s;
	font-size: 3.2rem;
	height: 4rem;
	font-family: 'Helvetica', sans-serif;
}

.menu__link[data-submenu]::after {
	content: '\e904';
	font-family: 'feather';
	position: absolute;
	right: 0;
	padding: 0.25em 1.25em;
	color: #fe5b46;
}
button.action.action--close {
    box-shadow: none;
}

.menu__link:hover,
.menu__link:focus,
.menu__link[data-submenu]:hover::after,
.menu__link[data-submenu]:focus::after {
	color: #fe5b46;
}

.menu__link--current::before {
	content: '\00B7';
	font-size: 1.5em;
	line-height: 0;
	position: absolute;
	top: 50%;
	left: -0.5em;
	height: 4px;
	color: #fe5b46;
}

[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 {
	font-size: 1.5em;
	line-height: 1;
	position: relative;
	/* padding: 2.5em 3.75em 1.5em 2.5em; */
	padding: 0em;
	padding-left: 2em;
}

.menu__breadcrumbs a {
	font-weight: bold;
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fe5b46;
}

.menu__breadcrumbs a:last-child {
	pointer-events: none;
}
.icon--cross {display: none; }
.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
	color: #fe5b46;
}

.menu__breadcrumbs a:not(:last-child)::after {
	content: '';
    display: inline-block;
    padding: 0 0.5em;
    background: url(../images/arrow-right-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-left: 10px;
    background-size: contain;
}

.menu__breadcrumbs a:not(:last-child):hover::after,
.menu__breadcrumbs a:not(:last-child):focus::after {
	color: #33353e;
}

.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;
	top: 1em;
	left: 1em;
	display: none;
	color: #fff;
	position: fixed;
	z-index: 1000;
}

.action--close {
	font-size: 1.1em;
	top: 1.25em;
	right: 1em;
	display: none;
	color: #45464e;
}

@media screen and (max-width: 40em) {
	.action--open,
	.action--close {
		display: block;
	}
	.menu {
		z-index: 1000;
		top: 0;
		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);
	}
}

.modal-content .modal-body.color-2::before {
	display: none;
}
@media (min-width: 768px) {
	.modal-content .modal-body.color-2 .icon-2 {
		display: none;
	}
	.modal-content {
		width: 100vw;
		height: 100vh;
		padding-top: 20px !important;
        padding-left: 10px !important;
	}
	.modal-open .modal {
		padding-left: 0px !important;
	}
}


.menu__link[data-submenu]::after {
    content: '';
    /* font-family: 'feather'; */
    position: absolute;
    right: 0;
    padding: 0.25em 1.25em;
    /* color: #fe5b46; */
    background-image: url(../images/arrow-right.svg);
    background-repeat: no-repeat;
    height: 100%;
    top: 40px;
    background-size: 50% 50%;
	display: none;
}

.menu__breadcrumbs .menu---icon {
    display: none;
}

.menu---icon::after {
    content: '';
    /* font-family: 'feather'; */
    position: absolute;
    right: 0;
    padding: 0.25em 1.25em;
    /* color: #fe5b46; */
    background-image: url(../images/arrow-right.svg);
    background-repeat: no-repeat;
    height: 100%;
    top: 0px;
    background-size: 50% 50%;
}

.modal-body.p-5.img.d-flex.color-1.d-flex.align-items-center .text .text {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    top: 50px !important;
    position: relative;
}
.modal-content button.close {
    width: 100px;
    height: 100px;
    background: transparent;
    color: #222733;
    font-size: 2rem;
	opacity: 1;
	box-shadow: none;
}
@media (min-width: 768px) { 
	.menu {
		height: calc(100vh - 200px);
	}
	.menu__link {
		font-size: 1.7rem;
	}
	.menu__link[data-submenu]::after {
		top: 0px;
        right: -25px;
	}
	.menu__level {
		padding-left: 0em;
	}
	.menu__breadcrumbs {
		padding-left: 10px;
	}
	.modal-content .modal-body.color-1 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.menu__item {
		height: 60px;
	}
	.modal-content .modal-body .icon-2 {
		left: 0;
	}
}
@media (min-width: 1024px) { 
	.menu {
		height: calc(100vh - 200px);
	}
	.menu__link {
		font-size: 2rem;
	}
	.menu__link[data-submenu]::after {
		top: 0px;
        right: -30px;
	}
	.menu__level {
		padding-left: 0em;
	}
	.menu__breadcrumbs {
		padding-left: 10px;
	}
	.modal-content .modal-body.color-1 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.menu__item {
		height: 70px;
	}
	.modal-content .modal-body .icon-2 {
		left: 0;
	}
}
@media (min-width: 1440px) { 
	.menu {
		height: calc(100vh - 200px);
	}
	.menu__link {
		font-size: 3.5em;
	}
	.menu__link[data-submenu]::after {
		top: 0px;
        right: -20px;
        background-size: 50% 50% !important;
	}
	.menu__level {
		padding-left: 0em;
	}
	.menu__breadcrumbs {
		padding-left: 10px;
	}
	.modal-content .modal-body.color-1 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.menu__item {
		height: 85px;
	}
	.modal-content .modal-body .icon-2 {
		left: 0;
	}
}
@media (min-width: 2560px) { 
	.menu {
		height: calc(100vh - 200px);
	}
	.menu__link {
		font-size: 6rem;
	}
	.menu__link[data-submenu]::after {
		top: 60px;
        right: -20px;
        background-size: contain;
	}
	.menu__level {
		padding-left: 0em;
	}
	.menu__breadcrumbs {
		padding-left: 10px;
	}
	.menu__breadcrumbs a {
		font-size: 40px;
	}
	.modal-content .modal-body.color-1 {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	.menu__item {
		height: 140px;
	}
	.modal-content .modal-body .icon-2 {
		left: 0;
	}
}
@media (max-width: 767px) {
	.modal-body.p-5.img.d-flex.color-1.d-flex.align-items-center .text .text {
		top: 30px;
	}
	.menu---icon::after {
		right: 30px;
	}
	.menu {
		height: calc(100vh - 200px);
	}
	.menu__item {
		height: 50px;
		width: 100%;
	}
	.modal-content .modal-body.color-1 .icon-2 {
		top: 0.5em;
		left: 0em;
		display: block;
	}
	.modal-content .modal-body.color-1 {
		height: 100vh;
		padding-left: 20px !important;
		padding-right: 20px !important;
		overflow-y: hidden;
	}
	.menu__breadcrumbs {
		padding-left: 0em;
	}
	.menu__level {
		padding-left: 0em;
		left: 0em;
	}
	.modal-content .modal-body.color-2 {
		display: none !important;
	}
	.modal-content .modal-body.color-2::before {
		display: none;
	}
	a.menu__link {
		line-height: 32px;
        font-size: 1.6em;
		letter-spacing: 1px;
	}
}

@media (max-width: 375px) {
	.menu__link[data-submenu]::after {
		content: '';
		position: absolute;
		padding: 0.25em 1.25em;
		background-image: url(../images/arrow-right.svg);
		background-repeat: no-repeat;
		height: 100%;
		right: -30px;
    	top: 0px;
	}
	.menu__item {
		height: 38px;
	}
	.modal-content .modal-body.color-1 .icon-2 {
		top: 0.5em;
		left: 0em;
		display: block;
	}
	.modal-content .modal-body.color-1 {
		height: 100vh;
		padding-left: 20px !important;
		padding-right: 20px !important;
		overflow-y: hidden;
	}
	.menu__breadcrumbs {
		padding-left: 0em;
	}
	.menu__level {
		padding-left: 0em;
		left: 0em;
	}
	.modal-content .modal-body.color-2 {
		display: none !important;
	}
	.modal-content .modal-body.color-2::before {
		display: none;
	}
	a.menu__link {
		line-height: 32px;
        font-size: 20px;
		letter-spacing: 1px;
	}
}
@media (max-width: 767px) {
	.modal-content .modal-body.color-2 {
		display: none !important;
	}
}