:root {
	--theme-color: #8b2b11;
}



div#wrapper {
	position: relative;
	margin: 0 auto;
	overflow: hidden !important;
	width: 100%;
	min-width: 320px;
}


/*** 

====================================================================
            Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
	position: relative;
	height: 50px;
	line-height: 44px;
	text-align: center;
	color: rgb(255, 255, 255);
	font-size: 20px;
	cursor: pointer;
	border-radius: 50%;
	float: right;
	margin-left: 15px;
	display: none;
}

.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.mobile-menu .mCSB_scrollTools {
	right: -6px;
}

.mobile-menu .mCSB_inside>.mCSB_container {
	margin-right: 5px;
}

.mobile-menu .navbar-collapse {
	display: block !important;
}

.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px;
	text-align: left;
	margin-bottom: 100px;
	margin-top: 25px;
}

.mobile-menu-visible {
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
	opacity: 0.30;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #202020;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn {
	position: absolute;
	right: 20px;
	top: 15px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	font-size: 20px;
	color: #ffffff;
	cursor: pointer;
	z-index: 10;
	-webkit-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
}

.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff !important;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
	font-size: 15px;
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
	height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.10);
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
	display: none;
	transition: 0s;
	z-index: 999;
	opacity: 1;
	border-top: 0;
}

.mobile-menu .social-links {
	position: relative;
	text-align: center;
	padding: 30px 25px;
}

.mobile-menu .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
	position: relative;
	line-height: 32px;
	font-size: 16px;
	color: #ffffff;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-nav-toggler {
	display: none;
	text-align: right;
}

.new_header_style .navbar.navbar-default {
	padding: 64px 0;
}

.new_header_style .navbar .navbar-brand {
	width: 300px;
	height: 230px;
	filter: drop-shadow(0px 10px 25px rgba(26,46,85,0.1));
	background-color: #ffffff;
	text-align: center;
	right: 0;
	display: inline-block;
	top: 0;
}

.new_header_style .navbar .navbar-brand img {
	display: inline-block;
}

.navbar-default .navbar-nav > li > a {
	margin-left: 15px;
	margin-right: 14px;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	text-transform: capitalize;
	font-size: 17px;
	color: #222;
}

.auto-container {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
	position: static;
}

section {
	overflow: visible;
	background-size: cover;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.main-content .tp-banner-container {
	margin-top: 200px;
}

.main-content .tp-banner-container {
	margin-top: 200px;
}

.navbar.navbar-default.floating-menu .navbar-brand {
	height: 121px;
}

.new_header_style .navbar.navbar-default.floating-menu {
	padding: 15px 0;
}

.new_header_style .navbar .navbar-brand img {
	margin-top: 13px;
}

.header-nav .search-toggler {
	position: absolute;
	left: 70px;
	top: 70px;
	z-index: 9;
	width: 54px;
	height: 54px;
	border-radius: 27px;
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	text-align: center;
	line-height: 52px;
	cursor: pointer;
	transition: .5s;
}

.header-nav .cart {
	position: absolute;
	right: 70px;
	top: 70px;
	z-index: 9;
	width: 54px;
	height: 54px;
	border-radius: 27px;
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	text-align: center;
	line-height: 52px;
	cursor: pointer;
	transition: .5s;
    display: none;
}

.header-nav {
	position: relative;
}

.search-toggler:hover {
	color: #fff;
	background: var(--theme-color);
	border-color: var(--theme-color);
}

.header-nav .cart:hover {
	color: #fff;
	background: #e5e5e5;
	border-color: #e5e5e5;
}

.header-nav .cart span.count {
	position: absolute;
	top: 0;
	right: 0;
	width: 19px;
	height: 19px;
	border-radius: 10px;
	filter: drop-shadow(3.812px 5.871px 5px rgba(0,0,0,0.2));
	background-color: var(--theme-color);
	color: #fff;
	line-height: 20px;
	font-size: 12px;
}

.header-nav .floating-menu .search-toggler {
	top: 23px;
}

.header-nav .floating-menu .cart {
	top: 23px;
}

/* banner section */
.banner-title h2 {
	font-size: 70px !important;
	line-height: 75px !important;
	color: #ffffff !important;
	font-weight: 400 !important;
	font-family: "Arvo";
	text-align: center;
}

.banner-text p {
	font-size: 16px !important;
	line-height: 26px !important;
	color: #ffffff;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	text-align: center;
}

.tp-caption a.btn-style-one {
	color: #fff !important;
}

.btn-style-one {
	font-size: 17px !important;
	letter-spacing: 1px !important;
	line-height: 30px !important;
	color: #ffffff;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	background-color: var(--theme-color);
	display: inline-block;
	text-align: center;
	transition: .5s !important;
	padding: 15px 40px !important;
	z-index: 0;
	position: relative;
	border: none;
}

.btn-style-one:hover {
	background-color: #222;
	color: #fff;
}

.btn-style-one:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	transition: .5s;
	background: #222;
	z-index: -1;
}

.btn-style-one:hover:before {
	width: 100%;
}


/* features */
section.features-section {
	position: relative;
	padding: 120px 0 90px;
}

.feature-block .inner-box {
	border: 1px solid #e5e5e5;
	padding: 44.5px 20px;
	text-align: center;
	margin-bottom: 30px;
	transition: .5s;
}

.feature-block .inner-box:hover {
	transform: translateY(15px);
}

.feature-block .icon {
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.feature-block .icon .default-icon {
	position: relative;
	opacity: 0;
	transition: .5s;
}

.feature-block .inner-box:hover .icon .default-icon {
	opacity: 1;
}

.feature-block .hover-icon {
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 1;
	transition: .5s;
}

.feature-block .inner-box:hover .hover-icon {
	opacity: 0;
	transform: scale(1.5);
}

.feature-block h4 {
	margin-bottom: 0;
	font-size: 20px;
	line-height: 1.4em;
	color: #262626;
	font-weight: 400;
	margin-bottom: 15px;
}

.feature-block p {
	font-size: 17px;
	line-height: 28px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	text-align: center;
}

section.about-section {
	position: relative;
	padding: 120px 0 90px;
}

.about-image-block {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 130px;
	margin-top: 30px;
}

.about-image-block .image-one {
	position: absolute;
	right: 52px;
	top: -133px;
}

.about-image-block .image-two {
	position: relative;
}

.about-image-block .image-three {
	position: absolute;
	right: 0;
	bottom: -53px;
	z-index: 1;
}

.about-image-block .image-three img {
	transition: .5s;
}

.pt-0 {
	padding-top: 0 !important;
}

.sub-title {
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 30px;
	color: #f38b1c;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	margin-bottom: 5px;
}

h2.sec-title {
	font-size: 50px;
	line-height: 1.2em;
	color: #262626;
	font-weight: 400;
	font-family: "Arvo";
	margin-bottom: 50px;
	margin-top: 0;
}

.about-content-blcok {
	position: relative;
	margin-bottom: 30px;
}

.about-content-blcok p {
	font-size: 17px;
	line-height: 28px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 20px;
}

.about-content-blcok ul {
	font-size: 16px;
	line-height: 30px;
	color: #262626;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	position: relative;
	padding-left: 20px;
	margin-bottom: 50px;
}

.about-content-blcok ul:before {
	background: #f38b1c;
	position: absolute;
	content: '';
	left: 0;
	top: 10px;
	bottom: 8px;
	width: 3px;
}

.img_hover_1 {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.img_hover_1:before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255, 255, 255,.2);
	border-radius: 0%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}

.img_hover_1:hover:before {
	-webkit-animation: circle .95s;
	animation: circle .95s;
}

@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}

	40% {
		opacity: 1;
	}

	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

