/**
* Template Name: Bikanervala
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,500;6..12,600;6..12,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:wght@400;700&display=swap');

body {
	font-family: 'Nunito Sans', sans-serif;
	color: #444444;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito Sans', sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #ef4036;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

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

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

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ef4036;
	border-top-color: #ffe9e3;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}

}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}

}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width:768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}

}

/* 6.1 Header
--------------------------------------------------------------*/

/* Preloader */
.preloader-wrapper {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999900;
	background: #fff;
}

.preloader-wrapper .preloader {
	margin: 20% auto 0;
	transform: translateZ(0);
}

.preloader:before, .preloader:after {
	content: '';
	position: absolute;
	top: 0;
}

.preloader:before, .preloader:after, .preloader {
	border-radius: 50%;
	width: 2em;
	height: 2em;
	animation: animation 1.2s infinite ease-in-out;
}

.preloader {
	animation-delay: -0.16s;
}

.preloader:before {
	left: -3.5em;
	animation-delay: -0.32s;
}

.preloader:after {
	left: 3.5em;
}

@keyframes animation {
	0%, 80%, 100% {
		box-shadow: 0 2em 0 -1em #333;
	}

	40% {
		box-shadow: 0 2em 0 0 #333;
	}

}

.main-logo img {
    width: auto;
    position: absolute;
    top: 0;
}

.headertop {
	background-color: #e1ecf2;
	color: #314f8f;
	font-weight: 500;
	text-align: center;
	font-size: 0.9rem;
}

.menu-title {
	font-size: 2.8rem;
    text-align: center;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-bg {
	background-color: rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}

.tax-menu-category #header {
	background-color:rgba(0,0,0,0.5);
}

/* Nav Nav */
.navmenu {
	position: relative;
	width: 100%;
	z-index: 9900;
	line-height: normal;
}

.navmenu a {
	color: #777;
}

.navmenu ul {
	margin: 0;
	padding: 0;
	text-align: right;
}

.navmenu li {
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	line-height: normal;
	vertical-align: middle;
}

.navmenu li a {
	padding: 5px 10px;
	display: block;
	text-decoration: none;
	color: #777;
	font-size: inherit;
	font-family: inherit;
	box-sizing: border-box;     /* -webkit-transition: all .3s ease-out;
			-moz-transition: all .3s ease-out;
			transition: all .3s ease-out; */
	font-size: 1rem;
}

.navmenu.light li a:hover {
	color: #fff;
}

/* main level */
.navmenu > ul > li {
	display: inline-block;
}

.navmenu > ul > li > a {
	padding: 2px 15px;
	font-size: 1.1rem;
	font-weight: 400;
}

.sub-menu {
	position: relative;     /** box-shadow: 0 .5rem .5rem rgba(0, 0, 0, .15) !important **/
}

/* first level dd */
.navmenu ul ul {
	top: auto;
	width: 220px;
	position: absolute;
	z-index: 9900;
	text-align: left;
	display: none;
	background: #ddd;
}

.navmenu li li {
	display: block;
}

/* second level dd */
.navmenu ul ul ul {
	top: 0;     /* dd animtion - change to auto to remove */
	left: 220px;
}

.navmenu > ul > li:hover > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	top: 0;
}

.navmenu ul ul li {
	border-bottom: none;
}

.navmenu.light ul ul li:hover {
	color: #000;
}

.navmenu.light ul ul li:hover a {
	color: #000;
}

/* .drop-left */
.navmenu > ul > li.drop-left > ul {
	right: 0;
}

.navmenu li.drop-left ul ul {
	left: auto;
	right: 220px;
}

/* light theme */
.navmenu.light {
	background: none;
}

.navmenu.light a {
	color: #000;
}

.navmenu.light ul ul {
	background: rgba(255, 255, 255, 1);
}

.navmenu.light li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}

.navmenu.light li a:hover {
	color: #ffffff;
	background: #cd232c;
	border-radius: 50px;
	padding: 2px 15px;
}

/* dark theme */
.navmenu.dark {
	background: rgba(0, 0, 0, 1);
}

.navmenu.dark a {
	color: #FFF;
}

.navmenu.dark ul ul {
	background: rgba(0, 0, 0, 1);
}

.navmenu.dark li a {
	color: #FFF;
}

/* sticky nav */
.navmenu.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}

/* only used when 'scrollbarFix' is set to true in the js. This fixes horizontal scrollbar caused by the dd menus that are very long.*/
body.navmenu-noscroll-x {
	overflow-x: hidden;
}

/* general styling */
.navmenu li.has-sub > a:after {
	content: '';
	margin-left: 10px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #FFF;
	display: inline-block;
}

.navmenu li li.has-sub > a:after {
	margin-left: 10px;
	float: right;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #FFF;
	position: relative;
	top: 4px;
}

.navmenu li.drop-left li.has-sub > a:after {
	float: left;
	margin-right: 10px;
	border-left: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 6px solid #FFF;
}

.navmenu.hide-arrows li.has-sub > a:after, .navmenu.hide-arrows li li.has-sub > a:after, .navmenu.hide-arrows li.drop-left li.has-sub > a:after {
	display: none;
}

.navmenu .menu-toggle, .navmenu .close-menu, .navmenu .call-btn-mobile, .navmenu .location-btn-mobile {
	display: none;
	text-transform: uppercase;
	text-decoration: none;
}

.navmenu .dd-toggle {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	width: 48px;
	height: 48px;
	text-align: center;
	z-index: 9999;
	border: 0;
}

.navmenu.desktop li.has-sub a {

	/** padding-right: 5px; **/
}

