@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&family=Nunito:wght@200;300;400;500;600&display=swap');

:root{
   --main-color:#be9c79;
   --black:#333;
   --white:white;
   --light-color:#666;
   --border:.2rem solid var(--black);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
body{
	background-color : white;
  }

*{
   font-family: 'Nunito', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   /* text-transform: capitalize; */
}

*::selection{
   background-color: var(--main-color);
   color:var(--white);
}

::-webkit-scrollbar{
   height: .5rem;
   width: 1rem;
}

::-webkit-scrollbar-track{
   background-color: transparent;
}

::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 6.5rem;
}

section{
   padding:3rem 2rem;
   max-width: 1200px;
   margin:0 auto;
}


.footer .section{
	padding:3rem 2rem;
	margin:0 auto;
 } 

.footer .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:1.5rem;
   align-items: flex-start;
}


.footer .box-container .box{
   text-align: center;
}

.footer .box-container .box i{
	font-size: 2.5rem;
	line-height: 6rem;
	height: 6rem;
	width: 6rem;
	border-radius: 50%;
	
	background-color: var(--main-color);
	color:var(--white);
	margin-bottom: 1rem;
 }

.footer .box-container .box h3{
   margin:1rem 0;
   font-size: 2rem;
   color:var(--black);
}

.footer .box-container .box p{
   line-height: 2;
   font-size: 1.6rem;
   color:var(--light-color);
}

.footer .credit{
   text-align: center;
   margin-top: 3rem;
   padding-top: 2.5rem;
   border-top: var(--border);
   font-size: 2rem;
   color:var(--black);
   /* padding-bottom: 7rem; */
}

.footer .credit span{
   color:var(--main-color);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	font-family: 'Roboto', sans-serif;
}

li {
	list-style: none;
}

.service-offered li{

	list-style: circle;
	margin-left: 2%;
	
}

a {
	text-decoration: none;
}

.header{
	border-bottom: 1px solid #E2E8F0;
}

.navbar.main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 1.5rem;
	margin-bottom: 0px !important;
	content: none !important;
	position: relative;
	z-index: 1;
}


.hamburger {
	display: none;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #101010;
}

.nav-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-item {
	margin-left: 5rem;
}

.nav-link{
	font-size: 1.6rem;
	font-weight: 400;
	color: #475569;
}

.nav-link:hover{
	color: #482ff7;
}

.nav-logo {
	font-size: 1.5rem;
	font-weight: 500;
	color: #482ff7;
}

