

#loader {
    z-index: 10;
}
header {
	position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 1.5625vw 2.1875vw;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 8;
}
header > div {
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
}
header > a{
	text-decoration: none;
   /* font-size: 2.25vw;*/
    color: #f5f3e5;
    margin: 0vw 0 0 0;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}
.page-wrap {
    z-index: 7;
}

/* Menu styles */

.menu {
	position: fixed;
	top: 0px;
	right: 0;
	z-index: 9;
	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;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:row;
    overflow-y: scroll;	
}
.menu .left{
	position:relative;
	width:60%;
    overflow: hidden;
    z-index:1;
    min-height:650px;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}
.menu.menu--open .left {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.menu .right{
	width:40%;
	position:relative;
    z-index:2;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    min-height:650px;
    background: #f5f3e3;	
    overflow: hidden;
}
.action:focus {
	outline: none;
}

.action--open {
	position:relative;
	color: #fff;
	z-index: 1000;
	height: 26px;
    width: 35px;
    margin: 0;
	padding: 0;
	cursor: pointer;
	background: none;
	border:none;
}
.action--open span{
	position:absolute;
    transition: all 0.3s;
    height:3px;
    width: 100%;
    display: block;
    background-color: white;
    top:0;
    right:0;
    transition:0.3s ease;
    
}
.light-bg .action--open span {
    background-color: #52574F;
}
.action--open span:nth-of-type(2) {
    width: 75%;
    top:11px;

}
.action--open span:nth-of-type(3) {
    width: 50%;
    top:22px;
}
.action--open:hover span:nth-of-type(2),
.action--open:hover span:nth-of-type(3){
    width: 100%;
}
.action--open span:nth-of-type(1){
    animation:topBar--burger 0.35s forwards;
}
.action--open span:nth-of-type(3){
    animation:bottomBar--burger 0.35s forwards;
}
@keyframes topBar--burger{
    0%{
        transform:translateY(11px) rotate(45deg);
    }
    50%{
        transform:translateY(11px) rotate(0deg);
    }
    100%{
        transform:translateY(0px) rotate(0deg);
    }
}

@keyframes bottomBar--burger{
    0%{
        transform:translateY(-11px) rotate(-45deg);
    }
    50%{
        transform:translateY(-11px) rotate(0deg);
    }
    100%{
        transform:translateY(0px) rotate(0deg);
    }
}
.action--close {
    font-size: 50px;
    color: #45464e;
    display: block;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background: none;
}

.menu--open {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.menu__wrap {
	position: absolute;
	top: 130px;
    bottom: 78px;
	overflow: hidden;
	width: 100%;

	position:relative;
	top:initial;
	bottom:initial;
	min-height:450px;
}

.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;
}

.menu__level:focus {
	outline: none;
}

.menu__level--current {
	visibility: visible;
}

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

.menu__link {
	font-weight: 600;
	position: relative;
	display: block;
    padding: 8px 3vw;	
    color: #52574F;
	font-family: "Verlag Cond A", "Verlag Cond B";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #52574f;
    text-decoration: none;
    -webkit-transition: color 0.35s, background-color 0.35s;
    transition: color 0.35s, background-color 0.35s;
}

.menu__link[data-submenu]::after {
    content: "\e829";
    position: absolute;
    right: 3vw;
    color: #2a2b30;
    font-size: 20px;
    line-height: 20px;
    font-family: "Fontello";
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu__link:hover, .menu__link:focus {
        background: rgba(222, 221, 198, 0.55);
}

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

[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 ui & contact --*/
.menu__header{
    padding: 10px 2vw;	
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu__header .logo {
    border: 2px solid #a6ad42;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    line-height: 44px;
    color: #a6ad42;
    border-radius: 50%;
    display: block;
}
.menu .contact {
    position: absolute;
    bottom: 0;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    width: 100%;
    background: #f5f3e3;
    border-top: 1px solid #aaa482;
    flex-wrap: nowrap;
    padding: 12px 3vw;
}
.menu .signup{
    border: none;
}
.menu .signup h4{
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0 0 5px;
    text-align: left;
}
.menu .mc-field-group {
    margin: 0;
    width: 150px;
}
#mc_embed_signup_scroll .clear.submit-btn {
    right: 0;
    opacity: 1;
    width: 4vw;
    height: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 2;
}
#mc-embedded-subscribe {
    text-indent: -999999px;
    overflow: hidden;
    outline: none;
    margin: 0;
    padding: 0;
    border: none;
    font-family: "Fontello";
    color: #f5f3e4;
    font-weight: 300;
    width: 4vw;
    background: transparent;
    cursor: pointer;
    z-index: 3;
    position: absolute;
    height: 100%;
}
.clear.submit-btn::before {
    display: block;
    content: "\e829";
    font-family: "Fontello";
    right: 1.5vw;
    position: absolute;
    z-index: 2;
    pointer-events: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1vw;
}
.menu form input[type="email"] {
    box-shadow: none;
    border: 1px solid #aaa482;
    background: #fffef5;
    padding: 15px 4vw 15px 15px;
    color: #52574F;
    outline: none;
    display: block;
    width: 100%;
    z-index: 1;
    position: relative;
    font-family: "Double";
    font-weight: 400;
    font-size: 1vw;
    letter-spacing: 1.5px;
    background-color: transparent;
    -webkit-transition: 0.35s ease;
    -moz-transition: 0.35s ease;
    -ms-transition: 0.35s ease;
    transition: 0.35s ease;
}


.menu .social{
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
    list-style: none;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.menu .social li{
    margin: 0 30px 0 0;

}
.menu .social li:nth-of-type(1) {
    border-right: 1px solid #aaa482;
    padding: 0 30px 0 0;
}
.menu .social li a{
    display: block;
    text-decoration: none;
    font-size: 24px;
    margin: 0;
    color: #aaa584;
    font-style: normal;
    line-height: 1.5;
    text-transform: lowercase;
    letter-spacing: 0;
    font-weight: 400;
    font-family: "Double";
}

.menu .social li:last-of-type {
    margin: 0;
}


/*-- breadcrumbs --*/
.menu__breadcrumbs {
	font-size: 0.65em;
    line-height: 1;
    margin: 12px 15px 0;
    transform:translateX(62px);
    transition:0.25s;
}
.menu__breadcrumbs a {
	font-weight: bold;
	display: inline-block;
	cursor: pointer;
	vertical-align: middle;
	/*text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Verlag Cond A", "Verlag Cond B";*/
    text-transform:capitalize;
	color: #aaa486;
    font-family:"Double";
    font-size: 18px;
    letter-spacing: 1px;
}

.menu__breadcrumbs a:last-child {
	pointer-events: none;
}

.menu__breadcrumbs a:hover,
.menu__breadcrumbs a:focus {
	color: #a6ad42;
}

.menu__breadcrumbs a:not(:last-child)::after {
	 
    /*content: '\e814';
	font-family: 'fontello';
    content:' / ';
	display: inline-block;
	padding: 0 0.5em; */

    display: inline-block;
    padding: 0 7px;
    font-weight: 400;
    color: #aaa282;
    font-family: "Fontello";
    content: "\e829";
    font-size: 14px;
    line-height: 100%;
    
}

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

.menu__back { 
	margin: 0;
	cursor: pointer;
	border: none;
    outline:none;
    display: block;
    color: #f5f3e3;
    font-family: "Verlag Cond A", "Verlag Cond B";
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.0;
    font-size: 14px;
    padding: 12px 19px 18px;
    background: #a7ae43;
    position:absolute;
    top:0;
    left:0;
    transform-origin:left;
    transform:scaleX(1);
    transition:transform 0.25s;
}

.menu__back--hidden {
	pointer-events: none;
	/* opacity: 0; */
    transform:scaleX(0);
}

.menu__back:hover,
.menu__back:focus {
	color: #fff;
	outline: none;
}
#menu__crumbs{
    height:46px;
    position:relative;
    border-top: 1px solid #aaa382;
    border-bottom: 1px solid #aaa382;
    margin: 12px 0;
    transition:opacity 0.25s;
}
#menu__crumbs.root .menu__breadcrumbs{
    transform:translateX(0);
}
.menu__back span.demo-icon.icon-back-arrow {
    font-size: 8px;
    line-height: 0;
}

.menu__breadcrumbs a {
    font-size: 18px;
    color: #52574f;
    line-height: 20px;
}
#menu__crumbs.root {
    opacity: 0;
}
.menu__breadcrumbs a:first-child::after{
    display:none;
}


