@charset "UTF-8";
/* -------------------------------------
      🍔 Components - Variables
  ------------------------------------- */
/* -------------------------------------
        Reset Styles
    ------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
html {
	font-display: swap;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

body {
	overflow-y: auto;
	height: auto;
}

@media (min-width: 1400px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1440px;
	}
}
/* -------------------------------------
        🍔 Components - Header
    ------------------------------------- */
.c-header {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
}
.c-header .header-primary {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.45) 20%,
		rgba(0, 0, 0, 0.37) 32%,
		rgba(0, 0, 0, 0) 91%
	);

	padding: 10px 0;
}
.c-header .header-secondary .dropdown-menu .link {
	font: 600 0.75rem/1rem "Raleway", sans-serif !important;
	padding-left: 10px !important;
}
.c-header .header-secondary .dropdown-menu.show {
	left: auto;
	right: 0;
}
.c-header .header-secondary .navbar-expand-md {
	flex-wrap: nowrap;
	justify-content: flex-start;
}
.c-header .header-secondary .menuBar {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 42px;
	padding-left: 24px;
	margin-bottom: 0;
	list-style-type: none;
}
.c-header .header-secondary .menuBar .dropdown.subMenus {
	position: relative;
	top: 4px;
}
.c-header
	.header-secondary
	.menuBar
	.dropdown.subMenus
	.subMenu-wrapper
	> .dropdown-menu {
	padding: 0;
}
.c-header
	.header-secondary
	.menuBar
	.dropdown.subMenus:hover
	.subMenu-wrapper
	> .dropdown-menu {
	display: block;
}
.c-header .header-secondary .menuBar .dropdown.subMenus .has-submenu {
	position: relative;
}
.c-header
	.header-secondary
	.menuBar
	.dropdown.subMenus
	.has-submenu:hover
	> .submenu {
	display: block;
}
.c-header .header-secondary .menuBar .dropdown.subMenus .has-submenu > a {
	padding-right: 20px;
	position: relative;
}
.c-header
	.header-secondary
	.menuBar
	.dropdown.subMenus
	.has-submenu
	> a::after {
	position: absolute;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid #d67f76;
	content: "";
	top: 12px;
	right: 8px;
}
.c-header .header-secondary .menuBar .menuBar-item .link {
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	color: #fff;
	/* font: 600 0.86rem/1rem "Raleway", sans-serif; */
	font-size: 14px;
	padding: 0 0 4px;
	text-decoration: none;
	letter-spacing: 0.8px;
	transition: all ease 0.3s;
}

