* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

body {
  font-family: "khand-regular";
}

:root {
  --white-color: #ffffff;
  --yellow-color: #F4D350;
  --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;
}

.button-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  justify-content: center;
}

.button-box.btm .single-box:first-child {
  position: relative;
}

.landing-box-bottom {
  margin-bottom: 30px;
}

.container,
.container-fluid {
  max-width: 100%;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.row > * {
  padding: 0 12px;
  width: 100%;
}

/* landing css */
#landing .landing-box {
  background: url(../images/banner.png) no-repeat;
  background-size: cover;
  background-position: top;
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  padding: 10px 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

#landing .logo-box {
  padding-top: 60px;
  padding-bottom: 0px;
}

#landing .logo-box img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 0;
  margin-top: 40px;
}

#landing .title-box img {
  width: 100%;
  max-width: 330px;
}

.landing-box-bottom {
  margin-bottom: 20px;
}

.landing-box-top,
.landing-box-bottom {
  width: 100%;
}

.button-box img {
  width: 100%;
  max-width: 320px;
}

.landing-content {
  margin-bottom: 80px;
}

.discount-box img {
  width: 100%;
  max-width: 500px;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* responsive */
@media (max-width: 393px) {

  #landing .logo-box {
    padding-bottom: 0;
  }
  #landing .title-box img {
    max-width: 290px;
  }

  .landing-box-bottom {
    margin-bottom: 10px;
  }

  .button-box img {
    max-width: 280px;
  }

}

@media (max-width: 375px) {

  #landing .logo-box {
    padding-top: 20px;
  }

  #landing .title-box img {
    max-width: 270px;
  }

  .landing-content {
    margin-bottom: 55px;
  }

  .button-box img {
    max-width: 240px;
  }

}

@media (max-width: 320px) {

  #landing .logo-box {
    padding-top: 15px;
  }

  #landing .logo-box img {
    max-width: 140px;
  }

  #landing .title-box img {
    max-width: 220px;
  }
  
  .button-box img {
    max-width: 200px;
  }

  .landing-content {
    margin-bottom: 45px;
  }

}

.zoom {
  animation: zoom 1s linear alternate infinite;
}

@keyframes zoom {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1);
  }
}

.zooms {
  animation: zooms 1s linear alternate infinite;
}

@keyframes zooms {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}
