@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
	font-family: Inter-Regular;
	src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
	font-family: Inter-Medium;
	src: url('../fonts/Inter-Medium.ttf');
}

@font-face {
	font-family: Inter-SemiBold;
	src: url('../fonts/Inter-SemiBold.ttf');
}

@font-face {
	font-family: Inter-Bold;
	src: url('../fonts/Inter-Bold.ttf');
}

@font-face {
	font-family: Lobster-Regular;
	src: url('../fonts/Lobster-Regular.ttf');
}

:root {
	--theme-color-1: #302837;
	--theme-color-2: #FF5311;
	--theme-color-3: #251D2B;
	--theme-color-4: #F6F6F6;
	--body-bg: #ffffff;
	--font-color: #000000;
	--heading-color: #251D2B;
	--font-white: #ffffff;
}

body {
	background-color: var(--body-bg);
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 25px;
	font-family: 'Inter-Regular';
	font-weight: normal;
	color: var(--font-color);
}


h1,
h2,
h3 {
	color: var(--heading-color);
	margin-bottom: 0;
	font-family: 'Inter-Bold';
	font-weight: normal;
}

h4,
h5 {
	color: var(--heading-color);
	margin-bottom: 0;
	font-family: 'Inter-SemiBold';
	font-weight: normal;
}

p {
	margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.theme-btn {
	border-radius: 6px;
	height: 48px;
	text-align: center;
	border: none;
	max-width: max-content;
	width: auto;
	padding: 10px 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter-Medium';
	font-weight: normal;
	transition: ease-in-out 0.3s;
	font-size: 14px;
}

.btn-main {
	color: #fff;
	background-color: var(--theme-color-2);
	transition: ease-in-out 0.3s;
	border: 1px solid var(--theme-color-2);
}

.btn-main:hover {
	background-position: left bottom;
	color: #fff;
	background-color: #ca4511;
	border: 1px solid #ca4511;
	transition: ease-in-out 0.3s;
}

.btn-secondary {
	color: #fff;
	background-color: var(--theme-color-1);
	transition: ease-in-out 0.3s;
}

.btn-secondary:hover {
	color: #fff;
	background-color: #251D2B;
	transition: ease-in-out 0.3s;
}

.btn-border {
	border: 1px solid var(--theme-color-1);
	background-color: transparent;
	color: var(--theme-color-1);
	transition: ease-in-out 0.3s;
}

.btn-border:hover {
	border-color: var(--theme-color-1);
	background-color: var(--theme-color-1);
	color: #fff;
	transition: ease-in-out 0.3s;
}

.btn-border-header {
	border: 1px solid #00008b;
	background-color: #0a0a90;
	color: #ffffff;
	transition: ease-in-out 0.3s;
	padding: 0 20px;
	margin-left: 20px;
	height: 38px;
	border-radius: 32px;
}

.top-header {
	background-color: #ffffff;
	padding: 11px 0px;
	text-align: center;
}

.header {
	padding: 0px 0px;
	background: #ffffff;
	color: #f1f1f1;
	height: 78px;
	display: flex;
	align-items: center;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

.sticky+.main-content-wrapper {
	padding-top: 123px;
}

.top-header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.top-header-contact ul li {
	display: inline-block;
	margin-right: 20px;
}

.top-header-contact ul li a {
	display: flex;
	align-items: center;
}

.top-header-contact ul li a span {
	font-size: 18px;
	margin-right: 10px;
	color: var(--theme-color-2);
}

.top-header-social ul li {
	display: inline-block;
}

.top-header-social ul li a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-color-1);
	border-radius: 50%;
	color: var(--font-white);
}

.navbar-brand img {
	width: 215px;
}

.navbar-nav .nav-item .nav-link {
	color: var(--font-color);
}

.navbar-nav .nav-item {
	margin: 0 10px;
}

.dropdown-menu .dropdown-item {
	font-size: 14px;
	padding: 7px 20px;
}

