/* home-page */


form.searchandfilter ul {
	padding: 0;
	margin: 0;
	width: 100%;
	margin-right: -10px;
}

form.searchandfilter ul li {
	flex: 0 0 35%;
	width: 35%;
}

form.searchandfilter ul li input {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background: transparent;
	color: #757575;
}

form.searchandfilter ul li select#oftourtype {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background: transparent;
	color: #757575;
}

form.searchandfilter ul li input[type="submit"] {
	background: var(--secondary-color);
	color: #fff;
	transition: var(--default-transition);
}

form.searchandfilter ul li input[type="submit"]:hover {
	background-color: var(--primary-color);
}

form.searchandfilter ul li:nth-child(3) {
	flex: 0 0 30%;
	width: 30%;
}

form.searchandfilter ul li:first-child {
	position: relative;
}

form.searchandfilter ul li:first-child:after {
	content: "\f002";
	font-family: 'FontAwesome';
	position: absolute;
	color: #757575;
	font-size: 14px;
	top: 13px;
	right: 20px;
}

.banner-search-form li:nth-child(3) {
	flex: 0 0 30%;
}

.banner-search-form select {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	color: #777777;
	height:43px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	line-height: 43px;
}

.popular-destination-listing> a {
	display: none;
}

.popular-destination-listing .itemwrap a {
	height: 100%;
	display:block;
}

.popular-destination-listing .img-holder {
	height: 100%;
}

.popular-destination-listing .img-holder span {
	position: relative;
	overflow: hidden;
	width: 0;
	height: 0;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: .3s linear;
	display:block;
}

.popular-destination-listing .img-holder span:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	transition: all 0.3s ease;
	border-radius: 10px;
}
.popular-destination-listing .itemwrap:hover .img-holder span:before{
	opacity: 0.5;
}
.popular-destination-listing .itemwrap:before {
	content: none;
}

.popular-destination-listing .itemwrap:hover a:before {
	opacity: 1;
}

section.search-page-wrapper .search-title {
	font-size: 30px;
}

footer.site-footer .brand> svg {
	display: none;
}

.footer-title> svg {
	display: none;
}

.footer-title {
	color: #fff;
}

.copyright-block a, .footer-menu a, .footer-menu li {
	color: #fff;
	font-size:14px;
}

.copyright-block>svg {display: none;}

.copyright-block .itemwrap {
	color: #fff;
	font-size:14px;
}

.copyright-block {
	border-top: 1px solid #fff;
}

footer.site-footer .brand a {
	color: #fff;
}

footer.site-footer {
	background-image: none !important;
	background-color: #00454d !important;
}

/* home-page-end */

/* destination-details-page */

ul.destination-gallery-lists {
	list-style: none;
	padding: 0;
	margin: 0 -10px;
	overflow: hidden;
}
.recent-post-item a:hover span.title {
	color: var(--secondary-color);
}


li.destination-gallery-list {
	float: left;
	width: 25%;
	height: 250px;
	overflow: hidden;
	padding: 0 10px;
	margin-bottom: 20px;
}

li.destination-gallery-list:first-child {
	width: 50%;
	height: 520px;
	margin-bottom: 0;
}

li.destination-gallery-list a {
	display: block;
	height: 100%;
}

li.destination-gallery-list a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}


section.single-destination h3.single-page-title {
	font-size: 24px;
	margin-bottom: 25px;
	font-family: var(--secondary-fonts);
}

.destination-details p {
	font-weight: 500;
	margin-bottom: 15px;
}


.single-destination-gallery {
	margin-bottom: 60px;
}

section.single-destination {
	padding: var(--default-padding);
}

.destination-map iframe {
	height: 230px;
	width: 100%;
}

.popular-destination-listing .content a {
	color: #fff;
}

/* destination-details-page-end */

/* 404-page */

#notfound {
	position: relative;
	height: 80vh;
}

#notfound .notfound {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.notfound {
	max-width: 767px;
	width: 100%;
	line-height: 1.4;
	text-align: center;
	padding: 15px;
}

.notfound .notfound-404 {
	position: relative;
	height: 220px;
}

.notfound .notfound-404 h1 {
	font-family: var(--secondary-fonts);
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform:
		translate(-50%, -50%);
	font-size: 186px;
	font-weight: 600;
	margin: 0px;
	background: var(--secondary-color);
	color:transparent;
	-webkit-background-clip: text;
	background-clip: text;
	text-transform: uppercase;
}

.notfound h2 {
	font-family: var(--primary-fonts);
	font-size: 33px;
	font-weight: 200;
	text-transform: uppercase;
	margin-top: 0px;
	margin-bottom: 25px;
	letter-spacing: 3px;
	margin-top: 25px;
}


.notfound p {
	font-family: var(--primary-fonts);
	font-size: 16px;
	font-weight: 400;
	margin-top: 0px;
	margin-bottom: 25px;
}


.notfound a {
	font-family: 'Kanit', sans-serif;
	color: var(--secondary-color);
	font-weight: 200;
	text-decoration: none;
	border-bottom: 1px dashed;
	border-radius: 2px;
}

.notfound-social>a {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	width: 40px;
	font-size: 14px;
	color: var(--secondary-color);
	border: 1px solid var(--secondary-color);
	border-radius: 50%;
	margin: 3px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.notfound-social>a:hover {
	color: #fff;
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

@media only screen and (max-width: 480px) {
	.notfound .notfound-404 {
		position: relative;
		height: 168px;
	}

	.notfound .notfound-404 h1 {
		font-size: 142px;
	}

	.notfound h2 {
		font-size: 22px;
	}
}

/* 404-page-end */

/* archive-page-banner */

.banner-content {
	text-align: center;
	padding: 140px 0;
}

.banner-content h3 {
	font-family: var(--tertiary-fonts);
	color: #FFFFFF;
	font-size: 32px;
	margin-bottom: 13px;
}

.banner-content h2 {
	font-family: var(--secondary-fonts);
	text-transform: capitalize;
	color: #FFFFFF;
	font-size: 32px;
	max-width: 450px;
	margin: 0 auto;
	font-weight: bold;
	letter-spacing: 1.6px;
}

section.archive-page-banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 11;
}

section.archive-page-banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: -1;
}

/* archive-page-banner-end */


/* archive-about-us */

.about-us-content p {
	font-size: 18px;
	color: var(--text-color);
	margin-bottom: 30px;
}

.about-us-content ul {
	padding-left: 15px;
	list-style: none;
	font-size: 18px;
	margin-bottom: 50px;
}


.about-us-content ul li:before {
	content: "\2022";
	width: 1rem;
	font-weight: bold;
	color: var(--secondary-color);
	display: inline-block;
	margin-left: -1rem;
	padding-right: 20px;
}

.about-us-content .button a {
	text-decoration: none;
	text-transform: capitalize;
	background: var(--secondary-color);
	color: #fff;
	/* height: 50px; */
	/* width: 180px; */
	padding: 12px 40px;
	border-radius: 4px;
	font-size: 18px;
}

section.archive-about-us ul.image-lists {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	/* justify-content: space-between; */
	margin: 0 -15px;
}

section.archive-about-us ul.image-lists li img {
	width: 290px;
	height: 380px;
	object-fit: cover;
	outline: 1px solid white;
	outline-offset: -10px;
}

section.archive-about-us ul.image-lists li {
	height: 440px;
	flex: 0 0 50%;
	width: 50%;
	padding: 0 15px;
	text-align: right;
}

section.archive-about-us ul.image-lists li:nth-child(2) {padding-top: 60px;text-align: right;}

