.hero-image{
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
	background: url(../img/newbanner/gps.jpg);
	background-size: cover;
	background-repeat: 	no-repeat;
}

.hero-image::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
}

.hero-content{
	position: relative;
	width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0 auto;
}

.hero-content-inner h1{
	font-size: 30px;
	color: #fff;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 40px;
}

.hero-content-inner p{
	width: 75%;
	margin: 0 auto;
	font-size: 16px;
	font-weight: normal;
	color: #fff;
	line-height: 20px;
}

.hero-content-inner button{
	width: 170px;
	height: 50px;
	margin-top: 40px;
	border-radius: 50px;
	outline: none;
	font-size: 15px;
	text-transform: capitalize;
	background-color: blue;
	color: #fff;
	box-shadow: 0 0 30px rgba(0,0,0,.3);
	border:2px solid transparent;
	cursor: pointer;
	transition: all ease .2s;
}

.hero-content-inner button:hover{
	border-color: #fff;
	color: #fff;
	background: transparent;
}

@media(max-width: 768px){
	.hero-content{
		width: 100%;
		padding: 0 30px;
	}
	.hero-content-inner h1{
		font-size: 30px;
	}
	.hero-content-inner p{
		width: 100%;
		font-size: 13px;
		line-height: 22px;
	}
}