.navmenu.desktop.hide-arrows li.has-sub a {
	padding-right: 15px;
}

.navmenu.mobile > ul > li > a.dd-toggle {
	padding: 0;
}

.navmenu li.call-btn-mobile, .navmenu li.location-btn-mobile {
	display: none;
}

/* svg icons */
.navmenu svg {
	fill: currentColor;
	width: 1em;
	height: 1em;
	position: relative;
	top: 2px;
	color: #081a7d;
}

/* svg icons */
.navmenu a.dd-toggle .icon-plus {
	box-sizing: border-box;
	transition: transform 0.3s;
	width: 12px;
	height: 100%;
	position: relative;
	vertical-align: middle;
	display: inline-block;
}

.navmenu a.dd-toggle .icon-plus:before {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	border-bottom: solid 3px #777;
	position: absolute;
	top: 50%;
	transform: rotate(90deg);
	transition: width 0.3s;
}

.navmenu a.dd-toggle .icon-plus:after {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	top: 50%;
	border-bottom: solid 3px #777;
	position: absolute;
}

.navmenu li.open > a.dd-toggle .icon-plus {
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.navmenu.light a.dd-toggle .icon-plus:before {
	border-color: #000;
}

.navmenu.light a.dd-toggle .icon-plus:after {
	border-color: #000;
}

.navmenu.dark a.dd-toggle .icon-plus:before {
	border-color: #FFF;
}

.navmenu.dark a.dd-toggle .icon-plus:after {
	border-color: #FFF;
}

.navmenu .icon-close {
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	position: relative;
	display: inline-block;
	margin-right:5px; 
}

.navmenu .icon-close:before {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	border-bottom: solid 3px #777;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
}

.navmenu .icon-close:after {
	content: '';
	display: block;
	width: 12px;
	height: 0px;
	top: 50%;
	border-bottom: solid 3px #777;
	position: absolute;
	transform: rotate(-45deg);
}

.navmenu.light .icon-close:before {
	border-color: #000;
}

.navmenu.light .icon-close:after {
	border-color: #000;
}

.navmenu.dark .icon-close:before {
	border-color: #FFF;
}

.navmenu.dark .icon-close:after {
	border-color: #FFF;
}

/* mobile nav */
.navmenu .menu-toggle, .navmenu .call-btn-mobile, .navmenu .location-btn-mobile, .navmenu .close-menu {
	padding: 15px;
	box-sizing: border-box;
}

.navmenu .menu-toggle span.bars {
	display: inline-block;
	margin-right: 7px;
	position: relative;
	top: 0px;
}

.navmenu .menu-toggle span.bars span {
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 6px;
	background: #777;
	margin: 0 0 3px;
}

.navmenu .full {
	width: 100%;
}

.navmenu .half {
	width: 50%;
}

.navmenu .third {
	width: 33%;
	text-align: center;
}

.navmenu .location-btn-mobile.third {
	text-align: center;
}

.navmenu .location-btn-mobile.half {
	text-align: right;
}

.navmenu.light .third, .navmenu.light .half {
	border-left: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.light.left .third, .navmenu.light.left .half {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.light.right .third, .navmenu.light.right .half {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.light .third:first-child, .navmenu.light .half:first-child {
	border-left: 0;
}

.navmenu.dark .third, .navmenu.dark .half {
	border-left: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.dark.left .third, .navmenu.dark.left .half {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.dark.right .third, .navmenu.dark.right .half {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.light.left .menu-toggle, .navmenu.light.right .menu-toggle {
	border-bottom: 0;
}

.navmenu.dark.left .menu-toggle, .navmenu.dark.right .menu-toggle {
	border-bottom: 0;
}

.navmenu.dark .third:first-child, .navmenu.dark .half:first-child {
	border-left: 0;
}

.navmenu.light .menu-toggle span.bars span {
	background: #fff;
}

.navmenu.dark .menu-toggle span.bars span {
	background: #FFF;
}

.navmenu.mobile {

	/* position: static; */
	position: relative;
	z-index: 999;
}

.navmenu.mobile.fixed {
	position: static;
}

.navmenu.mobile ul {
	position: relative;
	display: none;
}

.navmenu.mobile.active {
	padding-bottom: 0;
}

.navmenu.mobile.active > ul {
	display: block;
}

.navmenu.mobile ul {
	text-align: left;
}

.navmenu.mobile > ul > li {
	display: block;
}

.navmenu.mobile > ul > li > a {
	padding: 15px;
}

.navmenu.mobile ul {
	background: rgba(221, 221, 221, 1);
}

.navmenu.mobile ul ul {
	position: relative;
	opacity: 1;
	visibility: visible;
	width: auto;
	display: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: color 0 ease-in;
	transition: none;
}

.navmenu.mobile ul ul ul {
	left: auto;
	top: auto;
}

.navmenu.mobile li.drop-left ul ul {
	right: auto;
}

.navmenu.mobile li a {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.mobile > ul {
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.navmenu.mobile.light li a {
	border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.mobile.light > ul {
	border-top: 1px solid rgba(0, 0, 0, .15);
}

.navmenu.mobile li a.dd-toggle {
	border: 0;
}

.navmenu.mobile.light li a.dd-toggle {
	border: 0;
}

.navmenu.mobile .menu-toggle, .navmenu.mobile .dd-toggle, .navmenu.mobile .close-menu, .navmenu.mobile .call-btn-mobile, .navmenu.mobile .location-btn-mobile {
	display: inline-block;
}

.navmenu.mobile li.call-btn-mobile {
	border-right: 1px solid rgba(255, 255, 255, .1);
	box-sizing: border-box;
}

.navmenu.mobile li.call-btn-mobile, .navmenu.mobile li.location-btn-mobile {
	display: inline-block;
	width: 50%;
	text-transform: uppercase;
	text-align: center;
}

.navmenu.mobile li.call-btn-mobile.full, .navmenu.mobile li.location-btn-mobile.full {
	display: block;
	width: 100%;
	text-transform: uppercase;
	border-right: 0;
	text-align: left;
}

.navmenu.mobile.light ul {
	background: rgba(255, 255, 255, 1);
}

.navmenu.mobile.dark ul {
	background: rgba(0, 0, 0, 1);
}

.navmenu.mobile.dark ul ul {
	background: rgba(255, 255, 255, .08);
}

.navmenu.mobile.light li.call-btn-mobile {
	border-right: 1px solid rgba(0, 0, 0, .1);
}

.navmenu.mobile.top {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
}

.navmenu.mobile li.has-sub > a:after, .navmenu.mobile li li.has-sub > a:after, .navmenu.mobile li.drop-left li.has-sub > a:after {
	display: none;
}

/* left and right positions */
.navmenu.mobile.right > ul, .navmenu.mobile.left > ul {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 280px;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.navmenu.mobile.right > ul {
	right: 0;
}

.navmenu.mobile.right .close-menu, .navmenu.mobile.left .close-menu {
	display: inline-block;
	text-align: right;
	    font-size: 1rem;
    font-weight: 600;
}

.navmenu.mobile.left > ul {
	left: 0;
}

.navmenu.mobile.right .location-btn-mobile.half, .navmenu.mobile.right .call-btn-mobile.half, .navmenu.mobile.right .close-menu.half {
	text-align: center;
}

.navmenu.mobile.right .location-btn-mobile.third, .navmenu.mobile.right .call-btn-mobile.third, .navmenu.mobile.right .close-menu.third {
	text-align: center;
}

.navmenu.mobile.left .location-btn-mobile.half, .navmenu.mobile.left .call-btn-mobile.half, .navmenu.mobile.left .close-menu.half {
	text-align: center;
}

.navmenu.mobile.left .location-btn-mobile.third, .navmenu.mobile.left .call-btn-mobile.third, .navmenu.mobile.left .close-menu.third {
	text-align: center;
}

.navmenu.mobile.left .menu-toggle.half, .navmenu.mobile.left .menu-toggle.third, .navmenu.mobile.right .menu-toggle.half, .navmenu.mobile.right .menu-toggle.third {
	text-align: left;
}

.navmenu.mobile.left .close-menu.third span, .navmenu.mobile.right .close-menu.third span {
	display: none;
}

.navmenu.mobile.left .close-menu.third {
	font-size: 1rem;
	font-weight: 600;
}

/* left and right positions */

/* mega dd */
.navmenu.desktop li.mega ul ul {
	background: none;
}

.navmenu.desktop li.mega li {
	display: inline-block;
	vertical-align: top;
	margin-left: -4px;
}

.navmenu.desktop li.mega li li {
	display: block;
	position: relative;
	left: 4px;
}

.navmenu.desktop li.mega ul ul {
	width: auto;
}

.navmenu.desktop > ul > li.mega {
	position: inherit;
}

.navmenu.desktop > ul > li > ul {
	box-shadow: 0 .9rem 1rem rgba(0, 0, 0, .15) !important;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 10px;
}

.navmenu > ul > li.single-dropdown ul li {
	margin-bottom: 5px;
}

.navmenu > ul > li.single-dropdown ul li a:hover {
	background-color: #02319b;
	Color: #fff;
	border-radius: 50px;
}

.navmenu.desktop > ul > li.mega > ul {
	width: 100%;
	white-space: nowrap;
	margin: 0 auto;
	padding: 0px 0px 0px 50px;
	box-shadow: 0 .9rem 1rem rgba(0, 0, 0, .15) !important;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: hidden;
}

.navmenu.desktop > ul > li.mega > ul li.has-sub ul {
	display: block;
	position: relative;
	left: auto;
}

.navmenu.desktop > ul > li.mega > ul > li {
	padding-bottom: 55px;
	padding-top: 20px;
	width: 18% !important;
	margin: 0 auto;
	white-space: nowrap;
	display: inline-block;
}

.navmenu.desktop > ul > li.mega > ul > li:nth-child(3) {
	width: 13% !important;
}

.navmenu.desktop > ul > li.mega > ul > li:nth-child(5) {
	padding-left: 40px;
}

.navmenu.desktop li.mega li li a {
	padding: 5px 15px;
}

.navmenu.desktop li.mega li.has-sub a:after {
	display: none;
}

.navmenu.desktop > ul > li.mega > ul li.has-sub:nth-child(5) ul {
	width: 150px;
}

.navmenu.desktop > ul > li.mega > ul > li > a {
	color: #17479e;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.navmenu.desktop > ul > li.mega > ul > li > ul li:hover {
	background-color: #02319b;
	Color: #fff;
	border-radius: 50px;
	padding: 0px 5px 0px 5px;
	display: inline-block;
	width: 100%;
}

.navmenu.desktop > ul > li.mega > ul > li > ul li:hover a {
	color: #fff;
}

.share-icon {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f3f3f3;
	color: #1b2682;
	font-size: 0.9rem;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
	border-radius: 50px;
}

/* mega dd */

/* Fallback for slow javascript load */
@media only screen and (max-width:768px) {
	.navmenu {
		overflow: hidden;
		display: block;
	}

	.navmenu ul {
		position: relative;
		display: none;
	}

}

/* mobile nav */
@media only screen and (max-width:420px) {
	.navmenu.mobile .call-btn-mobile.third span, .navmenu.mobile .location-btn-mobile.third span {
		display: none;
	}

}

@media (min-width:991px) {
	.navmenu li.has-sub > a:after {
		display: none;
	}

}

.sub-menu-toggle {
	display: none;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 0;
	position: fixed;
	width: 100%;
}

#header.header-scrolled, #header.header-inner-pages {
	background-color: rgb(218 37 28);
	padding: 10px 0;
}

#header.header-scrolled .main-logo img { width: 90px; top:0; }

#header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px;
}

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

#header .logo img {
	max-height: 60px;
}

.header-top ul {
	margin: 7px 0 0 0;
	padding: 0;
	text-align: right;
}

.header-top ul li {
	list-style: none;
	display: inline-block;
}

.header-top ul li a {
	color: #fff;
	padding: 2px 5px;
}

.header-scrolled .header-top {
	display: none;
}

.navmenu.light li .enquirynow-btn a {
	background-color: #23974e;
	padding: 5px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.9rem;
}

.navmenu.light li .enquirynow-btn a:hover {
	color: #fff;
	background-color: #cd232c;
}


/*-------------------
3.10. Animation
-------------------*/

.ripple-animation, .play-btn:after, .play-btn:before {
	-webkit-animation-duration: var(--ripple-ani-duration);
	animation-duration: var(--ripple-ani-duration);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: ripple;
	animation-name: ripple;
}

@-webkit-keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}

	30% {
		opacity: 0.4;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}

}

@keyframes ripple {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}

	30% {
		opacity: 0.4;
	}

	100% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 0;
	}

}

.movingX {
	-webkit-animation: movingX 8s linear infinite;
	animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

@keyframes movingX {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

.moving {
	-webkit-animation: moving 8s linear infinite;
	animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

@keyframes moving {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	50% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

.jump {
	-webkit-animation: jumpAni 7s linear infinite;
	animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

@keyframes jumpAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

.jump-reverse {
	-webkit-animation: jumpReverseAni 7s linear infinite;
	animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

@keyframes jumpReverseAni {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

.spin {
	-webkit-animation: spin 15s linear infinite;
	animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg);
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(40deg);
		transform: rotate(40deg);
	}

	100% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

}

@-webkit-keyframes animate-positive {
	0% {
		width: 0;
	}

}

@keyframes animate-positive {
	0% {
		width: 0;
	}

}

.scalein.th-animated {
	--animation-name: scalein;
}

.slidetopleft.th-animated {
	--animation-name: slidetopleft;
}

.slidebottomright.th-animated {
	--animation-name: slidebottomright;
}

.slideinleft.th-animated {
	--animation-name: slideinleft;
}

.slideinright.th-animated {
	--animation-name: slideinright;
}

.slideinup.th-animated {
	--animation-name: slideinup;
}

.slideindown.th-animated {
	--animation-name: slideindown;
}

.rollinleft.th-animated {
	--animation-name: rollinleft;
}

.rollinright.th-animated {
	--animation-name: rollinright;
}

.scalein, .slidetopleft, .slidebottomright, .slideinleft, .slideinright, .slideindown, .slideinup, .rollinleft, .rollinright {
	opacity: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-name: var(--animation-name);
	animation-name: var(--animation-name);
}

.th-animated {
	opacity: 1;
}

@-webkit-keyframes slideinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

@keyframes slideinup {
	0% {
		opacity: 0;
		-webkit-transform: translateY(70px);
		transform: translateY(70px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

@-webkit-keyframes slideinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(70px);
		transform: translateX(70px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

@keyframes slideinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(70px);
		transform: translateX(70px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

@-webkit-keyframes slideindown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

@keyframes slideindown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-70px);
		transform: translateY(-70px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

}

@-webkit-keyframes slideinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-70px);
		transform: translateX(-70px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

@keyframes slideinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-70px);
		transform: translateX(-70px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

}

@-webkit-keyframes slidebottomright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px) translateY(100px);
		transform: translateX(100px) translateY(100px);
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0);
	}

}

@keyframes slidebottomright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px) translateY(100px);
		transform: translateX(100px) translateY(100px);
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0);
	}

}

@-webkit-keyframes slidetopleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px) translateY(-100px);
		transform: translateX(-100px) translateY(-100px);
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0);
	}

}