/*-- nav bg --*/
.menu img {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 45%;
}

/*-- nav callouts --*/
.nav-blocks{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap:wrap;
}
.nav-blocks a{
    height:45vh;
    min-height: 292.5px;
    width:50%;
    position:relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;   
    flex-direction: column;
    justify-content: flex-end;
    overflow:hidden;
}
.nav-blocks a:first-of-type{
    width:100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.88);
    z-index: 1;
    height:55vh;
    min-height: 357.5px;
}
.nav-blocks .text,
#carousel-0 .text{
    z-index:1;
    position: relative;
    bottom: initial;
    left: initial;
    padding: 3vw;
    color:#f5f3e4;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);    
    -webkit-transition: -webkit-transform 0.35s, color 0.35s;
    transition: transform 0.35s, color 0.35s;
}
.nav-blocks h5,
#carousel-0 h5 {
    font-size: 35px;
    line-height: 1.2;
}
.nav-blocks h4,
#carousel-0 h4 {
    font-size: 18px;
    -webkit-transition:color 0.35s;
    transition:color 0.35s;
}
.nav-blocks a:hover h4,
#carousel-0 a:hover h4{
    color:#a6ad42;
}
.nav-blocks a:hover .text,
#carousel-0 a:hover .text {
    transform: translateY(0px) scale(1);
}
.nav-blocks .bg-img::after,
#carousel-0 .bg-img::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(20, 21, 20,0) 0%, rgb(20, 21, 20) 75%);
    background: linear-gradient(to bottom, rgba(20, 21, 20,0) 0%, rgba(20, 21, 20, 0.7) 75%);
    content: '';
    opacity: 0;
    -webkit-transform: translate3d(0,50%,0);
    transform: translate3d(0,50%,0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.nav-blocks a:hover .bg-img::after,
#carousel-0 a:hover .bg-img::after {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    background: -webkit-linear-gradient(top, rgba(20, 21, 20,0) 0%, rgb(20, 21, 20) 75%);
    background: linear-gradient(to bottom, rgba(20, 21, 20,0) 0%, rgba(20, 21, 20, 0.7) 75%);
}
.nav-blocks .reveal-btn,
#carousel-0 .reveal-btn{
    display: block;
    position: relative;
    overflow: hidden;
    transition-delay: .25s;
    z-index:2;
}
.nav-blocks .reveal-btn .btn.filled,
#carousel-0 .reveal-btn .btn.filled{
    padding: 10px 30px;
    font-size: 12px;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1) transform;
    transform: translateY(100%);
}
.nav-blocks a:hover .reveal-btn .btn,
#carousel-0 a:hover .reveal-btn .btn{
    transform: translateY(0);
    transition-delay: inherit;
}
#carousel-0{
	display:none;
}
#carousel-0 .flickity-button{
	display:none;
}
#carousel-0 .carousel-cell a{
	position:relative;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
