/*!
Theme Name: SharGop
Theme URI: http://underscores.me/
Author: Prakash Tamang
Author URI: https://prakashtamang.com/
Description: Custom Theme for SharGop
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shargop
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

SharGop is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}
  
a {
text-decoration: none;
color: #F69D1F;
}
a:visited {
color: #F69D1F;
}
a:hover {
color: #F69D1F;
text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Raleway", sans-serif;
}
  
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #E4BC54;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}
  
.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #F69D1F;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: white;
	transition: all 0.5s;
	z-index: 997;
	padding: 10px 0;
}

#header.header-scrolled {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
}

#header.header-inner-pages {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}

#header .logo a {
	color: #556270;
}

#header .logo img {
	max-height: 65px;
}
  
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #556270;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #F69D1F;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	background: #F69D1F;
	padding: 8px 25px;
	margin-left: 30px;
	border-radius: 4px;
	font-weight: 400;
	color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #e1444d;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 15px;
	text-transform: none;
	font-weight: 400;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #F69D1F;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	  left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
	  left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #556270;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
	  display: block;
	}

	.navbar ul {
	  display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(63, 73, 83, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #F69D1F;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #F69D1F;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background-color: rgba(63, 73, 83, 0.8);
	overflow: hidden;
	position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-item {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*#hero .carousel-item::before {*/
/*	content: "";*/
/*	background-color: rgba(30, 35, 40, 0.6);*/
/*}*/

#hero .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 70px;
	left: 50px;
	right: 50px;
}

#hero .container {
	text-align: center;
}

#hero h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 48px;
	font-weight: 700;
}

#hero p {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 30px;
	line-height: 0;
	width: auto;
	height: auto;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.5);
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
	cursor: pointer;
	background: #E6BC73;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: 0.6;
	transition: 0.3s;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: #F69D1F;
}

#hero .btn-get-started {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 14px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	background: #F69D1F;
}

#hero .btn-get-started:hover {
	background: #df3740;
}

@media (max-width: 991px) {
	#hero {
	  height: 100vh;
	}

	#hero .carousel-container {
	  top: 8px;
	}
}

@media (max-width: 767px) {
	#hero h2 {
	  font-size: 28px;
	}
}

@media (min-width: 1024px) {
	#hero .carousel-control-prev,
	#hero .carousel-control-next {
	  width: 5%;
	}
}

@media (max-height: 500px) {
	#hero {
	  height: 120vh;
	}
}
  
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg,
.services .icon-box {
	background-color: #FAF8EB;
}

.section-header {
	text-align: center;
	padding-bottom: 40px;
}

.section-header .sub-title {
	font-size: 18px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.section-header .title {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative;
	font-family: "Poppins", sans-serif;
}

.section-header p {
	font-size: 16px;
}
  
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: calc(85px + 60px) 0 60px 0;
	min-height: 30vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.breadcrumbs:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	inset: 0;
}

.breadcrumbs h2 {
	font-size: 42px;
	font-weight: 500;
	color: #fff;
	font-family: "Raleway", sans-serif;
}

.breadcrumbs .breadcrumbs_text {
	color: #fff;
}

.breadcrumbs .breadcrumbs__link {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
}

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

.breadcrumbs .current {
	color: #F69D1F;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "/";
}

@media (max-width: 767px) {
	.breadcrumbs h2 {
		font-size: 32px;
	}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
	font-weight: 500;
	font-size: 32px;
}

.about .content h4 {
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 20px;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
	padding: 15px 0;
	text-align: center;
}

.clients img {
	max-width: 45%;
	transition: all 0.4s ease-in-out;
	display: inline-block;
	padding: 15px 0;
	filter: grayscale(100);
}

.clients img:hover {
	filter: none;
	transform: scale(1.15);
}

@media (max-width: 767px) {
	.clients img {
	  max-width: 40%;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
	padding: 60px 0;
}

.services .service-item {
	padding: 40px;
	background: #fff;
	height: 100%;
	border-radius: 10px;
}

.services .service-item .icon {
	width: 48px;
	height: 48px;
	position: relative;
	margin-bottom: 50px;
}

.services .service-item .icon img {
	width: 56px;
	height: auto;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
}

.services .service-item .icon i {
	font-size: 56px;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
}

.services .service-item .icon:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background: #ffdea4;
	border-radius: 50px;
	z-index: 1;
	top: 10px;
	right: -20px;
	transition: 0.3s;
}

.services .service-item h3 {
	font-weight: 700;
	margin: 0 0 20px 0;
	padding-bottom: 8px;
	font-size: 22px;
	position: relative;
	display: inline-block;
	border-bottom: 4px solid #ffdea4;
	transition: 0.3s;
}

.services .service-item p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.services .service-item .readmore {
	margin-top: 15px;
	display: inline-block;
	color: #F69D1F;
}