section.archive-about-us {
	padding: var(--default-padding) 0;
}
.tour-description{
	color:#fff;
}
/* archive-about-us-end */


/* guide-section */

section.guide-section img {
	height: 305px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.guide-detail> span {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	display: block;
}

.guide-detail {
	text-align: center;
	background: #ffffff;
	box-shadow: 0px 0px 12px #00000029;
	padding: 18px;
	border-radius: 0px 0px 10px 10px;
	font-weight: bold;
}

.guide-wrapper a{
	width: 100%;
}
.guide-detail span.name{
	color: var(--primary-color);
}
.guide-detail span.name a {
	font-size: 24px;
	font-weight: 600;
	font-family: var(--secondary-fonts);
	margin-bottom: 15px;
	text-decoration: none;
	color: var(--primary-color);
}

.guide-detail span.post a {
	font-size: 18px;
	color: var(--secondary-color);
	text-decoration: none;
}

section.guide-section {
	/* margin-bottom: 90px; */
	padding: var(--default-padding);
}

.section-title h3 {
	font-family: var(--tertiary-font);
	font-size: 32px;
	color: var(--primary-color);
}

/* .guide-detail span.name {
margin-bottom: 15px;
} */

/* guide-section-end */


/* single-post */

section.blog-single-content {
	padding: var(--default-padding);
}

.blog-main-content p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.16px;
	margin-bottom: 30px;
}

.blog-main-content .img-holder img {
	width: 100%;
	object-fit: cover;
	height: 380px;
}

.blog-main-content .img-holder {
	margin: 40px 0;
}

h4.single-blog-title {
	font-size: 18px;
	font-family: var(--secondary-fonts);
	margin-bottom: 30px;
	font-weight: 600;
}

.blog-content-wrapper .blog-quote {
	display: flex;
	align-items: center;
}

.blog-content-wrapper .blog-quote p {
	font-size: 21px;
	max-width: 502px;
	margin-bottom: 0;
}

.blog-content-wrapper .blog-quote {
	background: #FCFCFC;
	border: 1px solid #C4C4C4;
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 30px;
	justify-content: space-between;
}

.blog-content-wrapper span.quote-icon {
	background: #fff;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	text-align: center;
	align-items: center;
	border: 1px solid #C4C4C4;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.blog-content-wrapper span.quote-icon i {
	font-size: 40px;
}

.blog-content-wrapper {
	padding-right: 1.8rem;
}

.blog-content-wrapper .blog-ul span {
	font-size: 18px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
	margin-bottom: 30px;
	display: block;
}

.blog-content-wrapper .blog-ul ul {
	/* padding: 0; */
	padding-left: 20px;
	list-style: none;
}

.blog-content-wrapper .blog-ul ul li:before {
	content: "\2022";
	width: 1rem;
	font-weight: bold;
	color: var(--secondary-color);
	display: inline-block;
	margin-left: -1rem;
	padding-right: 20px;
}

.blog-content-wrapper .blog-ul ul li {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
}

.blog-content-wrapper .blog-share {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #ccc;
	padding-bottom: 25px;
	padding-top: 30px;
}

.blog-content-wrapper .blog-share ul {
	display: flex;
	list-style: none;
	/* margin: 25px 0 20px 0; */
	padding: 0;
	margin: 0;
	align-items: center;
}

.blog-content-wrapper .blog-share ul.blog-cat li {
	border-radius: 50px;
	border: 1px solid #C4C4C4;
	padding: 7px 27px;
	margin-right: 15px;
	transition: var(--default-transition);
}

.blog-content-wrapper .blog-share ul.blog-cat li a {
	color: var(--primary-color);
	font-weight: 500;
}

.blog-content-wrapper .blog-share ul.social-share i {font-size: 21px;/* padding: 0 12px; */}

/* .blog-content-wrapper .blog-share ul.social-share li:nth-child(2) i {
color: #4F6C9F;
} */

/* .blog-content-wrapper .blog-share ul.social-share li:nth-child(3) i {
color: #F1694E;
} */

.blog-content-wrapper .blog-share ul.social-share li:nth-child(4) i {
	color: #4DB4E7;
}

.blog-content-wrapper .blog-share ul.social-share li {
	font-weight: 500;
	padding: 0 12px;
}

.blog-content-wrapper .blog-share ul.social-share li:first-child {
	font-size: 18px;
}

.blog-comment {
	margin-top: 60px;
	padding: 30px 30px 0;
	/* box-shadow: rgb(99 99 99 / 20%) -1px 0px 6px 0px; */
	border-radius: 10px;
	border: 1px solid #C4C4C4;
}
.blog-comment span.title {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
	margin-top: 32px;
}
.blog-comment {
	display: flex;
	flex-wrap: wrap;
}

.blog-comment > * {
	flex: 0 0 100%;
	max-width: 100%;
	order: 2;
}

.blog-comment div#respond {
	order: 1;
}

.blog-comment .title {
	order: 2;
}

.blog-comment p {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 30px;
}

.blog-comment ul.blog-comment-items {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
	margin-top: 20px;
}

li.blog-commnet-item {
	border: 1px solid #C4C4C4;
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 40px;
}

