/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
	font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}
body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
	font-family: 'Montserrat', sans-serif;
}

body img {
    max-width: 100%;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
	color: #323648;
	font-family: 'Montserrat', sans-serif;
}
li {
    list-style-type: none;
}
p {
    margin: 0;
    font-size: 17px;
    line-height: 2em;
    letter-spacing: 1px;
    color: #707579;
	font-family: 'Open Sans', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}
html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
	
}

body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;

}
html {
  scroll-behavior: smooth;
}
body img {
    max-width: 100%;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 1px;
}

p {
    margin: 0;
    line-height: 2em;
    letter-spacing: 1px;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
/*-- header --*/
header {
    position: absolute;
    width: 100%;
    padding: 15px 0;
	z-index: 9;
}
.right-p li ,.right-p li  a{
    display: inline-block;
    color: #ddd;
    font-size: 15px;
    letter-spacing: 2px;
}
.right-p li  span{
    color: #fff;
}
/*-- header --*/

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
}


/* #logo a {
	float: left;
    font-size: .7em;
    display: initial;
    margin: 0;
    letter-spacing: 1px;
    color: #fff;
    padding: 0px 0;
    border: none;
} */
#logo a {
    float: left;
    display: flex;         /* Enables alignment tools */
    align-items: center;    /* Centers the logo and text vertically */
    gap: 10px;             /* Adds space between the logo and the text */
    font-size: .7em;
    color: #fff;
    text-decoration: none;
}

.logo-img {
    height: 40px;          /* Set the height to match your text size */
    width: auto;           /* Keeps the logo proportional */
}
span.fa.fa-free-code-camp {
    color: #f4b200;
    font-weight: bold;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	}

/* Styling the links */
nav a {
    color: #ddd;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
	padding: 10px 13px;
    font-weight: 400;
    font-size: 16px;
    vertical-align: middle;
}
nav ul li ul li:hover { background: #f8f9fa; }

/* Background color change on Hover */
nav a:hover { 
	color: #ddd;
}
.menu li.active  a{ 
	color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 30px; 
    background: #fff;
    padding: 10px;
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}
nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 991px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}
	.menu li.active a {
		color: #ff4f81;
	}
	nav ul li span {
		color: #333;
	}
	nav {
		margin: 0;
	}
	nav a {
		color: #333;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		padding: 5px 15px;
		font-size: 20px;
		text-decoration: none;
		border: none;
		float: right;
		background-color: #ff4f81;
		color: #fff;
		margin-bottom: 0;
	}
	.menu .toggle {
		float: none;
		text-align: center;
		margin: auto;
		width: 30%;
		padding: 5px;
		font-weight: normal;
		font-size: 15px;
		letter-spacing: 1px;
	}

	.toggle:hover {
		color:#333;
		background-color: #fff;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
		background: #fff;
		padding: 15px 0;
		width:100%;
		text-align: center;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		padding: 7px 0;
		}
	nav a{
		padding: 5px 0;
	}
	nav a:hover {
		color: #333;
	}
	.login-icon {
		text-align: center;
	}
	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: transparent;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
	nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #fff; 
	}
	nav ul ul li a {
		font-size: 15px;
	}
	ul.inner-ul{
		padding: 0!important;
	}
	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
		padding: 0;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}
.user span.fa {
    font-size: 25px;
    color: #fff;
}
/*-- //header --*/

