/* --------------------Grill Master Website Template Design Structure--------------------------- */


/* ------------------ stylesheet structure --------------
 1. common css 
 2. top header section 
 3. main header section 
 4. hero section 
 5. about us section 
 6. our gallery section 
 7. take a frenchies section 
 8. frenchiese form section 
 9. footer section 
 10. copyright section */
/* ====================== Common css =========================*/

@import url('https://fonts.googleapis.com/css?family=Dancing+Script:400,500,600,700|Poppins:400,500,600,700|Raleway:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Oswald:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&family=Oswald:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&family=Oswald:wght@300&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&family=Open+Sans+Condensed:wght@300&family=Oswald:wght@300&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&family=Mulish:ital,wght@1,300&family=Open+Sans+Condensed:wght@300&family=Oswald:wght@300&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Josefin+Sans:wght@300&family=Lato:wght@100;300;400&family=Mulish:ital,wght@1,300&family=Open+Sans+Condensed:wght@300&family=Oswald:wght@300&family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Josefin+Sans:wght@300&family=Lato:wght@100;300;400&family=Mulish:ital,wght@1,300&family=Open+Sans+Condensed:wght@300;700&family=Oswald:wght@300&family=Poppins:wght@100;200;300&family=Varela+Round&display=swap');
* {
	padding: 0;
	margin: 0;
}
::-webkit-scrollbar {
 display: none;
 visibility: hidden
}
body {
	/*font-family: 'Dancing Script', cursive;
    */
	font-family: 'Poppins', sans-serif;
	/*font-family: 'Raleway', sans-serif;
    */
	font-size: 14px;
	font-family: -webkit-body;
}

ul {
	margin-bottom: 0px;
}

ul li {
	list-style: none;
}

a,
a:hover {
	text-decoration: none;
}

button:focus {
	outline: none;
}

:focus-visible {
	outline: none;
}

#back2Top,
.top-section {
	scroll-behavior: smooth !important;
}


/* ==================== top header section ======================= */

#top-header {
	background-color: #229ed2;
	color: #fff;
	padding: 10px 0px;
}

.top-header-left-sec ul li,
.top-header-social-sec ul li {
	display: inline-block;
}

.top-header-social-sec ul {
	float: right;
}

#top-header .top-header-left-sec ul li i {
	font-size: 17px;
}

.top-header-left-sec ul li:nth-child(1):after {
	content: '|';
	padding: 0px 15px;
}

.top-header-left-sec ul li i {
	padding-right: 5px;
}

.top-header-social-sec ul li {
	padding-right: 10px;
}

.top-header-social-sec ul li:last-child {
	padding: 0px;
}


/* ----------- main header section start-------------- */

.header {
	/* box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    
     position: absolute;*/
	background: #00000078  !important;
	z-index: 3;
	padding: 6px 0px;
}
.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
 }
 
 @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
 }
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	text-align: center;
}

.header li a {
	display: block;
	/* padding: 20px 20px;
    */
	text-decoration: none;
}
.workwithus a {
    border: 1px solid #fff !important;
    border-radius: 50px;
    background: #fc0;
    color: #000 !important;
    font-weight: bold !important;
}
.menu .workwithus a:after
{
    display: none !important;
}
.header .logo {
	display: block;
	float: left;
}


/* menu */

.header .menu {
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
	display: flex;
	align-items: center;
}


/* menu icon */

.header .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 30px 0px;
	position: relative;
	user-select: none;
}

.header .menu-icon .navicon {
	background: #fff;
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 20px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
	background: #fff;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
}

.header .menu-icon .navicon:before {
	top: 6px;
}

.header .menu-icon .navicon:after {
	top: -6px;
}


/* menu btn */

.header .menu-btn {
	display: none;
}

.header .menu-btn:checked~.menu {
	max-height: 240px;
}

.header .menu-btn:checked~.menu-icon .navicon {
	background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
	transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
	top: 0;
}

#main-header .menu li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	padding: 0px 15px;
	letter-spacing: 2px;
	transition: all 0.5s ease-in;
	display: inline-block;
	font-family: 'Oswald', sans-serif;
}
/*#main-header ul.menu li:last-child a {*/
/*	padding-right: 0px;*/
/*	border-right: none;*/
/*	border-bottom: none;*/
/*}*/

#main-header .menu li {
	line-height: 40px;
	font-family: -webkit-body;
}

#main-header label {
	margin-bottom: 0px;
}

.intro ul.menu li:last-child a {
	padding-right: 15px !important;
}

.intro ul.menu li {
	text-align: center;
}

#main-header ul.menu li a.active {
	color: #229ed2;
}

#main-header ul.menu li a:hover {
	/*color: #229ed2;*/
	/*box-shadow: 0 0 10px;*/
}


/* ----------- main header section End-------------- */


/* --------------hero section start---------------*/
#hero-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('https://i.imgur.com/dDZy');
	background-attachment: fixed;
	height: 700px;
}

#hero-section .banner-txt {
	top: 55%;
	position: relative;
}

.carousel-indicators {
	z-index: 1;
}

.banner-txt p {
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-top: 10px;
}

