html,body,div,span,
h1,h2,h3,h4,h5,h6,
p,blockquote,q,em,img,small,strong,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend{border:0;outline:0;margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
ol,ul{list-style:none}
:focus{outline:0}
input,textarea{margin:0;outline:0;}
textarea{overflow:auto; resize:none;}
table{border-collapse:collapse;border-spacing:0}
/* End Reset */

/* html5 */
article, aside, details, figcaption, figure, footer, header, nav, section { display: block; }

*,
*::after,
*::before{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
	--primary: #040b1b;
	--black: #000000;
	--white: #ffffff;
	--light-grey: #e2e2e2;
	--grey: #737373;
	--blue: #0954a6;
	--steelgrey: #dbdde0;
	--dark-grey: #5d6974;
	--secondary: #fccd03;
	--light-blue: #ebf0f4;
	--green: #20c997;
	--red: #f33a3a;
	--maroon: #cc0000;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Regular.woff2') format('woff2'),
	url('../fonts/Gilroy-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Light.woff2') format('woff2'),
	url('../fonts/Gilroy-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Medium.woff2') format('woff2'),
	url('../fonts/Gilroy-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Bold.woff2') format('woff2'),
	url('../fonts/Gilroy-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'),
	url('../fonts/Gilroy-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Gilroy';
	src: url('../fonts/Gilroy-Heavy.woff2') format('woff2'),
	url('../fonts/Gilroy-Heavy.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}


/* Default Font Styles
______________________*/
body, input, select, textarea{
	font-family: 'Gilroy', Helvetica, Arial, sans-serif;
	font-size:12px;
	color:#000;
	line-height:1.2;
}
/* Headings
______________________*/
h1{
	font-size: 50px;
}
h2{
	font-size: 30px;
}
h3{
	font-size: 20px;
}
h4{
	font-size: 20px;
}
/* Links
______________________*/
a{
	color: #000;
	text-decoration: none;
}
a:hover { }

/* p, blockquote, address
______________________*/
p{
	font-size: 20px;
}
/* Lists
______________________*/
ul{
	margin: 0;
}
ul li{
 	list-style-type: none;
}
ol{
	margin: 0;
}
ol li{
	list-style-type: none;
}
/* Layout
______________________*/
.container {
	max-width: 1130px;
	padding: 0 15px;
	width: 100%;
	margin: 0 auto;
}
.theme-btn{
	background: transparent;
	border: 1px solid #007bff;
	padding: 5px 20px;
	border-radius: 100px;
	color: #007bff;
	transition: 0.3s;
	cursor: pointer;
	font-size: 14px;
	max-width: 200px;
	margin: 20px auto 0;
	width: 100%;
	display: block;
}
.theme-btn:hover{
	background: #007bff;
	color: white;
}
/*Header
_____________*/
.header-wrap {
	padding: 20px 0;
	border-bottom: 1px solid var(--light-grey);
}
.header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo a{
	display: block;
}
.footer-bottom-logo img,
.header-logo img {
	max-width: 150px;
	width: 100%;
}
.header-nav ul {
	display: flex;
	justify-content: space-between;
}
.header-nav li a {
	padding: 12px 10px;
	font-size: 15px;
	font-weight: normal;
	transition: background-color 0.17s ease-out;
}
/*.header-nav li a {
	color: #fff;
}*/
.header-nav li.active a,
.header-nav li a:hover {
	color: var(--blue);
}

.active .header-nav li a{
	color: #000;
}
.header-nav ul li {
	position: relative;
}
.header-nav ul li.active::before {
	content: "";
	display: block;
	position: absolute;
	width: 25%;
	height: 5px;
	border-radius: 10px;
	left: 12px;
	bottom: 25px;
	background: rgb(107 185 69);
	background: linear-gradient( 90deg, rgb(121 191 87) 0%, rgb(107 185 69) 68%, rgb(9 84 166) 79%, rgb(9 84 166) 100%);
}
.menu-btn {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 15px;
	cursor: pointer;
}
/* bg layer style */
body.popup-open{
	overflow: hidden;
}
.bg-layer{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
    z-index: 99999999;
    display: none;
}
body.popup-open .bg-layer{
	display: block;
}
.booking-form-outer{
	position: fixed;
	top: 5%;
	left: 0;
	z-index: 99999999;
	left: 50%;
	transform: translate(-50%, 0%);
 	width: 100%;
	height:620px;
	max-width: 550px;
	/*overflow: auto;*/
	display: none;
}
.booking-form{
	position: absolute;
	top: 0;
	left: 0;
/* 	transform: translate(-50%, 0);	 */
	width: 100%;
}
/*searchbar-sec
_________________*/
.searchbar-sec {
	background: var(--white);
	padding: 15px 0;
	    margin-top: 67px;
	    margin-bottom: -82px;
}
.searchbar-row {
	display: flex;
	justify-content: space-between;
}
.hotel-search {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.box {
	padding: 8px 15px;
	border-radius: 10px;
	border: 1px solid var(--steelgrey);
	position: relative;
	cursor: pointer;
	width: 100%;
}
.searchbar-row .hotel-search-box.location{
	max-width: 33%;
	width: 100%;
	margin-right: 10px;
}
.box .label {
	text-transform: uppercase;
	margin-bottom: 4px;
	display: block;
	font-size: 12px;
	line-height: 1.16;
	letter-spacing: 0.14px;
	color: rgb(28, 60, 107);
}
.box .value-title,
.box .value {
	font-size: 15px;
	line-height: 1.33;
	font-weight: 700;
	color: var(--primary);
}
.box .value em{
	font-style: normal;
}
.box .value span {
	font-size: 14px;
	line-height: 1.42;
	font-weight: 400;
}
.box .sub-value {
	color: var(--dark-grey);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.14px;
}
.hotel-search-box.checkin,
.hotel-search-box.checkout {
	max-width: 22%;
	width: 100%;
	margin-right: 10px;
}
.hotel-search-box.guests {
	max-width: 22%;
	width: 100%;
	margin-right: 10px;
}
.search-btn button {
	border: 0;
	background-color: var(--secondary);
	color: var(--primary);
	border-radius: 10px;
	padding: 15px 50px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}
/*Main sec styles
__________________*/
.main-sec {
	padding: 15px 0 64px;
	background: var(--light-blue);
	    margin-top: 82px;
}
.main-row {
	display: flex;
	margin: 0 -15px;
}
.filter-title{
	display: none;
	font-weight: 700;
	letter-spacing: 0.14px;
	line-height: 1.4;
	color: #3a4856;
	cursor: pointer;
}
.filter-icon{
	max-width: 30px;
}
.filter-icon img{
	max-width: 100%;
}
.aside-sec {
	max-width: 26%;
	width: 100%;
	padding: 0 15px;
	max-width: 29%;
}
.filter-info {
	background-color: var(--white);
	box-shadow: 0 8px 12px rgba(51,65,80,.06),0 14px 44px rgba(51,65,80,.11);
	border-radius: 5px;
}
.filter-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	border-bottom: 1px solid var(--steelgrey);
}
.filter-head h3 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.14px;
	line-height: 1.4;
	color: #3a4856;
}
.filter-head a {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--primary);
}
.filter-inner-content {
	padding: 20px;
}
.property-info {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	border-bottom: 1px solid var(--steelgrey);
}
.city-type h3,
.price-range h3,
.property-info h3 {
	font-size: 14px;
	line-height: 1.57;
	font-weight: 700;
	color: #022738;
	margin-bottom: 7px;
}
.input-group {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}
.input-group input {
	border: 1px solid rgba(28,60,107,.6);
	padding: 0 35px 0 14px;
/* 	max-width: 172px; */
	width: 100%;
	height: 38px;
	border-radius: 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}
.input-group input::placeholder {
	color: #b9b9c3;
	opacity: 1;
}
.input-group input:focus {
	border: 1px solid var(--primary);
	box-shadow: 0 3px 10px 0 rgba(34,41,47,.1);
}
.close-search {
	position: absolute;
	right: 10px;
	top: 30%;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid var(--primary);
	background: url('../images/icon-close.svg') no-repeat 50%;
	background-size: 14px;
	z-index: 5;
	cursor: pointer;
}
.input-group-append{
	margin-left: -1px;
}
.property-search-btn {
	padding: 0 10px;
	background: transparent;
	border: 1px solid var(--primary);
	height: 38px;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	cursor: pointer;
}
.property-search-btn:hover {
	background-color: rgba(28,60,107,.04);
	color: var(--primary);
}
.price-range{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--steelgrey);
}
.city-type {
	position: relative;
}
.price-range-wrapper {
	display: flex;
	align-items: center;
}
.price-range-wrapper input {
	display: block;
	width: 100%;
	height: 43px;
	padding: 7.008px 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	color: #6e6b7b;
	background-color: var(--white);
	background-clip: padding-box;
	border: 1px solid #d8d6de;
	border-radius: 5px;
}
.price-range-wrapper input:focus {
	color: #6e6b7b;
	background-color: var(--white);
	border-color: var(--primary);
	outline: 0;
	box-shadow: 0 3px 10px 0 rgba(34,41,47,.1);
}
.price-range-wrapper span {
	margin: 5px;
	color: #3a4856;
	font-size: 14px;
	line-height: 1.57;
	letter-spacing: 0.14px;
}
.price-range-btn {
	margin-left: 5px;
	font-weight: 600;
	border-color: var(--primary);
	background-color: var(--primary);
	border-radius: 5px;
	height: 38px;
	max-width: 38px;
	width: 100%;
	cursor: pointer;
}
.price-range-btn.disable {
	opacity: .65;
	pointer-events: none;
}
.checkboxes {
	margin: 11px 0;
	display: flex;
}
.checkboxes label {
	padding-left: 28px;
	font-size: 14px;
	font-weight: 500;
	color: #022738;
	cursor: pointer;
	position: relative;
}
.checkboxes input {
	position: relative;
}
.checkboxes input[type="checkbox"] {
	display: none;
}
.checkboxes label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #d8d6de;
	border-radius: 3px;
}
.checkboxes input[type="checkbox"]:checked + label::before {
	background-color: var(--primary);
	border-color: var(--primary);
	box-shadow: 0 2px 4px 0 rgba(28,60,107,.4);
}
.checkboxes input[type="checkbox"]:checked + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 1px;
	width: 16px;
	height: 16px;
	transform: translate(0, -50%);
	background-size: 57%;
	background: no-repeat 50%/50% 50%;
	background-size: 57%;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9.5 7.5'%3E%3Cpolyline points='0.75 4.35 4.18 6.75 8.75 0.75' style='fill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px'/%3E%3C/svg%3E");
}
.main-content-sec {
	width: 100%;
	padding: 0 15px;
	max-width: 71%;
}
.hotel-found-sec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.hotel-found-sec h2 {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0.14px;
	color: #1e1e1e;
}
.sort-select{
	position: relative;
}
.dropdown-button {
	width: 160px;
	background-color: var(--white);
	border: 1px solid #d8d6de;
	border-radius: 5px;
	height: 37px;
	padding: 5px 0 4px 15px;
	color: #6e6b7b;
	font-size: 14px;
	position: relative;
	text-align: left;
	cursor: pointer;
}
.dropdown-button::before {
	content: '';
	display: block;
	width: 12px;
	height: 14px;
	background: url('../images/arrowdown.png') no-repeat center/contain;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
}
.dropdown-button.open::before {
	background: url('../images/arrowup.png') no-repeat center/contain;
}
.custom-dropdown {
	position: absolute;
	z-index: 999;
	max-width: 160px;
	width: 100%;
	top: 120%;
	box-shadow: 0 3px 10px 0 rgba(34,41,47,.1);
	background-color: var(--white);
	border-radius: 5px 5px 0 0;
	display: none;
}
.custom-dropdown a {
	font-size: 14px; padding: 8px 15px; cursor: pointer;
	border-radius: 5px 5px 0 0;
	width: 100%;
	display: block;
}
.custom-dropdown a.active {
	background-color: var(--primary);
	color: var(--white);
}
.hotel-card {
	background-color: var(--white);
	box-shadow: 0 8px 12px rgba(51,65,80,.06),0 14px 44px rgba(51,65,80,.11);
	border-radius: 5px;
	padding: 15px;
	margin: 0 0 15px;
	display: flex;
	position: relative;
}
.card-right-info.align-center{
	align-self: center;
}
.absolute-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.hotel-labels {
	position: absolute;
	max-width: 100px;
	width: 100%;
	left: 0;
	top: 12%;
	font-size: 14px;
	line-height: 1.14;
	font-weight: 600;
}
.hotel-label {
	background-color: #eef8fb;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 0 5px 5px 0;
	margin-bottom: 5px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
}
.hotel-label span {
	font-size: 12px;
	letter-spacing: 0.14px;
	line-height: 1.14;
	color: var(--primary);
	display: flex;
	align-items: center;
}
.hotel-label span svg {
	margin-right: 5px;
}
.card-img {
	max-width: 31%;
	width: 100%;
}
.card-img img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: fill;
}
.card-info {
	padding-left: 15px;
	max-width: 69%;
	width: 100%;
}
.card-info h2 {
	color: #022738;
	font-size: 22px;
	line-height: 1.36;
	font-weight: 600;
	margin-bottom: 8px;
}
.card-pricing-info {
	display: flex;
	justify-content: space-between;
}
.card-pricing {
	text-align: right;
}
.discount-tag {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.38;
	color: var(--white);
	background-color: #fd7e14;
	padding: 5px 10px;
	border-radius: 20px;
	margin: 5px 0;
	display: inline-block;
}
.card-pricing p {
	display: block;
	background-color: transparent;
	color: var(--green);
	max-width: 180px;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.14px;
}
.price-amount span {
	display: block;
	color: #1e1e1e;
	font-size: 12px;
	line-height: 1.6;
	font-weight: 500
}
.price-amount h3 {
	font-size: 14px;
	line-height: 1.57;
	letter-spacing: 0.14px;
	font-weight: 400;
	position: relative;
	color: var(--red);
}
.price-amount h3::after {
	content: "";
	border-bottom: 1px solid var(--red);
	transform: skewY(-8deg);
	width: 70px;
	position: absolute;
	right: 0;
	top: 45%;
}
.price-amount .discount-price {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.14px;
	color: #3a4856;
	font-weight: 600;
}
.price-per p {
	font-size: 12px;
	line-height: 1.5;
	color: #3a4856;
}
.remaining-rooms {
	margin-top: 15px;
	max-width: 150px;
	width: 100%;
}
.remaining-rooms p {
	border: 1px solid #f33a3a;
	border-radius: 20px;
	color: #f33a3a;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 600;
}
.location {
	display: flex;
}
.location-link {
	font-size: 12px;
	line-height: 1.5;
	text-decoration: none;
	color: #5d6974;
	margin-left: 6px;
	display: block;
}
.card-message-banner {
	box-shadow: 0 4px 24px 0 rgba(34,41,47,.1);
	transition: all .3s ease-in-out,background 0s,color 0s,border-color 0s;
	background-color: #e0f8e7;
	border: 1px solid #29a992;
	margin-bottom: 15px;
	border-radius: 6.848px;
}
.message-banner-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
}
.message-banner-left {
	display: flex;
	align-items: center;
}
.message-info {
	margin-right: 5px;
	margin-left: 15px;
}
.message-banner-left h2 {
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.14px;
	color: var(--primary);
}
.message-banner-left p {
	font-size: 14px;
	line-height: 1.57;
	letter-spacing: 0.14px;
	color: #1e1e1e;
}
.sign-in-btn {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	color: var(--primary);
	white-space: nowrap;
	cursor: pointer;
	background-color: transparent;
	border: none;
}
/*Details Page Styles
______________________*/
.details-sec {
	padding: 40px 0 64px;
}
.booking-item-details {
	padding-bottom: 30px;
	overflow: hidden;
}
.tabs {
	border-bottom: 1px solid #dddddd;
	margin-bottom: 50px;
}
.tabs ul {
	display: flex;
	align-items: center;
}
.tabs ul li {
	margin-bottom: -1px;
	position: relative;
	display: block;
}
.tabs ul li:hover{
	background-color: #eeeeee;
	border-color: #eeeeee #eeeeee #dddddd;
}
.tabs li a {
	color: #555555;
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-right: 2px;
	line-height: 1.4;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.tabs li a svg {
	margin-right: 5px;
	opacity: 0.6;
}
.tabs li.active a {
	color: #555555;
	background-color: var(--white);
	border: 1px solid #dddddd;
	border-bottom-color: rgb(221, 221, 221);
	border-bottom-color: transparent;
	cursor: default;
}
.tabs li.active:hover {
	background-color: transparent;
	border-color: transparent;
}
.thumbnail-slider {
	margin-bottom: 60px;
}
.about-info {
	margin-bottom: 30px;
}
.booking-form h2,
.hotel-policy-info h2,
.available-room-sec h2,
.amenities-info h2,
.about-info h2 {
	font-size: 18px;
	font-weight: bold;
	color: var(--blue);
	line-height: 1.3;
	margin-bottom: 8px;
	position: relative;
}
.booking-form h2::after,
.hotel-policy-info h2::after,
.available-room-sec h2::after,
.amenities-info h2::after,
.about-info h2::after {
	bottom: -6px;
	content: "";
	display: block;
	height: 2px;
	position: relative;
	width: 16px;
	border-radius: 10px;
	margin-bottom: 25px;
	background: linear-gradient( 90deg, rgb(121 191 87) 0%, rgb(107 185 69) 68%, rgb(9 84 166) 79%, rgb(9 84 166) 100%);
}
.amenities-info p,
.about-info p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
	color: var(--grey);
	font-weight: 400;
}
.amenities-para p:last-child,
.about-info p:last-child {
	margin-bottom: 0;
}
.amenities-para,
.about-para {
	padding: 20px;
	background-color: #f7f7f7;
}
/*available-room-sec
______________________*/
.available-room-sec {
	padding-bottom: 30px;
}
.available-room-sec h2 {
	padding-bottom: 10px;
	margin-bottom: 5px;
}
.available-room-sec p {
	color: var(--maroon);
	font-weight: bold;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
}
.booking-list-row {
	display: flex;
	justify-content: space-between;
	padding: 0 -7.5px;
	align-items: flex-start;
}
.booking-list {
	max-width: 75%;
	width: 100%;
	padding: 0 7.5px;
}
.booking-list-box {
	margin-bottom: 15px;
	background-color: #eaeaea;
	border-radius: 5px;
	max-width: 823px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.booking-list-box:last-child {
	margin-bottom: 0;
}
.booking-inner-info {
	max-width: 50%;
	width: 100%;
}
.booking-list-img {
	max-width: 30%;
	width: 100%;
}
.booking-price {
	max-width: 50%;
	width: 100%;
}
.booking-inner-col {
	display: flex;
	justify-content: space-between;
	max-width: 70%;
	width: 100%;
}
.main-img {
	position: relative;
	padding: 35%;
}
.main-img img {
	width: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-img a{
	display: block;
}
.booking-inner-info {
	padding: 30px 15px 0 15px;
}
.booking-inner-info h3 {
	text-transform: capitalize;
	font-size: 14px;
	font-weight: bold;
	color: #565656;
	line-height: 1.48;
	margin-bottom: 5px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.booking-inner-info h4 {
	font-size: 12px;
	line-height: 2;
	color: var(--grey);
	margin-bottom: 0;
}
.booking-inner-info h4 span {
	font-weight: bold;
}
.booking-inner-info ul {
	display: flex;
	flex-wrap: wrap;
}
.booking-inner-info ul li {
	margin-right: 5px;
	margin-bottom: 5px;
	/*color: var(--name);*/
	font-size: 12px;
	line-height: 1.6;
	font-weight: 400;
	position: relative;
}
.main-img {
	margin-bottom: 20px;
}
.thumbnail-imgs {
	display: flex;
	justify-content: center;
}
.thumbnail-imgs a {
	display: block;
	max-width: 100px;
	width: 100%;
}
.thumbnail-imgs a img {
	width: 100%;
	height: 100px;
	object-fit: cover;
}
.tooltip-text {
	visibility: hidden;
	width: 80px;
	background-color: black;
	color: var(--white);
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 100%;
	left: 50%;
	margin-left: -60px;
	font-size: 10px;
}
.booking-inner-info ul li:hover .tooltip-text {
	visibility: visible;
}
.booking-price {
	padding: 20px 15px;
}
.bookinng-price-info {
	font-size: 23px;
	color: #000000;
	line-height: 0.69;
	font-weight: 500;
	display: flex;
}
.booking-price span:last-child {
	font-size: 14px;
	color: var(--grey);
	margin-left: 5px;
	margin-top: 6px;
}
.booking-price h3 {
	font-size: 14px;
	color: var(--grey);
	font-weight: 400;
	margin-top: 6px;
	margin-right: 5px;
}
.select-room-btn a {
	background-color: #ffc107;
	border-color: #ffc107;
	display: block;
	border: 1px solid transparent;
	padding: 0 12px;
	cursor: pointer;
	margin-top: 12px;
	max-width: 90px;
	width: 100%;
	height: 30px;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400;
	transition: 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.select-room-btn a:hover {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
}
.cart {
	padding: 0 7.5px;
	max-width: 25%;
	width: 100%;
}
.cart-wrapper {
	bottom: 0;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--steelgrey);
	background-color: #ecf3fe;
	position: relative;
	min-height: 401px;
}
.cart-header {
	background-color: var(--primary);
	padding: 10px;
}
.cart-header h3 {
	font-size: 18px;
	line-height: 1.44;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--white);
}
.cart-inner-info {
	padding: 15px;
}
p.no-rooms,
p.rooms-added {
	color: var(--primary);
	font-size: 14px;
	letter-spacing: 0.14px;
	line-height: 1.57;
	text-align: center;
}
.no-rooms{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.rooms-added{
	display: none;
}
.total-amount,
.rooms-info-box{
	display: none;
}
.rooms-info-box {
	border-radius: 5px;
	padding: 5px 15px 5px 10px;
	color: #22292f;
	background-color: var(--white);
	position: relative;
	margin-bottom: 10px;
}
.pax-and-free h3,
.room-content h3 {
	color: #22292f;
	font-size: 16px;
	line-height: 1.375;
	font-weight: 700;
}
.close svg {
	fill: var(--primary);
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 15px;
}
.pax-and-free p,
.room-content p {
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14px;
	line-height: 1.5;
	color: #22292f;
}
.pax-and-free p {
	margin-bottom: 0;
}
.contiue-btn{
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translate(-50%, 0%);
	max-width: 90%;
	width: 100%;
}
.contiue-btn button {
	font-weight: 600;
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: var(--primary);
	max-width: 295px;
	width: 100%;
	padding: 12.576px 24px;
	border: none;
	cursor: pointer;
}
.contiue-btn button.disable{
	opacity: .65;
	pointer-events: none;
}
.contiue-btn button:hover {
	box-shadow: 0 8px 25px -8px var(--secondary);
}
.search-btn2{
    max-width: 90%;
    width: 100%;
}
.search-btn2 button {
    font-weight: 600;
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--primary);
    max-width: 295px;
    width: 100%;
    padding: 12.576px 24px;
    border: none;
    cursor: pointer;
}
.search-btn2 button.disable{
    opacity: .65;
    pointer-events: none;
}
.search-btn2 button:hover {
    box-shadow: 0 8px 25px -8px var(--secondary);
}
.total-amount {
	margin-bottom: 60px;
}
.total-amount h3 {
	font-size: 16px;
	line-height: 1.625;
	font-weight: 600;
	color: #022738;
	display: block;
	text-align: center;
}
.total-amount p {
	color: #6e6b7b;
	font-weight: 400;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14px;
	line-height: 1.57;
	text-align: center;
}
/*.hotel-policy-info
_____________________*/
.hotel-policy-info ul {
	padding-left: 20px;
	margin-bottom: 35px;
	max-width: 832px;
	counter-reset: ol-counter;
}
.hotel-policy-info ul li {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--grey);
	padding-bottom: 8px;
	counter-increment: ol-counter;
	position: relative;
}
.hotel-policy-info ul li::before {
	content: counter(ol-counter) ".";
	position: absolute;
	left: -18px;
}
.hotel-policy-info ul li:last-child {
	padding-bottom: 0;
}
/*booking-form
________________*/
.bk-form{
	padding: 30px 17px;
	background: #f7f7f7;
	border-radius: 5px;
	border: 1px solid var(--blue);
	width: 100%;
}
.bk-form p {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--grey);
}
.bk-form p a {
	color: var(--blue);
}
.field-group{
	display: flex;
	margin: 0 -5px 20px;
}
.field-group .form-field {
	margin: 0 5px;
	width: 100%;
	max-width: 50%;
}
.field-group.three-cols .form-field{
	max-width: 33%;

}
.form-field {
	margin-bottom: 16px;
}
.form-field label {
	font-weight: 400;
	display: block;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
	color: rgb(115, 115, 115);
}
.form-field select {
	height: 40px;
}
.form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #495057;
	background-color: var(--white);
	border: 1px solid #ced4da;
	border-radius: 4px;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-field .book-btn {
	display: block;
	color: #212529;
	background-color: #ffc107;
	border: 1px solid transparent;
	padding: 0 12px;
	cursor: pointer;
	margin-top: 12px;
	max-width: 90px;
	width: 100%;
	height: 30px;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400;
	transition: 0.3s ease;
}
.form-field .book-btn:hover {
	color: #212529;
	background-color: #e0a800;
	border-color: #d39e00;
}
.form-field .book-btn:focus {
	box-shadow: 0 0 0 .2rem rgba(255,193,7,.5);
	color: var(--white);
	background-color: #ed9c28;
	border-color: #d58512;
}
.radio-buttons {
	display: flex;
	align-items: center;
}
.radio-button {
	margin-right: 10px;
}
.radio-label {
	font-size: 18px;
}
.custom-radio {
	width: 28px;
	height: 28px;
}
.custom-radio:hover {
	border-radius: 100%;
	color: var(--grey);
	border: 1px solid var(--grey);
}
.custom-radio input[type="radio"] {
	display: none;
}
.custom-radio input[type="radio"] + label {
	font-size: 12px;
	line-height: 2.16;
	border-radius: 50%;
	padding: 0;
	background: none;
	color: var(--grey);
	cursor: pointer;
	text-align: center;
}
.custom-radio input[type="radio"]:checked + label {
	color: var(--white);
	background-color: #ffc107;
	border: 1px solid #b98d07;
}
.close-popup {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 16px;
	height: 16px;
	border-radius: 16px;
	border: 1px solid var(--primary);
	background: white url(../images/icon-close.svg) no-repeat 50%;
	background-size: auto;
	background-size: 12px;
	z-index: 5;
	cursor: pointer;
}
.booking-tabs-content{
	display: none;
	margin-bottom: 40px;
}
.booking-tabs-content.active{
	display: block;
}
.slick-slide img,
.slider-outer img{
	width: 100%;
}
.slider-outer{
	margin-bottom: 20px;
}
.booking-tabs-content .slick-list.draggable{
	padding: 0 !important;
}
.thumbnail-item {
	padding:0 5px;
	cursor: pointer;
}
.slider-outer .thumbnail-item,
.tour-slider-outer .thumbnail-item {
	padding: 0;
}
.slick-arrow{
	border-radius: 100px;
	width: 32px;
	height: 32px;
	font-size: 0 !important;
	opacity: 0.5;
	transition: 0.3s;
	z-index: 5555;
}
.slick-arrow:hover{
	opacity: 1;
}
.slick-prev::before,
.slick-next::before {
	display: none;
}
.slick-next.slick-arrow{
	background: rgba(0,0,0,0.4) url('../images/arrow-right.png') no-repeat center center /10px !important;
	right: -100%;
}
.slick-prev.slick-arrow{
	background: rgba(0,0,0,0.4) url('../images/arrow-left.png') no-repeat center center /10px !important;
	left: -100%;
}
.booking-item-details:hover .slick-next{
	right: 15px !important;
}
.booking-item-details:hover .slick-prev{
	left: 15px !important;
}
.slider-outer{
	max-width: 80%;
	margin: 0 auto 30px;
}
.iframe-outer{
	position: relative;
	padding-bottom: 50%;
}
.iframe-outer iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Home Page Styles
____________________*/
.home-banner-wrap {
	/*background: url('../images/top-bg.jpg') no-repeat center/cover;*/
	background: url('../images/top-banner.jpg') no-repeat center/cover;
	position: relative;
	    padding-bottom: 65px;
    padding-top: 368px;
}