@keyframes circle {
	0% {
		opacity: 1;
	}

	40% {
		opacity: 1;
	}

	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

.img_hover_2 {
	overflow: hidden;
	position: relative;
}

.img_hover_2:before {
	position: absolute;
	top: 0;
	left: -75%;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.img_hover_2:hover:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.sec-padd {
	padding: 120px 0 90px;
}
  
/* 
Food menu
*/

.food-menu-section {
	position: relative;
	padding: 120px 0 90px;
	background: #faf6f3;
}

section.food-menu-section.white-bg {
	background: #fff;
}

.menu-block {
	position: relative;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
}

.menu-block h4 {
	position: relative;
	font-size: 20px;
	line-height: 26px;
	color: #262626;
	font-weight: 400;
	font-family: "Arvo";
	margin-top: 0;
}

.menu-block h4 a {
    color: #262626;
    transition: .5s;
}

.menu-block h4 a:hover {
    color: var(--theme-color);
}

.menu-block p {
	font-size: 16px;
	line-height: 26px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 25px;
}

.menu-block .price {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 20px;
	line-height: 26px;
	color: #262626;
	font-weight: 400;
	font-family: "Arvo";
}

.food-menu-section .link-btn {
	margin-top: 50px;
	margin-bottom: 30px;
}

.food-menu-section .row {
	margin: 0 -23px;
}

.food-menu-section .col-md-6 {
	padding: 0 23px;
}


/*
* Video section
*/

.video-section {
	position: relative;
	padding: 120px 0 90px;
}

.video-block .video-btn a {
	position: relative;
	height: 100px;
	width: 100px;
	line-height: 100px;
	border-radius: 50%;
	color: #ffffff;
	text-align: center;
	font-size: 25px;
	display: inline-block;
	position: relative;
	transition: .5s;
}

.video-block .video-btn a:hover {
	color: #fff;
	background-color: #f28b1c;
}

.video-block {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.video-block .video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.video-block .video-btn a:before {
	position: absolute;
	content: '';
	width: 100px;
	height: 100px;
	border-radius: 50px;
	border: 6px solid rgb(255 255 255);
	left: 0;
	top: 0;
}

.video-block .video-btn .ripple:after {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

.ripple_animate:after {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14);
	-webkit-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.ripple_animate:after {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}

@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
	}
}

@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 70px rgba(244, 68, 56, .0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
		box-shadow: 0 0 0 0 rgba(244, 68, 56, .0);
	}
}

/* Gallery section */
section.gallery-section {
	position: relative;
}

.gallery-section .auto-container {
	max-width: 100%;
	padding: 0 10px;
}

section.gallery-section .row {
	margin: 0 -5px;
	;
}

section.gallery-section .row>* {
	padding: 0 5px !important;
}

/* gallery overlay */
.gallery-overlay {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

.gallery-overlay.b-radius-8 {
	overflow: hidden;
	border-radius: 8px;
}

.gallery-overlay .overlay-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	color: #ffffff;
	text-align: center;
	background: rgba(0,0,0,0.0);
}

.gallery-overlay  .overlay-box:before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	opacity: 0;
	background: rgb(14 24 36 / 70%);
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}

.gallery-overlay .overlay-box:after {
	content: '';
	position: absolute;
	right: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	opacity: 0;
	background: rgb(13 23 35 / 70%);
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%);
}

.gallery-overlay .inner-box:hover .overlay-box:before,
.gallery-overlay .inner-box:hover .overlay-box:after {
	opacity: 1;
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
}

.gallery-overlay .inner-box img {
	width: 100% !important;
}

.gallery-overlay .overlay-inner {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: table;
	vertical-align: middle;
	padding: 10px 0px;
	z-index: 1;
}

.gallery-overlay .overlay-inner .content {
	position: relative;
	width: auto;
	display: table-cell;
	vertical-align: middle;
}

.gallery-overlay .overlay-inner .link {
	position: relative;
	font-size: 18px;
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	display: inline-block;
	opacity: 0;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

.gallery-overlay .inner-box:hover .overlay-inner .link {
	opacity: 1;
	transition: all 500ms ease 500ms;
	-webkit-transition: all 500ms ease 500ms;
	-ms-transition: all 500ms ease 500ms;
	-o-transition: all 500ms ease 500ms;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.gallery-overlay .overlay-inner .link .icon {
	position: relative;
}

.gallery-overlay .inner-box .overlay-box img {
	width: auto !important;
}

/* pricing section */

section.pricing-section {
	padding: 120px 0 90px;
	position: relative;
}

section.pricing-section:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #faf6f3;
}

section.pricing-section .title-box {
	position: relative;
}

.pricing-block .inner-box {
	position: relative;
	text-align: center;
	padding: 38px 20px 44px;
	filter: drop-shadow(0px 2px 15px rgba(26,46,85,0.05));
	background-color: #ffffff;
	margin-bottom: 30px;
	transition: .5s;
}

.pricing-block .inner-box:hover {
	filter: drop-shadow(0px 10px 25px rgba(26,46,85,0.1));
}

.pricing-block .image {
	position: relative;
	min-height: 250px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	transition: .5s;
}

.pricing-block .inner-box:hover .image {
	transform: translateY(10px);
}

.pricing-block .inner-box h4 {
	font-size: 22px;
	line-height: 26px;
	color: #262626;
	font-weight: 400;
	font-family: "Arvo";
	margin-top: 0;
	position: relative;
}

.pricing-block .inner-box h4 a {
    color: #262626;
    transition: .5s;
}

.pricing-block .inner-box h4 a:hover {
    color: var(--theme-color);
}

.pricing-block .inner-box .price {
	font-size: 20px;
	line-height: 26px;
	color: var(--theme-color);
	font-weight: 400;
	font-family: "Arvo";
	margin-top: 20px;
	margin-bottom: 20px;
}

.pricing-block .inner-box .text {
	font-size: 17px;
	line-height: 28px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
}

/* testimonial section */
.testimonials-section {
	position: relative;
	background-color: #fff;
	padding: 120px 0;
}
/*testimonial-block-one*/

.testimonial-block-one {
	position: relative;
}

.testimonial-block-one .inner-box {
	position: relative;
	text-align: center;
}

.testimonial-block-one .inner-box .image {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 35px;
}

.testimonial-block-one .inner-box .image:after {
	position: absolute;
	content: "\f10e";
	font-family: 'FontAwesome';
	font-size: 20px;
	font-style: normal;
	color: #94c13d;
	top: 30px;
	right: -80px;
}

.testimonial-block-one .inner-box .image:before {
	position: absolute;
	content: "\f10e";
	font-family: 'FontAwesome';
	font-size: 20px;
	font-style: normal;
	transform: rotate(180deg);
	color: #94c13d;
	top: 30px;
	left: -80px;
}

.testimonial-block-one .inner-box .image img {
	border-radius: 50%;
}

.testimonial-block-one .inner-box h3 {
	position: relative;
	margin-bottom: 5px;
	margin-top: 0;
	font-size: 22px;
	line-height: 26px;
	color: #141417;
	font-weight: 400;
	font-family: "Arvo";
	text-align: center;
}

.testimonial-block-one .designation {
	font-size: 16px;
	line-height: 26px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	text-align: center;
}

.testimonial-block-one .inner-box .rating {
	position: relative;
	margin-bottom: 0;
	color: #ffc92e;
}

.testimonial-block-one .inner-box .rating .fa {
	position: relative;
	font-size: 14px;
	display: inline-block;
}

.testimonial-block-one .inner-box .text {
	position: relative;
	color: #222;
	font-size: 22px;
	font-weight: 400;
	max-width: 850px;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 34px;
	color: #141417;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	text-align: center;
}

.testimonials-section .testimonials .owl-controls {
	left: 0;
	right: 0;
	bottom: 50%;
	margin-bottom: -25px;
}

.testimonials-section .testimonials .owl-controls .owl-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background-color: #f9f5f3;
	line-height: 42px;
	color: #bfbbb9;
	transition: .5s;
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
	background: var(--theme-color);
	color: #fff;
}

section.cta-section {
	position: relative;
	text-align: center;
	background-size: cover;
	padding: 105px 0 115px;
	overflow: hidden;
}

section.cta-section .bg {
	top: -30%;
	width: 100%;
	height: 150%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	right: 0;
}

section.cta-section h2 {
	position: relative;
	font-size: 60px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 400;
	font-family: "Arvo";
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}