.banner-txt a {
	color: #fff;
	background-color: #229ed2;
	border-radius: 50px;
	padding: 13px 36px;
	text-transform: uppercase;
	border: 1px solid #229ed2;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 0.3s ease-in;
	/* font-family: 'Raleway', sans-serif; */
}

.banner-txt a:hover {
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #fff;
	color: #229ed2;
}

.frenchise-btn {
	margin-top: 30px;
}


/* --------------hero section End---------------*/


/* --------------Menu-section Start---------------*/

#menu-section {
	background-image: url('../img/allery_bg_image.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#menu-images {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.menu-bg h1 {
	color: #fc0;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 43px;
	font-weight: 700;
	padding: 61px 0px;
	text-decoration: underline;
	text-underline-position: under;
	position: relative;
	top: 27px;
	letter-spacing: 1.2px;
}

.home-menu-block {
	transition: all 0.6s ease-in-out;
	margin-bottom: 32px;
	border-radius: 14px;
	border: 1px solid #fff;
	display: block;
	overflow: hidden;
}

.home-images {
	width: 100%;
	height: 220.04px;
	border-radius: 14px;
	object-fit: cover;
	object-position: center;
}

.home-menu-block .home-images:hover {
	border-radius: 14px !important;
}


/*.home-menu-block:hover {*/


/*    box-shadow: 0px 0px 20px #2d2d2d;*/


/*    border-radius:14px;*/


/*transform: scale(1.1);*/


/*background: #e9ecef;*/


/*	background:#000;*/


/*	filter: drop-shadow(2px 4px 6px black);*/


/*-webkit-transform: scale(1.1);*/


/*}*/

.home-menu-block h4 {
	padding: 20px 15px;
	text-align: center;
	margin: 0;
	font-family: 'Oswald', sans-serif;
	/* font-family: -webkit-body; */
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 37px;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*.home-menu-block:hover, .home-menu-block:hover h4*/


/*{*/


/*    color:#fff !important;*/


/*    transform: all 0.5s ease-in-out;*/


/*}*/

span.asset___1Wp-w {
	width: 60px;
	height: 37px;
	margin-right: 10px;
	color: #7124b4;
}


/* --------------Menu section End---------------*/


/* --------------About section Start---------------*/

#about-us {
	padding-top: 64px;
	color: #fff;
}

.about-txt h4 {
	margin-bottom: 0px;
	font-family: 'Dancing Script', cursive;
	font-size: 35px;
	font-weight: 700;
	color: #0d0d0d;
}

.about-txt h5 {
	font-size: 23px;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	color: #0d0d0d;
}

.about-txt .border-line {
	width: 57px;
	border: 1px solid #229ed2;
	margin-bottom: 5px;
}

.about-txt p {
	color: #060606;
	font-size: 15px;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	margin-bottom: 0px;
	padding: 6px 0px;
}

.read-btn {
	margin-top: 15px;
}

.read-btn a {
	background-color: #007bff;
	color: #fff;
	padding: 10px 20px;
	font-size: 15px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 1px;
}


/* --------------About section End---------------*/


/* --------------Gallery section start---------------*/

#gallerys {
	background-image: url('../img/gallery_bg_image.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 32px;
}

.gallery-bg h3 {
	color: #fff;
	font-family: 'Dancing Script', cursive;
	font-size: 43px;
	font-weight: 700;
	padding: 200px 0px;
}

#gallery-images {
	margin: 50px 0px;
}

#gallery-images .img-wrapper {
	overflow: hidden;
}

.img-wrapper img {
	transition: transform 0.5s ease;
	width: 100%;
}

.img-wrapper img:hover {
	transform: scale(1.1);
	cursor: zoom-in;
}

.img-top {
	margin-top: -5%;
}

.mt-20 {
	margin-top: 18px;
}


/* --------------Gallery section End---------------*/


/* -------------- take a frenchies section start---------------*/

#Frenchies {
	/*background-image: url('../img/burger-2041192_1280.jpg');
    height: 400px;
    
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     position: relative;
     overflow: hidden;
     color: #fff;*/
	padding-top: 20px;
}

.frenchise-txt h5 {
	font-size: 23px;
	font-family: 'Dancing Script', cursive;
	text-transform: uppercase;
	font-weight: bold;
	color: #000;
}

.frenchise-txt h5:before,
.frenchise-txt h5:after {
	content: '';
	width: 35px;
	border: 1px solid #229ed2;
	display: inline-block;
	margin-right: 15px !important;
}

.frenchise-txt h5:after {
	margin-left: 15px;
}

.frenchise-txt h3 {
	font-size: 20px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	margin: 16px 0;
	letter-spacing: 2px;
	color: #fff;
	display: inline-block;
	border-bottom: 3px double;
}

.our-frenchise-txt h1 {
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fc0;
	padding: 43px 0 20px 0;
	text-shadow: 1px 1px #000;
}

.about-frenchise-text {
	font-size: 18px;
	font-family: 'Oswald', sans-serif;
	/* font-style: italic; */
	letter-spacing: 1px;
	border-top: double;
	font-weight: 500;
	color: #fff;
	margin-bottom: 50px;
}

