/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;500;600&display=swap')



body {
font-family: 'Raleway', sans-serif;
  color: #444444;
  font-size:18px;
}

a {
  color: #444444;
  text-decoration: none;
}

a:hover {
  color: #149989;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Raleway', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149b8b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffbf0e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #e03a3c;
}

#header .logo img {
  max-height: 40px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #009889;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #32343a;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #009889;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #32343a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 390px;
  text-align:center;
  background: url("../img/banner-home.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 125px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .tittle { z-index:6;}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 36px;
}
#hero h2 span {
  font-weight:600;
  font-size: 36px;
}



@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 75px;
	height: 220px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Hero-restaurants Section
--------------------------------------------------------------*/
#hero-restaurants {
  width: 100%;
  height: 390px;
  text-align:center;
  background: url("../img/banner-restaurants.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 125px;
}

#hero-restaurants:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero-restaurants .tittle { z-index:6;}

#hero-restaurants h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero-restaurants h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 36px;
}
#hero-restaurants h2 span {
  font-weight:600;
  font-size: 36px;
}



@media (max-width: 768px) {
  #hero-restaurants {
    text-align: center;
    padding-top: 75px;
	height: 220px;
  }

  #hero-restaurants h1 {
    font-size: 28px;
  }

  #hero-restaurants h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero-restaurants {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# Hero-liquor Section
--------------------------------------------------------------*/
#hero-liquor {
  width: 100%;
  height: 390px;
  text-align:center;
  background: url("../img/banner-liquor.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 125px;
}

#hero-liquor:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero-liquor .tittle { z-index:9;}

#hero-liquor h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero-liquor h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 36px;
}
#hero-liquor h2 span {
  font-weight:600;
  font-size: 36px;
}



@media (max-width: 768px) {
  #hero-liquor {
    text-align: center;
    padding-top: 75px;
	height: 220px;
  }

  #hero-liquor h1 {
    font-size: 28px;
  }

  #hero-liquor h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero-liquor {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# Hero-inner Section
--------------------------------------------------------------*/
#hero-inner {
  width: 100%;
  height: 420px;
  text-align:left;
 /*  background: url("../img/banner-restaurants.jpg") center center no-repeat; 
  background-size: cover;
  position: relative;*/
  padding-top: 90px;
}

#hero-inner:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero-inner .tittle { z-index:6;}

#hero-inner h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero-inner h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 36px;
}
#hero-inner h2 span {
  font-weight:600;
  font-size: 36px;
}



@media (max-width: 768px) {
  #hero-inner {
    text-align: left;
    padding-top: 70px;
	height: 300px;
  }

  #hero-inner h1 {
    font-size: 28px;
  }

  #hero-inner h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 500px) {
  #hero-inner {
    text-align: center;
    padding-top: 70px;
	height: 400px;
  }

  #hero-inner h1 {
    font-size: 28px;
  }

  #hero-inner h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero-inner {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03a3c;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 20px;
  color:#149989;
}
.section-title h1 {
 font-size:36px;
 font-weight:600;
  color:#149989;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 18px;
  background: #5e6e6d;
  padding: 30px 0 30px 0;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;

}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #e03a3c;
  color: #fff;
  text-decoration: none;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 10px 25px;
	margin-left: 30px;
	/* border-radius: 4px; */
	line-height: 1;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	background:#009889;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	background: #ffbf0e;
	color: #fff;
	/*  border-color: #009889; */
}


.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 0 15px 15px 15px;
	
	padding: 10px 15px;
}
.pt-40{ padding-top:40px;}
.pt-20{ padding-top:20px;}

.text { line-height:30px;}



.responsive {
  width: 100%;
  max-width: 641px;
  height: auto;
}

.card-area .box {	
	display: -webkit-flex; /* Safari */		
	display: flex; /* Standard syntax */}



.card {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: .25rem;
	-webkit-flex: 1; /* Safari */
	-ms-flex: 1; /* IE 10 */
	flex: 1; /* Standard syntax */
}

.card>hr {
	margin-right: 0;
	margin-left: 0
}

.card>.list-group:first-child .list-group-item:first-child {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem
}

.card>.list-group:last-child .list-group-item:last-child {
	border-bottom-right-radius: .25rem;
	border-bottom-left-radius: .25rem
}

.card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.25rem
}

.card-title {
	margin-bottom: .75rem
}

.card-subtitle {
	margin-top: -.375rem;
	margin-bottom: 0
}

.restaurants-address:last-child {
	margin-bottom: 0
}

.card-link:hover {
	text-decoration: none
}

.card-link+.card-link {
	margin-left: 1.25rem
}

