html,
body{
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.logo{
  width: 35vw;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: .2;
  z-index: -1;
  animation: myopacity 3s;
}
@keyframes myopacity {
  from {opacity: 0;}
  to {opacity: .2;}
}
#index-page,
#under-page{
  background-color: #262626;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: url(../images/idx-bg2.jpg) no-repeat center bottom;
  background-size: cover;
}
.index-page-wrapper,
.under-page-wrapper{
  padding: 60px 0 40px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column  ;
  justify-content: center;
  align-content: space-between;
  position: relative;
  z-index: 2;
}
#index-content{
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

#index-content > .row{
  align-items: center;
  height: 100%;
}
#index-page h1,
#under-page h1{
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 40px;
  /* text-shadow: 0 4px 10px rgb(0 0 0 / 65%); */
  font-size: 55px;
}
#index-page h2,
#under-page h2{
  color: #fff;
  font-size: 26px;
}
.content-wrapper{
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn-register{
  display: inline-block;
  padding: 7px 17px;
  border: 2px solid #fff;
  margin-top: 20px;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  transition: all .15s linear;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-register.animation{
  animation: rotateBtn .2s;
}
.btn-register:hover{
  background-color: rgb(225 225 225 / 30%);
  color: #fff;
}
@keyframes rotateBtn {
  0%{transform: rotate(5deg);}
  25%{transform: rotate(0);}
  50%{transform: rotate(5deg);}
  75%{transform: rotate(0);}
  100%{transform: rotate(5deg);}
}
.btn-login{
  display: inline-block;
  padding: 7px 32px;
  border: 2px solid #fff;
  margin-top: 0;
  border-radius: 3px;
  text-decoration: none;
  color: #dd2218;
  transition: all .15s linear;
  text-transform: uppercase;
  font-weight: 500;
  background: white;
}
.btn-login:hover{
  background-color: rgb(225 225 225 / 95%);
  color: #dd2218;
}
.social-icons a{
  font-size: 40px;
  color: #fff;
}
.footer-logo{
  padding: 15px 0;
  margin-top: 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-logo img{
  max-width: 100px;
  margin: 0 auto;
  vertical-align: top;
}
.img-popup-js li{
  position: absolute;
}
.img-popup-js li:nth-child(1){
  left: 6vw;
  bottom: 0;
  /* opacity: .8; */
  max-width: 380px;
  /* animation: popup2 5s infinite; */
}
.img-popup-js li:nth-child(2){
  right: 4vw;
  bottom: 50px;
  max-width: 335px;
  animation: popup2 5s infinite;
}
@keyframes popup1 {
  0% {bottom: 80px;opacity: 1;}
  25% {bottom: 50px;opacity: .9;}
  50% {bottom: 80px;opacity: 1;}
  75% {bottom: 50px;opacity: .9;}
  100% {bottom: 80px;opacity: 1;}
}
@keyframes popup2 {
  0% {opacity: 1;}
  25% {opacity: .8;}
  50% {opacity: 1;}
  75% {opacity: .8;}
  100% {opacity: 1;}
}
/* Register page */
.register-bnr{
  max-height: 80vh;
  margin: 0 auto;
}

  /* Tablet */
@media only screen and (max-width: 1024px) {
  .logo{
    width: 30vw;
  }
  #index-page h1{
      font-size: 4.5vw;
  }
  #index-page h2{
      font-size: 3vw;
  }
}
/* Mobile */
@media only screen and (max-width: 768px) {
  #index-page, #under-page{
    background: url(../images/idx-bg2-sp.jpg) no-repeat center bottom;
    background-size: cover;
  }
  .logo{
      width: 75vw;
  }
  #index-page h1{
      font-size: 6vw;
  }
  #index-page h2{
      font-size: 4vw;
  }
}