.our-frenchise-txt h3 {
	color: #fc0;
	text-align: left;
	font-family: 'Oswald', sans-serif;
	text-transform: capitalize;
	text-shadow: 1px 1px #000;
	margin-bottom: 14px;
	font-weight: 700;
	letter-spacing: 2px;
}

.our-frenchise-txt ul {
	margin-bottom: 30px;
}

.our-frenchise-txt ul li {
	text-align: justify;
	color: #000;
	line-height: 2.0;
	padding-left: 18px;
	font-size: 18px;
	list-style: inside;
}

.circle {
	position: absolute;
	bottom: -71%;
	width: 250px;
	height: 250px;
	background-color: #fff;
	border-radius: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.arrow-img {
	display: flex;
	justify-content: center;
	margin-top: 16px;
	animation: MoveUpDown 3s linear infinite;
	position: relative;
}

@keyframes MoveUpDown {
	0%,
	100% {
		bottom: 10px;
	}
	50% {
		bottom: 0px;
	}
}


/*.frenchise-txt{
     padding: 152px 0px;
}*/

.contact-us-frenchise {
	margin-top: 40px;
}

.contact-us-frenchise a {
	background-color: #229ed2;
	color: #000;
	padding: 11px 50px;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 40px;
}

.contact-us-frenchise a:hover {
	background: #aa2c2f;
	transition: all 1.0s;
	box-shadow: 0 0 10px #aa2c2f;
	text-shadow: 2px 2px #000;
	color: #fff;
}

.french-form input,
.french-form textarea {
	width: 100%;
	border: 2px solid #000;
	padding: 10px 15px;
	margin-bottom: 20px;
	font-weight: bold;
	font-style: italic;
	font-family: 'Open Sans Condensed', sans-serif;
}

.french-form textarea {
	max-height: 200px;
	height: 200px
}

.french-form input::placeholder,
.french-form textarea::placeholder {
	font-size: 15px;
	color: #a7a4a4;
}


/*.french-form button{
     background-color: #229ed2;
     color: #fff;
     border: 0px;
     padding: 7px 20px;
     font-size: 18px;
     text-transform: uppercase;
     border-radius:50px;
}*/
.mfp-title {
	text-align: center;
	font-size: 20px;
}


/* -------------- take a frenchies section End---------------*/


/* -------------- take a frenchies section form start---------------*/

.social-bg {
	background-image: url(../img/social-bg.jpg);
	background-repeat: no-repeat;
	color: #fff;
	background-size: cover;
}

.social-bg h4 {
	font-size: 21px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	margin-top: 40px;
}

.social-bg .social-border-line {
	width: 60px;
	border: 1px solid #fff;
	margin: 0 auto;
}

.social-bg ul.social-img {
	display: flex;
	justify-content: space-around;
	margin-top: 40px;
	margin-bottom: 40px;
}

.frenchies-social-link li {
	line-height: 32px;
}

.frenchies-social-link li a {
	color: #fff;
}


/* -------------- take a frenchies section form End---------------*/


/* -----------frenchise map section start----------------- */

#frenchise-map h4 {
	padding-bottom: 10px;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 0px;
}

#frenchise-map .border-line-map {
	width: 70px;
	border: 2px solid #229ed2;
	margin: 0 auto;
	margin-bottom: 20px;
}

.frenchise-map-div {
	width: 100%;
	height: 480px;
	border: 1px solid #ccc;
}

.wave-top {
	background-image: radial-gradient(circle at 10px 26px, #16416f 20px, transparent 21px);
	padding: 8px;
	background-size: 12px;
	display: none;
}


/* -----------frenchise map section End----------------- */


/* -------------- Footer section start---------------*/

#footer {
	background-color: #000;
	padding: 50px 0px;
	color: #fff;
}

.footer-first-div i {
	padding-right: 10px;
	font-size: 20px;
}

.footer-first-div p {
	margin-bottom: 10px;
}

.footer-logo {
	margin-bottom: 30px;
	position: relative;
	display: inline-flex;
	bottom: 6px;
}

.footer-second-div h4,
.footer-third-div h4 {
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 5px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.footer-border-line {
	width: 65px;
	border: 0.5px solid #fff;
}

#footer .carousel-caption {
	position: initial;
}

#footer .carousel-caption h5 {
	font-size: 15px;
	margin-bottom: 0px;
}

#footer .carousel-indicators li {
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

#footer .carousel-indicators {
	margin: 0px;
	justify-content: flex-end;
}

.footer-third-div .footer-border-line {
	margin-bottom: 20px;
}

ul.follow-us li {
	display: flex;
	margin-right: 20px;
	border: 1px solid #fff;
	border-radius: 50px;
	width: 40px;
	height: 40px;
	text-align: center;
	justify-content: center;
	align-items: center;
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
}

ul.follow-us li:hover {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

ul.follow-us li a i {
	color: #fff;
	font-size: 16px;
}

ul.follow-us {
	display: flex;
}

#back2Top {
	width: 40px;
	line-height: 40px;
	overflow: hidden;
	z-index: 999;
	cursor: pointer;
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
	position: fixed;
	bottom: 50px;
	right: 0;
	background-color: #DDD;
	color: #555;
	text-align: center;
	font-size: 30px;
	text-decoration: none;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	color: #229ed2;
	scroll-behavior: smooth !important;
}

