/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

.root {
	--brown: #8A491F;
	--black: #1d1d1d;
	--green-button: #70B352;
	--actual-green: #085005;

	scroll-behavior: smooth;
}

html {
	scroll-behavior: smooth;
}

/* Style for language selector*/
.drops {
	width: 20px;
	border: none;
	background-color: transparent;
	outline: none;

	option {
		border-radius: 20px;
		padding: 10px;
	}
}

/*style for ami*/
.ami-receipt {
	color: #70B352;
	cursor: pointer;
}
.ami-modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
}

.ami-modal-content {
	margin: auto;
	display: block;
	width: 80%;
}

.ami-close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.ami-modal-content {
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.6s;
	animation-name: zoom;
	animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(0)
	}

	to {
		-webkit-transform: scale(1)
	}
}

@keyframes zoom {
	from {
		transform: scale(0)
	}

	to {
		transform: scale(1)
	}
}

.ami-close:hover,
.ami-close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 700px) {
	.ami-modal-content {
		width: 100%;
	}
}


.gallery-row {
	display: -ms-flexbox;
	/* IE10 */
	display: flex;
	-ms-flex-wrap: wrap;
	/* IE10 */
	flex-wrap: wrap;
	padding: 0 4px;
}

.gallery-column {
	-ms-flex: 25%;
	/* IE10 */
	flex: 25%;
	max-width: 25%;
	padding: 0 4px;
}

.gallery-column img {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
}

.gallery-column img:hover {

	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: 0.3s;
}



@media screen and (max-width: 800px) {
	.gallery-column {
		-ms-flex: 50%;
		flex: 50%;
		max-width: 50%;
	}
}


@media screen and (max-width: 600px) {
	.gallery-column {
		-ms-flex: 100%;
		flex: 100%;
		max-width: 100%;
	}
}

/*end style for ami*/

/*Tour experiences image display on hover effect*/
.tour a {
	color: inherit !important;
}

.tour a:hover {
	text-decoration: none;
	color: inherit !important;
}

/* DOntaing button*/
.donate {
	align-self: center;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 60%;
	border-radius: 50px;
	font-weight: 800;
	color: #ffffff;
	background-color: #8A491F;
}

.donate:hover {
	color: #ffffff;
}

/*top destinations styles in the home page*/

.slideshow img {
	vertical-align: middle;
	width: 100%;
}

/* Position the image container (needed to position the left and right arrows) */

.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: #000000;
}

.close {
	color: white;
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
}

/* Hide the images by default */
.sliders {
	display: none;
}

.sliders img {
	height: 450px;
	object-fit: contain;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
	cursor: pointer;
}