.bottom-comment {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.bottom-comment .comment-user-id {
	display: flex;
	align-items: center;
}

.bottom-comment .comment-user-id .comment-user-details span {
	display: block;
}

.bottom-comment .comment-user-id .img-holder {
	height: 60px;
	width: 60px;
	overflow: hidden;
	border-radius: 50px;
	margin-right: 15px;
}

.bottom-comment .comment-user-id .img-holder img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.bottom-comment .comment-user-id span.name {
	font-size: 18px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
}

.bottom-comment .comment-user-id span.company {
	font-size: 16px;
	color: #C4C4C4;
	margin-top: 3px;
}

.comment-reply a {
	border: 1px solid #C4C4C4;
	border-radius: 50px;
	padding: 7px 32px;
	color: var(--primary-color);
	text-transform: capitalize;
	font-weight: 500;
}

.comment-reply {
	display: flex;
	align-items: center;
}

.comment-reply a i {
	margin-left: 7px;
}

.blog-comment ul.blog-comment-items li:nth-child(even) {
	max-width: 650px;
	float: right;
	/* width:50%; */
	clear: right;
}

.user-comment span {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
	display: block;
}

.blog-comment .user-comment input {
	width: 100%;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	padding: 12px;
	color: #C4C4C4;
}

.blog-comment .user-comment .form-group {
	margin-bottom: 20px;
	/* width: 100%; */
	/* border: 1px solid #C4C4C4; */
	/* border-radius: 4px; */
	/* padding: 12px; */
}

.blog-comment .user-comment textarea {
	width: 100%;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	padding: 12px;
	height: 100px;
}

.blog-comment .user-comment  input[type="submit"] {
	width: 24%;
	background: var(--secondary-color);
	color: #fff;
	font-size: 18px;
	padding: 10px;
}

.blog-comment .user-comment form {
	margin-top: 40px;
}

.blog-comment .user-comment input::placeholder {
	color: #C4C4C4;
}

.blog-comment .user-comment textarea::placeholder {
	color: #C4C4C4;
}

.blog-comment .user-comment {
	margin-top: 60px;
	display: inline-block;
}

ul.banner-icon {
	padding: 0;
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	list-style: none;
	/* padding-top: 20px; */
	margin-top: 50px;
}

ul.banner-icon li {
	font-size: 14px;
	color: #ffffff;
	padding: 0 40px;
}

ul.banner-icon li i {
	margin-right: 7px;
}


.recent-post span.recent-title {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	display: block;
	margin-bottom: 20px;
	font-weight: 600;
}

section.blog-single-content .recent-post ul.recent-post-itmes {
	list-style: none;
	padding: 0;
	/* background: #FCFCFC 0% 0% no-repeat padding-box; */
	/* border: 1px solid #C4C4C4; */
	/* border-radius: 10px; */
	/* padding: 40px; */
}

section.blog-single-content .recent-post ul.recent-post-itmes li.recent-post-item a {
	display: flex;
}

section.blog-single-content .recent-post ul.recent-post-itmes li.recent-post-item + li.recent-post-item {
	margin-top: 22px;
}

section.blog-single-content .recent-post {
	background: #FCFCFC 0% 0% no-repeat padding-box;
	border: 1px solid #C4C4C4;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 60px;
}

section.blog-single-content .recent-post .img-holder {
	height: 100px;
	max-width: 100px;
	overflow: hidden;
	margin-right: 12px;
	border-radius: 10px;
	display: inline-table;
}

section.blog-single-content .recent-post .img-holder img {
	width: 100%;
	height: 100%;
	/* max-width: 100%; */
	object-fit: cover;
}

.recent-post-details {
	display: flex;
	flex-direction: column;
	margin: auto 0;
}

.recent-post-details span.title {
	font-size: 15px;
	color: var(--primary-color);
	letter-spacing: 0.18px;
	display: block;
	margin-bottom: 9px;
	font-weight: 600;
}

.recent-post-details span.date {
	font-size: 12px;
	color: #908f8f;
	letter-spacing: 0.14px;
}

section.blog-single-content .tour-type span.title {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	display: block;
	margin-bottom: 20px;
	font-weight: 600;
}

section.blog-single-content .tour-type {
	background: #FCFCFC 0% 0% no-repeat padding-box;
	border: 1px solid #C4C4C4;
	border-radius: 10px;
	padding: 30px;
}

section.blog-single-content .tour-type ul.tour-type-itmes {
	list-style: none;
	padding-left: 25px;
	margin: 0;
}

section.blog-single-content .tour-type ul li:before {
	content: '';
	position: absolute;
	border-right: 2px solid black;
	border-bottom: 2px solid black;
	width: 8px;
	height: 8px;
	top: calc(50% - 5px);
	left: -23px;
	transform: translateY(-50%) rotate(-45deg);
}

section.blog-single-content .tour-type ul li {
	position: relative;
}

section.blog-single-content .tour-type ul li a {
	color: var(--primary-color);
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 10px;
}
section.blog-single-content .tour-type ul li a:hover{
	color:var(--secondary-color);
}

.blog-comment ul.blog-comment-items li:nth-child(odd) {
	clear: left;
	float: left;
}

.blog-comment .user-comment .comment-respond h3 {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
	margin-bottom: 30px;
}

.blog-comment .user-comment .comment-respond h3 form#commentform p {
	font-family: var(--primray-fonts);
}

.blog-comment .user-comment .comment-respond p.comment-notes span {
	font-size: 18px !important;
	font-family: var(--primary-fonts)!important;
}

.blog-comment .user-comment .comment-respond form {
	margin-top: 40px;
}

.blog-comment .user-comment .comment-respond form {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.blog-comment .user-comment .comment-respond form p.comment-form-author {
	flex: 0 0 50%;
	width: 50%;
	/* margin-bottom: 20px !important; */
}

.blog-comment .user-comment .comment-respond form p.comment-form-email {
	flex: 0 0 50%;
	width: 50%;
}

.blog-comment .user-comment .comment-respond form p.comment-notes {
	flex: 0 0 100%;
	width: 100%;
}

.blog-comment .user-comment .comment-respond form p.comment-form-comment {
	flex: 0 0 100%;
	width: 100%;
}

.blog-comment .user-comment .comment-respond form p {
	margin-bottom: 20px;
}

.blog-comment .user-comment .comment-respond form p.form-submit {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 50px;
}

.blog-comment .user-comment .comment-respond form> p, .blog-comment .user-comment .comment-respond form> div {
	padding: 0 12px;
	position: relative;
}

.blog-comment .user-comment .comment-respond form p label {
	position: absolute;
	display: flex;
	align-items: center;
	color: #C4C4C4;
	font-size: 16px;
	top: 0px;
	left: 23px;
	font-weight: 400;
	top: 1px;
	min-height: 36px;
}

.blog-comment .user-comment .comment-respond form p.logged-in-as span {
	font-size: 18px;
	font-family: var(--primary-fonts);
}

.blog-comment .user-comment .comment-respond form p.logged-in-as {
	font-size: 18px;
	margin: 0;
}

.blog-comment .user-comment .comment-respond form p.logged-in-as a {
	color: var(--secondary-color);
}

.blog-content-wrapper .blog-quote i {
	background: #ffffff;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	font-size: 42px;
	border: 1px solid #C4C4C4;
}

.blog-content-wrapper .blog-share ul.social-share li i.fa-brands.fa-twitter {
	color: #4DB4E7;
}

.blog-content-wrapper .blog-share ul.social-share li i.fa-brands.fa-facebook-f {
	color: #4F6C9F;
}

.blog-comment h3.comment-reply-title {
	font-family: var(--secondary-fonts);
	font-weight: 600;
	margin: 40px 0 12px 0;
	font-size: 24px;
	margin: 8px 0;
}

p.logged-in-as a {
	font-size: 16px;
	color: var(--primary-color);
}

body.logged-in p.comment-form-comment textarea {
	width: 100%;
	border-color: #C4C4C4;
	border-radius: 4px;
	/* position: relative; */
	padding: 30px;
}

body.logged-in p.comment-form-comment label {
	position: absolute;
	text-transform: capitalize;
	color: #C4C4C4;
	font-size: 16px;
	top: 26px;
	left: 32px;
	font-weight: 400;
}

body.logged-in p.comment-form-comment {position: relative;}

p.logged-in-as {margin-bottom: 17px;}

section.blog-single-content p.form-submit input {
	background: var(--secondary-color);
	border-radius: 4px;
	border: 0;
	color: #fff;
	padding: 12px 29px;
	font-size: 16px;
}

section.blog-single-content p.form-submit {
	margin-bottom: 0;
}


.blog-comment h3 {
	font-size: 24px;
	margin: 23px 0;
}

ol.commentlist {
	padding-left: 0;
	list-style: none;
	margin-top: 17px;
}

ol.commentlist li {
	padding-bottom: 28px;
	padding-top: 28px;
}
ol.commentlist li{
	border-top:1px solid #ddd;
}
.blog-comment p.content {
	margin-bottom: 0;
	padding-top: 15px;
}
.comment-body {
	/* padding: 30px; */
	/* border: 1px solid #ccc; */
	border-radius: 10px;
	display: flex;
	/* flex-direction: column; */
	position: relative;
	flex-wrap: wrap;
	padding-left: 43px;
}

.comment-author.vcard {
	font-size: 18px;
	font-family: var(--secondary-fonts);
	text-transform: capitalize;
	color: var(--primray-color) !important;
	font-style: normal !important;
	/* order: 2; */
	flex: 0 0 100%;
	width: 100%;
	/* white-space: nowrap; */
}

.comment-author.vcard cite.fn a {
	color: var(--primary-color);
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	font-family: var(--primary-fonts);
}

.comment-author.vcard span.says {
	display: none;
}

.comment-author.vcard img {
	width: var(--size);
	height: var(--size);
	--size: 34px;
	border-radius: 50px;
	margin-right: 6px;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 4px;
}

.comment-meta.commentmetadata {
	/* display: none; */
	margin-top: -7px;
}

.reply {
	/* margin-right: auto; */
	text-align: right;
	flex: 0 0 50%;
	width: 50%;
	order: 3;
	margin-left: auto;
	white-space: nowrap;
	/* float: right; */
	align-items: center;
	margin: auto 0;
}

.comment-body p {
	font-size: 16px;
	/* line-height: 26px; */
	flex: 0 0 100%;
	width: 100%;
	color: #000000;
}

/* .comment-body> div {
display: inline-block;
vertical-align: middle;
} */

.reply a {
	border: 1px solid #C4C4C4;
	border-radius: 50px;
	padding: 7px 45px 7px 35px;
	color: var(--primary-color);
	position: relative;
}

.reply a:before {
	content: "\f3e5";
	font-family: 'FontAwesome';
	position: absolute;
	right: 23px;
	font-size: 14px;
	top: 10px;
}

form#commentform {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

form#commentform p.comment-form-author {
	flex: 0 0 50%;
	width: 50%;
	position: relative;
	margin-bottom: 15px;
}