#back2Top:hover {
	background-color: #DDF;
	color: #000;
}

.top-section {
	display: none;
}

.top-scroll {
	display: block;
	scroll-behavior: smooth !important;
}


/* -------------- Footer section End---------------*/


/* -------------- copyright section start---------------*/

#copyright {
	background-color: #0b0a0a;
	color: #fff;
	padding: 16px 0px;
}

.copyright-txt h3 {
	font-size: 17px;
	margin-bottom: 0px;
}

.footer-third-div img {
	width: 100%;
}

.typed-out br{display: none;}
/* -------------- copyright section end---------------*/


/* ===========================
	  MEDIA QUERY FOR RESPONSIVE WEBSITE
============================= */

@media only screen and (min-width: 768px) {
	.header li {
		float: left;
	}
	.header li a {
		/*padding: 20px 30px;
        */
	}
	.header .menu {
		clear: none;
		float: right;
		max-height: none;
	}
	.header .menu-icon {
		display: none;
	}
	.main-logo {
		display: inline-block;
	}
	section#Our-Franchise {
		padding-top: 64px;
	}
}
@media only screen and (max-width: 767px) {
	#main-header .menu li {
		line-height: 40px;
	}
	.top-header-left-sec {
		text-align: center;
	}
	.top-header-social-sec {
		text-align: center;
	}
	.top-header-social-sec ul {
		float: inherit;
		padding-top: 10px;
	}
	#gallery-images .col-md-4 {
		margin: 10px 0px;
	}
	.about-video {
		margin-top: 25px;
	}
	.footer-second-div,
	.footer-third-div,
	.social-bg {
		margin-top: 25px;
	}
	.circle {
		display: none;
	}
	.frenchise-txt h3 {
		padding-left: 10px;
		padding-right: 10px;
	}
	.click-logo{max-width: 70%;}
	br{display: block !important;}
	.click-here h1{font-size: 28px !important;}
	.typed-out{width: 100% !important;border-right: 0 !important;}
	#hero-section
	{
	    background-position: left 23% top 0 !important;
	}
}

@media only screen and (max-width: 600px) {
	#hero-section .banner-txt {
		top: 35% !important;
		position: relative;
	}
}

@media only screen and (max-width: 386px) {
	.top-header-left-sec ul li:nth-child(1) {
		padding: 0px 15px;
	}
	.top-header-left-sec ul li:nth-child(1):after {
		display: none;
	}
}

.form-group {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
	margin-right: 10px;
}

.form-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
	margin: 4px 0 0;
	margin-top: 1px;
	line-height: normal;
	width: 24%;
}

input#veg {
	transform: scale(2.7);
}

.form-group label {
	position: relative;
	cursor: pointer;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 28px;
	color: #000;
}

span.arrw-circle {
	width: 40px;
	height: 35px;
	display: inline-block;
	vertical-align: middle;
	background-color: #fff;
	border-radius: 50%;
	line-height: 1;
	text-align: center;
	padding: 11px 5px 5px;
	margin-left: 5px;
	margin-bottom: 3px;
	cursor: pointer;
	box-shadow: 0 0 14px #e1e1e1;
}

span.arrw-circle:hover {
	background: cornflowerblue;
	box-shadow: 0 0 10px;
	color: #fff;
}

.show-more {
	font-size: 16px;
	font-weight: 700;
	padding-top: 5px;
	color: #8a2be2;
	cursor: pointer;
}

.grill-title {
	font-family: 'origicideregular';
	font-family: 'origicideregular';
	color: #fff;
	display: inline-block;
	font-size: 2.2em;
	position: relative;
	top: 10px;
	letter-spacing: 2px;
}


/*----------Location-section Start---------*/

.select-title {
	/* font-family: "baskerville_old_faceregular"; */
	color: #dc3545;
	margin: 2em;
}

select {
	color: #666666;
	font-size: 16px;
	font-family: 'Open Sans Condensed', sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 20px;
	padding: 14px;
	width: 100%;
	border: 2px solid #000;
	outline: none;
}

select option {
	font-weight: bold;
}

.Search {
	color: #666666;
	font-size: 16px;
	font-family: "georgiai_0";
	font-style: italic;
	line-height: 20px;
	padding: 14px;
	width: 100%;
	border: 2px solid #229ed2;
}

.location-txt h5 {
	font-size: 28px;
	font-family: 'Dancing Script', cursive;
	text-transform: uppercase;
	font-weight: 800;
	margin-top: 17px;
	margin-left: 12px;
	padding: 00;
}

.location-txt h5:before,
.location-txt h5:after {
	content: '';
	width: 35px;
	border: 1px solid #229ed2;
	display: inline-block;
	margin-right: 15px !important;
}

.location-txt h5:after {
	margin-left: 15px;
}

.location-txt h3 {
	font-size: 20px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	padding-top: 8px;
	letter-spacing: 0.5px;
}

.location-txt {
	padding: 125px 0px;
}

.contact-us-location {
	margin-top: 40px;
}

.contact-us-location a {
	background-color: #229ed2;
	color: #fff;
	padding: 11px 50px;
	font-size: 18px;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: 40px;
}

