@import url('https://fonts.googleapis.com/css?family=Cairo:200,400,600,700');

*{
  padding:0;
  margin:0;
  font-family: 'Cairo',arial,sans-serif;
}
i{
  margin:0 5px;
}
body{
  background:#060606;
}
.small-note{
  font-size:16px;
  opacity: 0.7;
  font-weight: 200;
}
.small-note.bigger-one{
  font-size:17px;
  opacity: 0.9;
  font-weight: 400;
}
.ob{
  overflow: auto;
}
.xbutton{
  display:inline-block;
  margin:10px auto;
  padding:10px 20px;
  border:2px solid #c106c1;
  color:white;
  font-weight: 700;
  background: transparent;
  transition: background-color .3s;
}
.xbutton:hover{
  background: #c106c1;
}
/* Header START */
#header{
  position: fixed;
  width:100%;
  height:50px;
  min-height: 50px;
  padding:10px 0;
  z-index: 1000;
  background: rgba(0,0,0,0.4);
  transition: background-color .4s, min-height .4s;
  overflow: hidden;
}
#Hoverlay{
  display: none;
  position: fixed;
  width:100%;
  height:50px;
  min-height: 50px;
  padding:10px 0;
  top:0;
  z-index: 6;
  background: transparent;
  transition: background-color .4s;
}
#Hoverlay.menu-opened{
  background: #000;
}
#header .logo{
  float:left;
  position: relative;
  padding:0 50px;
  height:100%;
  max-height: 50px;
}
#header .logo img{
  max-height: 100%;
}
/* Navegation START */
#header .nav-cont{
  float:right;
  height:100%;
  display:flex;
  align-items: center;
  padding:0 10px;
  justify-content: flex-end;
}
#header .nav-left{
  float:left;
}

#header .nav-cont a{
color:#fff;
text-decoration: none;
}
#header .nav-cont .nav-item{
  padding:10px 20px;;
  border-radius: 5px;
  color:#fff;
  opacity: 0.8;
  font-weight: bold;
  text-transform: uppercase;
  transition: opacity .3s;
}
#header .nav-cont .nav-item:hover{
  opacity:1;
}
.team-button{
  overflow: hidden;
  position: relative;
}
.nav-item .team-word{
  position: absolute;
  opacity: 0;
  top:100%;
  left:50%;
  transform:translate(-50%,-50%);
  transition: top .2s, opacity .2s;
}
.nav-item:hover .team-word{
  top:50%;
  opacity: 1;
  transition: top .2s, transform .2s, opacity .2s;
}
.nav-item .credits-word{
  transition: opacity .2s;
}
.nav-item:hover .credits-word{
  opacity:0;
  transition: opacity .2s;
}
/* Navegation END */

/* Mobile Menu START */

#header .menu-button-cont{
  width:100%;
  height:100%;
  max-height: 70px;
  position: fixed;
  top:0;
  left:0;
  z-index: 1999;

}
#header .menu-button{
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right:30px;
  height:20px;
  width:30px;
  cursor: pointer;
  z-index: 7000;
  transition: transform .3s;
}
#header .menu-button .menu-hamburger-line{
  width:100%;
  height:3px;
  background: #fff;
  position: absolute;
  transition: transform .3s, top .3s, opacity, .3s;
}
#header .menu-button .menu-hamburger-line:nth-of-type(1){
  top:0;
  transform: translateY(0);
}
#header .menu-button .menu-hamburger-line:nth-of-type(2){
  top:50%;
  transform: translateY(-50%);
}
#header .menu-button .menu-hamburger-line:nth-of-type(3){
  top:100%;
  transform: translateY(-100%);
}

