@font-face
{
  font-family: "Ubuntu-L";
  src: url(/lib/font/Ubuntu-L.ttf) format("truetype");
}
@font-face
{
  font-family: "Ubuntu-R";
  src: url(/lib/font/Ubuntu-R.ttf) format("truetype");
}
@font-face
{
  font-family: "Ubuntu-B";
  src: url(/lib/font/Ubuntu-B.ttf) format("truetype");
}
/*Z Index*/
.gcontent .credits, img, video{
  z-index: 1;
}
.overlay{
  z-index: 2;
}
.menu{
  z-index: 3;
}
#devpanel, #screen-load{
  z-index: 99;
}
/*=====*/

html { font-size: 62.5%; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

*
{
  font-family: 'Ubuntu-L', Arial, Helvetica, sans-serif;
  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*Dev*/
#devpanel{
  display: none;
  position: fixed;
  
  background-color: rgba(0, 0, 0, .8);
  width: 150px;
  min-height: 150px;
  padding: 5px;
  font-size: 1.5rem;
  color: #fff;
}
/*=====*/
/*Body*/
body {
  background-color: #0A0D21;
}
.gcontent{
  height: 100vh;;
  position: relative;
}
/*video background and text*/
.gcontent .credits{
  font-size: 1.5em;
  font-style: italic;
  font-weight: lighter;

  padding: 5px;
  border-radius: 25px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, .5);
}
img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
video {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

  .overlay {
  object-fit: cover;
  height:  100vh;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 100px;
  background: rgba(1, 1, 7, 0.6);
}
.middle-line {
  height: 25vh;
  width: 2px;
  background: #3A99FC;
  margin: 40px auto;
}
.overlaytext{
  color: #fff;
  position: absolute;
  top: 15%;
  left: 0;
  bottom: 0;
  right: 0;
}
.overlaytext h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 55px;
  line-height: 1.1;
  text-shadow: -1px -5px 20px rgba(58,153,252,.3);
}
.overlaytext p {
  font-size: 20px;
  color: #fff;
}
.overlaytext .slide button {
  display: block;
  border: 1px solid #3A99FC;
  border-radius: 5px;
  background: transparent;
  height: 60px;
  width: 200px;
  margin: 50px auto 0;
  padding: 16px 30px;
  cursor: pointer;
  
  top: 50vh;
  left: 0;
  right: 0;
  
  transition-delay: .25s;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
.overlay .slide button:hover{
  background-color: rgba(58,153,252,.3);
  box-shadow: -1px -5px 20px rgba(58,153,252,.3);

  transition-delay: .25s;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

/*Slide controller*/
.slide:not(:first-child) {
  display: none;
}
.slidecontrol{
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 50vh;
  transform: translateY(-100%);
}
.slidebutton{
  background-color: rgba(75, 75, 75, .3);
  height: 100px;
  width: 20px;
  border: 0;
  cursor: pointer;

}
#prev{
  float: left;
  margin-left: 1px;
  border-radius: 0px 10px 10px 0px;
}
#next{
  float: right;
  margin-right: 1px;
  border-radius: 10px 0px 0px 10px;
}