@keyframes slidetopleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100px) translateY(-100px);
		transform: translateX(-100px) translateY(-100px);
	}

	100% {
		-webkit-transform: translateX(0) translateY(0);
		transform: translateX(0) translateY(0);
	}

}

@-webkit-keyframes scalein {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

}

@keyframes scalein {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

}

@-webkit-keyframes rollinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}

}

@keyframes rollinleft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}

}

@-webkit-keyframes rollinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}

}

@keyframes rollinright {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}

	to {
		-webkit-transform: translateX(0) rotate(0deg);
		transform: translateX(0) rotate(0deg);
	}

}



/*--------------------------------------------------------------
  # Banner Section
  --------------------------------------------------------------*/
.mainBanner .swiper-button-next, .swiper-button-prev {
	color: #2a269f;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 1.2rem;
	color: #fff;
}

.slide-content {
	position: absolute;
	left: 125px;
	z-index: 999999;
	color: #fff;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
}

.slide-content h2 {
	font-weight: 900;
	font-size: 4.5rem;
}

.slide-content .enquirynow-btn {
	background-color: #fff;
	color: #000;
	padding: 5px 15px;
	text-transform: uppercase;
	font-weight: 800;
	border-radius: 50px;
	width: 200px;
	text-align: center;
}

.slide-content h2 span {
	font-weight: 100;
}