#header .menu-close .menu-hamburger-line:nth-of-type(1){
  top:50%;
  transform: translateY(-50%) rotate(45deg);
}
#header .menu-close .menu-hamburger-line:nth-of-type(2){
  top:50%;
  opacity: 0;
  transform: translateY(-50%);
}
#header .menu-close .menu-hamburger-line:nth-of-type(3){
  top:50%;
  transform: translateY(-50%) rotate(-45deg);
}
#header.menu-opened{
  background: black;
  overflow: auto;
}
#header2{
  display: none;
  position: fixed;
  z-index: 999;
  width:100%;
  min-height:0;
  overflow: auto;
  top:69px;
  transition: min-height .4s,background-color .4s;
  background:rgba(0,0,0,0.4);
}
#header2.menu-opened{
  min-height: calc(100% - 69px);
  background: black;

}

#header2 #menu-cont{
  width:100%;
  min-height:100%;
  position: absolute;
  display: none;
  top:0;
  box-sizing: border-box;
  padding:70px 25%;
  text-align: center;
  overflow: hidden;
  color:#fff;
  text-transform: uppercase;
  transition: opacity .3s;
}
.menu-cont{
  display:none;
}
#header2 #menu-cont .nav-item{
  font-size:30px;
  font-weight: 700;
}
#header2 #menu-cont a{
  color:#fff;
  text-decoration: none;
}
#header2 .menu-nav-cont{
  position: relative;
  z-index: 9999;
}
#header2 .menu-background{
  position: absolute;
  top:100px;
  left:0;
  width:100%;
  height:500px;
}
#header .menu-button-cont{
  display:none;
}
/* Mobile Menu END */
/* Header END */



/* Footer START */
#footer{
  background: rgba(0,0,0,0.1);
  width:100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding:15px 12%;
  color:white;
  font-weight: 200;
  font-size:15px;
  flex-wrap: wrap-reverse;
}
#footer .item{
 width:33%;
}
#footer .made-with{
margin:0 auto;
text-align: center;
}
#footer .made-with #MadeWith{
  margin:0 5px;
}
#footer .footer-links{
  text-align: right;
}
#footer a{
  color:#fff;
  text-decoration: none;
}
#footer .footer-links span{
  margin:0 10px;
}

/* Made With START */
#MadeWith{
  position: relative;
  width:22px;
  height:20px;
  display: inline-block;
}
.MadeWithCont{
  position: absolute;
  top:0;
  left:0;
  transition: transform .2s;
}
.MadeWithCont:hover{
  transform: scale(1.2);
}
#MadeWith-Heart{
  color:#f20e5a;
}
#MadeWith-Code{
  color:#35d332;
}
#MadeWith-Coffee, #MadeWith-Bear{
  color:#e0e0e0;
}
#MadeWith-Glasses{
  color:#04a4f4;
}
#MadeWith-Headset,#MadeWith-Gamepad{
  color:#8280ba;
}

/* Made With Pewds START */
  #MadeWith-BroFist{
    position: relative;
  }
  .sub-to-pewds{
    position: absolute;
    bottom:calc(50% + 10px);
    width:200px;
    max-height: 0;
    overflow: hidden;
    left:50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    padding:0 10px;
    background: rgba(0,0,0,0.4);
    border-radius: 5px;
    transition: max-height .2s, padding .2s;
  }
  .sub-to-pewds::after{
    content:'';
    position: absolute;
    bottom:-10px;
    left:50%;
    transform: translateX(-50%);
    height:0;
    width:0;
    border-left:5px solid transparent;
    border-right:5px solid transparent;
    border-top:10px solid rgba(0,0,0,0.4);
  }
  #MadeWith-BroFist:hover .sub-to-pewds{
    max-height: 50px;
    padding: 5px 10px;
    overflow: inherit;

  }

/* Made With Pewds END */

/* Made With END */

/* Footer END */

/* Responsive START */
@media only screen and (max-width: 800px) {
  #header .menu-button-cont, .menu-cont,#header2,#Hoverlay{
    display:block;
  }
  #header .nav-cont{
    display:none;
  }
  #header .logo{
    text-align: center;
    float:inherit;
  }
  .ob{
    overflow: hidden;
  }
  #footer .item{
  width:100%;
  text-align: center;
  }

  .image-cont:nth-of-type(n+4){
    display:none;
  }
}


/* Responsive END */
