::selection {
	background: #008080;
	/* Replace with your desired background color */
	color: #fff;
	/* Replace with your desired text color */
}

/* For Firefox, also add this: */
::-moz-selection {
	background: #ff5722;
	color: #ffffff;
}

body {
	font-family: "DM Sans", serif;
	font-weight: 400;
	color: #262626;
	font-size: 15px;
	overflow-x: hidden;
}

a,
a:hover,
a:focus {
	text-decoration: none !important;
}

h1,
h2,
h,
h4,
h5,
h6 {
	font-family: "Jost", serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #000;
}

a,
a:hover,
a:focus {
	text-decoration: none;
}

button {
	background-color: #008080;
	text-transform: uppercase;
	padding: 15px 25px 12px 25px;
	color: white;
	border-radius: 100px;
	border: none;
	margin-bottom: 10px;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {}

.sp-top-header {
	background: #008080;
}

.sp-top-header .sp-row {
	padding: 10px 20px;
}

.sp-top-header .sp-row ul {}

.sp-top-header .sp-row ul li {
	float: left;
	display: inline-block;
	margin-right: 20px;
}

.sp-top-header .sp-row ul li a {
	color: white;
}

.sp-top-header .sp-row ul li span {}

.sp-top-header .sp-row .sp-contact li i {
	margin-right: 8px;
}

.sp-top-header .sp-row .sp-contact {}

.sp-top-header .sp-row .sp-social {
	display: flex;
	justify-content: right;
	margin: 0;
}

.sp-top-header .sp-row .sp-social li {
	margin-right: 11px;
}

.navbar-nav .dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
	/* Align dropdown with the parent */
	border: none;
	border-top: 2px solid #008080;
	border-radius: 0;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.sp-nav {
	background: white !important;
	padding: 0 20px;
}

.sp-nav img {
	width: 100px;
}

.sp-nav .nav-link,
.sp-nav .dropdown-item {
	font-size: 15px;
	text-transform: capitalize;
	color: #000000;
}

.sp-nav .nav-link:hover,
.sp-nav .dropdown-item:hover {
	color: #008080;
	background: white;
}

.sticky-top {
	box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.15);
	clip-path: inset(0 0 -100vh 0);
}

.sp-slider {
	padding: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 2s ease-in-out;
	/* Smooth transition between images */
}

.sp-slider .sp-content {
	min-height: 85vh;
	background: #0000007d;
	padding: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.sp-slider .sp-content h2 {
	font-size: 55px;
	font-weight: normal;
	text-transform: capitalize;
	color: #ffffff;
	text-align: center;
}

.sp-slider .sp-content p {
	color: #ffffff;
	font-size: 18px;
	line-height: 30px;
	padding: 0 20%;
	text-align: center;
}

.sp-slider .sp-content .sp-box {
	text-align: center;
	padding: 15px 15px 15px 15px;
	border-radius: 5px 5px 5px 5px;
	background-color: white;
	min-height: 157px;
}

.sp-slider .sp-content .sp-box img {
	width: 65px;
	margin: 0 0 15px 0;
}

.sp-slider .sp-content .sp-box h6 {
	color: #000000;
}

/* Ken Burns animation for background zoom */
/*.ken-burns {            animation: kenburns 10s ease-in-out infinite;        }        @keyframes kenburns {            0% {                transform: scale(1) translate(0, 0);            }            50% {                transform: scale(1.2) translate(-10px, -10px);            }            100% {                transform: scale(1) translate(0, 0);            }        }*/
.sp-color {
	background-color: #008080 !important;
}

.sp-color h6 {
	color: white !important;
}

.sp-search {
	width: 100%;
	text-align: center;
	margin: 30px 0 40px;
}

.sp-search button {
	width: 30%;
	padding: 20px 10px;
	background: #008080;
	font-weight: bold;
	letter-spacing: 1px;
	border: 3px solid #ffffff;
}

.sp-search button:hover {
	background: #fff;
	letter-spacing: 0px;
	color: #008080;
	border: 3px solid #008080;
}

.sp-search button i {
	margin-right: 15px;
}

.sp-section {
	padding: 50px 20px;
}

.sp-title {
	font-size: 43px;
	line-height: 1.2;
	text-align: center;
	font-weight: 600;
	color: #008080;
	margin: 0 0 30px 0;
}

.sp-title span {
	color: #000000;
}

/* Wrapper for image and overlay */
.image-container {
	position: relative;
	width: auto;
	/* Adjust to your image size */
	height: auto;
	/* Adjust to your image size */
	overflow: hidden;
	border-radius: 1000px;
	margin-bottom: 10px;
	display: block;
}

/* The image */
.image-container img {
	width: 100%;
	height: 100%;
	display: block;
}

/* The overlay div */
.image-container .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 128 128 / 68%);
	/* Semi-transparent black */
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	text-transform: capitalize;
}

