/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Seabud - Seafood Restaurant HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. What We Do css
07. Our History css
08. Our Menu css
09. Intro Video css
10. Why Choose Us css
11. Our FAQs css
12. Our Gallery css
13. Our Testimonials css
14. Our Blog css
15. Footer css
16. About Us Page css
17. Menu Page css
18. Blog Archive css
19. Blog Single css
20. Team Page css
21. Team Single css
22. Testimonials Page css
23. Image Gallery css
24. Video Gallery css
25. FAQs Page css
26. Contact Us Page css
27. Reserve Table Page css
28. 404 Error Page css
29. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #023047;
	--secondary-color: #FAF3E0;
	--text-color: #333333;
	--accent-color: #e64425;
	--accent2-color: #39a54a;
	--accent-secondary-color: #DCEEF9;
	--bg-color: #FFFFFF;
	--white-color: #FFFFFF;
	--divider-color: #0230471A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Manrope", sans-serif;
	--accent-font: "Bricolage Grotesque", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	border-radius: 100px;
	padding: 17px 56px 17px 25px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 6px;
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px auto;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
	background-color: var(--primary-color);
}

.btn-default.btn-highlighted::after {
	background: var(--white-color);
}



.btn-reserv {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--primary-color);
	color: var(--white-color);
	border: none;
	border-radius: 100px;
	padding: 17px 56px 17px 25px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	border: 2px solid;
}


.btn-reserv::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 6px;
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px auto;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-reserv:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.btn-reserv::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-reserv:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-reserv.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-reserv.btn-highlighted:hover:before {
	background-color: var(--primary-color);
}

.btn-reserv.btn-highlighted::after {
	background: var(--white-color);
}