form#commentform p.comment-form-email {
	flex: 0 0 50%;
	width: 50%;
	position: relative;
	margin-bottom: 15px;
}

form#commentform p.comment-form-comment {
	flex: 0 0 100%;
	width: 100%;
	position: relative;
	margin-bottom: 15px;
}

p.form-submit form#commentform {
	flex: 0 0 100%;
	width: 100%;
}

form#commentform p.comment-form-author input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #C4C4C4;
	/* position: relative; */
	padding: 12px;
}

form#commentform p.comment-form-email input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #C4C4C4;
	/* position: relative; */
	padding: 12px;
}

form#commentform p.comment-form-comment textarea {
	width: 100%;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	/* position: relative; */
	padding: 12px;
	height: 100px;
}

form#commentform label {
	position: absolute;
	color: #C4C4C4;
	font-weight: 400;
	top: 12px;
	left: 21px;
}

form#commentform> p {
	padding: 0 10px;
}

.blog-content-wrapper .blog-share ul.blog-cat li:hover {
	background-color: var(--secondary-color);
}

.blog-content-wrapper .blog-share ul.blog-cat li:hover a {
	color: #fff;
}

section.blog-single-content p.form-submit input:hover {
	background: var(--primary-color);
	transition: var(--default-transition);
}

.comment-respond form#commentform label {
	position: initial;
	color: #777;
	margin-bottom: 5px;
}

.blog-comment h3 {
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 6px;
}

/* single-post-end */

/* single-contact-us */


section.contact-form-wrapper .input-field-group {
	position: relative;
	display: block;
}
.input-field-group.submit-row{
	margin-bottom: 0;
}
.input-field-group.submit-row p{
	margin-bottom: 0;
}
section.contact-form-wrapper .input-field-group span.wpcf7-not-valid-tip {
	/* position: absolute; */
	color: #dc3232;
	font-size: 8px;
	font-weight: normal;
	/* display: block; */
	position: absolute;
	bottom: -12px;
	right: 10px;
	font-weight: 600;
}
section.contact-form-wrapper .wpcf7-response-output{
	text-align: center;
}
/* single-contact-us-end */

/* single-tour-page */

section.single-page-tour-details {
	padding: var(--default-padding);
}

section.single-page-tour-details .single-rating {
	display: flex;
	align-items: baseline;
}

section.single-page-tour-details .single-rating span.country {
	color: var(--secondary-color);
	margin-right: 30px;
	font-size: 18px;
}

section.single-page-tour-details .single-rating i {
	color: #FFD91C;
	font-size: 18px;
}

section.single-page-tour-details .single-rating .rating {
	font-weight: 500;
	font-size: 18px;
}

section.single-page-tour-details .single-rating> div {
	padding-right: 15px;
}

section.single-page-tour-details .single-rating .review {
	font-size: 14px;
	color: #686868;
}

.tour-single-title h2 {
	font-size: 30px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
	margin: 15px 0;
}

.single-tour-value {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 20px;
}

.single-tour-value strong {
	font-size: 32px;
	color: var(--secondary-color);
}

section.single-page-tour-details ul.tour-times {
	list-style: none;
	padding-left: 0;
	display: flex;
	border-bottom: 2px solid #C4C4C4;
	padding-bottom: 10px;
}
@media screen and (max-width:767px){
	section.single-page-tour-details ul.tour-times{
		flex-wrap: wrap;
		gap: 20px;
	}
	section.single-page-tour-details ul.tour-times li {
		flex: 1 1 calc(50% - 10px);
	}
	.category-list-item .itemwrap{
		padding: 15px;
	}
}

section.single-page-tour-details ul.tour-times i {
	color: var(--secondary-color);
	margin-right: 7px;
}

section.single-page-tour-details ul.tour-times li {
	color: #686868;
	padding-right: 30px;
	font-size: 14px;
}

section.single-page-tour-details .tour-detail {
	margin-top: 30px;
	border-bottom: 2px solid #C4C4C4;
	padding-bottom: 5px;
	margin-bottom:30px;
}

section.single-page-tour-details .tour-detail h3 {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	margin-bottom: 20px;
	font-weight: 600;
}

section.single-page-tour-details .tour-detail p {
	font-weight: 500;
	margin-bottom: 30px;
}

section.single-page-tour-details .tour-highlight span {
	font-size: 18px;
	font-family: var(--secondary-fonts);
	margin-bottom: 20px;
	display: block;
	font-weight: 600;
}

section.single-page-tour-details .tour-highlight ul {
	list-style: none;
	margin: 0;
	padding-left: 15px;
}

section.single-page-tour-details .tour-highlight ul li:before {
	content: "\2022";
	width: 1rem;
	font-weight: bold;
	color: var(--secondary-color);
	display: inline-block;
	margin-left: -1rem;
	padding-right: 20px;
}

section.single-page-tour-details .tour-highlight ul li {
	font-weight: 500;
	margin-bottom: 15px;
}

.single-tour-form form h3 {
	font-family: var(--secondary-fonts);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
}

.single-tour-form form p {
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 0px;
}

.single-tour-form form {
	background: #FCFCFC 0% 0% no-repeat padding-box;
	border: 1px solid #C4C4C4;
	border-radius: 10px;
	padding: 30px 30px 0 30px;

}
.package-price-box{
	margin-top:30px;
}
.package-price-box p{
	font-size:14px;
}
.single-tour-form form span.tour-date label {
	flex: 0 0 35%;
	width: 35%;
	margin-bottom: 15px;
}

.single-tour-form form span.tour-date input,.single-tour-form textarea {
	width: 100%;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	padding: 9px;
	font-size: 14px;
	color: #333;
}

.single-tour-form form .tour-form-title {
	font-size: 16px;
	font-weight: 500;
}

.single-tour-form form .tour-form-additional ul {
	list-style: none;
	padding-left: 0;
	border-bottom: 2px solid #C4C4C4;
	padding-bottom: 30px;
	margin-bottom: 20px;
}

.single-tour-form form .tour-form-additional ul li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	align-items: center;
}

.single-tour-form form .tour-form-additional ul li span {
	color: #C4C4C4;
	align-items: center;
	display: flex;
}