/*-- banner --*/
.banner {
    background: url(../images/home.jpeg)no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
.layer {
    background: rgba(0, 0, 0, 0.5);
}
.w3ls_banner_txt p {
    color: #eee;
    text-transform: capitalize;
    font-size: 15px;
}
.banner-text-w3ls {
    padding: 15vw 0 18vw;
    box-sizing: border-box;
}
.banner-form-w3 {
    padding: 18vw 0 0vw;
    box-sizing: border-box;
}

h3.b-w3ltxt span {
    color: #fff;
}
h3.b-w3ltxt {
    font-size:5em;
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 0px #333;
}

h4.b-w3ltxt {
    font-size: 3em;
    letter-spacing: 3px;
    font-weight: 300;
    color: #fff;
}

.btn-banner {
    background: none;
	border: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 12px 30px;
    display: inline-block;
}
.btn-banner:hover  {
    color: #fff;
}

.carousel-indicators {
    position: absolute;
    bottom: -53px;
    margin-left: 0;
    justify-content: flex-start;
    z-index: 1;
}

.carousel-indicators li {
    cursor: pointer;
}
.carousel-indicators li {
    width: 18px;
    height: 8px;
    margin-right: 5px;
    margin-left: 5px;
}

.form-style-w3layout input[type="text"], .form-style-w3layout input[type="email"], .form-style-w3layout input[type="password"],select {
    outline: none;
    font-size: 14px;
    border: none;
    color: #666;
    background: #f1f1f1;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    width: 49%;
    box-sizing: border-box;
    margin-bottom: 15px;
}
.form-style-w3layout button.btn {
    color: #fff;
    background: #f4b200;
    border: none;
    padding: 14px 0;
    outline: none;
	border-radius: 0;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
.form-style-w3layout input[type="submit"]:hover {
    background: #dc3545;
}
.padding {
    padding: 2.5em;
   background-color:rgba(1, 17, 68, 0.17);
}
.padding h5 {
    font-weight: 700;
    font-style: normal;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size:30px;
    line-height: 1.2;
    text-align: center;
}
.form-style-w3layout span {
    font-size: 13px;
    color: #666;
}
.form-style-w3layout span a {
    color: #ff4f81;
}
.w3ls_banner_txt h4 {
    font-size: 2em;
    color: white;
    text-align: center;
}
.w3ls_banner_txt p {
    font-size: 2em;
    text-align: center;
	font-weight: 600;
	margin-left: 2.3em;
}
span.fa.fa-usd {
    color: #f4b200;
    margin-right: 0.3em;
}
span.fa.fa-ils {
    font-size: 3em;
}

/*-- //banner --*/
h3.heading {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
}
h3.heading1 {
    color: #fff;
}
/*-- /banner-bottom --*/
section#about {
    background: #f4b200;
}
.about-info p {
    color: #ffffff;
}
.vv-border-info {
    margin: 0 auto;
    width: 80%;
    border: 1px solid #ddd;
    padding: 4em;
    border-radius: 4px;
    background: transparent;
}

h4.title-hny {
    color: #ffffff;
    font-size: 2em;
    line-height: 1.5em;
}

.sub-tittle-vjm {
    display: block;
    font-size: 0.7em;
    color: #999;
    letter-spacing: 1px;
}

.team-info h4 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
}
.read-more-button {
    margin-top: 1.2em;
}

.read-more, .read-more:hover {
    background: #011144;
    color: #fff;
    padding: 0.8em 2em;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
    font-size: 1em;
    display: inline-block;
    border: none;
    transition: all 500ms ease;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5em;
}

.read-more:hover {
    opacity: 0.9;
}
.btn {
    display: block;             /* Makes it fill the space */
    background: #f4b200;        /* Your brand yellow */
    color: #ffffff !important;  /* White text */
    padding: 12px 20px;         /* Size of the button */
    text-align: center;
    text-decoration: none;      /* Removes the link underline */
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #011144;        /* Changes to your dark blue color on hover */
    color: #fff;
}
/*-- //banner-bottom --*/
/*-- services --*/

.service-icon span.fa{
    font-size:40px;
    color: #f4b200;
}
.service-grid h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
}
/*-- //services --*/
/*-- //services --*/
/*-- stats --*/
.stats h3.heading {
    color: #f8f9fa;
}
.stats p {
    color: #ccc;
    text-transform: capitalize;
}

.stats-left h4 span {
    font-size: 50px;
    font-weight: 600;
    color: #f4b200;
}

.stats-left h4 {
    color: #fff;
}

.stats-right h4 {
    font-size: 2.4em;
    font-weight: 700;
    margin: 15px 0;
    color: #fff;
}


.stats-right span.fa {
 color: #fff;
    font-size: 20px;
    background: #f4b20094;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.stats {
    background: url(../images/stats1.jpg) no-repeat 0px 0px;
    background-size: cover;
    position: relative;
}