section.cta-section .text {
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	text-align: center;
	margin-bottom: 30px;
}

section.news-section {
	position: relative;
	padding: 120px 0 90px;
}

.news-block .inner-box {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
	margin-bottom: 30px;
	padding: 30px;
	filter: drop-shadow(0px 2px 15px rgba(26,46,85,0.1));
	background-color: #ffffff;
}

.news-block h4 {
	margin-top: 0;
	position: relative;
	font-size: 22px;
	line-height: 30px;
	color: #141417;
	font-weight: 400;
	font-family: "Arvo";
	margin-bottom: 0;
}

.news-block h4 a {
	position: relative;
}

.news-block .post-meta {
	margin-bottom: 10px;
}

.news-block .image {
	position: relative;
	margin-bottom: 30px;
	display: block;
}

.news-block .image img {
	width: 100%;
}

.news-block h4 a {
	color: #141417;
	transition: .5s;
}

.news-block h4 a:hover {
	color: var(--theme-color);
}

.news-block span.author {
	font-size: 17px;
	line-height: 50px;
	color: #141417;
	font-weight: 400;
	font-family: "Lato", sans-serif;
}

.news-block span.comment {
	font-size: 17px;
	line-height: 50px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
}

.news-block .text {
	font-size: 17px;
	line-height: 28px;
	color: #808080;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 10px;
}

.news-block .link-btn {
	position: relative;
}

.news-block .link-btn a {
	position: relative;
	transition: .5s;
	display: inline-block;
}

.news-block .link-btn a:hover {
	transform: rotate(360deg);
}

.news-block .post-meta span.separetor {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: #e5e5e5;
	display: inline-block;
	margin: 0 7px;
}

.news-block .date {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 60px;
	height: 60px;
	filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.15));
	background-color: #ffffff;
	line-height: 1.2em;
	padding-top: 14px;
	font-size: 14px;
	color: #141417;
	font-weight: 700;
	text-align: center;
}

.news-block .date span {
	font-size: 20px;
}

/* Contact form section */
section.contact-form-section {
	position: relative;
	padding: 120px 0;
	background: #faf6f3;
}

section.contact-form-section .content {
	position: relative;
	margin-bottom: 30px;
}

section.contact-form-section .image {
	position: relative;
	margin-bottom: 30px;
}

section.contact-form-section form input {
	width: 100%;
	border: 0;
	height: 40px;
	border-bottom: 1px solid #ddd;
	padding-left: 25px;
	outline: none;
	transition: .5s;
}

section.contact-form-section form input:focus {
	border-color: var(--theme-color);
}

section.contact-form-section .bg {
	position: relative;
	background: #fff;
	padding: 50px;
	padding-bottom: 20px;
}

section.contact-form-section form button.btn-style-one {
	width: 100%;
	border: none;
}

section.contact-form-section .content h2.sec-title {
	margin-bottom: 20px;
}

section.contact-form-section .content i {
	position: absolute;
	left: 0;
	top: 12px;
}

section.contact-form-section .content .form-group {
	position: relative;
	margin-bottom: 25px;
}

.newsletter {
	position: relative;
	padding-top: 80px;
	padding-bottom: 50px;
	background: #140b09;
}

.newsletter h2 {
	margin: 0;
	margin-bottom: 30px;
	color: #fff;
}

.newsletter .newsletter-form {
	position: relative;
}

.newsletter input {
	width: calc(100% - 225px);
	background: #251c1a;
	border: 0;
	padding: 11px 25px;
	border: 1px solid #251c1a;
	color: #fff;
	height: 60px;
}

.newsletter button.btn-style-one {
	position: absolute;
	top: 0;
	right: 0;
	outline: none;
	border: 0;
}

.newsletter input:focus {
	border-color: var(--theme-color);
	outline: none;
}

.newsletter .newsletter-form .form-group {
	margin-bottom: 30px;
}

.border-bottom-dark {
	border-bottom: 1px solid #372f2e;
	position: relative;
	margin-top: -1px;
	z-index: 11;
}

footer.footer-two {
	position: relative;
	background: #140b09;
	padding-top: 100px;
}

h4.footer-widget-title {
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 400;
	font-family: "Arvo";
	margin-top: 0;
	margin-bottom: 30px;
}

.contact-widget ul li {
	font-size: 17px;
	line-height: 30px;
	color: #cdcccc;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 15px;
}

.contact-widget ul li a {
	color: #cdcccc;
	transition: .5s;
}

.contact-widget ul li a:hover {
	color: var(--theme-color);
}

.office-hour-widget li {
	font-size: 17px;
	line-height: 30px;
	color: #cdcccc;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 15px;
}

.link-widget li {
	font-size: 17px;
	line-height: 30px;
	color: #cdcccc;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 10px;
}

.link-widget li a {
	color: #cdcccc;
	transition: .5s;
}

.link-widget li a:hover {
	color: var(--theme-color);
}

ul.footer-social-links li {
	display: inline-block;
	margin-right: 8px;
}

ul.footer-social-links li a {
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background-color: transparent;
	display: inline-block;
	color: #fff;
	text-align: center;
	line-height: 50px;
	border: 1px solid rgba(255,255,255,0.2);
}

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

.footer-bottom {
	position: relative;
}

.footer-bottom .outer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #2c2422;
	padding: 21px 0 2px;
}

.copy-right {
	font-size: 17px;
	color: #cdcccc;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	margin-bottom: 20px;
}

.copy-right a {
	color: #fff;
}

.footer-bottom ul.list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
}

.footer-bottom ul.list li {
	margin-right: 20px;
	padding-right: 20px;
}

.footer-bottom ul.list li:last-child {
	margin-right: 0;
	padding-right: 0;
}

.footer-bottom ul.list li:before {
	position: absolute;
	content: '';
	top: 8px;
	right: -2px;
	width: 2px;
	height: 16px;
	background: #898685;
}

.footer-bottom ul.list li {
	position: relative;
}

.footer-bottom ul.list li:last-child:before {
	opacity: 0;
}

footer.footer-two .footer-top {
	position: relative;
	padding-bottom: 40px;
}

footer.footer-two .widget {
	margin-bottom: 40px;
}

footer.footer-two .footer-top {
	position: relative;
	padding-bottom: 40px;
}

footer.footer-two .widget {
	margin-bottom: 40px;
}

.footer-bottom ul.list li a {
	font-size: 17px;
	line-height: 22px;
	color: #c4c3c3;
	font-weight: 400;
	font-family: "Lato", sans-serif;
	transition: .5s;
}

.footer-bottom ul.list li a:hover {
	color: var(--theme-color);
}

@media only screen and (max-width:1350px) {
 
	.header-nav .search-toggler {
		display: none;
	}

	.header-nav .cart {
		display: none;
	}
}

@media only screen and (max-width:991px) {
	.banner-title h2 {
		font-size: 50px !important;
		line-height: 65px !important;
	}

	.testimonials-section .testimonials .owl-controls .owl-nav {
		display: none;
	}
}

@media only screen and (max-width:767px) {
	.banner-title h2 {
		font-size: 26px !important;
		line-height: 35px !important;
	}

	.testimonials-section .testimonials .owl-controls .owl-nav {
		display: none;
	}
}

@media only screen and (max-width:575px) {
	.banner-title h2 {
		font-size: 20px !important;
		line-height: 28px !important;
	}

	.testimonials-section .testimonials .owl-controls .owl-nav {
		display: none;
	}
}



/*** 

====================================================================
    Search Popup
====================================================================

***/

.search-popup {
	position: fixed;
	left: 0;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	overflow: auto;
	background: rgba(0, 0, 0, 0.90);
	-webkit-transform: translateY(101%);
	-ms-transform: translateY(101%);
	transform: translateY(101%);
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.search-popup .popup-inner {
	width: 100%;
}

.search-popup.popup-visible {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	visibility: visible;
	opacity: 1;
}

.search-popup .overlay-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	display: block;
}

