/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
@charset "utf-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: 'Manrope', sans-serif;
}
 body::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
 border-radius: 10px;
 background-color: #F5F5F5;
}
body::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 body::-webkit-scrollbar-thumb {
 background-color: #666;
}
h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin: 0;
	padding: 0
}
a, button {
	text-decoration: none;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
img {
	max-width: 100%
}
li {
	list-style: none;
}
p a {
	color: #f05501;
}
/* CSS Document */

/* CSS header & slider */

.header-slider-wrap {
	background: url(assetss/images/header-bg.jpg) no-repeat top;
	background-size: cover;
	height: 100vh
}
.header-main-wraper {
	padding: 8px 0;
}
.header-main-wraper .logo-wrap img {
	width: 120px;
}
.header-nav-wraper {
	float: right;
}
.header-nav-wraper ul li a {
	color: #080652;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 15px !important
}
.logo-wrap {
	padding-top: 3px;
}
nav {
	padding: 0 !important;
}
.dropdown:hover .dropdown-menu {
	display: block;
}
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	height: 100vh;
	padding: 65px 0 0 0;
	background: white;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
	overflow: auto;
}
.drawer-menu li {
	text-align: left;
}
.drawer-menu li a {
	display: block;
	height: auto;
	line-height: 42px;
	font-size: 16px;
	font-weight: 500;
	color: #016cb1;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.drawer-menu li a:hover {
	color: white;
	background: #016cb1;
}
/* checkbox */
.check {
	display: none;
}
/* menu button - label tag */
.menu-btn {
	position: absolute;
	display: block;
	top: 22px;
	right: 15px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 35px;
	height: 1.5px;
	background: #016cb1;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.bar.middle {
	top: 10px;
	opacity: 1;
}
.bar.bottom {
	top: 20px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}