.overs{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 180px);
}
.home-page-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	transition: 0.3s ease;
	background: transparent;
	border-bottom: none;
}
.home-page-header.active {
	box-shadow: 0 1px 3px rgba(51,65,80,.08);
	background: var(--white);
}
.home-searchbar {
	position: relative;
	background: var(--white);
	box-shadow: 0 20px 100px 10px rgba(24,33,77,.05);
	border-radius: 20px;
	padding: 50px 30px 40px;
}
.search-type {
	background: var(--white);
	box-shadow: 0 4px 10px rgba(0,117,255,.0898711);
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 50%;
	padding: 0 60px;
	transform: translate(-50%, -50%);

}
.search-type ul {
	display: flex;
	align-items: center;
	/*justify-co.home-search-boxntent: space-between;*/
}
.search-type-tab {
	min-width: 120px;
	padding: 20px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	font-size: 16px;
	line-height: 1.625;
	font-weight: 600;
	display: flex;
	align-items: center;
}
.search-type-tab.active a {
	color: #3a4856;
}
.search-type-tab.active {
	border-bottom: 2px solid var(--secondary);
	color: var(--primary);
}
.search-type-tab.active img {
	filter: none;
}
.search-type-tab img {
	display: block;
	width: 25px;
	height: 18px;
	margin-right: 8px;
	filter: grayscale(1);
}
.home-box {
	padding: 15px;
/*	height: 100%;*/
}