.c-header .header-secondary .menuBar .menuBar-item .link:hover,
.c-header .header-secondary .menuBar .menuBar-item .link.active {
	border-bottom-color: #d67f76;
}
.c-header .sectionList {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.c-header .sectionList > li {
	align-items: center;
	color: #fff;
	display: inline-flex;
	flex-direction: row;
	gap: 6px;
	list-style-type: none;
	position: relative;
	margin-right: 25px;
}
.c-header .sectionList > li .fab {
	font-size: 0.9rem;
	line-height: normal;
}
.c-header .sectionList > li::before {
	background-color: rgba(219, 219, 219, 0.4705882353);
	content: "";
	height: 12px;
	position: absolute;
	right: -15px;
	top: 8px;
	width: 1px;
}
.c-header .sectionList > li .link {
	background-color: transparent;
	color: #fff;
	font-size: 0.84rem;
	padding: 6px 0;
	line-height: normal;
	text-decoration: none;
}
.c-header .sectionList > li:last-child {
	margin-right: 0;
}
.c-header .sectionList > li:last-child::before {
	display: none;
}
.c-header .sectionList > li .c-advanceSelect .select2-selection {
	border: none;
	color: #fff;
	font-size: 0.84rem;
	padding: 0 4px !important;
	position: relative;
}
.c-header
	.sectionList
	> li
	.c-advanceSelect
	.select2-selection
	.select2-selection__rendered {
	color: #fff;
	line-height: normal !important;
}
.c-header
	.sectionList
	> li
	.c-advanceSelect
	.select2-selection
	.select2-selection__arrow
	b {
	border-color: #fff transparent transparent transparent;
}

@media (max-width: 960px) {
	.c-header {
		display: none;
	}
	.c-headerMobile {
		display: flex;
	}
}
.c-headerMobile {
	align-items: center;
	background-color: #d67f76;
	display: flex;
	gap: 24px;
	padding: 12px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 6;
}
.c-headerMobile .hambMenu {
	background-color: #fff;
	border: 0;
	display: grid;
	font-size: 1.8rem;
	place-items: center;
	height: 42px;
	width: 42px;
	border-radius: 4px;
}
.c-headerMobile .logo {
	flex-grow: 1;
}
.c-headerMobile .logo img {
	height: 46px;
}
.c-headerMobile .setting {
	width: 100px;
}

.mobileSidebarMenu .offcanvas-body {
	padding: 16px 0;
}
.mobileSidebarMenu .subMenu .list-group-item {
	border-width: 0 0 1px 0;
}
.mobileSidebarMenu .subMenu .card-body {
	border: 0;
	padding: 0 1rem;
	list-style-type: none;
}
.mobileSidebarMenu .subMenu .card-body .list-group-item {
	padding-left: 44px;
}

@media (min-width: 960px) {
	.c-headerMobile {
		display: none;
	}
	.c-header {
		display: block;
	}
}
/* -------------------------------------
        🍔 Components - Banner and Filter
    ------------------------------------- */
.c-bannerAndFilter {
	position: relative;
	padding: 0;
	overflow: hidden;
}
.c-bannerAndFilter.with-image {
	background: url(../images/banner.png) center no-repeat;
	background-size: cover;
	padding: 200px 0 140px 0;
}
.c-bannerAndFilter .banner_one_text {
	color: #fff;
}
.c-bannerAndFilter .banner_one_text h1 {
	font: 500 3rem/4rem "Raleway", sans-serif;
}
.c-bannerAndFilter .banner_one_text h3 {
	font: 300 1rem/1.3rem "Raleway", sans-serif;
}

.c-filterTabs .nav-tabs {
	border: 0;
	gap: 12px;
}
.c-filterTabs .nav-tabs .nav-link {
	border: 1px solid #d67f76;
	color: #000;
	border-radius: 6px;
}
.c-filterTabs .nav-tabs .nav-link.filterButton.active {
	background-color: #d67f76;
	color: #fff;
}
.c-filterTabs .tab-content {
	padding: 24px 0 0;
}

.filterItemSection {
	background: rgb(249.2415730337, 237.0224719101, 235.7584269663);
	padding: 12px;
	min-height: 96px;
	position: relative;
	border-radius: 10px;
}

@media (max-width: 960px) {
	.c-bannerAndFilter {
		padding: 70px 0 0 0;
	}
	.c-bannerAndFilter .banner_one_text {
		color: #fff;
	}
	.c-bannerAndFilter .banner_one_text h1 {
		font: 500 2.4rem/3rem "Raleway", sans-serif;
	}
}
.c-filter {
	margin-top: -150px;
	z-index: 1;
	padding-bottom: 40px;
	position: relative;
}
.c-filter .filterWrapper {
	background: #fff;
	padding: 30px;
	position: relative;
	min-height: 276px;
	border-radius: 20px;
	box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
}

@media (max-width: 960px) {
	.c-filter {
		margin-top: 16px;
	}
	.c-filter .filterWrapper {
		padding: 12px;
	}
}
.roomFilter {
	align-items: center;
	border: 1px solid rgb(235.1449438202, 193.0134831461, 188.6550561798);
	cursor: pointer;
	display: flex;
	flex-direction: row;
	height: 42px;
	padding: 6px;
	position: relative;
	border-radius: 6px;
}
.roomFilter span {
	flex-grow: 1;
	padding: 0 4px;
}
.roomFilter i {
	color: rgb(225.7471910112, 163.6741573034, 157.2528089888);
}

.c-select {
	background-color: transparent;
	border: 1px solid rgb(235.1449438202, 193.0134831461, 188.6550561798);
	height: 42px;
	outline: none;
	width: 100%;
	border-radius: 6px;
}
.select2-container .select2-dropdown .select2-results__option {
	font-size: 0.85rem;
}
.select2-container
	.select2-dropdown
	.select2-results__option.select2-results__option--highlighted {
	background-color: #d67f76 !important;
}

/* -------------------------------------
        🍔 Components - Form Elements
    ------------------------------------- */
.c-input {
	height: 42px;
	padding: 6px;
	border-radius: 4px;
}
.c-input.transparent {
	border: 1px solid rgb(235.1449438202, 193.0134831461, 188.6550561798);
	background-color: transparent;
}

.c-advanceSelect .select2-container {
	width: 100% !important;
}
.c-advanceSelect .select2-container .select2-selection {
	padding: 6px !important;
	height: auto !important;
	position: relative;
}
.c-advanceSelect
	.select2-container
	.select2-selection
	.select2-selection__arrow {
	top: calc(50% - 14px);
}
.c-advanceSelect
	.select2-container
	.select2-selection
	.select2-selection__arrow
	b {
	border-color: #d67f76 transparent transparent transparent;
}
.c-advanceSelect.transparent .select2-container .select2-selection {
	border-color: rgb(237.4943820225, 200.3483146067, 196.5056179775);
	background-color: transparent;
}
.c-advanceSelect.transparent
	.select2-container
	.select2-selection
	.select2-selection__arrow
	b {
	border-color: rgb(231.6207865169, 182.0112359551, 176.8792134831) transparent
		transparent transparent;
}

.c-calendar {
	background-color: transparent;
	border: 1px solid rgb(235.1449438202, 193.0134831461, 188.6550561798);
	height: 42px;
	border-radius: 4px;
}
.c-calendar .form-control {
	background-color: transparent;
	border: 0;
	padding: 0 8px;
	height: 42px;
}
.c-calendar .input-group-addon {
	display: grid;
	place-items: center;
	padding: 6px;
}
.c-calendar.transparent .input-group-addon {
	color: rgb(225.7471910112, 163.6741573034, 157.2528089888);
}

.datepicker td,
.datepicker th {
	font-size: 0.86rem;
	padding: 4px;
	height: 30px;
	width: 40px;
}
.datepicker td.active.active,
.datepicker th.active.active {
	background-color: #d67f76 !important;
	background-image: none;
}
.datepicker td.active:hover:hover,
.datepicker th.active:hover:hover {
	background-color: #d67f76 !important;
	background-image: none;
}

.c-button {
	border-color: #d67f76;
	background-color: #d67f76;
	color: #fff !important;
	font-size: 0.85rem;
}
.c-button:hover {
	background-color: rgb(208.1264044944, 108.6629213483, 98.3735955056);
}
.c-button.is-link {
	border: 0;
	background-color: transparent;
	padding: 0;
}

.c-btnGroup .btn {
	color: #d67f76;
	border-color: #d67f76 !important;
}
.c-btnGroup .btn-check:checked + .btn {
	background-color: #d67f76 !important;
	color: #fff;
}

.settingButton {
	background-color: #1f4ca7;
	border: 0;
	color: #fff;
	display: grid;
	line-height: normal;
	padding: 1px 0 0 1px;
	place-items: center;
	height: 32px;
	width: 32px;
	border-radius: 100px;
}

/* -------------------------------------
        🍔 Components - Section
    ------------------------------------- */
.c-section {
	background-color: #fff;
	display: block;
	padding: 60px 0;
	position: relative;
}
.c-section .heading {
	display: block;
	color: #000;
	margin-bottom: 3rem;
	position: relative;
	text-align: center;
	font: 600 2.3rem/3rem "Raleway", sans-serif;
}
.c-section .heading::after {
	background-color: #d67f76;
	position: absolute;
	bottom: -0.9rem;
	height: 4px;
	width: 100px;
	left: calc(50% - 50px);
	content: "";
	border-radius: 50px;
}
.c-section.type-1 {
	background: #f3f6fd url("../images/pattern.png") repeat;
}
.c-section.type-2 {
	background: #fff url("../images/pattern-2.png") repeat;
}

@media (max-width: 960px) {
	.c-section {
		padding: 30px 0;
	}
	.c-section .heading {
		font: 500 1.6rem/2rem "Raleway", sans-serif;
	}
}
/* -------------------------------------
        🍔 Components - Slider
    ------------------------------------- */
.c-slider .owl-nav {
	align-items: center;
	justify-content: center;
	display: flex;
	gap: 12px;
	flex-direction: row;
	margin-top: 1rem;
}
.c-slider .owl-nav button {
	background-color: #d67f76 !important;
	color: #fff !important;
	display: grid;
	font-size: 1.4rem !important;
	line-height: 1.3rem;
	height: 2rem;
	place-items: center;
	width: 2rem;
	border-radius: 100px;
}
.c-slider .owl-nav button span {
	position: relative;
	top: -1px;
}
.c-slider .owl-dots .owl-dot {
	background-color: rgb(249.2415730337, 237.0224719101, 235.7584269663);
	height: 12px;
	width: 12px;
	margin: 0 6px;
	border-radius: 100px;
}
.c-slider .owl-dots .owl-dot.active {
	background-color: #d67f76;
}

.partnerSlider .owl-nav {
	display: none;
}
.partnerSlider .partner {
	text-align: center;
}
.partnerSlider .partner img {
	display: inline-block;
	max-width: 110px;
	width: auto !important;
	filter: opacity(0.5);
}

/* -------------------------------------
        🍔 Components - Cards 
    ------------------------------------- */
.c-card {
	border: 1px solid rgba(210, 210, 210, 0.4588235294);
}
.c-card .card-image {
	height: 180px;
	overflow: hidden;
	position: relative;
}
.c-card .card-image img {
	width: 100%;
	height: 100%;
	transition: all ease 0.3s;
}
.c-card .card-image:hover img {
	transform: scale(1.2);
}
.c-card .card-image .overlayRating {
	top: 8px;
	right: 8px;
	position: absolute;
	z-index: 2;
}
.c-card .card-image::before {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.6) 53%,
		rgba(0, 0, 0, 0.6) 65%
	);
	content: "";
	bottom: 0;
	left: 0;
	position: absolute;
	height: 100px;
	width: 100%;
	z-index: 1;
}
.c-card .card-image .title {
	bottom: 12px;
	color: #fff;
	left: 14px;
	position: absolute;
	width: 100%;
	z-index: 2;
	font-size: 14px;
}
.c-card .card-image .discount {
	background-color: #fff;
	display: grid;
	place-items: center;
	bottom: -16px;
	right: 14px;
	position: absolute;
	width: 48px;
	height: 48px;
	z-index: 2;
	border-radius: 100%;
}