.search-popup .close-search {
	position: absolute;
	right: 25px;
	top: 25px;
	font-size: 22px;
	color: #ffffff;
	cursor: pointer;
	z-index: 5;
}

.search-popup .close-search:hover {
	opacity: 0.70;
}

.search-popup .search-form {
	position: relative;
	padding: 0px 15px 0px;
	max-width: 1024px;
	margin: 100px auto;
	margin-bottom: 100px;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
}

.search-popup .search-form fieldset {
	position: relative;
	border: 0;
}

.search-popup .search-form fieldset input[type="search"] {
	position: relative;
	height: 70px;
	padding: 20px 220px 20px 30px;
	background: #ffffff;
	line-height: 30px;
	font-size: 18px;
	color: #233145;
	border-radius: 0;
	font-family: "Lato", sans-serif;
}

.search-popup .search-form fieldset input[type="submit"] {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 220px;
	height: 70px;
	color: #ffffff !important;
	cursor: pointer;
	text-transform: uppercase;
	border: none;
	font-size: 17px !important;
	letter-spacing: 1px !important;
	line-height: 30px !important;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	background-color: var(--theme-color);
	display: inline-block;
	text-align: center;
	transition: .5s !important;
	padding: 15px 40px !important;
	z-index: 0;
}

.search-popup .search-form fieldset input[type="submit"]:hover {
	background-color: #222;
}

.search-popup h3 {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-align: center;
	display: none;
}

.search-popup .recent-searches {
	font-size: 16px;
	color: #ffffff;
	text-align: center;
	display: none;
}

.search-popup .recent-searches li {
	display: inline-block;
	margin: 0px 10px 10px 0px;
}

.search-popup .recent-searches li a {
	display: block;
	line-height: 24px;
	border: 1px solid #ffffff;
	padding: 7px 15px;
	color: #ffffff;
	border-radius: 3px;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.search-popup .search-form fieldset input[type="search"]:focus {
	border-color: #ddd;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.search-popup .search-form fieldset input::placeholder {
	color: #222;
	font-size: 18px;
	font-family: "Lato", sans-serif;
}

.video-carousel-btn .carousel-btn {
	font-size: 25px;
	color: #bcbcbc;
	transition: .5s;
	cursor: pointer;
	margin-right: 10px;
}

.video-carousel-btn .carousel-btn:hover {
	color: var(--theme-color);
}

.video-carousel-btn {
	margin-top: 20px;
}

.video-carousel-btn .carousel-btn {
	display: inline-block;
	width: 30px;
	height: 10px;
	cursor: pointer;
	position: relative;
}

.video-carousel-btn .carousel-btn:before {
	position: absolute;
	content: '';
	width: 30px;
	height: 2px;
	background-color: #bcbcbc;
	top: 4px;
	transition: .5s;
}

.video-carousel-btn .carousel-btn:after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border: 2px solid #bcbcbc;
	transform: rotate(45deg);
	transition: .5s;
}

.video-carousel-btn .carousel-btn.left-btn:after {
	left: 0;
	border-top-color: transparent;
	border-right-color: transparent;
}

.video-carousel-btn .carousel-btn.right-btn:after {
	right: 0;
	border-left-color: transparent;
	border-bottom-color: transparent;
}

.video-carousel-btn .carousel-btn.right-btn:hover:after {
	border-top-color: var(--theme-color);
	border-right-color: var(--theme-color);
}

.video-carousel-btn .carousel-btn.left-btn:hover:after {
	border-left-color: var(--theme-color);
	border-bottom-color: var(--theme-color);
}

.video-carousel-btn .carousel-btn:hover:before {
	background-color: var(--theme-color);
}

section.food-menus {
	overflow: hidden;
}


/** team-section **/

.team-section {
	position: relative;
	padding: 120px 0 90px;
}

.team-block-one .inner-box {
	position: relative;
	display: block;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.team-block-one .inner-box .image-box {
	position: relative;
	display: block;
	overflow: hidden;
	background: #000;
}

.team-block-one .inner-box .image-box img {
	width: 100%;
	transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img {
	opacity: 0.5;
	transform: scale(1.1);
}

.team-block-one .inner-box .image-box .social-links {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
}

.team-block-one .inner-box .image-box .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 3px;
}

.team-block-one .inner-box .image-box .social-links li a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #222;
	background: #fff;
	width: 50px;
	height: 50px;
	line-height: 54px;
	text-align: center;
	border-radius: 50%;
	font-weight: 700;
	transform: scale(0,0);
}

.team-block-one .inner-box .image-box .social-links li a:hover {
	color: #fff;
	background-color: var(--theme-color);
}

.team-block-one .inner-box:hover .image-box .social-links li a {
	transform: scale(1,1);
}

.team-block-one .inner-box .lower-content {
	position: relative;
	display: block;
	background: #fff;
	padding: 20px 30px 30px 30px;
	margin-top: -80px;
	border-top-right-radius: 80px;
}

.team-block-one .inner-box .lower-content h3 {
	display: block;
	font-size: 26px;
	line-height: 35px;
	margin-bottom: 0;
}

.team-block-one .inner-box .lower-content h3 a {
	display: inline-block;
	color: #222;
}

.team-block-one .inner-box .lower-content .designation {
	position: relative;
	display: block;
	font-size: 16px;
	margin: 0px;
}

.team-block-one .inner-box .lower-content .pattern-layer {
	position: absolute;
	left: 0px;
	top: -80px;
	width: 80px;
	height: 80px;
	background-repeat: no-repeat;
}

.borwser-food button.btn {
	background: var(--theme-color) !important;
	border-radius: 0;
	padding-top: 18px;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	background-color: #222 !important;
}

.client-logos-slider .owl-controls {
	margin-top: -130px;
}

span.food-menu-price {
	position: relative;
	color: var(--theme-color);
	position: absolute;
	top: 0;
	right: 0;
}

.single-menu-details-section .single-menu .single-menu-details {
	padding-top: 0;
	padding-bottom: 30px;
}

.single-menu-details-section h5.title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 7px;
	line-height: 1.2em;
}

.food-menu-price-two {
	font-size: 20px;
	color: var(--theme-color);
	margin-bottom: 10px;
}

.single-menu-details-section p {
	margin-bottom: 35px;
}

.single-menu-details-section ul.list-inline {
	margin-bottom: 25px;
}


/** contact-section **/

.contact-section {
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.contact-section .contact-info-inner {
	position: relative;
	display: block;
	background: #fff;
}

.contact-section .contact-info-inner .single-box h3 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 16px;
	font-weight: 600;
}

.contact-section .contact-info-inner .single-box .list li {
	position: relative;
	display: block;
	font-size: 15px;
	line-height: 28px;
	color: #848484;
}

.contact-section .contact-info-inner .single-box .list li a {
	color: #848484;
}

.contact-section .contact-info-inner .single-box .list li a:hover {
}

.contact-section .contact-info-inner .single-box:first-child .list li {
	line-height: 26px;
	margin: 0px;
}

.contact-section .contact-info-inner .single-box:nth-child(2) .list li:first-child {
	margin-bottom: 13px;
}

.contact-section .contact-info-inner .single-box {
	margin-bottom: 36px;
}

.contact-section .contact-info-inner .single-box:last-child {
	margin-bottom: 0px;
}

.contact-section .contact-info-inner .single-box .social-links li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
}

.contact-section .contact-info-inner .single-box .social-links li:last-child {
	margin: 0px !important;
}

.contact-section .contact-info-inner .single-box .social-links li a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: #848484;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border: 1px solid #e5e5e5;
	text-align: center;
}

.contact-section .contact-info-inner .single-box .social-links li a:hover {
	color: #fff;
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}

.contact-section .form-inner {
	position: relative;
	display: block;
	background: #fff;
}

.contact-section .form-inner h3 {
	position: relative;
	display: block;
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 28px;
	font-weight: 600;
}

.default-form .form-group {
	position: relative;
	margin-bottom: 30px;
}

.default-form .form-group:last-child {
	margin-bottom: 0px;
}