.brands a span.fa {
    font-size: 3em;
    color: #333;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

/*-- //stats --*/

/*-- about bottom --*/
.banner-about {
    padding: 3em 4em;
    background: #f6f6f6;
}
.banner-about h4 {
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: capitalize;
}
h5.bottom {
    margin: .5em 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 24px;
}
.bottom-left {
    background: url(../images/left.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.banner-about span.fa{
	font-size: 40px;
	color: #da9d40;
}
.bg-image-left {
    background: url(../images/sigiriya-459197_1280.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 450px;
	margin: 5px;
}
.bg-image-right {
    background: url(../images/ella-4788958_1920.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 250px;
	margin: 5px;
}
.bg-image-bottom1 {
    background: url(../images/temple-204803_1920.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 190px;
	margin: 5px;
}
.bg-image-bottom2 {
    background: url(../images/lee-bernd-WphpOsnJ96U-unsplash.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 190px;
	margin: 5px;
}

.bg-image-left h4 {
    padding-top: 350px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 450px;
}
.bg-image-right h4 {
    padding-top: 170px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 250px;
}
.bg-image-bottom1 h4,.bg-image-bottom2 h4 {
    padding-top:120px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 190px;
}
/*-- //about bottom --*/


/*-- /gallery --*/
section#gallery {
    position: relative;
}

.gal-img {
    padding: 10px;
}

.gal-img img {
    border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    -o-border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
}

.gal-img:hover.gal-img img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
}

.gal-img a span {
    font-size: 0.9em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
      color: #fff;
    text-shadow: 0 0 0.5px rgba(58, 57, 57, 0.25);
    background: #f4b200;
    display: block;
    padding: 1em;
    margin-bottom: 15px;
}
/*-- popup --*/

.pop-overlay {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}

.popup h2 {
    margin-top: 0;
    color: #fff;

}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #30c39e;
}


/*-- //popup --*/
/*-- //gallery --*/
/*-- /testimonials --*/

.testimonials {
   background:#f4b200;
}

.test-info {
    text-align: center;
}

.test-info h3 {
    font-size: 0.9em;
    color: #fff;
    font-weight: 600;

}

.test-img img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    padding: 4px;
    background: hsla(21, 60%, 94%, 0.33);
    width: 15%;
}

.w3layouts-footer.test-soc ul li {
    display: inline-block;
    margin: 0 0.3em;
}

.w3layouts-footer.test-soc ul li a span {
    color: #fff;
    margin: 0 0.5em;
    padding: 2em 4em;
}

.test-info p {
    background:#011144;
    padding: 3em;
    font-size: 0.85em;
    border-radius: 4px;
    position: relative;
}

.test-info p span {
    font-size: 1.5em;
    color: #d3d1d3;
}

ul.w3layouts-icons.clients li {
    text-align: center;
    display: inline-block;
}

ul.w3layouts-icons.clients li a span {
    color: #ffffff;
    font-size: 0.7em;
    margin: 0 0.1em;
}

ul.w3layouts-icons.clients li span:hover {
    color: #39d6af;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;

}

/*-- //testimonials --*/

/* destinations */
.destinations {
    background: #EBEDEF;
}
.destinations-grids {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.destinations-grids .caption h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}
h4.destination {
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 3px;
}
.rating ul li {
    display: inline-block;
    font-size: 2em;
   color: #fff;
}
.rating ul li span.fa {
    color: #fff;
    font-size: 13px;
}

.rating {
    background: #f4b200;
    position: absolute;
    right: 1%;
    top: 1%;
    padding: 0px 10px 5px;
}
.caption a {
    font-size: 15px;
    background: none;
    border: 1px solid #ccc;
    padding: 12px 20px;
    letter-spacing: 1px;
    color: #ccc;
    margin-top: 20px;
    display: inline-block;
}

.destinations-info {
    position: absolute;
    bottom: -227px;
    margin: 0;
    background: rgba(1, 17, 68, 0.74);
    padding: 30px 0px 10px;
    transition: .5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
	left: 15px;
	right:15px;
    text-align: center;
}

.destinations-grids:hover div.destinations-info {
    bottom: 0;
}

.caption {
    padding: 0px;}

    /*-- popup --*/

.pop-overlay {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}

.popup h2 {
    margin-top: 0;
    color: #fff;

}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #30c39e;
}

.pop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 9999;
}

.pop-overlay:target {
    display: block;
}

/* destinations responsive */
@media(max-width:1080px) {
    
}

@media(max-width:1024px) {
    
}

@media(max-width:991px) {
    
    .destinations-grids {
        padding: 0 5px;
    }

    .destinations-grids h4 {
        font-size: 18px;
    }
	.destinations-info {
		left: 5px;
		right: 5px;
	}
    .destinations-info {
        padding: 20px 0;
    }
	.toggle {
    background-color: #f4b200;
   }
}


@media(max-width:384px) {
    

    .destinations-grids {
        padding: 0 1em;
    }
}

@media(max-width:320px) {
    
}

/* //destinations responsive */
/* //destinations */
/*-- team --*/ 

.team-info {
    padding: 20px 0;
    background: #011144;
}
.team {
    background: #EBEDEF;
}
.team-info h3 {
    font-size: 1.3em;
    letter-spacing: 1px;
    color: #fff;
}

.team-info span{
    margin-top: .5em;
    font-size: .8em;
    text-transform: uppercase;
    color: #ffffffbd;
    letter-spacing: 1px;
}
/*-- //team --*/ 

/*-- contact --*/
.adress-w3pvt-info h6 {
    font-size: 1.2em;
    color: #3d3d3e;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 1em 0;
	text-transform: capitalize;
}
.adress-w3pvt-info a {
    color: #777;
    letter-spacing: 1px;
}
.adress-icon span.fa {
    color:#f4b200;
    font-size: 2em;
    vertical-align: middle;
}
.contact-forms input, .contact-forms textarea, .contact-forms select {
    font-size: 15px;
    color: #000;
    padding: 1em 1em;
    background: #f6f6f6;
    outline: none;
    border: none;
    letter-spacing: 1px;
    border-radius: 0px;
    outline: none !important;
}
.contact-forms select{
	padding: 0em 1em;
    height: 52px !important;
	color: #777;
}
button.sent-butnn {
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    letter-spacing: 2px;
    outline: none;
	color: #fff;
	background:#f4b200;
    border-radius: 0px;
    padding: 10px 20px;
}
.contact-left-form {
    padding: 3em;
    background: #fff;
	box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}
.contact-right h4 {
    font-size: 30px;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 40px;
    font-weight: 600;
    margin-top: 1em;
}
.contact-right h5 {
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 600;
}
.map iframe {
    border: none;
    outline: none;
    height: 350px;
    width: 100%;
}
/*-- contact --*/

/*-- footer --*/

.footer-content {
   background: #011144;
}

.footer-top-inner-vv {
    padding: 2em 0;
}

.footer-content h2 a {
    font-size: 0.8em;
    color: #fff;
    padding: 0;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    position: relative;
    text-transform: uppercase;  
}

.footer-content h2 a span {
    color: #ffc107;

    vertical-align: middle;
}

.con-gd .form-control {
    padding: 17px 17px;
    border: 0;
    border: none;
    outline: none;
    background: #fff;
    color: #fff;
    border-radius: 0;
    font-size: 0.9em;
    letter-spacing: 2px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
}

.con-gd button.btn {
    margin-left: auto;
    padding: 15px 5px;
    border: 0px;
    letter-spacing: 1px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    width: 100%;
}

/*--placeholder-color--*/

.con-gd ::-webkit-input-placeholder {
    color: #777;
}

.con-gd :-moz-placeholder {
    /* Firefox 18- */
    color: #777;
}

.con-gd ::-moz-placeholder {
    /* Firefox 19+ */
    color: #777;
}

.con-gd :-ms-input-placeholder {
    color: #777;
}

/*--//placeholder-color--*/
/* footer grids */

ul.list-info-lavi {
    list-style: none;
}

ul.list-info-lavi li {
    list-style: none;
    margin: 0.8em 0;

}

h4.footer-title {
    color: #777;
    text-transform: capitalize;
}

.footerv3-top p {
    font-size: 1em;
    color: #777;
    margin: 1em 0;
    line-height: 1.5em;
}

.footer p a {
    color: #777;
    text-decoration: underline;
}

.footer p a:hover,
.last-vv-contact p a:hover,
p.copy-right-grids a:hover {
    opacity: 0.9;
}

.last-vv-contact p {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.85em;
    letter-spacing: 1px;
	color: #ffffff;
}

.footer-top p {
    padding-right: 6em;
    color: #777;
}

.list-info-lavi li a {
    color: #ffffff;
    font-size: 0.85em;
    letter-spacing: 1px;
}

h3.lavi_title {
    font-size: 1.4em;
    color: #fff;
    font-weight: 500;
}

.last-vv-contact a {
    color: #f1f1f1;
}

.vv-icons li {
    display: inline-block;
    margin: 0 1em;
}

.vv-icons li a span {
    color: #333;
    font-size: 1.2em;
}

.vv-icons li a span:hover {
    color: #f4b200;
}

.news-letter-vv {
    padding: 60px 80px;
    background: #fdbd10;
}

p.news-para {
    color: #333;
    font-size: 1.1em;
    font-weight: 500;
}

ul.list-info-lavi span {
    margin-right: 0.5em;
    color: #999;
}

.feature-grids.team span {
    font-size: 1.5em;
}

/* //footer */

/* copyright */

p.copy-right-grids {
    color: #000;
    font-size: 16px;
}

p.copy-right-grids a {
    color: #777;
}


/* copyright */
.copy-right-top {
    background: #212020;
}
.copy-right {
    letter-spacing: 1px;
    font-size: 15px;
    color: #999;
}

.copy-right a {
    color: #eee;
}

.copy-right a:hover {
    color: #fff;
}

.copy-right-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}
/*-- move top --*/

