@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');

  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Avenir Next", "Avenir", 'Roboto', sans-serif;
    font-weight: 300;

    background-color: black;
    overflow-x: hidden;

}

button{
    font-family: "Avenir Next", "Avenir", 'Roboto', sans-serif;
    font-weight: 300;
}

/* styling langbutton / langnav */
#langnav{
    /* padding-top: 12%;
    padding-right: 15%; */
    background-color: rgba(0, 0, 0, 1);
    position: absolute;
    top: 0;
    right: 0;
    /* z-index: 2; */
  
  }
  #langbutton{
    position: absolute;
    background-color: white;
    padding-top: 1.1%;
    padding-bottom: 1.1%;
    padding-left: 1.3%;
    padding-right: 1.3%;
    top: 0;
    right: 0;
    font-size: 25px;
    margin-top: calc(50px - 1.1%);
    margin-right: 1.25%;
    margin-bottom: 2%;
    margin-left: 4%;
    color: black;
    z-index: 3;
    animation: blink 4s infinite;
    animation-direction: alternate;
  }
@keyframes blink {
    from {background-color: white; color: black;}
    to {background-color: black; color: white;}

}



  .video-container {
    display: grid;
    justify-items: center;
    /* align-items: center; */
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .video-container video {
    position: absolute;
    top: 50%;
    left:50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 100vh;
  }

  /* Add some content at the bottom of the video/page */
  .content {
    position: fixed;
    bottom: 0;
    right: 0;
    color: #f1f1f1;
    width: 25%;
    padding-left: 2%;
    padding-top: 1%;
    padding-bottom: 3%;
    z-index: 2;

  }
  
  .play_button{
      z-index: 3;
      margin: auto;
  }

  button{
    padding: none;
    border: hidden;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
    border-image: initial;
    background-color: transparent;
  }
  button:focus {outline:0;}

.fullscreenpausebutton{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh; 
    width: 100vw; 
    z-index: 2;
}

/* nav styling here */
html.noscroll {
    overflow: hidden;
}

body.noscroll {
    overflow: visible;
    height: 100%;
}

path {
    transition: .2s ease;
}

.cf:after {
    content: '';
    display: table;
    clear: both;
}


.nav {
    display: none;
    margin-left: auto;
    text-align: center;
    z-index: 100; 
    width: 300px;
    position: fixed;
    top: 0;
    height: 100%;
    background: #ededed;
    opacity: 0;
    transition: opacity .3s ease;
}

.nav_container {
    position: absolute;
    padding: 80px 20px 30px;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* scroller */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu {
    margin: 10px;
}

.menu a {
    display: block;
    padding: 5px 10px;
    box-shadow: none;
}

.menu-item {
    list-style: none;
}

.menu {
    margin: 0 0 80px;
}
.menu-item {
    font-size: 22px;
    font-weight: 300;
}
.menu-item a {
    padding: 10px 0;
}


.hamburger_container {
    top: 50px;
    left: 50px;
    display: block;
    float: right;
    cursor: pointer;
    margin-left: auto;
}

.hamburger {
    width: 33px;
    height: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: rotate(0deg); 


}

.hamburger_container {
    position: absolute;
    z-index: 9999;
}    
    
.hamburger i {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 0px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    -webkit-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    transition: background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}


.hamburger i:nth-of-type(1) {
    top: 0;
    transform-origin: left center; }
.hamburger i:nth-of-type(2) {
    top: 0.375rem;
    transform-origin: left center; }
.hamburger i:nth-of-type(3) {
    top: 0.75rem;
    transform-origin: left center; }
.hamburger.open i:nth-of-type(1) {
    transform: rotate(45deg) translate(0, -0); 
    background-color: #232323;
    }
.hamburger.open i:nth-of-type(2) {
    opacity: 0;
    width: 0%; }
.hamburger.open i:nth-of-type(3) {
    transform: rotate(-45deg) translate(0, 0); 
    top: 15px;
    background-color: #232323;
    }



.open {
    opacity: 1;
    left: 0;
    display: block;
}

.phoneoverlay{
display: none;
}
@media only screen  and (max-width : 600px) {
    .phoneoverlay{
      display: block;
      overflow: hidden;
      position: fixed; 
      z-index: 100; 
      display: flex; 
      background-color: rgb(0, 0, 0); 
      height: 100vh; 
      width: 100vw; 
      align-items: center; 
      justify-content: center;
      text-align: center;
      color: white;
      text-transform: uppercase;
    }
    .phonegif{
        display: block;
        overflow: hidden;
        /* position: fixed;  */
        z-index: 100; 
        display: flex; 
        background-color: rgb(0, 0, 0); 
        height: 100vh; 
        width: 100vw; 
        align-items: center; 
        justify-content: center;
        text-align: center;
        color: white;
        text-transform: uppercase;    
    }
    .hamburger_container{
        display: none;

    }
    }