.default-form .form-group input[type='text'],
  .default-form .form-group input[type='email'],
  .default-form .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
	border: 1px solid #e5e5e5;
	padding: 10px 20px;
	font-size: 15px;
	color: #848484;
	transition: all 500ms ease;
}

.default-form .form-group textarea {
	resize: none;
	height: 135px;
}

.food-menu-price {
	color: var(--theme-color);
}


/* error section */

section.error-section {
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
	background-size: cover;
}

.error-section h1 {
	position: relative;
	font-size: 200px;
	font-weight: 800;
	line-height: 1em;
	margin-bottom: 10px;
}

.error-section h1 {
}

.error-section h2 {
	position: relative;
	font-size: 50px;
	font-weight: 600;
	line-height: 1.2em;
	margin-bottom: 10px;
	color: #222;
}

.error-section .text {
	position: relative;
	font-size: 24px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 50px;
}



/*** 

====================================================================
                        Blog-Page
====================================================================

***/

.blog-grid .news-block-one .inner-box {
	margin-bottom: 30px;
}

.blog-grid .pagination-wrapper {
	margin-top: 40px;
}

.sidebar-page-container {
	position: relative;
	padding: 120px 0 90px;
}

.sidebar-page-container .news-block-one .inner-box {
	padding: 0px;
	box-shadow: none;
	margin-bottom: 50px;
}

.news-block-one .inner-box .image-box{
	position:relative;
}

.news-block-one .inner-box .image-box img{
	width:100%;
	height:auto;
}

.news-block-one .inner-box .image-box .post-date{
	position:absolute;
	top:30px;
	right:30px;
	background-color:var(--theme-color);
	color:#ffffff;
	padding:10px 25px;
	margin: 0px;
	font-size: 14px;
	display: block;
	line-height: 1.4em;
}

.news-block-one .inner-box .lower-content .bo-meta-info{
	display:flex;
	padding-top:30px;
	align-items:center;
	flex-wrap:wrap;
	justify-content:space-between;
}

.news-block-one .inner-box .lower-content .author-box{
	position:relative;
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}

.news-block-one .inner-box .lower-content .author-box .author-thumb{
	margin-right:20px;
}

.news-block-one .inner-box .lower-content h2 {
	position: relative;
	display: block;
	font-size: 30px;
	line-height: 34px;
	margin-bottom: 17px;
}

.news-block-one .inner-box .lower-content h2 a {
	display: inline-block;
	color: #222;
}

.news-block-one .inner-box .lower-content h2 a:hover {
}

.quote-box {
	position: relative;
	display: block;
	padding: 61px 30px 54px 30px;
	text-align: center;
	margin-bottom: 50px;
}

.quote-box .text i {
	position: relative;
	display: block;
	font-size: 30px;
	line-height: 30px;
	color: #222;
	margin-bottom: 22px;
}

.quote-box .text p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: #222;
	margin-bottom: 13px;
}

.quote-box .text h5 {
	display: block;
	font-size: 18px;
	line-height: 30px;
	font-family: 'Rubik', sans-serif;
	color: #222;
	font-weight: 400;
}

.sidebar-page-container .more-btn {
	position: relative;
	display: block;
	margin-top: 20px;
}

.blog-sidebar {
	position: relative;
	margin-left: 20px;
}

.blog-sidebar .sidebar-widget {
	position: relative;
	display: block;
	background: #fff;
	padding: 40px;
	box-shadow: 0 10px 20px rgb(0 0 0 / 5%);
	margin-bottom: 40px;
}

.blog-sidebar .sidebar-widget:last-child {
	margin-bottom: 0px;
}

.blog-sidebar .search-widget .search-form .form-group {
	position: relative;
	margin: 0px;
}

.search-widget .search-form .form-group input[type='search'] {
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	border: 1px solid #e5e5e5;
	padding: 10px 75px 10px 20px;
	font-size: 15px;
	color: #848484;
	transition: all 500ms ease;
}

.search-widget .search-form .form-group button {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
	transition: all 500ms ease;
	background: var(--theme-color);
	border: none;
}

.search-widget .search-form .form-group input:focus {
}

.sidebar-widget .widget-title {
	margin-bottom: 32px;
}

.blog-sidebar .post-widget .post {
	position: relative;
	display: block;
	padding-left: 98px;
	padding-bottom: 20px;
	margin-bottom: 14px;
	border-bottom: 1px solid #e5e5e5;
	min-height: 107px;
}

.blog-sidebar .post-widget .post:last-child {
	margin-bottom: 0px;
	border-bottom: none;
	padding-bottom:0px;
}

.blog-sidebar .post-widget .post .post-thumb {
	position: absolute;
	left: 0px;
	top: 6px;
	width: 80px;
	height: 80px;
	background: #222;
}

.blog-sidebar .post-widget .post .post-thumb img {
	width: 100%;
	transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img {
	opacity: 0.5;
}

.blog-sidebar .post-widget .post h5 {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 8px;
}

.blog-sidebar .post-widget .post h5 a {
	display: inline-block;
	color: #222;
}

.blog-sidebar .post-widget .post h5 a:hover {
	color: var(--theme-color);
}

.blog-sidebar .post-widget .post p {
	color: #222;
	text-transform: uppercase;
	margin: 0px;
	font-size:12px;
}

.blog-sidebar .post-widget .widget-title {
	margin-bottom: 26px;
}

.blog-sidebar .sidebar-archives .archives-list li {
	position: relative;
	display: block;
	margin-bottom: 15px;
}

.blog-sidebar .sidebar-archives .archives-list li:last-child {
	margin-bottom: 0px;
}

.blog-sidebar .sidebar-archives .archives-list li a {
	position: relative;
	display: block;
	font-size: 15px;
	line-height: 26px;
	color: #222;
}

.blog-sidebar .sidebar-archives .archives-list li a span {
	float: right;
	color: #222;
}

.blog-sidebar .sidebar-archives .archives-list li a:before {
	position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	left: 0px;
	top: 13px;
	transition: all 500ms ease;
}

.blog-sidebar .sidebar-archives .archives-list li a:hover {
	color: var(--theme-color);
}

.blog-sidebar .sidebar-archives .widget-title {
	margin-bottom: 26px;
}

.blog-sidebar .sidebar-categories .widget-title {
	margin-bottom: 26px;
}

.blog-sidebar .sidebar-tags .tags-list {
	position: relative;
	margin: 0px -5px;
}

.blog-sidebar .sidebar-tags .tags-list li {
	position: relative;
	display: inline-block;
	float: left;
	margin: 0px 5px 10px 5px;
}

.blog-sidebar .sidebar-tags .tags-list li a {
	position: relative;
	display: inline-block;
	font-size: 15px;
	line-height: 26px;
	color: #848484;
	font-family: 'Rubik', sans-serif;
	border: 1px solid #e5e5e5;
	padding: 8.5px 13.5px;
}

.blog-sidebar .sidebar-tags .tags-list li a:hover {
	color: #fff;
	background: var(--theme-color);
	border-color: var(--theme-color);
}

.blog-sidebar .sidebar-tags {
	padding-bottom: 40px;
}

.blog-standard-content .news-block-one .inner-box {
	margin-bottom: 70px;
}

.blog-post {
	position: relative;
	width: 100%;
	padding: 204px 0px 197px 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.blog-post:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	right: 0px;
	opacity: 0.6;
}

.blog-post .post-inner .post-info li {
	position: relative;
	display: inline-block;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
	margin-right: 4px;
}

.blog-post .post-inner .post-info li:last-child {
	margin-right: 0px;
}

.blog-post .post-inner .post-info li a {
	color: #fff;
}

.blog-post .post-inner .post-info li a:hover {
}

.blog-post .post-inner h2 {
	position: relative;
	display: block;
	font-size: 46px;
	line-height: 56px;
	color: #fff;
	margin-bottom: 16px;
}

.blog-post .post-inner .category {
	position: relative;
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	font-weight: 500;
	padding: 5px 15px;
	z-index: 1;
	letter-spacing: 2px;
	margin-bottom: 21px;
	text-transform: uppercase;
}

.blog-details-content .text p {
	margin-bottom: 20px;
	line-height: 1.6em;
}

.blog-details {
	padding-top: 120px;
	padding-bottom: 90px;
}

.blog-details-content .text p:last-child {
	margin-bottom: 0px;
}

.blog-details-content blockquote {
	position: relative;
	display: block;
	padding: 41px 80px 49px 120px;
	margin: 62px 0px 70px 0px;
	background: #f4f4f4;
}

.blog-details-content blockquote i {
	position: absolute;
	left: 50px;
	top: 50px;
	font-size: 30px;
	line-height: 30px;
}

.blog-details-content blockquote p {
	font-size: 17px;
	line-height: 30px;
	font-weight: 500;
	color: #222;
	font-style: italic;
}

.blog-details-content .text h3 {
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 24px;
}

.blog-details-content .two-column .text .list li {
	position: relative;
	display: block;
	font-size: 15px;
	padding-left: 32px;
	margin-bottom: 11px;
}

.blog-details-content .two-column .text .list li:last-child {
	margin-bottom: 0px;
}

.blog-details-content .two-column .text .list li i {
	position: absolute;
	left: 0px;
	top: 10px;
	font-size: 17px;
}

.blog-details-content .two-column .image img {
	width: 100%;
}

.blog-details-content .two-column {
	margin-bottom: 63px;
}

.blog-details-content .post-share-option {
	position: relative;
	display: block;
	padding: 30px 30px;
	margin-bottom: 91px;
	background: #f4f4f4;
}

.blog-details-content .post-share-option .text h3 {
	font-size: 22px;
	line-height: 50px;
	margin: 0px;
}

.blog-details-content .post-share-option .social-links li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 20px;
}

