/*@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-Regular.ttf);
}*/

:root{
  --slide1-color: #000000;
  --slide2-color: #000000;
  --slide3-color: #000000;
  --slide4-color: #000000;
  --slide5-color: #000000;
}

html{
  font-size: 10px;
}

body{
  -webkit-overflow-scrolling : touch;
  background: black;
  letter-spacing: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}

a{ text-decoration: none; color: #fff; cursor: pointer; }
a:hover{ color: #fff; }

h1{ letter-spacing: 1px; }
p{margin-bottom: 0;}

/* helper */
.fullscreen{
    width: 100vw;
	height: 100vh;
}
/* -- */

/*-- HEADER --*/

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 999;
  color: white;
  font-weight: 300;
  font-weight: bold;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
  z-index: 100;
  transition: top 0.5s cubic-bezier(0.5,0,0.2,1);
}

header.hidden{
  top:-100px;
}

header .logo{
  font-size: 2rem;
  padding: 0.5rem 1rem;
  flex: 0 1 auto;
  cursor: pointer;
  font-weight: 300;
}

header a .logo{ 
  text-decoration: none; 
  color: white; 
}

header .logo p {
    font-size: 1.16rem;
    text-align: center;
    line-height: 0.6rem;
}

nav{
  cursor: pointer;
}

nav.first-menu{
  flex: 1 1 auto;
}

nav.first-menu > ul{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

nav > ul > li{
  list-style: none;
}

nav.first-menu > ul > li.menu-item{
  font-size: 1.3rem;
  padding: 1.5rem 1.5rem;
  z-index: 99;
}

nav.first-menu > ul > li.cursor{
  padding: 0;
  border:50px solid;
  border-color: var(--slide1-color);
  border-bottom: 14px solid transparent;
  position: absolute;
  box-sizing: border-box;
  width: 100px;
  top: 0;
  /*transform: translateX(-194px);*/
  opacity: 0;
  z-index: -1;
  transition: all .3s cubic-bezier(0.5,0,0.2,1);
}

nav.first-menu > ul > li.cursor.s0{
  opacity: 0;
  transition: none;
}

nav.first-menu > ul > li.cursor.s1{
  opacity: 0;
  border-color: var(--slide1-color);
  border-bottom-color: transparent; 
  transform: translateX(-168px);
}

nav.first-menu > ul > li.cursor.s2{
  opacity: 0;
  border-color: var(--slide2-color);
  border-bottom-color: transparent; 
  transform: translateX(-72px);
}

nav.first-menu > ul > li.cursor.s3{
  opacity: 0;
  border-color: var(--slide3-color);
  border-bottom-color: transparent; 
  transform: translateX(16px);
}

nav.first-menu > ul > li.cursor.s4{
  opacity: 0;
  border-color: var(--slide4-color);
  border-bottom-color: transparent; 
  transform: translateX(98px);
}

nav.first-menu > ul > li.cursor.s5{
  opacity: 0;
  border-color: var(--slide5-color);
  border-bottom-color: transparent; 
  transform: translateX(178px);
}

nav.second-menu{
    flex: 0 1 auto;
}

nav.second-menu > ul{
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

nav.second-menu > ul > li{
  font-size: 1.3rem;
  padding: 1.5rem 1.5rem;
}

/*--mobile menu--*/
  .hamburgher-menu{
    width: 30px;
    height: 50px;
    position: relative;
    padding: 4px 1rem;
    display: none;
  }

/* hamburgher icon */

#hamburgher-icon{
  width: 35px;
  height: 40px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburgher-icon span{
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburgher-icon span:nth-child(1) {
  top: 10px;
}

#hamburgher-icon span:nth-child(2),#hamburgher-icon span:nth-child(3) {
  top: 18px;
}

#hamburgher-icon span:nth-child(4) {
  top: 26px;
}

#hamburgher-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hamburgher-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburgher-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburgher-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
/*--*/


ul.mobile.menu-list{
  font-size: 1.8rem;
  position: fixed;
  background: rgba(0,0,0,0.7);
  right: -100%;
  top: 0;
  padding: 50px 0 0 0;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.5,0,0.2,1);
}

ul.mobile.menu-list .menu-item:last-child{
  border-bottom: 0;
}

ul.mobile.menu-list.active {
  right: 0;
  transition: all .5s cubic-bezier(0.5,0,0.2,1);
}

ul.mobile.menu-list .menu-item{
    text-align: center;
    padding: 1.5rem 5rem 2rem 5rem;
    border-bottom: 1px solid rgba(100,100,100,0.4);
}

ul.mobile.menu-list .menu-item:last-child{
    border-bottom: 1px solid rgba(0,0,0,0);
    margin-bottom: 15rem;
}

ul.mobile.menu-list .menu-item.main{
  font-size: 2.4rem;
  font-weight: 400;
  display: none;
}

.swiper-container.fullscreen .swiper-button-prev , .swiper-container.fullscreen .swiper-button-next{
  display: none;
}

.mobile-enter {
/*    position: absolute;*/
    border: 2px solid #fff;
    z-index: 10;
    color: white;
    margin: auto;
    /*transform: translateX(-50%);*/
    padding: 1rem 2rem;
    font-size: 1.6rem;
    display: none;
}


.swiper-container.fullscreen a.mobile-intro{
  display: none;
}

/*--  --*/

.overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
  /*background-image: url('../images/overlay.png') ; */
  /*background-image: url('../images/overlay_line.png') ; */
  /*background-image: url('../images/overlay_dot.png'); */
  z-index: 1;
}