.move-top {
    position: relative;
}

a.move-top {
    text-align: center;
    position: absolute;
    right: 1%;
    bottom: 0%;
}

a.move-top span{
    color: #fff;
    width: 36px;
    height: 36px;
    border: transparent;
    line-height: 2em;
    background: #333;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
}

/*-- //move top --*/
/* copyright */
/*-- //footer --*/

/*-- to-top --*/

/*-- //to-top --*/

/*-- Responsive design --*/
@media(max-width:1440px) {
	
}
@media(max-width:1366px) {
}
@media(max-width:1280px) {
    
}
@media(max-width:1080px) {
	h3.heading {
    font-size: 36px;
    letter-spacing: 2px;
}
}
@media(max-width:1024px) {
}
@media(max-width:991px) {
	h3.b-w3ltxt {
    font-size: 4em;
   }
   .gap1 {
    margin-top: 2em;
   }
}
@media(max-width:800px) {
	span.fa.fa-ils {
    font-size: 2.5em;
}
}
@media(max-width:768px) {
	.toggle {
    background-color: #f4b200;
	}
}
@media(max-width:736px) {
	.banner-text-w3ls {
    padding: 18vw 0 2vw;
    }
	.banner-form-w3 {
    padding: 3vw 0 2vw;
	
   }
   .padding {
    padding: 2em;
   }
   .move-top {
    margin-top: 0.2em;
   }
   .popup {
    width: 50%;
   }
}
@media(max-width:667px) {
	h3.b-w3ltxt {
    font-size: 3em;
   }
   span.fa.fa-ils {
    font-size: 2em;
  }
  .footer-content h2 a {
    font-size: 1em;
  }
  .footer-top-inner-vv {
    padding: 1em 0;
}
p.copy-right-grids {
    font-size: 15px;
}	
h3.b-w3ltxt {
    margin-left: 40px;
}
.move-top {
     margin-top:0.2em; 
}

}
@media(max-width:640px) {
h3.heading {
    font-size: 30px;
}
.rating ul li {
    font-size: 1.5em;
}
}
@media(max-width:600px) {
	h3.b-w3ltxt {
    font-size: 2.5em;
}
	span.fa.fa-ils {
    font-size: 1.5em;
}
h3.b-w3ltxt {
    margin-left: 78px;
}
h3.heading {
    font-size: 30px;
}
.stats-right h4 {
    font-size: 2em;
}
.stats-left h4 span {
    font-size: 35px;
}
.stats-right h4 {
    font-size: 1.8em;
}
.stats-right span.fa {
    font-size: 17px;
    width: 55px;
    height: 55px;
    line-height: 55px;
}
}
@media(max-width:568px) {
	.padding {
    padding: 1em;
}
.form-style-w3layout input[type="text"], .form-style-w3layout input[type="email"], .form-style-w3layout input[type="password"], select {
    width: 100%;
}
.read-more-button {
    margin-bottom: 2em;
}
h4.title-hny {
    font-size: 1.8em;
}
.team-grid img {
    width: 100%;
}
}
@media(max-width:480px) {
h3.b-w3ltxt {
    font-size: 2em;
}
span.fa.fa-ils {
    font-size: 1em;
}
.w3ls_banner_txt h4 {
    font-size: 1.5em;
}
.w3ls_banner_txt p {
    font-size: 1.5em;
}
.padding h5 {
    font-size: 18px;
}
h4.title-hny {
    font-size: 1.5em;
}
.banner-text-w3ls {
    padding: 21vw 0 2vw;
}
.footer-content h2 a {
    font-size: 0.9em;
}
h3.heading {
    font-size: 25px;
}
}
@media(max-width:414px){
	.banner-text-w3ls {
    padding: 24vw 0 1vw;
    }
	.rating ul li {
    font-size: 1.2em;
   }
   .copy-right {
    letter-spacing: 0px;
   }
	
}
@media(max-width:384px){
	h3.heading {
    letter-spacing: 1px;
   }
}
@media(max-width:375px){
h3.heading {
    letter-spacing: 0px;
}
}
/* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */
@media (max-width: 767px) {

  /* Header & Logo */
  #logo h1 {
    font-size: 18px;
  }

  .logo-img {
    width: 40px;
    height: auto;
  }

  /* Navigation menu */
  nav ul.menu {
    text-align: center;
  }

  nav ul.menu li {
    display: block;
    margin: 10px 0;
  }

  /* Banner */
  .banner {
    min-height: auto;
  }

  .banner-text-w3ls h3 {
    font-size: 40px;
    line-height: 1.3;
    text-align: center;
  }

  .banner-form-w3 {
    margin-top: 20px;
  }

  /* Sections padding */
  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* About section */
  .about-info h4 {
    font-size: 22px;
  }

  .about-info p {
    font-size: 14px;
  }

  /* Services */
  .service-grid {
    margin-bottom: 25px;
  }

  /* Stats */
  .stats-right {
    padding-left: 15px !important;
    text-align: center;
  }

  /* Gallery */
  .gal-img a img {
    margin-bottom: 15px;
  }

  /* Destinations */
  .destinations-grids h4.destination {
    font-size: 15px;
  }

  /* Testimonials */
  .test-info {
    text-align: center;
  }

  .test-img {
    text-align: center !important;
  }

  /* Contact */
  .contact-right {
    margin-top: 20px;
    padding-left: 15px !important;
  }

  /* Map */
  .map iframe {
    height: 300px;
  }

  /* Footer */
  footer h3 {
    font-size: 18px;
  }

}