.card-header {
	padding: .75rem 1.25rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, .03);
	border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.card-header:first-child {
	border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-header+.list-group .list-group-item:first-child {
	border-top: 0
}

.card-footer {
	padding: .75rem 1.25rem;
	background-color: rgba(0, 0, 0, .03);
	border-top: 1px solid rgba(0, 0, 0, .125)
}

.card-footer:last-child {
	border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
	margin-right: -.625rem;
	margin-bottom: -.75rem;
	margin-left: -.625rem;
	border-bottom: 0
}

.card-header-pills {
	margin-right: -.625rem;
	margin-left: -.625rem
}

.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem
}

.card-img,
.card-img-bottom,
.card-img-top {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%
}

.card-img,
.card-img-top {
	border-top-left-radius: calc(.25rem - 1px);
	border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom {
	border-bottom-right-radius: calc(.25rem - 1px);
	border-bottom-left-radius: calc(.25rem - 1px)
}

.card-deck .card {
	margin-bottom: 15px
}

@media (min-width:576px) {
	.card-deck {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-right: -15px;
		margin-left: -15px
	}

	.card-deck .card {
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		margin-right: 15px;
		margin-bottom: 0;
		margin-left: 15px
	}
}

.card-group>.card {
	margin-bottom: 15px
}

@media (min-width:576px) {
	.card-group {
		display: -ms-flexbox;
		display: flex;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap
	}

	.card-group>.card {
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		margin-bottom: 0
	}

	.card-group>.card+.card {
		margin-left: 0;
		border-left: 0
	}

	.card-group>.card:not(:last-child) {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0
	}

	.card-group>.card:not(:last-child) .card-header,
	.card-group>.card:not(:last-child) .card-img-top {
		border-top-right-radius: 0
	}

	.card-group>.card:not(:last-child) .card-footer,
	.card-group>.card:not(:last-child) .card-img-bottom {
		border-bottom-right-radius: 0
	}

	.card-group>.card:not(:first-child) {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0
	}

	.card-group>.card:not(:first-child) .card-header,
	.card-group>.card:not(:first-child) .card-img-top {
		border-top-left-radius: 0
	}

	.card-group>.card:not(:first-child) .card-footer,
	.card-group>.card:not(:first-child) .card-img-bottom {
		border-bottom-left-radius: 0
	}
}

.card-columns .card {
	margin-bottom: .75rem
}

@media (min-width:576px) {
	.card-columns {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1
	}

	.card-columns .card {
		display: inline-block;
		width: 100%
	}
}

.accordion>.card {
	overflow: hidden
}

.accordion>.card:not(:last-of-type) {
	border-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.accordion>.card:not(:first-of-type) {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.accordion>.card>.card-header {
	border-radius: 0;
	margin-bottom: -1px
}


.card-svg-shape {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 120px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	fill: #fff;
	stroke: none
}

.card {
	border: 0;
	-webkit-box-shadow: 0 1px 15px rgba(82, 85, 90, .1);
	-moz-box-shadow: 0 1px 15px rgba(82, 85, 90, .1);
	box-shadow: 0 1px 15px rgba(82, 85, 90, .1);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	margin-bottom: 30px;
	position: relative
}

.card .icon-element {
	position: relative
}

.card .icon-element .info-number {
	position: absolute;
	right: -5px;
	top: 0;
	width: 30px;
	height: 30px;
	line-height: 27px;
	background-color: #ff6b6b;
	border: 2px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	font-weight: 500;
	font-size: 15px
}

.card-pattern {
	position: relative;
	z-index: 1
}

.card-pattern:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .1;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333f57' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.card-image {
	position: relative;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px
}

.card-image .card-img-top {
	width: 100%;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px
}


.card-cat {
	font-size: 18px;
	color: #808996;
	display: block
}

.card-cat .icon-element-sm {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px
}

.card-cat:hover {
	color: #808996
}

.card-title {
	font-size: 20px;
	font-weight: 600
}

.card-title a {
	color: #333f57;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}

.card-title a:hover {
	color: #ff6b6b
}

.card-area h1 {padding-bottom:40px; }

.restaurants-logo {
	width: 60px;
	height: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 4px solid #fff;
	-webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, .2);
	-moz-box-shadow: 0 10px 40px rgba(82, 85, 90, .2);
	box-shadow: 0 10px 40px rgba(82, 85, 90, .2);
	position: absolute;
	right: 20px;
	top: 0;
	margin-top: -30px;
	background-color:#fff;
}

.restaurants-logo img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 100%;
	height: 100%
}

.post-author a {
	color: #808996;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}

.post-author a:hover {
	color: #ff6b6b
}

.post-author img {
	width: 40px;
	height: 40px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 3px solid #fff;
	margin-right: 2px;
	-webkit-box-shadow: 0 0 40px rgba(82, 85, 90, .1);
	-moz-box-shadow: 0 0 40px rgba(82, 85, 90, .1);
	box-shadow: 0 0 40px rgba(82, 85, 90, .1)
}

.card-meta a {
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	color: #808996
}

.card-meta a:hover {
	color: #ff6b6b
}

.card-carousel .owl-item {
	padding: 15px
}

.card-hover-effect {
	z-index: 1;
	position: relative
}

.card-hover-effect .restaurants-address,
.card-hover-effect .card-title {
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

.card-hover-effect:after,
.card-hover-effect:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	z-index: -1;
	opacity: 0;
	visibility: hidden
}

.card-hover-effect:before {
	background-size: cover;
	background-position: center;
	background-image: url(../images/img4.jpg)
}

.card-hover-effect:after {
	background-color: #000
}

.card-hover-effect:hover .restaurants-address,
.card-hover-effect:hover .card-title {
	color: #fff
}

.card-hover-effect:hover:before {
	opacity: 1;
	visibility: visible
}

.card-hover-effect:hover:after {
	opacity: .5;
	visibility: visible
}

.card-flex {
	-ms-flex-direction: row;
	flex-direction: row
}

@media (max-width:575px) {
	.card-flex {
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.card-flex .card-image {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: block;
	border-top-right-radius: 0;
	border-bottom-left-radius: 6px
}

@media (max-width:575px) {
	.card-flex .card-image {
		border-top-right-radius: 6px;
		border-bottom-left-radius: 0
	}
}

.card-flex .card-image img {
	object-fit: cover;
	height: 100%
}

.card-flex .card-image img.card-img-top {
	border-top-right-radius: 0;
	border-bottom-left-radius: 6px
}

@media (max-width:575px) {
	.card-flex .card-image img.card-img-top {
		border-top-right-radius: 6px;
		border-bottom-left-radius: 0
	}
}

.card-flex .card-body {
	-webkit-flex: 2;
	-ms-flex: 2;
	flex: 2
}

@media (max-width:1199px) {
	.fs-container {
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
}

@media (max-width:1199px) {
	.fs-container-item {
		width: 100% !important
	}
}

@media (max-width:1199px) {
	.fs-container-item-map {
		height: 400px !important;
		position: relative !important;
		top: auto !important;
		right: auto !important
	}
}

.theme-btn {
	font-weight: 500;
	width:100%;
	font-size: 20px;
	color: #fff;
	padding: 12px 6px;
	background-color: #149b8b;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: relative;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-align: center
}

.theme-btn:hover {
	background-color: #ffbf0e;
	color: #fff
}

.theme-btn-sm {
	padding: 6px 20px
}

.theme-btn-gray {
	background-color: #eee;
	color: #333f57
}

.theme-btn-gray:hover {
	background-color: #ddd;
	color: #333f57
}


.hover-y {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}

.hover-y:hover {
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px)
}

.restaurants-address i {color:#808996; font-size:14px; }


.link  {
  color: #fff;
  line-height: 0;
}

.link:hover {
 
  color: #149b8b;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-color: #000;
	opacity: .6;
	z-index: -1
}

.category-item {
	margin-bottom: 30px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: relative;
	text-align: center;
	z-index: 1
}

.category-item .overlay {
	z-index: 1
}

.category-item .category-img,
.category-item .overlay {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px
}

.category-item .category-img {
	width: 100%
}

.category-item .category-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2
}

.category-item .category-content-inner {
	position: absolute;
	width: 100%;
	bottom: -30px;
	left: 0;
	padding-left: 20px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}

.category-item .cat-title {
	font-size: 28px;
	color: #fff
}

.category-item .badge {
	padding: 10px 14px;

	background-color: #009889;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}


.category-item:hover .category-content-inner {
	bottom: 20px
}

.category-item:hover .badge {
background-color: transparent;
		border: 2px solid #009889;
}

.cat-list li {
	display: inline-block;
	margin-right: 25px;
	position: relative;
	color: #fff
}

.cat-list li span {
	margin-right: 2px;
	font-weight: 700
}

.cat-list li::after {
	position: absolute;
	content: '-';
	top: -2px;
	right: -19px;
	font-size: 24px
}

.cat-list li:last-child {
	margin-right: 0
}

.cat-list li:last-child::after {
	display: none
}

@media screen and (max-width: 768px) {
.category-item .cat-title {
	font-size: 22px;
	color: #fff
}

.category-item .badge {
	padding: 6px 6px;

	background-color: #009889;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}
.my-3 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
}
}
.bg-gray {
	background-color: #f5f7fc !important
}

.tittle .page-logo {
	width: 150px;
	height: 150px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 4px solid #fff;
	-webkit-box-shadow: 0 10px 40px rgba(82, 85, 90, .2);
	-moz-box-shadow: 0 10px 40px rgba(82, 85, 90, .2);
	box-shadow: 0 10px 40px rgba(82, 85, 90, .2);
	background-color:#fff;
	margin-bottom:20px;
	margin-bottom:20px;
}

.tittle .page-logo img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 100%;
	height: 100%
}

.tittle h5 {
	color:#fff;
	padding-top:5px;
}


.contact h4{
	
	text-align:left
	
}
.contact .contact-item{
	display: flex;
	align-items: center;
	/*   margin: 0 0px 20px; */
	padding:10px 0;

}
.contact .contact-item.expand{
	margin: 0;
}
.contact .contact-icon{
	text-align: center;
	font-size: 1.4em;
	width: 1.2em;
	line-height: 1em;
	margin-right: 12px;
	color:var(--gray);
}
.contact .contact-label{
	font-size: 18px;
	line-height: 1.4em;
}
.contact h3{
	font-size: 18px;
	text-transform: uppercase;
	margin: 0 24px 18px;
	color: #999;
}
.mt-20 {margin-top:20px; }
.mb-20 {margin-bottom:20px; }
.mb-5 { margin-bottom:5px;}





ul.breadcrumb{
  outline-style: none;
 
  display: block;
  padding: 0.75rem 0.75rem 0.75rem 0 ;
  background-color: #f5f7fc !important
}
ul.breadcrumb li{
  display: inline-block;
}
ul.breadcrumb li.is-active{
  color: #848484;
}
ul.breadcrumb>li+li:before {
  padding: 0 5px;
  color: #848484;
  content: "/\00a0";
}
ul.breadcrumb li a:hover{
  text-decoration: underline;
}


@media screen and (max-width: 768px) {
	
	.slider{
    width:100%;
    height:450px !important;
    margin:0 auto;
    position: relative;
    overflow: hidden;
}
}
@media screen and (max-width: 400px) {
	
	.slider{
    width:100%;
    height:220px !important;
    margin:0 auto;
    position: relative;
    overflow: hidden;
}
}
	
.slider{
    width:100%;
    height:575px;
    margin:0 auto;
    position: relative;
    overflow: hidden;
}
.slide-ana{
    height: 100%;
}
.slide-ana div{
    width:100%;
    height: 100%;
    position: absolute;
    transition: all 1s;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.slider span{
    height: 50px;
    position: absolute;
    top:50%;
    margin:-25px 0 0 0;
    background-color: rgba(0, 0, 0, 0.4);
    color:#fff;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}
.title{
    top:80% !important;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    cursor: auto !important;
    padding: 0 20px;
}
.slide-ana{
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
#prev{
    left:0;
    border-radius: 0 10px 10px 0;
}
#next{
    right:0;
    border-radius:10px 0 0 10px;
}
#prev svg,#next svg{
    width:100%;
    fill: #fff;
}
#prev:hover,
#next:hover{
    background-color: rgba(0, 0, 0, 0.8);
}


/* Are you over 18? */
#age-verify {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 1);
  transition: 500ms;
  z-index:99;
}
#age-verify .window {
  /* position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 250px;
  overflow: hidden;
  padding: 40px;
  margin-left: -200px;
  margin-top: -125px;
  background-color: #fff;
  border: 6px solid #149b8b;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: 500ms; */

  
	position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	 padding: 20px;
  background-color: #fff;
  border: 6px solid #149b8b;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: 500ms;
  min-width:320px;
  
	overflow: hidden;
}
#age-verify .window span {
  display: block;
  text-align: center;
  margin-bottom: 10px;

}
#age-verify .window span.title {
  color: #149b8b;
  font-size: 22px;
}
#age-verify .window button {
  border: 0;
  margin: 0;
  padding: 0;
  width: 48%;
  height: 60px;
  color: #FFF;
  font-size: 18px;
  background-color: #149b8b;
  margin-top: 20px;

  transform: scale(1);
  transition: 0.2s;
}
#age-verify .window button.back {
  display: block;
  float: none;
  margin: auto;
  background-color: #fff;
  color: #333 !important;
  margin-top: 20px;
}
#age-verify .window button.yes {
  float: left;
}
#age-verify .window button.no {
  float: right;
}
#age-verify .window button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background-color: #ffbf0e;
}
#age-verify .window .underBox {
  position: absolute;
  height:100%;
  padding: 40px;
  top: 100%;
  left: 0;
  right: 0;

  background-color: #149b8b;
  transition: 500ms;
  box-sizing: border-box;
}
#age-verify .window .underBox * {
  color: #FFF !important;
}
#age-verify.hidden {
  opacity: 0;
  visibility: hidden;
}
#age-verify.hidden .window {
  transform: scale(0.5);
}
#age-verify.under .window .underBox {
  top: 0%;
}
.bg-dark {
    background-color: #009889!important;
}

.abt h5 {line-height:30px;}

.rounded-12 {
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    border-radius: 12px !important;
}

.listing-wrapper h4 {font-size:28px;}
.contact h4 {font-size:28px;}

.listing-wrapper p {font-size:18px;}
	