html{display: block; height: 100vh;}
body{display: block; background: #eeb310; color: white; padding: 0; margin: 0; font-smoothing: antialiased !important;}


h1,h2,h3,h4,h5,h6{
    font-family: "gill-sans-nova", Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -.05em;
    padding: 0; margin: 0;
    line-height: 1em;
}

.button{
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 13px;
    font-family: "gill-sans-nova", Arial, Helvetica, sans-serif;
    color: #151515;
    border: 2px solid white;
    position: relative;
}

.button.back{
    padding: 10px 60px;
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 10px;
    background: white; 
    color: #eeb310;
}

.button.back:hover{
    color: #FFF;
    background: transparent;
}

.button.back::after{
    content: "";
    width: 40px; height: 30px;
    background: url(images/buttons/left-arrow-white.svg) no-repeat;
    background-size: 40px 30px; background-position: center center;
    position: absolute;
    top: 3px; left: 10px;
    filter: invert(100%);
}

.button.back:hover::after{
    filter: invert(0%);
}

.button2{
    background: #151515;
    color: #eeb310;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 40px;
    font-size: 13px;
    font-family: "gill-sans-nova", Arial, Helvetica, sans-serif;
    border: 2px solid #eeb310;
    transition: all 0.25s;
}

.button2:hover{
    background: #eeb310; color: #151515; transition: all 0.25s;
}

.button2.big{
    font-size: 24px;
    padding: 20px 60px;
}

#masthead{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    background: white;
}

#masthead a.logo{
    position: absolute; 
    top: 20px; left: 60px;
    width: 100px; height: 100px;
    background: url(images/brand/logo-color.svg) no-repeat;
    background-size: 90% 90%; background-position: center;
    transform: translateY(0);
    opacity: 0;
    transition: all 0.25s;
}

#masthead .logobox{
    position: absolute;
    top: 0; left: 20px;  width: 180px; height: 180px;
    background: white;
    opacity: 0;
}

#masthead.show .logobox{opacity: 1; transition: opacity 0.5s; display: none;}

#masthead.show a.logo{transform: translateY(-20px); opacity: 1; transition: all 0.5s;}

#masthead .nav{
    position: absolute;
    top: 42px; right: 60px;
    display: block;
    opacity: 0;
}


#masthead.show .nav{opacity: 1;}

#masthead .nav ul{
    padding: 0; margin: 0; text-indent: 0;
}

#masthead .nav ul li{
    display: inline-block;
    margin-left: 50px;
    padding: 0; 
    list-style: none;
    position: relative;
    padding-top: 30px;
    transform: translateY(0px);
    opacity: 0;
    transition: all 0.25s;
}

#masthead.show .nav ul li:nth-child(1){transition-delay: 0.2s;}
#masthead.show .nav ul li:nth-child(2){transition-delay: 0.4s;}
#masthead.show .nav ul li:nth-child(3){transition-delay: 0.6s;}
#masthead.show .nav ul li:nth-child(4){transition-delay: 0.8s;}
#masthead.show .nav ul li:nth-child(5){transition-delay: 1s;}

#masthead.show .nav ul li{transform: translateY(-30px); opacity: 1; transition: all 0.25s;}

#masthead .nav ul li::after{
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0%;
    opacity: 0;
    border-bottom: 2px solid #151515;
    transition: all 0.25s;
}

#masthead .nav ul li:hover::after, #masthead .nav ul li.active::after{
    width: 100%;
    opacity: 1;
    transition: all 0.25s;
}

#masthead .nav ul li:last-child::after{display: none;}

#masthead .nav ul li a{
    color: #151515;
    text-decoration: none;
    display: inline-block;
    font-family: "gill-sans-nova", Arial, Helvetica, sans-serif;
    font-weight: 700;
}


#masthead .nav ul li a.menu_button{ padding: 10px 20px; border: 2px solid #151515;}
#masthead .nav ul li:hove:last-child{border-bottom: 0px none; }
#masthead .mobile_nav{
    display: none;
}

#masthead .mobile_nav .touch{
    width: 40px; height: 40px; position: absolute; top: 20px; right: 20px; 
}

#masthead .mobile_nav .touch::before, #masthead .mobile_nav .touch::after{
    content: "";
    display: block;
    width: 100%; border-top: 1px solid #151515;
    position: absolute;
    left: 0;
}

#masthead .mobile_nav .touch::before{top: 15px; transition: transform 0.25s;}
#masthead .mobile_nav .touch::after{top: 25px; transition: transform 0.25s;}