/*-- //Responsive design --*/
/* ===== LOGO ALIGNMENT FIX ===== */
#logo h1 a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 45px;
  height: auto;
}
/* @media (max-width: 767px) {

  #logo {
    text-align: center;
    width: 100%;
  }

  #logo h1 a {
    justify-content: center;
    font-size: 18px;
  }

  .logo-img {
    width: 38px;
  }

} */
 /* ===== Banner heading spacing fix ===== */
@media (max-width: 767px) {

  .w3ls_banner_txt {
    padding-top: 25px;
    text-align: center; 
  }

  .b-w3ltxt {
    margin-top: 20px !important;
    margin-bottom: 15px;
    line-height: 1.3;
  
  }
}
/* ===== Center banner text on mobile ===== */
@media (max-width: 767px) {

  .w3ls_banner_txt {
    text-align: center;
  }

  .w3ls_banner_txt p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .w3ls_banner_txt span.fa {
    margin-right: 6px;
  }

}

/* ===== Banner small text size fix (mobile) ===== */
@media (max-width: 767px) {

  .w3ls_banner_txt p {
    font-size: 20px;   /* smaller, clean */
    line-height: 1.4;
  }

  .w3ls_banner_txt span.fa {
    font-size: 13px;   /* icon scales nicely with text */
  }

}