.slick-slide {
    height: auto !important;
}
.home-hotel-search {
	display: flex;
	align-items: stretch;
	margin: 0 -15px;
	width: auto;
}
.home-search-box {
	max-width: 33.33%;
	width: 100%;
	padding: 0 15px;
}
.home-box {
	background-color: transparent !important;
}
.home-box.active {
	background-color: rgba(153, 194, 255, 0.32);
}
.home-search-button button {
	border: 0;
	background-color: var(--secondary);
	color: var(--primary);
	border-radius: 10px;
	padding: 15px 50px;
	font-size: 18px;
	font-weight: 700;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,50%);
	cursor: pointer;
}
.tab-content-info {
	display: none;
}
.tab-content-info.active {
	display: block;
}
.adult-dropdown,
.location-suggestion {
	position: absolute;
	top: 120%;
	left: 0;
	width: 100%;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 8px 12px rgba(51,65,80,.06),0 14px 44px rgba(51,65,80,.11);
	z-index: 10;
	overflow-y: auto;
	display: none;
}
.location-input {
	padding: 10px 15px;
	cursor: pointer;
}
.location-input input {
	width: 100%;
	border: 0;
	padding-left: 20px;
	background-color: #fff;
	background-image: url(../images/icon-search.svg);
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 0;
	font-size: 14px;
}
.location-list {
	max-height: 300px;
	overflow-y: auto;
	border-top: 1px solid #dbdde0;
}
.location-list-item {
	padding: 10px 15px;
	display: flex;
}
.location-list-item:hover {
	background: rgba(188,201,220,.4);
}
.location-icon {
	margin-right: 10px;
}
.location-name p{
	font-size: 14px;
}
.guest-picker {
	position: absolute;
	right: 0;
	top: 120%;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 8px 12px rgba(51,65,80,.06),0 14px 44px rgba(51,65,80,.11);
	border-radius: 4px;
	z-index: 99;
	display: none;
}
.room-title {
	padding: 10px 15px;
	border-bottom: 1px solid #ecf3fe;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.room-name h3 {
	font-size: 16px;
	line-height: 1.375;
	font-weight: 600;
	color: var(--primary);
}
.children-selection,
.adults-selection {
	border-bottom: 1px solid #ecf3fe;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
}
.children-info h4,
.adult-info h4 {
	font-size: 14px;
	line-height: 22px;
	color: var(--primary);
	font-weight: 400;
}
.children-info .age-text,
.adult-info .age-text {
	color: #728db6;
	display: block;
	font-size: 14px;
}
.children-input,
.adult-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 84px;
	width: 100%;
}
.minus-icon,
.plus-icon {
	width: 22px;
	display: block;
	cursor: pointer;
}
.minus-icon.disabled {
	color: #b8c2cc;
	opacity: .4;
}
.minus-icon img,
.plus-icon img {
	display: block;
	width: 100%;
}
.adult-input .qty{
	width: 40px;
	padding: 0;
	border: 0;
	color: var(--primary);
	font-size: 14px;
	font-weight: 400;
  	text-align: center;
}
.cart-button-container{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.cart-qty-minus,
.cart-qty-plus{
	background: transparent;
	padding: 0;
	border: 0;
	outline: none !important;
}
.room-btns {
	padding: 15px;
}
.room-btns {
	display: flex;
	justify-content: space-between;
}
.add-room-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--primary) !important;
	padding: 8px 16px;
	background-color: transparent;
	cursor: pointer;
	color: var(--primary);
	border-radius: 5.728px;
	font-size: 14px;
}
.add-room-btn:hover {
	background: rgba(28,60,107,.04);
}
.add-room-img {
	margin-right: 8px;
}
.add-room-img img {
	display: block;
	width: 100%;
}
.done-btn {
	font-weight: 600;
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: var(--primary);
	border: none;
	padding: 8px 16px;
	font-size: 14px;
	line-height: 1;
	border-radius: 5.728px;
	cursor: pointer;
}
/*tours-sec
_______________*/
.tours-sec {
	padding: 40px 0;
}
.featured-products {
	padding: 10px 0;
	position: relative;
	margin-bottom: 10px;
}
.featured-products h2 {
	margin-bottom: 15px;
	color: var(--primary);
	font-size: 30px;
	line-height: 40px;
	font-weight: 600;
	/* text-transform: uppercase; */
}
.featured-slider-box {
	width: 266px;
	overflow: hidden;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
	display: block;
}
.featured-slider-img {
	width: 100%;
	background: linear-gradient(45deg,#a1d0ff,rgba(2,39,72,.9098039215686274));
	transition: all .4s ease-out;
}
.videoplay-btn{
	max-width: 50px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}
.featured-slider-img:hover {
	transform: scale3d(1.15,1.15,1.15);
	transform-origin: center center;
}
.featured-slider-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slider-img-content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
	background: #000;
	background: linear-gradient(180deg,#23232338,rgb(0 0 0));
	padding: 40px 10px 10px 10px;
}
.slider-img-content h3 {
	font-size: 14px;
	line-height: 17px;
	font-weight: normal;
	color: #fff;
	text-shadow: 1px 1px rgb(0 0 0 / 74%);
}
.featured-slider .slick-arrow , .featured-sliders .slick-arrow{
	border-radius: 100px;
	width: 32px;
	height: 32px;
	font-size: 0 !important;
	opacity: 1 !important;
	transition: 0.3s;
	z-index: 55;
}
.featured-slider .slick-arrow {
	opacity: 1;
}
.featured-slider .slick-next.slick-arrow , .featured-sliders .slick-next.slick-arrow{
	background: #fff url('../images/blue-next.png') no-repeat center center / 9px !important;
	right: -8px;
}
.featured-slider .slick-prev.slick-arrow , .featured-sliders .slick-prev.slick-arrow{
	background: #fff url('../images/blue-prev.png') no-repeat center center /9px !important;
	left: -15px;
}
.corporate-tours {
	margin-bottom: 50px;
}
.hotel-list {
	margin-bottom: 0;
}
.featured-slider .slick-slide , .featured-sliders .slick-slide  {
	margin-right: 10px;
}

/* Travel Vlogs Sec
_____________________*/
.travel-vlogs-sec {
	padding: 60px 0;
	/* background: url(../images/travelguid-back.jpg) no-repeat center/cover; */
	width: 100%;
	background-color: #f5f5f5;
}
.travel-main-heading p {
	text-align: center;
	color: #242424;
	font-weight: 500;
	margin-bottom: 16px;
}
.travel-main-heading h2 {
	text-align: center;
	margin-bottom: 50px;
	color: #1c1447;
	font-weight: 500;
	font-size: 40px;
}
.travel-main-heading h2 span {
	color: #184f8f;
	font-weight: bold;
}
.travel-vlogs {
	background-color: transparent;
}
/*clients-says-sec
___________________*/
.reviews-sec {
	padding: 60px 0px 100px;
}
.reviews-sec h2 {
	text-align: center;
	margin-bottom: 50px;
}
.client-info {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.client-img {
	margin-right: 15px;
}
.client-img img {
	width: 60px;
    border-radius: 100%;
    display: block;
    height: 60px;
    object-fit: cover;
}
.client-img-info h3 {
	font-size: 14px;
	margin-bottom: 6px;
	color: #040b1b;
}
.client-img-info p {
	font-size: 14px;
	color: var(--grey);
}
.client-message {
	max-width: 320px;
}
.client-message p {
	font-size: 16px;
	color: var(--grey);
}
.clients-review{
	padding: 0 10px;
}
.clients-reviews .slick-prev::before,
.clients-reviews .slick-next::before {
	display: block;
	color: black !important;
	font-size: 25px;
	opacity: 1 !important;
}
.clients-reviews .slick-next.slick-arrow{
	background: none !important;
	right: 0px;
}
.clients-reviews .slick-prev.slick-arrow{
	background: none !important;
	left: -50px;
}
.slick-dots li button::before {
	font-size: 30px !important;
}
.slick-dots {
	bottom: -80px !important;
}
/* Tour Page
________________*/
.tour-location {
	max-width: 100%;
	width: 100%;
}
.tour-search {
	flex-direction: row-reverse;
	align-items: stretch;
	margin-right: 10px;
}
.tour-box {
	height: 100%;
}
.tour-filter-head {
	padding: 15px;
	border-bottom: none;
}
.aside-filter-title{
	padding: 0 15px 15px;
	border-bottom: 1px solid var(--steelgrey);
}
.aside-filter-title h3,
.tour-filter-head h3 {
	color: var(--primary);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 5px;
}
.tag-type {
	margin-bottom: 20px;
}
.region-type h3,
.tag-type h3{
	color: var(--primary);
	font-size: 14px;
	line-height: 28px;
	font-weight: 600;
	margin: 0 0 5px;
}
.region-checkboxes label,
.tag-checkboxes label {
	color: #6e6b7b;
}
.tour-info h3 {
	color: var(--primary);
}
.tour-card-info {
	display: flex;
	justify-content: space-between;
}
.card-left-info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}
.card-left-title h2 {
	color: var(--primary);
}
.card-feature-list {
	display: flex;
	margin: 0 -6px;
}
.feature-list {
	background-color: var(--light-blue);
	padding: 5px 10px;
	border-radius: 3px;
	display: block;
	margin: 0 6px;
	display: flex;
	align-items: center;
	padding: 5px 8px;
}
.feature-list h3{
	color: var(--primary);
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
}
.feature-list img {
	display: block;
	margin-right: 5px;
}
/* Tour Single
________________*/
.tour-preview-sec {
	padding: 40px 0 64px;
	    margin-top: 64px;
	    background: var(--light-blue);
}
.tour-preview {
	background-color: var(--light-blue);
	margin-bottom: 15px;
}
.tour-preview-bg {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: var(--white);
	padding: 15px;
	border-radius: 5px;
}
.tour-tabs {
	margin-bottom: 20px;
}
.tour-slider {
	width: 100%;
	max-width: 68%;
	height: 100%;
	max-height: 585px;
	overflow: hidden;
	margin: 0;
}
.tour-slider-outer{
	margin-bottom: 15px;
}
.tour-slider-outer img{
    max-height: 485px;
    object-fit: cover;
}
.tour-preview-info {
	max-width: 32%;
	width: 100%;
	padding: 10px 15px 0 15px ;
}
.tour-slider-thumbnails {
	max-width: 380px;
	width: 100%;
	margin: 0 auto;
}
.featured-slider .slick-arrow , .featured-sliders .slick-arrow{
	border-radius: 100px;
	width: 32px;
	height: 32px;
	font-size: 0 !important;
	opacity: 0.5;
	transition: 0.3s;
	z-index: 5555;
}
.tour-slider .slick-arrow {
	opacity: 1;
}
.tour-slider .slick-next.slick-arrow {
	background: #fff url(../images/blue-next.png) no-repeat center/ 7px !important;
	right: 1px;
}
.tour-slider .slick-prev.slick-arrow {
	background: #fff url(../images/blue-prev.png) no-repeat center/ 7px !important;
	left: 1px;
}
.tour-preview-title {
	margin-bottom: 25px;
}
.tour-preview-title h2 {
	font-size: 22px;
	line-height: 1.36;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary);
}
.tour-duration-list h4,
.tour-preview-duration h3,
.tour-preview-activities h3 {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--primary);
}
.tour-preview-duration h3 {
	margin-bottom: 6px;
}
.tour-preview-activities ul {
	padding-left: 25px;
	margin-bottom: 16px;
}
.tour-preview-activities ul li::before{
	content: ".";
	display: block;
	font-size: 35px;
	position: absolute;
	left: -12px;
	top: -10px;
}
.tour-preview-activities ul li {
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	color: var(--primary);
	letter-spacing: 0.14px;
	position: relative;
}
.tour-summary-lists {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.tour-duration-list,
.tour-summary-list {
	display: flex;
	align-items: center;
}
.tour-duration-img,
.tour-summary-img {
	margin-right: 5px;
}
.tour-duration-img img,
.tour-summary-img img {
	display: block;
}
.tour-summary-list {
	margin-right: 15px;
}
.tour-preview-duration {
	margin-bottom: 25px;
}
.tour-summary-list h3 {
	color: var(--primary);
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400;
}
.tour-details-sec {
	background-color: var(--light-blue);
	border-radius: 5px;
	overflow: hidden;
	padding: 15px 0px;
}
.tour-details-inner {
	background: var(--white);
	border-radius: 5px;
}
.tour-details-nav ul {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--light-blue);
	padding-left: 15px;
	margin: 0 0 0 -25px;
}
.tour-details-nav ul li{
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	padding: 0 25px;
}
.tour-details-nav li a {
	color: var(--primary);
	display: block;
	padding: 12px 0;
	border-bottom: 2px solid transparent;
}
.tour-details-nav li a.active{
	border-bottom: 2px solid #4073bf;
	color: #4073bf;
}
.tour-content-wrapper {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
}
.tour-details-col {
	max-width: 65%;
	width: 100%;
	padding: 0 15px;
}
.tour-inquiry-col {
	max-width: 35%;
	width: 100%;
	padding: 0 15px;
}
.faq-inner-info {
	border-bottom: 1px solid var(--light-blue);
}
.faq-inner-info:last-child {
	border-bottom: none;
}
.faq-question {
	padding: 20px 0;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.faq-question::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: url('../images/arrowdown.png') no-repeat center/contain;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%) rotate(0deg);
	transition: 0.3s ease;
}
.faq-question.open::after {
	transform: translate(0, -50%) rotate(-180deg);
}
.faq-question h2 {
	color: var(--primary);
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	margin-left: 8px;
}
.details-title-img img{
	display: block;
	width: 100%;
}
.faq-answer {
	margin-bottom: 15px;
	display: none;
}
.faq-answer p {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14px;
	line-height: 21px;
	color: var(--primary);
	margin-bottom: 16px;
}
.faq-answer h3 {
	font-size: 18px;
	line-height: 21px;
	letter-spacing: 0.14px;
	color: rgb(255, 153, 0);
}
.tour-inquiry-form .hotel-search-box.home-search-box{
	max-width: 100%;
	padding: 0;
	margin-bottom: 20px;
}
.tour-inquiry-form .hotel-search-box .box{
	border-radius: 5px;
}
.tour-inquiry-inner {
	border: 1px solid #ebf0f4;
	box-shadow: -2px -3px 9px 4px rgba(0,0,0,.03);
	border-radius: 5px;
	padding: 15px;
	max-width: 324px;
	width: 100%;
	margin: 0 auto;
}
.rooms-cart .tour-inquiry-inner {
    border: none;
    box-shadow: none;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
}
.tour-inquiry-inner h2 {
	color: var(--primary);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.14px;
	line-height: 21.6px;
	margin-bottom: 7px;
}
.input-forms {
	display: flex;
	justify-content: space-between;
	margin: 0 -10px;
}
.form-field.wd-50 {
	max-width: 50%;
	width: 100%;
	padding: 0 10px;
}
.form-field.wd-50 {
	max-width: 100%;
	width: 100%;
	padding: 0 10px;
}
.form-field label {
	font-size: 12px;
	margin-bottom: 4px;
	letter-spacing: 0.14px;
	font-weight: 400;
	color: rgb(110, 107, 123);
}
.total-filed,
.form-field textarea,
.form-field select,
.form-field input {
	display: block;
	width: 100%;
	padding: 10px 16px;
	color: #6e6b7b;
	background-color: var(--white);
	border: 1px solid #d8d6de;
	border-radius: 5px;
	transition: border-color .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-field input::placeholder {
	opacity: 1;
}
.form-field textarea {
	height: 86px;
	resize: block;
}
.form-field select:focus,
.form-field textarea:focus,
.form-field input:focus {
	color: #6e6b7b;
	border-color: var(--primary);
	box-shadow: 0 3px 10px 0 rgba(34,41,47,.1);
}
.thanku-mssg{
	display: none;
}
.thanku-mssg__icon img{
	max-width: 100%;
}
.thanku-mssg__icon{
	max-width: 80px;
	margin: 0 auto 20px;
}
.thanku-mssg p{
	text-align: center;
	font-size: 20px;
}
.country-code-input {
	position: relative;
}
.country-code-input input {
	padding-left: 80px;
}
.country-code-selector {
	padding: 9px 16px;
	border-radius: 5px 0 0 5px;
	border-right: 1px solid #d8d6de;
	background: #ebf0f4;
	display: flex;
	align-items: center;
	cursor: pointer;
	max-width: 72px;
	width: 100%;
	position: absolute;
	top: 1px;
	left: 1px;
}
.country-code-selector h3{
	color: #666;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14px;
	margin-right: 5px;
}
.country-code-img {
	max-width: 10px;
	width: 100%;
}
.country-code-img img {
	display: block;
	width: 100%;
}
.form-btn button {
	text-align: center;
	padding: 12px 24px;
	font-size: 16px;
	line-height: 1;
	border-radius: 5px;
	background-color: var(--secondary);
	color: var(--primary);
	font-weight: 700;
	border: 1px solid var(--secondary);
	width: 100%;
	cursor: pointer;
	transition: 0.3s ease;
}
.form-btn button:hover {
	background: #f4c500;
}
.date-input {
	position: relative;
	cursor: pointer;
}
.date-input input {
	padding-left: 35px;
}
.date-picker {
	padding: 0 12px;
	max-width: 38px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
/*footer styles
________________*/
.footer-wrap {
	background-color: #040b1b;
	padding: 60px 0 30px;
	color: var(--white);
}
.footer-row {
	display: flex;
	margin: 0 -10px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-col {
	padding: 0 10px;
}
.footer-col h2 {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.14px;
	margin-bottom: 7px;
	color: #dadada;
}
.footer-copyright p, .footer-col p {
	font-size: 14px;
	letter-spacing: 0.14px;
	line-height: 1.5;
	color: #dadada;
	max-width: 257px;
	width: 100%;
}
.footer-col .discover-list {
	column-count: 2;
	gap: 40px;
}
.footer-nav ul li {
	font-size: 14px;
	line-height: 1.57;
	font-weight: 400;
	letter-spacing: 0.14px;
	margin-bottom: 6px;
}
.footer-nav li a {
	color: var(--white);
}
.footer-col ul li {
	font-size: 14px;
	line-height: 1.57;
	margin-bottom: 6px;
}
.footer-col a {
	display: block;
	color: #dadada;
}
.seprator {
	margin-top: 42px;
	color: var(--steelgrey);
}
.footer-bottom {
	padding-top: 21px;
}
.footer-bottom-logo a {
	display: block;
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-bottom-logo img {
	max-width: 100px;
	width: 100%;
}
/* Hotel
____________________*/
.hotel-wrap {
	padding: 40px 0 64px;
	background: var(--light-blue);
}
.hotel-amenities-info h2{
	font-size: 22px;
	line-height: 1.36;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary);
	    margin-top: 20px;
}
.amenities {
	display: flex;
	flex-wrap: wrap;
}
.amenity-text {
	margin-top: 5px;
	margin-right: 10px;
	display: flex;
	align-items: center;
}
.amenity-text h3 {
	font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding: 10px;
    border-radius: 3px;
    background-color: #ffa50033;
    border-color: orange;
}
.amenity-img {
	margin-right: 5px;
}
.amenity-img img {
	display: block;
}
.custom-nav {
	position: sticky;
	top: 0;
	background-color: #fff;
	border-radius: 5px;
	z-index: 9;
	margin-bottom: 15px;
}
.custom-nav ul {
	display: flex;
	align-items: center;
	padding: 0 15px;
}
.custom-nav ul li {
	font-size: 12px;
	line-height: 1.8;
	color: #3a4856;
	cursor: pointer;
	font-weight: 400;
}
.custom-nav ul li:last-child {
	margin-right: 0;
}
.custom-nav li a {
	padding: 12px 0;
	display: block;
	border-bottom: 2px solid transparent;
}
.custom-nav li a.active {
	color: var(--primary);
	border-bottom: 2px solid var(--primary);
	font-weight: 600;
}
.hotel-description {
	background-color: var(--white);
	padding: 10px 15px;
	border: 1px solid #ededed;
	border-radius: 5px;
	margin-bottom: 25px;
}
.hotel-description h2 {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0.14px;
	color: #22292f;
	margin-bottom: 7px;
}
.hotel-meta {
	display: flex;
	margin: 0 -5px 15px;
	flex-wrap: wrap;
}
.meta-info {
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	color: #3a4856;
	display: block;
	margin-right: 10px;
	padding: 0 5px;
}
.amenities-text p {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #3a4856;
	margin-bottom: 10px;
}
.see-more-link {
	display: block;
	font-size: 12px;
	line-height: 18px;
	font-weight: 700;
	color: #4073bf;
	text-decoration: underline;
}
.room-details-row {
	display: flex;
	justify-content: space-between;
	margin: 0 -8px;
	flex-wrap: wrap;
}
.room-details-col {
	max-width: 65%;
	width: 100%;
	padding: 0 8px;
	overflow: hidden;
}
.rooms-cart {
	max-width: 35%;
	width: 100%;
	padding: 0 8px;
    background-color: #ffffff;
}
.hotel-details-header {
	display: flex;
	justify-content: space-between;
	padding: 15px;
	background-color: #ecf3fe;
	border: 1px solid #dbdde0;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
}
.room-amenities-features h3,
.hotel-details-header span,
.hotel-details-header h2{
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0;
}
.hotel-room-inner {
	display: flex;
	background: var(--white);
	border: 1px solid #dbdde0;
	border-top: none;
	border-radius: 0 0 5px 5px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}
.hotel-room-info {
	max-width: 40%;
	width: 100%;
	padding: 15px;
}
.hotel-room-info .tour-slider{
    max-width: 100%;
    height: auto;
    
}
.hotel-room-info .tour-slider img{
    border-radius: 5px;
}
.image-gallery {
	max-width: 100%;
	width: 100%;
	margin-bottom: 25px;
}
.main-image-gallery {
	border-radius: 5px;
	overflow: hidden;
}
.hotel-thumbnail-imgs a {
	margin-right: 8px;
}
.hotel-thumbnail-imgs a:last-child {
	margin-right: 0;
}
.hotel-thumbnail-imgs a img{
	height: auto;
	border-radius: 5px;
	overflow: hidden;
	display: block;
}
.room-options h2,
.bedroom-suites-info h3 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	color: #3a4856;
	margin-bottom: 15px;
}
.suite-features {
	margin-bottom: 10px;
}
.suite-feature {
	display: flex;
	align-items: center;
}
.suite-feature P {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.8;
	color: #6e6b7b;
}
.show-room-popup {
	margin: 16px 0 24px;
}
.show-all-link a,
.show-room-popup a {
	display: block;
	color: #040b1b;
	font-size: 12px;
	line-height: 1.6;
	font-weight: 700;
	text-decoration: underline;
}
.room-amenities ul {
	display: flex;
	flex-wrap: wrap;
}
.room-amenities ul li {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #6e6b7b;
	display: flex;
	padding-right: 10px;
}
.room-amenities ul li span {
	display: block;
}
.room-options {
	max-width: 60%;
	width: 100%;
	padding: 15px;
	border-left: 1px solid #dbdde0;
}
.room-options-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.room-pricing-col,
.room-options-col {
	max-width: 50%;
	width: 100%;
}
.room-options-col h2 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	color: var(--primary);
}
.options-features {
	margin-bottom: 15px;
}
.options-features ul li{
	font-size: 12px;
	line-height: 1.5;
	color: #5d6974;
	margin-bottom: 5px;
	display: flex;
	letter-spacing: 0.14px;
}
.options-features ul li span{
	display: block;
	margin-right: 5px;
}
.room-amenities-features h3 {
	margin-bottom: 10px;
}
.room-amenities-features ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	max-width: 235px;
	width: 100%;
}
.room-amenities-features ul li{
/*	padding-right: 8px;*/
	font-size: 12px;
	line-height: 1.5;
	color: #5d6974;
	letter-spacing: 0.14px;
}
.room-pricing-col {
	text-align: right;
}
.room-pricing-col h2 {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
}
.room-pricing-col p {
	font-size: 12px;
	line-height: 1.5;
	color: #3a4856;
}
.room-select-btn a {
	border-color: #fccd03;
	background-color: #fccd03;
	color: var(--primary);
	display: block;
	padding: 8px 16px;
	cursor: pointer;
	max-width: 110px;
	width: 100%;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 600;
	border-radius: 5px;
	transition: 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-top: 25px;
}
.Policy-sec h2 {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 15px;
}
.policy-box {
	background-color: var(--white);
	padding: 15px;
	border: 1px solid #ebf0f4;
	border-radius: 5px;
}
.policy-info {
	display: flex;
	/*margin-bottom: 20px;*/
}
.policy-info ol {
    padding: 20px 20px 10px 20px;
}
.policy-info ol li {
    font-size: 16px;
    margin-bottom: 10px;
}
.policy-info.mg-0 {
	margin-bottom: 0;
}
.policy-point {
	display: flex;
	max-width: 200px;
	width: 100%;
}
.policy-point-img  {
	margin-right: 8px;
}
.policy-point-img img {
	display: block;
}
.policy-point h3 {
	font-size: 14px;
	line-height: 1.5;
	color: #818a93;
	font-weight: 400;
}
.policy-detail p {
	color: var(--primary);
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
}
.policy-text p {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 22px;
	color: #818a93;
	font-weight: 400;
}
.policy-text .mg-0 {
	margin-bottom: 0;
}
.child-icon {
	margin-top: 3px;
}
.policy-text img {
	margin-right: 5px;
}
.policy-text img:last-child{
	margin-right: 0;
}

