html,
body{
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#index-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{
  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;
  top: -12vh;
}
#index-content{
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

#index-content > .row{
  align-items: center;
  height: 100%;
}
#index-page h1{
  max-width: 1000px;
}
#index-page h2{
  color: #ffd73c;
  font-size: 40px;
}
.content-wrapper{
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn-register{
  display: inline-block;
  padding: 7px 20px;
  border: 2px solid #fff;
  margin-top: 65px;
  border-radius: 3px;
  text-decoration: none;
  color: #ffffff;
  transition: all .15s linear;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}
.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);}
}
.social-icons a{
  font-size: 40px;
  color: #fff;
}
.footer-logo{
  padding: 15px 0;
  margin-top: 10px;
  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;}
}
.img-dealer li{
  position: fixed;
}
.img-dealer li:nth-child(1){
  right: 0;
  bottom: 0;
}
.img-dealer li:nth-child(2){
  left: 0;
  bottom: 0;
  max-width: 600px;
}
.img-dealer li:nth-child(3){
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 45vw;
}
/* Register page */
.register-bnr{
  max-height: 80vh;
  margin: 0 auto;
}

  /* Tablet */
@media only screen and (max-width: 1500px) {
  .img-dealer li:nth-child(1){
    max-width: 35vw;
  }
  .img-dealer li:nth-child(2){
    max-width: 40vw;
  }
}
/* Mobile */
@media only screen and (max-width: 768px) {
  .index-page-wrapper{
    top: -10vh;
  }
  #index-page h2{
    font-size: 30px;
  }
  .btn-register{
    margin-top: 30px;
  }
}

@media only screen and (max-width: 475px) {
  #index-page h2 {
    font-size: 25px;
  }
  .img-dealer li:nth-child(1){
    max-width: 58vw;
  }
  .img-dealer li:nth-child(2){
    display: none;
  }
  .img-dealer li:nth-child(3) {
    left: 25%;
    max-width: 60vw;
}
}