/* ===== FORCE CENTER BANNER HEADING (FINAL FIX) ===== */
@media (max-width: 767px) {

  h3.b-w3ltxt {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    display: block;
  }

}
@media (max-width: 767px) {

  h3.b-w3ltxt {
    font-size: 28px !important;  /* perfect mobile size */
    line-height: 1.3;
  }

}

@media (max-width: 767px) {
  .w3ls_banner_txt p {
    margin-left: 0 !important;
  }
}

/* new package */
/* ===== TOUR SECTION FIX ===== */
.tour-section {
  background: #f7f8fa;
  padding: 60px 0;
}

/* GRID – 3 cards per row */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
}

/* Image */
.tour-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e53935;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
}

/* Meta row */
.tour-meta {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 14px;
  color: #777;
  border-bottom: 1px solid #eee;
}

.tour-meta i {
  color: #f4b200;
}

/* Content */
.tour-content {
  padding: 18px;
}

.tour-content h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 18px;
}

/* Footer */
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price small {
  color: #999;
  font-size: 13px;
}

.price strong {
  color: #f4b200;
  font-size: 22px;
}

/* Explore */
.explore-btn {
  color: #0a2540;
  font-weight: 600;
  text-decoration: none;
}

.explore-btn i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.explore-btn:hover i {
  transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== TOUR DETAILS (SAME PAGE) ===== */
/* .tour-details-wrap {
  background: #f7f8fa;
  padding: 80px 0;
  margin-top: 80px;
}

.tour-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 30px;
}

.tour-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.tour-info-box {
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.tour-info-box div {
  text-align: center;
}

.tour-info-box i {
  color: #f4b200;
  font-size: 22px;
}

.section-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.plan-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.included li { color: #2e7d32; }
.excluded li { color: #c62828; }

@media (max-width: 768px) {
  .tour-info-box {
    flex-direction: column;
    gap: 15px;
  }
}
 */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    line-height: 55px;
}