/* Show overlay on hover */
.image-container:hover .overlay {
	opacity: 1;
}

.sp-destinations .col-sm-2 {
	width: 20%;
	padding: 0 5px;
}

.sp-destinations {
	padding: 50px 30px;
}

footer {
	background: #003366;
}

footer .row {
	padding: 50px 20px;
}

footer p {
	margin: 0;
	color: white;
}

footer .sp-col {
	padding: 10px;
}

footer h6 {
	font-weight: normal;
	text-transform: capitalize;
	color: #ffffff;
	margin: 0 0 20px 0;
}

footer .sp-link {
	margin-bottom: 25px;
}

footer .sp-link li {
	margin-bottom: 7px;
}

footer .sp-link li a {
	color: #ffffff;
}

footer .sp-first {
	width: 15%;
	align-items: center;
	display: flex;
}

footer .sp-first img {
	width: 100%;
}

footer .sp-first a {}

footer .sp-second {
	width: 12%;
}

footer .sp-third {
	width: 18%;
}

footer .sp-third .sp-social {
	display: flex;
}

footer .sp-third .sp-social li {
	margin-right: 10px;
}

footer .sp-third .sp-social li a {
	color: white;
	font-size: 20px;
}

footer .sp-third .sp-social li a i {}

footer .sp-fourth {
	width: 36%;
}

footer .sp-fourth .sp-icon-box {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

footer .sp-fourth .sp-icon-box .sp-text {}

footer .sp-fourth .sp-icon-box .sp-text h5 {
	font-size: 15px;
	line-height: 18px;
	color: white;
	text-transform: uppercase;
	font-weight: 400;
	margin: 0;
}

footer .sp-fourth .sp-icon-box .sp-text p {
	color: #ffffff;
	font-size: 20px;
	font-weight: 400;
	margin: 0;
}

footer .sp-fourth .sp-icon-box .sp-icon {
	margin-right: 10px;
}

footer .sp-fourth .sp-icon-box .sp-icon i {
	color: #00bfff;
	font-size: 50px;
}

footer .sp-fifth {
	width: 34%;
}

.sp-copy {
	background: #008080;
	padding: 15px;
}

.sp-copy p {
	text-transform: capitalize;
	color: #ffffff;
	text-align: center;
	margin: 0;
}

/* Container for the search bar */
.search-container {
	max-width: 885px;
	margin: 50px auto;
	position: relative;
}

/* Styling for the search input */
.search-container input {
	border-radius: 100px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding-left: 50px;
	/* Space for search icon */
	height: 60px;
	font-size: 25px;
}

/* Search icon inside input */
.search-icon {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	font-size: 1.2rem;
	color: gray;
}

/* Close icon */
.close-icon {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 1.2rem;
	color: gray;
	cursor: pointer;
	display: none;
	/* Hidden initially */
}

/* Suggestions box */
.suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: white;
	border-radius: 5px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	text-align: left;
}

/* Suggestion item */
.suggestions li {
	list-style: none;
	padding: 15px 20px;
	cursor: pointer;
	transition: background-color 0.2s;
	font-size: 16px;
	border: 2px solid transparent;
	border-radius: 100px;
}

/* Highlight suggestion on hover */
.suggestions li:hover {
	background-color: #f0f0f0;
}

/* Highlight selected suggestion */
.suggestions li.active {
	background-color: #00808029;
	border: 2px solid #008080;
}

/* Destination list styling */
.destination-list {
	margin-top: 20px;
}

