@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
	padding: 0;
    font-family: montserrat, sans-serif;
    box-sizing: border-box;
}

.hero{
	height: 100vh;
	width: 100%;
	background: #007F87;
	overflow: hidden;
}

nav{
	left: 0;
	top: 0;
	position: fixed;
	width: 100%;
	background-color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-top: .5rem;
	padding-left: 15%;
	padding-right: 15%;
	padding-bottom: 1rem;
	z-index: 100;
	box-shadow: -2px -3px 20px 0px #414141;
}

nav a{
	text-decoration: none;
	color: #000000;
	
}

nav span{
	color: #007F87;
	font-weight: 500;
}


nav ul li{
	list-style-type: none;
	display: inline-block;
	padding-right: 1.3rem;
	padding-top: 1.5rem;
	padding-bottom: 1rem;
	
}

nav ul li a{
	font-weight: 500;
	transition: .3s;
	
}

nav ul li a:hover{
	color: #3F3F3F;
}

.active{
	color: #007f87; 
}


nav h2{
	color: #000000;
	line-height: 1.4rem;
	font-size: 2.2rem;
	padding-bottom: 1.7rem;
	padding-top: 1.7rem;
	
}

.main-img img{
	padding-top: 9rem;
	position: relative;
	left: 58%;
	object-fit: contain;
	width: 27rem;
	
	
}
.hero-cont{
	position: absolute;
	top: 40%;
	left: 15%;
	text-transform: capitalize;
	
}

.hero-cont h4{
	font-size: 1.2rem;
	display: inline-block;
	width: 12rem;
	padding: .8rem;
	background: #E59E22;
	color: #FFFFFF;
	margin-bottom: 1.1rem;
	margin-left: .5rem;
	font-weight: 500;
	border-radius: 2rem;
	text-align: center;
}

.hero-cont h1{
	font-size: 9rem;
	line-height: 8rem;
	color: #FFFFFF;
	text-transform: capitalize;
	font-weight: 500;
	letter-spacing: -.5rem;
}


.home-section{
	background: #111111;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	padding-left: 3rem;
	padding-right: 12rem;
	padding-bottom: 1rem;
	
}

.home-section a{
	text-decoration: none;
	color: #FFFFFF;
}

.hs-txt h1{
	color: #FFFFFF;
	font-size: 3.8rem;
	margin-bottom: 1rem;
	font-weight: 500;
	
}

.hs-txt p{
	color: #FFFFFF;
	margin-bottom: 1.4rem;
	line-height: 2rem;
}

.hs-img img{
	width: 50rem;
	height: auto;
}

.hs-txt button{
	background: #D95B10;
	color: #000000;
	text-decoration: none;
	font-weight: 600;
	padding: .5rem .7rem;
	border: 2px solid #D95B10;
	border-radius: 30px;
	transition: .4s;
}

.hs-txt button:hover{
	background: transparent;
	color: #FFFFFF;
	font-weight: 500;
	cursor: pointer;
	transition: .3s;
}

footer{
	text-align: center;
	background: #004A4E;
	color: #A0A0A0;
	padding: 2rem;
}


.topic{
	text-align: center;
	background: #004A4E;
	color: #FFFFFF;
	font-size: 2rem;
	padding-top: 9rem;
	padding-bottom: 2.5rem;
	
}

.topic2{
	text-align: center;
	background: #004A4E;
	color: #FFFFFF;
	font-size: 2rem;
	padding: 2.5rem;
	
}

.gall-imgs{
	background: #FFFFFF;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 1rem 3rem;
}

.gall-imgs4{
	background: #007F87;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 1rem 3rem;
}

.gall-imgs img{
	padding: 1.5rem;
	transition: .4s;
	
}

.gall-imgs img:hover{
	cursor: zoom-in;
	transition: .3s;
	transform: scale(1.1);
	border-radius: 3rem;
}

.gall-imgs4 img{
	padding: 1.5rem;
	transition: .4s;
	
}

.gall-imgs4 img:hover{
	cursor: zoom-out;
	transition: .3s;
	transform: scale(.8);
	border-radius: 3rem;
	background: #FFFFFF;
}

.gall-imgs2{
	background: #FFFFFF;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 2rem;
}

.gall-imgs2 img{
	padding: 1.5rem;
	transition: .3s;
}

.gall-imgs2 img:hover{
	cursor: pointer;
	background: #3D3D3D;
}

.gall-imgs2 iFrame{
	margin:2rem;
}


.Contact-sec{
	background: #007F87;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 13% 30%;
	padding-bottom: 4rem;

}

.Contact-sec h1{
	color: #FFFFFF;
	font-size: 2rem;
	font-weight: 500;
	padding-bottom: 1rem;
	
}

.Contact-sec p{
	color: #FFFFFF;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	
}

.Contact-form form{
	position: relative;
}

.Contact-form form input,form textarea{
	width: 100%;
	padding: 1rem;
	margin: 6px;
	border: none;
	border-radius: 1.4rem;
	outline: none;
	background: #FFFFFF;
	color: #000000;

}

.cont-img{
	margin-left: 3rem;
}

.Contact-form .btn{
	background: #E59E22;
	color: #ffffff;
	width: 8rem;
	cursor: pointer;
	transition: .2s;
	font-size: 1rem;
	padding: .8rem;
	font-weight: 500;
}

.Contact-form .btn:hover{
	
	border-radius: 8px;
	color: white;

	
}

.abbtt{
	height: 100vh;
	text-align: center;
	color: #FFFFFF;
	background: #FFFFFF;
	padding-top: 4rem;
}

.txxxt h1{
	
	height: 15rem;
	font-size: 4rem;
	padding: 1rem;
	margin-bottom: 2rem;
	font-weight: 500;
	color: #FFFFFF;
	background: #007F87;
	line-height: 17rem;
}
	
.txxxt{
	line-height: 1.4rem;
	margin-bottom: 2.5rem;
}
	
.txxxt p{
	margin-bottom: 1rem;
	letter-spacing: 1px;
	color: #000000;
	
}

.contt{
	text-align: center;
	padding: 2rem;
	line-height: 1.4rem;
	
}

.contt h1{
	margin: 1rem;
	
}

.whole-sec{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #007F87;
	text-transform: uppercase;
	font-size: 1.1rem;
}

.smal-sec{
	margin: 2rem;
}

.whole-sec img{
	transition: .5s;
}

.whole-sec img:hover{
	cursor: pointer;
	transform: scale(.9)
}