/* Contact Form Card */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Input with icon */
.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #f5b000;
  font-size: 16px;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.input-icon textarea {
  resize: none;
}

.input-icon input:focus,
.input-icon textarea:focus {
  border-color: #f5b000;
}

/* Send Button */
.send-btn {
  width: 100%;
  background: #f5b000;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn i {
  margin-left: 6px;
}

.send-btn:hover {
  background: #d89a00;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.whatsapp-float,
.facebook-float {
  position: fixed;
  right: 12px;        /* smaller for mobile */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* WhatsApp */
.whatsapp-float {
  bottom: 20px;
  background-color: #25d366;
  color: #fff;
}

/* Facebook */
.facebook-float {
  bottom: 78px;
  background-color: #1877f2;
  color: #fff;
}

.whatsapp-float i,
.facebook-float i {
  line-height: 48px;
}

.map iframe {
  display: block;
  max-width: 100%;
}
h1, h2, h3, h4 {
  word-wrap: break-word;
}
/* Mobile view fixes */
@media (max-width: 768px) {

  .banner,
  .main-banner,
  .slider-info,
  .banner-info {
    min-height: 100vh;   /* full screen height */
  }

}
 


/* =========================================
   MOBILE HERO TEXT POSITION REFINEMENT
   ========================================= */
@media (max-width: 767px) {

  /* Move main heading (Discover...) slightly UP */
  .b-w3ltxt {
    margin-top: 0px !important;
    margin-bottom: 10px !important;

  }

  /* Push "Your Dream Holiday Awaits" DOWN */
  .w3ls_banner_txt p {
    margin-top: 60px !important;
  }

  /* Push BOOK NOW button further DOWN */
  .w3ls_banner_txt a {
    margin-top: 50px !important;
    display: inline-block;
  }

}

/* Review Website Buttons */

.review-site-buttons {
  margin-top: 35px;
  text-align: center;
}

.review-btn {
  display: inline-block;
  padding: 13px 24px;
  margin: 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.review-btn i {
  margin-right: 8px;
}

/* Google */
.review-btn.google {
  background: #ea4335;
}

.review-btn.google:hover {
  background: #d33426;
}

/* Facebook */
.review-btn.facebook {
  background: #1877f2;
}

.review-btn.facebook:hover {
  background: #0f5fd3;
}

/* Mobile */
@media (max-width: 768px) {
  .review-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
}

.tour-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid #f4b400;
    padding-left: 10px;
}

.tour-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #f4b400;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
}

.tour-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-meta {
    display: flex;
    justify-content: space-around;
    font-size: 13px;
    padding: 10px;
    color: #777;
    border-bottom: 1px solid #eee;
}

.tour-content {
    padding: 15px;
}

.tour-content h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explore-btn {
    text-decoration: none;
    font-weight: 600;
    color: #1a2b49;
}

.explore-btn:hover {
    color: #f4b400;
}

html {
  scroll-behavior: smooth;
}


