*

{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	scroll-behavior: smooth;

}
body{
	background: #111;
}

section{
	position: relative;
	padding: 100px;
}
.header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000000;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-top: 20px;
    
}
.header .logo{
	 color: #fff;
	 text-decoration: none;
	 font-size: 1.2em;
} 

.header .toggle img{
   max-width: 40px;
   cursor: pointer;
}
.banner{
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

}
.banner:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 400px;
	z-index: 1;
	background: linear-gradient(to top, #111, transparent);

}

.banner .content{
	position: relative;
	max-width: 900px;
	text-align: center;
	z-index: 1;
}

.banner .content h2{
	color: #fff;
	font-size: 5em;
}

.banner .content p{
	color: #fff;
	font-size: 1.2em;
}
.btn {
	position: relative;
	display: inline-block;
	margin-top: 30px;
	padding: 10px 30px;
	background: #fff;
	color: #333;
	text-decoration: none;
}
.fitBg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
}
 .about {
 	position: relative;
 	width: 100%;
 	display: flex;
 	justify-content: center;
 	align-items: center;
 }
 .about  .contentBx{
 	min-width: 50%;
 	width: 50%;
 	text-align: end;
    padding-right: 40px;
 }
.titleText {
	font-weight: 600;
	color: #fff;
	font-size: 2em;
	margin-bottom: 10px;
}

.text {
	color:#fff;
	font-size: 1em;
}
.about .imgBx{
	position: relative;
	min-width: 50%;
	width: 50%;
	min-height: 500px;
} 

.banner2,
.banner3 {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;

}
.banner2:before,
.banner3:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 400px;
	z-index: 1;
	background: linear-gradient(to top, #111, transparent);
}
.banner2:after,
.banner3:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
	z-index: 1;
	background: linear-gradient(to bottom, #111, transparent);
}

/* Starting with the destination */

.destination {
	text-align: center;
}

.destination .content{
	text-align: center;
}

.destination .destinationList{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.destination .destinationList .box{
	position: relative;
	min-width: 350px;
	height: 480px;
	background: #191919;
	transition: 0.5s;
	margin: 10px;
}

.destination .destinationList:hover .box{
	opacity: 0.2;
}

.destination .destinationList .box:hover{
	opacity: 1;
}

.destination .destinationList .box .imgBx{
	position: relative;
	width: 100%;
	height: 400px;
}

.destination .destinationList .box .content{
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.destination .destinationList .box .content h2{
	color: #fff;
	font-weight: 500;
	line-height: 1.2em;
}

.destination .destinationList .box .content h2 span{
	font-size: 0.8em;
	font-weight: 300;
	opacity: 0.5;
}

/* Moving to the last side of the page */
.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footer .sci {
   position: relative;
   display: flex;
}

.footer .sci li {
	list-style: none;
} 

.footer .sci li a {
	text-decoration: none;
	margin: 0 20px;
}
 
 .footer .sci li a img {
 	filter: invert(1);
 	max-width: 40px;
 }

 .copyText {
 	margin-top: 20px;
 	color: #fff;
 	font-size: 18px;
 	font-weight: 300;
 	color: #666;
 	text-align: center;
 }


.copyText a {
 	color: #fff;
 	text-decoration: none;

 }

  