* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  font-size: 16px;
}

/* common css */

:root {
  --white-color: #ffffff;
  --yellow-color: #eed65b;
  --blue-color: #261e9b;
}


a {
  display: inline-block;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-transform: unset;
  margin-bottom: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.button-box.footer {
  text-align: center;
  position: fixed;
  left: 93px;
  bottom: 95px;
  right: 0px;
  width: 100%;
}
.container,
.container-fluid {
  max-width: 100%;

  margin: 0 auto;
}

/* landing css */

#landing .landing-box {
  background: url(../images/banner.webp) no-repeat;
  /* background-size: 100% 100%; */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 100vh;
  padding: 30px 0 20px 0;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.landing-box-top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#landing .logo-box{
  text-align: center;
}
#landing .logo-box img {
  max-width: 50%;
  width: 100%;
  height: auto;
}

.landing-content {
  text-align: center;
}


.landing-box-top .text-box-1{
  margin-top: 60px;
}

#landing .text-box img {
  width:100%;
  display: block;
  margin-left: auto;
}

#landing .text-box img.text-1 {
  max-width: 85%;
  margin-left: 0;
}

#landing .text-box img.text-2 {
  max-width: 58%;

}

.landing-box-top,
.landing-box-bottom {
  width: 100%;
}

.button-box img {
  width: 100%;
  max-width: 42%;
}


.disclaimer {
  position: absolute;
  left: 0;
  bottom: 14px;
  right: 0px;
  width: 100%;
}
.disclaimer p{
  color: var(--white-color);
  font-size: 13px;
  line-height: 1;
  padding: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* responsive */
@media (max-width: 393px) {
  .button-box.footer {
    bottom: 95px;
}
}

@media (max-width: 375px) {
  #landing .landing-box {
    padding: 20px 0 20px 0;
  }

 

  #landing .text-box img.text-1 {
    max-width: 74%;
}

#landing .text-box img.text-2 {
  padding-top: 0;
  max-width: 52%;
}

  .button-box.footer {
    bottom: 90px;
}


}


@media (max-width: 320px) {
 

  #landing .landing-box {
    padding: 30px 0 20px 0;
  }

  .landing-box-top {
    margin-top: 0;
  }
  #landing .text-box img.text-1 {
    max-width: 60%;
}
  
  .landing-box-top .text-box-1 {
    margin-top: 20px;
}
  #landing .text-box img.text-2 {
    max-width: 48%;
}

  .button-box.footer {
    bottom: 80px;
    left: 0;
}

  .button-box img {
    max-width: 61%;
}
  .disclaimer p {
    font-size: 11px;
}}

.zoom {
  animation: zoom 1s linear alternate infinite;
}

@keyframes zoom {
  0% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}