.location-form input,
.location-form textarea {
	width: 100%;
	border: 2px solid #229ed2;
	padding: 10px 15px;
	/*margin: 8px 0px;
    */
	margin-bottom: 20px;
}

.location-form textarea {
	max-height: 200px;
	height: 200px
}

.location-form input::placeholder,
.location-form textarea::placeholder {
	font-size: 15px;
	color: #a7a4a4;
	font-family: 'Raleway', sans-serif;
}

.c_btn {
	background-color: #fc0;
	border: 2px solid #000;
	color: #000;
	padding: 7px 28px;
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	border-radius: 28px;
	position: relative;
}

.c_btn:hover {
	/*color: #f8f9fa;*/
	color: #fff;
	text-decoration: none;
	box-shadow: 0 0 22px #000;
}

.c_btn:hover:after {
	width: 100%;
}

.c_btn:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	/*background: #004085;*/
	background: #000;
	transition: all .35s;
	border-radius: 50px;
}

.c_btn span {
	position: relative;
	z-index: 2;
}

#location-form {
	padding-top: 50px;
	padding-bottom: 30px;
}

#location-form {
	/*background-image: url(../img/St_background.jpg);*/
	background-image: url(../img/mural-shape-bg.png);
	background-color: #000;
	/*height: 400px;
    */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

body#main_pages div.icon_box,
body#main_pages div.main_title {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	display: block;
}

.search-result-title {
	margin-top: -7px;
	padding: 0px 20px;
}

.search-result-title span {
	font-size: 32px;
	line-height: 30px;
	margin-top: 50px;
	color: #ce181e;
	font-family: -webkit-body;
}

.search-result-wrapper {
	border-top: 1px solid #dddddd;
	margin-top: 22px;
}

.add {
	border: 1px solid #dee2e6;
	box-shadow: 0 0 12px 0 #e1e1e1;
	padding: 20px 6px;
	margin: 10px;
	/*width:100%;*/
	position: relative;
	left: 25%;
	top: 10%;
}

.media.add {
	top: 10%;
}

.left-img {
	width: 50%;
}

.media-img {
	vertical-align: middle;
	padding: 14px 0px;
	width: 250px;
	border-radius: 20px 0 20px 0;
	background: #000;
}

.contact-no {
	color: #fff;
	font-weight: bold;
	font-size: 33px;
	padding-top: 30px;
	display: table-cell;
	font-family: 'Open Sans Condensed', sans-serif;
}
.contact-no i {
    color: #4FCE5D;
    margin-right: 10px;
    font-size: 33px;
    padding: 3px;
}
.contact-icon {
	padding: 8px;
	color: #fc0;
}

.title-add {
	font-size: 40px;
	font-weight: 700;
	color: #fc0;
	font-family: -webkit-body;
	text-decoration: underline;
}

ul.address {
	line-height: 2;
}

ul.address li {
	font-size: 22px;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
}

.about-text {
	font-size: 16px;
	font-style: italic;
	border-top: double;
	font-weight: bold;
	margin-bottom: 60px;
}

.media {
	margin-bottom: 60px;
}

.media .media-text {
	margin-left: 30px;
}

p.detail-info {
	line-height: 1.8;
	font-size: 16px;
}

img.media-object.left-img {
	width: 250px;
	border-radius: 50%;
	height: 232.04px;
}

.main-header .main-logo {
	width: 48%;
	padding: 0;
	height: 0;
	display: inline-block;
}

.btn-center {
	margin-top: 30px;
}

.footer-logo .logo {
	position: relative;
	/*bottom:7px;*/
}


/*---------Sandwiches-section-------*/

#menus-cate {
	width: 100%;
	display: flex;
	position: relative;
	/* top: 62px; */
	/* z-index: 2; */
	padding: 100px 0 0px 0px;
}

.menusingle-cat {
	background-image: url(../img/Menu-b.jpg);
	height: 757px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	left: 25%;
	overflow: hidden;
	color: #fff;
	width: 50%;
	border-radius: 50px;
	box-shadow: 0 0 10px rgba(0, 0, 0.5);
}

.veg-details {
	background-image: url(../img/Menu-b.jpg);
	height: 704px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	color: #fff;
	width: 50%;
	border-radius: 50px 0px 0 50px;
	box-shadow: 0 0 10px rgba(0, 0, 0.5);
}

.non-veg-details {
	background-image: url(../img/Menu-b.jpg);
	height: 704px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	color: #fff;
	width: 50%;
	border-radius: 0 50px 50px 0;
	box-shadow: 0 0 10px rgba(0, 0, 0.5);
}

.menu2-bg h1 {
	position: relative;
	left: 0;
	bottom: 60px;
	margin: 25px;
	font-family: 'freshman';
	padding: 50px 0px;
	/* font-family: fira_sansregular,Helvetica,Arial,sans-serif; */
	color: #cd9e55;
	text-align: center;
	font-size: 37px;
	text-shadow: 2px 2px #343a40;
}

ul.menu-category {
	margin-top: 50px;
}

ul.menu-category li {
	list-style: none;
	line-height: 3.0;
	font-weight: bold;
	font-size: 22px;
	position: relative;
	left: 15%;
	text-transform: uppercase;
	cursor: pointer;
	bottom: 120px;
}