.dropdown-menu .dropdown-item:hover {
	color: var(--theme-color-2);
	background-color: var(--theme-color-4);
}

.dropdown-menu .dropdown-item:active {
	color: var(--theme-color-2);
	background-color: var(--theme-color-1);
}


.section {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 50px 0;
}

.aboutus {
	width: 100%;
	position: relative;
	display: inline-block;
	background-image: url('../images/home-about-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 4rem 0;
	background-attachment: fixed;
}

.section-small-heading {
    font-size: 25px;
    margin-top: 40px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Figtree", sans-serif;
    color: #00008B;
}

.section-heading {
	font-size: 38px;
	line-height: 40px;
	color: var(--heading-color);
	margin-bottom: 15px;
	font-family: 'Inter-Bold';
	font-weight: 900;
}


.featuredfood-card-content-left {
	padding-top: 10px;
}

.ft-navbtn-right {
	width: 50px;
	height: 50px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-color-1);
	color: var(--theme-color-2);
	border: none;
	font-size: 20px;
}

.ft-navbtn-left {
	width: 50px;
	height: 50px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-color-4);
	color: var(--theme-color-1);
	border: none;
	font-size: 20px;
	margin-right: 10px;
}

.featuredfood-top-right {
	display: flex;
}


.clients {
	background-color: #f4f4f4;
}

.clients .slick-slide {
	margin: 0 20px;
}

.clients .slick-list {
	margin: 0 -20px;
}

.clients-wrapper-top {
	display: flex;
	align-items: center;
}

.clients-wrapper-top img {
	width: 45px;
	height: 45px;
	min-width: 45px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 13px;
}

.clients-wrapper-top ul li {
	display: inline-block;
}

.clients-wrapper-top ul li i {
	opacity: 0.7;
}

.clients-wrapper-top ul li i.gained {
	opacity: 1;
	color: green;
}



.clients-wrapper {
	width: 100%;
	height:280px;
	position: relative;
	display: inline-block;
	background-color: #fafafa;
	border-radius: 3px;
	padding: 15px;
}



.clients-wrapper-content {
	font-size: 15px;
	width: 100%;
	position: relative;
	display: inline-block;
	margin: 0;
	line-height: 23px;
	color: #4c4c4c;
}

.clients-wrapper-bottom h3 {
	font-size: 17px;
	line-height: 20px;
	font-family: 'Inter-SemiBold';
	color: #000000;
	margin-bottom: 0px;
	display: inline-block;
}

.deg {
	font-size: 12px;
	color: #4c4c4c;
	line-height: 20px;
}

.rating {
	display: flex;
	gap: 4px;
	font-size: 12px;
	color: #FFC107;
}


footer {
	background-color: #00008b;
}