.single-tour-form form .tour-form-additional ul li input {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: 1px solid #C4C4C4;
	border-radius: 2px;
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

/* .single-tour-form form .tour-form-ticket span.tour-form-title {
margin-bottom: 15px;
display: block;
} */

.single-tour-form form .tour-form-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.single-tour-form form .tour-form-total span.form-total {
	text-transform: capitalize;
	font-size: 18px;
	font-weight: 500;
}

.single-tour-form form div span.form-total-price {
	font-size: 24px;
	color: var(--secondary-color);
	font-weight: 500;
}

.single-tour-form form .form-submitt-btn input {
	width: 100%;
	height: 50px;
	background: var(--secondary-color);
	border-color: transparent;
	border-radius: 4px;
	color: #fff;
	font-size: 18px;
}

section.single-page-tour-details .tour-plans span.day {
	background: var(--secondary-color);
	height: auto;
	padding: 13px 21px;
	border-radius: 0;
	color: #fff;
	width: 93px;
	flex: 0 0 93px;
	z-index: 2;
}
section.single-page-tour-details .tour-plans .accordion-button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 93px;
	z-index: 1;
	background-color: var(--secondary-color);
}
section.single-page-tour-details .tour-plans sapn.activities {
	font-weight: 500;
}

section.single-page-tour-details .tour-plans .accordion-body ul {
	list-style: none;
	padding-left: 0px;
}

section.single-page-tour-details .tour-plans .accordion-body ul li {
	position: relative;
	margin-bottom: 10px;
	padding: .25em 0 0 2em;
}

section.single-page-tour-details .tour-plans .accordion-body ul li:after {
	content: "";
	display: block;
	width: 0.4em;
	height: 0.8em;
	border: 0.5px solid orange;
	border-width: 0 0.15em .15em 0;
	position: absolute;
	left: 0.5em;
	top: 40%;
	margin-top: -.2em;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}


.accordion-button:not(.collapsed) {
	background: #FCFCFC 0% 0% no-repeat padding-box;
}

.accordion-button:not(.collapsed) sapn.activities {
	color: var(--primary-color);
}

button.accordion-button {
	background: #FCFCFC 0% 0% no-repeat padding-box;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	overflow: hidden;
}

.accordion-item {
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	border: 0;
}

.accordion-item {
	margin-bottom: 12px;
}

.accordion-body {
	border-right: 1px solid #C4C4C4;
	border-bottom: 1px solid #C4C4C4;
	border-left: 1px solid #C4C4C4;
	border-radius: 0 0 4px 4px;
	margin-top: -2px;
}

button.accordion-button {
	padding: 0px 20px 0px  0;
	display: flex;
	justify-content: inherit;
	position: relative;
}

section.single-page-tour-details .tour-plans h3 {
	font-size: 20px;
	font-family: var(--secondary-fonts);
	margin-bottom: 30px;
	font-weight: 600;
}

section.single-page-tour-details .tour-plans {
	margin-top: 30px;
	/*     margin-bottom: 50px; */
}

section.single-page-tour-details .tour-details-wrapper {
	padding-right: 20px;
}

.single-tour-map span {
	font-size: 24px;
	font-family: var(--secondary-fonts);
	font-weight: 600;
}

section.single-page-tour-details .single-tour-map iframe {
	height: 227px;
	width: 100%;
	margin-top: 25px;

}

section.single-page-tour-details .single-tour-map {
	margin-top: 60px;
}

.accordion-item span.activities {
	color: var(--primary-color);
	font-weight: 600;
	padding: 12px 15px 16px;
	font-size: 14px;
	line-height: 1.4;
}
.accordion-item .accordion-body {
	font-size: 15px;
}

button.accordion-button::after {
	content: "\f078";
	font-family: 'FontAwesome';
	position: absolute;
	background-image: none;
	color: #C4C4C4;
	right: 12px;
	top: 12px;
}

.accordion-button:not(.collapsed)::after {
	background-image: none;
}

span.tour-date {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

span.tour-date span {
	flex: 0 0 100%;
	width: 100%;
	margin-bottom: 15px;
}

.tour-form-ticket p {
	border-bottom: none !important;
	display: none;
}

section.single-page-tour-details .product-button-wrap {
	display: flex;
	flex-wrap: wrap;
}

section.single-page-tour-details .product-button-wrap label {
	flex: 0 0 40%;
	width: 40%;
	color: #C4C4C4;
	margin: auto 0;
	margin-bottom: 20px;
}

section.single-page-tour-details .product-button-wrap span {
	flex: 0 0 60%;
	width: 60%;
	/* margin-left: auto; */
	justify-content: center;
	text-align: center;
	margin-bottom: 20px;
}

section.single-page-tour-details .product-button-wrap span input {
	width: 30%;
	margin-left: auto;
	justify-content: right;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
	text-align: center;
	color: #C4C4C4;
	padding: 7px;
}

.tour-form-ticket {
	margin-bottom: 20px;
}

.tour-form-ticket span.tour-form-title {
	margin-bottom: 15px;
	display: block;
}

.tour-form-date {
	margin-bottom: 20px;
}

.tour-form-additional {
	/* display: flex; */
	/* flex-wrap: wrap; */
	margin-bottom: 20px;
}

.tour-form-additional span.wpcf7-list-item {
	flex: 0 0 100%;
	width: 100%;
	margin: 0;
}

.tour-form-additional span.wpcf7-list-item input[type="checkbox"] {
	border: 1px solid #C4C4C4 !important;
	border-radius: 2px;
	height: 20px;
	width: 20px;
	text-align: left;

}

.tour-form-additional span.wpcf7-list-item span.wpcf7-list-item-label {
	color: #686868;
	margin-bottom: 15px;
}

.tour-form-additional span.wpcf7-list-item label {
	width: 100%;
	flex: 0 0 100%;
	display: flex;
	justify-content: space-between;
}

.tour-form-additional span.tour-form-title {
	margin-bottom: 0 !important;
	display: block;
	padding-bottom: 0px;
}

.single-tour-form form span.tour-date input::placeholder {
	color: #C4C4C4;
}

.single-tour-form form .form-submitt-btn input:hover {
	background: var(--primary-color);
	color: #fff;
}

.single-tour-form form .tour-form-date  span.wpcf7-form-control-wrap {
	position: relative;
}

.single-tour-form form .tour-form-date span.wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
	position: absolute;
	color: #dc3232;
	font-size: 8px;
	font-weight: normal;
	bottom: 4px;
	right: 0;
	font-weight: 600;
	margin-bottom: 0;
	text-align: right;
	padding-right: 8px;
}

.single-tour-form form .wpcf7-response-output {
	font-size: 14px;
}

section.single-page-tour-details form#commentform label {
	position: initial;
	margin-bottom: 5px;
}

section.single-page-tour-details .comment-respond {
	padding-top: 60px;
}

section.single-page-tour-details .comment-respond h3#reply-title {
	font-family: var(--secondary-fonts);
	display: inline-block;
}

section.single-page-tour-details .comment-respond .acf-comment-fields.acf-fields.-clear> div {
	flex: 0 0 50%;
	width: 50%;
	padding: 0 10px;
}

