:root {
	--main-bg-color: #EEF1F9;
	--white-color: #fff;
	--primary-color: #000000;
	--secondary-color: #ef3b6c;
	--font-size: 16px;
	--border-color: #ededed;
	--grey-color: #737373;
	--heading-color: #000000;
	--text-color: #444;
	--footer-bg: #EFEFEF;
	--text-font: 'Inter';
	--heading-text-font: 'Inter';
	--heading-bold: 'Inter';
	--button-color: #000000;
	--secondary-button: #ef3b6c;
	--radius-rounded: 0;
	--rounded-radius-style: 0;
	--grey-bg-color: #F3F5FA;
	--light-border-color: #ece9e9;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*---------- CSS Styles ----------- */

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	font-size: 15px !important;
	font-family: var(--text-font);
}

a,
object,
ol,
p,
ul {
	font-size: 100%;
	vertical-align: baseline;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	text-decoration: none;
	font-size: 15px;
	line-height: 25px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
	font-size: 15px;
}

figure {
	margin: 0;
}

:focus {
	outline: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
	max-width: 100%;
}

legend {
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

button,
input {
	line-height: normal;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
	line-height: 1;
	cursor: pointer;
	-webkit-appearance: button;
	border: none;
}

input[type=checkbox],
input[type=radio] {
	padding: 0;
}

input[type=search] {
	-webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1,
h2 {
	font-family: var(--heading-text-font);
	font-weight: normal;
	color: var(--heading-color);
}

h3,
h4,
h5 {
	font-family: var(--heading-text-font);
	font-weight: normal;
	color: var(--heading-color);
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-40 {
	margin-top: 40px;
}

.pt-40 {
	padding-top: 40px !important;
}

.pb-40 {
	padding-bottom: 40px !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.ptb-10 {
	padding: 10px 0 !important;
}

.pb-30 {
	padding-bottom: 30px !important;
}

.pt-20 {
	padding-top: 20px !important;
}

.pb-20 {
	padding-bottom: 20px !important;
}

.border-radius {
	border-radius: var(--radius-rounded);
	width: 100%;
}

.btn.btn-primary {
	background-color: var(--secondary-color);
	border-radius: var(--rounded-radius-style);
	padding: 12px 30px;
	font-size: 15px;
	border-radius: 100px;
	font-weight: 500;
	color: #fff;
	font-family: 'Inter';
	border: none;
	transition: all 0.3s;
}

.btn.btn-primary:hover {
	background-color: var(--button-color);
	color: #fff;
}

.btn.btn-secondary {
	background-color: var(--button-color);
	border-radius: var(--rounded-radius-style);
	padding: 10px 25px;
	font-size: 18px;
	color: #fff;
	font-family: 'Inter';
	border: none;
	transition: all 0.3s;
}

.btn.btn-secondary:hover {
	background-color: var(--secondary-color);
	color: #000;
}

.container {
	max-width: 1150px;
}

/*==========================
 Header
==========================*/
header.main-header {
	padding: 10px 0;
	background: #fff;
	border-top: 3px solid var(--secondary-button);
	border-bottom: 1px solid #eee;
}

ul.navbar-nav {
	flex-direction: row;
	gap: 25px;
	align-items: center;
}

header button.navbar-toggler {
	display: none;
}

a.navbar-brand-logo img {
	width: 220px;
	/*height: 45px;*/
}

.link-menu li a.nav-link,
a.nav-link {
	font-family: var(--text-font);
	color: #000;
	padding: 0;
	display: flex;
	font-weight: 500;
	align-items: center;
	font-size: 16px !important;
	gap: 5px;
}

.link-menu li a.nav-link:hover {
	color: var(--secondary-color);
}

.link-menu li a.nav-link.user-link {
	padding: 6px 15px 5px;
	background: #dadada;
	border-radius: 0;
	color: #000;
	gap: 5px;
	margin-left: 10px;
	transition: all 0.3s;
	font-family: var(--heading-text-font);
}

.navbar-nav i.fa-solid.fa-phone {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: var(--secondary-button);
	text-align: center;
	border-radius: 100px;
	color: #fff;
	font-size: 15px;
}

li.phone-call {
	font-weight: 800;
	font-size: 18px;
	color: #000;
}

/*==========================
Top Banner
==========================*/
.top-head {
	position: relative;
	background-color: #000;
	padding: 100px 0;
	background-image: url(../images/top-banner.png);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.banner-slider .swiper-slide {
	position: relative;
}

.top-head:before {
	background: #dc3545;
	content: "";
	background: linear-gradient(0deg, #111 0%, rgba(0, 0, 0, 0) 100%);
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 9;
}

.banner-slider .container {
	position: relative;
	z-index: 99;
}

.banner-slider h2 {
	font-size: 70px;
	display: block;
	color: var(--white-color);
	font-weight: 700;
	line-height: 1;
}

.banner-slider small {
	color: var(--white-color);
	font-size: 22px;
	display: block;
	line-height: 1.1;
	margin: 20px 5px 30px;
}

.banner-slider .btn.btn-primary {
	background-color: #fff;
	color: #000;
}

.banner-form {
	background-color: rgba(0, 0, 0, 0.75);
	padding: 25px;
	border: 3px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
}

.banner-form-title {
	font-size: 35px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1;
	margin-bottom: 20px;
}

.form-control {
	border: none;
	border-radius: 10px;
	font-size: 13px;
	line-height: 1.4;
	min-height: 50px;
	padding: 12px;
	outline: none;
	box-shadow: none;
}

.form-group {
	position: relative;
	margin-bottom: 10px;
}

.submit-btn {
	width: 100%;
	font-weight: 600;
	padding: 18px 10px;
	background: #ef3b6c;
	background-size: 100% 200%;
	background-position: 100% 0;
	transition: background-position .8s;
	border: 0;
	color: #fff;
	border-radius: 12px;
	font-size: 18px;
}

/* Search Form */
.booking-search .form-group {
	position: relative;
	display: flex;
	align-items: center;
}

form.booking-search {
	margin-top: -20px;
	z-index: 9;
	position: relative;
}

.booking-search .row {
	background: #fff;
	border-radius: var(--radius-rounded);
	padding: 0 15px;
	margin: 0;
	z-index: 9;
	position: relative;
}

h2.section-title {
	font-size: 35px;
	color: #000;
	display: block;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: var(--heading-text-font);
}

/*==========================
 events Viewed
 ==========================*/
.events-viewed {
	background-color: #ef3b6c;
	padding: 15px 0;
	margin-top: 1px;
}

.view-img {
	display: flex;
	align-items: center;
	gap: 10px;
}

.view-img i.fa-solid.fa-circle-check,
.view-img .fa-solid.fa-star {
	color: #fff;
	font-size: 14px;
}

.view-img h6 {
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	font-family: 'Inter';
}

.star-icon {
	display: flex;
	margin-top: 5px;
	gap: 1px;
}

.view-img img {
	width: 40px;
}

/*==========================
Top Services
 ==========================*/
.swiper-container {
	position: relative;
	overflow: hidden;
}

.services-item img {
	width: 100%;
	height: 200px;
	margin-bottom: 10px;
	border-radius: var(--radius-rounded);
	object-fit: cover;
}

.services-item {
	text-align: center;
	text-decoration: none;
	overflow: hidden;
	border-radius: 20px;
	display: block;
	background: #fff;
	border: 2px solid #ddd;
	padding: 0 0 20px;
}

section.top-services {
	background: #fdf4f2;
}

.services-item h5 {
	font-size: 20px;
	font-weight: 700;
	color: var(--secondary-button);
	margin: 10px 0 0;
}

.services-item small {
	display: block;
	text-align: center;
	color: #737373;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	margin-top: 5px;
}

.services-item:hover * {
	color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px;
}

.top-availability .swiper-button-next,
.top-availability .swiper-button-prev {
	background: #fff;
	border-radius: 10px;
	height: 40px;
}

.top-availability .swiper-container {
	margin: 0 50px;
}

.event-palning-content {
	background-image: url(../images/bg01.jpg);
	background-position: center;
	background-size: cover;
	padding: 150px 0;
	background-attachment: fixed;
	text-align: center;
}

.event-palning-content .section-title {
	color: #fff;
	font-size: 50px;
	margin: 0 0 10px;
}

.event-palning-content span {
	color: #fff;
	font-size: 20px;
}

.event-palning-content strong {
	display: block;
	color: #fff;
	font-size: 40px;
	margin: 20px 0;
	line-height: 1;
	font-weight: 700;
}

.event-palning-content .btn.btn-primary {
	background-color: #fff;
	color: #000;
}

section.adventures-listing {
	background: #F3F3F3;
}

section.adventures-listing h2.section-title {
	margin-bottom: 10px;
}

.adventures-list {
	border-color: #EFEFEF;
	border-radius: 0;
	overflow: hidden;
	display: block;
	margin-top: 15px;
}

a.adventures-list {
	text-decoration: none;
	transition: all 0.3s;
}

a.adventures-list:hover {
	box-shadow: 0 5px 20px var(--footer-bg);
}

.adventures-list i.fa-regular.fa-heart {
	position: absolute;
	right: 10px;
	top: 10px;
	background: #fff;
	width: 30px;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 0;
	z-index: 9;
}

.adventures-list h5.card-title {
	font-size: 20px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	margin: 5px 0 25px;
	font-family: 'Inter';
	color: #222;
}

.adventures-list strong.trip-pricing {
	font-size: 18px;
	color: var(--primary-color);
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.adventures-list strong.trip-pricing small {
	font-size: 12px;
	font-weight: 500;
	background: #fce4e4;
	padding: 2px 12px;
	line-height: 20px;
	display: inline-block;
	border-radius: 0;
	text-transform: capitalize;
}

.trip-details-list span {
	font-size: 14px;
	color: #00a4da;
}

.adventures-list .star-icon i.fa-solid {
	font-size: 10px !important;
	color: var(--secondary-color);
	margin-right: 2px;
}

.adventures-list .trip-img-top {
	height: 230px;
	overflow: hidden;
}

.adventures-list .trip-img-top img {
	width: 100%;
	object-fit: cover;
	margin-left: 25px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	height: 250px;
	object-fit: cover;
}

.adventures-list:hover .trip-img-top img {
	margin-left: 0;
}

.adventures-listing .col-md-3.col-sm-6 {
	padding: 0 10px;
}

.adventures-listing a.link-btn {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: #000;
}

.adventures-listing a.link-btn i.fa-solid.fa-arrow-right {
	font-size: 13px;
}

/* availability-list-locations */
.availability-list-locations {
	padding: 80px 0;
}

.availability-list-locations .list-item .destination-item {
	margin-bottom: 20px;
	min-height: 400px;
	overflow: hidden;
}

.availability-list-locations .list-item .destination-item .image {
	background-position: 50% !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	min-height: 400px;
	overflow: hidden;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.availability-list-locations .list-item .destination-item .effect {
	background: #000;
	height: 100%;
	left: 0;
	opacity: .4;
	position: absolute;
	top: 0;
	transition: all .3s;
	width: 100%;
	z-index: 1;
}

.availability-list-locations .list-item .destination-item:hover .effect {
	opacity: 0;
}

.availability-list-locations .list-item .destination-item .image .content {
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.availability-list-locations .list-item .destination-item .image .content .title {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0;
}

.availability-list-locations .list-item .destination-item .image .content .desc {
	background: #ffffff !important;
	color: #000;
	display: inline-block;
	font-size: 12px !important;
	margin-top: 10px;
	text-transform: uppercase;
	padding: 2px 30px;
	FONT-VARIANT: JIS78;
	border-radius: 100px;
	font-weight: 500;
	letter-spacing: 1px;
}

.review-slider-items {
	padding: 30px 20px;
	background: #fff;
	height: 100%;
	border-radius: 20px;
}

.client-name {
	font-size: 18px;
	color: #111;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.review-stars {
	color: #ef3b6c;
	font-size: 30px;
	letter-spacing: -3px;
}

.review-content {
	position: relative;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	line-height: 20px;
	padding-top: 20px;
}

.review-content:before {
	content: '';
	position: absolute;
	right: 10px;
	top: -30px;
	margin: auto;
	width: 40px;
	height: 40px;
	background: url('../images/quote-icon.png');
	transform: rotate(180deg);
	background-size: cover;
	opacity: 0.2;
}

section.testimonials {
	padding: 80px 0;
	background-image: url(../images/contain-bg.jpg);
	background-repeat: repeat;
	background-attachment: fixed;
}

/* Managed Order Service */
.booking-services {
	background-color: #f2f2f2;
	position: relative;
}

.booking-services h4 {
	margin: 20px 0 10px;
	font-size: 16px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	font-family: 'Inter';
}

.managed-packages strong.trip-pricing {
	font-size: 22px;
	color: var(--secondary-button);
}

a.img-link {
	display: block;
	border-radius: var(--radius-rounded);
	overflow: hidden;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.manage-order-service img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.manage-order-service:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.booking-services img {
	height: 200px;
	width: 100%;
	object-fit: cover;
	border-radius: var(--radius-rounded);
}

.contact-form span {
	font-size: 20px;
	font-family: 'Inter';
}

.contact-form {
	border-radius: 0;
	margin-top: 20px;
}

.contact-form textarea,
.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form input[type="number"] {
	width: 100%;
	height: 45px;
	padding: 5px 15px;
	font-size: 15px;
	border-radius: 10px;
	border: 1px solid #ccc;
	margin: 0 0;
}

.form-group textarea {
	height: 100px;
}

.contact-form button {
	padding: 18px;
	width: 40%;
	font-size: 18px;
	background: var(--secondary-button);
	color: #fff;
	font-family: var(--heading-text-font);
	border: none;
	border-radius: 12px;
}

.booking-details a.call {
	margin: 15px 0 20px;
	font-size: 30px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	color: #000;
	display: flex;
	align-items: center;
	gap: 5px;
}

.info-content p {
	margin-bottom: 5px;
}

.booking-details h3.section-title {
	font-weight: 700;
	font-size: 25px;
}

/* Gallery */
section#Photos img.img-fluid.image {
	height: 300px;
	object-fit: cover;
	width: 100%;
}

#Photos a.lightbox {
	display: block;
	overflow: hidden;
	border-radius: 20px;
}

section#Photos .col-md-6.col-lg-6,
section#Photos .col-md-6.col-lg-3.item {
	padding: 5px;
}

.moments {
	background-image: url(../images/bg01.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	height: 300px;
	padding: 10px 50px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	border-radius: 20px;
}

.moments h3 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	margin: 0;
}

.moments span {
	font-size: 18px;
	color: #fff;
	line-height: 1;
}

.moments .btn.btn-primary {
	width: 180px;
	margin: 10px auto;
	background: #fff;
	color: #000;
}


/* Footer */
footer.footer-section {
	background: #000;
	padding: 50px 0 30px;
}

.footer-bttom {
    background: #222;
    margin-top: -5px;
    padding: 30px 0 5px;
}

.footer-bttom {
    background: #222;
    margin-top: -5px;
    padding: 30px 0 5px;
    color: #eee;
}
a.whatsapp {
    background: #4bb314;
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    position: fixed;
    color: #fff;
    z-index: 999;
    border-radius: 100px;
    right: 35px;
    bottom: 35px;
}
.top-footer-logo {
	border-bottom: 1px solid #D1D0D0;
}

ul.list-menu-link {
	display: flex;
	gap: 25px;
	margin: 0;
	justify-content: right;
}

ul.list-menu-link a {
	text-decoration: none;
	color: #fff;
}

ul.list-menu-link a:hover {
	color: #fff;
}

.footer-about p {
	color: #4F4C4C;
}

.connect-with-us {
	border-left: 1px solid #D1D0D0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.social-link {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-link a {
	color: #989898;
	font-size: 30px;
}

.social-link a:hover {
	color: var(--primary-color);
}

.footer-links h4 {
	font-size: 25px;
	color: #fff;
	font-family: 'Inter';
	padding-bottom: 10px;
	text-transform: capitalize;
}

.footer-links ul a {
	font-size: 15px;
	display: block;
	margin-top: 7px;
	color: #ddd;
	text-decoration: none;
}

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

.copyright {
	border-top: 1px solid #d1d0d023;
	padding-top: 20px;
	text-align: center;
}

.copyright p {
	margin: 0;
	font-size: 15px;
	color: #ddd;
}

.contact-details ul a,
.footer-links .social-media ul {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-links .social-media ul {
	justify-content: center;
}

.col-md-6.logo-section p,
.col-md-6.logo-section h4 {
	text-align: center;
}

.footer-links .social-media i.fa-brands {
	font-size: 18px;
	text-align: center;
	width: 35px;
	background: rgba(238, 238, 238, 0.2);
	height: 35px;
	line-height: 35px;
	border-radius: 100px;
}

.contact-details h4 {
	text-align: right;
}

.logo-section p {
	margin: 15px 0 0;
	color: #ddd;
}

.contact-details ul a {
	justify-content: end;
	font-size: 18px;
}

.sub-heading {
	background-image: url(../images/bg01.jpg);
	background-position: center;
	background-size: cover;
	padding: 100px 0;
	background-attachment: fixed;
	text-align: center;
}

.sub-heading h1 {
	color: #fff;
	text-align: center;
	font-size: 40px;
}

.sub-heading p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
}

.sub-heading svg {
	width: 8px;
}

.top-services-list .services-item {
	margin: 20px 0;
}

.top-services-list .services-item h5 {
	font-size: 25px;
}

.top-services-list .services-item small,
.top-services-list .services-item {
	text-align: left;
	font-size: 12px;
}

.top-services-list .services-item img {
	border-radius: 0;
	height: 250px;
}

.banner-form-error{
	font-size: 14px !important;
    color: #fff !important;
    line-height: 0 !important;
    margin: 14px 2px 17px !important;
}

.thank-you-container {
	min-height: 30vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 20px;
}
.thank-you-container h1 {
	font-size: 3rem;
	color: #28a745;
	margin-bottom: 20px;
}