.mySwiper .swiper-slide {
	position: relative;
	text-align: center;
}

.mySwiper .swiper-slide img {
	text-align: center;
	margin: 0 auto;
}

.section-bg {
	background-color: #f0f4f8;
}

section {
	padding: 50px 0px 60px 0px;
	overflow: hidden;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #5c8eb0;
	font-family: "Poppins", sans-serif;
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: #ff8664;
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	color: #263d4d;
}

.section-heading {
	text-align: center;
}

.section-heading span {
	background-color: #e60449;
	border-radius: 5px;
	color: #fff;
	font-weight: 600;
	padding: 5px 10px;
	font-size: 0.9rem;
	margin-bottom: 5px;
	display: inline-block;
	text-transform: uppercase;
}

.sectiontitle {
	color: #000;
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
  # banner-buttom Section
  --------------------------------------------------------------*/

.banner-bottom {
	z-index: 9;
	margin-top: 0;
	position: relative;
}

.banner-bottom h2 {
	font-size: 35px;
	color: #fff;
	font-weight: 300;
}

.banner-bottom h2 span {
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
}

.banner-bottom .cate-img {
  overflow: hidden;
}

.banner-bottom .foodmenu-col:hover .cate-img img { -webkit-transform: scale(1.1);
  transform: scale(1.1); }

  .banner-bottom .foodmenu-col .cate-img img {
    width: 100%;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
   }

.foodmenu-col .location-detail {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.foodmenu-col .food-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	text-align: center;
}

.location-detail p {
	color: #fff;
	font-size: 18px;
}

.location-detail .Reservation-button {
  color: #fff;
  background: #eb0029;
  border-radius: 50px;
  padding: 10px 40px;
  font-weight: 700;
  font-size: 20px;
}

.location-detail .Reservation-button:hover {
  background: #23974e;
}


/*--------------------------------------------------------------
  # Welcome Section
  --------------------------------------------------------------*/

.welcome-content .title-col {
    position: relative;
    text-align: left;
    width: 100%;
    height: 135px;
	  margin-bottom:0px;
}
.welcome-content h1 {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    color:#1ec9f4;
    line-height: 35px;
    padding-top:13px;
}

.welcome-content h1 span { color:#2f2f2f; }

.welcome-content .titleshadwo {
  color: #f5f5f5;
  font-size: 132px;
  text-transform: uppercase;
  position: absolute;
  top: 25px;
  z-index: -1;
  left: -36px;
  right: 0;
  font-weight: 800;
  line-height: 60px;
}


.welcome-content {
	padding-top: 0px;
  font-size: 1.1rem;
}

.welcome-content .dmb-gray {
	color: #ebebeb;
	font-size: 75px;
	font-weight: 800;
}

.welcome-content h1 {
	font-size: 30px;
	color: #000000;
	text-transform: uppercase;
	font-weight: 800;
	margin-top: 15px;
	margin-left: 0;
}

.welcome-content h1 .WELCOME {
	color: #2f2f2f;
	font-size: 25px;
  font-weight: 100;
}

.welcome-content h1 .red {
	color: #eb0029;
}

.banner-bottom::before {
  content: '';
  background-image: url(../images/burger-bg-icon.png);
  background-repeat: no-repeat;
  left: 0;
  position: absolute;
  width: 198px;
  height: 160px;
  bottom: 0;
}

.banner-bottom::after {
  content: '';
  background-image: url(../images/cake-bite-icon.png);
  background-repeat: no-repeat;
  right: 0;
  position: absolute;
  width: 198px;
  height: 160px;
  bottom: 0;
  z-index: -1;
}


/*--------------------------------------------------------------
  # selling-dishes Section
  --------------------------------------------------------------*/


.selling-dishes {
  background-color: #f4f1ea;
}

.selling-dishes h2 {
	font-weight: 800;
	color: #111111;
	text-align: center;
}

.northindian-col {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 24px;
}

.northindian-col .food-img {
	text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.northindian-col .food-name {
	/* bottom: 0; */
	/* left: 0; */
	/* right: 0; */
	/* padding: 15px; */
	text-align: center;
	top: -17px;
	position: relative;
}

.product-transition {
  transition: all .35s ease-in-out;
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.northindian-col:hover .product-transition:before {
  height: calc(100%);
}

.product-transition:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(60%);
  border-radius: 15px;
  background-color: #fff;
  transition: all .35s ease-in-out;
}

.selling-dishes .northindian-food {
	color: #eb0029;
	font-weight: 600;
	font-size: 20px;
}

.selling-dishes .dishes-name {
	font-size: 22px;
	color: #181717;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 25px;
	margin-top: 10px;
}

.button-sec {
	text-align: center;
	background-color: #eb0029;
	margin: 0 auto;
	position: relative;
	padding: 10px 30px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 50px;
	margin-top: 50px;
	display: inline-block;
	max-width: 200px;
}

.common-btn {
  background-color: #eb0029;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.3rem;
  color: #fff;
  transition: all 0.5s;
  position: relative;
  white-space: nowrap;
  width: auto;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 700;
}

.common-btn::after {
  content: "";
  background-image: url(../images/foodicon1.png);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 70%;
  top: 5%;
  right: 5%;
  bottom: 0;
  opacity: 0;
}
.common-btn:hover {
  background: #eb0029;
  transition: all 0.5s;
  padding: 12px 5.5rem 12px 3.5rem;
  color: #fff;
}
.common-btn:hover::after {
  opacity: 1;
  transition: all 0.5s;
}

/*--------------------------------------------------------------
  # booking-section
  --------------------------------------------------------------*/
.booking-col {
	background-image: url(../images/booking-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding: 180px 0px;
}

.booking-form .wpcf7-submit {
  background-color: #eb0029 !important;
  color: #fff!important;
  text-transform: uppercase;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 50px;
}

.booking-form .wpcf7-submit:hover {
  background-color: #23974e!important;
  color: #fff!important;
  border-color: #23974e!important;
}

.booking-col .form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2.5;
	margin-bottom: 20px;
  border-radius: 50px;
  border: transparent solid 2px;
}

.booking-col .form-control:focus {
  border: #eb0029 solid 2px;
}

.booking-col textarea.form-control {
  border-radius: 15px;
  height: 150px;
}
.wpcf7-date {
    width: 100%;
    border-radius: 50px !important;
    margin-bottom: 15px !important;
}

.booking-form br { display:none!important; }

.booking-form .wpcf7-response-output {
	color: #fff;
}

/*---------------------------------------
Food Menu
-----------------------------------------*/

.title-area {
	text-align: center;
}

.subtitle-selector {
	color: #EB0029 !important;
}

.sub-title {
	padding-top: 0;
	margin-top: -0.3em;
}

.sub-title {
	display: inline-block;
	font-size: 25px;
	font-weight: 700;
	color: 000;
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-top: 5px;
	position: relative;
  font-family: 'Lobster Two', sans-serif;
}

.title-area .sec-title {
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #000;
	font-weight: 700;
}

.sec-title {
	margin-top: -0.23em;
	text-transform: capitalize;
}

.menu-tab-area {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;     /* Large devices */
}

@media (max-width:1199px) {
	.menu-tab-area {
		grid-template-columns: repeat(1, 1fr);
	}

}

.menu-tabs .nav-link.active, .menu-tabs .nav-link:hover {
	color: #eb0029;
	background-color: transparent;
	border: none;
	border-right: 1px dashed #A5A5A5;
}

.food-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.food-menu:last-child {
	border-bottom: none;
}

.food-menu-wrap {
	border: 1px dashed #D2D2D2;
	padding: 0 30px;
	border-radius: 10px;
	background-color: #fff;
}

.food-menu_content {
	width: calc(100% - 100px);
	position: relative;
}

.food-menu_img {
	min-width: 92px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	position: relative;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	background: var(--white-color);
	-webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
	padding: 5px;
	z-index: 2;
	margin-right: 10px;
}

.food-menu_img:before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid #fff;
	border-radius: inherit;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.food-menu_img img {
	width: 100%;
	height: auto;
}

.food-menu .product-rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 14px;
	margin-bottom: -0.6em;
}

.food-menu .star-rating {
	margin-top: 4px;
	width: 90px;
}

.food-menu .star-rating:before {
	color: var(--theme-color);
}

.food-menu .star-rating span:before {
	color: var(--theme-color);
}

.food-menu_title {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0px;
    margin-top: 0;
    color: #010f1c;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
}

.food-menu_title span { background-color:#fff; }

.food-menu_title:before {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 0;
	border-bottom: 3px dotted;
	width: 100%;
	z-index: -1;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.food-menu_title:hover {
	color: #eb0029;
}

.food-menu_title a {
	color: inherit;
	background-color: #fff;
}

.food-menu_price {
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-color: #eb0029;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    padding: 0px 12px;
    margin-top: 0px;
}

.food-menu_desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 0;
}

.food-menu:hover {
	border-color: var(--theme-color) !important;
}

.food-menu:hover .food-menu_img:before {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.menu-tabs {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: none;
	margin: 0 -30px 60px -30px;
}

.menu-tabs .nav-link {
	background-color: transparent;
	color: #000;
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	display: block;
	border: none;
	border-right: 1px dashed #A5A5A5;
	padding: 0px 30px;
	border-radius: 0;
}

.menu-tabs .nav-link.active, .menu-tabs .nav-link:hover {
	color: #eb0029;
	background-color: transparent;
	border: none;
	border-right: 1px dashed #A5A5A5;
}

.menu-tabs .nav-link img {
	display: block;
	margin: auto;
	margin-bottom: 12px;
}

.menu-tabs .nav-link:last-child {
	border-right: none !important;
}

/* Small devices */
@media (max-width:767px) {
	.menu-tabs {
		margin: 0 -12px 40px -12px;
	}

	.menu-tabs .nav-link {
		font-size: 0;
		padding: 0 12px;
		height: 40px;
	}

	.menu-tabs .nav-link img {
		margin-bottom: 0;
	}

}

/* Extra small devices */
@media (max-width:575px) {
	.food-menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}

	.food-menu_price {
		-ms-flex-item-align: center;
		align-self: center;
	}

	.food-menu_content {
		width: 100%;
	}

	.food-menu_title a {
		padding: 0 5px;
	}

	.food-menu-wrap {
		padding: 0 15px;
	}

	.food-menu .product-rating {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

}

.food-menu-list .food-menu:first-child {
	margin-top: 0;
}

.food-menu-list .food-menu:last-child {
	padding-bottom: 0;
}

.food-menu-list .food-menu_title a {
	background-color: var(--smoke-color2);
}

/* Medium Large devices */
@media (max-width:1299px) {
	.food-menu-list .food-menu {
		gap: 4px;
	}

}

/* Large devices */
@media (max-width:1199px) {
	.food-menu-list .food-menu {
		gap: 16px;
	}

	.menu-image-box {
		margin: 30px auto;
		max-width: 400px;
	}

}

/* Extra small devices */
@media (max-width:575px) {
	.food-menu-list .food-menu_title:before {
		left: 10%;
		width: 80%;
	}

}

.food-menu-area {
	max-width: 1380px;
	margin: 0 auto;
	background-color: var(--smoke-color2);
	border-radius: 20px;
	padding: 80px 0;     /* Medium Large devices */
}

@media (max-width:1299px) {
	.food-menu-area {
		border-radius: 0;
	}

}

.menu-image-card {
	border-radius: 8px;
	padding: 40px;
}

.menu-image-card .img1 {
	text-align: center;
	margin-top: -35px;     /* Large devices */
}

@media (max-width:1199px) {
	.menu-image-card .img1 {
		margin-top: -80px;
	}

}

.menu-image-card .discount_style4 {
	margin-left: 10px;
}

/* Medium devices */
@media (max-width:991px) {
	.border-md .food-menu:last-child {
		padding-bottom: 30px;
		border-bottom: 1px dashed #D2D2D2;
		margin-bottom: 30px;
	}

}

.food-menu-header {
	padding: 32px 40px;
}

.food-menu-header .title {
	font-size: 24px;
	color: var(--white-color);
	line-height: 34px;
	margin-bottom: 5px;
	background-size: contain;
	display: inline-block;
	min-width: 192px;
	padding-left: 10px;
	margin-left: -12px;
}

.food-menu-header .text {
	color: var(--white-color);
	margin-bottom: 0;
}

.food-menu-board .food-menu:last-child {
	border-bottom: 1px dashed #D2D2D2;
}

.food-menu-board .food-menu_img {
	min-width: 80px;
	width: 80px;
	height: 80px;
	margin-right: 0;
}

.food-menu-board .food-menu_title {
	font-size: 20px;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Blog
  --------------------------------------------------------------*/

.blog {
	background-color: #e1eeff;
}

.post-section {
	background-color: #fff;
}

.blog-content p.blog-para {
	min-height: 170px;
}

.blog-section {
	background-image: url(../images/blog-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.blog-col {
	background-color: #fff;
}

.blog-cate {
	color: #f94d1b;
	font-weight: 700;
}

.blog-conents h4 {
	font-weight: 700;
	font-size: 1.2rem;
}

.readmore-btn {
	color: #f94d1b;
	font-weight: 600;
}

.blog-date {
	position: absolute;
	bottom: -45px;
	right: 11px;
	background-color: #23974e;
	color: #fff;
	font-weight: 800;
	text-align: center;
	padding: 15px;
	line-height: 19px;
}

/*--------------------------------------------------------------
  # Internal Pages
  --------------------------------------------------------------*/


.internal-header {
	background: #f1f1f1;
	box-shadow: inset 0 0 10px #e3e3e3;
	padding: 20px 0px;
}

.internal-header h1 {
	font-size: 1.8rem !important;
	padding-left: 30px;
	color: #243092;
	font-weight: 600 !important;
}

.banner-heading {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
	left: 0;
	right: 0;
}

.banner-heading::before {
	content: '';
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}

.banner-heading h1 {
	color: #fff;
	font-size: 4rem;
}

h3.text-center {
	Color: #243092;
}

.get-content h2 {
	color: #243092;
	font-size: 2rem;
	margin-bottom: 15px;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/


.footer-bottom {
	background-image: url(../images/footer-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 80px 0px;
}

.footer-address .bxs-map, .footer-address .bx-phone-call,
.footer-address .bx-envelope {
  position: absolute;
  font-size: 1.5rem;
  left: -33px;
  top: 5px;
}

.footer-address .title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-bottom h2 {
	font-size: 35px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 800;
}

.footer-bottom h2 span {
	color: #eb0029;
}

.footer-bottom .title {
}

.footer-bottom .phone {
	font-weight: 800;
	font-size: 25px;
	color: #fff;
}

.footer-bottom .email {
	font-size: 20px;
	color: #fff;
}

.footer-logo {
	text-align: center;
}

.soclia-media ul li {
	display: inline-block;
	padding: 0px 10px;
}

address {
	color: #fff;
}

.soclia-media ul {
	float: right;
}

.soclia-media ul li a {
	font-size: 1.2rem;
	background-color: #23974e;
	padding: 7px 13px;
	border-radius: 100%;
	color: #fff;
}

.soclia-media ul li a:hover {
	color: #000;
}

.joinbtn {
	color: #5982a4;
	font-size: 1.1rem;
	text-decoration: underline;
	margin-left: 15px;
	margin-right: 5px;
}

.contact .info-box {
    color: #000;
    text-align: center;
    box-shadow: 0 0 15px rgba(214, 215, 216, 0.6);
    padding: 25px 25px;
    /* background-color: #f7f7f7; */
    min-height: 263px;
    font-size: 17px;
}
.contact .info-box h3 {
    font-weight: 600;
    font-size: 30px;
}
.contact .info-box p {
    line-height: 25px;
}

.contact .info-box i {
	font-size: 30px;
    color: #ffffff;
    border-radius: 50%;
    padding: 20px 21px;
    background-color: #eb0029;
}

.contactform {
	background-color: #fff;
}

.contactform br {
	display: none;
}

.contactform .form-control {
    min-height: 50px;
    border-radius: 0px;
    border: 1px solid #ccc;
	margin-bottom: 15px;
}

.contactform h2 {
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #e90029;
}

.contactform .wpcf7-submit {
    border: none;
    background: #ee0029;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 40px;
}
.contactform .wpcf7-submit:hover {
	background: #23974e;
	color: #fff;
}
.social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

.contactform textarea {
	min-height: 250px;
}
/*--------------------------------------------------------------
  # contact page
  --------------------------------------------------------------*/
.inner-banner {
	margin-bottom: 0px;
}

.breadcrumb {
	text-align: center;
    position: absolute;
    top: 360px;
    color: #fff;
    margin-left: 475px;
    /* left: 0; */
    /* right: 0; */
    font-size: 20px;
}

/*--------------------------------------------------------------
  # services page
  --------------------------------------------------------------*/


.best-services {
	position: relative;
}
.services-content {
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    bottom: 0;
    margin: 20px;
    padding: 15px 20px;
    text-align: center;
    color: #e5e2e2;
}
.services-page h3 {
	text-align: center;
	font-size: 40px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 800;
}
.services-page h3 span {
	color: #eb0029;
}

.services-content h4 {
	font-weight: 800;
    font-size: 25px;
    color: #f7f6f6;
}

.aboutus-page h3 {
	font-size: 40px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 800;
}
.aboutus-page h3 span {
	color: #eb0029;
}
.gallery-section h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #383838;
	text-align: center;
	margin-top: 20px;
}

.applyForm {
    border: #d9251e solid 5px;
    background-color: #fff;
    color: #fff;
    margin-top: 2rem !important;
    border-radius: 18px;
    position: absolute;
    top: 15%;
    right: 8%;
    z-index: 1;
    max-width: 450px;
    width: 365px;
    background: #f7c400;
}

.applyForm-title {
  font-size: 1.5rem !important;
  font-weight: 600;
  margin: 0;
  position: relative;
  color: #000;
  text-align: left;
  text-transform: uppercase;
}

.applyForm .form-control {
     border: 1px solid #a9a9a9;
    max-height: 45px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.applyForm textarea.form-control {
  border-radius: 15px;
   max-height: 100px;
}

.wpcf7-submit {
    margin-top: 15px !important;
    width: 100% !important;
    border-radius: 50px !important;
    padding: 5px 5px 7px 5px !important;
    background: #000 !important;
    border: none !important;
    text-transform: uppercase !important;
    color: #fff !important;
}

.welcome-section {
	position: relative;
	background-color: #FFF;
	position: relative;
	z-index: 1;
	overflow: inherit;
}

.img-icon {
	background-color: #fff;
	width: 100px;
	height: 100px;
}

.img-icon img {
	width: 70px;
}

.destination-cate p {
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 600;
}

.welcome-section h1 {
	font-size: 2.5rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #000;
}
.welcome-section h1 span {
	color: #ec2028;
}
.welcome-section span.shortTitle {
    font-size: 1.2rem;
    color: #868686;
    display: inline-block;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    padding: 7px 20px 7px 30px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}
.welcome-section span.shortTitle:before {
    content: '';
    border-radius: 100px;
    background-color: #ec2028;
    position: absolute;
    width: 9px;
    height: 9px;
    left: 14px;
    top: 15px;
}

.welcome-content p {
	font-size: 1.1rem;
	line-height: 28px;
}

.best-selling .pro-box {
  background: #f0f0f0;
  border-radius: 15px;
  position: relative;
}
.best-selling .pro-RangeBox a {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
	background-color:#000;
}
.best-selling .pro-box-content {
	position: absolute;
	bottom:5px;
	color: #fff;
	text-align: center;
}
.best-selling .pro-box-content h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

.best-selling .pro-box-content .fa-long-arrow-right {
  color: #ff5f1e;
  font-weight: 600;
}
.best-selling .pro-box-content a.common-btn {
    color: #fff;
}
.best-selling .pro-box-content a.common-btn:hover {
	 color: #fff;
}
.best-selling .pro-RangeBox a:hover {
   color: #ec2028;
}


.pro-RangeBox .pro-box h2 {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
}



/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

.footer-bottom {
	background-image: url(../images/footerbg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 0.9rem;
	padding: 80px 0px;
}

.footer-bottom .footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fff;
	text-transform: uppercase;
}

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

.footer-bottom ul li {
	list-style: none;
}

.footer-bottom ul li a {
	color: #fff;
	font-size: 1rem;
	line-height: 35px;
}

.footer-bottom ul li a:hover {
	color: #ec2028;
}

.soclia-media ul li {
	display: inline-block;
	padding: 0px 10px;
}

.footer-bottom address {
	color: #fff;
}

.soclia-media ul {
	float: right;
}

.soclia-media ul li a {
	font-size: 1.2rem;
	background-color: #ec2028;
	padding: 7px 13px;
	border-radius: 100%;
	color: #fff;
}

.soclia-media ul li a:hover {
	color: #000;
}

.joinbtn {
	color: #5982a4;
	font-size: 1.1rem;
	text-decoration: underline;
	margin-left: 15px;
	margin-right: 5px;
}

.footercompany-title {
	font-size: 1.2rem;
    font-weight: 700;
    margin-top: 25px;
}

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

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

.navmenu.light li.join-group a {
    background: #067f09;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 25px;
}

.header-top { margin-bottom:5px; }

.applyForm br { display:none; }

@media(max-width:767px){
	.applyForm {
		position: relative;
		top: 0;
    	right: 0;
		left: 0;
		margin: 0 auto;
		margin-bottom: 25px;;
	}
}

.contactpopup textarea.form-control {
	height: 70px;
}