/* Travel Styles
-------------------*/
.route-wrap h2,
.information-info h2,
.travel-guide-wrap .travel h2,
.travel h2 {
  	font-size: 22px;
  	font-weight: 600;
	color: #040b1b;
  	line-height: 40px;
}
.featured-products.travel-guide {
	background-color: transparent;
	padding: 20px 0;
}

/* Travel Guide Styles
------------------------*/
.audio audio {
	width: 100%;
}
.description {
	padding-top: 16px;
}
.description p {
	font-size: 14px;
	color: #737373;
	line-height: 22px;
	margin-bottom: 16px;
}
.description p:last-child {
	margin-bottom: 0;
}
.travel-guide-wrap {
	margin: 40px 0;
}
.information-info {
	margin-bottom: 30px;
}
.information-info p {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #3a4856;
}
.information-wrap .hotel-description {
	padding: 10px 15;
}
.travel-card-box {
	background: var(--white);
	padding: 15px 15px 0;
	border-radius: 5px;
	margin-bottom: 15px;
}
.travel-card-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.travel-col {
	width: 100%;
	max-width: 33.33%;
	padding: 0 10px 15px;
}
.travel-hover {
	overflow: hidden;
	position: relative;
}
.travel-col img {
  	width: 100%;
  	display: block;
  	border-radius: 5px;
}
.travel-col a {
	display: block;
	position: relative;
	overflow: hidden;
}
.travel-info {
	position: absolute;
	left: 10px;
	bottom: 8px;
}
.travel-img {
	transition: transform 0.3s;
}
.travel-img:hover {
  	transform: scale3d(1.15,1.15,1.15);
}
.travel-info h3 {
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #fff;
	text-shadow: 1px 1px rgba(0,0,0,.2);
}