section.single-page-tour-details .comment-respond .acf-comment-fields.acf-fields.-clear {
	flex: 0 0 100%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

section.single-page-tour-details .comment-respond .acf-comment-fields.acf-fields.-clear> div input {
	border-radius: 4px;
	border: 1px solid #C4C4C4;
	padding: 24px;
}

section.single-page-tour-details .comment-respond p.form-submit {
	flex: 0 0 100%;
	width: 100%;
}

section.single-page-tour-details .comment-respond p.form-submit input {
	background: var(--secondary-color);
	border-radius: 4px;
	border: 0;
	color: #fff;
	padding: 12px 29px;
	font-size: 18px;
}

.comment-body h3 {
	width: 100%;
	font-size: 24px;
	margin-bottom: 0;
	display: block;
}

.comment-body span {
	font-size: 12px;
	margin-bottom: 10px;
	color: #777777;
}

.comment-body p.stars span {
	font-size: 14px !important;
	margin-bottom: 0 !important;
	color: #000000;
}

.comment-body p.stars {
	margin-bottom: 6px;
}


.comment-form h3.customer-review-title {
	font-size: 28px;
	text-transform: capitalize;
	font-family: var(--secondary-fonts);
	margin-bottom: 8px;
}

.comment-form h3#comments {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 40px;
}

.acf-radio-list li label:before, .acf-radio-list li:before {
	content: "\f005";
	font-family: 'Font Awesome 5 Free';
	color: var(--secondary-color);
	background: none;
	position: absolute;
	font-weight: 100;
	font-size: 20px;
}

ul.acf-radio-list {
	display: flex;
	margin-top: 15px;
}

ul.acf-radio-list label {
	font-size: 0;
}

ul.acf-radio-list li label input {
	opacity: 0;
}

.red {
	color: var(--secondary-color);
}

.red-selected {
	color: var(--secondary-color);
}

.acf-radio-list li.red-selected:before {
	font-weight: 700;
}

.acf-radio-list li:hover:before, .acf-radio-list li input:focus~li:before {
	font-weight: 600;
}

.acf-radio-list .red:before, .acf-radio-list li label.selected:before, .acf-radio-list.active .red:before {
	font-weight: 900;
}

ul.acf-radio-list li {
	margin-right: 20px !important;
}

section.single-page-tour-details .comment-respond p.form-submit input:hover {
	background: var(--primary-color);
	transition: var(--default-transition);
}

.travel-package-listing .itemwrap .days i { 
	padding-right: 0.5rem;
}

/* single-tour-page-end */


/* footer */

.site-footer .brand svg {
	display: block;
	max-width: 360px;
	margin: auto;
	margin-top: 15px;
}

.site-footer .copyright-block svg {
	width: 100%;
}

/* footer-end */

@media screen and (min-width:1699px){
	.navigation-wrap {
		height: 46vh;
	}
}