#carousel-0 .text{
	padding:35px;
}
#carousel-0 .carousel-cell a.img-wrap:hover::after {
    background: rgba(30, 47, 39, 0);
}

/*-- responsive --*/                
@media only screen and (max-width:1024px){
    .nav-blocks h4{
        font-size:16px;
        letter-spacing:3px;
    }
    .nav-blocks h5{
        font-size:28px;
    }
}

@media only screen and (max-width:768px){
    .menu .right {
        width: 50%;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.85);
    }
    .menu .left {
        width: 50%;
    }
    .nav-blocks a{
        width:100%;
        height:25vh;
        min-height:162.5px;
    }
    .nav-blocks a:first-of-type{
        z-index:2;
        height:50vh;
        min-height:325px;
    }
    .nav-blocks a:nth-of-type(2){
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.88);
        z-index:1;
    }
    .nav-blocks h4{
        font-size:12px;
        letter-spacing:2px;
    }
    .nav-blocks h5{
        font-size:22px;
    }
    .menu__link {
        font-size: 20px;
        padding: 10px 30px;
    }
    .menu__breadcrumbs {
       /* padding: 10px 30px;*/
    }
    .menu__header {
        padding: 10px 20px;
    }
    .menu .contact {
        padding: 20px;
    }

}
@media only screen and (max-width:650px){
	.menu{
	    background: #f5f3e3;
	}
    .menu .left{
        display:none;
    }
    .menu{
        min-height:0;
    }
    .menu .right{
        width:100%;
        box-shadow:none;
    }
    .menu .contact{
    	position:static;
	}

	.menu .right {
	    overflow-x: hidden;
	}
    #carousel-0{
    	display:block;
    	margin:0 auto 50px;
    }
    #carousel-0 .flickity-page-dots {
	    bottom: -32px;
	}
    #carousel-0 .flickity-page-dots .dot {
	    margin: 0 8px;
	    width: 6px;
	    height: 6px;
	}
}

