.services .service-item:hover .icon:before {
	background: #E6BC73;
}

.services .service-item:hover h3 {
	border-color: #E6BC73;
}

/*--------------------------------------------------------------
# Involvement
--------------------------------------------------------------*/
.involvement .organization {
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
	font-weight: bold;
}

.involvement .organization:hover img {
	transform: scale(1);
}

.involvement .organization img {
	transition: all 0.8s;
	transform: scale(0.8);
}


.involvement .organization .organization-name p {
	position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 10px 0;
    color: #F69D1F;
    text-align: center;
    transition: 0.3s ease-out;
    margin-bottom: 0;
}

.involvement .organization .organization-name:hover p {
	color: #ED7701;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners .partner-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin: 0;
	padding: 0;
}

.partners .partner-list .partner {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #e2eefd;
	padding: 20px 20px;
	transition: 0.3s;
	background: #fff;
	width: 100%;
	list-style: none;
	opacity: 0.7;
}
.partners .partner-list .partner:hover {
	opacity: 1;
}
@media (max-width: 767px) {
	.partners .partner-list {
	  grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width: 575px) {
	.partners .partner-list {
	  grid-template-columns: 1fr 1fr;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 10px;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px;
	margin: 30px 10px;
	box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
	position: relative;
	background: #fff;
	border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	margin-right: 15px;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #000;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #F69D1F;
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #E6BC73;
	opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #F69D1F;
}

@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
	  padding-left: 0;
	}

	.testimonials .testimonial-item {
	  padding: 30px;
	  margin: 15px;
	}

	.testimonials .testimonial-item .testimonial-img {
	  position: static;
	  left: auto;
	}
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.photo-gallery .gallery-item {
	position: relative;
	overflow: hidden;
}	 
.photo-gallery .gallery-item img {
	transition: all ease-in-out 0.3s;
} 
.photo-gallery .gallery-item:hover img {
	transform: scale(1.2);
}

.video-gallery .gallery-img {
	background-size: cover;
	background-position: center;
	padding: 90px 0;
	background-color: #efefef;
	position: relative;
}

.video-gallery .gallery-img i {
	font-size: 42px;
	display: inline-block;
	color: #F69D1F;
	background-color: rgba(255, 255, 255, 0.9);
	height: 50px;
	width: 50px;
	line-height: 50px;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
}

.video-gallery .gallery-img .play-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;		
}

.video-gallery .gallery-img .play-btn a {
	transition: ease-out 0.3s;
	transform: scale(0);
}

.video-gallery .gallery-item:hover .gallery-img .play-btn a {
	transform: scale(1);
}

/*--------------------------------------------------------------
# Events 
--------------------------------------------------------------*/
.events .event-list {
	margin-top: 60px;
}
.events .nav-tabs {
	border: 0;
}

.events .nav-link {
	border: 0;
	padding: 12px 15px 12px 0;
	transition: 0.3s;
	color: #556270;
	border-radius: 0;
	border-right: 2px solid white;
	font-weight: 600;
	font-size: 15px;
}

.events .nav-link:hover {
	color: #F69D1F;
	border-color: #FFDEA4;
}

.events .nav-link.active {
	color: #F69D1F;
	border-color: #F69D1F;
}

.events .tab-pane.active {
	-webkit-animation: fadeIn 0.5s ease-out;
	animation: fadeIn 0.5s ease-out;
}

@media (max-width: 992px) {
	.events .nav-link {
	border: 0;
	padding: 15px;
	}

	.events .nav-link.active {
	color: #fff;
	background: #F69D1F;
	}
}