/*Menu bar NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
}
nav ul {
  float: right;
}
/*Text Menu*/
nav ul li {
  display: inline-block;
  font-family: 'Ubuntu-L', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #ffffff;

  line-height: 50px;
  padding: 0 15px;

  transition-delay: .25s;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
nav ul li:hover{
  -webkit-box-shadow: inset 0px -.40rem 0px 0px rgb(0,123,255);
  -moz-box-shadow: inset 0px -.40rem 0px 0px rgb(0,123,255);
  box-shadow: inset 0px -.40rem 0px 0px rgb(0,123,255);

  transition-delay: .25s;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

/*Screen Load*/
#screen-load {
  font-size: 1.5em;
  color:#fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0A0D21;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 5px solid #0A0D21;
  border-top: 5px solid #3A99FC;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*===========*/


/*Menu Logo*/
/* 
.menu .logo span{
  margin-left: 10px;
  color: #fff;
  font-size: .4em;
  font-weight: bolder;
  
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} */

.logo-large{
  position: absolute;
  top: 25%;
  transform: translate(0%, -50%);
  color: #fff;

  visibility: visible;
}
.logo-large::before {
  vertical-align: middle;
  margin-left: 1rem;
}

.logo{
  font-size: 3.5em;
  color: #fff;

  visibility: hidden;
}
.logo::before{
  vertical-align: middle;
  margin-left: 1rem;
}

/*Menu bar background with gradient*/

.menu a{
  color: #fff;
}
.menu{
  background: rgb(20,24,46);
  background: linear-gradient(180deg, rgba(20,24,46,.8) 0%, rgba(20,24,46,.65) 5%, rgba(20,24,46,0) 75%, rgba(20,24,46,0) 100%);

  text-shadow: rgba(0, 0, 0, 1) 1px 0px 7.5px;

  transition-delay: .25s;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
/*Menu bar background solid*/
.menu:hover{
  background-color: #14182E;

  text-shadow: unset;

  transition-delay: .25s;
  -webkit-transition: all .25s ease-in;
  -moz-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}


/*Movile version style for Menu Button*/
.menu button { 
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  outline: none;
  transform: translateY(-50%);
  background-color: #14182E;
  border-style: none;
  width: 80px;
  height: 40px;
  display: none;
}

/*Footer======================*/
.footertab{
  padding:30px 0px;
  text-align:center;
  font-size: 2em;

  width: 100%;

  position: absolute;
  bottom: 0 auto;
  background-color: #010107;
  }
  .footer .row{
  width:100%;
  margin:1% 0%;
  padding:0.6% 0%;
  font-size:0.8em;
  }
  
  .footer .row a{
  text-decoration:none;
  color: #202337;
  transition:0.5s;
  }
  
  .footer .row a:hover{
  color: #3A99FC;
  text-shadow: -1px -5px 20px rgba(58,153,252,.3);
  }
  .footer .row a i{
  font-size:2em;
  margin:0% 1%;
  }
  .copyright-text{
    color: #535770;
  }
  .copyright-text p{
    font-size: .55em;
    font-weight: bolder;
  }
  .footer .name{
    font-size: .75em;
  }

/*Responsive==================================================*/

  /*Footer*/
  @media (max-width:720px){
  .footer{
  padding:5%;
  }
  .footer .row a i{
  margin:0% 3%;
  }

  /*Menu*/

  .menu{
    background-color: #14182E;
  }
  .menu .logo-large{
    visibility: hidden;
  }
  .menu .logo{
    visibility: visible;
  }

  .menu button {
      display: block;
  }

  nav ul {
      position: absolute;
      top: 50px;
      width: 100%;
      display: none;
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 0px;
      background: #202337;
      border-top: 1px solid #000;
  }

  nav ul li {
      display: block;
      text-align: center;
  }
  nav ul li:hover{
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: none;
  }

  .show {
      display: block;
  }
}
@media (max-height:480px){
    .middle-line {
      height: 5%;
    }
}
@media (max-height:350px){
    .middle-line {
      display: none;
    }
}
/*=============================Icons Style================================*/


  .ki-1x {
    font-size: 1em; }
  
  .ki-2x {
    font-size: 2em; }
  
  .ki-3x {
    font-size: 3em; }
  
  .ki-4x {
    font-size: 4em; }
  
  .ki-5x {
    font-size: 5em; }
  
  .ki-6x {
    font-size: 6em; }
  
  .ki-7x {
    font-size: 7em; }
  
  .ki-8x {
    font-size: 8em; }
  
  .ki-9x {
    font-size: 9em; }
  
  .ki-10x {
    font-size: 10em; }

  .ki-12x {
    font-size: 12em; }

  .ki-14x {
    font-size: 14em; }

  .ki-16x {
    font-size: 16em; }

  .ki-2xs {
    font-size: 0.625em;
    line-height: 0.1em;
    vertical-align: 0.225em; }
  
  .ki-xs {
    font-size: 0.75em;
    line-height: 0.08333em;
    vertical-align: 0.125em; }
  
  .ki-sm {
    font-size: 0.875em;
    line-height: 0.07143em;
    vertical-align: 0.05357em; }
  
  .ki-lg {
    font-size: 1.25em;
    line-height: 0.05em;
    vertical-align: -0.075em; }
  
  .ki-xl {
    font-size: 1.5em;
    line-height: 0.04167em;
    vertical-align: -0.125em; }
  
  .ki-2xl {
    font-size: 2em;
    line-height: 0.03125em;
    vertical-align: -0.1875em; }
  
  .ki-fw {
    text-align: center;
    width: 1.25em; }

    .slide{
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
    }
