@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
	
:root{
	--orange:#ffa500;
}
		
*{
	font-family: 'poppins', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-transform: capitalize;
	outline: none;
	border: none;
	text-decoration: none;
	transition: all .2s lineae;	
}
*::selection{
	background: var(--orange);
	color:#fff;
}
html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-padding-top: 6rem;
	scroll-behavior: smooth;
}
section{
	padding:2rem 9%;
}



.heading{
	text-align: center;
	padding: 5.5rem 0
}
.heading span{
	font-size: 4rem;
	background: black;
	color: white;
	border-radius: .5rem;
	padding: .2rem 1rem;
}
.heading span.space{
	background: white;
}
.btn{
	display:inline-block;
	margin-top:1rem;
	background:black;
	color:#fff;
	padding:.8rem 3rem;
	border:.3rem solid black;
	cursor:pointer;
	font-size:2rem;
}
.btn:hover{
	background: yellow;
	color:black;
}
.btn1{
	display:inline-block;
	margin-top:1rem;
	background:white;
	color:black;
	padding:.8rem 3rem;
	border:.3rem solid black;
	cursor:pointer;
	font-size:2rem;
}
.btn1:hover{
	background: yellow;
	color:black;
}



header{
	position: fixed;
	top: 0; left: 0; right: 0;
	background: #333;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:2rem 9%;
}
header .logo{
	font-size: 2.5rem;
	font-weight: bolder;
	color: #ff0;
	text-transform: uppercase;
}
header .logo span{
	color: var(--orange);
}
header .navbar a{
	color: #fff;
	font-size: 2rem;
	margin: 0.8rem;
}
header .navbar a:hover{
	color: black;
}
header .icon i{
	font-size: 3rem;
	color:#fff;
	cursor: pointer;
	margin-right: 2rem;
}
header .icon i1{
	font-size: 5rem;
	color:#fff;
	cursor: pointer;
	margin-right: 2rem;
}
header .icon i:hover{
	color: black;
}
header .icon i1:hover{
	color: black;
}
header .search-bar-container{
	position: absolute;
	top:100%; left:0; right: 0;
	padding: 1.5rem 2rem;
	background: #333;
	border-top: .1rem solid rgba(255,255,255,.2);
	display:flex;
	align-items: center;
	z-index: 1001;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
header .search-bar-container.active{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
header .search-bar-container #search-bar{
	width: 100%;
	padding: 1rem;
	text-transform: none;
	color:#333;
	font-size: 1.7rem;
	border-redius: .5rem;
}
header .search-bar-container label{
	color: #fff;
	cursor: pointer;
	font-size: 3rem;
	margin-left: 1.5rem;
}
header .search-bar-container label:hover{
	color: var(--orange);
}
body{
	height:200rem;
}




.login-form-container{
	position: fixed;
	top:-120%; left: 0;
	z-index: 10000;
	min-height: 100vh;
	width: 100%;
	background: rgba(0,0,0,.7);
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-form-container.active{
	top:0;
}	

.login-form-container form{
		margin: 2rem;
		padding: 1.5rem 2rem;
		boder-radius: .5rem;
		background: #fff;
		width: 50rem;
}
.login-form-container form h3{
	font-size: 3rem;
	color: #444;
	text-transform:uppercase;
	text-align: center;
	padding:1rem 0;
}
.login-form-container form .box{
	width: 100%;
	padding:1rem;
	font-size:1.7rem;
	color:#333;
	margin:2rem 0;
	border:.1rem solid rgba(0,0,0,.3);
	text-transform: none;
}
.login-form-container form .box:focus{
	border-color: var(--orange);;
}
.login-form-container form #remember{
	margin:2rem 0;
}
.login-form-container form label{
	font-size:1.5rem;
}
.login-form-container form .btn{
	display:block;
	width:100%;
}
.login-form-container form p{
	padding:.5rem 0;
	font-size:1.5rem;
	color:#666;
}
.login-form-container form p a{
	color:red;
}
.login-form-container form p a:hover{
	color:#333;
	text-decoration: underline;
}
.login-form-container #form-close{
	position: absolute;
	top: 2rem; right:3rem;
	font-size: 3.5rem;
	color: #fff;
	cursor:pointer;
}


#menu-bar{
	color:#fff;
	border: .3rem solid #fff;
	border-radius: .5rem;
	font-size:2rem;
	padding: .5rem 1.2rem;
	cursor: pointer;
	display: none;
	
}