.imageCard {
	border: 1px solid rgba(210, 210, 210, 0.4588235294);
	cursor: pointer;
	overflow: hidden;
	position: relative;
	width: 100%;
	border-radius: 8px;
}
.imageCard img {
	width: 100%;
	transition: all ease 0.3s;
}
.imageCard:hover img {
	transform: scale(1.2);
}
.imageCard:hover .info {
	opacity: 1;
}
.imageCard:hover::before {
	background: rgba(0, 0, 0, 0.5) url("../images/dot-pattern.png") repeat;
}
.imageCard::before {
	background: rgba(0, 0, 0, 0.3);
	content: "";
	bottom: 0;
	left: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all ease 0.3s;
}
.imageCard .info {
	background-color: transparent;
	position: absolute;
	width: calc(100% - 24px);
	bottom: 12px;
	left: 12px;
	z-index: 2;
	opacity: 0;
	transition: all ease 0.3s;
}
.imageCard .rating {
	background-color: #fff;
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 8px;
	z-index: 1;
	border-radius: 3px;
}

.c-cta {
	height: 400px;
	position: relative;
	border-radius: 10px;
}
.c-cta::before {
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
	height: 400px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	border-radius: 10px;
}
.c-cta img {
	left: 0;
	top: 0;
	max-height: 400px;
	position: absolute;
	width: 100%;
	z-index: 1;
	border-radius: 10px;
}
.c-cta .infoSection {
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 1;
	border-radius: 10px;
}
.c-cta .ctaSlider {
	background: #fff url("../images/testimonial-quate.png") 20px 100px no-repeat;
	display: inline-block;
	padding: 24px;
	height: 400px;
	margin-top: 42px;
	width: 80%;
	border-radius: 20px;
	box-shadow: -4px -5px 14px rgba(0, 0, 0, 0.08),
		5px 8px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 960px) {
	.c-cta {
		height: 100%;
	}
	.c-cta::before {
		display: none;
	}
	.c-cta img {
		display: none;
	}
	.c-cta .infoSection .info {
		display: none;
	}
	.c-cta .ctaSlider {
		height: auto;
		margin-top: 0;
		width: 100%;
	}
	.imageCard .info {
		opacity: 1;
	}
}
/* -------------------------------------
        🍔 Components - Footer 
    ------------------------------------- */