.service-info-card {
	padding: 0;
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.service-info-card p {
	color: #4C4C4C;
	font-size: 16px;
	font-family: 'Figtree';
}

.service-info-card img {
	width: 63px;
	height: 60px;
	object-fit: contain;
}

.service-info-card h3 {
	font-size: 25px;
	margin: 0 0px 8px;
	color: #000000;
	font-family: 'Inter-Medium';
	font-weight: 600;
}

.services {
	background: #F4F4F4;

	padding: 40px 0;
}

.b_right {
	border: 1px dashed #d8d8d8;
	padding: 25px 0;
	/* background: #c9c8c7; */
	width: 0px;
	height: 156px;
	vertical-align: center;
	margin: auto auto 0px;
}

.col_padding {
	padding: 0;
}

.reserve {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../images/special-recipe-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	height: 320px;
}

.reserve-wrapper {
	width: 100%;
	background-color: var(--font-white);
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.reserve-wrapper h3 {
	font-size: 32px;
	color: var(--theme-color-2);
	font-family: 'Lobster-Regular';
}

.reserve-wrapper a {
	font-size: 28px;
	color: var(--theme-color-1);
	text-transform: uppercase;
	font-family: 'Inter-Bold';
	margin-top: 15px;
	width: 100%;
	display: inline-block;
}


img.flued-2 {
    max-width: 129px;
    border-radius: 0px;
    margin: 23px 0px 0px -31px;
	object-fit: cover;
	position: relative;
	display: inline-block;
	/* border: 10px solid #ffffff; */
	border-radius: 6px;
	margin-right: auto;
	background-position: top;
	z-index: 10;

}


.maindish-img {
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.maindish-img img {
	width: 97%;
	height: 410px;
	object-fit: cover;
	position: relative;
	display: inline-block;
	/* border: 10px solid #ffffff; */
	border-radius: 6px;
	margin-right: auto;
	background-position: top;
	z-index: 10;
	border-radius: 0px 200px 0px 0px;
}

.maindish-img::after {
	content: "";
	position: absolute;
	top: -3%;
	left: 2%;
	width: 98%;
	height: 100%;
	border: 1px solid #FEFB51;
	border-radius: 0px 200px 0px 0px;
	z-index: 1;
	pointer-events: none;
}


#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}


.hero-section {
	padding: 20px 0;
	position: relative;
	overflow: hidden;
	background: #fff;
}

.hero-content {
	position: relative;
	padding: 0;
}

.hero-content::before {
	content: "";
	position: absolute;
	top: 0px;
	left: -130px;
	width: 108px;
	height: 127px;
	background: url('/Goldensmosa2/assets/img/bshort1.png') no-repeat center;
	background-size: contain;
	transform: rotate(116deg);
}

.hero-content::after {
	content: "";
	position: absolute;
	bottom: -60px;
	left: -130px;
	width: 103px;
	height: 120px;
	background: url('/Goldensmosa2/assets/images/bennerafter.png') no-repeat center;
	background-size: contain;
}



.hero-content h1 {
	font-size: 75px;
	font-weight: 900;
}

.hero-content span {
	color: #00008B;
}


.hero-content p {
	margin: 10px 0;
	color: #4C4C4C;
}

.btn-primary {
	border-radius: 26px;
	font-size: 15px;
	font-weight: 500;
	background: #00008B !important;
	border-color: #00008B !important;
	margin-top: 20px;
	color: #fff !important;
}

.hero-image {
	position: relative;
	text-align: center;
}

.hero-image img {
	max-width: 100%;
	position: relative;
	z-index: 2;

}

.hero-section::before {
    content: "";
    position: absolute;
    bottom: 50px;
    transform: translateX(-50%);
    width: 85%;
    height: 365px;
    background: #FFB442;
    border-radius: 235px 0px 0px 235px;
    z-index: 1;
    right: 0;
    left: 100%;
}

.food-card {
	background: #F4F4F4;
	padding: 15px 20px;
	border-radius: 0;
	position: relative;
	z-index: 3;
	height: auto;
}

.food-card h4 {
	font-family: 'Inter-SemiBold';
	font-weight: 600;
	font-size: 23px;
}

thead {
	font-family: 'Figtree';
	font-size: 17px;
	font-weight: 700;
}

.food-card .table-sm>:not(caption)>*>* {
	padding: 5px 15px;
}

.w_90 {
	width: 93%;
}

.food-card p {
	color: #4C4C4C;
	font-size: 15px;
	font-family: 'Figtree';
	font-weight: 500;
	margin-top: 6px;
}

.food-card small {
	font-weight: 500;
	color: #4C4C4C;
	font-size: 14px;
	font-family: 'Figtree';
}

.food_margin {
	margin-bottom: 40px;
}

.food-img-wrap {
	position: relative;
	/*margin-left: -70px;*/

}

.food-img-wrap::after {
	content: "";
	position: absolute;
	top: -10px;
	right: 0px;
	width: 90%;
	height: 100%;
	border: 1px solid #FEFB51;
	border-radius: 0 170px 0 0px;
	z-index: 1;
}



/* MENU IMAGE SPACING FIX */
.food-img{
  transform: translateX(0px) !important;
}

.food-img-wrap-right .food-img{
  transform: translateX(0px) !important;
}
.food-img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 0 180px 0 0px;
}

.food-img-wrap-right {
	margin-left: 0;
	/*margin-right: -70px;*/
}


.food-img-wrap-right::after {
	right: auto;
	left: 0px;
	border-radius: 170px 0 0 0;
}

.food-img-right {
	border-radius: 180px 0 0 0;
}

.food-card-right .w_90 {
	margin-left: auto;
}

.mr-auto {
	margin-right: auto;
	margin-left: 0px !important;
}

.mb_60 {
	margin-bottom: 60px;
}


.food-img {
	transform: translateX(-40px);
}


.food-img-wrap-right .food-img {
	transform: translateX(40px);
}


@media(max-width:768px) {
	.food-img-wrap {
		margin-left: 0;
		margin-top: 20px;
	}

	.food-img {
		border-radius: 5px;
		height: auto;
	}
}

.contact-section {
	background: #fff;
}


.map-frame {
	width: 100%;
	border-radius: 20px;
	border: 0;
}

.contact-list {
	list-style: none;
	padding: 0;
}

.section_text {
	font-size: 15px;
	color: #4C4C4C;
	width: 67%;
	margin: auto;
	line-height: 20px;
	margin-bottom: 30px;
}


.contact-section h5 {
	font-size: 22px;
	color: #000;
	font-family: 'Figtree';
	font-weight: 700;
	border-bottom: 1px solid #d0d0d0;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.contact-list li {
	display: flex;
	gap: 20px;
	margin-bottom: 18px;
	align-items: center;
	color: #000;
	font-size: 17px;
	font-family: 'Figtree';
	font-weight: 500;
}

.contact-list li:last-child {
	margin-bottom: 0;
}

.contact-list i {
	color: #ffffff;
	margin-top: 3px;
	background: #00008b;
	width: 35px;
	height: 35px;
	text-align: center;
	font-size: 14px;
	line-height: 35px;
	border-radius: 50%;
}

.slick-next:before,
.slick-prev:before {
	opacity: 9 !important;
	font-size: 30px !important;
	color: #00008b !important;
	top: -95px !important;
	width: 100% !important;
	text-align: end !important;
}

.slick-prev {
	left: -40px !important;
}

.slick-next,
.slick-prev {
	top: -83px !important;
	width: 100% !important;
	text-align: end !important;
}


.slick-next {
	right: 0px !important;
}

.chutney-banner {
	position: relative;
	background: url('/Goldensmosa2/assets/img/chatnibanner.png') no-repeat center;
	background-size: cover;
	border-radius: 26px;
	height: 200px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.chutney-overlay {
	background: rgb(0 0 0 / 43%);
	backdrop-filter: blur(6px);
	border-radius: 3px;
	padding: 15px 20px;
	width: 55%;
	color: #fff;
}

.chutney-overlay h4 {
	margin-bottom: 10px;
	font-weight: 700;
	color: #fff;
	font-family: 'Figtree';
	font-size: 20px;
}

.chutney-overlay table th,
.chutney-overlay table td {
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 6px;
	font-size: 14px;
	background: transparent;
	color: #fff;
}

.chutney-overlay thead th {
	font-weight: 500;
	background: transparent;
	color: #fff;
}

@media(max-width:768px) {
	.chutney-banner {
		height: auto;
		justify-content: center;
	}

	.chutney-overlay {
		width: 100%;
	}
}

.footer-bottom {
	padding: 10px 0px;
	text-align: center;
	color: #fff;
	font-family: 'Figtree';
	font-weight: 400;
	font-size: 16px;
}

.me_7 {
	margin-left: 7px;
}
.tbl_border{
    border-radius: 10px;
    border: 1px solid #d5d5d5;
}