@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

img{
    width: 100%;
}

a{
  text-decoration: none;
  color: #fff;
}

body{
    background-color: #1B82C3;
  /* background: url("../images/main/bg-8.png"); */
  /*border-radius: 15px;*/
  /* max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 100vh; */
}

.content{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.col-2{
    flex-basis: 50%;
    padding: 5px;
}

.col-4{
    flex-basis: 25%;
    padding: 5px 0;
}

.col-3 {
    flex-basis: 33.33333333333333%;
}

section{
    /* margin: -10px auto; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.vendor{
    margin: 0 15%;
}

section.logo{
    margin: -3.5% 25%;
    padding: 0 15px;
    overflow-y: hidden;
    -webkit-animation: 1s grow ease-out;
    animation: 1s grow ease-out;
}

section.desc{
    margin-top: 3%;
    flex-direction: column;
}

/* .desc img{
    display: block;
    margin: 0 auto;
    padding: 0;
} */

.desc .text-1{
    margin: 0.5% 40% -0.5% 40%;
    opacity: 0;
    -webkit-animation: 1s grow-shrink-soft 1s ease-out;
    animation: 1s grow-shrink-soft 1s ease-out;
    -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.desc .text-2{
    margin: 0 35% -0.5% 35%;
    opacity: 0;
    -webkit-animation: 1s grow-shrink-soft 2s ease-out;
    animation:1s grow-shrink-soft 2s ease-out;
    -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.desc .text-3{
    margin: 0 35%;
    opacity: 0;
    -webkit-animation: 1s grow-shrink-soft 3s ease-out;
    animation: 1s grow-shrink-soft 3s ease-out;
    -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
    
}

.fade {
  opacity: 0;
    -webkit-animation: 1s grow-shrink-soft 4s ease-out;
    animation: 1s grow-shrink-soft 4s ease-out;
    -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.people{
    flex-direction: row;
    margin-top: -2%;
}

.people .people-1{
    margin: 0 -5% 0 30%;
}

.people .people-2{
    margin: 0 30% 0 -5%;
}

section.glow{
    margin: -19% 20% -1% 20%;
    padding-left: 50px;
}

section.footer{
  flex-direction: column;
  overflow-y: hidden;
  max-height: 0;
  -webkit-animation: 6.5s slidedown 5.5s;
  animation: 6.5s slidedown 5.5s;
  -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
}

.footer img{
    position: relative;
}

.footer-1{
    margin: 0 20% -2% 20%;
}

.footer-2{
    margin: 0 38%;
}

.left{
    background: url("../images/main/banner-1.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    max-width: 100%;
}
.right{
    color: #fff;
    padding: 1.5em 4em 0 0;
    height: 100%;
}

.right .box-header{
    background: #fff;
    color: #1B82C3;
    padding: 10px;
    border-radius: 3px;
}

.box-header .title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.right .wrap-text{
    padding-top: 15px;
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
}

ul {
  list-style-type: none;
}

li:before {
  content: "\2022";
}

li.child:before{
  content: "\002D";
}

li {
  padding-left: 1em;
}
li::before {
  float: left;
  margin-left: -2em;
  width: 1.75em;
  text-align: right;
}

.hide, .list-hide{
  overflow: hidden;
}

.reveal, .list-reveal {
  transform: translateY(100%);
}

.reveal {
  -webkit-animation: 1s reveal 6s cubic-bezier(1, 0, 0.3, 0.9) forwards;
  animation: 1s reveal 6s cubic-bezier(1, 0, 0.3, 0.9) forwards;
}

.list-reveal{
  -webkit-animation: 1s reveal 7s cubic-bezier(1, 0, 0.3, 0.9) forwards;
  animation: 1s reveal 7s cubic-bezier(1, 0, 0.3, 0.9) forwards;
}

.list-hide:nth-child(2) .list-reveal {
  animation-delay: 8s;
}
.list-hide:nth-child(3) .list-reveal {
  animation-delay: 9s;
}
.list-hide:nth-child(4) .list-reveal {
  animation-delay: 10s;
}
.list-hide:nth-child(5) .list-reveal {
  animation-delay: 11s;
}
.list-hide:nth-child(6) .list-reveal {
  animation-delay: 12s;
}
.list-hide:nth-child(7) .list-reveal {
  animation-delay: 13s;
}
.list-hide:nth-child(8) .list-reveal {
  animation-delay: 14s;
}
.list-hide:nth-child(9) .list-reveal {
  animation-delay: 18s;
}
.checkin {
  background: url("../images/main/bg-login.png");
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.register-page{
  margin: 15% auto;
}

.footer-font{
  text-align: right;
  font-size: 10px;
  /* font-weight: 400; */
  color: #fff;
}

@media screen and (max-width: 767px) {
    section{
        margin: 0;
    }
    section.vendor{
        margin: 0;
    }
    section.logo{
        margin: 0;
    }
    .content {
        display: block;
        min-height: 0;
    }
    .col-2, .col-3{
        flex-basis: 100%;
    }
    .desc .text-1{
        margin: 0 35%;
    }
    
    .desc .text-2{
        margin: 0 25%;
    }
    
    .desc .text-3{
        margin: 0 25%;
    }

    .people .people-1{
        margin: 0 -5% 0 20%;
    }
    
    .people .people-2{
        margin: 0 20% 0 -5%;
    }

    section.glow{
        margin: -25% 10% 0 10%;
        padding-left: 45px;
    }

    .footer-1{
        margin: 0;
    }
    
    .footer-2{
        margin: 0 15%;
    }
}

@keyframes grow {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes grow-shrink-soft {
  0%   { 
    opacity: 0;
    transform: scale(0);
  }
  100% { 
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slidedown {
  from {
    max-height: 0%;
  }
  to {
    max-height: 100%;
  }
}

@keyframes reveal {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}