.c-footer {
	background: #fff url("../images/footer-pattern.png") bottom repeat-x;
}
.c-footer .footer-top {
	padding: 60px 0;
}
.c-footer .footer-top .sectionBlock {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.c-footer .footer-top .sectionBlock .heading .title {
	display: inline-block;
	border-bottom: 2px solid #d67f76;
	padding-bottom: 4px;
}
.c-footer .footer-top .sectionBlock .body {
	flex-grow: 1;
}
.c-footer .footer-top .sectionBlock .body a {
	transition: color ease 0.3s;
}
.c-footer .footer-top .sectionBlock .body a:hover {
	color: #d67f76 !important;
}
.c-footer .footer-bottom {
	padding: 14px 0;
}

/* -------------------------------------
        Banner Slider
    ------------------------------------- */
.c-banner.type-01 {
	position: relative;
	height: 500px;
}
.c-banner.type-01 .info-section {
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 20%;
	height: 100%;
	width: 60%;
	z-index: 1;
}
.c-banner.type-01 .pageSlider {
	position: relative;
}
.c-banner.type-01 .pageSlider .item {
	display: block;
	height: 600px;
	position: relative;
	width: 100%;
}
.c-banner.type-01 .pageSlider .item img {
	width: 100%;
}
.c-banner.type-01 .pageSlider .slick-arrow {
	border: 0;
	position: absolute;
	left: 0;
	top: calc(50% - 20px);
	height: 40px;
	width: 100%;
	z-index: 2;
}
.c-banner.type-01 .pageSlider .slick-arrow.slick-prev,
.c-banner.type-01 .pageSlider .slick-arrow.slick-next {
	background-color: var(--secondary-color);
	display: grid;
	font-size: 1.8rem;
	height: 40px;
	place-items: center;
	padding: 0;
	position: absolute;
	width: 40px;
}
.c-banner.type-01 .pageSlider .slick-arrow.slick-next {
	right: 10px;
	left: auto;
}
.c-banner.type-01 .pageSlider .slick-arrow.slick-prev {
	left: 10px;
}
.c-banner.type-01 .pageSlider .sliderItem::before {
	background: rgba(0, 0, 0, 0.3);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.c-banner.type-01 .info-section {
		padding: 12px;
		left: 10%;
		width: 80%;
	}
	.c-banner.type-01,
	.c-banner.type-01 .pageSlider .item,
	.c-banner.type-01 .pageSlider .sliderItem img {
		height: auto;
	}
}
.menuBar-item .subMenus.dropdown {
	top: 4px;
}

/* -------------------------------------
        🍔 Components - Utilities 
    ------------------------------------- */
.fs-7 {
	font-size: 0.85rem;
}

.fs-8 {
	font-size: 0.75rem;
}

.color-primary {
	color: #d67f76;
}

.color-secondary {
	color: #1f4ca7 !important;
}

.font-family-primary {
	font-family: "Inter", sans-serif;
}

.font-family-secondary {
	font-family: "Raleway", sans-serif !important;
}

.mt-md-5 {
	margin-top: 2.4rem;
}

.mh-100 {
	min-height: 100px;
}

.subMenu-wrapper {
	position: relative;
	z-index: 10;
}

.height-38 {
	height: 38px;
	display: -webkit-box !important;
	-webkit-line-clamp: 2; /* Show only 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Style the submenu container */
.submenu {
	border: 1px solid #dee2e6;
	display: none;
	position: absolute;
	left: 100%;
	top: 12px;
	background-color: white;
	list-style: none;
	padding: 0;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	min-width: 240px;
	z-index: 9999;
	border-radius: var(--bs-border-radius);
}
.submenu li {
	cursor: pointer;
}
.submenu li a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}
.submenu li a:hover {
	color: #007bff;
}

/* Show submenu when hovering over parent */
.menuBar-item .submenu.dropdown {
	top: 4px;
}

/*# sourceMappingURL=theme.css.map */

.header-primary .goog-te-gadget .goog-te-combo:hover,
.header-primary .goog-te-gadget .goog-te-combo {
	padding: 5px 10px;
	height: auto;
	background-color: transparent;
	color: #fff;
	border: none;
	background-image: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.24722 7.07129C4.86232 7.73796 3.90007 7.73796 3.51517 7.07129L0.628421 2.07129C0.243521 1.40462 0.724646 0.571289 1.49445 0.571289H7.26795C8.03775 0.571289 8.51887 1.40462 8.13397 2.07129L5.24722 7.07129Z' fill='white'/%3E%3C/svg%3E%0A");
	background-size: 7px;
}
.header-primary .goog-te-combo option {
	background: #f9f9f9;
	color: #000;
}
.header-primary .goog-te-combo option:hover {
	background: #d32f2f;
	color: #fff;
}

.dropdown-menu li:hover > a,
.submenu li:hover > a {
	color: blue !important; /* Text color */
	/* Light blue background */
}

#seats_availability {
	border-radius: 0;
	margin-right: 0px;
	background-color: White !important;
}
#tseats {
	display: inline-block;
	background-color: #ff5b5b;
	padding: 7px 9px;
}
#aseats {
	display: inline-block;
	background-color: #33b5e5 !important;
	padding: 7px 9px;
	margin: -3px;
}

