* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  display: inline-block;
  text-decoration: none;
}
img,
video {
  max-width: 100%;
}
body {
	font-family: "Lato", sans-serif;
	background: url('../images/bg.png');
	background-size: 100%;
	overflow: hidden;
}
.landing_templates{
	display: grid;
	padding: 5px 20px;
	height: 100vh;
	background: #000000c4;
	max-width: 480px;
	justify-content: center;
	align-items: flex-start;
	margin: 0 auto;
	height: 100vh;
}
.landing_templates .logo{
	display: block;
	margin: 10px auto;
	width: 180px;
}
.landing_templates button{
	margin: 0 auto;
	border: none;
	display: block;
	margin-bottom: 10px;
	border: none;
	background: none;
	color: yellow;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
}
.landing_templates button b{
	text-transform: uppercase;
}
.landing_templates h2{
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
	text-transform: capitalize;
	font-size: 25px;
}
.landing_templates h2 span{

}
.landing_templates h3{
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
	text-transform: capitalize;
	font-size: 20px;
}
.main-img{
	width: 65%;
	display: block;
	margin: 0 auto;
}
.buttonlink{
	padding: 5px;
	background: #32b4ff;
	justify-content: center;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	border-radius: 50px;
	width: 85%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.buttonlink img{
	width: 35px;
	margin-right: 5px;
}
.zoom {
	  animation: zoom 1.5s linear alternate infinite;
	}

	@keyframes zoom {
	  0% {
	    transform: scale(0.8);
	  }

	  100% {
	    transform: scale(1);
	  }
	}
@media (max-width: 767px) {
	body{
		background-size: 100% 100%;
	}
	.landing_templates .logo{
		width: 150px;
	}
	.landing_templates {
      padding: 2px 20px;
  }
  .landing_templates h2{
  	font-size: 20px;
  }
}