.blog-details-content .post-share-option .social-links li:last-child {
	margin-right: 0px;
}

.blog-details-content .post-share-option .social-links li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: #acadb4;
	background: #fff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0 10px 20px #dee2db;
}

.blog-details-content .post-share-option .social-links li a:hover {
	color: #fff;
	background: var(--theme-color);
}

.blog-details-content .inner-box {
	margin-bottom: 62px;
}

.blog-details-content .comment-box .comment {
	position: relative;
	display: block;
	padding-left: 110px;
	margin-bottom: 29px;
}

.blog-details-content .comment-box .comment:last-child {
	margin-bottom: 0px;
}

.blog-details-content .comment-box .comment .thumb-box {
	position: absolute;
	left: 0px;
	top: 1px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.blog-details-content .comment-box .comment .thumb-box img {
	width: 100%;
	border-radius: 50%;
}

.blog-details-content .comment-box .comment .comment-inner {
	position: relative;
	padding-bottom: 31px;
	border-bottom: 1px solid #dfe5e5;
}

.blog-details-content .comment-box .comment:last-child .comment-inner {
	border-bottom: none;
}

.blog-details-content .group-title {
	margin-bottom: 33px;
}

.blog-details-content .comment-box .comment .comment-info h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 1px;
}

.blog-details-content .comment-box .comment .comment-info .comment-time {
	position: relative;
	display: block;
	font-size: 15px;
	color: #222;
	margin-bottom: 0px;
}

.blog-details-content .comment-box .comment .comment-info {
	position: relative;
	margin-bottom: 15px;
}

.blog-details-content .comment-box .comment .comment-inner p {
	margin-bottom: 16px;
	line-height: 1.6em;
}

.blog-details-content .comment-box .comment .comment-inner a {
	position: relative;
	display: inline-block;
	font-size: 17px;
	line-height: 26px;
	color: var(--theme-color);
	font-weight: 700;
}

.default-sidebar .sidebar-widget .widget-title {
	position: relative;
	margin-bottom: 22px;
}

.default-sidebar .sidebar-widget .widget-title h3 {
	font-size: 26px;
	line-height: 35px;
}

.default-sidebar .sidebar-categories .categories-list li {
	position: relative;
	display: block;
	margin-bottom: 5px;
}

.default-sidebar .sidebar-categories .categories-list li:last-child {
	margin-bottom: 0px;
}

.default-sidebar .sidebar-categories .categories-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #222;
}

.default-sidebar .sidebar-categories .categories-list li a:hover {
	color: var(--theme-color);
}

.default-sidebar .sidebar-categories .categories-list li a:before {
	position: absolute;
	content: '';
	width: 15px;
	height: 2px;
	left: 0px;
	top: 13px;
	transition: all 500ms ease;
}

.blog-details-content .comment-box {
	margin-bottom: 51px;
}

.blog-details-content .comments-form-area .form-group {
	position: relative;
	margin-bottom: 30px;
}

.blog-details-content .comments-form-area .form-group:last-child {
	margin-bottom: 0px;
}

.blog-details-content .comments-form-area .form-group input[type='text'],
  .blog-details-content .comments-form-area .form-group input[type='email'],
  .blog-details-content .comments-form-area .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
	border: 1px solid #e5e5e5;
	background: #fff;
	padding: 10px 20px;
	font-size: 15px;
	color: #848484;
	transition: all 500ms ease;
}

.blog-details-content .comments-form-area .form-group textarea {
	height: 150px;
	resize: none;
}

.blog-details-content .group-title h3 {
	font-size: 30px;
	font-weight: 700;
}