@media (min-width: 1200px) {
	.hotel-mrp-homepage {
		font-size: 1.2rem !important;
	}
}
.group-tour-date-homepage {
	line-height: 25px;
}

.blog-home-page-list {
	height: 400px !important;
}

/* scrolling bar css  */

#scrollToTopBtn {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99;
	background-color: #555;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn:hover {
	background-color: #333;
}
.sticky {
	background-color: #fff;
}
.c-header.sticky .header-primary {
	background-color: #000;
}
.c-header.sticky .header-secondary .menuBar .menuBar-item .link {
	background-color: transparent;
	color: #000;
}

/* ----------------------------------------------
    Component :: Modal
------------------------------------------------- */
.c-modal .modal-header {
	border-bottom: 0;
	background-color: #000000;
	padding: 10px;
}
.c-modal .modal-header .modal-title {
	flex-grow: 1;
	color: #fff;
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0.5px;
}
.c-modal .modal-header .close {
	background-color: transparent;
	border: 0;
	color: #ffffff;
}
.c-modal .modal-footer {
	padding: 10px;
}
.c-modal .c-lineDiv .form-group {
	margin-bottom: 10px;
}
.c-modal .c-lineDiv .form-group label {
	margin-bottom: 2px;
	font-size: 10px;
	line-height: 12px;
}