#masthead .mobile_nav .touch.open::before{
    transform: translateY(5px) rotate(45deg);
    transition: transform 0.25s;
}

#masthead .mobile_nav .touch.open::after{
    transform: translateY(-5px) rotate(-45deg);
    transition: transform 0.25s;
}

#masthead .mobile_nav ul{position: absolute; top: 60px; right: 0; width: calc(100vw - 60px); height: calc(100vh - 120px); padding: 30px; background: white; display: none;}
#masthead .mobile_nav ul li{display: block; list-style: none;}
#masthead .mobile_nav ul li a{display: block; font-family: "gill-sans-nova", Arial, Helvetica, sans-serif; font-size: 13px; padding: 20px 10px; text-align: center; text-decoration: none; color: #151515; font-weight: 700; text-transform: uppercase;}

#masthead .head_link{position: fixed;
    top: 70px; left: 50%; transform: translateX(-50%);
}

#masthead .head_link p{font-family: "gill-sans-nova", Arial, Helvetica, sans-serif; font-size: 13px;}

.slide_wrap{display: block; position: relative; width: 100%; height: 100%; overflow: hidden;}
.slide_wrap .slide_content{display: block; position: relative; width: calc(100%); height: 100%; overflow-y: scroll; padding-right: 20px;}

@media(max-width: 1024px){
    #masthead.show .nav, #masthead .nav{display: none;}
    #masthead .mobile_nav{display: block;}
}

.iosfix {
  height: 101%;
  overflow: hidden;
}

.smallpixel{
	display: block;
	width: 1px; height: 1px;
}

/*-------------------------------- ANIMATIONS -------------------------------- */

.blink1{
	animation-name: blink;
	animation-duration: 250ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.blink2{
	animation-name: blink2;
	animation-duration: 1000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.blink3{
	animation-name: blink3;
	animation-duration: 1000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.softblink{
	animation-name: softblink;
	animation-duration: 2000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.appear1{
	animation-name: blink3;
	animation-duration: 250ms;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
	
}


#loader{
    position: fixed;
    z-index: 100;
    width: 100px; height: 100px;
    top: calc(50% - 55px); left: calc(50% - 55px);
    
}

#loader::after{
    content: "";
    display: block;
    position: absolute;
    top: -5px; left: -5px;
    width: 100px; height: 100px; border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.2);
    border-right: 5px solid white;
    animation: spin 0.5s linear infinite;
}



@keyframes blink{
	0%{opacity: 0;}
	49%{opacity: 0;}
	50%{opacity: 1;}
	100%{opacity: 1;}
}


@keyframes blink1{
	0%{opacity: 0;}
	5%{opacity: 0;}
	6%{opacity: 1;}
	10%{opacity: 1;}
	11%{opacity: 0;}
	15%{opacity: 0;}
	26%{opacity: 1;}
	30%{opacity: 1;}
	31%{opacity: 0;}
	35%{opacity: 0;}
	36%{opacity: 1;}
	80%{opacity: 1;}
	81%{opacity: 0;}
	100%{opacity: 0;}
}

@keyframes blink2{
	0%{opacity: 0.3;}
	5%{opacity: 0.3;}
	6%{opacity: 0;}
	10%{opacity: 0;}
	11%{opacity: 0.3;}
	100%{opacity: 0.3;}
}

@keyframes blink3{
	0%{opacity: 1;}
	5%{opacity: 1;}
	6%{opacity: 0;}
	10%{opacity: 0;}
	11%{opacity: 1;}
	100%{opacity: 1;}
}

@keyframes softblink{
	0%{opacity: 1;}
	50%{opacity: 0;}
	100%{opacity: 1;}
}

@keyframes appear1{
	0%{opacity: 1;}
	50%{opacity: 0;}
	100%{opacity: 1;}
}

@keyframes loadbar{
    0%{width: 0%;}
    70%{width: 100%;}
    71%{width: 0%;}
    80%{width: 100%;}
    81%{width: 0%;}
    90%{width: 100%;}
    91%{width: 0%;}
    100%{width: 100%;}
}

@keyframes pulseanimate{
    0%{transform: scale(0.4); opacity: 1;}
    50%{transform: scale(0.7); opacity: 1;}
    100%{transform: scale(1); opacity: 0;}
}


@keyframes bigarrow{
    0%{width:calc(50% - 300px);; opacity: 1;}
    50%{width: calc(100% - 300px); opacity: 1; }
    100%{width: calc(100% - 300px);  opacity: 1;}
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}