@media only screen and (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 5rem;
		flex-direction: column;
		background-color: white;
		width: 100%;
		border-radius: 10px;
		text-align: center;
		transition: 0.3s;
		box-shadow:
			0 10px 27px rgba(0, 0, 0, 0.05);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-item {
		margin: 2.5rem 0;
	}

	.hamburger {
		display: block;
		cursor: pointer;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(1) {
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(3) {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}
}



/* CSS for Why choose us  */

.layout_padding {
	padding: 70px 0;
 }

 .heading_container h2 {
	position: relative;
	margin-bottom: 0;
	font-size: 3.5rem;
	font-weight: bold;
}

.heading_container h2::after {
	content: "";
	display: block;
	width: 70px;
	height: 5px;
	background: #f7444e;
	margin: 10px auto 10px;
}

.heading_container h2 span {
	color: #f7444e;
}

.heading_container p {
	margin-top: 10px;
	margin-bottom: 0;
}

.heading_container.heading_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.heading_container.heading_center h3 {
	position: relative;
	margin-bottom: 15px;
	font-size: 2.5rem;
	font-weight: bold;
	font-family: 'Playfair Display', serif;
}
.why_section .box .img-box {
	margin-bottom: 15px;
}

.why_section .box .img-box svg {
	width: 55px;
	height: auto;
	fill: #ffffff;
}

.detail-box h5 {
	font-size: 21px;
	font-weight: 700;
}

@media (max-width: 576px) {
.heading_container h2 {
	font-size: 2.2rem;
}
}

@media (max-width: 480px) {
.heading_container h2 {
	font-size: 2rem;
}
}

.why_section .box {
	text-align: center;
	margin-top: 45px;
	background-color: #0078d0;
	padding: 45px 50px;
	border-radius: 5px;
	color: #ffffff;
	transition: 0.3s;
	opacity: 0.6;
}

.why_section .box:hover {opacity: 1}
.why_section .box .img-box {
	margin-bottom: 15px;
}
.why_section .box .img-box svg {
	width: 55px;
	height: auto;
	fill: #ffffff;
}

.button-knowmore {
	background-color:cornflowerblue;
	border-radius: 100px;
	 box-shadow:aqua;         
	color: rgb(240, 247, 246);
	cursor: pointer;
	display: inline-block;
	font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
	padding: 7px 20px;
	text-align: center;
	text-decoration: none;
	transition: all 250ms;
	border: 0;
	font-size: 16px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	padding: 1rem;
	/* background-image: url('../images/nz-flag.jpg'); */
	
}

.button-knowmore-aboutus {
	background-color:cornflowerblue;
	border-radius: 100px;
	 box-shadow:aqua;         
	color: rgb(240, 247, 246);
	cursor: pointer;
	display: inline-block;
	font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
	padding: 7px 20px;
	text-align: center;
	text-decoration: none;
	transition: all 250ms;
	border: 0;
	font-size: 16px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	padding: 1rem;
	/* background-image: url('../images/nz-flag.jpg'); */
	
}

.button-knowmore-destination {
	background-color:cornflowerblue;
	border-radius: 100px;
	 box-shadow:aqua;         
	color: rgb(240, 247, 246);
	cursor: pointer;
	display: inline-block;
	font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
	padding: 7px 20px;
	text-align: center;
	text-decoration: none;
	transition: all 250ms;
	border: 0;
	font-size: 16px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	padding: 1rem;
	/* background-image: url('../images/nz-flag.jpg'); */
	
}

.button-knowmore:hover {
box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
transform: scale(1.05) rotate(-1deg);
}

.button-knowmore-aboutus:hover {
	box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
	transform: scale(1.05) rotate(-1deg);
	}

.button-knowmore-destination:hover {
	box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
	transform: scale(1.05) rotate(-1deg);
	}
.why_text{
	margin-left: 0px !important;

}


.footer-color{
	background-color: #f5f5f5 !important;
}

.footer-text{
	text-align: center;
	padding: 10px 0;
	margin-top: 10px;
}

/* round image css */

.round-image{
	border-radius: 50%;
	width: 15%;
}

.round-image-div{
	text-align: center;
	margin-top: 1.5%;
}

.social-media {
	text-align:center;
  }
  .icon {
	  position:relative;
	  text-align:center;
	  width:0px;
	  height:0px;
	  padding:20px;
	  border-top-right-radius: 	20px;
	  border-top-left-radius: 	20px;
	  border-bottom-right-radius: 20px;
	  border-bottom-left-radius: 	20px; 
	  -moz-border-radius: 		20px 20px 20px 20px;
	  -webkit-border-radius: 		20px 20px 20px 20px;
	  -khtml-border-radius: 		20px 20px 20px 20px; 	
	  color:#FFFFFF;
  }
  .icon i {
	  font-size:20px;
	  position:absolute;
	  left:9px;
	  top:10px;
  }
  .icon.social {
	  float:left;
	  margin:0 5px 0 0;
	  cursor:pointer;
	  background:#3b5998 ;
	  transition: 0.5s;
	  -moz-transition: 0.5s;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s; 	
  }
  .icon.social:hover {
	  background:#262626 ;
	  transition: 0.5s;
	  -moz-transition: 0.5s;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  -webkit-filter:	drop-shadow(0 1px 10px rgba(0,0,0,.8));
	  -moz-filter: 	drop-shadow(0 1px 10px rgba(0,0,0,.8));
	  -ms-filter: 		drop-shadow(0 1px 10px rgba(0,0,0,.8));
	  -o-filter: 		drop-shadow(0 1px 10px rgba(0,0,0,.8));
	  filter: 			drop-shadow(0 1px 10px rgba(0,0,0,.8));	 	
  }
  .icon.social.fb i {
	  left:13px;
	  top:10px;
  }
  .icon.social.tw i {
	  left:11px;
  }
  .icon.social.in i {
	  left:11px;
  }
  .icon.social.ins i {
	left:11px;
}

.topic-text{
	font-size: 23px;
	font-weight: 600;
	color: #3e2093;
  }

  .input-box{
	height: 50px;
	width: 100%;
	margin: 12px 0;
  }

  .input-box input,
 .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #F0F1F8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.input-box textarea{
	padding-top: 6px;
  }

  .button{
	display: inline-block;
	
  }

  .button input[type="submit"]{
	color: #fff;
	font-size: 18px;
	outline: none;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	background: #3e2093;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  .button input[type="submit"]:hover{
	background: #5029bc;
  }

  .message-box{
	min-height: 110px;
  }

  .button input[type="submit"]:hover {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
  
  .button input[type="submit"]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }

  .text-block {
	position: absolute;
	top: 20px;
	left:2px;
	background-color: black;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
  }

  .text-block-sec{
	position: absolute;
	top: 20px;
	right:5px;
	background-color: black;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
  }

  .text-block-sec-l{
	position: absolute;
	bottom: 20px;
	right:5px;
	background-color: black;
	color: white;
	padding-left: 20px;
	padding-right: 20px;
  }

  .text-block-sec-black{
	position: absolute;
	top: 20px;
	right:5px;
	background-color: black;
	color:white;
	padding-left: 20px;
	padding-right: 20px;
  }