/* 2.1.1. Select box */
select {
	height: 34px;
	padding: 8px 0 8px 8px;
}

select option {
	padding: 2px 10px;
}

.selector {
	position: relative;
	min-width: 60px;
	line-height: 0;
}
.selector select {
	position: absolute;
	z-index: 1;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	width: 100%;
	-webkit-appearance: menulist-button;
	line-height: 30px;
}
.selector span.c-custom-select {
	color: #999;
	display: inline-block;
	line-height: 32px;
	padding: 0 10px;
	position: relative;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
.selector span.c-custom-select:before {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	background: #fdb714;
	width: 24px;
	height: 100%;
}
.selector span.c-custom-select:after {
	position: absolute;
	right: 8px;
	top: 15px;
	border-color: #fff transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	content: "";
}

.selector.sm select,
.selector.sm span.c-custom-select {
	height: 26px;
	line-height: 26px;
}
.selector.sm span.c-custom-select:after {
	top: 10px;
}
.c-midHeading {
	display: block;
	font-family: "Saira Condensed", sans-serif;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 600;
	color: #69a1d4;
	padding: 2px 2px 1px 2px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	line-height: 11px;
	background: -moz-linear-gradient(
		left,
		rgba(109, 172, 230, 0.35) 10%,
		rgba(1, 2, 3, 0) 87%,
		rgba(0, 0, 0, 0) 88%
	);
	background: -webkit-linear-gradient(
		left,
		rgba(109, 172, 230, 0.35) 10%,
		rgba(1, 2, 3, 0) 87%,
		rgba(0, 0, 0, 0) 88%
	);
	background: linear-gradient(
		to right,
		rgba(109, 172, 230, 0.35) 10%,
		rgba(1, 2, 3, 0) 87%,
		rgba(0, 0, 0, 0) 88%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#596dace6', endColorstr='#00000000',GradientType=1 );
}
.c-customeBtn {
	border: 0;
	outline: none;
	display: inline-block;
	padding: 3px 10px 3px 30px;
	margin-right: 5px;
	font-size: 10px;
	text-transform: uppercase;
	color: #fff !important;
	background-color: #6dace6;
	height: auto;
	line-height: 19px;
	position: relative;
	text-decoration: none !important;
	letter-spacing: 0.5px;
	border-radius: 0;
}
.c-customeBtn .icon {
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	background-color: #597ea0;
	height: 25px;
	width: 25px;
	padding: 6px 5px;
}
.c-customeBtn.xs {
	padding: 4px 5px 4px 25px;
	font-size: 9px;
	line-height: 12px;
}
.c-customeBtn.xs .icon {
	font-size: 14px;
	line-height: 14px;
	height: 19px;
	width: 19px;
	padding: 3px 2px 3px;
}

.nytCount {
	float: right;
	padding: 2px 5px;
	font-size: 11px;
	background: #6dace6;
	color: #ffffff;
	font-weight: 600;
	line-height: 12px;
	border-radius: 3px;
	position: relative;
	top: 2px;
}
/*# sourceMappingURL=theme.css.map */
.inHeader .select2-container--default {
	width: auto !important;
}
.inHeader .select2-container--default .select2-selection--single {
	background-color: transparent;
	border: 0;
}
.inHeader
	.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	font-family: "Inter", sans-serif;
	color: #ffffff !important;
}
.inHeader
	.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	border-color: #fff transparent transparent transparent !important;
}
/* Main menu list */
.menu-list {
	list-style: none;
	margin: 0;
	display: flex;
	gap: 30px;
	position: relative;
	background-color: #fff;
}

/* Top-level menu item */
.menu-item {
	position: relative;
}

/* Top-level link */
.menu-link {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	padding: 12px 16px;
	display: block;
	transition: color 0.3s ease;
}

.menu-link:hover {
	color: #007bff;
}

/* Dropdown (submenu) */
.mobileSubmenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
	z-index: 1000;
}

/* Show submenu on hover */
.menu-item:hover .mobileSubmenu {
	display: block;
}

/* Submenu links */
.mobileSubmenu-link {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #444;
	font-size: 15px;
	transition: background 0.2s, color 0.2s;
}

.mobileSubmenu-link:hover {
	background-color: #f5f5f5;
	color: #007bff;
}