/* Route Styles
--------------------*/
.route-wrap {
	padding: 30px 0;
	background: #ebf0f4;
}
/*.route-wrap .container {
	max-width: 800px;
}*/


.route-row {
	position: relative;
	display: none;
}
.route-row.active {
	display: block;
}
.route-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0);
    width: 3px;
    height: 84%;
    background: #edf9f9;
}
.route-wrap h2 {
	margin-bottom: 20px;
}
.tab-wrap {
	margin: 40px 0;
	position: sticky;
  	top: 0;
  	background: #fff;
  	z-index: 9999;
}
.route-col-box {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 20px;
	position: relative;
	counter-increment: basic-counter;
}
.route-col-box::after {
	content: counter(basic-counter);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: #06a4c4;
	color: #Fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5555;
}
.route-col-box:last-child {
	margin-bottom: 0;
}
.route-col-box.row-reverse {
	flex-direction: row-reverse;
}
.route-col {
	width: 40%;
	padding: 0 20px;
	position: relative;
}
.route-col.bg-white {
	background: #edf9f9;
	padding: 20px 15px;
	text-align: center;
	border-radius: 30px;
}
.route-col .number {
	position: absolute;
	left: 0;
	top: -15px;
	width: 35px;
	height: 35px;
	background: #06a4c4;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 100px;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 5555;
}
.route-col strong {
	font-size: 14px;
	font-weight: 800;
	color: #000;
	text-transform: uppercase;
}
.route-col h3 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
	padding-top: 10px;
}
.route-col p {
	font-size: 15px;
	color: #737373;
	line-height: 22px;
}
.route-list {
	margin-bottom: 20px;
}
.route-list ul {
	display: flex;
	align-items: center;
/*	border-bottom: 1px solid #cccccc;*/
}
.route-list ul li a {
	display: block;
  	font-size: 17px;
	padding: 14px 16px;
	color: #737373;
	transition: background 0.3s;
}
.route-list ul li a.active {
	background: #ccc;
}
.route-list ul li a:hover {
	background: #ddd;
}

