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

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

ul {
  padding-left: 0 !important;
}

ul li {
  list-style: none;
}

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

:focus-visible { 
  outline: none;
}

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

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

.home-inner .head-title .logo {
	display: inline-block;
	padding-bottom: 20px;
}

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

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

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

.home-btn {
  margin-top: 20px;
}

.home-btn ul li {
  margin-bottom: 6px;
}

.home-btn img {
  max-width: 65%;
}

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



/* Home End */

@media (max-width:375px) {

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

  .home-inner .head-title .title-texts img {
    max-width: 85%;
  }

  .home-btn {  
    bottom: 5px;
  }

  .home-btn img {
    max-width: 60%;
  }

  .home-btn ul li {
    margin-bottom: 3px;
  }

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

  .home-btn {
    margin-top: 5px;
  }

  #whatsapp-icon {
    right: 5px;
  }

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

}

@media (max-width:320px) {

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

}

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

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