ul.menu-category li p {
	display: none;
	font-size: 10px;
	position: relative;
	bottom: 6px;
	line-height: 0;
}

.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 3;
	top: 0;
	left: 0;
	/*background: linear-gradient(90deg, rgba(252,176,69,1) 0%, rgba(250,78,49,1) 50%, rgba(252,176,69,1) 100%);*/
	background-color: #fff;
	overflow-x: hidden;
	transition: 0.5s;
	/*margin-top:76px;*/
}

.overlay-content {
	position: relative;
	/*top: 25%;*/
	width: 100%;
	text-align: center;
	/* margin-top: 30px;*/
}

.overlay a {
	/* padding: 8px;*/
	text-decoration: none;
	font-size: 18px;
	color: #000;
	display: inline-block;
	transition: 0.3s;
	font-weight: bold;
}

.overlay a:hover,
.overlay a:focus {
	color: #fff;
}

.overlay .closebtn {
	position: absolute;
	/* top: 9%;*/
	right: 45px;
	font-size: 60px;
	color: rgba(0, 0, 0, .9);
	z-index: 1;
}

a.arrow-img i {
	font-size: 36px;
	color: #007bff
}

.round {
	border-radius: 50%;
	margin-bottom: 8px;
}

a.previous.round {
	background-color: #dc3545;
	color: #f8f9fa;
	display: inline-block;
	padding: 8px 16px;
	position: relative;
	left: 12px;
}

a.previous.round:hover {
	transform: scale(1.1);
	box-shadow: 0 0 1px 1px #f8f9fa;
	filter: drop-shadow(5px 2px 3px black);
	transition: 0.50s ease-out;
}

a.next.round {
	background: green;
	color: #fff;
	/* width: 27px; */
	display: inline-block;
	padding: 8px 16px;
	float: right;
	position: relative;
	right: 12px;
}

a.next.round:hover {
	transform: scale(1.1);
	box-shadow: 0 0 1px 1px #fff;
	filter: drop-shadow(-4px 3px 2px black);
	transition: 0.50s ease-out;
}

.feature-layout {
	margin: 10px;
}

.layout-salient {
	margin: 5px;
}

.layout-salient span {
	color: #fff;
	font-weight: bold;
}

.layout-salient.layout1 {
	display: inline-block;
	padding: 23px 100px;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	border-radius: 0 60px;
	width: 100%;
	max-width: 434px;
	filter: drop-shadow(2px 2px 6px black);
	/*-webkit-clip-path: polygon(0 0, 89% 17%, 100% 100%, 10% 95%);
    clip-path: polygon(0% 0%, 89% -27%, 100% 100%, 15% 164%);*/
}

.layout-salient.layout2 {
	display: inline-block;
	border-radius: 100px 0;
	padding: 25px 100px;
	position: relative;
	color: #fff;
	font-weight: bold;
	max-width: 400px;
	width: 100%;
	filter: drop-shadow(2px 2px 6px black);
	/*-webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(10% 0%, 100% 0%, 89% 109%, 0% 100%);*/
}

.layout-salient.right {
	left: 50px;
}

.layout-salient.left {
	right: 50px;
	position: relative;
}

.clients {
	padding: 25px;
	/* border: 2px solid #000; */
	display: inline-block;
	background: #000;
	margin-bottom: 18px;
	margin-top: 8px;
	width: 56%;
}

.clients p {
	color: #fff;
	border: 2px solid #fff;
	padding: 54px;
	text-align: justify;
	border-radius: 0 80px;
	letter-spacing: 0.6px;
}

.white-border {
	position: absolute;
	left: 275px;
	width: 436px;
	height: 42px;
	color: #000;
	background: #000;
	bottom: 249px;
	top: 38px;
	/* display: inline-block; */
	border: 2px solid #000;
}

.white-border2 {
	position: relative;
	background: #000;
	color: #000;
	border: 2px solid #000;
	width: 60px;
	height: 50px;
	left: 521px;
	/* transform: rotate(90deg); */
	bottom: 34px;
	/* border-radius: 126px;*/
}

.rating {
	position: relative;
	margin-top: -51px;
	color: #fff;
	transform: scale(1.5);
}

h5.client-head {
	position: absolute;
	color: #fff;
	/* right: 0; */
	text-align: center;
	justify-content: center;
	align-items: center;
	left: 43%;
	top: 28px;
}

span.left-quote i.fa.fa-quote-left {
	position: absolute;
	top: 26px;
	color: #fff;
	/* left: 25%; */
	left: 279px;
	font-size: 58px;
	z-index: 2;
}

span.right-quote i.fa.fa-quote-right {
	position: absolute;
	/* top: 14px; */
	color: #fff;
	/* left: 72%; */
	left: 14em;
	font-size: 58px;
	z-index: 2;
	bottom: 68px;
	/* right: 129px; */
}

span.text1 {
	position: relative;
	top: 16px;
	right: 16px;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 12px;
}

span.text2 {
	position: relative;
	top: 16px;
	right: 9px;
	text-align: center;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 10px;
}

span.text3 {
	position: relative;
	color: #fff;
	top: 16px;
	right: 4px;
	text-align: center;
}