.comments-form-area {
	margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget .widget-title h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

section.food-menus p {
    margin-bottom: 20px;
}


/*** 

====================================================================
                        Cart-Page
====================================================================

***/

.cart-section{
	position: relative;
	display: block;
	padding: 120px 0px;
  }
  
  .cart-section .table-outer {
	overflow-x: auto;
	position: relative;
	width: 100%;
  }
  
  .cart-section .cart-table {
	min-width: 1170px;
	width: 100%;
  }
  
  .cart-section .cart-table thead tr th {
	line-height: 24px;
	min-width: 110px;
	padding: 29px 15px 27px 0px;
	color: #222;
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	position: relative;
	text-align: center;
  }
  
  .cart-section .cart-table tbody tr{
	border-bottom: 1px solid #e6e6e6;
  }
  
  .cart-section .cart-table .cart-header{
	background: #f4f4f4;
  }
  
  .cart-section .cart-table tbody tr td.prod-column{
	padding: 30px 0px;
  }
  
  .cart-section .cart-table tbody tr .prod-column .column-box {
	min-height: 100px;
	position: relative;
	padding: 40px 0px 40px 250px;
  }
  
  .cart-section .cart-table tbody tr .prod-column .column-box .prod-thumb img {
	display: block;
	max-width: 100%;
  }
  
  .cart-section .cart-table tbody tr .prod-column .column-box .prod-thumb{
	position: absolute;
	left: 120px;
	top: 0px;
	width: 100px;
	height: 115px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 500ms ease;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
  }
  
  .cart-section .cart-table tbody tr .prod-column .column-box .title{
	padding-left: 20px;
  }
  
  .cart-section .cart-table tbody tr .prod-column .column-box .remove-btn{
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	line-height: 48px;
	font-size: 14px;
	color: #222;
	font-weight: 900;
	border: 1px solid #e6e6e6;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	transition: all 500ms ease;
  }
  
  .cart-section .cart-table tbody tr .prod-column .column-box .remove-btn:hover{
	color: #fff;
	background: #222;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .cart-section .cart-table tbody tr td.price {
	font-size: 15px;
	text-align: center;
	color: #222;
	position: relative;
	padding: 30px 25px 30px 30px;
  }
  
  .cart-section .cart-table tbody tr .sub-total {
	font-size: 15px;
	padding: 27px 50px 27px 48px;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	color: #222;
  }
  
  .cart-section .cart-table tbody tr td.qty{
	position: relative;
  }
  
  .cart-section .cart-table tbody tr td.qty .item-quantity{
	position: relative;
	display: inline-block;
	max-width: 130px;
	width: 100%;
	float: left;
	padding: 0px 40px;
	margin-left: 30px;
	border: 1px solid #e6e6e6;
	z-index: 1;
  }
  
  .cart-section .cart-table tbody tr td.qty .item-quantity .bootstrap-touchspin .input-group-btn-vertical i{
	left: 12px;
  }
  
  .cart-section .cart-table .prod-title{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 28px;
	color: #222;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
  }
  
  .cart-section .othre-content{
	position: relative;
	display: block;
	padding: 30px 0px;
	margin-bottom: 70px;
  }
  
  .cart-section .othre-content .update-btn button{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	color: #222;
	border: 2px solid #222;
	background: transparent;
	opacity: 0.5;
	padding: 15px 46px;
	transition: all 500ms ease;
  }
  
  .cart-section .othre-content .update-btn button:hover{
	opacity: 1;
	color: #fff;
	background: #222;
  }
  
  .cart-section .othre-content .coupon-box{
	position: relative;
	width: 70%;
  }
  
  .cart-section .othre-content .coupon-box input[type='text']{
	position: relative;
	display: inline-block;
	max-width: 260px;
	width: 100%;
	font-size: 15px;
	height: 60px;
	color: #848484;
	border: 1px solid #e6e6e6;
	padding: 10px 30px;
	float: left;
  }
  
  .cart-section .othre-content .coupon-box input:focus{
  
  }
  
  .cart-section .othre-content .coupon-box button{
	float: left;
  }
  
  .cart-section .cart-total .total-cart-box{
	position: relative;
  }
  
  .cart-section .cart-total .total-cart-box h4{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 25px;
	background: #f4f4f4;
	padding: 19px 30px 11px 30px;
  }
  
  .cart-section .cart-total .total-cart-box .list li{
	position: relative;
	display: block;
	font-size: 16px;
	font-family: 'Rubik', sans-serif;
	color: #222;
	padding: 18px 30px;
	border-bottom: 1px solid #e6e6e6;
  }
  
  .cart-section .cart-total .total-cart-box .list li:last-child{
	border-bottom: none;
  }
  
  .cart-section .cart-total .total-cart-box .list li span{
	float: right;
	color: #848484;
	font-weight: 400;
  }
  
  .cart-section .cart-total .total-cart-box .list li:last-child span{
	font-weight: 500;
	color: #222;
  }
  
  .cart-section .cart-total .total-cart-box .theme-btn-one{
	display: block;
	padding: 17px 35px;
	width: 100%;
	margin-top: 5px;
  }
  
  .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
	position: absolute;
	height: 53px;
	width: 40px;
	background: transparent;
	padding: 0px 0px;
	left: -78px;
	top: -17px;
	border-right: none;
	border-radius: 0px;
	}
  
  .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
	position: absolute;
	height: 53px;
	width: 40px;
	background: transparent;
	padding: 0px 0px;
	right: -41px;
	top: -17px;
	border-left: none;
	margin-top: 0px;
	border-radius: 0px;
	}
  
  .bootstrap-touchspin .glyphicon-chevron-up:before {
	content: "\f067";
	font-size: 13px;
	font-style: normal;
	color: #848484;
	font-family: 'FontAwesome';
	}
  
  .bootstrap-touchspin .glyphicon-chevron-down:before {
	content: "\f068";
	font-size: 13px;
	font-style: normal;
	color: #848484;
	font-family: 'FontAwesome';
	}
  
  .bootstrap-touchspin .input-group-btn-vertical{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	}
  
  .bootstrap-touchspin .input-group-btn-vertical i{
	top: 15px;
	left: 15px;
	font-size: inherit !important; 
  }
  
  .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
	margin-top: 0px;
  }
  
  .item-quantity .input-group {
	position: relative;
	display: table;
	border-collapse: separate;
	max-width: 50px;
	width: 100%;
	height: 53px;
  }
  
  .item-quantity input.quantity-spinner {
	line-height: 49px;
	height: 53px;
	width: 50px !important;
	padding: 0px !important;
	box-shadow: none !important;
	font-family: 'Rubik', sans-serif;
	border: none;
	text-align: center;
	font-size: 15px;
	color: #222;
	border: none;
	}
  
  
  
  /*** 
  
  ====================================================================
						  Checkout-page
  ====================================================================
  
  ***/
  
  .checkout-section{
	position: relative;
	display: block;
	padding: 120px 0px;
  }
  
  .checkout-section .upper-box{
	position: relative;
	margin-bottom: 70px;
  }
  
  .checkout-section .upper-box .single-box{
	position: relative;
	display: block;
	font-size: 15px;
	color: #222;
	padding: 21px 15px 23px 30px;
	background: #f4f4f4;
	margin-bottom: 30px;
  }
  
  .checkout-section .upper-box .single-box:last-child{
	margin-bottom: 0px;
  }
  
  .checkout-section .upper-box .single-box a{
	
  }
  
  .checkout-section .customer a:hover,
  .checkout-section .coupon a:hover{
	text-decoration: underline;
  }
  
  .checkout-section .sub-title{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 26px;
	background: #f4f4f4;
	padding: 23px 15px 16px 30px;
  }
  
  .checkout-section .billing-info{
	position: relative;
	display: block;
	margin-bottom: 30px;
  }
  
  .checkout-section .billing-form{
	position: relative;
	display: block;
	padding: 23px 0px 28px 0px;
  }
  
  .checkout-section .billing-form .form-group{
	position: relative;
	display: block;
	margin-bottom: 23px;
  }
  
  .checkout-section .billing-form .form-group:last-child{
	margin-bottom: 0px;
  }
  
  .checkout-section .billing-form .form-group label{
	position: relative;
	display: block;
	font-size: 15px;
	font-family: 'Rubik', sans-serif;
	color: #222;
	margin-bottom: 2px;
  }
  
  .checkout-section .billing-form .form-group input[type='text'],
  .checkout-section .billing-form .form-group input[type='email']{
	position: relative;
	display: block;
	width: 100%;
	height: 45px;
	border: 1px solid #e6e6e6;
	font-size: 15px;
	color: #848484;
	padding: 10px 15px;
	transition: all 500ms ease;
  }
  
  .checkout-section .billing-form .form-group .nice-select{
	border-radius: 0px;
	border: 1px solid #e6e6e6 !important;
	width: 100%;
	font-size: 15px;
	color: #848484;
	height: 45px;
	padding: 3px 20px;
  }
  
  .checkout-section .billing-form .form-group .nice-select:after{
	border-bottom: 2px solid #848484;
	border-right: 2px solid #848484;
	margin-top: -4px;
  }
  
  .checkout-section .billing-form .form-group .nice-select .list{
	width: 100%;
  }
  
  .checkout-section .billing-form .form-group input.address{
	margin-bottom: 10px;
  }
  
  .checkout-section .billing-form .form-group input:focus{
	
  }
  
  .checkout-section .billing-form .select-box .ui-state-default{
	width: 100% !important;
  }
  
  .checkout-section .billing-form .select-box .ui-selectmenu-button span.ui-icon:before{
	color: #848484;
  }
  
  .checkout-section .billing-form .create-acc{
	position: relative;
	display: block;
	margin-top: 3px;
  }
  
  .checkout-section .billing-form .create-acc .custom-controls-stacked .description{
	font-size: 15px;
	color: #222;
	cursor: pointer;
  }
  
  .checkout-section .additional-info .note-book{
	position: relative;
	display: block;
  }
  
  .checkout-section .additional-info .note-book label{
	position: relative;
	display: block;
	font-size: 15px;
	line-height: 26px;
	color: #222;
	margin-bottom: 2px;
  }
  
  .checkout-section .additional-info .note-book textarea{
	position: relative;
	display: block;
	width: 100%;
	height: 133px;
	border: 1px solid #e6e6e6;
	font-family: 'Rubik', sans-serif;
	color: #848484;
	font-size: 13px;
	font-weight: 400;
	color: #848484;
	padding: 8px 20px;
	resize: none;
	transition: all 500ms ease;
  }
  
  .checkout-section .additional-info .note-book textarea:focus{
	
  }
  
  .checkout-section .order-info{
	position: relative;
	display: block;
	margin-bottom: 70px;
  }
  
  .checkout-section .order-info .order-list li{
	position: relative;
	display: block;
	border-bottom: 1px solid #e6e6e6;
	padding: 20px 30px;
  }
  
  .checkout-section .order-info .order-list li.title{
	padding: 24px 30px 2px 30px;
  }
  
  .checkout-section .order-info .order-list li.title p{
	font-size: 15px;
	color: #222;
	float: left;
  }
  
  .checkout-section .order-info .order-list li.title span{
	position: relative;
	display: block;
	font-size: 15px;
	color: #222;
	float: right;
  }
  
  .checkout-section .order-info .order-list li .single-box{
	position: relative;
	padding: 40px 0px 30px 110px;
	min-height: 100px;
  }
  
  .checkout-section .order-info .order-list li .single-box img{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 87px;
	height: 100px;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	padding-top: 15px;
  }
  
  .checkout-section .order-info .order-list li .single-box h6{
	position: relative;
	font-size: 16px;
	font-family: 'Rubik', sans-serif;
	color: #222;
	float: left;
	font-weight: 500;
  }
  
  .checkout-section .order-info .order-list li .single-box span{
	position: relative;
	display: block;
	float: right;
	font-size: 15px;
	color: #222;
  }
  
  .checkout-section .order-info .order-list li.sub-total{
	padding: 17px 30px 10px 0px;
  }
  
  .checkout-section .order-info .order-list li.sub-total h6{
	font-size: 16px;
	font-weight: 500;
	color: #222;
	float: left;
	font-family: 'Rubik', sans-serif;
  }
  
  .checkout-section .order-info .order-list li.sub-total span{
	position: relative;
	display: block;
	font-size: 15px;
	color: #848484;
	float: right;
  }
  
  .checkout-section .order-info .order-list li.order-total{
	padding: 17px 30px 11px 0px;
  }
  
  .checkout-section .order-info .order-list li.order-total h6{
	font-size: 16px;
	font-weight: 500;
	color: #222;
	float: left;
	font-family: 'Rubik', sans-serif;
  }
  
  .checkout-section .order-info .order-list li.order-total span{
	position: relative;
	display: block;
	font-size: 18px;
	color: #222;
	font-weight: 500;
	float: right;
  }
  
  .checkout-section .payment-info .payment-inner{
	position: relative;
	display: block;
	border: 1px solid #e6e6e6;
	border-top: none;
	padding: 28px 30px 40px 30px;
  }
  
  .checkout-section .payment-info .payment-inner .custom-controls-stacked .description{
	font-size: 16px;
	color: #222;
	cursor: pointer;
  }
  
  .checkout-section .payment-info .payment-inner .custom-controls-stacked .description a{
	position: relative;
	display: inline-block;
	font-family: 'Rubik', sans-serif;
	color: #222;
	z-index: 1;
	font-size: 14px;
	margin-left: 20px;
  }
  
  .checkout-section .payment-info .payment-inner .option-block{
	position: relative;
	display: block;
	margin-bottom: 22px;
  }
  
  .checkout-section .payment-info .payment-inner .option-block p{
	position: relative;
	font-size: 13px;
	line-height: 24px;
	padding: 4px 0px 0px 30px;
  }
  
  .checkout-section .custom-control.material-checkbox .material-control-indicator {
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0px;
	width: 15px;
	height: 15px;
	border: 1px solid #e6e6e6;
	background: #f5f8fa;
	cursor: pointer;
  }
  
  .checkout-section .custom-control.material-checkbox .material-control-input:checked ~ .material-control-indicator{
	-webkit-transform: rotateZ(45deg) translate(1px, -5px);
	transform: rotateZ(45deg) translate(1px, -5px);
	width: 8px;
	border: 2px solid #898f9f;
	border-top: 0px;
	border-left: 0px;
	background: transparent;
	border-radius: 0px;
  }
  
  .checkout-section .payment-info .payment-inner .btn-box{
	padding-top: 2px;
  }

  .select-box .selectmenu {
    position: relative;
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid #e6e6e6;
    font-size: 15px;
    color: #848484;
    padding: 10px 15px;
    transition: all 500ms ease;
}
  
  .checkout-section .payment-info .payment-inner .btn-box .theme-btn-two{
	padding: 16px 30px;
  }
  
  .custom-control.material-checkbox {
	--color: #ebebeb;
	padding: 0px;
	margin: 0px;
	margin-bottom: 0px !important;
  }
  
  .custom-control.material-checkbox .material-control-input {
	display: none;
  }
  
  .custom-control.material-checkbox .material-control-indicator {
	display: inline-block;
	position: absolute;
	top: 6px;
	left: 0px;
	width: 15px;
	height: 15px;
	border: 1px solid #e6e6e6;
	cursor: pointer;
  }
  
  .custom-control.material-checkbox .material-control-input:checked ~ .material-control-indicator {
	-webkit-transform: rotateZ(45deg) translate(1px, -5px);
	transform: rotateZ(45deg) translate(1px, -5px);
	width: 8px;
	border: 2px solid #e6e6e6;
	border-top: 0px;
	border-left: 0px;
	background: transparent;
	border-radius: 0px;
  }
  
  .custom-controls-stacked .description {
	position: relative;
	display: inline-block;
	padding: 0px;
	margin-left: 25px;
	font-size: 15px;
	color: #848484;
	cursor: pointer;
  }
  

