/**
* Template Name: Boss-cafe - v1.1.0
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Akshar", sans-serif;
	background: #0c0b09;
	color: #fff;
}

a {
	color: #cda45e;
	text-decoration: none;
}

a:hover {
	color: #cda45e;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Akshar", serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #1a1814;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1a1814;
	border-top-color: #cda45e;
	border-bottom-color: #cda45e;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 2px solid #cda45e;
}

.back-to-top i {
	font-size: 28px;
	color: #cda45e;
	line-height: 0;
}

.back-to-top:hover {
	background: #cda45e;
	color: #1a1814;
}

.back-to-top:hover i {
	color: #444444;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
    /* padding: 40px 0; */
    position: absolute;
    top: 0;
    right: 200px;
}

#topbar.topbar-scrolled {
	top: -40px;
}

#topbar .contact-info i {
	font-style: normal;
	color: #cda45e;
}

#topbar .contact-info i span {
	padding-left: 5px;
	color: #fff;
}

#topbar .languages ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #cda45e;
}

#topbar .languages ul li {

	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 24px */
}

#topbar .languages ul .active {

	background-color: #9B7C5F;
	border: 1px solid #9B7C5F;
}

.circle {
	color: white;
	padding: 15px;
	margin-left: 10px;
	border: 1px solid #fff;
	border-radius: 50%;
	height: 20px;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.circle:hover{
	background-color: #9B7C5F;
}

#topbar .languages ul li+li {
	margin-left: 10px;
}

/* #topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
} */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: rgba(12, 11, 9, 0.6);
	border-bottom: 1px solid rgba(12, 11, 9, 0.6);
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	top: 40px;
}

#header.header-scrolled {
	top: 0;
	background: rgba(0, 0, 0, 0.85);
	border-bottom: 1px solid #37332a;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Akshar", sans-serif;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
}

.navbar a i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
	color: #cda45e;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	color: #444444;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #cda45e;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #cda45e;
}

.navbar-mobile .getstarted {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #cda45e;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

.arrow-btn{
	cursor: pointer;
	z-index: 3;
	position: relative;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background: url("../img/png/main-banner.png") top center;
	background-size: cover;
	position: relative;
	padding: 0;
}

#hero .overlay{
	background:	 linear-gradient(180deg, #fff 0%, #000 100%);
	background-blend-mode: plus-darker;
	mix-blend-mode: multiply;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero .line-img {
	position: absolute;
	bottom: -50px;
	z-index: 1;
	width: 100%;
}
#hero .line-img img{
	width: 100%;
}

#hero .container {
	padding-top: 110px;
	margin-bottom: 70px;
	z-index: 4;
}

@media (max-width: 992px) {
	#hero .container {
		padding-top: 98px;
	}
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{
	content:"";
}
.swiper-button-next img{
	width: 50px;
    height: 80px;
    left: -46px;
    position: absolute;
    top: -100px;

}

#hero h1 {
	font-family: "Akshar", sans-serif;
	width: 450px;
	color: #FFF;
	margin: 50px auto;

	text-align: center;
	font-family: Akshar;
	font-size: 42px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

#hero h1 span {
	color: #cda45e;
}

#hero h2 {
	color: #eee;
	margin-bottom: 10px 0 0 0;
	font-size: 22px;
}

#hero .btns {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

#hero .btn-text {
	margin-bottom: 15px;
	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 24px */
}

#hero .btn-menu,
#hero .btn-book {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	color: white;
	border: 2px solid #cda45e;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
	background: #cda45e;
	color: #fff;
}

#hero .btn-book {
	margin-left: 15px;
}

#hero .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}

#hero .play-btn::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(205, 164, 94, 0.7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
	border-left: 15px solid #cda45e;
	transform: scale(20);
}

#hero .play-btn:hover::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 992px) {
	#hero .play-btn {
		margin-top: 30px;
	}
}

@media (max-height: 500px) {
	#hero {
		height: auto;
	}

	#hero .container {
		padding-top: 130px;
		padding-bottom: 60px;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 36px;
		line-height: 42px;
		width: auto;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
	}
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #1a1814;
}

.section-title {
	padding-bottom: 40px;
}

.section-title h2 {
	color: #FFF;
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 24px */
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* .section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	margin: 4px 10px;
} */

.section-title p {
	color: #9B7C5F;
	font-family: Akshar;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 48px */
	letter-spacing: 0.64px;
}