p.footer_fran_enq {
	font-size: 26px;
	letter-spacing: 2px;
	font-family: 'Open Sans Condensed', sans-serif;
}

p.footer_fran_enq i {
	font-size: 26px;
	padding-right: 10px;
}


/*------Media-Query------*/
@media (min-width: 1200px)
{
	.about-frenchise-text
	{line-height: 30px;
	    text-align:justify;
	}
	/*Hover effect*/
	.workwithus a:hover {
    background: transparent;
    color: #fff !important;
    }
    
}
@media only screen and (min-width: 768px) {
	.header .menu {
    	position: relative;
    	top: 15%;
        display: flex;
        align-items: center !important;
        justify-content: center;
        margin: auto;
        height: 70px;
	}
}

@media only screen and (max-width: 600px) {
	img {
		width: 100%;
	}
	#main-header ul.menu li a {
		transition: all 0.5s ease-in;
		/*display: flex;*/
		/*border-bottom: 1.5px solid #fff;*/
		padding: 0;
		border-right: none;
	}
	.grill-title{font-size: 20px !important;}
	.logo img {
		width: 60px;
	}
	.col-center {
		margin-top: 10px;
	}
	.main-logo {
		padding: 0;
		height: 0;
	}
	.media {
		display: inline-block;
		margin-top: 34px;
		margin-bottom: 10px
	}
	img.media-object.left-img {
		margin-left: 42px;
		margin-bottom: 26px;
	}
	.media-heading {
		text-align: center;
	}
	.media-left.left-img {
		width: 100%;
	}
	img.media-object.media-img {
		width: 100%;
	}
	span.contact-no {
		position: relative;
		left: 15%;
		padding-top: 5%;
	}
	.media.add {
		left: 0%;
	}
	.row {
		display: block;
	}
	.veg-details {
		width: 100%;
		/*right: 2px;*/
		border-radius: 0;
	}
	.non-veg-details {
		width: 100%;
		/*right:2px;*/
		border-radius: 0;
		margin-bottom: 20px;
		margin-top: 20px;
	}
	.menusingle-cat {
		border-radius: 0;
		left: 0;
		width: 100%;
		margin-bottom: 20px;
	}
	#menus-cate {
		padding-top: 22px;
	}
	.menu2-bg h1 {
		position: relative;
		text-align: center;
		bottom: 35px;
		display: block;
	}
	ul.menu-category li {
		position: relative;
		text-align: center;
		bottom: 86px;
		left: 0;
	}
	#main-header ul.menu li {
		position: relative;
		bottom: 0px;
		margin-top: 0px;
	}
	.header {
		position: inherit;
	}
	.our-frenchise-txt ul li {
		padding-left: 0;
		margin-left: 32px;
		list-style-position: outside;
	}
	.overlay .closebtn {
		font-size: 45px;
		right: 9px;
	}
	a.arrow-img i {
		position: relative;
		top: 18px;
		bottom: 0;
		font-size: 25px;
	}
	#main-header ul.menu li:last-child a {
		border-bottom: 1.5px solid #fff;
	}
	.layout-salient.left {
		position: relative;
		right: 0px;
	}
	.layout-salient.right {
		left: 0px;
	}
	.white-border {
		position: absolute;
		left: 38px;
		width: 255px;
		/* width: 100%; */
		color: #000;
		background: #000;
		bottom: 522px;
		top: 53px;
		height: 37px;
		/* display: inline-block; */
		border: 2px solid #000000;
		display: inline-block;
		/* transform: rotate(90deg); */
	}
	.white-border2 {
		position: relative;
		background: #000;
		color: #000;
		border: 2px solid #000;
		width: 45px;
		height: 41px;
		/* left: 537px; */
		left: 253px;
		transform: rotate(90deg);
		bottom: 23px;
		/* border-radius: 126px; */
	}
	span.left-quote i.fa.fa-quote-left {
		position: absolute;
		top: 45px;
		color: #fff;
		left: 10%;
		/* left: 279px; */
		font-size: 32px;
		z-index: 2;
	}
	span.right-quote i.fa.fa-quote-right {
		position: absolute;
		/* top: 14px; */
		/* color: #211717; */
		left: 82%;
		/* left: 14em; */
		font-size: 32px;
		z-index: 2;
		bottom: 66px;
		/* right: 129px; */
	}
	h5.client-head {
		position: absolute;
		color: #fff;
		/* right: 0; */
		text-align: center;
		justify-content: center;
		align-items: center;
		left: 0%;
		top: 28px;
		width: 100%;
	}
	.our-frenchise-txt {
		text-align: center;
	}
	.our-frenchise-txt h3 {
		text-align: center;
	}
	.client-despr span {}
	span.text1 {
		position: relative;
		right: 0px;
		width: 100%;
	}
	.clients p {
		text-align: left;
	}
	.clients {
		width: 100%;
	}
	span.text2 {
		position: relative;
		right: 0;
	}
	.rating {
		transform: none;
	}
}

@media only screen and (max-width: 1100px) {
	.main-logo {
		display: inline-block;
	}
}

@media only screen and (max-width: 992px) {
	#main-header ul.menu li {
		position: relative;
		/*bottom:12px;
        margin-top:-10px;*/
	}
	.menu2-bg h1 {
		left: 0;
		text-align: center;
	}
	ul.menu-category li {
		position: relative;
		/*bottom:75px;*/
	}
}