.destination-list li {
	list-style: none;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

/* Tag styling */
.destination-list .tag {
	margin-left: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 10px;
	color: #fff;
}

.tag.honeymoon {
	background-color: #f8c4cf;
}

.tag.trending {
	background-color: #ffb3a7;
}

.tag.in-season {
	background-color: #a5d6a7;
}

.tag.budget {
	background-color: #d6a677;
}

.tag.popular {
	background-color: #b0bec5;
}

/* Destination list styling */
.destination-list {
	margin: 0 auto;
	margin-top: 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	/* Ensures all items are vertically aligned */
	align-items: flex-start;
	/* Aligns all items to the left */
	max-width: 600px;
}

.destination-list li {
	list-style: none;
	/* Removes default bullet points */
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	/* Ensures tag aligns with text */
	margin-bottom: 10px;
	width: 100%;
}

.destination-list .tag {
	margin-left: 10px;
	/* Adds space between destination name and tag */
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 10px;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
}

/* Individual tag colors */
.tag.honeymoon {
	background-color: #f8c4cf;
	color: #d3002d;
}

.tag.trending {
	color: #bd1a00;
	background-color: #ffb3a7;
}

.tag.in-season {
	color: #002c02;
	background-color: #a5d6a7;
}

.tag.budget {
	background-color: #d6a677;
	color: #a14f00;
}

.tag.popular {
	background-color: #b0bec5;
	color: #00283c;
}

.sp-search-page {
	background: url(../img/ezgif-4-22319ae434.jpg);
	background-size: cover;
}

.destination-list a {
	color: #595c5f;
	font-weight: 500;
	text-transform: uppercase;
}

.destination-list a:hover {
	color: #008080;
	font-weight: 500;
}

.sp-beadrcrumb {
	background: url(../img/breadcrumb.jpg);
	background-size: cover;
	background-position: center;
}

.sp-beadrcrumb .row {
	background: #00000082;
	min-height: 230px;
}

.sp-beadrcrumb ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp-beadrcrumb ul li {
	font-size: 15px;
	color: white;
	margin: 0 0 0 15px;
}

.sp-beadrcrumb ul li a {
	color: white;
}

.sp-beadrcrumb ul li a i {
	font-size: 20px;
	color: white;
}

.sp-beadrcrumb ul li i {
	font-size: 12px;
	color: #008080;
}

.sp-beadrcrumb ul li span {}

.sp-packages {}

.sp-packages .sp-package-box {
	display: flex;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	margin-bottom: 10px;
	cursor: pointer;
}

.sp-packages .sp-package-box .sp-img {
	background: url(../img/jp12287d138859-1-hotel_carousel_large.jpg);
	width: 50%;
	background-size: cover;
	background-position: center;
}

.sp-packages .sp-package-box .sp-package-text {
	padding: 30px;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-name {
	font-size: 18px;
	margin-bottom: 20px;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-meta {
	margin-bottom: 10px;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-meta .badge {
	color: #005a6a;
	background: #0dcaf040;
	margin-bottom: 3px;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-meta .badge i {}

.sp-packages .sp-package-box .sp-package-text .sp-package-includes {}

.sp-packages .sp-package-box .sp-package-text .sp-package-includes p {
	font-size: 13px;
	color: #4e4e4e;
	margin-bottom: 10px;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-price .sp-price {
	font-size: 26px;
	font-weight: bold;
	color: #008080;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-price .sp-price span {
	font-size: 13px;
	color: #606060;
}

.sp-packages .sp-package-box .sp-package-text .sp-package-price .sp-btn {}

.sp-packages .sp-package-box .sp-package-text .sp-package-price .sp-btn {}

.sp-packages .sp-package-box .sp-package-text .sp-package-price .sp-btn button {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: bold;
}

/* Custom styling for the form */
.phone-form {
	max-width: 400px;
	margin: 50px auto;
	text-align: center;
}

.phone-form .btn {
	border-radius: 20px;
	padding: 10px 20px;
}

.form-control {
	border-radius: 10px;
}

.phone-input-group {
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone-input-group .country-code {
	max-width: 80px;
	/* Restrict width for ISD code */
	border-radius: 10px 0 0 10px;
}

.phone-input-group .phone-number {
	border-radius: 0 10px 10px 0;
}

.btn-disabled {
	background-color: #d4f4d4;
	cursor: not-allowed;
	pointer-events: none;
}

.modal-title {
	font-size: 20px;
}

.filter-section {
	max-width: 300px;
	margin: 20px;
}

.filter-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.filter-group {
	margin-bottom: 20px;
}

.filter-group label {
	font-weight: normal;
}

.form-check-input {
	border-color: #28a745;
	margin-right: 10px;
}

button:focus:not(:focus-visible) {
	outline: 0 !important;
	box-shadow: none !important;
}

.sp-selected-city {
	padding: 0 10%;
}

.sp-selected-city p {
	color: #999999;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: bold;
}

.sp-selected-city .sp-select-box {
	clear: both;
	margin: 15px 0 20px;
}

.sp-selected-city .sp-select-box .sp-city {
	border: 1px solid #008080;
	border-radius: 8px;
	color: #008080;
	text-transform: capitalize;
	font-weight: bold;
	padding: 7px 15px;
	background: #00808030;
	margin-right: 5px;
}

.sp-selected-city .sp-select-box .sp-city i {
	font-size: 12px;
	margin-left: 4px;
}

.sp-selected-city .sp-progress {
	display: flex;
}

.sp-selected-city .sp-progress div {
	height: 5px;
	background: #cbe3e3;
	width: 25%;
	margin-right: 8px;
}

.sp-selected-city .sp-progress .sp-select {
	background: #008080;
}

.sp-select-duration {
	padding: 30px 10%;
}

.sp-select-duration p {
	text-align: center;
	color: black;
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 20px;
}

.sp-select-duration .sp-duration-box {}

.sp-select-duration .sp-duration-box .sp-duration:hover {
	border: 1px solid #008080;
	background: #00808030;
}

.sp-select-duration .sp-duration-box .sp-duration {
	background: white;
	display: block;
	border: 1px solid #cfe7e7;
	padding: 25px;
	text-align: center;
	margin: 0 -5px;
	border-radius: 10px;
}

.sp-select-duration .sp-duration-box .sp-duration img {
	width: 80px;
	margin: 0 auto 35px;
	display: block;
}

.sp-select-duration .sp-duration-box .sp-duration span {
	color: black;
	font-weight: 600;
	font-size: 16px;
}

.sp-select-duration .sp-city-box {}

.sp-select-duration .sp-city-box .sp-city {
	display: block;
	margin: 0 -8px;
	background: white;
	border-radius: 20px;
	border: 1px solid #cfe7e7;
	text-align: center;
}

.sp-select-duration .sp-city-box .sp-city img {
	width: 100%;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	margin-bottom: 20px;
}

.sp-select-duration .sp-city-box .sp-city h5 {
	text-transform: capitalize;
	font-weight: 600;
	font-size: 18px;
	padding: 0 10px;
}

.sp-select-duration .sp-city-box .sp-city p {
	color: gray;
	font-weight: normal;
	font-size: 12px;
	padding: 0 10px;
	margin: 0;
}

.sp-select-duration .sp-city-box .sp-city .sp-bage {
	color: #cca129;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: bold;
}

.sp-select-duration .sp-city-box .sp-city .sp-suggestion {
	display: block;
	margin: 15px 0 20px;
}

.sp-select-duration .sp-city-box .sp-city .sp-suggestion span {
	font-size: 11px;
	text-transform: capitalize;
	background: #cfe7e7;
	color: #008080;
	padding: 5px 10px;
	border-radius: 100px;
}

.sp-braed {}

.sp-braed .row {
	padding: 20px;
}

.sp-braed .row ul {
	display: flex;
	align-items: center;
}

.sp-braed .row ul li {
	text-transform: capitalize;
	margin-right: 5px;
}

.sp-braed .row ul li a {
	color: #ef6f01;
}

.package-flag[_ngcontent-veenaworld-c119] {
	display: inline-flex;
	align-items: center;
	margin-bottom: 3px;
	margin-right: 10px;
}

.git-package-flag[_ngcontent-veenaworld-c119] span[_ngcontent-veenaworld-c119] {
	display: inline-block;
	padding: 5px 4px 4px;
	font-weight: 700;
	font-size: 9px;
	line-height: 9px;
	color: var(--secondary-color);
	border: 1px solid #008080;
	border-radius: 3px 0 0 3px;
	height: 19px;
}

.git-package-flag[_ngcontent-veenaworld-c119] span[_ngcontent-veenaworld-c119]:last-child {
	background: #008080;
	color: white;
	border-radius: 0 3px 3px 0;
	font-weight: 800;
	padding: 5px 1px;
}

.sp-country {
	padding: 0px 25px 20px;
}

.sp-country .sp-img {
	margin-bottom: 10px;
}

.sp-country .sp-img img {
	width: 100%;
	border-radius: 10px;
}

.sp-country .sp-name {
	font-size: 22px;
	font-weight: 800;
}

.ratingStar-holder[_ngcontent-veenaworld-c119] {
	padding-top: 4px;
	--brand-yellow: #FF7417;
}

.rating-wrpr[_ngcontent-veenaworld-c119] {
	flex-wrap: wrap;
	margin: 2px 0 6px;
}

.rating-div[_ngcontent-veenaworld-c119] {
	position: relative;
	padding-right: 15px;
	line-height: 1;
}

.stars {
	--rating: .5;
	--star-count: 5;
	--star-icon: "\2605\2605\2605\2605\2605";
	--star-size: 18px;
	--star-spacing: 0px;
	--star-color: #d8d8d8;
	--star-background: #ff7417;
	--percent: calc(var(--rating) / var(--star-count)* 100%);
	display: inline-flex;
	font-size: var(--star-size);
	font-family: Times;
}

.stars:before {
	content: var(--star-icon);
	letter-spacing: var(--star-spacing);
	background: linear-gradient(90deg, #ff7417 var(--percent), #d8d8d8 var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ratingStar-holder[_ngcontent-veenaworld-c119] .star-text[_ngcontent-veenaworld-c119] {
	font-size: 14px;
	font-weight: 600;
	color: #212220;
	padding-left: 4px;
}

.ps-2 {
	padding-left: .5rem !important;
}

.rating-div[_ngcontent-veenaworld-c119]:after {
	width: 1px;
	height: 100%;
	background: #d8d8d8;
	content: "";
	position: absolute;
	right: 7px;
	top: 0;
}

.reviews-count[_ngcontent-veenaworld-c119] {
	font-size: 14px;
	font-weight: 700;
	margin-left: 6px;
	line-height: 1;
}

.reviews-count[_ngcontent-veenaworld-c119] a[_ngcontent-veenaworld-c119] {
	line-height: 1;
}

.c-brand-blue-link {
	--brand-text-color: #0a66c2 !important;
	color: var(--brand-text-color) !important;
}

.text-decoration-underline {
	text-decoration: underline !important;
}

.align-items-stretch {
	align-items: stretch !important;
}

.tourName[_ngcontent-veenaworld-c119],
.tourName[_ngcontent-veenaworld-c119] .tourNameWrapper[_ngcontent-veenaworld-c119] {
	width: 100%;
}

.tourName[_ngcontent-veenaworld-c119] .package-info[_ngcontent-veenaworld-c119] {
	font-size: 14px;
	font-weight: 400;
	margin-top: 3px;
	width: 100%;
}

.tourName[_ngcontent-veenaworld-c119] .package-info[_ngcontent-veenaworld-c119] .get-full-width[_ngcontent-veenaworld-c119] {
	width: 100%;
}

.tourDays[_ngcontent-veenaworld-c119] {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	margin-right: 14px;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.me--2,
.mx--2 {
	margin-right: 2px !important;
}

.tourDays[_ngcontent-veenaworld-c119] span[_ngcontent-veenaworld-c119] {
	font-weight: 400;
}

.lh--14 {
	line-height: 14px !important;
}

.tourName[_ngcontent-veenaworld-c119] .package-info[_ngcontent-veenaworld-c119] div.countryCount[_ngcontent-veenaworld-c119] {
	margin-right: 14px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
}

.viewItinerarySectionTop[_ngcontent-veenaworld-c119] .destinationCol[_ngcontent-veenaworld-c119] {
	font-size: 12px;
	font-weight: 600;
	margin-right: 24px;
	margin-bottom: 2px;
	position: relative;
	color: #595959;
	white-space: nowrap;
	line-height: 16px;
}

.viewItinerarySectionTop[_ngcontent-veenaworld-c119] .destinationCol[_ngcontent-veenaworld-c119]:after {
	position: absolute;
	width: 16px;
	height: 2px;
	background-image: url(https://www.veenaworld.com/citiesLinking.5257b98121a8ef01.svg);
	background-repeat: no-repeat;
	content: "";
	right: -19px;
	top: 50%;
	transform: translateY(-50%);
}

@media (min-width: 768px) {
	.flex-md-column {
		flex-direction: column !important;
	}
}

.align-items-center {
	align-items: center !important;
}

.d-inline-flex {
	display: inline-flex !important;
}

.me--2,
.mx--2 {
	margin-right: 2px !important;
}

.sp-country .sp_grid {}

.sp-country .sp_grid h5 {
	font-size: 14px;
	font-weight: 700;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.sp-country .sp_grid .sp-include {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.sp-country .sp_grid .sp-view {}

.sp-country .sp_grid .sp-include .sp-item {
	margin-right: 10px;
	text-align: center;
	display: table;
	margin: 0 auto;
}

.sp-country .sp_grid .sp-include .sp-item img {
	width: 40px;
	background: lavender;
	padding: 7px;
	border-radius: 100px;
	margin-right: 7px;
}

.sp-country .sp_grid .sp-include .sp-item span {
	font-size: 14px;
	display: block;
}

.sp-country .sp_grid p {
	color: #008080;
	font-size: 12px;
	font-weight: 600;
	line-height: 17px;
}

ul.custom-list {
	list-style-type: none;
	/* Removes default list-style */
	padding: 0;
	/* Removes default padding */
	margin: 0;
	/* Removes default margin */
}

ul.custom-list li {
	padding-left: 30px;
	/* Adds space for the image */
	background-image: url('https://www.veenaworld.com/icon-tour-highlight.9e3187a898d0a253.svg');
	/* Sets the image as the background */
	background-repeat: no-repeat;
	/* Ensures the image does not repeat */
	background-position: left center;
	/* Aligns the image to the left and centers it vertically */
	/* margin-bottom: 10px; */
	/* Adds space between list items */
}

.sp-country .sp-gallery {
	position: relative;
}

.sp-country .sp-gallery .last-col {}

.sp-country .sp-gallery .last-col:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	content: "";
	z-index: 1;
}

.sp-country .sp-gallery span {
	font-size: 16px;
	font-weight: 700;
	position: absolute;
	z-index: 999999;
	color: #000000;
	display: block;
	cursor: pointer;
	letter-spacing: 0;
	bottom: 23%;
	right: 17px;
	background: #e6e6fa87;
}

.sp-country .sp-gallery img {
	width: 100%;
	margin-bottom: 20px;
	border-radius: 10px;
}

.right-col[_ngcontent-veenaworld-c119] {
	width: 100%;
}

.right-col[_ngcontent-veenaworld-c119] .priceNDates[_ngcontent-veenaworld-c119] {
	width: 100%;
}

.order-2 {
	order: 2 !important;
}

.right-col[_ngcontent-veenaworld-c119] .priceDateConteiner[_ngcontent-veenaworld-c119] {
	border-radius: 10px;
	border: 1px solid #CFDDFF;
	background: #FFF;
	padding: 20px;
}

.priceNDates[_ngcontent-veenaworld-c119]:not(#a) .price-box[_ngcontent-veenaworld-c119] .emi-container[_ngcontent-veenaworld-c119] {
	display: flex;
	flex-direction: column;
}

.emi-link[_ngcontent-veenaworld-c119] {
	font-size: 12px;
	font-weight: 600;
	color: #0a66c2;
	text-decoration: none;
}

.emi-link[_ngcontent-veenaworld-c119] p[_ngcontent-veenaworld-c119] {
	font-size: 19px;
	font-weight: 700;
	float: left;
	margin: 0;
}

@media (min-width: 768px) {

	.emi-link[_ngcontent-veenaworld-c119] p[_ngcontent-veenaworld-c119],
	.emi-link[_ngcontent-veenaworld-c119] span[_ngcontent-veenaworld-c119] {
		color: #212221;
	}
}

.emi-link[_ngcontent-veenaworld-c119] span[_ngcontent-veenaworld-c119] {
	font-size: 14px;
	font-weight: 400;
}

@media (min-width: 768px) {

	.emi-link[_ngcontent-veenaworld-c119] p[_ngcontent-veenaworld-c119],
	.emi-link[_ngcontent-veenaworld-c119] span[_ngcontent-veenaworld-c119] {
		color: #212221;
		text-decoration: none !important;
		 !i;
		 !;
	}
}

.eligible-link[_ngcontent-veenaworld-c119] {
	display: block;
	color: var(--brand-blue-link);
	font-size: 12px;
	font-weight: 700;
	text-decoration-line: underline;
}

.priceStart[_ngcontent-veenaworld-c119] {
	font-size: 12px;
	font-weight: 400;
	color: #595959;
	align-self: flex-end;
	letter-spacing: 0;
}

.price-discounted[_ngcontent-veenaworld-c119] {
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	color: #212221;
	margin-left: 8px;
}

.small-txt[_ngcontent-veenaworld-c119] {
	font-size: 11px;
	color: #595959;
	letter-spacing: 0;
}

.selectDate[_ngcontent-veenaworld-c118] {
	display: flex;
	flex-direction: column;
	text-align: center;
}

@media (max-width: 1399.98px) and (min-width: 1200px) {
	.selectDate[_ngcontent-veenaworld-c118] {
		text-align: right;
	}
}

.btn-brand-yellow {
	--brand-background-color: #ffd801;
	--brand-color: #212221;
}

.selectDate[_ngcontent-veenaworld-c118] .btn-brand-hero[_ngcontent-veenaworld-c118] {
	--brand-height: 40px;
}

.selectDate[_ngcontent-veenaworld-c118] .pricing-table-button[_ngcontent-veenaworld-c118] {
	--brand-height: 28px;
	--brand-font-size: 12px;
}

.priceNDates[_ngcontent-veenaworld-c119]:not(#a) .price-box-bottom[_ngcontent-veenaworld-c119] p[_ngcontent-veenaworld-c119] {
	color: #003366;
	letter-spacing: 0;
}

.fs--14 {
	font-size: 14px !important;
}

.fw-600 {
	font-weight: 600 !important;
}

.likeNShare[_ngcontent-veenaworld-c119] {
	display: flex;
	justify-content: flex-end;
	z-index: 1;
}

.sp-country .sp-form {
	background: #F5F8FF;
	border: 1px solid rgb(207, 221, 255);
	border-radius: 5px;
	width: 100%;
	padding: 20px 36px;
	margin-top: 15px;
}

.sp-country .sp-form h5 {
	font-size: 14px;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.sp-country .sp-form form .form-control {
	border-radius: 6px;
	font-size: 14px;
	border-color: #008080;
}

.sp-country .sp-form form .btn {
	width: 100%;
	background: #00bfff;
	color: #003366;
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 1000000000;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
	padding: 60px 0 0;
	min-height: 100px;
}

.sp-cntr-nav .navbar {
	top: 80px;
}

.nav-link.active {
	color: #007bff !important;
	/* Change color for active nav item */
	font-weight: bold;
}

.sp-cntr-nav h3 {
	margin-bottom: 15px;
}

.sp-cntr-nav .accordion-button:not(.collapsed) {
	color: #008080;
	background-color: #ffffff;
	box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 #ffffff;
	padding: 0;
}

.sp-cntr-nav .accordion-button:not(.collapsed) {
	padding: 0;
}

#itineraryAccordion h2 {
	padding: 0;
}

#itineraryAccordion .accordion-body p {}

#itineraryAccordion .accordion-body {
	padding: 0;
}

#itineraryAccordion .itinerary-item {
	margin-bottom: 25px;
}

.sp-cntr-nav .nav-tabs .nav-link {
	background: #0080802e;
	color: #008080;
}

.sp-list {
	list-style: disc;
	margin: 0 0 0 18px;
}

.sp-list li {
	margin-bottom: 15px;
}

.sp-cntr-nav {
	margin-top: 50px;
}

.sp-country .sp-price-box {}

.sp-country .sp-price-box .sp-pp-item {
	font-size: 20px;
	color: #025189;
	text-align: center;
	border-radius: 10px;
	border: 2px solid #025189;
	padding: 10px;
	font-weight: 500;
}

.sp-country .sp-price-box .sp-pp-item span {
	display: block;
	font-weight: 900;
}

.sp-country .sp-price-box .sp_pp {
	text-align: center;
	background: #025189;
	width: max-content;
	display: table;
	margin: 0 auto;
	color: white;
	padding: 5px 15px;
	border-radius: 10px;
	font-size: 20px;
	margin-top: -15px;
	position: relative;
}

.sp-country .sp-price-box .sp_pp sup {}

.sp-country .sp-price-box .sp_pp span {}

.sp-country .sp-price-box .sp_pp2 span {
	font-size: 12px;
	font-weight: normal;
}

.sp-country .sp-price-box .sp_pp2 sup {
	font-weight: normal;
}

.sp-country .sp-price-box .sp_pp2 {
	background: #eb6400;
	color: white;
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	width: max-content;
	display: table;
	margin: -6px auto 20px;
	padding: 4px 15px;
	border-radius: 10px;
}

.sp-country .sp-extra {
	position: sticky;
	top: 100px;
	z-index: 9;
}

.sp-country .sp-extra .sp-map {
	background: url(../Desktop-map.05c45d4dd308e538.svg);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: 1px solid #008080;
	height: 170px;
	margin: 20px 0;
}

.sp-country .sp-extra .sp-map a {
	background: white;
	padding: 7px 15px;
	border-radius: 5px;
	border: 1px solid;
	text-transform: capitalize;
	color: black;
}

.sp-country .sp-extra .sp-map a i {}

.sp-country .sp-extra .sp-share {}

.sp-country .sp-extra .sp-share a {
	text-align: center;
	display: block;
	width: 100%;
}

.sp-country .sp-extra .sp-share a i {
	font-size: 20px;
	color: #003366;
}

.sp-country .sp-extra .sp-share a span {
	display: block;
	color: #008080;
	font-size: 13px;
	line-height: 17px;
}

.sp-country .sp-extra .sp-share .col-sm-3 {}

.testimonial-author {
	text-transform: capitalize;
}


.sp-testi .card-body {
	min-height: 250px;
}

.sp-testi .card {
	margin-bottom: 10px;
}

.sp-visa {}

.sp-visa img {}

.sp-visa h3 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.sp-visa p {
	line-height: 28px;
}

.sp-visa ul {
	list-style: inherit;
	padding-left: 30px;
}

.sp-visa ul li {
	line-height: 28px;
	margin-bottom: 5px;
}

.sp-visa .row {
	padding: 0 20px;
	align-items: center;
	display: flex;
}

.sp-group h3 {
	text-align: left !important;
	font-size: 40px;
}

.sp-grp-tr-dtls {
	padding: 40px 10px;
}

.sp-grp-tr-dtls .sp-tour-name {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sp-grp-tr-dtls .sp-tour-name h4 {
	text-transform: capitalize;
	color: #008080;
}

.sp-grp-tr-dtls .sp-tour-name h2 {
	text-transform: capitalize;
	font-weight: bold;
}

.sp-grp-tr-dtls .sp-tour-price {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sp-grp-tr-dtls .sp-tour-price p {
	margin: 0;
	font-size: 30px;
	font-weight: bold;
	color: #ef6f01;
}

.sp-grp-tr-dtls .sp-tour-nav {
	background: white;
	box-shadow: 0 2px 8px #0000001a;
	margin-top: 40px;
	padding: 0 50px;
	position: relative;
}

.sticky-nav {
	position: fixed !important;
	top: 40px;
	left: 0;
	right: 0;
	z-index: 10;
	background: white;
	box-shadow: 0 2px 8px #0000001a;
	padding: 0 50px;
	border-radius: 10px;
}

.sp-grp-tr-dtls .sp-tour-nav ul {
	display: flex;
	gap: 20px;
}

.sp-grp-tr-dtls .sp-tour-nav ul li {}

.sp-grp-tr-dtls .sp-tour-nav ul li a {
	color: #595959;
	padding: 15px 0;
	display: block;
}

.accordion-container {
	margin: 30px auto;
}

.view-toggle {
	color: #007BFF;
	cursor: pointer;
	margin-bottom: 12px;
	display: inline-block;
	font-size: 16px;
	text-decoration: underline;
}

.accordion-item {
	border-bottom: none;
	padding: 0;
}

.accordion-header {
	cursor: pointer;
	display: flex;
	align-items: center;
	user-select: none;
	padding: 12px 8px;
}

.map-icon {
	margin-right: 10px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #008080;
}

.accordion-title {
	flex-grow: 1;
	font-weight: normal;
}

.accordion-title div {
	font-weight: bold;
}

.accordion-toggle {
	font-size: 22px;
	width: 30px;
	height: 30px;
	text-align: center;
	border: none;
	cursor: pointer;
	font-weight: bold;
	background: lavender;
	color: black;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accordion-content {
	padding: 10px 40px;
	display: none;
	background: white;
	color: #333;
}

.accordion-content .sp-tour-info {
	padding: 16px;
	background: #f5f5f5;
	border-radius: 3px;
	margin-bottom: 20px;
	width: 75%;
}

.accordion-content .sp-tour-info li {
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
}

.accordion-content .sp-tour-info li i {
	font-size: 25px;
	width: 35px;
}

.accordion-content.open {
	display: block;
}

.sp-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sp-item p {
	font-family: "Jost", serif;
	font-size: 26px;
	font-weight: 600;
	color: black;
}

.sp-item p span {
	font-weight: normal;
	font-size: 14px;
	font-style: italic;
}

.sp-tour-information {
	padding-top: 150px;
}

.sp-tour-information h4 {
	font-size: 26px;
	font-weight: 600;
	color: black;
	text-transform: capitalize;
}

.sp-tour-information p {
	font-weight: normal;
	font-size: 14px;
	font-style: italic;
	margin-bottom: 25px;
}

.sp-include {
	list-style-type: none;
	/* Removes default bullets */
	padding-left: 0;
	/* Removes left padding */
}

.sp-include li {
	position: relative;
	padding-left: 20px;
	/* Add space for custom bullets */
}

.sp-include li::before {
	content: "\2022";
	/* Unicode for the bullet character */
	color: #1bb55c;
	/* Change this to the color you want */
	font-size: 20px;
	/* Adjust size of bullet */
	position: absolute;
	left: 0;
	/* Position bullet at the start of each list item */
	top: 50%;
	transform: translateY(-50%);
}


.sp-exclude {
	list-style-type: none;
	/* Removes default bullets */
	padding-left: 0;
	/* Removes left padding */
}

.sp-exclude li {
	position: relative;
	padding-left: 20px;
	/* Add space for custom bullets */
}

.sp-exclude li::before {
	content: "\2022";
	/* Unicode for the bullet character */
	color: #e82f2f;
	/* Change this to the color you want */
	font-size: 20px;
	/* Adjust size of bullet */
	position: absolute;
	left: 0;
	/* Position bullet at the start of each list item */
	top: 50%;
	transform: translateY(-50%);
}


.sp-listt {
	list-style-type: none;
	/* Removes default bullets */
	padding-left: 0;
	/* Removes left padding */
}

.sp-listt li {
	position: relative;
	padding-left: 20px;
	/* Add space for custom bullets */
}

.sp-listt li::before {
	content: "\2022";
	/* Unicode for the bullet character */
	color: #000;
	/* Change this to the color you want */
	font-size: 20px;
	/* Adjust size of bullet */
	position: absolute;
	left: 0;
	/* Position bullet at the start of each list item */
	top: 50%;
	transform: translateY(-50%);
}

.sp-tour-information .nav-tabs .nav-link {
	background: #0080802e;
	color: #008080;
	font-weight: normal;
}

.sp-tour-information .nav-tabs .nav-link.active {
	background: #008080;
	color: white !important;
	font-weight: normal;
}

.sp-tour-information .tab-pane {
	padding: 20px;
	border: 1px solid #00000026;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.sp-tour-information .nav-item {
	margin-right: 15px;
}

.sp-tour-information .tab-content ul {}

.sp-tour-information .tab-content ul li {
	margin-bottom: 15px;
}

.sp_text {}

.sp_text h3 {
	font-size: 16px;
	font-weight: 600;
	color: black;
}

.sp_text h4 {
	font-size: 16px;
	font-weight: 500;
}

.sp_text ul {
	list-style: inside;
	margin-bottom: 25px;
}

.sp_text ul li {
	margin-bottom: 5px;
}

.sp_text table {
	border: 1px solid #00000029;
}

.sp_text table thead {}

.sp_text table thead th {
	background: #008080;
	color: white;
	padding: 10px;
}

.sp_text table tbody td {
	padding: 15px;
}

.sp_text p {}