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

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

.logo img {
	max-width: 28%;
	width: 100%;
	margin-top: 10px;
}
.title img {
  width: 100%;
  max-width: 60%;
}

.mobile img {
  width: 100%;
  max-width: 95%;
  margin: 10px 0px;
}

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

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

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

/* Home End */


@media(max-width: 375px) {
  .logo img {
    max-width: 28%;
  }

  .title img {
    max-width: 52%; 
  }

  .mobile img {
    max-width: 80%;
  }

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

}

@media(max-width: 320px) {

  .home-btn {
    margin-top: 0;
  }

}


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

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

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