@media only screen and (max-width: 425px) {
	.main-logo {
		display: inline-block;
	}
	.white-border2 {
		position: relative;
		background: #000;
		color: #000;
		border: 2px solid #000;
		width: 45px;
		height: 41px;
		/* left: 537px; 
    left: 222px;*/
		transform: rotate(90deg);
		bottom: 23px;
		/* border-radius: 126px; */
	}
}

@media screen and (max-height: 320px) {
	span.text1 {
		position: relative;
		left: 0px;
	}
}

@media screen and (max-height: 600px) {
	.overlay a {
		font-size: 20px
	}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}


/*--- new-css added ----*/

ol.carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	opacity: 1;
	display:none;
}

ol.carousel-indicators li.active {
	background-color: #fc0;
}

.carousel-control-next,
.carousel-control-prev {
	display: none;
}


/*.home-menu-block:hover img {*/


/*-webkit-transform: rotate(5deg) scale(1.2);*/


/*transform: rotate(5deg) scale(1.2);*/


/*    -webkit-transform: scale(1.2);*/


/*    transform: scale(1.2);*/


/*    overflow:hidden;*/


/*}*/

.home-menu-block a {
	display: block;
	overflow: hidden;
}

.home-menu-block img {
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	overflow: hidden;
}

#about-us .menu-bg h1 {
	color: #fff;
	font-size: 50px;
}

#about-us h2.dirct-title {
	color: #fff;
	border-bottom: 1px solid #fff;
	display: inline-block;
}


/*section#profile-info{display:none;}*/

.bg-main {
	background: #fc0;
}

.testimonial-carousel-item {
	padding: 30px;
	border-radius: 10px;
	position: relative;
}

.testimonial-carousel-item:before {
	content: "";
	border-width: 25px;
	border-style: solid;
	border-color: transparent transparent #fc0 transparent;
	position: absolute;
	bottom: 0;
	left: 30px;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}

.testimonial-carousel-item .carousel-para {
	margin-bottom: 20px;
	position: relative;
	padding-top: 40px;
	text-align: left;
	font-size: 16px;
}

.testimonial-carousel-item .carousel-para:before {
	content: "\f10e";
	font-family: 'FontAwesome';
	font-size: 70px;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, -22px);
	transform: translate(-50%, -22px);
	top: 0;
	color: rgba(255, 255, 255, .18);
}

.carousel-info-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #222;
}

.carousel-thumb {
	-webkit-box-flex: 0;
	flex: 0%;
	/*-ms-flex: 0 0 70px;*/
	max-width: 200px;
	width: 70px;
	/*height: 70px;*/
	overflow: hidden;
	border-radius: 50%;
}

.carousel-thumb img {
	width: 100%;
}

.testimonial-carousel-item .carousel-info .review-star {
	margin-bottom: 10px;
}

.carousel-info {
	text-align: end !important;
}

.testimonial-carousel-item.bg-main .carousel-name {
	color: #000;
	font-weight: bold;
	font-size: 36px;
}

.testimonial-carousel-item .carousel-info .carousel-name {
	margin-bottom: 10px;
}

.carousel-designation {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}

#main-header ul.menu li.active>a:after {
	visibility: visible;
	width: 100%;
}

#main-header ul.menu li a:hover:after {
	width: 100%;
}

#main-header ul.menu a:after {
	content: '';
	display: block;
	margin: auto;
	height: 2px;
	width: 0px;
	background: #fff;
	transition: all 0.4s linear;
	top: 2px;
}

@media screen and (max-width: 600px) {
	#about-us {
		padding: 0;
	}
	.carousel-thumb {
		flex: 0 0 70px;
	}
	.testimonial-carousel-item.bg-main .carousel-name {
		font-size: 24px;
	}
	.testimonial-carousel-item .carousel-para:before {
		font-size: 50px;
		top: 20px;
	}
}
/*---start-light-up section---*/
/* 31-10-2021 */
.show-on-what {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    /* background: #e66611; */
	background-image: url('../img/bg-overlay-2.jpg');
  }
  
  .inner-show-what {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .click-here {
    text-transform: none !important;
  }
  
  .click-here {
    background: transparent!important;
    text-transform: uppercase;
    font-size: 24px;
    position: relative;
    color: #fff;
    border: none;
  }
  .click-here h1 {
    z-index: 99;
    position: relative;
    top: 10px;
    font-size: 34px;
    font-weight: bold;
    text-transform: uppercase
  }
  
  button.click-here:after {
    content: '';
    position: absolute;
    background: #1e66f7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    right: 36px;
    top: -7px;
    display: none;
  }
  .typed-out {
	overflow: hidden;
	font-family: 'Oswald', sans-serif;
	font-size: 1.75rem;
	border-right: 0.10em solid #000;
	white-space: nowrap;
	animation: typing 3s steps(30, end) forwards, blink 0.8s infinite;
	width: 0;
	letter-spacing: 1.2px;
}

@keyframes typing {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

@keyframes blink {
	from {
		border-color: transparent;
	}
	to {
		border-color: #000;
	}
}