/*-- fade in animations --*/
.menu .left {
    background-color: #1e2f27;
}

.nav-blocks a::before {
    content: "";
    display: block;
    background: #1e2f27;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: transform 0.1s 0s;
    transform-origin:left;
}

.menu--open .nav-blocks a::before {
    transform: scaleX(0);
    transition: transform 0.35s 0.35s;
}
.menu--open .nav-blocks a:nth-of-type(2)::before {
    transition: transform 0.35s 0.45s;
}

.menu--open .nav-blocks a:last-of-type::before {
    transition: transform 0.35s 0.55s;
}

.nav-blocks .bg-img {
    transform: scale(1.2);
    transition: transform 0.1s 0s;
    transform-origin: center;
}
.menu--open .nav-blocks .bg-img {
    transform: scale(1);
    transition: transform 0.5s 0.35s;
}
.menu--open .nav-blocks a:nth-of-type(2) .bg-img {
    transition: transform 0.5s 0.45s;
}

.menu--open .nav-blocks a:last-of-type .bg-img {
    transition: transform 0.5s 0.55s;
}

.nav-blocks .text h4,
.nav-blocks .text h5{
    opacity:0;
    transition:opacity 0.1s 0;
}
.menu--open .nav-blocks .text h4,
.menu--open .nav-blocks .text h5{
    opacity:1;
    transition:opacity 0.35s 0.5s;
}
.menu--open .nav-blocks a:nth-of-type(2) .text h4,
.menu--open .nav-blocks a:nth-of-type(2) .text h5{
    transition:opacity 0.35s 0.6s;
}
.menu--open .nav-blocks a:last-of-type .text h4,
.menu--open .nav-blocks a:last-of-type .text h5{
    transition:opacity 0.35s 0.7s;
}





/*-- added new search icon --*/
.menu .social li:nth-of-type(1) {
    border: none;
    padding: 0;
}

.menu .resources {
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
    list-style: none;
    display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.menu .contact {
    padding: 0;
}

.menu .social {
    padding: 12px 3vw;
}

.menu .resources a {
    padding: 12px 25px;
    border-right: 1px solid #aaa482;
    font-size: 24px;
    line-height: 1.5;
    color: #aaa584;
}
@media only screen and (max-width:650px){
    .menu .resources a{
        border:none;
        padding:0;
        margin: 0 30px 0 0;
    }
    .menu .resources{
        padding: 12px 3vw;
    }
    .menu .resources a:last-of-type{
        margin:0;
    }
}