@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}


header {
    min-height: 60px;
    width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
	background-position: center;
	background-size: cover;
	position: relative;
}
nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img {
	width: 150px;
	
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: white;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0px;
	height: 2px;
	background: #f44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
	
}
h1 {
	font-size: 36px;
	font-weight: 600;
	text-align: center;
}

p{
	text-align: center;
	color: #777777;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
h3{
	text-align:center;
	font-weight: 600;
	margin: 10px 0;
		
}
.star {
    width: 30px;
    height: 30px;
    margin-top: 10px;
}



.cta{
	
	margin: 100px auto;
	width: 80%;
	background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url("../images/banner2.jpg");
    background-size:cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0; 
		
}

.cta h1{
	color: white;
	margin-bottom: 40px;
	padding: 0;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: white;
	border: 1px solid white;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position:relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.hero-btn1{
	display: inline-block;
	text-decoration: none;
	color:black;
	border: 1px solid red;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position:relative;
	cursor: pointer;
}
.hero-btn1:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.box{
	width: 60%;
	border: 1px solid #ccc;
	margin-top:50px;
	margin-left: 250px;
	padding: 10px 20px;
}
.box h3{
	text-align: left;
}
.com-form input, .com-form textarea{
	width: 100%;
	padding: 10px;
	margin: 15px 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	background: #f0f0f0;
	
}
.com-form button{
	margin: 10px 0;
}

.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
	margin-top: 40px;
}
.location iframe{
	width: 100%;
}
.Address h5{
	text-align: center;
	font-weight: 700;
}
.footimg{
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
.footimg a{
    height: 50px;
    width: 50px;
    background:#FFFFFF;
    border-radius: 50%;
    text-align: center;
	line-height: 70px;
    margin: 10px;
    -webkit-box-shadow: 2px 2px 2px 2px #F38BA0;
    box-shadow: 2px 2px 2px 2px #FF0000;
}

.footimg a img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
	transition: all 0.3s linear;
}
.footimg a img:hover{
	transform: scale(1.4);
}
footer h5 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -20px;
	margin-bottom: 40px;
}
hr {
    height: 1px;
    background-color: #767373;
} 

























