* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

h1,
h3,
p,
h5 {
  margin: 0;
  padding: 0;
}

ul {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

ul li {
  list-style: none;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

:focus-visible {
  outline: none;
}

/* Home Start */
.home-inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url('../images/banner.webp') no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 10px 0;
}

.home-inner .head-title {
  padding-bottom: 10px;
}

.home-inner .head-title .logo {
  display: inline-block;
}

.home-inner .head-title .logo img {
  max-width: 30%;
  width: 100%;
}

.home-inner .title-text img {
  max-width: 100%;
  width: 100%;
}

.home-inner .title-texts img {
  max-width: 55%;
  width: 100%;
}

.home-btn img {
  max-width: 63%;
  padding-top: 20px;
}

.whatsapp-icon {
  position: fixed;
  right: 10px;
  bottom: 10px;
}

/* Home End */

@media (max-width: 375px) {

  .home-inner .head-title .logo img {
    max-width: 25%;
  }

  .home-inner .title-text img {
    max-width: 80%;
  }

  .whatsapp-icon img {
    width: 40px;
    height: 40px;
  }

}

.zoom {
  animation: zoom 1s linear alternate infinite;
}

@keyframes zoom {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1);
  }
}
