html, body{
  margin: 0;
  padding: 0;
  /* background-color: #aaa; */
  font-family: 'Montserrat', sans-serif;
}

.nav-bar{
  width: 100vw;
  height: 40px;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(102, 102, 102, 0.3);
  z-index: 1000;
}

.logo{
  width: 60px;
  height: 38px;
  /* background: url("../img/CCBgroup_logo.jpg"); */
  background: url("/img/CCBgroup_logo.jpg");
  background-size: cover;
  position: absolute;
  top: -1px;
  left: 75px;
}

.languages{
  position: absolute;
  top: -27px;
  /* transform: translateY(-50%); */
  right:75px;
}

.languages ul{
  list-style: none;
  overflow: hidden;
  transition: none;
  border-radius: 10px;
}

.languages ul li{
  display: inline-block;
  padding: 18px;
}

.languages ul li a{
  text-decoration: none;
  color: #666;
  font-size: 20px;
  font-weight: bold;
}

.languages ul li a:hover{
  color: #ff6600;
}

.lang-icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
  cursor: pointer;
  display: none;
}

.clicker{
  width: 100vw;
  height: 100vh;
  /* background-color: blue; */
}
.content{
  width: 100vw;
  height: 90%;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -50;
  opacity: 1;
  transition: 1s;
  transition-delay: .5s;
  z-index: 999;
  transition-timing-function: ease-in;
  overflow: hidden;
  /* background: grey; */
}

.test{
  width: 100vw;
  height: 100vh;
  background: blue;
}
.content.hide{
  opacity: 0;
  /* display: none; */
  z-index: -999;
  transition: .2s;
  transition-timing-function: ease-out;
  pointer-events: none;
}
.panel-1{
  display: inline-block;
  /* background-color: #444; */
  width: 20%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%,-50%);
}

.panel-2{
  display: inline-block;
  /* background-color: #444; */
  width: 20%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /* opacity: 1;
  transition: .8s; */
}

/* .panel-2.hide{
  opacity: 0;
} */

.panel-3{
  display: inline-block;
  /* background-color: #444; */
  width: 20%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%,-50%);
  /* opacity: 1;
  transition: .8s; */
}

/* .panel-3.hide{
  opacity: 0;
} */

.panel-img{
  width: 65px;
  height: 65px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.panel-1 .panel-img{
  background: url("/img/11-model.png");
  /* background: url("../img/11-model.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-transition: .4s;
  -ms-transition: .4s;
  transition: .4s;
}
.panel-1 .panel-img:hover{
  background: url("/img/1-model.png");
  /* background: url("../img/1-model.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.panel-2 .panel-img{
  background: url("/img/21-studio.png");
  /* background: url("../img/21-studio.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-transition: .4s;
  -ms-transition: .4s;
  transition: .4s;
}
.panel-2 .panel-img:hover{
  background: url("/img/2-studio.png");
  /* background: url("../img/2-studio.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.panel-3 .panel-img{
  background: url("/img/31-intern.png");
  /* background: url("../img/31-intern.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-transition: .4s;
  -ms-transition: .4s;
  transition: .4s;

}
.panel-3 .panel-img:hover{
  background: url("/img/3-intern.png");
  /* background: url("../img/3-intern.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.panel-text{
  position: relative;
  top: 46%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-weight: 600;
  color: #000;
  font-size: 24px;
  text-align: center;
  opacity: 0;
  -moz-transition: .4s;
  -ms-transition: .4s;
  transition: .5s;
}
/* .panel-text.showing{
  opacity: 1;
} */

.panel-1 .panel-img:hover ~ .panel-text{
  opacity: 1;
}
.panel-2 .panel-img:hover ~ .panel-text{
  opacity: 1;
}
.panel-3 .panel-img:hover ~ .panel-text{
  opacity: 1;
}
.pass-window{
  opacity: 0;
  -moz-transition: .8s;
  -ms-transition: .8s;
  transition: .8s;
  transition-delay: .2s;
  z-index: -999;
  /* transform: scale(0,0); */
  transition-timing-function: ease-out;
}
.pass-window.showing{
  opacity: 1;
  -moz-transition: 1s;
  -ms-transition: 1s;
  transition: 1s;
  transistion-delay: .5s;
  z-index: 999;
  /* transform: scale(1,1); */
  transition-timing-function: ease-in;
}

.pass{
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(102, 102, 102, 0.3);
  width: 430px;
  height: 300px;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 15px;

  /* display: none; */
}

/* .pass.showing{
  display: block;
} */

#pass-img{
  width: 65px;
  height: 65px;
  position: relative;
  top: 22%;
  left: 50%;
  transform: translate(-50%,-50%);
  /* background: url("../img/1-model.png"); */
  /* background: url("/img/1-model.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  /* -moz-transition-delay: 2s;
  transition-delay: 2s; */
}
/* .pass-img.one{ */
  /* background: url("../img/1-model.png"); */
  /* background: url("/img/1-model.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-transition-delay: .1s;
  transition-delay: .1s;
} */
/* .pass-img.two{ */
  /* background: url("../img/2-studio.png"); */
  /* background: url("/img/2-studio.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-transition-delay: .1s;
  transition-delay: .1s;
} */
/* .pass-img.three{ */
  /* background: url("../img/3-intern.png"); */
  /* background: url("/img/3-intern.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-transition-delay: .1s;
  transition-delay: .1s;
} */
#pass-text{
  color: #ff6600;
  position: relative;
  top: 10%;
  font-size: 24px;
  font-weight: 600;
  /* left: 50%; */
}

