:root{
	--white: #fff;
	--black: #000;
	--primary-color: #0078fe;
	--secondary-color: #e98531;
	--yellow: #ffcc09;
	--allura-font: "Allura", cursive;
	--opensans-font: "Open Sans", sans-serif
}
/* Slick Slider */
.slick-slider{
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list{
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus{
	outline: none;
}
.slick-list.dragging{
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track{
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after{
	display: table;
	content: '';
}
.slick-track:after{
	clear: both;
}
.slick-loading .slick-track{
	visibility: hidden;
}
.slick-slide{
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide{
	float: right;
}
.slick-slide img{
	display: block;
}
.slick-slide.slick-loading img{
	display: none;
}
.slick-slide.dragging img{
	pointer-events: none;
}
.slick-initialized .slick-slide{
	display: block;
}
.slick-loading .slick-slide{
	visibility: hidden;
}
.slick-vertical .slick-slide{
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden{
	display: none;
}
.slick-loading .slick-list{
    background: #fff url('./images/ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: 2px solid var(--primary-color);
	border-radius: 100%;
    outline: none;
    background: var(--primary-color);
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before{
    opacity: .25;
}
.slick-prev:before,
.slick-next:before{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev{
    left: -41px;
}
[dir='rtl'] .slick-prev{
    right: -25px;
    left: auto;
}
.slick-prev:before{
    content: '←';
}
[dir='rtl'] .slick-prev:before{
    content: '→';
}
.slick-next{
    right: -42px;
}
[dir='rtl'] .slick-next{
    right: auto;
    left: -25px;
}
.slick-next:before{
    content: '→';
}
[dir='rtl'] .slick-next:before{
    content: '←';
}
/* Dots */
.slick-dotted.slick-slider{
    margin-bottom: 30px;
}
.slick-dots{
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
    opacity: .75;
    color: black;
}
body{
	font: 16px/1.2 var(--opensans-font) !important;
}
#wrapper{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 133px;
}
#header{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 10;
	background: var(--white);
	box-shadow: 0 1px 6px rgba(0,0,0, 0.15);
	transition: all ease 0.5s;
}
.header-t{
	padding: 5px 0;
	color: var(--black);
	background: transparent;
}
.header-t .mail,
.header-t .tel{
	display: inline-block;
	vertical-align: middle;
}
.header-t .mail a,
.header-t .tel a{
	text-decoration: none;
	color: var(--black);
	transition: all ease 0.5s;
}
.header-t .mail a:hover,
.header-t .tel a:hover{
	color: var(--primary-color);
}
.header-t .tel{
	margin-left: 20px;
}
.header-t p{
	margin: 0;
}
.header-t .social{
	margin: 0 15px 0 0;
	padding: 0;
	list-style: none;
}
.header-t .social li{
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}
.header-t .social a{
	text-decoration: none;
	color: var(--black);
	font-size: 20px;
	transition: all ease 0.5s;
}
.header-t .social a:hover{
	color: var(--primary-color);
}
.header-t .align-right{
	display: flex;
	align-items: center;
}
.header-t .box{
	margin-left: auto;
	display: flex;
}
.header-t .form-holder{
	position: relative;
	background: var(--black);
	border-radius: 35px;
	overflow: hidden;
	width: 55%;
	flex-grow: 1;
}
.header-t .form-control{
	font-size: 14px;
	line-height: 1.2;
	padding-right: 40px;
	height: 40px;
	border-radius: 35px;
	border: 1px solid var(--black);
}
.header-t .form-holder .btn-submit,
.header-t .form-holder .btn-opener{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	border: 0;
	background: transparent;
	padding: 0 15px;
	color: var(--black);
}
.header-t .form-holder .btn-opener{
	display: none;
	top: 11px;
}
.header-t .form-holder .btn-submit .fa-xmark{
	display: none;
}
.header-t .lang{
	margin-left: 10px;
}
.header-t .lang a{
	color: var(--black);
	text-decoration: none;
}
.header-b{
	background: var(--primary-color);
}
.header-t .logo{
	max-width: 150px;
	display: block;
}
.header-t .logo img{
	display: block;
	max-width: 100%;
	height: auto;
}
#header .header-b .navbar{
	padding-top: 0;
	padding-bottom: 0;
}
#header .navbar-nav .nav-item a{
	color: var(--white);
	text-decoration: none;
	transition: all ease 0.5s;
}
#header .navbar-nav .nav-item a:hover{
	opacity: 0.7;
}
#header .navbar-nav .nav-item .dropdown-item{
	font-size: 15px;
    line-height: 18px;
    color: var(--black);
    display: block;
    word-break: break-all;
    white-space: normal;
}
#header .navbar-nav .nav-item .dropdown-item:hover{
	background: var(--primary-color);
	opacity: 1;
	color: var(--white);
}
.header-b .navbar-nav .dropdown-menu li + li{
	border-top: 1px solid #bab9b9;
}
h1:not(.site-title):before,
h2:before{
	display: none !important;
}
p{
	font-size: 16px;
	line-height: 1.2;
	font-family: var(--opensans-font);
}
.video-holder{
	position: relative;
	max-height: 700px;
	overflow: hidden;
}
.video-holder video{
	width: 100%;
	height: auto;
}
.video-holder .holder{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	justify-content: center;
}
.video-holder .video-txt-box{
	max-width: 250px;
	font-size: 50px;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 auto 15px;
}
.video-holder .video-txt-box .slick-slide{
	color: var(--secondary-color);
	text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}
.video-holder .caption{
	padding-top: 8%;
}
.video-holder .caption h1{
	margin: 0 0 5px; 
	font-size: 70px;
	text-transform: capitalize;
	font-family: var(--allura-font);
	text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
	font-weight: 500 !important;
	letter-spacing: 0 !important;
}
.video-holder .caption .txt{
	padding: 20px;
	color: var(--white);
	display: inline-block;
	border-radius: 10px;
	text-align: center;
}
.video-holder .caption .txt p{
	text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}
.video-holder .caption .btn{
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	text-decoration: none;
	font-size: 15px;
	color: var(--white);
}
.video-holder .news-holder{
	position: absolute;
	right: 0;
	top: 20%;
	height:250px;
	width: 300px;
	color: var(--white);
	background: rgba(0,0,0, 0.6);
	padding: 0 20px 20px;
	z-index: 3;
	border-radius: 12px 0 0 12px;
}
.video-holder .news-holder .sub-title{
	padding: 15px 0;
	display: block;
	text-transform: uppercase;
	color: #e98531;
}
.news-holder { 
	background-color:#ccc;
	width:300px;
	height:250px;
	overflow:hidden;
	padding:10px;
	font-family:Helvetica;
}
.news-holder .mask {
	position: relative;
	left: 0;
	top: 10px;
	width:300px;
	height:240px;
	overflow: hidden;
}
.news-holder ul {
	list-style:none;
	margin:0;
	padding:0;
	position: relative;
}
.news-holder ul li {
	padding:5px 0;
}
.news-holder ul li a{
	color:var(--white);
	text-decoration:none;
	display: inline-block;
	margin-left: 5px;
	transition: all ease 0.5s;
}
.news-holder ul li a:hover{
	color: var(--secondary-color);
}
.ticker-wrapper {
	position: relative;
	overflow: hidden;
	height: 250px;
}
.btn-post{
	text-align: center;
}
.btn-secondary{
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}
.btn-post .btn-secondary{
	border-radius: 20px;
	background: var(--secondary-color) !important;
	border-color: var(--secondary-color) !important;
	font-size: 15px;
	text-decoration: none;
	color: var(--white);
}
.subscribe.modal .modal-content{
	text-align: center;
}
.subscribe.modal .modal-header{
	border: 0;
}
.subscribe.modal .icon-holder{
	margin-bottom: 5px;
}
.subscribe.modal .icon-holder i{
	font-size: 60px;
	line-height: 1.2;
	color: var(--primary-color);
}
.subscribe.modal .title{
	text-transform: uppercase;
	font-size: 26px;
	line-height: 1.2;
	display: block;
	margin: 0 0 10px;
}
.subscribe.modal .form-holder,
.subscribe.modal .wpcf7-form{
	padding: 25px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.subscribe.modal .wpcf7-form span{
	display: block;
	margin: auto;
}
.subscribe.modal .form-control,
.subscribe.modal .wpcf7-form-control{
	border-radius: 25px;
	height: 50px;
	margin-bottom: 10px;
}
.subscribe.modal p{
	margin: 0;
}
.subscribe.modal .wpcf7-response-output{
	margin: 0;
}
.subscribe.modal .wpcf7-not-valid-tip{
	margin-bottom: 15px !important;
}
.subscribe.modal .wpcf7-btn-submit,
.subscribe.modal .btn-submit{
	background: var(--primary-color);
	color: var(--white);
	margin-left: 15px;
	border-radius: 25px;
	min-width: 105px;
	transition: all ease 0.5s;
}
.subscribe.modal .wpcf7-btn-submit:hover,
.subscribe.modal .btn-submit:hover{
	opacity: 0.7;
}
h2{
	text-align: center;
	margin-bottom: 30px;
	color: var(--white);
	font-size: 40px;
	line-height: 1.2;
	text-transform: capitalize;
}
.post-holder h2,
.post-holder .txt-top{
	color: var(--white);
	text-align: center;
}
h2 span{
	display: inline-block;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
.why-us h2 span:before,
h2 span:before{
	position: absolute;
	top: 100%;
	left: 50%;
	height: 4px;
	width: 50%;
	transform: translateX(-50%);
	content: '';
	background: var(--white);
}
.post-holder,
.why-us,
.team-area,
.testimonial,
.info-holder{
	padding: 50px 0;
}
.why-us h2{
	color: var(--primary-color);
}
.why-us h2 span:before{
	background: var(--primary-color);
}
.testimonial.bg{
	background: url('../images/client-bg.jpg') no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
#footer .footer-t.bg{
	background: rgb(40,32,175);
	background: linear-gradient(90deg, rgba(40,32,175,1) 0%, rgba(0,212,255,1) 97%);
}
.post-holder.tour-bg{
	background: url('../images/tours-bg.jpg') no-repeat;
	background-size: cover;
}
.post-holder.climbing-bg{
	background: url('../images/bg-mountain-climbing.jpg') no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.post-holder.trekking-bg{
	background: url('../images/bg-trekking.jpg') no-repeat;
	background-size: cover;
}
.post-holder.holiday-bg{
	background: url('../images/bg-holiday.webp') no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.post-holder{
	position: relative;
	z-index: 1;
}
.post-holder:before{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	background: rgba(0,0,0, 0.6);
	content: '';
}
.post-holder .post{
	margin: 0;
	background: var(--white);
	position: relative;
	box-shadow: 0 0 14px 3px rgba(0,0,0,0.22);
	-webkit-box-shadow: 0 0 14px 3px rgba(0,0,0,0.22);
	-moz-box-shadow: 0 0 14px 3px rgba(0,0,0,0.22);
}
.post-holder .post-slider .post{
	margin: 12px;
}
.post-holder .post .img a{
	text-decoration: none;
	display: block;
}
.post-holder .post .img{
	overflow: hidden;
	max-height: 220px;
	max-width: 300px;
}
.post-holder .post .img a:hover img{
	transform: scale(1.2);
}
.post-holder .post .img img{
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: all ease 0.5s;
}
.post-holder .post .frame{
	padding: 10px;
}
.post-holder .post .price,
.post-holder .post .location{
	position: absolute;
	right: 0;
	top: 0;
	background: var(--primary-color);
	padding: 10px 15px;
	color: var(--white);
	font-size: 16px;
	z-index: 1;
}
.post-holder .post .price{
	z-index: 2;
}
.post-holder .post p{
	min-height: 96px;
}
.post-holder .post p a{
	text-decoration: none;
	margin-left: 5px;
	color: var(--secondary-color);
	font-size: 14px;
}
.post-holder .post p a:hover{
	text-decoration: underline;
}
.post-holder .post .location{
	left: 0;
	right: auto;
}
.post-holder .post .cat-holder{
	display: flex;
	margin-bottom: 5px;
}
.post-holder .post .cat-holder i{
	font-size: 20px;
	margin-top: 2px;
}
.post-holder .post .category{
	margin: 0 0 0 10px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.post-holder .post .category li{
	margin-left: 5px;
}
.post-holder .post .category a{
	text-decoration: none;
	display: block;
	background: var(--primary-color);
	color: var(--white);
	padding: 2px 11px 4px;
	transition: all ease 0.5s;
	border-radius: 5px;
	font-size: 14px;
	line-height: 1.2;
}
.post-holder .post .category a:hover{
	opacity: 0.7;
}
.post-holder .post h3{
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 18px;
	line-height: 1.2;
}
.post-holder .post h3 a{
	text-decoration: none;
	color: var(--black);
	transition: all ease 0.5s;
}
.post-holder .post h3 a:hover{
	color: var(--primary-color);
}
.post-holder .btn-holder{
	text-align: center;
}
.post-holder .btn-holder .btn{
	text-decoration: none;
	font-size: 16px;
	background: transparent;
	padding: 10px;
	color: var(--white);
	min-width: 100px;
	text-transform: uppercase;
	min-width: 150px;
	border-radius: 30px;
	transition: all ease 0.5s;
	border: 2px solid var(--white);
}
.post-holder.bg .btn-holder .btn{
	background: var(--white);
	color: var(--primary-color);
}
.post-holder .btn-holder{
	margin-top: 20px;
}
.post-holder .btn-holder .btn:hover{
	opacity: 0.7;
}
.post-details .banner-area{
	position: relative;
	max-height: 300px;
	overflow: hidden;
	margin-bottom: 20px;
}
.post-details .banner-area img{
	display: block;
	width: 100%;
	height: auto;
}
.post-details .banner-area .text-holder{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.post-details .banner-area h1{
	margin: 0;
	display: inline-block;
	padding: 12px 60px;
	color: var(--white);
	clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
	background: rgba(233,133,49, 0.7);
	font-size: 25px;
	line-height: 1.2;
}
.post-details .widgets{
	padding: 12px;
	position: sticky;
	z-index: 5;
	top: 0;
	border: 1px solid #0078fe;
	border-radius: 15px;
	box-shadow: 0px 0px 30px 0px rgba(115, 115, 115, 0.20);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(115, 115, 115, 0.20);
    -moz-box-shadow: 0px 0px 30px 0px rgba(115, 115, 115, 0.20);
}
.post-details .widgets .links{
	padding: 0;
	margin: 0;
	list-style: none;
}
.post-details article .entry-content{
	max-width: 100%;
	padding: 0;
	margin: 0;
}
.why-us{
	background: var(--white);
	text-align: center;
}
.why-us .box{
	padding: 0 15px;
	text-align: justify;
}
.why-us .box .circle{
	width: 180px;
	height: 180px;
	background: var(--primary-color);
	border-radius: 100%;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.why-us .box .ico{
	font-size: 50px;
}
.why-us .box h3{
	font-size: 18px;
	margin-bottom: 15px;
	text-align: center;
}
.why-us .box .num{
	width: 50px;
	height: 50px;
	border: 2px solid var(--white);
	border-radius: 100%;
	background: #76c3eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: var(--white);
	position: absolute;
	left: 0;
	top: 0;
}
.team-area h2,
.info-holder h2{
	color: var(--primary-color);
}
.team-area h2 span:before,
.info-holder h2 span:before{
	background: var(--primary-color);
}
.team-area .team{
	background: var(--white);
}
.team-area .team h3{
	font-size: 20px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 5px;
	color: var(--white);
}
.team-area .team h4{
	font-size: 16px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 5px;
}
.team-area .team .img{
	margin-bottom: -105px;
}
.team-area .team .img img{
	display: block;
	width: 200px;
	height: 200px;
	object-fit: cover;
	margin: auto;
	border-radius: 100%;
}
.team-area .team .frame{
	padding: 125px 15px 15px;
	box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.75);
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(40,32,175,1) 0%, rgba(0,212,255,1) 97%);
	color: var(--white);
}
.team-area .team .frame p{
	min-height: 135px;
}
.testimonial h2,
.testimonial h3{
	color: var(--white);
}
.testimonial h3{
	text-align: center;
	margin-bottom: 30px;
}
.testimonial h2 span:before{
	background: var(--white);
}
.testimonial .holder{
	background: var(--white);
	padding: 40px 20px;
	margin: 0 10px;
}
.testimonial .ico-holder{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.testimonial .ratings{
	margin: 0;
	padding: 0;
	list-style: none;
}
.testimonial .ratings li{
	display: inline-block;
	color: var(--yellow);
	font-size: 22px;
}
.testimonial .ico{
	margin-bottom: 0;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background: var(--primary-color);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}
.testimonial .blockquote{
	font-size: 18px;
	line-height: 24px;
	border-left: 0;
	padding-left: 0;
}
.testimonial .blockquote q{
	quotes: none;
	display: block;
	margin-bottom: 15px;
	min-height: 190px;
	font-size: 16px;
	line-height: 1.2;
	font-family: var(--opensans-font);
}
.testimonial .blockquote cite{
	display: flex;
	align-items: center;
	gap: 15px;
	font-style: normal;
}
.testimonial .blockquote .name{
	display: block;
	color: var(--primary-color);
}
.testimonial .blockquote .designation{
	font-size: 16px;
}
.info-holder .form-holder{
	border-radius: 15px;
	background: linear-gradient(90deg, rgba(40,32,175,1) 0%, rgba(0,212,255,1) 97%);
	padding: 40px 40px 10px;
}
.info-holder .form-holder p{
	margin: 0;
}
.info-holder .form-holder .form-control::placeholder {
	color: var(--white);
	opacity: 1;
}
.info-holder .form-holder .form-control::-ms-input-placeholder { 
	color: var(--white);
}
.info-holder .form-holder .form-control{
	height: 45px;
	box-shadow: none;
	border-radius: 30px;
	padding-left: 30px;
	line-height: 50px;
	border: 2px solid #eee;
	color: var(--white);
	background: transparent;
	font-family: var(--opensans-font);
	font-size: 16px;
	line-height: 1.2;
}
.info-holder .form-holder .wpcf7-form-control-wrap{
	margin-bottom: 15px;
	display: block;
}
.info-holder .form-holder .wpcf7-not-valid-tip{
	padding-top: 8px;
}
.info-holder .form-holder .form-control.text-area,
.info-holder .form-holder .wpcf7-textarea{
	height: 172px;
	resize: none;
}
.info-holder .form-holder .form-control.wpcf7-not-valid{
	border-color: #dc3232;
}
.info-holder .form-holder .wpcf7-response-output{
	border-color: #dc3232 !important;
	background: #dc3232;
	color: #fff;
	text-align: center;
}
.info-holder .form-holder .btn-submit{
	display: block;
	width: 200px;
	background: transparent;
	border: 2px solid #eee;
	color: var(--white);
	height: 50px;
	border-radius: 35px;
	margin: auto;
	font-family: var(--opensans-font);
	font-size: 16px;
	line-height: 1.2;
}
.info-holder .map-holder iframe{
	width: 100%;
	height: 555px;
}
.content-area .archives .page-header{
	margin: 0;
}
.content-area .archives .page-title{
	color: #000 !important;
    font-size: 30px;
	line-height: 1.2;
    text-align: center;
    display: block !important;
}
.content-area .archives .page-title .page-description{
	display: inline-block !important;
}
.content-area .archives article{
	border: 2px solid var(--primary-color);
	position: relative;
}
.content-area .archives article .entry-header{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 5;
}
.content-area .archives article .entry-header .entry-title a{
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	line-height: 1.2;
	display: block;
	padding: 10px 5px;
}
.content-area .archives article .post-thumbnail{
	margin: 0 0 10px;
}
.content-area .archives article .post-thumbnail .post-thumbnail-inner img{
	display: block;
	width: 100%;
	height: auto;
}
.content-area .archives article .entry-content{
	padding: 0 15px 20px;
	margin: 0;
	max-width: 100%;
	min-height: 80px;
}
.content-area .archives article .entry-content p{
	margin: 0;
	display: inline;
}
.content-area .archives article .entry-content .link-more{
	color: var(--primary-color);
}
.content-area .archives article .entry-footer{
	margin: 0;
	padding: 0 15px 15px;
	display: flex;
	justify-content: space-between;
}
.content-area .archives article .entry-footer > span{
	margin: 0;
}
.pagination{
	justify-content: center;
	margin-bottom: 20px;
}
.pagination .page-numbers{
	padding: 9px 14px;
	margin: 0 1px;
	border-radius: 4px;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current{
	background: var(--primary-color);
	color: #fff;
}
.post-details .about-text{
	padding-top: 20px;
}
.post-details .about-text p{
	line-height: 22px;
	text-align: justify;
}
.post-details .about-box{
	background: linear-gradient(90deg, rgba(40,32,175,1) 0%, rgba(0,212,255,1) 97%);
	padding: 5px 15px;
	border-radius: 15px;
	color: #fff;
	height: 100%;
	box-sizing: border-box;
}
.post-details .about-box p{
	line-height: 28px;
}
.page-title.tax-tour{
	background: #0078fe;
	margin-bottom: 15px;
}
.page-title.tax-tour .breadcrumb-menu{
	margin: 0;
	padding: 0 0 30px;
	list-style: none;
	display: flex;
	justify-content: center;
	color: #fff;
}
.page-title.tax-tour .breadcrumb-menu li + li:before{
	content: '»';
	padding: 0 10px;
}
.page-title.tax-tour .breadcrumb-menu a{
	color: #fff;
}
.page-title.tax-tour .breadcrumb-menu a:hover{
	text-decoration: underline;
}
.tax-tour-inner .entry{
	margin-bottom: 20px;
	position: relative;
	border: 2px solid #0078fe;
}
.tax-tour-inner .entry .post-thumbnail{
	margin: 0;
}
.tax-tour-inner .entry .post-thumbnail .post-thumbnail-inner img{
	height: 269px;
	object-fit: cover;
}
.tax-tour-inner .entry .item_title{
	margin: 0;
	position: absolute;
    left: 0;
    top: 35%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 5;
}
.tax-tour-inner .entry .item_title a{
	color: #fff;
	padding: 10px;
	font-size: 20px;
	line-height: 1.2;
}
.tax-tour-inner .entry .item_content{
	padding: 15px 20px;
}
.tax-tour-inner .entry .item_content p{
	margin: 0;
	min-height: 60px;
}
.tax-tour-inner .entry .item_content p a:hover{
	text-decoration: underline;
}
.tax-tour-inner .paginationWrp{
	margin-bottom: 20px;
}
.tax-tour-inner .paginationWrp .page-numbers{
	display: inline-block;
	padding: 10px;
	background: #0078fe;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
}
.tax-tour-inner .paginationWrp .page-numbers.prev,
.tax-tour-inner .paginationWrp .page-numbers.next{
	background: transparent;
	color: #000;
}
.tax-tour-inner .paginationWrp .page-numbers.prev:hover,
.tax-tour-inner .paginationWrp .page-numbers.next:hover{
	background: transparent;
	color: #e98531;
}
.tax-tour-inner .paginationWrp .page-numbers:hover,
.tax-tour-inner .paginationWrp .page-numbers.active{
	background: #e98531;
}
.modal.booking,
.modal.booking .form-control{
	font-family: var(--opensans-font);
}
.modal.booking .btn-close,
.modal.booking .btn-close:hover{
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
	width: 1px;
    height: 1px;
}
.modal.booking .modal-title{
	margin: 0;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    padding-right: 31px;
	color: var(--secondary-color);
}
.modal.booking .modal-title strong{
	font-weight: bold;
	color: var(--black);
}
.modal.booking .wpcf7 p{
	margin: 0;
}
.modal.booking .form-control{
	height: 45px;
    margin-bottom: 10px;
    border-radius: 26px;
    font-size: 16px;
	box-shadow: none;
	color: #595c5f;
}
.modal.booking .wpcf7-form-control.tour-show{
	opacity: 0;
	visibility: hidden;
	padding: 0;
	height: 0;
	width: 0;
	font-size: 0;
	line-height: 0;
}
.modal.booking .form-label{
	font-size: 14px;
	padding: 0 6px;
	margin-bottom: 5px;
	color: #595c5f;
}
.modal.booking .wpcf7-submit{
	border-radius: 20px;
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    font-size: 15px;
    text-decoration: none;
    color: var(--white);
	display: block;
	width: 100px;
	padding: 12px;
	margin: 0 auto;
}
.modal.booking textarea.form-control{
	resize: none;
	height: 160px;
}
.footer-t{
	padding: 50px 0;
	color: var(--white);
}
.footer-t h3{
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.2;
	font-family: var(--opensans-font);
}
.footer-t .news-letter{
	position: relative;
}
.footer-t .news-letter .form-control,
.footer-t .news-letter .wpcf7-form-control,
.footer-t .news-letter #email{
	border-radius: 35px;
	height: 50px;
	padding-left: 30px;
	padding-right: 120px;
	box-shadow: none;
	font-size: 16px;
	line-height: 1.2;
	font-family: var(--opensans-font);
	width: 100%;
}
.footer-t .news-letter .btn-sub,
.footer-t .news-letter .wpcf7-submit,
.footer-t .news-letter input[type="submit"]{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: transparent;
	border: 0;
	background: var(--secondary-color);
	color: var(--white);
	padding: 0 20px;
	border-radius: 35px;
	font-size: 16px;
	line-height: 1.2;
	font-family: var(--opensans-font);
}

.footer-t .social{
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-t .social a{
	text-decoration: none;
	color: var(--white);
	font-size: 25px;
	opacity: 0.7;
	transition: all ease 0.5s;
}
.footer-t .social a:hover{
	color: var(--secondary-color);
	opacity: 1;
}
.footer-t .nav{
	flex-direction: column;
	color: var(--white);
}
.footer-t .nav li{
	margin-bottom: 10px;
}
.footer-t .nav i{
	margin-right: 5px;
}
.footer-t .nav a{
	text-decoration: none;
	color: var(--white);
	transition: all ease 0.5s;
}
.footer-t .get-touch a{
	text-decoration: none;
	color: var(--white);
	transition: all ease 0.5s;
}
.footer-t .nav a:hover,
.footer-t .get-touch a:hover{
	color: var(--secondary-color);
}
.footer-b{
	padding: 20px 0;
	color: var(--black);
}
.footer-b p{
	margin: 0;
}
@media only screen and (min-width: 992px){
	.header-b .navbar-nav .nav-item:hover .dropdown-menu{
		opacity: 1;
		visibility: visible;
	}
	.header-b .navbar-nav .dropdown-menu{
		display: block;
		opacity: 0;
		visibility: hidden;
		width: 270px;
	}
	.header-b .navbar-nav{
		flex-grow: 1;
		justify-content: space-around;
	}
}
@media only screen and (max-width: 1399.98px){
	#header .navbar-nav .nav-link{
		padding-left: 4px;
		padding-right: 4px;
	}
}
@media only screen and (max-width: 1199.98px) {
    #header .navbar-nav .nav-link {
        padding-left: 2px;
        padding-right: 2px;
        font-size: 14px;
    }
	.header-t .social{
		text-align: center;
	}
	.video-holder .caption .txt{
		max-width: 70%;
	}
}
@media only screen and (max-width: 991.98px){
	.video-holder{
		padding-top: 165px;
	}
	.video-holder .caption .txt{
		text-align: left;
		max-width: 63%;
	}
	.video-holder .video-txt-box{
		margin: 0;
	}
	#header .header-b .navbar-toggler{
		border-color: #000;
		width: 50px;
        height: 45px;
        padding: 0;
		position: absolute;
		right: 0;
		top: -66px;
	}
	#header .header-b .navbar-toggler:focus,
	#header .header-b .navbar-toggler:hover{
		background-color: transparent;
	}
	.header-t .mail .txt, 
	.header-t .tel .txt{
		display: none;
	}
	.header-t .box{
		margin-left: inherit;
	}
	.header-t .tel{
		margin-right: 8px;
	}
	.header-b .navbar{
		padding-top: 0;
		padding-bottom: 0;
	}
}
@media only screen and (max-width: 767.98px){
	.header-t{
		position: relative;
		padding: 11px 0;
	}
	.header-t .govt-lisc{
		display: none;
	}
	.header-t .mail .txt,
	.header-t .tel .txt{
		display: none;
	}
	.header-t .tel {
        margin-left: 8px;
    }
	.header-t .social {
        text-align: center;
        position: absolute;
        top: 9px;
        left: 50%;
        transform: translateX(-50%);
		margin-left: -14px;
    }
	.header-t .align-right {
		position: absolute;
		right: 10px;
		top: 4px;
	}
	.header-t .form-holder{
		width: 40px;
		transition: all ease 0.5s;
	}
	.header-t .form-holder.active{
		width: 210px;
		background: var(--white);
	}
	.header-t .form-holder .btn-submit{
		padding: 0 12px;
		background: transparent;
		color: var(--white);
		display: none;
	}
	.header-t .form-holder.active .btn-opener,
	.header-t .form-holder.active .btn-submit{
		color: var(--black);
	}
	.header-t .form-holder .btn-opener .fa-xmark{
		display: none;
	}
	.header-t .form-holder.active .btn-opener .fa-xmark{
		display: block;
	}
	.header-t .form-holder .btn-opener{
		display: block;
		color: var(--white);
	}
	.header-t .form-holder.active .btn-opener .fa-magnifying-glass{
		display: none;
	}
	.header-t .form-holder,
	.header-t .form-control{
		background: transparent;
		border: 0;
	}
	.header-t .lang {
		margin-left: 6px;
	}
	.header-b .logo{
		max-width: 115px;
	}
	.video-holder {
        padding-top: 117px;
    }
	.video-holder .holder{
		position: static;
		background: var(--primary-color);
	}
	.video-holder .caption{
		padding: 0;
		text-align: center;
	}
	.video-holder .caption .txt{
		max-width: 100%;
		padding: 12px;
		text-align: center;
	}
	.video-holder .caption h1{
		font-size: 24px;
	}
	.video-holder .news-holder{
		position: static;
		max-width: 100%;
		width: 100%;
		padding: 20px;
		border-radius: 0;
	}
	.video-holder .video-txt-box{
		font-size: 28px;
		margin: auto;
		text-align: center;
	}
	.post-holder, .why-us,
	.team-area,
	.testimonial, .info-holder,
	.footer-t{
		padding: 30px 0;
	}
	h2{
		font-size: 20px;
		margin-bottom: 10px;
	}
	h2 span{
		padding-bottom: 12px;
	}
	h4{
		font-size: 16px;
	}
	.post-holder .post-slider .post{
		margin: 12px 38px;
	}
	.slick-prev{
		left: -13px;
	}
	.slick-next{
		right: -13px;
	}
	.why-us .box{
		border: 1px solid var(--primary-color);
		border-radius: 15px;
	}
	.why-us .box .circle{
		margin-top: 30px;
	}
	.testimonial .blockquote{
		font-size: 16px;
		line-height: 20px;
	}
	.info-holder .form-holder{
		padding: 15px;
		margin-bottom: 20px;
	}
	.footer-t .news-letter,
	.footer-t .nav{
		margin-bottom: 20px;
	}
	.testimonial .holder{
		margin: 0 38px;
	}
	.testimonial .ratings li{
		font-size: 17px;
	}
	.testimonial .holder{
		padding: 20px 15px;
	}
	.testimonial .blockquote cite{
		flex-direction: column;
		justify-content: center;
	}
	.testimonial .blockquote cite .box{
		text-align: center;
	}
	.header-t .box{
		display: none;
	}
}