/*--------------------------------------------------------------
# Service List
--------------------------------------------------------------*/
.service-list {
	margin-top: 60px; 
}
.service-list .service {
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.service-list .service:hover img {
	transform: scale(1.3);
}

.service-list .service img {
	transition: all 0.8s;
}

.service-list .service:hover p {
background-color: #ED7701;
}

.service-list .service p {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 165px;
	padding: 10px 0;
	background-color: #F69D1F;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	width: 60%;
	transition: 0.3s ease-out;
}


/*--------------------------------------------------------------
# Tour Package
--------------------------------------------------------------*/
.tour-package {
	padding-top: 60px;
}

.tour-package .destination {
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.tour-package .destination:hover img {
	transform: scale(1.3);
}

.tour-package .destination img {
	transition: all 0.8s;
}

.tour-package .destination:hover p {
	background-color: #ED7701;
}

.tour-package .destination p {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 165px;
	padding: 10px 0;
	background-color: #F69D1F;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	width: 60%;
	transition: 0.3s ease-out;
}

/*--------------------------------------------------------------
# Tour Post
--------------------------------------------------------------*/
.tour-list {
	padding-top: 60px;
}

.tour-post {
	padding-bottom: 10px;
	border-bottom: 2px solid #F69D1F;
}

.tour-post .tour-post-img {
	position: relative;
	overflow: hidden;
}

.tour-post:hover .tour-post-img img {
	transform: scale(1.3);
}

.tour-post img {
	transition: all 0.8s;
}

.tour-post .tour-content-wrapper a {
	color: #000;
}

.tour-post .tour-content-wrapper h4 {
	font-size: 18px;
	margin: 10px 0;
}

.tour-post .tour-content-wrapper ul {
	padding-left: 0;
	margin-bottom: 0;
} 

.tour-post .tour-content-wrapper ul li {
	list-style: none;
	display: inline-block;
	padding-right: 15px;
	font-size: 14px;
} 

/*--------------------------------------------------------------
# Tour Single
--------------------------------------------------------------*/
.tour-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.tour-header .tour-duration {
	width: 70px;
	border-radius: 4px;
	box-shadow: 0 4px 8px rgb(0 0 0 / 4%), 0 0 2px rgb(0 0 0 / 6%), 0 0 1px rgb(0 0 0 / 4%);
	display: flex;
	flex-direction: column;
}

.tour-header .tour-duration .duration {
	display: flex;
	font-size: 32px;
	justify-content: center;
	align-items: center;
	background: #F69D1F;
	color: #FFF;
}

.tour-header .tour-duration .days {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	font-size: 14px;
}

/*Tour Slider*/
#tourCarousel .carousel-control-prev, 
#tourCarousel .carousel-control-next {
	width: 5%;
}

/*Tour Tab*/
.tour-tab .nav-tabs {
	border-bottom: 2px solid #F69D1F;
}  

.tour-tab .nav-tabs .nav-link {
	border-color: #F69D1F;
	color: #F69D1F;
}

.tour-tab .nav-tabs .nav-link:hover,
.tour-tab .nav-tabs .nav-link:focus {
	color: #F69D1F;
}

.tour-tab .nav-tabs .nav-link.active {
	color: #fff;
	background: #F69D1F;
	border-color: #F69D1F;
}

.tour-tab .tab-pane .tab-inner {
	margin: 15px 0;
}

/*Tour Enquiry Form*/  
.enquiry-contact-form {
	box-shadow: 0 4px 8px rgb(0 0 0 / 4%), 0 0 1px rgb(0 0 0 / 4%);
	padding: 30px;
}

/*Tour Sidebar*/  
.feedback-wrap {
	box-shadow: 0 4px 8px rgb(0 0 0 / 4%), 0 0 1px rgb(0 0 0 / 4%);
	padding: 10px;
}

.feedback-wrap h4 {
	font-size: 18px;
	margin: 10px 0;
}

.feedback-wrap p {
	font-size: 14px;
}

.feedback-wrap i {
	color: #F69D1F;
}

.quick-enquiry-wrap {
	box-shadow: 0 4px 8px rgb(0 0 0 / 4%), 0 0 1px rgb(0 0 0 / 4%);
	padding: 10px;
}

.quick-enquiry-wrap h4 {
	font-size: 22px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/  
.contact .info {
	width: 100%;
	background: #fff;
}

.contact .info i {
	font-size: 20px;
	color: #F69D1F;
	float: left;
	width: 44px;
	height: 44px;
	background: #FAF8EB;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 5px;
	color: #556270;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 16px;
	color: #F69D1F;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: #F69D1F;
	color: #fff;
}


/*--------------------------------------------------------------
# Form Style
--------------------------------------------------------------*/  
.contact input,
.contact textarea,
.enquiry-contact-form input,
.enquiry-contact-form textarea,
.enquiry-contact-form select,
.quick-enquiry-wrap input,
.quick-enquiry-wrap textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact input:focus,
.contact textarea:focus,
.enquiry-contact-form input:focus,
.enquiry-contact-form textarea:focus,
.enquiry-contact-form select:focus,
.quick-enquiry-wrap input:focus,
.quick-enquiry-wrap textarea:focus {
	border-color: #F69D1F;
	box-shadow: none;
}

.contact [type=submit],
.enquiry-contact-form [type=submit],
.quick-enquiry-wrap [type=submit] {
	background: #F69D1F;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.contact [type=submit]:hover,
.enquiry-contact-form [type=submit]:hover,
.quick-enquiry-wrap [type=submit]:hover {
	background: #E4BC54;
}

.quick-enquiry-wrap [type=submit] {
	padding: 5px 20px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #C9A464;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
		background: #D5AB63;
		padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	color: #fff;
}

#footer .footer-top .footer-info a {
	color: #fff;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #F69D1F;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: white;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 2px 20px;
	background: #F69D1F;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
	background: #df3740;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

#footer .credits a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	font-weight: 600;
}

#footer .credits a:hover {
	color: white;
}