/* Next & previous buttons */
.previous-slide,
.next-slide {
	cursor: pointer;
	position: absolute;
	top: 40%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.next-slide {
	padding-left: 50;
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.previous-slide:hover,
.next-slide:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* Container for image text */
.caption-container {
	text-align: center;
	background-color: rgb(32, 32, 32);
	padding: 2px 16px;
	color: white;
}

.slide-row:after {
	content: "";
	display: table;
	clear: both;
}

/* Six columns side by side */
.slide-column {
	float: left;
	width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
	opacity: 0.6;
	height: 100px;
	object-fit: cover;
}

.slide-active,
.demo:hover {
	opacity: 1;
}


/* who are we styles*/
.img-experience {
	width: 100%;
	height: 200px;
}

.sariny-fano {
	border-radius: 150px;
	width: 80%;
}

.who-are-we img {
	width: 50%;
	margin: auto;
}

.fixed-navbar {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 25%;
	background-color: #f1f1f1;
	height: 100%;
	overflow: auto;
}

.fixed-navbar li a {
	display: block;
	color: #000;
	font-weight: 400;
	padding: 8px 16px;
	text-decoration: none;
}

.fixed-navbar li a.active {
	background-color: #8A491F;
	color: white;
}

.fixed-navbar li a:hover:not(.active) {
	background-color: #6e6e6e;
	color: white;
}

/* Reseting */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

/*Tour experiences*/

#particular {
	color: #353535;
	font-weight: 700;
	text-decoration: none;
}

.experience-schedule span {
	text-decoration: underline;
	color: #1d1d1d;
	font-weight: 700;
}

.day-pill {
	background-color: #8A491F;
	color: whitesmoke;
	border-radius: 100px;
	padding: 2px;
	padding-left: 10px;
	padding-right: 10px;
	height: fit-content;
	font-weight: 600;
	font-size: 20px;
}

/*Work on a mobile version of this immediatly*/

.highlight li {
	list-style: disc;
	font-weight: 600;
	font-size: 16px;
}

.highlight h5 {
	font-weight: 700;
}


/* Car price*/
.car-price-image {
	height: 150px;
	overflow: hidden;
	object-fit: cover;
}

.car-price span {
	font-weight: 800;
	color: var(--black);
}


/*Adventure image slider*/
.slidr {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@keyframes slide {
	from {
		transform: translateX(-10%);
	}

	to {
		transform: translateX(-100%);
	}
}

.wrapper {
	overflow: hidden;
	background: white;
	white-space: nowrap;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.wrapper::before,
.wrapper::after {
	position: absolute;
	top: 0;
	width: 150px;
	height: 100%;
	content: "";
	z-index: 2;
}

.wrapper::after {
	right: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.wrapper::before {
	left: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.wrapper:hover .track {
	animation-play-state: paused;
}

.track {
	display: inline-block;
	animation: 5s slide infinite linear;
}

.track img {
	width: 400px;
	height: 100%;
	border-radius: 8px;
}

/* Services big texts*/
.gd-price-field {
	padding: 20px;
	margin-top: 50px;
	background-color: #fdfdfd;
	border-radius: 15px;
	box-shadow: 1px 2px 5px #c9c9c9;
	border-top: 1px solid #dfdfdf
}

.gd-price-field span {
	font-size: 20px;
	color: rgb(53, 53, 53);
}

.gd-text {
	font-weight: 600;
	width: 50;
}

.gd-text p {
	font-size: 16px;
}

.gd-service-responsibilities {
	border-color: #777777;
	border-width: 1px;
	border-radius: 20px;
	border-style: solid;
}

.gd-service-responsibilities img {
	height: 150px;
	object-fit: scale-down;
}

.gd-service-responsibilities span {
	font-weight: 700;
	color: #1b5e20;
	font-size: 20px;
}

@media(min-width: 575.5px) {
	.gd-service-responsibilities {
		width: 500px;
	}
}




.owl-carousel .owl-item {
	transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item .card {
	padding: 30px;
	position: relative;
}

.owl-carousel .owl-stage-outer {
	overflow-y: auto !important;
	padding-bottom: 40px;
}

.owl-carousel .owl-item img {
	height: 100px;
	object-fit: scale-down;
	border-radius: 6px;
}

.owl-carousel .owl-item .card .name {
	position: absolute;
	bottom: -20px;
	left: 33%;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	background-color: #8A491F;
	padding: 0.3rem 0.4rem;
	border-radius: 2px;
	box-shadow: 2px 3px 15px #8b8b8b;
}

.owl-carousel .owl-item .card {
	opacity: 0.2;
	transform: scale3d(0.8, 0.8, 0.8);
	transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item.active.center .card {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
	height: 20px;
	background: #2a6ba3 !important;
	border-radius: 2px !important;
	opacity: 0.8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	height: 13px;
	width: 13px;
	opacity: 1;
	transform: translateY(2px);
	background: #83b8e7 !important;
}

@media(min-width: 480.6px) and (max-width: 575.5px) {
	.owl-carousel .owl-item .card .name {
		left: 24%;
	}
}

@media(max-width: 360px) {
	.owl-carousel .owl-item .card .name {
		left: 30%;
	}
}

/*Team style*/
.team i {
	color: white;
}

/*Home-about style*/
.home-about img {
	border-radius: 10px;
}

.about-ontop {
	border-radius: 10px;
	border: 1px #dadada solid;
}

/* Footer style*/
.page-footer {
	background: #1b5e20;
}

.page-footer h4 {
	color: white;
}

/*Contact style*/
.contact {
	background: #8A491F;
	color: white;
	border-radius: 10px;
}

.contact i {
	color: white;
}

.outlined-btn {
	border: 1px;
	border-color: #70B352;
	border-style: solid;
	display: inline-flex;
	border-radius: 8px;
	overflow: hidden;
}

.outlined-btn-booking {
	border: 1px;
	border-color: #8A491F;
	border-style: solid;
	display: inline-flex;
	border-radius: 8px;
	overflow: hidden;
	background-color: #8A491F;
	color: white;
}

.outlined-form-btn {
	border: 1px;
	border-color: #fff;
	color: #fff;
	border-style: solid;
	display: inline-block;
	border-radius: 8px;
	overflow: hidden;
}

.outlined-btn:hover {
	cursor: pointer;
	background: #70B352;
	color: white;
}

.outlined-form-btn:hover {
	cursor: pointer;
	background: #70B352;
	color: white;
	border-color: #70B352;
}

/*SERVICE CARDS*/

.services {
	margin: 50px auto;
}

.services .card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	height: calc(100% - 0px);
	border: 1px solid #ddd;
}

.services .card img {
	width: 100%;
	object-fit: cover;
	object-position: 0 center;
	height: 200px;
}

.services .card h3 {
	padding: 10px 0;
	font-size: 25px;
	font-weight: 500;
	text-transform: uppercase;
}

.services .card .card-footer {
	border: 0;
}

.cool-hover-effect {
	--width: 100%;
	--time: 0.7s;

	position: relative;
	display: inline-block;
	/*height: 1em;*/
	border-radius: 8px;

	background: #085005;
	color: white;
	overflow: hidden;
}

.cool-hover-effect text {
	position: relative;
	z-index: 5;

	transition: color var(--time);
}

.cool-hover-effect span {
	position: absolute;
	display: block;
	content: "";
	z-index: 0;
	width: 0;
	height: 0;

	border-radius: 100%;
	background: #fff;

	transform: translate(-50%, -50%);
	transition: width var(--time), padding-top var(--time);
}

.cool-hover-effect:hover text {
	color: #222;
}

.cool-hover-effect:hover span {
	width: calc(var(--width) * 2.25);
	padding-top: calc(var(--width) * 2.25);
}

/*For big title on the home page*/
.gasy-dia-title {
	font-size: 50px;
	font-weight: 100;
}

.amazing-place {
	font-size: 40px;
	font-weight: 600;
}

.gd-pl {
	padding-left: 80px;
}

.slogan {
	color: #161616;
	font-size: 20px;
	font-weight: 600;
}

@media (max-width: 576px) {
	.gasy-dia-title {
		font-size: 25px;
		font-weight: 100;
	}

	.amazing-place {
		font-size: 18px;
		font-weight: 600;
	}

	.gd-pl {
		padding-left: 0px;
	}

	.slogan {
		font-style: italic;
		font-size: 10px;
	}
}

/*Navigation bar*/
.sidebar {
	position: fixed;
	top: 0px;
	bottom: 0;
	left: 0;
	z-index: 1000;
	overflow-x: hidden;
	overflow-y: auto;
	border-right: 1px solid #d8d8d8;
}

.value-img {
	width: 100px;
	height: auto;
}

.discover-button {
	border: 2px solid white;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.0);
	padding: 10px 40px;
	border-radius: 0px;
}

.discover-button:hover {
	color: #fff;
	background-color: #6ca967;
	border: 2px solid #6ca967;
}

.disc-over {
	background-color: rgba(0, 0, 0, 0.30);
	height: 100%;
}

.section-parallax {

	background-image: url("/static/images/discover.jpg");

	height: 500px;

	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about-img {
	height: 250px;
	width: auto;
	border-radius: 10px;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.20);
}

.logo {
	height: 100px;
	width: auto;
}

.img-below {
	position: relative;
}

.cover-all-stuff {
	position: absolute;
	background: transparent;
	top: 80%;
	left: 50%;
	transform: translate(-50%);
	z-index: 1;
}

.ambony {
	background: white;
	border-radius: 10px;
	overflow: hidden;
}

/* Section */
.section {
	background: #e8f5e9;
	margin-left: -15px;
	margin-right: -15px;
	padding-top: 5px;
	padding-bottom: 5px;
}

@media(max-width:768px) {

	.about-img {
		width: 100%;
		height: auto;
	}

	.my-card-img {
		height: 150px;
		object-fit: cover;
	}

	.my-card {
		margin-top: 16px;
		margin-bottom: 16px;
	}
}

/* Used for animating the image inside the card of service*/
.stack-overflow {
	overflow: hidden;
}

.my-card-img {
	height: 200px;
	object-fit: cover;
	transition: all 0.9s ease;
}

.hover-card {

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.30);

}

.hover-card:hover {
	box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.35);
}

.hover-card:hover .my-card-img {
	transform: scale(1.15);

}

.custom-img {
	width: 150px;
	/* full width on mobile devices */
}

@media (min-width: 576px) {
	.custom-img {
		width: 200px;
		/* 50% width on larger devices */
	}
}

/* Nav bar stylings */
.navbar-custom-background {
	background-color: none;
	opacity: 1;
}

.start-header {
	transform: translateY(0);
	padding: 1px 0;
	/*box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);*/
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.start-header.scroll-on {
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
	padding: 1px 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img {
	height: 40px;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/*
* Added on 2/7/2024
*/
.navbar-custom-background.scroll-on {
	background-color: #fff;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand h4 {
	opacity: 1;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.start-header.scroll-on .nav-link {
	color: #212121 !important;
	/*color: #ffffff !important;*/
	font-weight: 500;
	transition: all 200ms linear;
}

.navigation-wrap {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar {
	padding: 0;
}

.navbar-brand img {
	height: 75px;
	width: auto;
	display: block;
	/*filter: brightness(10%);*/
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar-brand h4 {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}

.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
	transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
	transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
	top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}

.nav-link {
	/*color: #212121 !important;*/
	color: #ffffff !important;
	font-weight: 500;
	transition: all 200ms linear;
}

.nav-item:hover .nav-link {
	color: #25ee12 !important;
}

.start-header.scroll-on .nav-item:hover .nav-link {
	color: #1b7a12 !important;
}

.nav-item.active .nav-link {
	color: #24ff10 !important;
}

.start-header.scroll-on .nav-item.active .nav-link {
	color: #a3a3a3 !important;
}

.nav-link {
	position: relative;
	padding: 5px 0 !important;
	display: inline-block;
}

.nav-item:after {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #6ca967;
	opacity: 0;
	transition: all 200ms linear;
}

.nav-item:hover:after {
	bottom: 0;
	opacity: 1;
}

.nav-item.active:hover:after {
	opacity: 0;
}

.nav-item {
	position: relative;
	transition: all 200ms linear;
}

body {
	background-color: #fff;
}

/*
@media (max-width: 767px) { 
	.nav-item:after{
		display: none;
	}
	.nav-item::before {
		position: absolute;
		display: block;
		top: 15px;
		left: 0;
		width: 11px;
		height: 1px;
		content: "";
		border: none;
		background-color: #000;
		vertical-align: 0;
	}
}*/