.pass input{
  width: 210px;
  height: 45px;
  position: absolute;
  top: 175px;
  left: 60px;
  /* margin-top: 40px;
  margin-bottom: 10px; */
  padding: 10px 10px;
  /* margin: 10px 10px; */
  /* box-sizing: border-box; */
  font-size: 40px;
  font-weight: bolder;
  text-align: center;
  letter-spacing: 8px;
  color: #666;
  border-radius: 15px;
  border: 1px solid  #9B9B9B;
}
.pass input:focus{
  border: 1.5px solid #ff6600;
  outline: none;
}

.pass #pass-text{
  text-align: center;
}
.pass #get-code{
  width: 300px;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #666;
  font-size: 13px;
  /* margin: 0; */
  /* margin-top: -22px; */
  padding: 0;
}

/* #typ{
  display: none;
  opacity: 0;
  pointer-events: none;
} */
button{
  width: 68px;
  height: 68px;
  position: absolute;
  top: 175px;
  right: 60px;
  border-radius: 15px;
  background-color: #ff6600;
  border: none;
  outline: none;
  cursor: pointer;

}
.button-arrow{
  width: 30px;
  height: 30px;
  position: relative;
  /* top: -57px; */
  left: 50%;
  transform: translateX(-50%);
  /* background: red; */
  /* background: url("../img/arrow.png"); */
  background: url("/img/arrow.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

/* -----MEDIA----- */
/* -----MEDIA----- */
/* -----MEDIA----- */

@media(max-width: 770px){
  .nav-bar{
    height: 60px;
  }
  .logo{
    width: 87px;
    height: 60px;
    left: 35px;
  }

  .languages{
    position: absolute;
    top: 10px;
    /* transform: translateY(-50%); */
    right:20px;
  }

  .languages ul{
    max-height: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    top: 60px;
    left: 0;
    box-shadow: 0 0 30px rgba(102, 102, 102, 0.3);
    transition: .8s;

  }

  .languages ul.showing {
    border-radius: 10px;

    /* display: block; */
    max-height: 300px;
    /* position: relative;
    top: 0;
    right: 100px; */
  }

  .languages ul li{
    box-sizing: border-box;
    width: 100%;
    padding: 24px 0;
    text-align: center;
    background-color: #fff;
  }

  .lang-icon{
    display: block;
    font-size: 13px;
    color: #666;
    right: 35px;
  }
  .content{
    /* background-color: red; */
    width: 100%;
    /* min-width: 460px; */
    height: 90vh;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 1;
  }
  .panel-1, .panel-2, .panel-3{
    width: 90%;
    height: 150px;
    display: block;
    /* background: red; */
  }

  .panel-1{
    position: absolute;
    left: 50%;
    top: 26%;
    transform: translate(-50%,-50%);
  }

  .panel-2{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }

  .panel-3{
    position: absolute;
    left: 50%;
    top: 72%;
    transform: translate(-50%,-50%);
  }

  .panel-img{
    width: 75px;
    height: 75px;
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
  }

  .panel-1 .panel-img:hover ~ .panel-text{
    opacity: 0;
  }
  .panel-2 .panel-img:hover ~ .panel-text{
    opacity: 0;
  }
  .panel-3 .panel-img:hover ~ .panel-text{
    opacity: 0;
  }

  .pass{
    background-color: white;
    width: 274px;
    height: 270px;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* display: none; */
  }

  #pass-img{
    width: 70px;
    height: 70px;
    position: relative;
    top: 24%;
    left: 50%;
  }

  #pass-text{
    /* color: #ff6600; */
    position: relative;
    top: 8%;
    font-size: 24px;
    font-weight: 600;
  }

  .pass #get-code{
    font-size: 10px;
    /* margin: 0; */
    /* margin-top: -22px; */
    width: 200px;
    position: absolute;
    top: 225px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }

  .pass input{
    width: 140px;
    height: 25px;
    position: absolute;
    top: 165px;
    left: 27px;
    border-radius: 10px;
    font-size: 30px;
  }

  .pass button{
    width: 45px;
    height: 45px;
    position: absolute;
    top: 165px;
    right: 27px;
    border-radius: 10px;
  }

  .button-arrow{
    width: 20px;
    height: 20px;
  }
}