/* Privacy Page Styles
-------------------------*/
.privacy {
	background: #fff;
	padding: 50px 25px;
}
.privacy h2 {
	font-size: 24px;
	color: #056998;
	margin-bottom: 8px;
}
.privacy h3 {
	font-size: 16px;
	color: #056998;
	margin-bottom: 8px;
	margin-top: 20px;
}
.privacy p {
	font-size: 16px;
	color: #22292f;
	line-height: 24px;
	margin-bottom: 10px;
}
.privacy p.mr-0 {
	margin-bottom: 0;
}

/* Terms Page Styles
----------------------*/
.terms a {
	color: #040b1b;
}
.terms-numeric-list {
	padding-left: 35px;
}
.terms-numeric-list li {
	font-size: 16px;
	color: #22292f;
	line-height: 24px;
	margin-bottom: 8px;
	list-style-type: number;
}
.terms-numeric-list li span {
	text-decoration: underline;
}
.disc-list {
	padding-left: 35px;
}
.disc-list li {
	font-size: 16px;
	color: #22292f;
	line-height: 24px;
	margin-bottom: 8px;
	list-style-type: disc;
}
.terms-numeric-list li.title-list{
	padding-top: 20px;
  	margin-top: 30px;
  	position: relative;
}
.terms-numeric-list li.title-list h3{
	position: absolute;
  	top: -38px;
  	left: -35px;
}
.form-card{
	text-align: center;
	background: #f7f7f7;
	padding: 25px 20px;
	margin-bottom: 20px;
	border-top: 5px solid #919191;
	min-height: 220px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.form-card.gold-card{
	border-top-color: #f0c80f;
}
.form-card.bronze-card{
	border-top-color: #c8aa00;
}
.form-card.standard-card{
	border-top-color: #55a5fa;
}
.form-card h3{
	font-size: 18px;
	margin-bottom: 15px;
}
.form-card p{
	font-size: 14px;
	color: #737373;
}
.form-card p span{
	display: block;
	font-size: 17px;
}
.form-card.gold-card p span{
	color: #f0c80f;
}
.form-card.bronze-card p span{
	color: #c8aa00;
}
.form-card.standard-card p span{
	color: #55a5fa;
}
.form-card .pricing-packages{
	position: absolute;
	top: 0;
	visibility: hidden;
	opacity: 0;
}
.close-info,
.card-more-info{
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #919191;
	border-radius: 100px;
}
.close-info::before,
.close-info::after{
	content: '';
	display: block;
	position: absolute;
	left: 3px;
	width: 60%;
	height: 2px;
	background: #919191;
	transform: rotate(45deg);
}
.close-info::after{
	transform: rotate(-45deg);
}

.form-card i{
	color: #919191;
	font-size: 10px;
}
.more-info-box{
	text-align: left;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: #f7f7f7;
	padding: 30px 20px;
	bottom: 0;
	right: 0;
 	display: none;
}
.form-card .more-info{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}
.form-card .more-info p{
	margin-bottom: 20px;
}
.form-card .more-info p:last-child{
	margin-bottom: 0;
}
.form-cards .slick-prev.slick-arrow{
	left: -10px;
}
.form-cards .slick-next.slick-arrow{
	right: -10px;
}

/*Responsive Styles
_____________________*/
@media (max-width: 1299px) {
	.clients-reviews .slick-prev.slick-arrow{
		left: -20px;
	}
}
@media (max-width: 1199px) {
	.clients-reviews .slick-next.slick-arrow{
		right: 15px;
  		bottom: -20px;
  		top: auto;
	}
	.clients-reviews .slick-prev.slick-arrow{
		top: auto;
		right: 60px;
		left: auto;
		bottom: -20px;
	}
	.slider-img-content h3 {
		font-size: 17px;
	}
}
@media (min-width: 992px) {
	.aside-sec {
		display: block !important;
	}
}
@media (max-width: 991px) {
    .hotel-room-info {
        max-width: 100%;
    }
    .hotel-room-info .tour-slider-outer img{
        max-height: 349px;
    }
	.details-sec {
		padding: 30px 0 50px;
	}
	.header-wrap {
		position: fixed;
		padding: 16px 0;
		width: 100%;
		background: #fff;
	}
	.header-logo img {
		max-width: 200px;
		width: 100%;
	}
	.box{
		padding: 8px 10px;
	}
	.box .label{
		font-size: 10px;
	}
	.box .value {
		font-size: 16px;
	}
	.box .value span {
		font-size: 12px;
	}
	.amenities-para,
	.about-para {
		padding: 15px;
	}
	.details-sec{
		padding: 30px 0 40px;
	}
	.booking-item-details {
		padding-bottom: 15px;
	}
	.booking-inner-info {
		padding: 25px 15px 0 15px;
	}
	.main-img {
		margin-bottom: 15px;
	}
	.cart-header h3{
		font-size: 16px;
	}
	.footer-wrap {
		padding: 40px 0 50px;
	}
	.booking-inner-info ul li {
		margin-right: 4px;
	}
	.tabs {
		margin-bottom: 30px;
	}
	.close-search {
		right: 10px;
	}
	.filter-head {
		padding: 10px 15px;
	}
	.filter-inner-content {
		padding: 15px;
	}
	.filter-head h3 {
		font-size: 16px;
	}
	.card-info h2 {
		font-size: 20px;
	}
	.main-content-sec {
		max-width: 68%;
		width: 100%;
	}
	.input-group input {
		max-width: 100%;
		width: 100%;
	}
	.remaining-rooms {
		margin-top: 10px;
		max-width: 122px;
		width: 100%;
	}
	.remaining-rooms p {
		font-size: 11px;
		padding: 7px 10px;
	}
	.message-banner-left h2 {
		font-size: 18px;
	}
	.booking-list {
		max-width: 70%;
		width: 100%;
	}
	.cart {
		max-width: 30%;
	}
	.booking-inner-col {
		display: block;
	}
	.booking-inner-info {
		max-width: 100%;
		width: 100%;
	}
	.booking-price {
		max-width: 100%;
		width: 100%;
		padding: 20px 15px 10px 15px;
	}
	.available-room-sec h2 {
		padding-bottom: 0;
	}

	/* Travel Guide Styles
	---------------------------*/
	.hotel-wrap {
		padding-bottom: 30px;
	}
	.tour-preview-title h2 {
		font-size: 20px;
	}
	.description p {
		margin-bottom: 10px;
	}
	.slider-img-content h3 {
		font-size: 18px;
	}
	.route-list ul li a {
		font-size: 16px;
	}
	.route-col-box {
		justify-content: space-around;
	}
	.route-col p {
		font-size: 14px;
	}
	.featured-products.travel-guide {
		padding: 10px 0;
	}
	.tour-preview-info,
	.tour-slider {
		max-width: 100%;
	}
	.audio {
		width: 100%;
		max-width: 320px;
	}
	.tour-preview-info {
		padding: 30px 13px 25px;
	}
	.location-link {
		max-width: 100%;
	}

	/* Hotel Detail Styles
	----------------------------*/
	.room-details-col {
		max-width: 60%;
	}
	.room-options {
		max-width: 90%;
	}
	.hotel-room-info {
		max-width: 80%;
	}
	.cart {
		max-width: 40%;
	}

	/* Tour Page Styles
	--------------------------*/
	.tour-preview-sec {
		padding-bottom: 60px;
	}
	.tour-content-wrapper {
		flex-wrap: wrap;
	}
	.tour-details-col {
		max-width: 58%;
	}
	.tour-inquiry-col {
		max-width: 42%;
	}
	.input-forms {
		margin: 0 -5px;
	}
	.form-group.wd-50 {
		padding: 0 5px;
	}
	.tour-inquiry-inner h2,
	.faq-answer h3,
	.faq-question h2 {
		font-size: 17px;
	}
	.tour-slider {
		max-height: none;
	}

	/* Hotel List Styles
	------------------------*/
	/* .aside-sec {
    	max-width: 32%;
  		padding: 0 6px 0 15px;
	}
	.main-content-sec {
		max-width: 68%;
		padding: 0 15px 0 6px;
	}
	.price-range-wrapper input {
		font-size: 14px;
		padding: 7px;
	}
	.hotel-card {
		padding: 10px;
	}
	.card-img {
		max-width: 37%;
	}
	.card-info {
		max-width: 63%;
		padding-left: 10px;
	} */
	.main-row {
		position: relative;
		display: block;
		margin: 0;
	}
	.aside-sec {
		display: none;
		position: absolute;
		top: 50px;
		width: 100%;
		max-width: 100%;
		z-index: 555;
		padding: 0;
		margin-bottom: 40px;
	}
	.filter-title {
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
		align-items: center;
	}
	.main-content-sec {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	.home-banner-wrap {
		padding: 170px 0;
	}
	.home-search-box {
  		padding: 0 10px;
	}
	.room-btns {
		flex-wrap: wrap;
	}
	.done-btn {
		margin-top: 10px;
	}
	.videoplay-btn {
		max-width: 42px;
	}
	.travel-main-heading h2 {
		font-size: 35px;
		margin-bottom: 40px;
	}
	.travel-vlogs-sec .featured-products.travel-vlogs {
		margin-bottom: 0;
	}

	/* Privacy Page Styles
	--------------------------*/
	.main-sec {
		padding-bottom: 50px;
	}
	.privacy h2 {
		font-size: 22px;
	}

	/* Testimonial Styles
	------------------------*/
	.reviews-sec h2 {
		font-size: 28px;
	}
	.client-img img {
		max-width: 50px;
	}
}
@media (min-width: 768px) {
	.header-nav{
		display: flex !important;
	}
}
@media (max-width: 767px) {
	.header-logo img {
        max-width: 125px;
        width: 100%;
    }
	.menu-btn {
		display: block;
	}
	.menu-btn span {
		width: 28px;
		height: 2px;
		display: block;
		background: #b0d62d;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}
	.menu-btn span::before,
	.menu-btn span::after {
		content: "";
		display: block;
		width: 28px;
		height: 2px;
		background: #b0d62d;
		position: absolute;
		top: -8px;
		left: 0;
		transition: 0.3s ease;
	}
	.menu-btn span::after {
		top: auto;
		bottom: -8px;
	}
	.menu-btn.active span {
		background: transparent;
	}
	.menu-btn.active span::before {
		transform: rotate(45deg);
		top: 0;
	}
	.menu-btn.active span::after {
		transform: rotate(-45deg);
		top: 0;
	}
	.header-nav {
		position: absolute;
		left: 0;
		top: 100%;
		background: var(--white);
		padding: 20px 10px;
		display: none;
		z-index: 9999;
		border-top: 2px solid #b0d62d;
		width: 100%;
		margin: 0;
		max-width: 100%;
	}
	.header-nav ul {
		display: block;
	}
	.header-nav li a {
		display: block;
	}
	.header-nav ul li {
		max-width: 100%;
		width: 100%;
	}
	.header-nav ul li.active::before{
		top: -5px;
	}
	.slider-outer{
		margin: 0 auto 25px;
	}
	.tabs li a {
		padding: 8px 12px;
	}
	.booking-tabs-content {
		margin-bottom: 30px;
	}
	.details-sec {
		padding: 30px 0;
	}
	.booking-form h2,
	.hotel-policy-info h2,
	.available-room-sec h2,
	.amenities-info h2,
	.about-info h2 {
		font-size: 16px;
	}
	.booking-form h2::after,
	.hotel-policy-info h2::after,
	.available-room-sec h2::after,
	.amenities-info h2::after,
	.about-info h2::after {
		margin-bottom: 22px;
	}
	.booking-list-row{
		display: block;
	}
	.booking-list {
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
	}
	.contiue-btn button, .search-btn button {
		max-width: 100%;
	}
	.close svg{
		transform: translateY(-50%);
	}
	.booking-list-box {
		display: block;
	}
	.booking-price,
	.booking-inner-info,
	.booking-list-img {
		max-width: 100%;
		width: 100%;
	}
	.main-img {
		position: relative;
		padding: 25%;
	}
	.thumbnail-imgs {
		justify-content: center;
	}
	.footer-col {
		margin-bottom: 35px;
	}
	.footer-col:last-child {
		margin-bottom: 0;
	}
	.seprator {
		margin-top: 32px;
	}
	.footer-bottom {
		padding-top: 15px;
	}
	.searchbar-row {
		display: block;
	}
	.hotel-search{
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	.searchbar-row .hotel-search-box.location {
		max-width: 49%;
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.hotel-search-box.checkin,
	.hotel-search-box.checkout {
		max-width: 49%;
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.hotel-search-box.guests {
		max-width: 48%;
		width: 100%;
		margin-bottom: 20px;
	}
	.hotel-search-box.guests,
	.hotel-search-box.checkin {
		margin-right: 0;
	}
	.search-btn {
		max-width: 50%;
		width: 100%;
		margin: 0 auto;
	}
	.search-btn button{
		width: 100%;
		font-size: 16px;
	}
	.search-btn button br {
		display: none;
	}
	.message-banner-left h2 {
		font-size: 16px;
	}
	.sign-in-btn {
		font-size: 14px;
	}
	.price-amount .discount-price {
		font-size: 18px;
	}
	.card-pricing p {
		max-width: 170px;
		font-size: 12px;
	}
	.dropdown-button {
		width: 140px;
		height: 34px;
	}
	.hotel-found-sec h2 {
		font-size: 14px;
	}
	.card-info h2 {
		font-size: 16px;
	}
	.booking-inner-col {
		max-width: 100%;
		width: 100%;
	}
	.tour-slider .slick-next.slick-arrow {
		right: 20px;
	}
	.tour-slider .slick-prev.slick-arrow {
		left: 20px;
	}

	/* Travel Guide Styles
	--------------------------*/
	.slider-img-content h3 {
		font-size: 17px;
	}
	.route-wrap h2,
	.information-info h2,
	.travel-guide-wrap .travel h2,
	.travel h2,
	.featured-products h2 {
  		font-size: 20px;
  		margin-bottom: 10px;
	}
	.travel-guide-wrap {
		margin: 30px 0;
	}
	.featured-products {
		margin-bottom: 0;
	}
	.hotel-description {
		margin-bottom: 0;
	}
	.route-list {
		margin-bottom: 32px;
	}
	.route-list ul li a {
		font-size: 15px;
	}
	.route-col-box {
		margin-bottom: 28px;
	}
	.route-col .number {
		display: flex;
	}
	.route-col,
	.route-row::after,
	.route-col-box::after {
		display: none;
	}
	.route-col.bg-white {
		display: block;
	}
	.route-col {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}
	.route-col h3 {
  		font-size: 15px;
  		margin-bottom: 6px;
	}
	.route-col p {
		line-height: 20px;
	}
	.route-col-box::after {
		width: 35px;
		height: 35px;
		font-size: 15px;
	}
	.information-info {
  		margin-bottom: 20px;
	}

	/* Hotel Detail Styles
	---------------------------*/
    .room-options,
    .hotel-room-info {
        max-width: 100%;
    }
    .room-details {
        padding: 25px 0;
    }
    .policy-point {
        max-width: 170px;
    }

	/* Tour Page Styles
	----------------------*/
	.tour-preview-sec {
  		padding: 35px 0 50px;
	}
	.tour-details-nav ul li {
		font-size: 15px;
	}
	.tour-inquiry-inner h2,
	.faq-answer h3,
	.faq-question h2 {
		font-size: 16px;
	}
	.tour-details-col {
		max-width: 100%;
	}
	.tour-inquiry-col {
		max-width: 375px;
		padding: 20px 0 0;
		margin: 0 auto;
	}
	.home-banner-wrap {
	  	padding: 140px 0;
  	}
	.home-search-box {
		max-width: 375px;
		margin: 0 auto;
		margin-bottom: 15px;
	}
	.home-search-box:last-child {
		margin-bottom: 0;
	}
	.done-btn {
		margin-top: 0;
	}
	.travel-vlogs-sec {
		padding: 50px 0;
	}
	.travel-main-heading h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.travel-main-heading p {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.tours-sec{
		padding: 10px 0 30px;
	}
	.travel{
		padding-bottom: 40px;
	}
	.search-type {
  		padding: 0 20px;
	}

	/* Privacy Page Styles
	--------------------------*/
	.main-sec {
		padding-bottom: 40px;
	}
	.privacy {
		padding: 40px 20px;
	}
	.privacy h2 {
		font-size: 20px;
	}

	/* Testimonial Styles
	------------------------*/
	.reviews-sec h2 {
		font-size: 25px;
		margin-bottom: 40px;
	}

	/* Travel Styles
	-------------------*/
	.travel-card-box {
		padding-bottom: 8px;
	}
	.travel-card-row {
		margin: 0 -6px;
	}
	.travel-col {
		padding: 0 6px 7px;
	}
	.travel-info h3 {
		font-size: 18px;
	}
}

@media (max-width: 575px) {
	.searchbar-row .hotel-search div.location {
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.hotel-search-box.checkin,
	.hotel-search-box.checkout {
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.hotel-search-box.guests {
		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
	}
	.search-btn {
		max-width: 100%;
		width: 100%;
	}
	.hotel-card {
		display: block;
	}
	.card-img {
		max-width: 100%;
		width: 100%;
		margin-bottom: 15px;
	}
	.card-info {
		padding: 0;
		max-width: 100%;
		width: 100%;
	}
	.card-pricing-info {
		display: block;
	}
	.card-pricing {
		text-align: left;
	}
	.price-amount h3::after {
		left: 0;
	}
	.card-pricing {
		margin-top: 10px;
	}
	.message-banner-info {
		display: block;
		padding: 10px;
	}
	.message-banner-left {
		display: block;
	}
	.messgae-img {
		margin-bottom: 10px;
	}
	.message-info {
		margin: 0 0 10px 0;
	}
	.tour-slider .slick-next.slick-arrow {
		right: 12px;
	}
	.tour-slider .slick-prev.slick-arrow {
		left: 12px;
	}

	/* Travel Guide Styles
	--------------------------*/
	.hotel-wrap {
    	padding-bottom: 20px;
  	}
	.slider-img-content h3 {
		font-size: 16px;
	}
	.information-info h2 {
  		line-height: 25px;
	}
	.travel-guide-wrap {
		margin: 20px 0;
	}
	.route-wrap h2,
	.information-info h2,
	.travel-guide-wrap .travel h2,
	.travel h2,
	.featured-products h2 {
		text-transform: uppercase;
  		font-size: 24px;
  		margin-bottom: 6px;
	}
	/*.featured-products {*/
	/*	margin-bottom: 20px;*/
	/*}*/
	.tab-wrap .custom-nav ul {
		padding: 0;
	}
	.tour-details-nav ul {
		margin: 0 0 0 -10px;
	}
	.custom-nav ul li {
		padding: 0 10px;
	}
	.tab-wrap {
		margin: 30px 0;
	}
	.tab-wrap .tour-details-nav ul li {
		padding: 0 10px;
	}
	.tab-wrap .tour-details-nav ul li {
		font-size: 12px;
	}
	.route-list ul li a {
		font-size: 14px;
		padding: 12px 14px;
	}
	.route-col.bg-white {
		padding: 15px 10px;
	}
	.tour-preview-title {
		margin-bottom: 20px;
	}
	.tour-preview-title h2 {
		font-size: 18px;
	}
	.information-info {
  		margin-bottom: 15px;
	}

	/* Hotel Detail Styles
	--------------------------*/
	.room-pricing-col,
	.room-options-col {
		max-width: 100%;
	}
	.room-pricing-col {
		margin-top: 20px;
		text-align: left;
	}
	.room-pricing-col .room-select-btn a{
		margin-left: 0;
	}
	.room-options h2,
	.bedroom-suites-info h3,
	.room-options-col h2 {
		font-size: 18px;
	}
	.room-details-col {
		max-width: 100%;
	}
	.cart {
    	max-width: 375px;
    	margin: 0 auto;
  	}
  	.room-select-btn a {
  		margin-top: 15px;
  	}
  	.hotel-description h2 {
  		font-size: 16px;
  	}
  	.meta-info {
  		font-size: 14px;
  	}
  	.policy-info {
  		flex-wrap: wrap;
  	}
  	.policy-point {
  		max-width: 100%;
  	}
  	.policy-text p {
  		margin-bottom: 10px;
  	}
  	.policy-point {
    	margin-bottom: 8px;
  	}

  	/* Tour Page Styles
  	-----------------------*/
  	.tour-preview-sec {
  		padding: 30px 0 40px;
	}
	.tour-inquiry-inner h2,
	.faq-answer h3,
	.faq-question h2 {
    	font-size: 15px;
  	}
  	.tour-details-nav ul li {
  		font-size: 14px;
  		padding: 0 12px;
  	}
  	.form-btn button {
  		font-size: 15px;
  	}
  	.card-feature-list {
  		margin-top: 10px;
  	}
  	.field-group{
		display: block;
		margin: 0;
	}
	.field-group .form-field{
		margin: 0 0 20px;
		max-width: 100%;
	}
	.card-right-info.align-center{
		margin: 10px 0;
		display: inline-block;
	}
	.home-banner-wrap {
	       padding-bottom: 39px;
    padding-top: 236px;
  	}
	.box .value,
	.search-type-tab {
		font-size: 15px;
	}
	.search-type {
  		padding: 0;
	}
	.travel-vlogs-sec {
		padding: 40px 0 30px;
	}
	.search-type-tab {
		min-width: 100px;
	}
	.search-type-tab {
		padding: 15px 10px;
	}
	.travel-main-heading h2 {
		font-size: 25px;
		margin-bottom: 10px;
	}
	.travel-main-heading p {
		font-size: 16px;
		margin-bottom: 8px;
	}
	.add-room-btn {
		padding: 8px 12px;
	}

	/* Privacy Page Styles
	-------------------------*/
	.main-sec {
		padding-bottom: 30px;
		    margin-top: 67px;
	}
	.privacy {
		padding: 30px 15px;
	}
	.privacy h2 {
		font-size: 18px;
	}
	.privacy h3 {
		font-size: 15px;
	}
	.disc-list li,
	.terms-numeric-list li,
	.privacy p {
		font-size: 14px;
		line-height: 22px;
	}
	.disc-list,
	.terms-numeric-list {
		padding-left: 25px;
	}

	/* Testimonial Styles
	----------------------------*/
	.terms-numeric-list li.title-list h3 {
		left: -25px;
	}
	.reviews-sec {
  		padding: 40px 0px 80px;
	}
	.reviews-sec h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.client-message {
 		max-width: 100%;
	}
	.slick-dots {
		bottom: -60px !important;
	}

	/* Travel Styles
	-------------------*/
	.travel-card-box {
    	padding: 10px 10px 2px;
	}
	.travel-card-row {
		margin: 0 -5px;
	}
	.travel-col {
		max-width: 50%;
		padding: 0 5px 8px;
	}
	.travel-info {
  		left: 8px;
  		bottom: 6px;
	}
	.travel-info h3 {
		font-size: 16px;
	}
}
.generaltours {
	background: #fafafa;
}

.travelguide {
	background: #fafafa;
}


/*New*/

.n-box{
	border-radius: 0px;
}

.search-btn button.n-box {
    border: 0;
    background-color: #0954a6;
    color: #ffffff;
    border-radius: 10px;
    padding: 27px 45px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 200px;
}

.card-pricing-info {
    display: flex;
    justify-content: start;
    /* text-align: left; */
    position: absolute;
    bottom: 12px;
}

.card-pricing {
    text-align: left;
}

.search-btn2 {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

#resetButton{
	margin-top: 11px;
    display: block;
}

.featured-slider-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-tabs {
    margin-bottom: 0px;
}

.hotel-wrap {
    padding: 40px 0 20px;
    background: var(--light-blue);
    margin-top: 79px;
}

.tab-wrap {
    margin: 20px 0;
}

.travel-col img {
    height: 180px;
    object-fit: cover;
}

.route-wrap {
    padding: 15px 0;
    background: #fff;
}

.route-wrap .container{
	border: 1px solid #ebf2f2;
    border-radius: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.route-col.bg-white{
	    border: 3px solid #e6f2f2;
}

.route-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0);
    width: 3px;
    height: 84%;
    background: #edf9f9;
}

.route-col-box::after {
    background: #0954a6;
}

.information-info table{
	width: auto !important;
}

.slick-track {
    margin-left: inherit !important;
    margin-right: inherit !important;
}

.tour-preview-bg {

    padding: 0;
}

.hotel-room-info .tour-slider .thumbnail-item img{

	height: 180px;
	object-fit: cover;
}

.hotel-room-info .tour-slider .tour-slider-thumbnails img{
	height: 60px;
	object-fit: cover;
}
.search-btn button {
    width: 100%;
}

.search-btn{
	text-align: center;
}

.hotel-card .card-img img {
    height: 180px;
    object-fit: cover;
}

.tour-duration-list h4{
	font-weight: 400;
}

.videoplay-btn img{
	height: auto;
}

.breadcrumbs {
    font-size: 14px;
    margin: 9px 0;
    font-weight: bold;
}

.breadcrumbs a {
    text-decoration: none;
    color: #333;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #838383;
}

.card-deck{
	    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card{
background: #f6f6f6;
    width: 23%;
    padding: 12px;
    border-radius: 10px;
    position: relative;
}

.card-deck .card{
	padding-bottom: 32px !important;
}

.get-tour-package{
	    border-radius: 30px;
    position: absolute;
    width: 92%;
    padding: 12px;
    bottom: 12px;
}

.searchbar-wrapper{
	    max-width: 860px;
    margin: auto;
}

.hotel-amenities-info p{
	font-size: 16px;
    line-height: 26px;
}

.social-floating-icons {
    z-index: 999999999999;
}

.float-icon-wrapper {
    text-align: center;
    position: fixed;
    right: 10px;
    background-color: #0954a6;
    padding: 5px 8px;
    color: white;
    bottom: 100px;
    border-radius: 30px;
    font-size: 12px;
    width: 26px;
    height: 26px;
    border-radius: 13px;
}

.float-icon-wrapper:first-child {
    bottom: 55px;
    z-index: 99999999;
}

.float-icon-wrapper:nth-child(2) {
    bottom: 80px;
    z-index: 99999999;
}

.float-icon-wrapper:nth-child(3) {
    bottom: 110px;
    z-index: 99999999;
}

.float-icon-wrapper:nth-child(4) {
    bottom: 145px;
    z-index: 99999999;
}

.float-icon-wrapper a{
	color: #fff;
}

.amg-floating-contact-wrap {
    position: fixed;
    right: -150px;
    font-size: 20px;
    opacity: 0.9;
    z-index: 999;
    -webkit-transition: right 0.4s;
    -moz-transition: right 0.4s;
    -o-transition: right 0.4s;
    transition: right 0.4s;
}

.amg-floating-contact-wrap:first-child {
    bottom: 95px;
    z-index: 99999;
}

.amg-floating-icon, .amg-floating-link {
    text-align: center;
}

.amg-floating-icon {
    width: 48px;
    float: left;
    padding: 10px;
    height: 42px;
}

.amg-blue .amg-floating-icon, .amg-blue .amg-floating-link {
    background: #0f59a8;
    color: white;
}

.amg-floating-link {
    width: 150px;
    min-height: 42px;
    padding: 13px 0px;
    overflow: hidden;
    font-size: 14px;
    /* color: white !important; */
}

.amg-blue .amg-floating-icon, .amg-blue .amg-floating-link {
    background: #0f59a8;
    color: white;
}

.amg-nav-item {
    color: white !important;
}

.amg-floating-link a {
    white-space: nowrap;
    color: #FFFFFF;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.amg-floating-link form, .amg-floating-link a {
    width: 240px !important;
    margin: 0 10px;
}

.amg-floating-contact-wrap.hover {
    opacity: 1;
    right: 0;
}

.header-nav li a {
    font-weight: 700;
}

.route-list ul li a {
    font-size: 16px;
    padding: 10px 19px;
    color: #000;
    background: #fccd03;
    margin-right: 10px;
    border-radius: 4px;
    font-weight: 700;
}

.route-list ul li a.active {
    background: #0954a6;
    color: #fff;
}

.route-list ul li a:hover {
    background: #0954a6;
    color: #fff;
}

.custom-nav ul li {
    font-size: 14px;
}

.footer-copyright p, .footer-col p {
    font-size: 15px;
}

.footer-col h2 {
    font-size: 19px;
}

.footer-col a {
    font-size: 16px;
}

.footer-button-2 {
    cursor: pointer;
    display: block;
    background-color: #0954a6;
    width: 10%;
    text-align: center;
        color: #000;
    font-weight: 700;
    padding: 10px;
    position: fixed;
    bottom: 0px;
    z-index: 9999;
       background: #fccd03;
    left: 45%;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
font-size: 14px;
text-transform: uppercase;
    display: none;
}


.travel-guide-wrap {
    margin-top: 44px;
    margin-bottom: 44px;
    background: #ebf0f4;
    padding: 25px 0px;
}

#hotels{
	margin: 0px;
    background: #fff;
    padding: 0px;
}

.details-title-img img {
    max-width: 19px;
}

#formPopup button{
	display: block;
}

#formPopup label{
	width: 100%;
	font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.14px;
    font-weight: 400;
    color: rgb(110, 107, 123);
    display: block;
    font-weight: bold;
}

#formPopup input{
	width: 100%;
	    display: block;
    width: 100%;
    padding: 10px 16px;
    color: #6e6b7b;
    background-color: var(--white);
    border: 1px solid #d8d6de;
    border-radius: 5px;
    transition: border-color .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}
#formPopup select{
	width: 100%;
	    display: block;
    width: 100%;
    padding: 10px 16px;
    color: #6e6b7b;
    background-color: var(--white);
    border: 1px solid #d8d6de;
    border-radius: 5px;
    transition: border-color .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
}

#formPopup h2{
	margin-bottom: 20px;
}

#formPopup button.sub{
	    text-align: center;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1;
    border-radius: 5px;
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    border: 1px solid var(--secondary);
    width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}
#formPopup div{
position: absolute;
    right: 19px;
    top: 6px;
    font-size: 17px;
    cursor: pointer;
}

.form-popup{
	    width: 600px;
}

.p-list{
	display: flex;
    margin-top: 10px;
    font-size: 15px;
}

.p-list li{
	margin-right: 10px;
}

/*.deals{
	    background: #80bdff;
}*/



.deals .featured-slider-box {
    width: auto;

}

.deals .featured-slider-img img {
    height: 374px;
}

.card-deck .card{
	    padding-bottom: 32px !important;
}


.options-features ul{
	       display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 235px;
    width: 100%;
}

.options-features ul li::after , .room-amenities-features ul li::after{
	content: ',';
	margin-left: 3px;
	margin-right: 3px;
}

.options-features ul li:last-child::after , .room-amenities-features ul li:last-child::after{
	content: '';
}

.information-info table tr:nth-child(1) td{
	background-color: #0954a6 !important;
	color: #fff;
}

.information-info table tr:nth-child(1) td p{
	color: #fff;
}
.information-info table tr td{
	padding: 10px;
}


.information-info ul li{
	font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #3a4856;
}

.information-info p {

	padding-bottom:5px;
}

#popupBtn:disabled {
    background-color: lightgray;
    cursor: not-allowed;
    opacity: 1; /* Adjust opacity as desired */
}