@media screen and (min-width: 1100px) {

}
@media screen and (min-width: 1025px) {
	.primary-menu,
	.overflow-menu{
		display: flex;
		align-items: center;
		position: relative;
		justify-content: center;
		font-family: var(--secondary-fonts);
		font-size: 16px;

	}

	li.menu-item-has-children {
		position: relative;
	}

	ul.sub-menu {
		position: absolute;
		background: #fff;
		min-width: 150px;
		opacity: 0;
		top: 90%;
		visibility: hidden;
		transition: all 0.3s linear;
		-webkit-box-shadow: rgb(100 100 111 / 20%) -2px -7px 29px 0px;
		box-shadow: rgb(100 100 111 / 20%) -2px -7px 29px 0px;
		border-radius: 6px;
	}

	ul.sub-menu li a {
		display: block;
		padding: 10px 12px;
		padding-right: 40px;
		font-size: 14px;
		text-transform: none;
		text-wrap: nowrap;
	}
	ul.sub-menu li{
		padding: 0;
	}

	ul.sub-menu > li + li {
		border-top: 1px solid #e3e3e3;
	}
	.sub-menu:before{
		content: "";
		position: absolute;
		top: -9px;
		left: 20px;
		z-index: 1;
		width: 0px;
		height: 0px;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid rgb(255, 255, 255);
	}
	li.menu-item-has-children:hover > ul.sub-menu{
		top: 100%;
		opacity: 1;
		visibility: visible;
	}
	ul.sub-menu ul.sub-menu{
		left: calc(100% + 15px);
		top: 50%;
	}
	ul.sub-menu ul.sub-menu:before{
		top: 15px;
		transform: rotate(-90deg);
		left: -14px;
	}
	ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu{
		top: 0;
	}
	ul.sub-menu li a::before {
		display: none;
	}
	li.menu-item-has-children > a:after {
		content: '\f107';
		position: absolute;
		right: -15px;
		top: 50%;
		transform: translatey(-50%);
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		font-size: 12px;
	}
	ul ul li.menu-item-has-children > a:after{
		right: 15px;
		transform: translatey(-50%) rotate( -90deg);
	}
	li.menu-item-has-children > a{
		padding: 15px 0;
	}
}
@media screen and (max-width: 1024px) {
	.travel-category-wrapper {
		padding-top: 100px;
	}
	.bar-menu span {
		--size: 46px;
		height: var(--size);
		display: inline-block;
		width: var(--size);
		border-radius: 4px;
		font-size: 34px;
		line-height: 48px;
		text-align: center;
		border: 2px solid var(--dark-color);
	}
	span.close-menu {
		position: absolute;
		top: 10px;
		background: var(--dark-color);
		z-index: 9;
		font-size: 23px;
		width: 40px;
		height: 40px;
		line-height:40px;
		text-align: center;
		color: #fff;
		left: -1px;
	}
	.menu-wrap {
		position: fixed;
		right: -350px;
		top: 0;
		bottom: 0;
		background: #fff;
		z-index: 9;
		-webkit-box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
		box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
		padding: 4.5rem 0 2rem;
		width: 300px;
		height: 100vh;
		-webkit-transition: all 0.4s linear;
		-o-transition: all 0.4s linear;
		transition: all 0.4s linear;
		display: block !important;
	}


	.primary-menu li a {
		padding: 12px 20px;
		color: var(--dark-color);
		display: block;
		background: #f8f7fc;
		border-bottom: 1px solid #d3d3d3;
	}
	.primary-menu li > a:hover{
		color:var(--primary-color);
	}
	.search-form-sec{
		padding: 40px 20px 20px;
	}
	.sub-menu{
		display:none;
	}
	.sub-menu li a{
		padding-left: 40px;
	}
	.sub-menu .sub-menu li a{
		padding-left: 60px;
	}
	.footer-logo img {
		max-width: 250px;
	}
	.dropdown-btn {
		position: absolute;
		right: 0;
		top: 0px;
		bottom: 0px;
		width: 38px;
		border-left: 1px solid #d3d3d3;
		text-align: center;
		display: inline-flex;
		align-items: center;
		background: #f8f7fc;
		justify-content: center;
		color: var(--dark-color);
		font-size: 15px;
	}
	.primary-menu li.current-menu-item > a{
		background:var(--primary-color);
		color:#fff;
	}
	body.nav-active .menu-wrap{
		right: 0;
	}
	body.nav-active .overlay-menu {
		opacity: 1;
		visibility: visible;
	}
	.menu-wrap .overflow-menu{
		height:100%;
		overflow-y:auto;
		position: relative;
	}
	.overlay-menu {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		/* background: #1d2124; */
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		transition: all 0.3s linear;
		z-index: 9;
		background: rgba(0, 0, 0, 0.5);
	}
	.primary-menu li a:hover:before{
		display: none;
	}
	.header-cta {
		display: none;
	}
	.hamburger-menu div {
		width: 24px;
		height: 2px;
		display: block;
		margin: 6px 0;
		background: black;
		border-radius: 13px;
		-webkit-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
	}
	.primary-menu {
		margin: 0;
		transform: translateX(100%);
		right: -260px;
		width: 280px;
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		position: fixed;
		transition: all 0.3s;
		background: #fff;
		height: 100%;
		bottom: 0;
		opacity: 0;
		visibility: hidden;
		padding-top: 50px;
		padding-left: 0;
		z-index: 1111;
	}
	body.logged-in.nav-active .primary-menu{
		opacity: 1;
		visibility: visible;
		padding-right: 0;
		right: 0;
		justify-content: flex-start;
		align-items: flex-start;
		justify-content: flex-start !important;
		display: block !important;
		overflow-y: auto;
		transform: translateX(0%);
		padding-top: 100px;
	}
	.nav-active .primary-menu{
		opacity: 1;
		visibility: visible;
		padding-right: 0;
		right: 0;
		justify-content: flex-start;
		align-items: flex-start;
		justify-content: flex-start !important;
		display: block !important;
		overflow-y: auto;
		transform: translateX(0%);
		padding-top: 50px;
	}
	.hamburger-menu.active #one {
		-webkit-transform: translateY(9px) rotate(-135deg);
		-ms-transform: translateY(9px) rotate(-135deg);
		transform: translateY(9px) rotate(-135deg);
		-webkit-transition: all 0.7s;
		-o-transition: all 0.7s;
		transition: all 0.7s;
	}

	.hamburger-menu.active #two {
		opacity: 0;
		-webkit-transition: all 0.7s;
		-o-transition: all 0.7s;
		transition: all 0.7s;
	}

	.hamburger-menu.active #three {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		-ms-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
		-webkit-transition: all 0.7s;
		-o-transition: all 0.7s;
		transition: all 0.7s;
	}
	body.logged-in.nav-active .hamburger-menu {
		z-index: 11111;
		position: fixed;
		right: 12px;
		top: 56px;
		background: #fff;
		cursor: pointer;
	}
	.nav-active .hamburger-menu {
		z-index: 11111;
		position: fixed;
		right: 12px;
		top: 10px;
		background: #fff;
		cursor: pointer;
	}
	.primary-menu li {
		padding: 0;
	}
	.hamburger-menu {
		margin-left: auto;
		width: 24px;
		cursor:pointer;
	}
	.popular-destination-listing.feature-slide .itemwrap .content {
		bottom: 50%;
		transform: translateY(50%);
	}
	.popular-destination-listing.feature-slide .itemwrap .c-dashed-line {
		opacity: 0;
		display: none;
	}
	.popular-destination-listing.feature-slide .itemwrap .img-holder span:before {
		opacity: 0.5;
	}
	.popular-destination-listing.feature-slide .itemwrap .tourism-spot {
		opacity: 1;
		bottom: 0;
	}
	.feature-slide .slick-arrow{
		--arrow: -15px;
		background-color: #fff !important;
		box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}
}
@media screen and (max-width: 991px) {
	.l-r-content-sty .content-wrap{
		margin: 0 auto 0;
	}

	.travel-category-wrapper{
		padding: var(--default-padding);
	}
	.popular-destination-wrapper {
		margin-top:40px;
	}
	.cta-btn {
		text-align: center;
		margin-top: 30px;
	}
	.box-wrapper {
		padding: 3.5rem;
		border-radius: var(--border-radius);
	}
	.secondary-menu li {
		--size: 10px;
	}
	.banner-search-form-wrap {
		position: relative;
		margin-top: -80px;
		width: 100%;
	}

	.banner-search-form input {
		font-size: 12px;
	}

	.banner-search-form li i {
		font-size: 12px;
	}

	.banner-search-form li button {
		font-size: 14px;
	}

	.banner-search-form li button i {
		right: 17px;
		bottom: 13px;
	}
	.why-choose-us-wrapper .col-lg-7.item {
		padding-left: 12px;
	}

	.why-choose-us-wrapper .col-lg-7.item .section-title {
		padding-top: 40px;
		text-align: center;
	}
	.why-choose-us-listing .itemwrap {
		text-align: center;
	}
	.footer-title svg {
		margin-left: 0;
	}
	.popular-destination-listing {
		--m: 3;
	}
	.copyright-block {
		font-size: 14px;
	}
	.blog-content-wrapper {
		padding-right: 0;
	}

	section.blog-single-content .recent-post ul.recent-post-itmes li.recent-post-item a {
		display: flex;
		flex-direction: column;
	}

	section.blog-single-content .recent-post .img-holder {
		max-width: 100%;
		margin-right: 0;
		height: 50px !important;
		margin-bottom: 10px;
	}
	.blog-content-wrapper .blog-quote p {
		font-size: 18px;
	}

	section.blog-single-content .tour-type ul li a {
		font-size: 14px;
	}
	section.single-page-tour-details .tour-details-wrapper {
		padding-right: 20px;
	}

	.single-tour-form form span.tour-date label {
		flex: 0 0 25%;
		width: 25%;
		font-size: 12px;
	}

	.single-tour-form span.tour-date span{
		flex: 0 0 100% !important;
		width: 100% !important;
	} 
	span.tour-date span {
		flex: 0 0 75%;
		width: 75%;
	}
	.banner-title span {
		font-size: 38px;
	}

	.banner-wrapper .imgholder {
		--size: 450px;
		min-height: var(--size);
		height: var(--size);
		position: static;
	}

	.banner-info p {
		font-size: 16px;
	}

	.travel-category-wrapper .category-list-item {
		margin-bottom: 25px;
	}

	section.travel-package-wrapper .travel-package-item {
		margin-bottom: 30px;
	}
	section.travel-package-wrapper .feature-slide .travel-package-item{
		margin-bottom: 0;
		padding: 0;
	}

	section.blogs-wrapper li.blogs-item {
		margin-bottom: 25px;
	}

	.hero-wrapper .section-title h2 {
		font-size: 26px;
	}

	.hero-wrapper .section-title span {
		font-size: 26px;
	}
	.banner-title h1 {
		font-size: 37px;
		max-width: 100%;
	}
	.banner-info p{
		max-width: 100%;
	}
	.about-us-content {
		padding-right: 0;
		margin-bottom: 50px;
	}
	form.searchandfilter ul {
		width: 100%;
	}
	.inner-banner-wrapper .banner-search-form-wrap {
		bottom: -150px;
	}
	.social-links {
		margin-top: 20px;
		margin-bottom: 0;
	}
	.guide-section .content-wrap{
		--gap: 38px;
		--left-content: 280px;
	}
	.partner-list > li{
		--size: calc(20% - 16.667px);
	}
	.banner-slider .slider-item{
		flex-direction: column-reverse;
	}
	.banner-wrapper .imgholder img{
		border-radius:0;
		width: 100%;
	}
	.banner-info{
		text-align:center;
		padding: 40px 0;
	}
	.banner-wrapper .banner-search-form-wrap{
		margin-top: unset;
	}
	.banner-wrapper{
		padding-bottom: 30px;
	}	
	.popular-destination-listing.feature-slide ~ .mt-5{
		margin-top: 5rem !important;
	}
}
@media screen and (max-width: 991px) {

	.popular-destination-listing {
		--m: 3;
	}

}
@media screen and (max-width: 767px) {
	.container {
		max-width: 640px;
	}
	.inner-banner-wrapper:before{
		background: rgb(0 0 0 / 54%);
	}
	.about-detail-card .itemwrap{
		padding:40px 30px; 
	}
	.popular-destination-listing {
		--m: 1;
	}
	.popular-destination-listing .itemwrap{
		height: 350px;
	}
	.pre-footer .hero-wrapper .section-title{
		text-align:center;
	}
	.content-full-wrapper .img-holder img {
		max-width: 380px;
	}
	.content-full-wrapper .img-holder{
		flex: 0 0 100%;
		max-width: 100%;
		justify-content: center;
	}
	.content-full-wrapper .img-holder:before{
		border-radius: var(--size) var(--size) 0 0;
		--size:70px
	}
	.content-full-wrapper .content {
		padding-bottom: 40px;
	}
	.content-full-wrapper{background-size: 80%;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.box-wrapper {
		padding: 2.5rem 2rem;
	}
	.box-sty-lists .item .title {
		font-size: 16px;
	}
	.subscription-form .form-wrap .form-group{
		width: 100%;
		position: relative;
	}
	.subscription-form .form-wrap .wpcf7-spinner{
		right: 0;
	}
	.social-links {
		margin-top: 15px;
	}
	.social-links .footer-menu a {
		font-size: 18px;
	}
	.banner-title h1 {
		font-size: 30px;
	}
	.travel-category-wrapper .category-list-item, .why-choose-us-listing .item {
		width:50%;
	}
	.testimonial-wrapper.default-padding{
		padding-bottom: 80px;
	}
	.guide-section .content-wrap{
		flex-direction: column;
		--left-content: 100%;
		--right-content: 100%;
	}
	.guide-section .content-wrap .left-content{
		position: static;
	}
	.affillated-image-list img{
		width: 100px;
	}
	.travel-category-wrapper .category-list-item{
		margin-bottom: 0px;
	}
	.partner-list > li {
		--size: calc(50% - 16.667px);
	}
	.banner-wrapper{
		padding-bottom: 30px;
	}
	.banner-wrapper .imgholder {
		--size: 350px;
	}
	.site-header nav.sticky{
		padding: 10px 0;
	}
	nav.sticky .brand img{
		width: 120px;
	}
}
@media screen and (max-width: 575px) {
	:root{
		--banner-sz: 36px;
	}
	section.blog-single-content .tour-type,
	section.blog-single-content .recent-post{
		padding:20px;
	}
	.instagram-wrapper img {
		height: 250px;
	}
	.contact-form{
		padding: 45px 25px;
	}
	section.archive-about-us ul.image-lists li img{
		height: 250px;
	}
	.archive-about-us ul.image-lists li img {
		width: 290px;
		height: 222px;
	}
	section.archive-about-us ul.image-lists li{
		height:auto;
	}
	.box-wrapper {
		padding: 3.5rem 1.5rem;
	}
	.box-sty-l-r-lists .item .title {
		font-size: 18px;
		font-weight: bold !important;
	}
	.box-sty-l-r-lists .item .icon-holder {
		flex: 0 0 70px;
		max-width: 70px;
	}
	.secondary-menu li a,
	.copy-right-sec {
		font-size: 14px;
	}
	.content-full-wrapper .content p {
		font-size: 18px;
		font-weight: 500;
	}
	.l-r-content-sty .img-holder:before{
		background-position: 11px center;
	}
	.logo-company-lists .item{
		margin-bottom: 0;
	}
	.tabs-content-style .nav-tabs button{
		font-size: 14px;
		padding: 8px 16px;
		margin-right: 10px;

	}
	.lr-border-ti {
		padding: 3px 20px;
	}
	.hero-banner {
		padding: 4.5rem 0 0rem;
	}
	.step-lists .item {
		margin: 0 auto 40px;
	}
	.step-lists .item .title {
		padding: 18px 0px 0;
		color: #000;
		font-size: 16px;
		margin-top: 0px;
		box-shadow:none;
		font-weight: 600;
	}
	.step-lists .item .num{
		font-size: 45px;
		font-weight: bold;
		--size: 100px;
		width: var(--size);
		height: var(--size);
		margin: 0 auto;
		background: var(--dark-color);
		color: #fff;
		line-height: var(--size);
		border-radius: 50%;
	}
	.hero-banner .img-holder img {
		max-width: 480px;
		margin-top: 0;
		position: relative;
		right: -19px;
	}
	.hero-banner .content-wrap {
		padding-bottom: 3rem;
	}
	.footer-menu-lists li,
	.contact-detail-lists li{
		margin-bottom: 10px;
	}

	.middle-footer .title{
		margin-bottom: 0;
	}
	.footer-menu-lists li{
		flex: 0 0 100%;
		max-width: 100%;
	}
	.banner-wrapper .imgholder {
		position: relative;
	}

	.banner-info p {
		margin-bottom: 0px;
	}

	.banner-search-form-wrap {
		margin-top: 10px;
		padding: 20px;
	}

	.banner-search-form li {
		flex: 0 0 50%;
		margin-bottom: 10px;
	}

	.banner-search-form li:nth-child(5) {
		flex: 0 0 100%;
		align-items: center;
		margin-top: 15px;
	}

	.banner-search-form li:nth-child(5) button {
		width: 50%;
	}
	section.travel-package-wrapper .travel-package-item {
		padding: 0 12px;
	}

	ul.travel-package-listing.row {
		margin: 0 -12px;
		padding: 0;
	}
	.copyright-block .row> div {
		align-items: center;
		text-align: center !important;
		justify-content: center !important;
	}

	.copyright-block .row .col-md-6 .text-right {
		text-align: center !important;
		justify-content: center;
	}
	.footer-title svg {
		max-width: 300px;
	}

	section.archive-about-us ul.image-lists li {
		padding: 0 12px;
	}

	section.archive-about-us ul.image-lists {
		margin: 0 -12px;
	}

	section.guide-section .row> div {
		padding: 0 12px;
	}

	section.guide-section .row.g-4 {
		margin: 0 -12px;
	}
	.inner-blogs-wrapper .blogs-item {
		padding: 0 12px;
	}

	.inner-blogs-wrapper .row {
		margin: 0 -12px;
	}
	section.blog-single-content .recent-post {
		margin-top: 60px;
	}

	section.blog-single-content .tour-type ul li a {
		font-size: 18px;
	}
	ul.banner-icon li span {
		font-size: 12px !important;
	}

	ul.banner-icon li {
		padding: 0 20px;
	}
	.reply a {
		padding: 5px 44px 5px 26px;
	}

	.comment-author.vcard img {
		width: 40px;
		height: 40px;
	}

	.comment-author.vcard {
		display: flex;
	}

	.comment-author.vcard cite.fn a {
		font-size: 12px;
	}

	.comment-body {
		padding: 20px;
	}
	section.single-page-tour-details .tour-details-wrapper {
		padding-right: 0;
	}

	.single-tour-form form span.tour-date label {flex: 0 0 30%;width: 30%;}

	span.tour-date span {
		flex: 0 0 70%;
		width: 70%;
	}
	.hero-wrapper {
		padding: 50px;
	}
	.banner-search-form select {
		font-size: 12px;
	}

	.banner-search-form li:nth-child(3) {
		flex: 0 0 100%;
	}


	.inner-banner-wrapper .banner-search-form-wrap {
		bottom: -165px;
	}
	li.destination-gallery-list:first-child {
		width: 100%;
		/* margin-bottom: 20px; */
		padding-bottom: 20px;
	}

	li.destination-gallery-list {
		width: 50%;
	}

	.destination-details {
		padding: 0;
	}
	.blog-content-wrapper .blog-quote {
		padding: 25px;
	}
	.brand a {
		font-size: 30px;
	}
	.category-list-item .itemwrap{
		box-shadow:none;
	}
}
@media screen and (max-width: 380px) {
	.logo-company-lists > .row > * {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.logo-company-lists .item {
		padding: 25px 20px;
	}
	.logo-company-lists .item{
		height: auto;
	}
	.logo-company-lists .item img {
		width: 200px;
	}
}