.readmore-btn {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 20px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 10px;
	height: 10px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

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

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

.bg-section {
	max-width: 1760px;
	border-radius: 30px;
	margin: 0 auto;
}

.bg-section .container-fluid {
	padding: 0;
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-title.section-title-center {
	width: 100%;
	max-width: 860px;
	text-align: center;
	margin: 0 auto;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

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

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--text-color);
	padding-left: 14px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.section-title h1 {
	display: inline-block;
	font-size: 60px;
	line-height: 1.1em;
	letter-spacing: -0.01em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 44px;
	letter-spacing: -0.01em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section {
	background-color: var(--primary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1 {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

a.navbar-brand img {
	max-width: 130px;
}

header.main-header {
	position: relative;
	background: var(--secondary-color);
	border-radius: 20px;
	margin:10px auto;
	z-index: 100;
}

header.main-header.stikcy-top {
	position: fixed;
	left: 0;
	right: 0;
	margin: 15px auto;
	border-radius: 100px;
	animation: slideDown 0.35s ease-out;
	box-shadow: 0 0 7px rgba(0, 0, 0, 10%);
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	width: 100%;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-top: none;
	border-radius: 0 0 20px 20px;
}

.navbar {
	padding:10px 20px;
	align-items: center;
}

.main-header.stikcy-top .navbar {
	padding: 15px 30px;
}


.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	position: relative;
	margin: 0 5px;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1em;
	padding: 15px 10px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn {
	text-align: end;
	display: flex;
	align-items: center;
	gap:10px;
	height: 100%;
}

.header-btn .language-switcher {
    margin-left: 0;
}

.header-btn .language-switcher .current-language {
	padding:0;
}

/* Hide mobile language switcher on desktop */
.mobile-language-switcher {
	display: none;
}

/* Language Dropdown Styles */
.language-dropdown {
	position: relative;
	margin-right: 20px;
	display: inline-block;
}

.language-selector {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 8px 15px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
}

.language-selector:hover {
	background-color: var(--accent-color);
}

.language-selector i {
	margin-left: 8px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.language-dropdown.active .language-selector i {
	transform: rotate(180deg);
}

.language-options {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	min-width: 120px;
}

.language-dropdown.active .language-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-option {
	display: block;
	padding: 10px 15px;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
	border-bottom: 1px solid #f0f0f0;
}

.lang-option:last-child {
	border-bottom: none;
}

.lang-option:hover {
	background-color: var(--accent-color);
	color: white;
}

.lang-option.active {
	background-color: var(--primary-color);
	color: white;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	position: relative;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 22px;
	height: 3px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--white-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--white-color);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	background: transparent;
	border-radius: 0;
}

.hero .container-fluid {
	padding: 0;
}

.hero.hero-bg-image .hero-box {
	position: relative;
	display: block;
	background: url('../img/hero-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 150px 15px;
	overflow: hidden;
}

.hero.hero-bg-image .hero-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-box .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-box .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image .hero-box .hero-content {
	position: relative;
	background: transparent;
	width: 100%;
	max-width: 750px;
	padding: 0px;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image .hero-box .hero-content .hero-content-list ul,
.hero.hero-bg-image .hero-box .hero-content .hero-body {
	justify-content: center;
}

.hero-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.hero-content,
.hero-image-box {
	width: calc(50% - 15px);
	border-radius: 20px;
}

.hero-content {
	padding: 5.208vw;
	align-content: center;
}

.hero-body {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin-top: 40px;
}

.video-play-button.border-btn {
	display: inline-flex;
	align-items: center;
}

.video-play-button.border-btn p {
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0 10px 0 0;
}

.video-play-button.border-btn a {
	height: 42px;
	width: 42px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button.border-btn a i {
	font-size: 14px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

.video-play-button.border-btn:hover a {
	border-color: var(--accent-color);
}

.video-play-button.border-btn:hover a i {
	color: var(--accent-color);
}

.hero-content-list {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 50px;
}

.hero-content-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.hero-content-list ul li {
	position: relative;
	display: inline-block;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 30px;
}

.hero-content-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--accent-color);
}

.hero-image-box {
	position: relative;
}

.hero-image {
	height: 100%;
}

.hero-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.hero-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.842;
	object-fit: cover;
	border-radius: 20px;
}

.hero-counter {
	position: absolute;
	top: 70px;
	right: 0;
	width: 100%;
	max-width: 310px;
	background: transparent;
	padding: 0;
	border-right: none;
	border-bottom: none;
	border-top-left-radius: 20px;
	z-index: 1;
	border-bottom-left-radius: 20px;
}

/* .hero-counter::before,
.hero-counter::after{
	content: '';
	position: absolute;
	width: 20px;
    height: 20px;
	mask: url('../images/hero-image-corner-shape.svg');
	-webkit-mask: url('../images/hero-image-corner-shape.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
} */

/* .hero-counter::before{
	top: -40px;
	right: 0;
}

.hero-counter::after{
	bottom: 0;
	left: -40px;
} */

.hero-counter-box {
	background: #39a54a;
	border-top-right-radius: 0;
	padding: 15px;
	border-bottom-right-radius: 0px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-bottom: 20px;
}

.hero-counter-content {
	margin-bottom: 0;
	display: flex;
	justify-content: start;
	align-items: baseline;
}

.hero-counter-content h2 {
	font-family: var(--accent-font);
	font-size: 46px;
	color: white;
}

.hero-counter-content p {
	margin-bottom: 0;
	color: white;
	font-size: 20px;
	font-weight: bold;
	margin-left: 6px;
}

.review-images {
	display: inline-flex;
	align-items: center;
}

.review-image {
	position: relative;
	display: inline-block;
	margin-left: -12px;
	z-index: 1;
}

.review-image:first-child {
	margin: 0;
}

.review-image figure {
	display: block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.review-image img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.review-image.add-more {
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.review-image.add-more i {
	font-size: 20px;
	color: var(--white-color);
}

.review-image.add-more h3 {
	font-size: 14px;
	color: var(--white-color);
}

.hero-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-info-video-box,
.hero-image-rating-box,
.working-hours-item {
	position: relative;
	width: calc(33.33% - 13.33px);
	border-radius: 20px;
	overflow: hidden;
}

.hero-info-bg-image figure {
	position: relative;
	height: 100%;
	display: block;
}

.hero-info-bg-image {
	height: 100%;
}

.hero-info-bg-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(18, 24, 32, 0.60) 39.29%, rgba(18, 24, 32, 0.4) 100%);
	height: 100%;
	width: 100%;
}

.hero-info-bg-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.hero-video-tag-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	left: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	z-index: 1;
}

.hero-video-tag h3 {
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-color);
}

.hero-video-tag h3 a {
	display: block;
	color: inherit;
	background: var(--white-color);
	border-radius: 100px;
	padding: 10px 16px;
	cursor: none;
}

.hero-video-btn a {
	width: 50px;
	height: 50px;
	background: var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.hero-video-btn a:hover {
	background: var(--accent-color);
}

.hero-video-btn a img {
	width: 100%;
	max-width: 14px;
	transition: all 0.3s ease-in-out;
}

.hero-video-btn a:hover img {
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

.hero-info-video-content {
	position: absolute;
	bottom: 40px;
	right: 40px;
	left: 40px;
	z-index: 1;
}

.hero-info-video-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.hero-rating-content {
	position: absolute;
	top: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.hero-rating-content h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.hero-image-rating-box .google-rating-box {
	position: absolute;
	right: 40px;
	bottom: 40px;
	width: 100%;
	max-width: 210px;
	background: var(--divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	padding: 20px;
}

.google-rating-box {
	border-radius: 10px;
	padding: 20px;
}

.google-rating-header {
	display: flex;
	margin-bottom: 10px;
}

.google-rating-header .icon-box {
	margin-right: 10px;
}

.google-rating-header .icon-box img {
	max-width: 40px;
}

.google-rating-content p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.google-rating-content p:last-child {
	margin-bottom: 0;
}

.google-rating-content i {
	color: inherit;
}

.google-rating-content i:last-child {
	margin-right: 0;
}

.google-rating-box .review-image img {
	max-width: 40px;
}

.google-rating-box .review-image.add-more {
	width: 40px;
	height: 40px;
}

.working-hours-item {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 2.083vw;
}

.working-hours-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.working-hours-header h3 {
	font-size: 20px;
}

.working-hours-header img {
	width: 100%;
	max-width: 30px;
}

.working-hours-body {
	margin-bottom: 30px;
}

.working-hours-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.working-hours-body ul li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	line-height: 1.5em;
	margin-bottom: 15px;
}

.working-hours-body ul li:last-child {
	margin-bottom: 0;
}

.working-hours-btn .btn-default {
	width: 100%;
	text-align: center;
	padding: 15px;
}

.working-hours-btn .btn-default::before {
	display: none;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 60px 0;
}

.about-us-images {
	position: relative;
	padding: 0 45px 20px 80px;
}

.about-us-img-1 figure {
	display: block;
	border-radius: 20px;
}

.about-us-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 310px;
	background: var(--bg-color);
	border: 20px solid var(--bg-color);
	border-right: none;
	border-bottom: none;
	border-radius: 20px 0 0 0;
	z-index: 1;
}

.about-us-img-2::before,
.about-us-img-2::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/hero-image-corner-shape.svg');
	-webkit-mask: url('../images/hero-image-corner-shape.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.about-us-img-2::before {
	top: -40px;
	right: 45px;
}

.about-us-img-2::after {
	bottom: 70px;
	left: -40px;
}

.about-us-img-2 figure {
	display: block;
}

.about-us-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
	border-radius: 20px;
}

.about-experience-box {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(70%);
	background: var(--accent-color);
	border-radius: 10px;
	padding: 20px;
	max-width: 178px;
	animation: experiencemoveobject 2s infinite linear alternate;
	z-index: 1;
}

@keyframes experiencemoveobject {
	50% {
		left: 30px;
	}
}

.about-experience-box .icon-box {
	margin-bottom: 10px;
}

.about-experience-box .icon-box img {
	max-width: 45px;
}

.about-experience-box .about-experience-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.company-review {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: rotate(-180deg) translate(-100%, 50%);
	writing-mode: vertical-rl;
}

.company-review h3 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--primary-color);
}

.about-us-list {
	margin-bottom: 40px;
}

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

.about-us-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.about-us-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-list ul li::before {
	content: '\f058';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.about-us-body {
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.about-comapny-client {
	width: calc(50% - 15px);
}

.company-client-counter {
	margin-top: 10px;
}

.company-client-counter p {
	font-weight: 500;
	margin: 0;
}

.company-client-counter p span {
	color: var(--primary-color);
}

.about-company-result {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.about-company-result .icon-box {
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-company-result .icon-box img {
	max-width: 30px;
}

.company-result-content {
	width: calc(100% - 70px);
}

.company-result-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.company-result-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	  06. What We Do css  	  ***/
/************************************/

.what-we-do {
	background: var(--secondary-color);
	padding: 100px 0;
}

.what-we-item {
	position: relative;
	background-color: var(--white-color);
	border-radius: 20px;
	/* height: calc(100% - 30px); */
	margin-bottom: 30px;
	padding: 20px;
	overflow: hidden;
}

.what-we-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.what-we-item.active::before,
.what-we-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.what-we-item-content {
	position: relative;
	z-index: 1;
}

.what-we-item-content h3 {
	font-family: var(--accent-font);
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-content h2 a {
	color: inherit;
}

.what-we-item-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.what-we-item.active .what-we-item-content h3,
.what-we-item:hover .what-we-item-content h3,
.what-we-item.active .what-we-item-content h2,
.what-we-item:hover .what-we-item-content h2,
.what-we-item.active .what-we-item-content p,
.what-we-item:hover .what-we-item-content p,
.what-we-item.active .what-we-readmore-btn a,
.what-we-item:hover .what-we-readmore-btn a {
	color: var(--white-color);
}

.what-we-readmore-btn {
	position: relative;
	border-top: 1px solid var(--divider-color);
	margin-top: 0px;
	padding-top: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-we-item.active .what-we-readmore-btn,
.what-we-item:hover .what-we-readmore-btn {
	border-color: var(--dark-divider-color);
}

.what-we-item.active .what-we-readmore-btn a::before,
.what-we-item:hover .what-we-readmore-btn a::before {
	filter: brightness(0) invert(1);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	display: inline-block;
	margin-bottom: 0;
}

.dark-section .section-footer-text p {
	color: var(--white-color);
}

.section-footer-text span {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--white-color);
}

/************************************/
/***     07. Our History css      ***/
/************************************/

.our-history {
	padding: 100px 0;
}

.our-history-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.our-history-item {
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.our-history-item:nth-child(even) {
	flex-direction: column-reverse;
}

.our-history-image figure {
	display: block;
	border-radius: 30px;
}

.our-history-image img {
	width: 100%;
	aspect-ratio: 1 / 0.84;
	object-fit: cover;
	border-radius: 30px;
}

.our-history-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
}

.our-history-body {
	width: calc(100% - 75px);
}

.our-history-body h2 {
	font-size: 44px;
	margin-bottom: 20px;
}

.our-history-body h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.our-history-body p {
	margin: 0;
}

.our-history-content .icon-box img {
	position: relative;
	width: 100%;
	max-width: 60px;
	z-index: 1;
}

/**************************************/
/****     08. Food Pricing css	   ****/
/**************************************/

.food-pricing {
	padding: 100px 0;
}

.food-pricing-list {
	background-color: var(--primary-color);
	padding: 40px;
	border-radius: 30px;
}

.food-pricing-list-item {
	margin-bottom: 25px;
}

.food-pricing-list-item:last-child {
	margin-bottom: 0;
}

.food-pricing-list-item ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.food-pricing-list-item ul li {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.food-pricing-list-item ul li .price-list-title {
	max-width: 80%;
}

.food-pricing-list-item ul li .price-list-separator {
	border: 1px dashed var(--white-color);
	margin: 0 10px;
	display: flex;
	flex-grow: 1;
}

.food-pricing-list-item ul li .price-list-price {
	color: var(--accent-color);
}

.food-pricing-list-item p {
	font-size: 16px;
	color: var(--white-color);
	margin: 0;
}

.offer-pricing-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	background-color: var(--primary-color);
	border-radius: 30px;
	margin-bottom: 30px;
	padding: 30px;
}

.offer-pricing-item:last-child {
	margin-bottom: 0;
}

.offer-pricing-item-image,
.offer-pricing-item-content {
	width: calc(50% - 5px);
}

.offer-pricing-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.offer-pricing-item-content p {
	color: var(--white-color);
	margin-bottom: 10px;
}

.offer-pricing-item-content .btn-default.btn-highlighted {
	font-size: 14px;
	padding: 14px 20px;
}

.offer-pricing-item-content .btn-default.btn-highlighted::before {
	display: none;
}

.offer-pricing-item-image img {
	max-width: 170px;
}

/************************************/
/***      08. Our Menu Css        ***/
/************************************/

.our-menu {
	position: relative;
	background: var(--accent-secondary-color);
	padding: 100px 0;
}

.our-menu {
	position: relative;
	z-index: 1;
}

.our-menu-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	text-align: center;
}

.our-menu-item .our-menu-img {
	margin-bottom: 30px;
}

.our-menu-img figure {
	max-width: 200px;
	border-radius: 50%;
	display: inline-block;
}

.our-menu-img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.our-menu-item:hover .our-menu-img img {
	transform: scale(1.1);
}

.our-menu-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.our-menu-content p {
	margin: 0;
}

/************************************/
/***     09. Intro Video css      ***/
/************************************/

.intro-video {
	position: relative;
	padding: 100px 0;
	background: url('../images/intro-video-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.intro-video:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
}

.intro-video .container {
	position: relative;
	z-index: 1;
}

.intro-video-box {
	margin-bottom: 150px;
}

.intro-video-box .video-play-button {
	text-align: center;
	margin-bottom: 30px;
}

.intro-video-box .video-play-button a {
	position: relative;
	display: block;
	max-width: 150px;
	margin: 0 auto;
	cursor: none;
}

.intro-video-box .video-play-button a::before {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 35px;
	color: var(--primary-color);
	z-index: 1;
}

.intro-video-box .video-play-button img {
	max-width: 150px;
	animation: videorotate 20s infinite linear;
}

@keyframes videorotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.intro-video-box .section-title {
	max-width: 610px;
	margin: 0 auto;
	text-align: center;
}

.intro-video-box .section-title h2 {
	color: var(--white-color);
}

.intro-video-list {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
}

.intro-video-list ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 60px;
	list-style: none;
}

.intro-video-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 30px;
}

.intro-video-list ul li:after {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	color: var(--accent-color);
	font-weight: 900;
	font-size: 18px;
	top: 0;
	left: 0;
}

/************************************/
/***     10. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-image-1 figure,
.why-choose-image-2 figure {
	display: block;
	border-radius: 30px;
}

.why-choose-image-1 img,
.why-choose-image-2 img {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.why-choose-image-1 img {
	aspect-ratio: 1 / 1.4;
}

.why-choose-content .section-row {
	margin-bottom: 40px;
}

.why-choose-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.why-choose-item:last-child {
	margin-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
}

.why-choose-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	margin-bottom: 0;
}

.why-choose-image-2 img {
	aspect-ratio: 1 / 0.975;
}

/************************************/
/***        11. Our FAQs css      ***/
/************************************/

.our-faqs {
	background: var(--secondary-color);
	padding: 100px 0;
}

.faqs-images {
	margin-right: 15px;
}

.faqs-image-box-2,
.faqs-image-box-1,
.faqs-images {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.faqs-image-box-1 {
	width: calc(47% - 15px);
}

.faqs-image-box-2 {
	width: calc(53% - 15px);
}

.faqs-img {
	width: 100%;
}

.faqs-img figure {
	display: block;
	border-radius: 30px;
}

.faqs-img img {
	width: 100%;
	aspect-ratio: 1 / 0.922;
	border-radius: 30px;
}

.faqs-image-box-2 .faqs-img img {
	aspect-ratio: 1 / 1.37;
}

.faqs-image-box-2 .faqs-contact-box .icon-box {
	width: 60px;
	height: 60px;
}

.faqs-image-box-2 .faqs-contact-box .icon-box img {
	max-width: 30px;
}

.faqs-contact-box {
	display: inline-flex;
	align-items: center;
	text-align: left;
}

.faqs-contact-box .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.faqs-contact-box:hover .icon-box {
	background: var(--primary-color);
}

.faqs-contact-box .icon-box img {
	max-width: 25px;
}

.faqs-contact-box-content p {
	margin-bottom: 5px;
}

.faqs-contact-box-content h3 {
	font-size: 20px;
}

.faqs-contact-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.faqs-contact-box-content h3 a:hover {
	color: var(--accent-color);
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3em;
	color: var(--primary-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	background-color: var(--accent-color);
	background-image: url(../images/arrow-primary.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(45deg);
}

.faq-accordion .accordion-item .accordion-body {
	padding-right: 30px;
}

.accordion-item .accordion-body p {
	color: var(--text-color);
	margin-bottom: 15px;
}

.accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***      12. Our Gallery css     ***/
/************************************/

.our-gallery {
	padding: 0px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 30px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***   13. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	padding: 100px 0;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--accent-color);
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	color: var(--white-color);
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	position: relative;
	margin-right: 15px;
}

.author-image figure {
	display: block;
	border-radius: 50%;
}

.author-image figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-quote {
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--accent-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-quote img {
	width: 100%;
	max-width: 10px;
}

.author-content {
	width: calc(100% - 65px);
}

.author-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--white-color);
	text-transform: capitalize;
}

.author-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-pagination .swiper-pagination-bullet {
	height: 14px;
	width: 14px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-secondary-color);
	border-radius: 50%;
}

.testimonials-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.testimonials-counter-item {
	width: calc(25% - 22.5px);
	display: flex;
	align-items: center;
}

.testimonials-counter-item h2 {
	width: 60%;
	color: var(--white-color);
	font-size: 44px;
}

.testimonials-counter-item p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	   14. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/***        15. Footer css	      ***/
/************************************/

.main-footer {
	position: relative;
	background: url(../img/footer-bg-image.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 0;
	margin-bottom: 60px;
	overflow: hidden;
}

.main-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	z-index: 0;
}

.main-footer .container {
	position: relative;
	z-index: 1;
}

.footer-contact-list {
	display: flex;
	gap: 30px 15px;
	flex-wrap: wrap;
}

.footer-contact-item {
	width: calc(33.33% - 10px);
	border-right: 1px solid var(--dark-divider-color);
	text-align: center;
	padding-right: 15px;
}

.footer-contact-item:last-child,
.footer-contact-item:nth-child(3n + 3) {
	border-right: none;
	padding: 0;
}

.footer-contact-item .icon-box,
.footer-contact-detail {
	margin-bottom: 20px;
}

.footer-contact-item .icon-box img {
	width: 100%;
	max-width: 60px;
}

.footer-contact-detail h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-contact-detail p {
	color: var(--white-color);
	margin-bottom: 2px;
}

.footer-contact-detail p:last-child {
	margin-bottom: 0;
}

.footer-contact-detail p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-detail p a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 35px 0 35px;
	margin-top: 50px;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-logo img {
	width: 100%;
	max-width: 175px;
}

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

.footer-social-links ul li {
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	color: var(--white-color);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--white-color);
	color: var(--primary-color);
}

.footer-social-links ul li a i {
	font-size: 24px;
	color: inherit
}

/************************************/
/*** 	 16. About Us Page css	  ***/
/************************************/

.page-header {
	background: var(--primary-color);
	padding: 60px 0;
	overflow: hidden;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 42px;
	font-weight: 600;
	line-height: 50px;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.our-approach {
	background: var(--secondary-color);
	padding: 100px 0;
}

.mission-vision-item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.mission-vision-item:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.mission-vision-item .icon-box {
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 30px;
}

.mission-vision-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.mission-vision-item:hover .icon-box::before {
	transform: scale(1);
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.mission-vision-content {
	width: calc(100% - 90px);
}

.mission-vision-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vision-content p {
	margin: 0;
}

.our-approach-image {
	margin-left: 100px;
}

.our-approach-image figure {
	display: block;
	border-radius: 400px 400px 0 0;
}

.our-approach-image img {
	width: 100%;
	aspect-ratio: 1 / 1.166;
	object-fit: cover;
	border-radius: 400px 400px 0 0;
}

.our-journey {
	position: relative;
	background: url('../images/our-journey-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 60px;
	overflow: hidden;
}

.our-journey:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 40%;
}

.our-journey .container-fluid {
	padding: 0;
}

.journey-video {
	position: relative;
	text-align: center;
	padding-right: 7.813vw;
	z-index: 1;
}

.video-play-button.bg-effect a {
	position: relative;
	background: var(--accent-color);
	border-radius: 100%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button.bg-effect a:hover {
	background: var(--primary-color);
}

.video-play-button.bg-effect a:before,
.video-play-button.bg-effect a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button.bg-effect a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button.bg-effect a i {
	font-size: 40px;
	color: var(--white-color);
	margin-left: 2px;
}

.journey-content {
	position: relative;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 60px;
	margin-left: 5.682vw;
	z-index: 1;
}

.journey-item,
.journey-content .section-title {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.journey-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.journey-item-header {
	margin-bottom: 15px;
}

.journey-item-header h4 {
	color: var(--accent-color);
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6em;
	margin-bottom: 5px;
}

.journey-item-header h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.journey-item-body p {
	margin: 0;
}

.journey-btn {
	margin-top: 40px;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.team-image {
	position: relative;
}

.team-image a {
	display: block;
	cursor: none;
	border-radius: 30px;
	overflow: hidden;
}

.team-image figure:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(2, 48, 71, 0.00) 50%, rgba(2, 48, 71, 0.40) 70%, rgba(2, 48, 71, 0.80) 100%);
	z-index: 1;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-body {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	text-align: center;
	z-index: 1;
}

.team-social-icon {
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon {
	opacity: 1;
	visibility: visible;
	margin-bottom: 30px;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 40px;
	height: 40px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.cta-section {
	padding: 100px 0;
}

.cta-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-radius: 30px;
	padding: 20px 30px 20px 70px;
}

.cta-box .cta-box-content {
	width: calc(100% - 465px);
}

.cta-box-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.cta-box-image img {
	max-width: 435px;
}

.cta-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;
}

.cta-counter-item {
	position: relative;
	width: calc(25% - 22.5px);
	border-radius: 30px;
	text-align: center;
	overflow: hidden;
	padding: 35px;
}

.cta-counter-item-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.cta-counter-item-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 50%;
	z-index: 1;
}

.cta-counter-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.cta-counter-item:hover .cta-counter-item-image img {
	transform: scale(1.08);
}

.cta-counter-item-content {
	position: relative;
	z-index: 1;
}

.cta-counter-item-content h3 {
	font-size: 44px;
	color: var(--white-color);
	margin-bottom: 0;
}

.cta-counter-item-content p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	  17. Menu Page css		  ***/
/************************************/

.page-menu {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 18. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/*** 	  19. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta {
	margin-top: 10px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 600;
	line-height: 1.1em;
	margin: 0 0 0.46em;
}

.post-entry h1 {
	font-size: 60px;
}

.post-entry h2 {
	font-size: 44px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	font-weight: 500;
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	  20. Team Page css		  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	  21. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0 50px;
}

.team-member-image {
	margin-right: 15px;
}

.team-member-image figure {
	display: block;
	border-radius: 20px;
}

.team-member-image img {
	width: 100%;
	aspect-ratio: 1 / 0.89;
	object-fit: cover;
	border-radius: 20px;
}

.member-content-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-content-body ul li {
	display: flex;
	justify-content: space-between;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.member-content-body ul li:last-child {
	margin-bottom: 0;
}

.member-content-body ul li span {
	width: 68%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	color: var(--text-color);
}

.member-social-list {
	margin-top: 40px;
}

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

.member-social-list ul li {
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child {
	margin: 0;
}

.member-social-list ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a {
	background: var(--primary-color);
}

.member-social-list ul li i {
	color: inherit;
	font-size: 18px;
}

.team-personal-info-box {
	padding: 50px 0 100px;
}

.team-expertise-box {
	margin-right: 15px;
}

.team-skills-list {
	margin-bottom: 40px;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title {
	color: var(--primary-color);
	text-transform: capitalize;
	font-weight: 600;
}

.skills-progress-bar .skill-data .skill-no {
	color: var(--primary-color);
	font-weight: 600;
	margin-left: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--divider-color);
	border-radius: 100px;
}

.skills-progress-bar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.team-expertise .section-title {
	margin: 0;
}

.team-expertise .section-title h3 {
	padding-left: 0;
	margin: 15px 0 0 0;
}

.team-expertise .section-title h3::before {
	display: none;
}

.team-contact-form {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.team-contact-form .contact-form .form-control {
	background: var(--white-color);
}

/************************************/
/***  22. Testimonials Page css	  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	background: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-content p {
	color: var(--text-color);
	font-size: 18px;
}

.page-testimonials .testimonial-item .author-content h3 {
	color: var(--primary-color);
}

.page-testimonials .testimonial-item .author-content p {
	color: var(--text-color);
}

/************************************/
/*** 	 23. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 24. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 30px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	  25. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-category-list {
	background-color: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

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

.page-category-list ul li {
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	margin: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--text-color);
	background: var(--white-color);
	border-radius: 10px;
	padding: 19px 45px 19px 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.page-category-list ul li:hover a {
	color: var(--white-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover::before {
	filter: brightness(0) invert(1);
	transform: translate(0px, -50%) rotate(45deg);
}

.page-category-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-category-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 190px 30px 30px;
	border-radius: 30px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.80) 100%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-contact {
	position: relative;
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	display: flex;
	padding: 20px;
	z-index: 1;
}

.sidebar-cta-contact .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.sidebar-cta-contact .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact .icon-box img {
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.cta-contact-content {
	width: calc(100% - 70px);
}

.cta-contact-content h3 {
	color: var(--white-color);
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 5px;
}

.cta-contact-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cta-contact-content ul li {
	color: var(--white-color);
	line-height: 1.8em;
}

.page-faqs .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/************************************/
/***   26. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-image {
	position: relative;
}

.contact-us-img figure {
	display: block;
	border-radius: 30px;
}

.contact-us-img img {
	width: 100%;
	aspect-ratio: 1 / 1.02;
	object-fit: cover;
	border-radius: 30px;
}

.opening-hours-item {
	position: absolute;
	bottom: 30px;
	left: 30px;
	padding: 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	border-radius: 20px;
	overflow: hidden;
	z-index: 2;
}

.opening-hours-item h3 {
	position: relative;
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
	z-index: 1;
}

.opening-hours-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.opening-hours-item ul li {
	color: var(--white-color);
	line-height: 1.5em;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.opening-hours-item ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--secondary-color);
	border-radius: 12px;
	padding: 18px 20px;
	border: none;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.contact-form .btn-default {
	width: 100%;
	padding: 17px 25px;
}

.contact-form .btn-default:before {
	display: none;
}

.contact-info-box {
	padding: 50px 0;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
}

.contact-info-item {
	position: relative;
	width: calc(33.33% - 53.33px);
	display: flex;
}

.contact-info-item:after {
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	height: 100%;
	width: 1px;
	background: var(--divider-color);
}

.contact-info-item:nth-child(3n + 3):after,
.contact-info-item:last-child:after {
	display: none;
}

.contact-info-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.contact-info-content {
	width: calc(100% - 70px);
}

.contact-info-content h3 {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 5px;
}

.contact-info-content p {
	margin: 0;
}

.contact-info-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p a:hover {
	color: var(--primary-color);
}

.google-map {
	padding: 50px 0 100px;
	overflow: hidden;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 750px;
	border-radius: 30px;
}

/************************************/
/***  27. Reserve Table Page css  ***/
/************************************/

.page-reserve-table {
	padding: 60px 0;
}

.reserve-table-form {
	margin-right: 15px;
}

.reserve-table-form .form-label {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.reserve-table-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;
	border: none;
}

.reserve-table-form .form-control.form-select {
	padding: 17px 35px 17px 20px;
}

.reserve-table-form .form-control::placeholder {
	color: var(--primary-color);
}

.reserve-table-content {
	background: var(--primary-color) url('../images/reserve-table-content-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 50px;
}

.reserve-table-content .section-title p {
	color: var(--white-color);
	margin: 0;
}

.reserve-table-info-item {
	margin-bottom: 40px;
}

.reserve-table-info-item:last-child {
	margin-bottom: 0;
}

.reserve-table-info-item h3 {
	font-size: 24px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.reserve-table-info-item p {
	color: var(--white-color);
	margin: 0 0 10px 0;
}

.reserve-table-info-item p:last-child {
	margin: 0;
}

.reserve-table-info-item p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.reserve-table-info-item p a:hover {
	color: var(--accent-color);
}

.reserve-table-info-item.reserve-table-time p {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.reserve-table-info-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.reserve-table-info-item ul li {
	display: inline-block;
	background: transparent;
	padding: 0;
	margin: 0 10px 0 0;
}

.reserve-table-info-item ul li a {
	background: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.reserve-table-info-item ul li a:hover {
	background: var(--white-color);
}

.reserve-table-info-item ul li a i {
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.reserve-table-info-item ul li a:hover i {
	color: var(--primary-color);
}

/************************************/
/*** 	28. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

.fixed-button-area {
    position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    display: none;
    background: #0b1928;
    padding: 10px 0;
    z-index: 9999;
    border-top: 5px solid #fec43c;
}



/************************************/
/***      29. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1760px) {

	.bg-section {
		width: calc(100% - 30px);
		margin: 0 15px;
	}

	header.main-header .header-sticky.active {
		border-top: none;
		border-right: none;
		border-left: none;
		border-radius: 0;
	}

	.main-footer {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.hero-content,
	.hero-image-box {
		width: 100%;
	}

	.hero-content {
		padding: 30px;
	}

	.hero-image,
	.hero-image figure,
	.hero-image img {
		height: auto;
	}

	.hero-image img {
		aspect-ratio: 1 / 0.55;
	}

	.hero-counter-content h2 {
		margin-bottom: 30px;
	}

	.hero-video-tag-btn,
	.hero-rating-content {
		top: 30px;
		left: 30px;
		right: 30px;
	}

	.hero-info-video-content {
		bottom: 30px;
		right: 30px;
		left: 30px;
	}

	.hero-info-video-content h3,
	.hero-rating-content h3 {
		font-size: 18px;
	}

	.hero-image-rating-box .google-rating-box {
		right: 30px;
		bottom: 30px;
		padding: 15px;
	}
}

@media only screen and (max-width: 991px) {

	#header-section .language-switcher .current-language {
        background: transparent;
        border: 0;
        padding: 0;
    }

	.btn-default {
		padding: 14px 52px 14px 15px;
	}

	.btn-reserv {
		padding: 14px 52px 14px 15px;
	}

	.btn-default::before {
		width: 38px;
		height: 38px;
		right: 4px;
	}

	.bg-section {
		width: 100%;
		border-radius: 0px;
		margin: 0;
	}

	.bg-section .container-fluid {
		padding: 0 15px;
	}

	header.main-header {
		border-radius: 0px;
		margin: 0 0 30px;
	}

	.navbar {
		padding: 15px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block !important;
	}



	/* Hide desktop language switcher on mobile */
	.header-btn .language-switcher-dropdown {
		display: none !important;
	}

	/* Show mobile language switcher */
	.mobile-language-switcher {
		display: block;
		position: absolute;
		top: 15px;
		right: 15px;
		z-index: 1001;
	}

	/* Remove white background from language dropdown in mobile */
	.mobile-language-switcher .language-btn {
		background: transparent !important;
		border: none !important;
	}

	/* Simple approach - just position the responsive menu to left */
	.responsive-menu {
		position: absolute;
		top: 15px;
		left: 15px;
		z-index: 1001;
		width: 99%;
	}

	/* Force hamburger menu to left side */
	.slicknav_btn {
		float: left !important;
		margin-right: 73px !important;
		position: absolute !important;
		top: 15px !important;
		left: 15px !important;
		z-index: 1001 !important;
		display: block !important;
		background: #dc3545 !important;
		border: none !important;
		width: 40px !important;
		height: 40px !important;
		border-radius: 8px !important;
	}

	/* Hamburger menu icon styling for mobile */
	.slicknav_btn .slicknav_icon {
		width: 22px !important;
		height: 18px !important;
		margin: 0 auto !important;
	}

	.slicknav_btn .slicknav_icon .slicknav_icon-bar {
		width: 22px !important;
		height: 3px !important;
		background-color: #ffffff !important;
		margin: 4px auto !important;
		border-radius: 6px !important;
		transition: all 0.3s ease !important;
	}

	/* Hamburger menu animation when open */
	.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 5px) !important;
		background-color: #ffffff !important;
	}

	.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(2) {
		opacity: 0 !important;
	}

	.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -5px) !important;
		background-color: #ffffff !important;
	}

	/* Mobile menu styling */
	.slicknav_menu {
		position: absolute !important;
		top: 100% !important;
		left: 0 !important;
		width: 100% !important;
		background: #dc3545 !important;
		z-index: 1000 !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
		border: none !important;
	}

	.slicknav_nav {
		padding: 20px 0 !important;
	}

	.slicknav_nav li a {
		color: #ffffff !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		padding: 15px 20px !important;
		display: block !important;
		text-decoration: none !important;
		font-family: sans-serif !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	}

	.slicknav_nav li a:hover {
		background: rgba(255, 255, 255, 0.1) !important;
		color: #ffffff !important;
	}

	/* Remove last border */
	.slicknav_nav li:last-child a {
		border-bottom: none !important;
	}

	/* Mobile menu responsive adjustments */
	@media (max-width: 768px) {
		.slicknav_btn {
			top: 12px !important;
			left: 12px !important;
		}

		.slicknav_menu {
			top: 100% !important;
			left: 0 !important;
			width: 100% !important;
		}
	}

	/* Custom Hamburger Menu */
	.hamburger-btn {
		background: #E74C3C;
		border: none;
		width: 40px;
		height: 40px;
		border-radius: 8px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		padding: 0;
	}

	.hamburger-btn span {
		width: 22px;
		height: 3px;
		background: #ffffff;
		margin: 2px 0;
		border-radius: 6px;
		transition: all 0.3s ease;
	}

	.hamburger-btn.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 5px);
	}

	.hamburger-btn.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger-btn.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -5px);
	}

	.mobile-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #dc3545 !important;
		z-index: 1000;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		display: none;
	}

	.mobile-menu ul {
		list-style: none;
		padding: 20px 0;
		margin: 0;
		background: #dc3545 !important;
	}

	.mobile-menu li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		background: #dc3545 !important;
	}

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

	.mobile-menu li a {
		color: #ffffff !important;
		font-size: 16px;
		font-weight: 600;
		padding: 15px 20px;
		display: block;
		text-decoration: none;
		font-family: sans-serif;
		background: #dc3545 !important;
	}

	.mobile-menu li a:hover {
		background: rgba(255, 255, 255, 0.1) !important;
		color: #ffffff !important;
	}

	.mobile-menu.show {
		display: block;
	}

	/* Ensure hamburger menu is visible on mobile */
	@media (max-width: 991px) {
		.navbar-toggle {
			display: block !important;
		}

		.hamburger-btn {
			display: flex !important;
		}

		/* Hide desktop menu on mobile */
		.main-menu {
			display: none !important;
		}

		/* Show mobile menu */
		.responsive-menu {
			display: block !important;
		}
	}

	.language-dropdown {
		margin-right: 10px;
		margin-bottom: 10px;
	}

	/* Mobile language switcher styles */
	.mobile-language-switcher .language-btn {
		padding: 8px 10px;
		font-size: 13px;
		background: rgba(255, 255, 255, 0.9);
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-radius: 6px;
	}

	.mobile-language-switcher .flag-img {
		width: 24px;
		height: 18px;
	}

	.mobile-language-switcher .language-dropdown-menu {
		background: white;
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-radius: 6px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	.language-selector {
		padding: 6px 12px;
		font-size: 13px;
	}

	.language-options {
		min-width: 100px;
	}

	.lang-option {
		padding: 8px 12px;
		font-size: 13px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title.section-title-center {
		max-width: 100%;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 45px;
	}

	.section-title h2 {
		font-size: 34px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero .container-fluid {
		padding: 0 15px;
	}

	.hero.hero-bg-image .hero-box {
		padding: 80px 15px;
	}

	.hero-body {
		gap: 20px 30px;
		margin-top: 30px;
	}

	.hero-content-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-content-list ul {
		gap: 20px 30px;
	}

	.hero-content-list ul li {
		padding-left: 25px;
	}

	.hero-content-list ul li:before {
		font-size: 16px;
	}

	.hero-counter {
		max-width: 260px;
	}

	.hero-counter-box {
		padding: 20px;
	}

	.hero-counter-content {
		margin-bottom:0;
	}

	.hero-counter-content h2 {
		font-size: 36px;
		margin-bottom: 0;
	}

	.hero-info-video-box,
	.hero-image-rating-box {
		width: calc(50% - 10px);
	}

	.hero-info-bg-image img {
		aspect-ratio: 1 / 0.9;
	}

	.hero-video-tag-btn,
	.hero-rating-content {
		top: 20px;
		left: 20px;
		right: 20px;
	}

	.hero-video-btn a {
		width: 40px;
		height: 40px;
	}

	.hero-video-btn a img {
		max-width: 12px;
	}

	.hero-info-video-content {
		bottom: 20px;
		right: 20px;
		left: 20px;
	}

	.working-hours-item {
		width: 100%;
	}

	.hero-image-rating-box .google-rating-box {
		right: 20px;
		bottom: 20px;
	}

	.google-rating-box {
		padding: 15px;
	}

	.working-hours-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.working-hours-body {
		margin-bottom: 20px;
	}

	.working-hours-body ul li {
		margin-bottom: 10px;
	}

	.working-hours-btn .btn-default {
		padding: 12px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		padding: 0 45px 70px 50px;
		margin-bottom: 30px;
	}

	.about-us-img-1 img {
		aspect-ratio: 1 / 1.1;
	}

	.about-us-img-2 img {
		aspect-ratio: 1 / 0.99;
	}

	.about-experience-box {
		padding: 15px;
		max-width: 150px;
	}

	.about-experience-box .icon-box img {
		max-width: 35px;
	}

	.about-experience-box .about-experience-content h3 {
		font-size: 18px;
	}

	.company-review {
		transform: rotate(-180deg) translate(-50%, 50%);
	}

	.about-us-list ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.about-us-list ul li::before {
		font-size: 16px;
	}

	.about-us-list {
		margin-bottom: 30px;
	}

	.about-us-body {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-item {
		padding: 30px;
	}

	.what-we-item-content h2 {
		margin-bottom: 40px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.our-history {
		padding: 50px 0;
	}

	.our-history-item {
		width: 100%;
		align-items: center;
		gap: 20px 30px;
	}

	.our-history-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.our-history-image,
	.our-history-content {
		width: calc(50% - 15px);
	}

	.our-history-image figure {
		border-radius: 20px;
	}

	.our-history-image img {
		aspect-ratio: 1 / 0.72;
		border-radius: 20px;
	}

	.our-history-body {
		width: calc(100% - 75px);
	}

	.our-history-body h2 {
		font-size: 34px;
		margin-bottom: 15px;
	}

	.our-history-content .icon-box img {
		max-width: 50px;
	}

	.our-menu {
		padding: 50px 0;
	}

	.our-menu::before {
		width: 140px;
		height: 140px;
		opacity: 40%;
	}

	.our-menu-item .our-menu-img {
		margin-bottom: 20px;
	}

	.our-menu-img figure {
		max-width: 160px;
	}

	.our-menu-content h3 {
		margin-bottom: 10px;
	}

	.food-pricing {
		padding: 50px 0;
	}

	.food-pricing-list {
		border-radius: 20px;
		padding: 30px;
		margin-bottom: 30px;
	}

	.food-pricing-list-item {
		margin-bottom: 15px;
	}

	.food-pricing-list-item ul li {
		margin-bottom: 5px;
	}

	.offer-pricing-box {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}

	.offer-pricing-item {
		width: calc(50% - 15px);
		border-radius: 20px;
		padding: 20px;
		margin: 0;
	}

	.offer-pricing-item-image img {
		max-width: 150px;
	}

	.intro-video {
		padding: 50px 0;
	}

	.intro-video-box {
		margin-bottom: 70px;
	}

	.intro-video-box .video-play-button img {
		max-width: 130px;
	}

	.intro-video-box .video-play-button a::before {
		font-size: 30px;
	}

	.intro-video-box .section-title {
		max-width: 510px;
	}

	.intro-video-list {
		padding-top: 30px;
	}

	.intro-video-list ul {
		gap: 15px;
	}

	.intro-video-list ul li {
		padding-left: 25px;
	}

	.intro-video-list ul li::after {
		font-size: 16px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-image-1 {
		margin-bottom: 30px;
	}

	.why-choose-image-1 figure,
	.why-choose-image-2 figure,
	.why-choose-image-1 img,
	.why-choose-image-2 img {
		border-radius: 20px;
	}

	.why-choose-image-1 img {
		aspect-ratio: 1 / 0.8;
	}

	.why-choose-content .section-row {
		margin-bottom: 30px;
	}

	.why-choose-item {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.why-choose-item .icon-box img {
		max-width: 26px;
	}

	.why-choose-item-content {
		width: calc(100% - 60px);
	}

	.why-choose-item-content h3 {
		margin-bottom: 5px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faqs-images {
		margin: 0 0 30px 0;
	}

	.faqs-img img,
	.faqs-img figure {
		border-radius: 20px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-button:not(.collapsed) {
		margin-bottom: 10px;
	}

	.our-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery figure,
	.page-gallery-box .photo-gallery img {
		border-radius: 20px;
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.testimonials-content {
		margin-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-quote img {
		max-width: 8px;
	}

	.testimonial-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.testimonials-counter-list {
		margin-top: 40px;
		padding-top: 40px;
	}

	.testimonials-counter-item {
		width: calc(50% - 15px);
		display: block;
	}

	.testimonials-counter-item h2 {
		width: 100%;
		font-size: 34px;
	}

	.testimonials-counter-item p {
		width: 100%;
		margin-top: 5px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-featured-image a {
		border-radius: 20px;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-item-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-contact-list {
		gap: 15px 10px;
	}

	.footer-contact-item {
		width: calc(33.33% - 6.67px);
		padding-right: 10px;
	}

	.footer-contact-item .icon-box,
	.footer-contact-detail {
		margin-bottom: 15px;
	}

	.footer-contact-item .icon-box img {
		max-width: 50px;
	}

	.footer-contact-detail h3 {
		margin-bottom: 15px;
	}

	.footer-copyright {
		padding: 40px 0 50px;
		margin-top: 40px;
	}

	.footer-logo img {
		max-width: 165px;
	}

	.footer-social-links ul li {
		margin-right: 10px;
	}

	.footer-social-links ul li a {
		width: 40px;
		height: 40px;
	}

	.footer-social-links ul li a i {
		font-size: 20px;
	}

	.page-header {
		padding: 45px 0;
	}

	.page-header-box h1 {
		font-size: 45px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.our-approach-content {
		margin-bottom: 30px;
	}

	.mission-vision-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.mission-vision-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.mission-vision-item .icon-box img {
		max-width: 25px;
	}

	.mission-vision-content {
		width: calc(100% - 65px);
	}

	.our-approach-image {
		max-width: 70%;
		margin: 0 auto;
	}

	.our-journey {
		padding: 40px 0;
	}

	.journey-video {
		padding: 50px 0 80px;
	}

	.video-play-button.bg-effect a {
		width: 80px;
		height: 80px;
	}

	.video-play-button.bg-effect a i {
		font-size: 30px;
	}

	.journey-content {
		padding: 30px;
		margin-left: 0;
	}

	.journey-item,
	.journey-content .section-title {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.journey-btn {
		margin-top: 30px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-image a {
		border-radius: 16px;
	}

	.team-image img {
		aspect-ratio: 1 / 1.1;
	}

	.team-item:hover .team-social-icon {
		margin-bottom: 20px;
	}

	.team-content h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.cta-section {
		padding: 50px 0;
	}

	.cta-box {
		justify-content: center;
		text-align: center;
		padding: 30px;
	}

	.cta-box .cta-box-content {
		width: 100%;
	}

	.cta-box-btn {
		justify-content: center;
	}

	.cta-counter-list {
		margin-top: 50px;
	}

	.cta-counter-item {
		width: calc(50% - 15px);
		border-radius: 20px;
	}

	.cta-counter-item-content h3 {
		font-size: 38px;
	}

	.page-menu {
		padding: 50px 0 20px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img {
		border-radius: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.44em;
	}

	.post-entry h2 {
		font-size: 34px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.tag-links {
		gap: 10px;
	}

	.post-tags .tag-links a {
		padding: 10px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0 25px;
	}

	.team-member-image {
		margin: 0 0 30px;
	}

	.member-social-list {
		margin-top: 30px;
	}

	.team-personal-info-box {
		padding: 25px 0 50px;
	}

	.team-expertise-box {
		margin: 0 0 30px 0;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.skills-progress-bar .skillbar .skill-data {
		margin-bottom: 15px;
	}

	.team-contact-form {
		padding: 30px;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
	}

	.page-testimonials .testimonial-item .testimonial-content p {
		font-size: 16px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery figure,
	.page-gallery-box .photo-gallery img {
		border-radius: 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.video-gallery-image a::before,
	.video-gallery-image img {
		border-radius: 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: static;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page-category-list {
		border-radius: 20px;
		padding: 20px;
		margin-bottom: 30px;
	}

	.page-category-list ul li a {
		padding: 15px 35px 15px 15px;
	}

	.page-category-list ul li a::before {
		right: 15px;
	}

	.sidebar-cta-box {
		padding: 190px 20px 20px;
		border-radius: 20px;
	}

	.sidebar-cta-contact .icon-box {
		margin-right: 10px;
	}

	.cta-contact-content {
		width: calc(100% - 60px);
	}

	.page-faqs .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-image {
		margin-bottom: 30px;
	}

	.contact-us-img figure,
	.contact-us-img img {
		border-radius: 20px;
	}

	.contact-us-img img {
		aspect-ratio: 1 / 0.7;
	}

	.opening-hours-item {
		bottom: 20px;
		left: 20px;
		padding: 20px;
	}

	.opening-hours-item h3 {
		margin-bottom: 20px;
	}

	.opening-hours-item ul li {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.contact-form .form-control {
		padding: 13px 15px;
	}

	.contact-info-box {
		padding: 25px 0;
	}

	.contact-info-item {
		width: calc(50% - 40px);
	}

	.contact-info-item:nth-child(3n + 3)::after {
		display: block;
	}

	.contact-info-item:last-child:after,
	.contact-info-item:nth-child(2n + 2)::after {
		display: none;
	}

	.contact-info-item .icon-box {
		margin-right: 10px;
	}

	.contact-info-content {
		width: calc(100% - 60px);
	}

	.google-map {
		padding: 25px 0 50px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 550px;
		border-radius: 20px;
	}

	.page-reserve-table {
		padding: 50px 0;
	}

	.reserve-table-form {
		margin: 0 0 30px 0;
	}

	.reserve-table-form .form-label {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.reserve-table-form .form-control {
		padding: 12px 15px;
	}

	.reserve-table-form .form-control.form-select {
		padding: 12px 35px 12px 15px;
	}

	.reserve-table-content {
		padding: 30px;
	}

	.reserve-table-info-item {
		margin-bottom: 30px;
	}

	.reserve-table-info-item h3 {
		font-size: 22px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

.fixed-button-area .header-btn a.btn-default {
        padding:13px 48px 13px 11px;
        font-size: 14px;
    }

	.fixed-button-area {
        display: flex;
        justify-content: center;
        align-items: center;
    }

	.fixed-button-area .header-btn a.btn-default:before {
        width: 32px;
        height: 32px;
        right: 4px;
    }

	a.navbar-brand img {
		max-width: 110px;
	}



	header.main-header.stikcy-top {
		margin: 10px auto;
		    width: 95%;

	}
	.main-header.stikcy-top .navbar {
		padding: 10px 15px;
	}

	.main-header .language-switcher .current-language {
		background:transparent;
		border:0;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.hero-content {
		padding: 30px 20px;
	}

	.hero-body {
		gap: 20px;
		margin-top: 30px;
	}

	.video-play-button.border-btn p {
		font-size: 14px;
		margin-right: 5px;
	}

	.hero-content-list {
		margin-top: 20px;
		padding-top: 20px;
	}

	.hero-content-list ul {
		gap: 10px 20px;
	}

	.hero-image img {
		aspect-ratio: 1 / 0.99;
	}

	.hero-counter {
		max-width: 180px;
		border-width: 10px;
	}

	.hero-counter::before {
		top: -30px;
		right: 0;
	}

	.hero-counter::after {
		bottom: 0;
		left: -30px;
	}

	.hero-counter-box {
		padding: 15px;
	}

	.hero-counter-content {
		margin-bottom:0;
	}

	.hero-counter-content h2 {
		font-size: 26px;
		margin-bottom:0;
	}

	.hero-counter-content p {
		font-size: 12px;
	}

	.review-image img {
		max-width: 44px;
	}

	.review-image.add-more {
		width: 44px;
		height: 44px;
	}

	.hero-info-video-box,
	.hero-image-rating-box {
		width: 100%;
	}

	.hero-info-bg-image,
	.hero-info-bg-image figure {
		height: auto;
	}

	.google-rating-header .icon-box img {
		max-width: 34px;
	}

	.working-hours-item {
		padding: 20px;
	}

	.working-hours-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.working-hours-header h3 {
		font-size: 18px;
	}

	.working-hours-header img {
		max-width: 24px;
	}

	.about-us-images {
		padding: 0 20px 34px 30px;
	}

	.about-us-img-1 img {
		aspect-ratio: 1 / 1.26;
	}

	.about-experience-box {
		padding: 10px;
		max-width: 120px;
		transform: translateY(20%);
	}

	@keyframes experiencemoveobject {
		50% {
			left: 20px;
		}
	}

	.about-experience-box .about-experience-content h3 {
		font-size: 16px;
	}

	.company-review {
		transform: rotate(-180deg) translate(0, 20%);
	}

	.company-review h3 {
		font-size: 14px;
	}

	.about-us-img-2 {
		border-width: 10px;
		max-width: 145px;
	}

	.about-us-img-2::before {
		top: -30px;
		right: 20px;
	}

	.about-us-img-2::after {
		bottom: 34px;
		left: -30px;
	}

	.about-us-body {
		gap: 25px;
	}

	.about-comapny-client,
	.about-company-result {
		width: 100%;
	}

	.company-result-content h3 {
		font-size: 18px;
	}

	.what-we-item {
		padding: 20px;
	}

	.what-we-item-content h3 {
		margin-bottom: 10px;
	}

	.what-we-item-content h2 {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.what-we-readmore-btn {
		margin-top: 15px;
		padding-top: 15px;
	}

	.our-history-item:nth-child(even) {
		flex-direction: column;
	}

	.our-history-image,
	.our-history-content {
		width: 100%;
	}

	.our-history-image img {
		aspect-ratio: 1 / 0.67;
	}

	.our-history-body {
		width: calc(100% - 65px);
	}

	.our-history-body h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.our-history-body h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-menu-item .our-menu-img {
		margin-bottom: 10px;
	}

	.our-menu-img figure {
		max-width: 120px;
	}

	.our-menu-content h3 {
		font-size: 18px;
	}

	.food-pricing-list {
		padding: 20px;
		margin-bottom: 20px;
	}

	.food-pricing-list-item ul li .price-list-title {
		font-size: 18px;
	}

	.offer-pricing-box {
		gap: 20px;
	}

	.offer-pricing-item {
		width: 100%;
	}

	.offer-pricing-item-content h3 {
		font-size: 18px;
	}

	.food-pricing-list-item p {
		font-size: 14px;
	}

	.intro-video-box .video-play-button img {
		max-width: 100px;
	}

	.intro-video-box .video-play-button a::before {
		font-size: 24px;
	}

	.intro-video-list {
		padding-top: 20px;
	}

	.intro-video-list ul {
		gap: 10px;
	}

	.why-choose-image-1 img {
		aspect-ratio: 1 / 0.95;
	}

	.why-choose-list {
		margin-bottom: 30px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.faqs-image-box-2,
	.faqs-image-box-1,
	.faqs-images {
		gap: 20px;
	}

	.faqs-image-box-1 {
		width: calc(47% - 10px);
	}

	.faqs-image-box-2 {
		width: calc(53% - 10px);
	}

	.faqs-image-box-2 .faqs-contact-box .icon-box {
		width: 40px;
		height: 40px;
	}

	.faqs-image-box-2 .faqs-contact-box .icon-box img {
		max-width: 20px;
	}

	.faqs-contact-box-content p {
		font-size: 12px;
	}

	.faqs-contact-box-content h3 {
		font-size: 16px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-pagination {
		position: relative;
		margin-top: 30px;
		justify-content: center;
	}

	.testimonials-counter-list {
		margin-top: 20px;
		padding-top: 20px;
		gap: 20px;
	}

	.testimonials-counter-item {
		width: calc(50% - 10px);
	}

	.testimonials-counter-item h2 {
		font-size: 24px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-contact-list {
		gap: 15px 10px;
	}

	.footer-contact-item {
		width: 100%;
		border-bottom: 1px solid var(--dark-divider-color);
		padding: 0 0 15px 0;
		border-right: none;
	}

	.footer-contact-item:last-child {
		border-bottom: none;
	}

	.footer-contact-item .icon-box,
	.footer-contact-detail {
		margin-bottom: 15px;
	}

	.footer-contact-item .icon-box img {
		max-width: 40px;
	}

	.footer-contact-detail h3 {
		font-size: 18px;
	}

	.footer-copyright {
		gap: 20px;
		flex-direction: column;
		padding:40px 0 85px;
		margin-top: 15px;
	}
	.footer-copyright-text p {
		font-size: 12px;
		text-align: center;
	}

	.page-header-box h1 {
		font-size: 30px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-approach-image {
		max-width: 100%;
	}

	.our-journey {
		padding: 20px 0;
	}

	.journey-content {
		padding: 20px;
	}

	.journey-content .section-title,
	.journey-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.journey-item-header h4 {
		font-size: 16px;
	}

	.journey-item-header h3 {
		font-size: 18px;
	}

	.cta-section {
		padding: 60px 0 30px;
	}

	.cta-box {
		border-radius: 20px;
		padding: 30px 15px;
	}

	.cta-box-btn {
		gap: 15px;
	}

	.cta-box-image img {
		max-width: 100%;
	}

	.cta-counter-list {
		margin-top: 30px;
		gap: 20px;
	}

	.cta-counter-item {
		width: calc(50% - 10px);
		padding: 25px;
	}

	.cta-counter-item-content h3 {
		font-size: 32px;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 24px;
	}

	.tag-links {
		font-size: 18px;
	}

	.member-content-body ul li {
		font-size: 18px;
	}

	.member-content-body ul li span {
		width: 60%;
	}

	.team-contact-form {
		border-radius: 12px;
		padding: 30px 20px;
	}

	.contact-us-img img {
		aspect-ratio: 1 / 1.02;
	}

	.opening-hours-item {
		padding: 10px;
	}

	.opening-hours-item h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-info-item:nth-child(2n + 2)::after {
		display: block;
	}

	.contact-info-item:after {
		top: auto;
		right: 0;
		left: 0;
		height: 1px;
		width: 100%;
		bottom: -15px;
	}

	.contact-info-content h3 {
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.reserve-table-form .form-label {
		font-size: 16px;
	}

	.reserve-table-content {
		padding: 30px 20px;
	}

	.reserve-table-info-item h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.reserve-table-info-item ul li a {
		width: 38px;
		height: 38px;
	}

	.reserve-table-info-item ul li a i {
		font-size: 18px;
	}

	/* Mobile language switcher - very small screens */
	.mobile-language-switcher {
		right: 10px !important;
		top: 12px !important;
	}

	/* Simple approach for small screens */
	.responsive-menu {
		left: 2px;
		top: 90px;
	}

	.mobile-language-switcher .language-text {
		display: none;
	}

	.mobile-language-switcher .language-btn {
		padding: 6px 8px;
		gap: 4px;
	}

	.mobile-language-switcher .flag-img {
		width: 20px;
		height: 15px;
	}
}


@media (min-width: 991px) and (max-width:1199px) {
	.btn-default {
		font-size: 13px;
	}

	.btn-reserv {
		font-size: 13px;
	}

	.main-menu ul li a {
		font-size: 13px;
	}
}

/* Hero Counter Styling */
.hero-counter-box {
	transition: all 0.3s ease;
	display: none;
	/* Initially hidden to prevent blinking */
}

.hero-counter-box[style*="display: none"] {
	display: none !important;
}

.hero-counter-box[style*="display: block"] {
	display: block !important;
}

.working-hours-item {
	background: var(--accent2-color, #39a54a);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 12px;
	max-width: 250px;
	width: 250px;
	height: 60px;
	margin: 10px 0 0 auto;
	padding: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.working-hours-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.working-hours-item[style*="background:#ffae00"] {
	background: #ffae00 !important;
}

.working-hours-header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 15px 20px;
}

.working-hours-header h3 {
	font-size: 18px;
	color: var(--white-color, #ffffff);
	font-weight: 700;
	margin: 0;
	padding: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	text-align: center;
	line-height: 1.2;
	width: 100%;
	display: block;
}

.working-hours-header img {
	width: 100%;
	max-width: 30px;
}

/* Multiple discount items styling */
.header-discount-area .working-hours-item+.working-hours-item {
	margin-top: 10px;
}

/* Mobile responsiveness for discount area */
@media (max-width: 768px) {
	.header-discount-area {
		margin-top: 15px;
	}

	.working-hours-item {
		max-width: 100%;
		width: 100%;
		height: 55px;
		margin: 10px 0 0 0;
		padding: 0;
	}

	.working-hours-header {
		padding: 15px 20px;
	}

	.working-hours-header h3 {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.working-hours-item {
		width: 100%;
		max-width: 100%;
		height: 50px;
		padding: 0;
	}

	.working-hours-header {
		padding: 12px 15px;
	}

	.working-hours-header h3 {
		font-size: 15px;
	}
}

/* Custom Hamburger Menu Styles */
.hamburger-btn {
	background: #E74C3C;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 0;
}

.hamburger-btn span {
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin: 2px 0;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #dc3545 !important;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: none;
}

.mobile-menu ul {
	list-style: none;
	padding: 20px 0;
	margin: 0;
	background: #dc3545 !important;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #dc3545 !important;
}

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

.mobile-menu li a {
	color: #ffffff !important;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 20px;
	display: block;
	text-decoration: none;
	font-family: sans-serif;
	background: #dc3545 !important;
}

.mobile-menu li a:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #ffffff !important;
}

.mobile-menu.show {
	display: block;
}

/* Ensure hamburger menu is visible on mobile */
@media (max-width: 991px) {
	.navbar-toggle {
		display: block !important;
	}

	.hamburger-btn {
		display: flex !important;
	}
}