.tooltip {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
      z-index: 1;
    bottom: 17%;
    left: 39%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

#popupBtn:disabled:hover + .tooltip {
    visibility: visible;
    opacity: 1;
}

.mob-icons img{
	max-width: 100%;
	height: auto;
	display: none;
}

.d-mobile{
	display: none;
}

.h-city{
	    height: 191px;
    overflow: auto;
}



.air-tick .container{
	    height: 70vh;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.air-tick h2 a{
	    font-weight: 400;
	    display: block;
}

.information-info h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0954a6;
    line-height: 40px;
}

@media(min-width:767px){
	.adult-dropdown, .location-suggestion{
		width: 275px !important;
	}

	.typee{
		width: 100% !important;
	}

	.lightbox {
    position: fixed !important;
    height: 601px;
    overflow: hidden;
    top: 17% !important;
}

.lb-container{
	    height: 600px;
}

.lightbox .lb-image {

    height: 600px !important;
    object-fit: cover;
}
}

@media(max-width:767px){
	.featured-slider-box {
    width: 100%;
}

.air-tick .container{
	    height: 40vh;
}

.air-tick h2{
	    font-size: 21px;
}

/*.mob-icons{
	        display: flex;
        position: relative;
        right: 52px;
}
*/
.contact-list {
    list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: end;
}

.contact-list li {
            margin-right: 10px;
        width: 8%;
}

.mob-icons{
	display: none;
}

.options-features ul {
    max-width: 100%;
}

.deals .featured-slider-img img {
    height: 294px;
}

.p-list{
	display: block;
    margin-top: 10px;
    font-size: 15px;
}

#lightbox{
	    top: 24% !important;
	        position: fixed;
}