.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #016cb1;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}
.menu-btn:hover .bar {
	background: #016cb1;
}
.close-menu {
	position: fixed;
	top: 0;
	right: 280px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(https://theorthodoxworks.com/deassetss/images/cross.svg), auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}
/* checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;
}
.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}
.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
	width: 20px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #016cb1
}
.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
	width: 20px;
	top: 13px;
	background: #016cb1;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
}
.drawer-menu ul {
	list-style: none;
	padding-top: 50px;
}
.drawer-menu ul li a {
	text-decoration: none;/* border-bottom: 1px solid #1e1e1e; */
}
.drawer-menu ul li a img {
	margin-right: 5px;
	margin-top: -2px;
}
.header-bg-wraper {
}
.header-bg {
	width: 100%;
	height: 320px;
}
.header-bg img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: 80% 60%;
}
.book-btn-nav-item a {
	background: #e17027;
	padding: 10px 30px !important;
	margin: 0 10px;
	border-radius: 6px;
	color: #fff !important;
}
.fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	background: #fff;
	padding: 10px 0 !important;
	z-index: 11111111 !important;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.6s;
	-webkit-transition: ease-in 0.6s;
	-ms-transition: ease-in 0.6s;
	-o-transition: ease-in 0.6s;
	box-shadow: 0 -3px 10px rgb(0 0 0/20%);
}
.phone-nav-item {
	position: relative;
	top: -7px
}
.phone-nav-item img {
	width: 35px;
	margin-right: 5px;
}
.slider-text-wrap {
	width: 44%
}
.slider-main-wraper {
	padding-top: 50px;
}
.slider-text-wrap .banner_maintitle {
	font-size: 70px;
	font-weight: 900;
	line-height: 70px;
	color: #080652;
	text-transform: uppercase;
}
.slider-text-wrap .banner_maintitle span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #d3eaf2;
}
.slider-text-wrap strong {
	color: #016cb1;
	display: block;
}
.slider-text-wrap p {
	font-size: 16px;
    color: #000000;
    padding: 15px 0;
    line-height: 28px;
    padding-right: 130px;
}
.btn-slider-wrap {
	margin-top: 20px;
}
.btn-slider-wrap a {
	background: #e17027;
	padding: 15px 40px;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.btn-slider-wrap a:hover {
	background: #016cb1;
}
.dropdown-menu[data-bs-popper] {
	top: 80%;
}
.social-slider-wrp {
	position: absolute;
	bottom: 105px;
	font-weight: bold;
	color: #080652;
	font-size: 16px;
}
.social-slider-wrp span {
	display: inline-block;
	position: relative;
	top: 10px;
	line-height: 20px;
	margin-right: 15px;
}
.social-slider-wrp a {
	display: inline-block;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	text-decoration: none;
	text-align: center;
	padding-top: 7px
}
.social-slider-wrp a:hover {
	opacity: 0.6;
}
.social-slider-wrp a img {
	width: 15px;
}
.btn-arrow-down {
	position: absolute;
	right: 150px;
	bottom: 20px;
}
.btn-arrow-down img {
	width: 90px;
}
.btn-arrow-down {
	margin-top: 0;
	display: block;
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	color: #FF4081;
}
 @-webkit-keyframes pulse {
 0% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
 50% {
 -webkit-transform: translate(0, 10px);
 transform: translate(0, 10px);
}
 100% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
}
 @keyframes pulse {
 0% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
 50% {
 -webkit-transform: translate(0, 10px);
 transform: translate(0, 10px);
}
 100% {
 -webkit-transform: translate(0, 0);
 transform: translate(0, 0);
}
}
/* CSS header & slider */

/* CSS content */

.advantage-main-wrap {
	background: url(assetss/images/bar-advantage.png) no-repeat top;
	background-size: cover;
	background-position: right;
	margin-top: -62px;
}
.listing-package-para {
	padding: 15px 0;
}
.listing-package-para p {
	font-size: 15px;
	font-weight: 600;
}
.advantage-main-wrap-list {
	list-style: none;
	padding: 47px 0
}
.advantage-main-wrap ul li {
}
.advantage-main-wrap ul li:nth-child(3) .listing-advantage-icon {
	padding-top: 19px
}
.listing-advantage-wrap {
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 70px;
	height: 70px;
	border: 2px solid #fff;
	text-align: center;
	float: left;
	border-radius: 50%;
	margin-right: 17px;
	padding-top: 21px;
	margin-top: 3px;
}
.listing-advantage-text {
	width: 70%;
	float: left;
}
.listing-advantage-text span {
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}
.listing-advantage-text p {
	color: #fff;
	font-size: 14px;
	padding-right: 15px;
}
.best-desert-pacakge-wrap {
	padding: 60px 0;
}
.main-text-wrap {
	background: url(assetss/images/map-bg.png) no-repeat top;
	background-size: 50%;
}
.main-text-wrap h1 {
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 20px;
}
.main-text-wrap h1 span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.main-text-wrap p {
	font-size: 16px;
	color: #000000;
	padding: 10px 200px;
	line-height: 28px;
	text-align: center;
}
.listing-package-wraper {
}
.listing-package-wraper h2 {
	font-size: 25px;
	color: #080652;
	font-weight: bold;
	text-align: center;
	margin-bottom: 35px;
	margin-top: 15px;
}
.listing-package-wraper ul {
	list-style: none;
}
.listing-package-wrap {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0px 0px 70px 0 #dcdcdc;
	margin-bottom: 25px;
}
.listing-package-wraper ul li:hover .listing-package-wrap {
	box-shadow: 0px 0px 50px 0 #cfcfcf;
}
.listing-package-wraper ul li:hover .explore-more-btn a {
	opacity: 0.5
}
.listing-package-wrap .listing-package-image img {
	width: 100%
}
.listing-package-text-wrp {
	padding: 25px 25px 25px 25px;
	height: 350px;
	position: relative;
}
.listing-package-wrp {
	padding: 25px 25px 25px 25px;
	height: 295px;
	position: relative;
	height: 196px;
}
.listing-heading {
	text-align: left !important;
	margin-bottom: 15px !important;
	margin-top: 0px !important;
}
.listing-heading a {
	color: #0b0954 !important;
	font-size: 20px;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	margin-bottom: 25px;
}
.listing-heading a:before {
	content: "";
	width: 30px;
	height: 2px;
	background: #e17027;
	position: absolute;
	left: 0;
	bottom: -10px;
}
.listing-package-list {
	margin-top: 5px;
	border-radius: 0;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 10px;
	padding-top: 5px;
}
.listing-package-text-wrp p {
	padding: 0;
	text-align: left;
	font-size: 16px;
	line-height: 18px;
	padding-bottom: 5px
}
.listing-package-list strong {
	color: #016cb1;
	display: block;
	font-size: 13px;
	margin-bottom: 5px;
}
.no-border-bottom {
	border: none;
}
.price-package {
	font-size: 16px;
	color: #e17027;
	font-weight: bold;
}
.explore-more-btn {
	text-align: right;
	padding-right: 10px;
	margin-top: 5px;
	position: absolute;
	right: 22px;
	bottom: 20px;
}
.explore-more-btn a {
	color: #016cb1;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}
.explore-more-btn a img {
	position: relative;
	top: -1px;
}
.cta-main-wrap {
	background: url(assetss/images/bg-cta.jpg) no-repeat top;
	background-size: cover;
	padding: 60px 0;
}
.cta-main-wrap h3 {
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #fff;
	text-transform: uppercase;
}
.cta-main-wrap .cta_main_heading {
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #fff;
	text-transform: uppercase;
}
.cta-main-wrap .cta_main_heading span {
	display: block;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #fff;
	color: #2977a5;
}
.cta-main-wrap ul {
	list-style: none;
}
.cta-main-wrap ul li {
}
.cta-main-wrap ul li a {
	display: block;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	line-height: 24px;
	padding: 25px 0;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid #88caf3;
	border-radius: 10px;
}
.cta-main-wrap ul li a:hover {
	background: #e17027;
	border: 1px solid #e17027
}
.cta-main-wrap ul li a strong {
	display: block;
	font-size: 28px;
}
.about-company-wraper {
	background: #e0edf6;
	padding: 80px 0 80px 0
}
.about-image-wrap {
	width: 80%;
	margin: 0 auto;
}
.text-about-wrap {
	margin-left: -30px;
}
.text-about-wrap .tourspackage_title {
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.text-about-wrap .tourspackage_title span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #e0edf6;
	display: block;
}
.text-about-wrap .tourspackage_title strong {
	color: #016cb1;
	display: block;
}
.text-about-wrap {
}
.text-about-wrap ul li {
	list-style: none;
    background: #f6fbff;
    padding: 6px 10px 12px 10px;
    margin-bottom: 8px;
    font-size: 14px;
    border-radius: 4px;
    color: #000000;
}
.text-about-wrap ul li:hover {
	background: #e17027;
	color: #fff;
}
.text-about-wrap ul li img {
	width: 25px;
	margin-right: 10px;
	float:left;
}
.text-about-wrap p {
	font-size: 16px;
	color: #000000;
	line-height: 28px;
	padding-bottom: 15px
}
.btn-about-wrap {
	margin-top: 30px;
	text-align: center;
}
.listingcontents {
    height: 175px;
    overflow: hidden;
}
.btn-about-wrap a {
	background: #e17027;
	padding: 15px 40px;
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.btn-about-wrap .book-btn {
	background: #016cb1;
}
.btn-about-wrap a:hover {
	background: #333;
}
.gallery-main-wraper {
	padding: 60px 0 30px 0
}
.gallery-main-wraper h3 {
	text-align: center;
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.gallery-main-wraper span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.wrap {
	position: relative;
	z-index: 100;
	width: 100%;
	height: 100%;
	padding: 0 60px;
	background: url(httpsassetss/images.unsplash.com/photo-1485069203392-8e1aeb1ebf02?auto=format&fit=crop&w=1054&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D) center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	overflow: hidden;
}
.wrap:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
}
.slider {
	position: relative;
	z-index: 200;
	padding: 0 0px;
	margin: 5rem auto;
	max-width: 800px;
	width: 100%;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 50px;
	line-height: 50px;
	margin-top: -25px;
	border: none;
	background: transparent;
	color: #fff;
	font-family: monospace;
	font-size: 5rem;
	z-index: 300;
	outline: none;
}
.slick-prev {
	left: -50px;
	text-align: left;
}
.slick-next {
	right: -50px;
	text-align: right;
}
.item.slick-slide {
	width: 400px;
	height: 400px !important;
	transition: transform .4s;
	position: relative;
}
.slick-slide:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
	transition: transform .4s;
}
.item.slick-slide {
	transform: scale(0.7) translate(640px);
}
.item.slick-slide.slick-center + .slick-slide {
	transform: scale(0.8) translate(-250px);
	z-index: 10;
}
.item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
	transform: scale(0.7) translate(-640px);
	z-index: 5;
}
.item.slick-slide.slick-active {
	transform: scale(0.8) translate(250px);
}
.item.slick-slide.slick-center {
	/* margin: 0 -10%; */
	transform: scale(1);
	z-index: 30;
}
.slick-center:after {
	opacity: 0;
}
.gallery-main-wraper {
}
.gallery-main-wraper .carousel {
	width: 80%;
	margin: 0 auto;
	margin-top: 60px;
}
.slider-gallery-wrap {
	height: 580px;
	overflow: hidden;
	position: relative;
}
.slider-gallery-wrapp img {
	width: 100%;
}
.slider-gallery-wrap:before {
	content: "";
	position: absolute;
	background: url(assetss/images/shadow.png) no-repeat top;
	width: 100%;
	bottom: -161px;
	height: 230px;
	opacity: 0.7;
}
.detailed-text-wraper {
	background: #e0edf6 url(assetss/images/detail-bg.jpg) no-repeat top;
	background-attachment: fixed;
	background-size: cover;
	padding: 80px 0 80px 0;
}
.card-detailed-text-wrap {
}

.card-detailed-text-wrap h3 {
	font-size: 25px;
	padding-bottom: 15px;
	color: #080652;
	font-weight: bold;
}

.card-detailed-text-wrap h2{
	font-size: 25px;
	padding-bottom: 15px;
	color: #080652;
	font-weight: bold;
}


.card-detailed-text-wrap h3 {
	font-size: 25px;
	padding-bottom: 15px;
	color: #080652;
	font-weight: bold;
}
.home_maincontents p strong {
	font-size: 25px;
	padding-bottom: 0px;
	color: #080652;
	font-weight: bold;
	margin-top: 10px;
	display: block;
}
.card-detailed-text-wrap p {
	font-size: 16px;
	color: #000000;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 500;
}
.card-detailed-text-wrap ul {
	list-style: none;
	margin-bottom: 15px
}
.card-detailed-text-wrap ul li {
	background: url(assetss/images/arrow.png) no-repeat left center;
	padding-left: 35px;
	background-size: 1.5%;
	font-size: 17px;
	color: #000000;
	margin-bottom: 10px
}
.carousel-control-next, .carousel-control-prev {
	position: absolute;
	top: -8%;
	width: 10%;
}
.faq-main-wraper {
	padding: 60px 0;
}
.faq-main-wraper h1 {
	text-align: center;
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	margin-bottom: 45px;
}
.faq-main-wraper .faq_mainheading {
	text-align: center;
	font-size: 50px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	margin-bottom: 45px;
}
.faq-main-wraper h1 span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.faq-main-wraper .faq_mainheading span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.faq-main-wraper .accordion {
	width: 80%;
	margin: 0 auto
}
.faq-main-wraper .accordion button {
	box-shadow: none;
	font-weight: bold;
	border: 1px solid #ddd;
	color: #000000;
	font-size:16px
}
.faq-main-wraper .accordion p {
	font-size: 14px;
	color: #000000;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 500;
}
.accordion-button:not(.collapsed) {
	color: #0c63e4;
	background-color: #f7f7f7;
}
.accordion-item {
	background-color: #fff;
	border: none;
	margin-bottom: 15px;
}
.accordion-collapse {
	border: 1px solid #ddd;
}
.faq-main-wraper ul {
	list-style: none;
}
.faq-main-wraper ul li {
	font-size: 14px;
	color: #19175d;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 500;
}
.about-content ul li {
	background: url(assetss/images/arrow.png) no-repeat left center;
	padding-left: 35px;
	background-size: 1.5%;
	font-size: 17px;
	color: #19175d;
	margin-bottom: 10px
}
.dealtour-content-wrapper {
	padding: 40px 0;
}
.packages-wrapper-header {
	margin-bottom: 40px;
}
.packages-wrapper-header h1 {
	font-size: 35px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	position: relative;
}
.packages-wrapper-header h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #016cb1;
}
.packages-wrapper-header h1 span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.packages-content {
	margin-top: 20px;
}
.package-card h3 {
	font-size: 25px;
	font-weight: 900;
	line-height: 50px;
	color: #e17027;
	text-transform: uppercase;
	position: relative;
}
.package-card p {
	font-size: 16px;
	color: #19175d;
	font-weight: 500;
	line-height: 28px;
}
/* CSS content */
/*                                  Reservation page                         */
.booking-content-wrapper {
	padding: 40px 0;
}
.booking-form-section {
	margin: 0 100px;
}
.booking-form-section h1 {
	font-size: 35px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 40px;
}
.booking-form-section h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #e17027;
}
.booking-form-section h1 span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.booking-row {
	padding: 23px 30px;
	border-radius: 10px;
	background-color: #e0edf6;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	border: 1px solid #ccc;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
.booking-form label {
	color: #095fa0;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}
.booking-fields {
	margin: 5px 0;
}
.booking-fields input[type=text] {
	width: 100%;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: none;
	border: none;
	margin: 5px 0;
	padding: 15px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.booking-fields input[type=number] {
	width: 100%;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: none;
	border: none;
	margin: 5px 0;
	padding: 15px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.booking-fields input[type=email] {
	width: 100%;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: none;
	border: none;
	margin: 5px 0;
	padding: 15px 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.booking-fields input[type=date] {
	width: 100%;
	color: #9b9c9e;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: uppercase;
	border: none;
	margin: 5px 0;
	padding: 15px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.booking-fields select {
	width: 100%;
	color: #9b9c9e;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: capitalize;
	border: none;
	margin: 5px 0;
	padding: 15px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.booking-fields input::placeholder {
 text-transform: capitalize;
 color: #9b9c9e;
 font-size: 15px;
}
.booking-fields textarea {
	width: 100%;
	text-transform: none;
	font-size: 15px;
	color: #9b9c9e;
	border: none;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	padding: 15px 15px;
	border-radius: 5px;
	margin: 5px 0;
	height: 120px;
}
.booking-fields textarea::placeholder {
 text-transform: capitalize;
 color: #9b9c9e;
 font-size: 15px;
}
.booking-form .wpcf7-submit {
	background-color: #e17027;
	padding: 15px 0;
	width: 100%;
	text-transform: uppercase;
	color: white;
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.top-container {
	background-color: #f1f1f1;
	padding: 30px;
	text-align: center;
}
.header {
	padding: 10px 16px;
	background: #555;
	color: #f1f1f1;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	padding: 5px 0;
	box-shadow: 0px 0px 10px 0 #ccc;
	z-index: 11111
}
.sticky ul {
	position: relative;
	top: 7px;
}
/*                                  /Reservation page                         */
/* CSS footer */

.footer-main-wraper {
	background: #021f31;
	padding: 60px 0 30px;
}
.footer-logo-card-wrp p {
	font-size: 14px;
	color: #fff;
	padding: 15px 0
}
.social-footer a {
	margin-right: 5px;
	text-decoration: none;
}
.footer-links-wrp {
}
.footer-links-wrp .heading-footer {
	font-size: 22px;
	color: #fff;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #163c54;
	font-weight: bold
}
.footer-links-wrp ul {
	list-style: none;
}
.footer-links-wrp ul li a {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
}
.footer-links-wrp span {
	display: block;
	font-size: 14px;
	color: #fff;
	margin: 5px 0
}
.footer-links-wrp span a {
	color: #fff;
}
.footer-links-wrp strong {
	display: block;
	font-size: 14px;
	color: #fff;
}
.footer-endline {
	margin-top: 30px;/* display: flex;
	justify-content: space-between; */
}
.footer-endline1 {
	color: white;
	padding-top: 15px;
	font-size: 14px;
}
.footer-endline2 ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.footer-endline2 ul li {
	list-style-type: none;
	margin: 10px;
}
.footer-endline2 ul li a {
	list-style-type: none;
	color: white;
	font-size: 14px;
}
.footer-endline2 ul li a:hover {
	color: white;
}
/* CSS footer */

/*         Dhow Cruise Creek                  */
.content-wrapper {
	padding: 40px 182px;
}
.content-wrapper-heading h1 {
	text-align: center;
	font-size: 45px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	margin-bottom: 45px;
}
.content-wrapper-heading span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.slider-show {
	background-color: white;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	padding: 20px;
	margin: 0 0 25px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.tab-btns {
	background-color: white;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	padding: 25px 21px;
	/* width: 755px; */
	width: 100%;
	margin: -80px auto 0;
	position: relative;
	z-index: 1111;
	border-radius: 0 0 10px 10px;
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	-o-border-radius: 0 0 10px 10px;
}
.tabs-content {
	background-color: white;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	border-radius: 10px;
	padding: 30px;
	margin-top: 42px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
.tabs-content-heading {
	font-size: 22px;
	font-weight: 700;
	color: #223645;
	border-bottom: 1px solid #8daabe;
	padding-bottom: 15px;
}
.tab-list1-para h3 {
	font-size: 22px;
	font-weight: 700;
	color: #223645;
	padding-bottom: 15px;
}
.tabs-content-list {
	margin: 23px 0;
}
.tab-list-header {
/* display: flex;
	align-items: center;
	gap: 15px; */
}
.tabs-content-lists {
	padding: 40px 0 0;
}
.tab-circle {
	width: 26px;
	color: #e17027;
	float: left;
	margin-right: 10px;
}
.tab-list-header .overview_title {
	font-size: 17px;
	font-weight: 900;
	text-transform: capitalize;
}
.tab-list-header p {
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	float: left;
	width: 661px;
	padding-left: 10px;
}
.tab-list-header1 p {
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	width: 661px;
	padding-left: 10px;
}
.tab-para {
	padding: 0 0 0 40px;
}
.tab-para p {
	font-size: 17px;
	text-transform: capitalize;
	margin-top: 8px;
	font-weight: 500;
}
.tab-list {
	margin: 12px 0;
}
.tab-check-content {
	margin: 20px 0;
}
.tab-list1-para h4 {
	font-size: 20px;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 700;
}
.tab-list1-para h6 {
	font-size: 17px;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 700;
}
.tab-list1-para p {
	font-size: 17px;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 500;
}
.tab-inner-content {
	margin-top: 10px;
}
.tab-inner-content h6 {
	font-size: 17px;
	line-height: 26px;
	padding-bottom: 10px;
	font-weight: 700;
}
.tab-inner-content p {
	font-size: 17px;
	line-height: 26px;
	padding-bottom: 15px;
	font-weight: 500;
}
.list-title {
	margin-bottom: 20px;
	font-weight: 500;
}
.tab-icon {
	width: 50px;
	float: left;
	color: #e17027;
}
.tab-list-info {
/* display: flex;
	align-items: center;
	gap: 10px; */
}
.tab-list-infoheader {
	float: left;
	width: 260px;
	padding: 0 0 22px 15px;
}
.tab-list-infoheader .tabfeature_title {
	font-size: 18px;
	font-weight: 900;
	color: #080652;
}
.tab-list-infoheader p {
	font-size: 16px;
	color: #19175d;
	line-height: 26px;
	/* padding-bottom: 15px; */
	font-weight: 500;
}
.nav-pills {
	gap: 15px !important;
}
.nav-tab-btn {
	background: #ebf7ff !important;
	color: #223645;
	padding: 12px 26px !important;
	font-weight: 600 !important;
	font-size: 14px !important;
}
.tab-btns .active {
	background-color: #095fa0 !important;
	color: #fff;
}
#pills-detail ul {
	margin: 10px;
}
#pills-detail ul li {
	background: url(assetss/images/arrow.png) no-repeat left center;
	padding-left: 35px;
	background-size: 2.5%;
	font-size: 17px;
	color: #000000;
	margin-bottom: 10px;
}
.book-card {
	padding: 30px;
	background-color: #EBF7FF;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	/* border: 2px solid #095fa0; */
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
.bookcard-content h4 {
	font-size: 22px;
	font-weight: 900;
	color: #095fa0;
	margin-bottom: 15px;
	position: relative;/* padding-left: 10px; */
}
.bookcard-content h4::after {
	content: '';
	width: 65px;
	height: 2.5px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: #e17027;
}
.bookcard-para p {
	padding: 14px 10px 14px 10px;
	font-family: lato, sans-serif;
	font-size: 14px;
	color: #095fa0;
	background: white;
	margin: 10px 0;
	border-radius: 5px;
}
.bookcard-price {
	border-bottom: 1px dotted #ccc;
	padding: 10px 0;
	font-family: lato, sans-serif;
	font-size: 14px;
	color: #666;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bookcard-price p {
	font-family: lato, sans-serif;
	font-size: 14px;
	color: #095fa0;
	font-weight: 700;
}
.bookcard-price span {
	font-size: 18px;
	font-weight: 700;
	color: #f05501;
	padding-right: 20px;
}
.bookcard-btn {
	margin-top: 20px;
	text-align: center;
}
.bookcard-btn a {
	background: #f05501;
	padding: 14px 35px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	width: 100%;
	display: block;
}
.contact-wrap {
	margin-top: 27px;
}
.contact-wrap a {
	display: block;
	background: #095fa0;
	color: #fff;
	padding: 18px 0;
	text-decoration: none;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	border-radius: 15px;
}
.contact-wrap a span {
	font-size: 20px;
	display: block;
	font-weight: 400;
}
.contact-wrap a:hover {
	background-color: #ebf7ff;
	color: #095fa0;
}
.contact-wrap1 {
	margin-top: 27px;
}
.contact-wrap1 a {
	display: block;
	background-color: #e17027;
	color: white;
	padding: 18px 0;
	text-decoration: none;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	border-radius: 15px;
	text-transform: capitalize;
}
.contact-wrap1 a span {
	font-size: 20px;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
}
.contact-wrap1 a:hover {
	background-color: #ebf7ff;
	color: #095fa0;
}
.dubaitour-content-wrapper {
	background-color: #ebf7ff;
	padding: 40px 0;
}
.about-content {
	margin: 40px 0;
}
.about-content p {
	font-size: 17px;
	color: #19175d;
	line-height: 28px;
	font-weight: 500;
	margin: 0 0 15px;
}
.about-content h2 {
	margin: 0 0 15px;
	line-height: 26px;
	font-size: 25px;
	font-weight: bold;
	color: #19175d;
	text-transform: capitalize;
}
.content-wrapper-header {
	margin-bottom: 40px;
}
.content-wrapper-header h1 {
	font-size: 35px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	position: relative;
}
.content-wrapper-header h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: #e17027;
}
.content-wrapper-header h1 span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.content-wrapper-header p {
	font-size: 17px;
	color: #19175d;
	padding: 25px 0;
	line-height: 28px;
}
.contact-content-wrapper {
	padding: 40px 0;
}
.contact-form-section {
	margin: 0 100px;
}
.contact-form-section h1 {
	font-size: 35px;
	font-weight: 900;
	line-height: 50px;
	color: #080652;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 40px;
}
.contact-form-section h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #e17027;
}
.contact-form-section h1 span {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #e17027;
	color: #fff;
}
.contact-col1 {
	padding: 23px 30px;
	border-radius: 10px;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	border: 1px solid #ccc;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	margin-bottom: 20px;
}
.contact-col1 h2 {
	text-transform: capitalize;
	font-size: 25px;
	margin-bottom: 46px;
	color: #080652;
	font-weight: 600;
}
.contact-col2 {
	padding: 30px 30px 5px 30px;
	border-radius: 10px;
	background-color: #e0edf6;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}
.contact-form label {
	color: #095fa0;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}
.contact-fields {
	margin: 5px 0;
}
.contact-fields input[type=text] {
	width: 100%;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: none;
	border: none;
	margin: 5px 0;
	padding: 15px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.contact-fields input[type=number] {
	width: 100%;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: none;
	border: none;
	margin: 5px 0;
	padding: 15px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.contact-fields input[type=email] {
	width: 100%;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	text-transform: none;
	border: none;
	margin: 5px 0;
	padding: 15px 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.contact-fields input::placeholder {
 text-transform: capitalize;
 color: #9b9c9e;
 font-size: 15px;
}
.contact-fields textarea {
	width: 100%;
	text-transform: none;
	font-size: 15px;
	color: #9b9c9e;
	border: none;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%);
	padding: 15px 15px;
	border-radius: 5px;
	margin: 5px 0;
	height: 120px;
}
.contact-fields textarea::placeholder {
 text-transform: capitalize;
 color: #9b9c9e;
 font-size: 15px;
}
.wpcf7-submit {
	background-color: #095fa0;
	padding: 15px 0;
	width: 100%;
	text-transform: uppercase;
	color: white;
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.form-btn {
	background-color: #095fa0;
	padding: 15px 0;
	width: 100%;
	text-transform: uppercase;
	color: white;
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.contactinfo-content {
	margin: 20px 0;
}
.contactinfo-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	text-align: center;
	padding-top: 17px;
	background-color: #e17027;
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	-o-border-radius: 100px;
}
.contactinfo-text {
	margin: 10px 0 10px 20px;
	text-align: center;
}
.contactinfo-text h4 {
	font-weight: 700;
	text-transform: capitalize;
	font-size: 20px;
	color: #080652;
}
.contactinfo-text p {
	font-size: 15px;
	font-weight: 500;
	color: #080652;
}
.phone-number-head {
	display: none;
}
.dubaidetailed-text-wraper {
	background: #e0edf6 url(assetss/images/dubaitour-content-bg.png) no-repeat top;
	background-attachment: fixed;
	background-size: cover;
	padding: 80px 0 80px 0;
	background-size: cover;
    background-position: center;
    min-height: 400px;
}
.listing-package-image {
}
.card-content {
	height: 352px !important;
}
.card-price-package {
	position: relative;
	margin-top: -68px;
	z-index: 2222;
}
.tour-price-package {
	position: relative;
	margin-top: -70px;
	z-index: 2222;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
.adult-price1 {
	float: left;
	padding: 10px;
	background-color: #095fa0;
	opacity: 0.8;
	width: 50%;
}
.adult-price1 span {
	display: block;
	text-align: center;
	color: white;
}
.adult-price2 {
	float: left;
	padding: 10px;
	background-color: #e17027;
	opacity: 0.8;
	width: 50%;
}
.adult-price2 span {
	display: block;
	text-align: center;
	color: white;
}
.adult-price-content {
	float: left;
	padding: 22px;
	background: rgb(58 120 201/82%);
	opacity: 0.9;
	width: 100%;
}
.adult-price-content span {
	display: block;
	text-align: center;
	color: white;
	font-size: 18px;
}
.menusitebar-main-wraper {
	display: none;
}
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	height: 100vh;
	padding: 65px 0 0 0;
	background: white;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
	overflow: auto;
}
.drawer-menu li {
	text-align: left;
	display: flex;
	justify-content: space-between;
}
.drawer-menu li a {
	/* display: block;
	float: left; */
	height: auto;
	width: 100%;
	line-height: 42px;
	font-size: 16px;
	font-weight: 500;
	color: #016cb1;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.drawer-menu li button {
	color: #016cb1;
	margin: 10px 30px 10px 0;
	border-radius: 5px;
	font-size: 20px;
	border: none;
	text-align: center;
	padding: 0px 12px 0px 9px !important;
	color: white;
	background: #e17027;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
/* .drawer-menu li a:hover {
	color: white;
	background: #016cb1;
} */
.drawer-menu li button:hover {
	color: white;
	background: #e17027;
}
.sub_ul {
	display: none;
	width: 80%;
	margin: auto;
}
.watsapp-icon {
	position: fixed;
	left: 10px;
	bottom: 10px;
	width: 5%;
	z-index: 1111;
}
.fix_btn_phone {
	position: fixed;
	bottom: 50%;
	z-index: 9;
	margin-bottom: -50px;
	margin-left: -96px;
	transform: rotate(-90deg);
}
.fix_btn_phone a {
	text-decoration: none;
	font-size: 20px;
	padding: 7px 40px;
	background: #f05501;
	display: inline-block;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 0 15px rgb(0 0 0/40%);
}


/*                        Media Queries                                 */
	
@media only screen and (max-width: 1920px) {
/* Your styles for screens with a minimum width of 1920 pixels go here */
.btn-arrow-down {
	position: absolute;
	right: 200px;
	bottom: 20px;
}
.advantage-main-wrap {
	background: url(assetss/images/bar-advantage.png) no-repeat top;
	background-size: cover;
	/* background-position: left; */
	margin-top: -80px;
}
.slider-main-wraper {
	padding-top: 158px;
}
.social-slider-wrp {
	bottom: 189px;
}
}
 @media (max-width:1664px) {
.slider-main-wraper {
	padding-top: 80px;
}
.social-slider-wrp {
	bottom: 108px;
}
.content-wrapper {
	padding: 40px 142px;
}
.btn-arrow-down {
	position: absolute;
	right: 143px;
	bottom: 36px;
}
}
 @media (max-width:1500px) and (min-width:1170px) {
.slider-main-wraper {
	padding-top: 58px;
}
.social-slider-wrp {
	bottom: 109px;
}
.content-wrapper {
	padding: 40px 142px;
}
.btn-arrow-down {
	right: 143px;
}
.advantage-main-wrap {
	background: url(assetss/images/bar-advantage.png) no-repeat top;
	background-size: cover;
	background-position: right;
	margin-top: -80px;
}
}
 @media (max-width:1470px) and (min-width:1170px) {
.social-slider-wrp {
	bottom: 103px;
}
.btn-arrow-down {
	right: 143px;
}
.content-wrapper {
	padding: 40px 116px;
}
}
 @media (max-width:1400px) and (min-width:1170px) {
.content-wrapper {
	padding: 40px 116px;
}
.carousel-btns {
	top: -5% !important;
}
.header-nav-wraper ul li a {
	padding: 10px 12px !important;
}
.slider-main-wraper {
	padding-top: 90px;
}
.slider-text-wrap .banner_maintitle {
	font-size: 60px;
	line-height: 55px;
}
.slider-text-wrap p {
	font-size: 18px;
}
.social-slider-wrp span {
	font-size: 15px;
}
.cta-main-wrap h3 {
	font-size: 45px;
}
.text-about-wrap ul li {
	font-size: 13px;
}
.slider-gallery-wrap:before {
	bottom: -91px;
}
.carousel-control-next, .carousel-control-prev {
	top: -25%;
}
.nav-pills {
	gap: 10px !important;
}
.contact-form-section {
	margin: 0;
}
.listing-heading a{
	font-size:18px;
}
.advantage-main-wrap {
        background: #016cb1;
        margin-top: -80px;
}
.btn-arrow-down{
	display:none;
}
.sticky .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 42px;
}
}
 @media (max-width:1355px) and (min-width:1170px) {
.slider-main-wraper {
	padding-top: 80px;
}
.nav-pills {
	gap: 10px !important;
}
.content-wrapper {
	padding: 40px 61px;
}
.contact-form-section {
	margin: 0;
}

}
 @media (max-width:1258px) and (min-width:1169px) {
.content-wrapper {
	padding: 40px 34px;
}
.carousel-btns {
	top: -5% !important;
}
}
 @media (max-width:1200px) and (min-width:1169px) {
.nav-tab-btn {
	padding: 12px 24px !important;
}
.content-wrapper {
	padding: 40px 30px;
}
.carousel-btns {
	top: -5% !important;
}
.header-nav-wraper ul li a {
	padding: 10px 7px !important;
}
.header-nav-wraper ul li a {
	font-size: 13px;
}
.listing-advantage-text span {
	font-size: 16px;
}
.listing-advantage-text p {
	font-size: 12px;
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 65px;
	height: 65px;
	padding-top: 16px;
}
.advantage-main-wrap ul li:nth-child(3) .listing-advantage-icon {
	padding-top: 15px;
}
.slider-main-wraper {
	padding-top: 80px;
}
.slider-text-wrap {
	width: 50%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 57px;
	line-height: 50px;
}
.slider-text-wrap p {
	font-size: 17px;
}
.social-slider-wrp span {
	font-size: 15px;
}
/* .btn-arrow-down {
			right: 143px;
		} */
.cta-main-wrap h3 {
	font-size: 36px;
}
.text-about-wrap ul li {
	font-size: 11px;
	font-weight: 600;
}
.price-package {
	font-size: 15px;
}
.listing-heading a {
	font-size: 18px;
}
.listing-package-text-wrp p {
	font-size: 12px;
}
.listing-package-list strong {
	font-size: 14px;
}
.cta-main-wrap ul li a {
	font-size: 13px;
}
.cta-main-wrap ul li a strong {
	font-size: 20px;
}
.slider-gallery-wrap:before {
	bottom: -12px;
	z-index: -111;
}
.carousel-control-next, .carousel-control-prev {
	top: -38%;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:1169px) {
.nav-tab-btn {
	padding: 12px 22px !important;
}
.content-wrapper {
	padding: 40px 0px;
}
.carousel-btns {
	top: -5% !important;
}
.header-nav-wraper ul li a {
	padding: 10px 7px !important;
}
.header-nav-wraper ul li a {
	font-size: 13px;
}
.listing-advantage-text span {
	font-size: 16px;
}
.listing-advantage-text p {
	font-size: 12px;
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 65px;
	height: 65px;
	padding-top: 16px;
}
.advantage-main-wrap ul li:nth-child(3) .listing-advantage-icon {
	padding-top: 15px;
}
.slider-main-wraper {
	padding-top: 80px;
}
.slider-text-wrap {
	width: 50%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 57px;
	line-height: 50px;
}
.slider-text-wrap p {
	font-size: 17px;
}
.social-slider-wrp span {
	font-size: 15px;
}
.cta-main-wrap h3 {
	font-size: 36px;
}
.text-about-wrap {
	margin-left: -66px;
}
.about-image-wrap {
	width: 70%;
	margin: 0 auto;
}
.text-about-wrap ul li {
	font-size: 12px;
}
.price-package {
	font-size: 15px;
}
.listing-heading a {
	font-size: 18px;
}
.listing-package-text-wrp p {
	font-size: 12px;
}
.listing-package-list strong {
	font-size: 14px;
}
.cta-main-wrap ul li a {
	font-size: 13px;
}
.cta-main-wrap ul li a strong {
	font-size: 20px;
}
.slider-gallery-wrap:before {
	bottom: -12px;
	z-index: -111;
}
.carousel-control-next, .carousel-control-prev {
	top: -38%;
}
.header-nav-wraper {
	display: none;
}
.menusitebar-main-wraper {
	display: block;
}
/* .dropdown-menu{
			position: relative !important;
			margin: 0 !important;
			padding: 0 !important;
			left: 0 !important;
			top: 0 !important;
			width: 100%;
			max-width: 100% !important;
			margin-top: -62px !important;
			float: none !important;
			clear: both !important;
			margin-left: -33px !important;
		}
		.dropdown-menu a{
			line-height:22px !important;
		}
		.dropdown{
			line-height: 65px !important;	
			border-bottom: 1px solid #1e1e1e;
		}
		.dropdown-toggle{
			font-size:16px !important;
		} */
.advantage-main-wrap {
	background-position: left;
}
.btn-arrow-down {
	display: none;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
.faq-main-wraper .faq_mainheading {
	font-size: 41px;
}
}
 @media screen and (max-width:1106px) {
.nav-tab-btn {
	padding: 12px 18px !important;
}
.content-wrapper {
	padding: 40px 0px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:1070px) {
.nav-tab-btn {
	padding: 12px 18px !important;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 8px !important;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:992px) {
.nav-tab-btn {
	padding: 12px 10px !important;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 8px !important;
}
.container {
	max-width: 100%;
	padding: 0 25px;
}
.slider-text-wrap {
	width: 50%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 50px;
	line-height: 50px;
}
.listing-advantage-text {
	width: 67%;
}
.main-text-wrap p {
	font-size: 15px;
	padding: 25px 150px;
}
.listing-package-wraper h2 {
	font-size: 22px;
}
.listing-package-text-wrp p {
	font-size: 12px;
	padding: 0;
}
.slider-text-wrap p {
	font-size: 15px;
}
.slider-gallery-wrap:before {
	bottom: 15px;
	z-index: -111;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:920px) {
.card-price-package {
	margin-top: -60px;
}
.adult-price1, .adult-price2 {
	padding: 8px 10px;
}
.adult-price1 span, .adult-price2 span {
	font-size: 15px;
}
.mycontainer {
	max-width: 958px !important;
}
.nav-tab-btn {
	padding: 12px 10px !important;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 8px !important;
}
.slider-gallery-wrap:before {
	bottom: 30px;
	z-index: -111;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:850px) {
.tab-list-infoheader p {
	font-size: 15px;
}
.tabs-content {
	padding: 30px 13px;
}
.tab-list-infoheader {
	padding: 0 0 22px 10px;
}
.card-price-package {
	margin-top: -54px;
}
.adult-price1, .adult-price2 {
	padding: 8px 10px;
}
.adult-price1 span, .adult-price2 span {
	font-size: 13px;
}
.mycontainer {
	max-width: 958px !important;
}
.nav-tab-btn {
	padding: 12px 7px !important;
}
.book-card {
	padding: 30px 15px;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 5px !important;
}
.tab-btns {
	padding: 25px 12px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.container {
	max-width: 100%;
	padding: 0 25px;
}
.slider-text-wrap {
	width: 50%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 48px;
}
.slider-text-wrap p {
	font-size: 14px;
	font-weight: 500;
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 60px;
	height: 60px;
	padding-top: 14px;
}
.listing-advantage-text {
	width: 68%;
	float: left;
}
.main-text-wrap h1 {
	font-size: 40px;
}
.main-text-wrap p {
	font-size: 12px;/* padding: 25px 140px; */
}
.listing-package-wraper h2 {
	font-size: 20px;
}
.cta-main-wrap {
	padding: 38px 0;
}
.cta-main-wrap .cta_main_heading {
	font-size: 30px;
}
.cta-main-wrap ul li a {
	font-size: 12px;
}
.about-image-wrap {
	width: 92%;
	margin: 0 auto;
}
.text-about-wrap {
	margin-left: 0px;
}
.text-about-wrap .tourspackage_title {
	font-size: 36px;
	line-height: 36px;
}
.text-about-wrap p {
	font-size: 14px;
	line-height: 20px;
}
.carousel-control-next, .carousel-control-prev {
	top: -50%;
}
.footer-endline1 {
	font-size: 12px;
}
.footer-endline2 ul li a {
	font-size: 11px;
}
.slider-gallery-wrap:before {
	bottom: 60px;
	z-index: -111;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.slider-main-wraper {
	padding-top: 80px;
}
.btn-about-wrap a {
	padding: 15px 30px;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:820px) {
.header-slider-wrap {
	height: 90vh;
}
.social-slider-wrp span {
	position: relative;
}
.social-slider-wrp {
	position: relative;
	bottom: 0;
	margin-top: 20px;
}
.slider-main-wraper {
	padding-top: 55px;
}
.tab-list-infoheader p {
	font-size: 15px;
}
.tabs-content {
	padding: 30px 13px;
}
.tab-list-infoheader {
	padding: 0 0 22px 10px;
}
.card-price-package {
	margin-top: -52px;
}
.adult-price1, .adult-price2 {
	padding: 8px 10px;
}
.adult-price1 span, .adult-price2 span {
	font-size: 12px;
}
.nav-tab-btn {
	padding: 12px 7px !important;
}
.book-card {
	padding: 30px 15px;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 5px !important;
}
.tab-btns {
	padding: 25px 12px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.container {
	max-width: 100%;
	padding: 0 25px;
}
.slider-text-wrap {
	width: 60%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 48px;
	line-height: 50px;
}
.slider-text-wrap p {
	font-size: 14px;
	font-weight: 500;
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 65px;
	height: 65px;
	padding-top: 16px;
}
.listing-advantage-wrap .listing-advantage-icon {
	margin-right: 10px;
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 60px;
	height: 60px;
	padding-top: 14px;
}
.listing-advantage-text {
	width: 68%;
	float: left;
}
.main-text-wrap h1 {
	font-size: 40px;
}
.main-text-wrap p {
	font-size: 11px;/* padding: 25px 140px; */
}
.listing-package-wraper h2 {
	font-size: 20px;
}
.cta-main-wrap {
	padding: 38px 0;
}
.cta-main-wrap h3 {
	font-size: 30px;
}
.cta-main-wrap ul li a {
	font-size: 12px;
}
.about-image-wrap {
	width: 92%;
	margin: 0 auto;
}
.text-about-wrap {
	margin-left: 0px;
}
.text-about-wrap .tourspackage_title {
	font-size: 36px;
	line-height: 36px;
}
.text-about-wrap p {
	font-size: 14px;
	line-height: 20px;
}
.carousel-control-next, .carousel-control-prev {
	top: -50%;
}
.footer-endline1 {
	font-size: 11px;
}
.footer-endline2 ul li a {
	font-size: 11px;
}
.slider-gallery-wrap:before {
	bottom: 60px;
	z-index: -111;
}
.btn-about-wrap a {
	padding: 15px 30px;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
}
 @media screen and (max-width:768px) {
.header-slider-wrap {
	height: 85vh;
}
.detailed-text-wraper{
	padding: 30px 0;
}
.social-slider-wrp span {
	position: relative;
}
.social-slider-wrp {
	position: relative;
	bottom: 0;
	margin-top: 20px;
}
.tab-list-infoheader p {
	font-size: 16px;
}
.tabs-content {
	padding: 20px;
	margin-top: 0px;
}
.tab-list-infoheader {
	padding: 0 0 22px 15x;
}
.tabs-content-section {
	margin: 20px 0;
}
.contact-wrap {
	margin-top: 10px;
}
.contact-wrap1 {
	margin-top: 10px;
}
.mycontainer {
	max-width: 958px !important;
}
.nav-tab-btn {
	padding: 12px 16px !important;
}
.book-card {
	margin-top: 25px;
	padding: 30px 30px;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 15px !important;
}
.tab-btns {
	padding: 25px 20px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.content-wrapper-heading h1 {
	font-size: 30px;
}
.slider-main-wraper {
	padding-top: 40px;
}
.slider-text-wrap {
	width: 60%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 43px;
}
.slider-text-wrap p {
	font-size: 15px;
	font-weight: 500;
}
.listing-advantage-wrap {
	margin: 20px 0;
}
.listing-advantage-text span {
	font-size: 23px;
}
.listing-advantage-text p {
	font-size: 15px;
}
.listing-advantage-text {
	width: 80%;
	float: left;
}
.advantage-main-wrap-list {
	list-style: none;
	padding: 15px 0 35px;
}
.main-text-wrap h1 {
	font-size: 40px;
}
.main-text-wrap p {
	font-size: 14px;
	padding: 25px 110px;
}
.listing-package-text-wrp p {
	font-size: 14px;
	padding: 0;
}
.listing-package-wraper h2 {
	font-size: 20px;
}
.cta-main-wrap {
	padding: 38px 0;
}
.cta-main-wrap h3 {
	font-size: 30px;
}
.cta-main-wrap ul li a {
	font-size: 12px;
}
.about-image-wrap {
	width: 70%;
	margin: 0 auto;
}
.text-about-wrap {
	margin-left: 0px;
}
.text-about-wrap .tourspackage_title {
	font-size: 42px;
	line-height: 45px;
}
.text-about-wrap p {
	font-size: 14px;
	line-height: 20px;
}
.carousel-control-next, .carousel-control-prev {
	top: -50%;
}
.footer-endline1 {
	font-size: 12px;
}
.footer-endline2 ul li a {
	font-size: 11px;
}
.slider-gallery-wrap:before {
	bottom: 28px;
	z-index: -111;
}
.footer-links-wrp {
	margin-top: 20px;
}
.slider-gallery-wrap:before {
	bottom: 35px;
	z-index: -111;
}
.gallery-main-wraper .carousel {
	width: 100%;
	margin: 0 auto;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.slider-gallery-wrap {
	height: 400px;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
.drawer-menu li {
	display: block !important;
}
.has_dropdown .haschild {
	display: inline-block !important;
	float: left;
	width: 70%;
}
.has_dropdown .dropdown-toggle {
	display: inline-block !important;
	float: right;
}
.sub_ul {
	padding-top: 0px !important;
}
.arrow-caret-menu {
	display: block;
	position: relative;
	right: 25px;
	background: #f05501;
	width: 35px;
	height: 35px;
	text-align: center;
	padding-top: 7px;
	float: right;
	top: 15px;
}
.arrow-caret-menu:before {
	background: #ffffff;
	width: 6px;
	height: 16px;
	content: "";
	position: absolute;
	left: 0;
	clip-path: polygon(100% 39%, 0 70%, 100% 100%);
	z-index: z;
	bottom: 9px;
	left: 11px;
	rotate: -90deg;
}
.fix_btn_phone {
	display: none;
}
.watsapp-icon {
	position: fixed;
	left: 10px;
	bottom: 10px;
	width: 100% !important;
	z-index: 1111;
}
.header-slider-wrap {
	height: 70vh;
}
.faq-main-wraper .faq_mainheading {
	font-size: 32px;
}
.header-bg img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 80% 60%;
}
.header-bg {
	width: 100%;
	height: auto;
}
.tab-para p {
    font-size: 17px;
    margin-top: 0;
    padding-left: 27px;
}
#pills-detail ul{
	margin-left:0;
}
}
 @media screen and (max-width:733px) {
.header-slider-wrap {
	height: 90vh;
}
.social-slider-wrp span {
	position: relative;
}
.social-slider-wrp {
	position: relative;
	bottom: 0;
	margin-top: 20px;
}
.nav-tab-btn {
	padding: 12px 16px !important;
}
.book-card {
	margin-top: 25px;
	padding: 30px 30px;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 15px !important;
}
.tab-btns {
	padding: 25px 20px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.content-wrapper-heading h1 {
	font-size: 35px;
}
.slider-main-wraper {
	padding-top: 75px;
}
.slider-text-wrap {
	width: 60%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 48px;
}
.slider-text-wrap p {
	font-size: 14px;
	font-weight: 500;
}
.listing-advantage-text span {
	font-size: 23px;
}
.listing-advantage-text p {
	font-size: 15px;
}
.listing-advantage-text {
	width: 80%;
	float: left;
}
.advantage-main-wrap-list {
	list-style: none;
	padding: 15px 0 35px;
}
.main-text-wrap h1 {
	font-size: 40px;
}
.main-text-wrap p {
	font-size: 14px;
	padding: 25px 110px;
}
.listing-package-text-wrp p {
	font-size: 14px;
	padding: 0;
}
.listing-package-wraper h2 {
	font-size: 20px;
}
.cta-main-wrap {
	padding: 38px 0;
}
.cta-main-wrap h3 {
	font-size: 30px;
}
.cta-main-wrap ul li a {
	font-size: 12px;
}
.about-image-wrap {
	width: 70%;
	margin: 0 auto;
}
.text-about-wrap {
	margin-left: 0px;
}
.text-about-wrap .tourspackage_title {
	font-size: 42px;
	line-height: 45px;
}
.text-about-wrap p {
	font-size: 14px;
	line-height: 20px;
}
.carousel-control-next, .carousel-control-prev {
	top: -50%;
}
.footer-endline1 {
	font-size: 12px;
}
.footer-endline2 ul li a {
	font-size: 11px;
}
.slider-gallery-wrap:before {
	bottom: 50px;
	z-index: -111;
}
.footer-links-wrp {
	margin-top: 20px;
}
.slider-gallery-wrap:before {
	bottom: 84px;
	z-index: -111;
}
.gallery-main-wraper .carousel {
	width: 101%;
	margin: 0 auto;
}
.price-package {
	font-size: 15px;
}
.listing-heading a {
	font-size: 20px;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.slider-gallery-wrap:before {
	bottom: 35px;
	z-index: -111;
}
.slider-gallery-wrap {
	height: 400px;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
.faq-main-wraper .accordion {
	width: 100%;
}
.slider-main-wraper {
	display: none;
}
.best-desert-pacakge-wrap {
	padding: 30px 0;
}
.main-text-wrap h1 {
	margin-bottom: 0;
	padding-bottom: 0
}
}
 @media screen and (max-width:689px) {
.header-slider-wrap {
	height: 100vh;
}
.social-slider-wrp span {
	position: relative;
}
.social-slider-wrp {
	position: relative;
	bottom: 0;
	margin-top: 20px;
}
.nav-tab-btn {
	padding: 12px 10px !important;
}
.book-card {
	margin-top: 25px;
	padding: 30px 30px;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 8px !important;
}
.tab-btns {
	padding: 25px 20px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.content-wrapper-heading h1 {
	font-size: 35px;
}
.slider-main-wraper {
	padding-top: 75px;
}
.slider-text-wrap {
	width: 75%;
}
.slider-text-wrap .banner_maintitle {
	font-size: 43px;
}
.slider-text-wrap p {
	font-size: 15px;
	font-weight: 500;
}
.listing-advantage-wrap .listing-advantage-icon {
	width: 60px;
	height: 60px;
	padding-top: 14px;
}
.listing-advantage-text {
	width: 60%;
	float: left;
}
.main-text-wrap h1 {
	font-size: 40px;
}
.main-text-wrap p {
	font-size: 14px;
	padding: 25px 110px;
}
.listing-package-text-wrp p {
	font-size: 12px;
	padding: 0;
}
.listing-package-wraper h2 {
	font-size: 20px;
}
.cta-main-wrap {
	padding: 38px 0;
}
.cta-main-wrap h3 {
	font-size: 25px;
}
.cta-main-wrap ul li a {
	font-size: 12px;
}
.about-image-wrap {
	width: 70%;
	margin: 0 auto;
}
.text-about-wrap {
	margin-left: 0px;
}
.text-about-wrap .tourspackage_title {
	font-size: 42px;
	line-height: 45px;
}
.text-about-wrap p {
	font-size: 14px;
	line-height: 20px;
}
.carousel-control-next, .carousel-control-prev {
	top: -50%;
}
.footer-endline1 {
	font-size: 12px;
}
.footer-endline2 ul li a {
	font-size: 11px;
}
.slider-gallery-wrap:before {
	bottom: 60px;
	z-index: -111;
}
.footer-links-wrp {
	margin-top: 20px;
}
.slider-gallery-wrap:before {
	bottom: 100px;
	z-index: -111;
}
.gallery-main-wraper .carousel {
	width: 100%;
	margin: 0 auto;
}
.price-package {
	font-size: 15px;
}
.listing-heading a {
	font-size: 20px;
}
.card-detailed-text-wrap ul li {
	background-size: 2.5%;
}
.slider-gallery-wrap {
	height: 400px;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
.faq-main-wraper .accordion {
	width: 100%;
}
}
 @media screen and (max-width:575px) {
.header-slider-wrap {
	height: 100vh;
}
.social-slider-wrp span {
	position: relative;
}
.social-slider-wrp {
	position: relative;
	bottom: 0;
	margin-top: 20px;
}
.nav-tab-btn {
	padding: 12px 10px !important;
}
.book-card {
	margin-top: 25px;
	padding: 30px 30px;
}
.content-wrapper {
	padding: 40px 0px;
}
.nav-pills {
	gap: 8px !important;
}
.tab-btns {
	padding: 25px 20px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.content-wrapper-heading h1 {
	font-size: 35px;
}
.site-logo img {
	width: 260px;
}
.slider-text-wrap {
	width: 95%;
}
.listing-package-list strong {
	font-size: 14px;
}
.price-package {
	font-size: 16px;
}
.listing-heading a {
	font-size: 20px;
}
.listing-package-text-wrp p {
	font-size: 12px;
	padding: 0 !important;
}
.cta-main-wrap h3 {
	font-size: 36px;
	margin-bottom: 20px;
}
.book-btns {
	margin-bottom: 20px;
}
.cta-main-wrap ul li a strong {
	font-size: 26px;
}
.cta-main-wrap ul li a {
	font-size: 15px;
}
.btn-about-wrap a {
	padding: 15px 16px;
}
.text-about-wrap .tourspackage_title {
	font-size: 40px;
	line-height: 45px;
}
.gallery-main-wraper h3 {
	font-size: 38px;
}
.slider-gallery-wrap:before {
	bottom: 200px;
	z-index: -111;
}
.card-detailed-text-wrap ul li {
	background-size: 4.5%;
}
.footer-endline2 ul {
	justify-content: flex-start;
}
.faq-main-wraper h1 {
	font-size: 32px;
}
.footer-endline2 ul li {
	list-style-type: none;
	margin: 10px 10px 10px 0;
}
.carousel-control-next, .carousel-control-prev {
	top: -23%;
}
.main-text-wrap p {
	font-size: 14px;
	padding: 25px 0px;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.slider-gallery-wrap {
	height: 245px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
.faq-main-wraper .accordion {
	width: 100%;
}
.advantage-main-wrap {
	display: none;
}
.header-slider-wrap {
	height: auto !important;
	background: #e4f4ff !important;
}
.slider-main-wraper {
	padding-bottom: 60px;
}
.phone-number-head {
	display: block;
	position: relative;
	font-weight: bold;
	right: 35px;
	top: 7px;
	color: #016cb1;
	font-size: 13px;
}
.phone-number-head img {
	width: 38px;
}
.listing-package-text-wrp {
	height: auto;
	margin-bottom: 20px;
}
.listingcontents {
	height: auto;
}
.btn-about-wrap a {
	margin: 0 5px;
}
.slider-gallery-wrap {
	height: auto !important;
}
.gallery-main-wraper {
	padding-top: 30px;
}
}
 @media screen and (max-width:480px) {
.slider-text-wrap .banner_maintitle {
	font-size: 34px;
}
.slider-text-wrap p {
	font-size: 13px;
	padding: 0;
}
.social-slider-wrp span {
	display: block;
	position: relative;
	margin-bottom: 20px;
}
.social-slider-wrp {
	bottom: 0;
	margin-top: 20px;
}
.slider-main-wraper {
	padding-top: 46px;
}
.nav-tab-btn {
	padding: 12px 10px !important;
}
.book-card {
	margin-top: 25px;
	padding: 30px 30px;
}
.content-wrapper {
	padding: 20px 0px;
}
.nav-pills {
	gap: 8px !important;
}
.tab-btns {
	padding: 25px 20px;
}
.contact-wrap a span, .contact-wrap1 a span {
	font-size: 16px;
}
.contact-wrap a, .contact-wrap1 a {
	font-size: 24px;
}
.carousel-btns {
	top: -20%;
}
.content-wrapper-heading h1 {
	font-size: 30px;
	margin-bottom: 20px;
}
.site-logo img {
	width: 260px;
}
.slider-text-wrap {
	width: 95%;
}
.listing-package-list strong {
	font-size: 14px;
}
.price-package {
	font-size: 16px;
}
.listing-heading a {
	font-size: 20px;
}
.listing-package-text-wrp p {
	font-size: 12px;
	padding: 0 !important;
}
.cta-main-wrap .cta_main_heading {
	font-size: 36px;
	margin-bottom: 20px;
}
.book-btns {
	margin-bottom: 20px;
}
.cta-main-wrap ul li a strong {
	font-size: 26px;
}
.cta-main-wrap ul li a {
	font-size: 15px;
}
.btn-about-wrap a {
	padding: 15px 16px;
}
.text-about-wrap .tourspackage_title {
	font-size: 40px;
	line-height: 45px;
}
.gallery-main-wraper h3 {
	font-size: 38px;
}
.slider-gallery-wrap:before {
	bottom: 200px;
	z-index: -111;
}
.card-detailed-text-wrap ul li {
	background-size: 6.5%
}
.footer-endline2 ul {
	justify-content: flex-start;
}
.faq-main-wraper h1 {
	font-size: 32px;
}
.footer-endline2 ul li {
	list-style-type: none;
	margin: 10px 10px 10px 0;
}
.carousel-control-next, .carousel-control-prev {
	top: -23%;
}
.main-text-wrap p {
	font-size: 14px;
	padding: 15px 0px;
}
.book-nav-btn {
	margin: 0px 28px 15px 29px;
	padding: 0 0;
	background-color: #e17027;
	color: white !important;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}
.book-nav-btn a.nav-link {
	display: block;
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: white !important;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.slider-gallery-wrap {
	height: 245px;
}
.contact-form-section {
	margin: 0;
}
.booking-form-section {
	margin: 0;
}
.slider-show {
	padding: 0;
}
.tab-list-header1 p {
	width: 87%;
	float: left;
	padding-left:0;
}
.tab-list-infoheader {
	float: left;
	width: 80%
}
.tabs-content-section {
	margin-bottom: 0;
}
.tabs-content-list {
	margin-bottom: 0;
}
.tab-btns {
	z-index: 1;
}
#pills-detail ul li {
}
#pills-detail ul li {
	background: url(assetss/images/arrow.png) no-repeat left top !important;
	background-size: 8.5% !important;
	background-position:0% -2px !important;
}
.tab-circle {
	width: 18px;
        height: 80px;
}
.tab-para {
	padding: 2px 0;
}
}