.home{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	position: relative;
	z-index: 0;
}
.home .content{
	text-align: center;
}
.home .content h3{
	text-align: center;
	font-size:7rem;
	color: black;
	text-transform: uppercase;
	text-shadow: 0 15.3rem .5rem rgba(0,0,0,.1);
}
.home .content p{
	font-size:5rem;
	color:black;
	padding:5rem 0;
}
.home .content .icon i{
	font-size: 5rem;
	color: yellow;
	cursor: pointer;
	margin-right: 2rem;
}
.home .content .icon i:hover{
	color: black;
}
.home .video-container video{
	position: absolute;
	top:0; left:0;
	z-index:-1;
	height:100%;
	width:100%;
	object-fit: cover;
}
.home .controls{
	padding: 1rem;
	border-radius: 5rem;
	background: rgba(0,0,0,.7);
	position: relative;
	top: 10rem;
}
.home .controls .vid-btn{
	height: 2rem;
	width: 2rem;
	display: inline-block;
	border-radius: 50%;
	background: white;
	cursor: pointer;
	margin: 0 .5rem;
}
.home .controls .vid-btn.active {
	background: red;
}
body{
	height:300rem;;
}



	

.packages .box-container{
	display: flex;
	flex-wrap:wrap;
	gap: 2rem;
}
.packages .box-container .box{
	flex:1 1 30rem;
	border: var(--border);
	border-radius: .5rem;
	overflow: hidden;
	box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
	background: var(--red);
}
.packages .box-container .box:nth-child(1),
.packages .box-container .box:nth-child(2),
.packages .box-container .box:nth-child(3),
.packages .box-container .box:nth-child(4),
.packages .box-container .box:nth-child(5),
.packages .box-container .box:nth-child(6){
	display: inline-block;
}
.packages .box-container .box .image img{
	transform: acale(1.1);
}
.packages .box-container .box .image {
	height: 25rem;
	overflow: hidden;
}
.packages .box-container .box .image img{
	height: 100%;
	width:100%;
	object-fit: cover;
	transition: .2s linear;
}
.packages .box-container .box .content {
	padding: 2rem;
	text-align: center;
}
.packages .box-container .box .content h3{
	font-size: 2.5rem;
	color: var(--black);
}
.packages .box-container .box .content p{
	font-size: 1.5rem;
	color: black;
	line-height: 2;
	padding: 1rem 0;
}
.packages .load-more{
	text-align: center;
	margin-top: 2rem;
}
.packages h4{
	text-align: center;
	font-size:4rem;
}



.book .row{
	display: flex;
	flex-wrap: wrap;
	gap:0rem;
	align: center;
}
.book .row .image{
	flex:1 1 120rem;
}
.book .row .image img{
	width:80%; height:70%;
	align: center;
}
.book .row form{
	flex: 1 1 15rem;
	padding: 2rem;
	box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
	border-radius: .5rem;
}
.book .row form .inputBox{
	padding: .001rem 0;
}
.book .row form .inputBox input{
	width:40%;
	padding:0.7rem;
	border: .1rem solid rgba(0,0,0,.1);
	font-size:1.rem;
	color: #333;
	text-transform: blue;
}
.book .row form .inputBox h3{
	font-size: 1.2rem;
	padding: .7rem 0;
	color: #666;
}
.book .popup{
	width: 400px;
	height: 250px;
	background: rgb(209, 217, 194);
	border-radius: 6px;
	border-color: black;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%,-50%) scale(0.1);
	text-align: center;
	padding: 0 30px 30px;
	color: #333;
	visibility: hidden;
}
.book .open-popup{
	visibility: visible;
	top: 180%;
	transform: translate(-50%,-50%) scale(1);
	transition: transform 0.4s, top 0.4s;
}
.book .popup img{
	width: 30%;
	height: 30%;
	margin-top: 0%;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.book .popup h2{
	font-size: 43px;
	font-weight: 500;
	margin: 10px 0 10px;
	font-style: oblique;
}
.popup button{
	width: 100%;
	margin-top: 25px;
	padding: 10px 0;
	background: #6fd649;
	color: rgb(249, 247, 247);
	border: 0;
	outline: none;
	font-size: 22px;
	border-radius: 4px;
	cursor: pointer;
	box-shadow: 0 5px 5px rgba(0,0,0,.2);
}
.book body{
	height: 50rem;
}




.gallery .box-container{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.gallery .box-container .box{
	overflow: hidden;
	box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
	border:1rem solid #fff;
	border-radius: .5rem;
	flex:1 1 30rem;
	height: 25rem;
	position: relative;
}
.gallery .box-container .box img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.gallery .box-container .box .content{
	position: absolute;
	top:-100; left:0;
	height: 100%;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,.7);
	padding: 2rem;
	padding-top: 5rem;
}
.gallery .box-container .box .content h3{
	font-size: 2.5rem;
	color: white;
}
.gallery .box-container .box:hover .content{
	top: 0;
}




.review .review-slider{
	padding-bottom: 2rem;
}
.review .box{
	padding: 2rem;
	text-align: center;
	box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
	border-radius: .5rem;
}
.review .box img{
	height: 13rem;
	width: 13rem;
	border-redius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}
.review .box h3{
	color: #333;
	font-size: 2.5rem;
}
.review .box p{
	color: #666;
	font-size: 1.5rem;
	padding: 1rem;
}
.review .box .stars i{
	color: orange;
	font-size: 1.7rem;
}
.review h2{
	font-size: 2rem;
}

.review .comment-form #comment-bar{
	width: 100%;
	padding: 1rem;
	text-transform: none;
	color:rgb(126, 28, 28);
	font-size: 2rem;
	border-redius: .5rem;
}
.review .comment-form label{
	color: white;
	cursor: pointer;
	font-size: 3rem;
	margin-left: 1.5rem;
}