.footer-button-2{
	display: block;
	    left: 0%;
	    width: 100%;
}

.card-pricing-info {
    position: unset;
}

.location-link {
    margin-left: 0px;
}

.card-img img{
	width: 100% !important;
}

.tour-slider-outer img {
    height: 400px;
    object-fit: cover;
}

.tour-slider-thumbnails .slick-slide img {
    height: 110px;
    object-fit: cover;
}

.custom-popup {
    width: 89%;
}

#places-to-see-text{
	font-size: 14px;
    line-height: 23px;
}

.route-row .route-col-box p::after{
	content: "";
    display: block;
    border-left: 1px solid black;
    height: 28px;
    margin-left: 10px;
    position: absolute;
    left: 47%;
    top: 101%;

}

.route-wrap .container {
    padding-bottom: 28px;
}

.searchbar-sec{
	display: none;
}

 .header-nav li a{
	color: #000;
	        border-bottom: 1px solid #f8f8f8;
        width: 100%;
}

.form-popup {
    width: 100%;
}

.hotel-wrap {
    margin-top: 68px;
}

.card {

    width: 100%;
    max-width: 100% !important;
}

.room-amenities-features ul {
    max-width: 100%;
}

.route-list ul {
    justify-content: center;
}

/*.social-floating-icons , .amg-floating-contacts{
	display: none;
}*/

.d-mobile{
	display: block;
	        font-size: 18px;
        margin-bottom: 16px;

}

.d-desk{
	display: none;
}
}