@media only screen and (max-width: 1199px) and (min-width: 993px) {
	.header-left-column-offset {
		margin-left: 20%;
	}
}

@media only screen and (max-width: 1199px) {
	.new_header_style .navbar .navbar-brand {
		max-width: 150px;
		height: auto;
		margin-left: 0 !important;
	}

	.divider.heading-banner,
    .main-content .tp-banner-container {
		margin-top: 120px;
	}

	.new_header_style .navbar.navbar-default {
		padding: 25px 0;
	}
}

@media only screen and (min-width: 993px) {
}

@media only screen and (max-width: 992px) {
	.single-menu-details-section .auto-container {
		padding-left: 30px;
		padding-right: 30px;
	}

    .blog-sidebar {
        margin-left: 0;
    }

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

	.new_header_style .navbar.navbar-default {
		padding: 38px 0;
	}

	.navbar-default .navbar-toggle {
		margin: 0;
	}

	.new_header_style .navbar.navbar-default.floating-menu {
		padding: 38px 0;
	}

	.new_header_style .navbar .navbar-brand img {
		margin-top: 0px;
	}

	.navbar.navbar-default.floating-menu .navbar-brand {
		height: 100px;
		padding: 15px;
	}

	.new_header_style .navbar .navbar-brand {
		height: 100px;
	}

	.divider.heading-banner,
    .main-content .tp-banner-container {
		margin-top: 100px;
	}

	.mobile-nav-toggler {
		display: block;
	}

	.single-menu-details-section .single-menu .single-menu-details {
		padding-top: 30px;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.about-image-block .image-three img {
		transform: rotate(0deg) !important;
	}

	.tp-caption {
		display: none;
	}

	.newsletter button.btn-style-one {
		position: relative;
		margin-top: 20px;
		width: 100%;
	}

	.newsletter input {
		width: 100%;
	}

	section.contact-form-section .bg {
		padding: 30px;
		padding-bottom: 0;
	}

	.divider.heading-banner .breadcrumb {
		text-align: left;
		padding-left: 0;
	}
    .blog-details-content ul.list {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 600px) {
	.newsletter button.btn-style-one {
		position: relative;
		margin-top: 20px;
		width: 100%;
	}

    .blog-details-content .comment-box .comment {
        padding-left: 0;
    }
    
    .blog-details-content .comment-box .comment .thumb-box {
        position: relative;
        margin-bottom: 20px;
    }
    
    .blog-details-content .post-share-option ul.social-links {
        float: left !important;
    }
    
    .blog-details-content blockquote {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .blog-details-content blockquote i {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }    

	section.cta-section h2,
    h2.sec-title {
		font-size: 32px;
	}

	.newsletter input {
		width: 100%;
	}

	.menu-block .price {
		position: relative;
		top: 0;
		margin-bottom: 30px;
	}
}