button{
	background: black;
	color: white;
	border-radius: 0 5px 5px;
	cursor:pointer;
	position: relative;
	padding: 5px;
	font-family: sans-serif;
	border: none;
	font-size: 20px;
}




.services  h2{
	font-size: 3.5rem;
}
.services .box-container{
	display: flex;
	flex-weap: wrap;
	gap:1.5rem;
}
.services .box-container .box{
	flex:1 1 30rem;
	border-radius: .5rem;
	padding: 1rem;
	text-align: center;
}
.services .box-container .box i{
	padding: 1rem;
	font-size: 5rem;
	color: green;
}
.services .box-container .box h5{
	font-size: 1.5rem;
	color: black;
}
.services .box-container .box p{
	font-size: 1.5rem;
	color: #666;
	padding: 1rem;
}
.services .box-container .box:hover{
	box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
}
.services .box-container1 .box h4{
	font-size: 3.5rem;
}
.services .box-container1 .box h2{
	font-size: 2.5rem;
}
.services .box-container1 .box p{
	font-size: 1.5rem;
}
.services .box-container1 .rows{
	display: flex;
	flex-wrap: wrap;
	gap:10rem;
	background: yellow;
}
.services .box-container1 .rows .image{
	flex:1 1 20rem;
}
.services .box-container1 .rows .image img{
	width: 100%;
}




.footer{
	background-color: #333;
}
.footer .box-container{
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}
.footer .box-container .box{
	padding: 1rem 0;
	flex: 1 1 25rem;
}
.footer .box-container .box h3{
	font-size: 2.5rem;
	padding: .7rem 0;
	color:white;
}
.footer .box-container .box p {
	font-size: 1.5rem;
	padding: .7rem 0;
	color: #eee;
}
.footer .box-container .box h2{
	font-size: 1.5rem;
	padding: .7rem 0;
	color: #eee;
}
.footer .box-container .box a{
	display: block;
	font-size: 1.5rem;
	padding: .7rem 0;
	color: #eee;
}
.footer .box-container .box a:hover{
	color: black;
	text-decotation: underline;
}
.footer .credit{
	text-align: center;
	padding: 2rem 1rem:
	margin-top: 1rem;
	font-size: 2rem;
	font-weight: normal;
	color: #fff;
	border-top: .3rem solid white;
}
.footer .credit span{
	color: orange;
}
.footer .box-container .box ul{
	color:white;
	font-size:2rem;
}





/* media queries */

@media (max-width:1000px){
	html{
		font-size: 45%;
	}
}
@media (max-width:991px){
	header{
		padding:2rem;
	}
	selction{
		padding:2rem;
	}
}
@media (max-width:768px){
	#menu-bar{
		display:initial;
	}
	header .navbar{
		position:absolute;
		top:100%; right:0; left:0;
		background:#333;
		border-top: .1rem solid rgba(255,255,255,.2);
		padding:1rem 2rem;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	header .navbar.active{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
	header .navbar a{
		display: block;
		border-radius:.5rem;
		padding:1.5rem;
		margin:1rem 0;
		background: #222;
	}
}	
	@media (max-width:450px){
	html{
		font-size:50%;
	}
	.heading span{
		font-size: 2.5rem;
	
	}
}	