.section-title .section-info{
	color: #FFF;
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
	letter-spacing: 0.4px;
}


/*--------------------------------------------------------------
# coffee-mix-section
--------------------------------------------------------------*/
.coffee-mix-section {
	background: url("../img/png/just-mix-bg.png") center center;
	background-size: cover;
	position: relative;
	padding: 120px 0;
	height: 850px;
}


.coffee-mix-section .coffee-mix-section-img {
	position: relative;
	transition: .5s;
}

.coffee-mix-section .coffee-mix-section-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.coffee-mix-section .coffee-mix-section-img::before {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	z-index: 1;
	content: '';
	border-left: 5px solid #cda45e;
	border-top: 5px solid #cda45e;
	transition: .5s;
}

.coffee-mix-section .coffee-mix-section-img::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	z-index: 2;
	content: '';
	border-right: 5px solid #cda45e;
	border-bottom: 5px solid #cda45e;
	transition: .5s;
}

.coffee-mix-section .coffee-mix-section-img:hover {
	transform: scale(1.03);
}

.coffee-mix-section .coffee-mix-section-img:hover::before {
	left: 10px;
	top: 10px;
}

.coffee-mix-section .coffee-mix-section-img:hover::after {
	right: 10px;
	bottom: 10px;
}

.coffee-mix-section .content{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.coffee-mix-section .content h3 {
	font-weight: 600;
	color: #9B7C5F;
	font-family: Akshar;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	/* 48px */
	letter-spacing: 0.64px;
}

.coffee-mix-section .content ul {
	list-style: none;
	padding: 0;
}

.coffee-mix-section .content .content-wrapper{
	margin-top:36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.coffee-mix-section .content .content-wrapper .vertical-img-text-wrapper{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.coffee-mix-section .content .content-wrapper .vertical-img-text-wrapper img{
	height: 140px;
}

.coffee-mix-section .content .content-wrapper .vertical-img-text-wrapper .details{
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin:16px 0;
}
.coffee-mix-section .content .content-wrapper .vertical-img-text-wrapper .details .count{
	background:#9B7C5F;
	border-radius: 100px;
	padding: 5px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 24px */
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.coffee-mix-section .content .content-wrapper .vertical-img-text-wrapper .details  .info{
	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 24px */
	letter-spacing: 1px;
	text-transform: uppercase;
	width: 200px;
	min-height: 150px;
}
.coffee-mix-section .content .title{
	color: #DBDBDB;
	font-family: Akshar;
	font-size: 46px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 69px */
	letter-spacing: 0.92px;
	text-transform: capitalize;
}
.coffee-mix-section .content .content-details{
	color: #FFF;

	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
	letter-spacing: 0.4px;
}

.coffee-mix-section .content .info-text{
	color: #FFF;
	font-family: Akshar;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.coffee-mix-section .content ul{
	padding: 33px 54px;
}
.coffee-mix-section .content ul li {
	padding-bottom: 10px;
	list-style: disc;
	color: var(--BlackandWhite-SmokeGray-White, #FFF);
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	text-transform: capitalize;

}

.coffee-mix-section .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #cda45e;
}

.coffee-mix-section .content p:last-child {
	margin-bottom: 0;
}

.coffee-mix-section .img-wrap{
	display: flex;
	align-items: flex-start;
	position: relative;
}

.coffee-mix-section  .abs-img{
	position: absolute;
	right: 60px;
    top: -70px;
}
.coffee-mix-section  .heading{
	color: #FFF;

	text-align: center;
	font-family: Akshar;
	font-size: 46px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 69px */
	letter-spacing: 0.92px;
}

@media (min-width: 1024px) {
	.coffee-mix-section {
		/* background-attachment: fixed; */
		height:  1300px;
		background-position: bottom;
	}
}





/*--------------------------------------------------------------
# proud-to-serve
--------------------------------------------------------------*/
.proud-to-serve {
	background: url("../img/png/boss-just-mix-bg.png") center center;
	background-size: cover;
	position: relative;
	padding: 120px 0;
	height: 850px;
}

.proud-to-serve .proud-to-serve-img {
	position: relative;
	transition: .5s;
}

.proud-to-serve .proud-to-serve-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.proud-to-serve .proud-to-serve-img::before {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	z-index: 1;
	content: '';
	border-left: 5px solid #cda45e;
	border-top: 5px solid #cda45e;
	transition: .5s;
}

.proud-to-serve .proud-to-serve-img::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	z-index: 2;
	content: '';
	border-right: 5px solid #cda45e;
	border-bottom: 5px solid #cda45e;
	transition: .5s;
}

.proud-to-serve .proud-to-serve-img:hover {
	transform: scale(1.03);
}

.proud-to-serve .proud-to-serve-img:hover::before {
	left: 10px;
	top: 10px;
}

.proud-to-serve .proud-to-serve-img:hover::after {
	right: 10px;
	bottom: 10px;
}

.proud-to-serve .content h3 {
	font-weight: 600;
	color: #9B7C5F;
	font-family: Akshar;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	/* 48px */
	letter-spacing: 0.64px;
}

.proud-to-serve .content ul {
	list-style: none;
	padding: 0;
}

.proud-to-serve .content .content-wrapper{
	margin-top:36px;
}
.proud-to-serve .content .title{
	color: #DBDBDB;
	font-family: Akshar;
	font-size: 46px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 69px */
	letter-spacing: 0.92px;
	text-transform: capitalize;
}
.proud-to-serve .content .content-details{
	color: #FFF;

	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
	letter-spacing: 0.4px;
}

.proud-to-serve .content .info-text{
	color: #FFF;
	font-family: Akshar;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.proud-to-serve .content ul{
	padding: 33px 54px;
}
.proud-to-serve .content ul li {
	padding-bottom: 10px;
	list-style: disc;
	color: var(--BlackandWhite-SmokeGray-White, #FFF);
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	text-transform: capitalize;

}

.proud-to-serve .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #cda45e;
}

.proud-to-serve .content p:last-child {
	margin-bottom: 0;
}

.proud-to-serve .img-wrap{
	display: flex;
	align-items: flex-start;
	position: relative;
}

.proud-to-serve  .abs-img{
	position: absolute;
	right: 60px;
    top: -70px;
}

@media (min-width: 1024px) {
	.proud-to-serve {
		background-attachment: fixed;
	}
}


.proud-to-serve .section-title p{
	font-size: 60px!important;
}


/*--------------------------------------------------------------
# boss-coffe-experience
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #1d1b16;
	margin-top: 110px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 98px;
	}
}

.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 300;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #37332a;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# boss-coffe-experience
--------------------------------------------------------------*/
.boss-coffe-experience {
	background: url("../img/png/boss-cafe-bg.png") center center;
	background-size: cover;
	position: relative;
	padding: 80px 0;
	height: 950px;
}



.boss-coffe-experience .boss-coffe-experience-img {
	position: relative;
	transition: .5s;
}

.boss-coffe-experience .boss-coffe-experience-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.boss-coffe-experience .boss-coffe-experience-img::before {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	z-index: 1;
	content: '';
	border-left: 5px solid #cda45e;
	border-top: 5px solid #cda45e;
	transition: .5s;
}

.boss-coffe-experience .boss-coffe-experience-img::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	z-index: 2;
	content: '';
	border-right: 5px solid #cda45e;
	border-bottom: 5px solid #cda45e;
	transition: .5s;
}

.boss-coffe-experience .boss-coffe-experience-img:hover {
	transform: scale(1.03);
}

.boss-coffe-experience .boss-coffe-experience-img:hover::before {
	left: 10px;
	top: 10px;
}

.boss-coffe-experience .boss-coffe-experience-img:hover::after {
	right: 10px;
	bottom: 10px;
}

.boss-coffe-experience .content h3 {
	font-weight: 600;
	color: #9B7C5F;
	font-family: Akshar;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	/* 48px */
	letter-spacing: 0.64px;
}

.boss-coffe-experience .content ul {
	list-style: none;
	padding: 0;
}

.boss-coffe-experience .content .content-wrapper{
	margin-top:175px;
}
.boss-coffe-experience .content .title{
	color: #DBDBDB;
	font-family: Akshar;
	font-size: 46px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 69px */
	letter-spacing: 0.92px;
	text-transform: capitalize;
}
.boss-coffe-experience .content .content-details{
	color: #FFF;

	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
	letter-spacing: 0.4px;
}

.boss-coffe-experience .content .info-text{
	color: #FFF;
	font-family: Akshar;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.boss-coffe-experience .content ul li {
	padding-bottom: 10px;

}

.boss-coffe-experience .content ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #cda45e;
}

.boss-coffe-experience .content p:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.boss-coffe-experience {
		background-attachment: fixed;
	}
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us{
	height: 996px;
	display: flex;
	align-items: center;
	justify-self: center;
}
.why-us .box {
	padding: 50px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: all ease-in-out 0.3s;
	/* background: #1a1814; */
	border: 1px #9B7C5F solid;
	position: relative;
	height: 346px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .show-now-img{
	position: absolute;
	top:-165px
}
.show-now-content{
	z-index: 999;
	position: relative;
    bottom: -85px;
}

.why-us .box-container
{
	margin: 250px 0 0;
}

.show-now-content h4{
	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 46px;
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 69px */
	letter-spacing: 0.92px;
	text-transform: capitalize;
}
.show-now-content p{
	color: #FFF;
	text-align: center;
	/* Boss_Body */
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
}
.why-us .box span {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #cda45e;
}


.why-us .box:hover {
	/* background: #cda45e; */
	padding: 30px 30px 70px 30px;
	box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}



.why-us .section-title{
	text-align: center;
    z-index: 99;
    position: absolute;
    top: -200px;
    left: 140px;

}
.why-us .section-title p{
	color: #9B7C5F;
	font-family: Akshar;
	font-size: 60px !important;
	font-style: normal;
	font-weight: 600;
	line-height: 110%; /* 66px */
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.why-us .logos-wrap{
	margin: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .logos-wrap img{
	margin: 0 15px;

}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
	padding: 0;
	margin: 0 auto 0 auto;
	list-style: none;
	text-align: center;
	border-radius: 50px;
}

.menu #menu-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px 10px 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	margin-bottom: 10px;
	transition: all ease-in-out 0.3s;
	border-radius: 50px;
	font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
	color: #cda45e;
}

.menu #menu-flters li:last-child {
	margin-right: 0;
}

.menu .menu-item {
	margin-top: 50px;
}

.menu .menu-img {
	width: 70px;
	border-radius: 50%;
	float: left;
	border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
	margin-left: 85px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.menu .menu-content::after {
	content: "......................................................................"
		"...................................................................."
		"....................................................................";
	position: absolute;
	left: 20px;
	right: 0;
	top: -4px;
	z-index: 1;
	color: #bab3a6;
	font-family: "Akshar";
}

.menu .menu-content a {
	padding-right: 10px;
	background: #1a1814;
	position: relative;
	z-index: 3;
	font-weight: 700;
	color: white;
	transition: 0.3s;
}

.menu .menu-content a:hover {
	color: #cda45e;
}

.menu .menu-content span {
	background: #1a1814;
	position: relative;
	z-index: 3;
	padding: 0 10px;
	font-weight: 600;
	color: #cda45e;
}

.menu .menu-ingredients {
	margin-left: 85px;
	font-style: italic;
	font-size: 14px;
	font-family: "Akshar", sans-serif;
	color: rgba(255, 255, 255, 0.5);
}


/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
	background: url("../img/Rectangle 8.svg") center center no-repeat;
	background-size: cover;
	position: relative;
}

.events::before {
	content: '';
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.events .section-logo{
	margin:56px auto;
	text-align: center;

}
.events .section-logo h5{
	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 120%; /* 24px */
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.events .boss-coffe-experience-us-info{
	color: #FFF;
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
	letter-spacing: 0.4px;
}

/* .events .boss-coffe-experience-us-info .imp-msg{

} */

.events .section-title h2 {
	color: #fff;
}

.events .container {
	position: relative;
}

@media (min-width: 1024px) {
	.events {
		background-attachment: fixed;
	}
}

.events .events-carousel {
	background: rgba(255, 255, 255, 0.08);
	padding: 30px;
}

.events .event-item {
	color: #fff;
	display: flex;
	align-items: center;
}

.events .event-item h3 {
	font-weight: 600;
	font-size: 26px;
	color: #cda45e;
}

.events .pos-img {
	position: relative;
	top:6px;
	right: -60px;
}
.events .info{
	width: 75%;
}
.events .abt-content{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.events .event-item .price {
	font-size: 26px;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	margin-bottom: 15px;
}

.events .event-item .price span {
	border-bottom: 2px solid #cda45e;
}

.events .event-item ul {
	list-style: none;
	padding: 0;
}

.events .event-item ul li {
	padding-bottom: 10px;
}

.events .event-item ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #cda45e;
}

.events .event-item p:last-child {
	margin-bottom: 0;
}

.events .event-item .imp-msg{
    font-size: 14px;
}

.events .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #cda45e;
}



/*--------------------------------------------------------------
# in-store-menu
--------------------------------------------------------------*/
/* .swiper-slide{
	margin-right: 64px!important;
} */

.in-store-menu .testimonial-item {
	box-sizing: content-box;
	min-height: 520px;
}
.in-store-menu .menu-item{
	box-sizing: content-box;
	min-height: 320px;

}
.in-store-menu .menu-item .image img{
	object-fit: cover;
	width: 100%;
	height: 360px;
	margin-bottom: 20px;
}
.menu-details-info h4{
		color: #9B7C5F;
		text-align: center;
		font-family: Akshar;
		font-size: 32px;
		font-style: normal;
		font-weight: 400;
		line-height: 150%; /* 48px */
		letter-spacing: 0.64px;
}

.in-store-menu .menu-item .menu-info .menu-title{
	color: var(--BlackandWhite-SmokeGray-White, #FFF);
	/* Boss H3 */
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 30px */
}

.in-store-menu .menu-item .menu-info .menu-desc{
	color: var(--BlackandWhite-SmokeGray-20, #EFEEEE);
	/* Boss_Body */
	font-family: Akshar;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
}

.in-store-menu .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50%;
	margin: -40px 0 0 40px;
	position: relative;
	z-index: 2;
	border: 6px solid rgba(255, 255, 255, 0.2);
}

.in-store-menu .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 45px;
	color: white;
}

.in-store-menu .testimonial-item h4 {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 0 45px;
}

.in-store-menu .testimonial-item .quote-icon-left,
.in-store-menu .testimonial-item .quote-icon-right {
	color: #d3af71;
	font-size: 26px;
}

.in-store-menu .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.in-store-menu .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.in-store-menu .testimonial-item p {
	font-style: italic;
	margin: 0 15px 0 15px;
	padding: 20px 20px 60px 20px;
	background: #26231d;
	position: relative;
	border-radius: 6px;
	position: relative;
	z-index: 1;
}

.in-store-menu .swiper-pagination {
	margin-top: 30px;
	position: relative;
	display: flex;
	justify-content: flex-start;
}

.in-store-menu .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
}

.in-store-menu .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #cda45e;
	width: 40px;
	height: 12px;
	border-radius: 16px;
}
.in-store-menu .img-wrapper img{
	width: 250px;
	margin-right:32px;
}
.in-store-menu .img-wrapper{
	display: flex;
	justify-content: center;
	margin-top:24px;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
	overflow: hidden;
	/* border-right: 3px solid #454035;
	border-bottom: 3px solid #454035; */
}

.gallery .gallery-item img {
	transition: all ease-in-out 0.4s;
	width: 625px;
	object-fit: contain;
}

.gallery .gallery-item:hover img {
	transform: scale(1.1);
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: black;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
	position: relative;
}

#footer .footer-top {
	/* background: #0c0b09; */
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
	text-align: center;
}

#footer .footer-top .footer-info img{
	margin-bottom: 32px;
}

#footer .footer-top .footer-info h3 {
	color: #9B7C5F;
	text-align: center;
	font-family: Akshar;
	font-size: 19.931px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 29.896px */
	letter-spacing: 0.399px;
}

#footer .footer-top .footer-info p {
	color: #FFF;

	text-align: center;
	font-family: Akshar;
	font-size: 19.931px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 29.896px */
	letter-spacing: 0.399px;
}

#footer .footer-top .footer-info .timing-info{
	color: #FFF;
	text-align: center;
	font-family: Akshar;
	font-size: 19.931px;
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 29.896px */
	letter-spacing: 0.399px;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;

	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	margin:0 10px;
}
#footer .footer-top .social-links{
	z-index: 9999;
	position: relative;
}


#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}
#footer .line-img{
	position: absolute;
    width: 100%;
    bottom: 60px;
}
#footer .line-img img{
    width: 100%;
}
#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #cda45e;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: #cda45e;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #28251f;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
	background: #28251f;
	color: white;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 2px 20px;
	background: #cda45e;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #d3af71;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

.link-list{
	margin-left: auto;

}
.link-list li {
	list-style-type: none;
}

.link-list li  a{
	list-style-type: none;
	color: #fff;
}
.box-mix-mobile-img{
	display: none;
}