@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype'),
        url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype'),
        url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype'),
        url('../fonts/Poppins-Light.svg#Poppins-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #2ab7e3;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: 'Poppins';
	font-weight: normal;
    font-style: normal;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-size:16px;
	color: #171616;
	line-height:20px;
	letter-spacing: 0.01em
}

/*body {
  font-family: var(--font-default);
  color: var(--color-default);
}*/

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #157694;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins'; font-weight: bold; font-style: normal; /*font-family: var(--font-secondary);*/
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #f0ecec;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/* Section title ------------------------- */
.section-title{position: relative;}

.section-title h1, .section-title h2, .section-title h3,.section-title h4, .section-title h5,.section-title h6{}
.section-title-heading h1{}

.section-title{color: #2ab7e3;}
.section-title span{ color: #000; font-family: 'Poppins'; font-weight: 300; font-style: normal;}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #1b9cc4;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #2CBDEA;
  height: 40px;
  z-index: 996;
  transition: all 0.5s;
  padding: 5px 0px;
  align-items: center;	
}

#topbar a {
   color: #fff;
   font-size:12px;
   position: relative;
}

#topbar a.link { position: relative; line-height: 27px;}
#topbar a.link:after {content: ""; background-color: #fff; width: 1px; height: 15px; position: relative; display: inline-block; margin-left: 15px; margin-right: 15px; top:4px;}

#topbar .btn-login,
#topbar .btn-login:focus {
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 1);
  padding: 5px 20px; 
  border-radius:20px;
  transition: 0.3s;
}

#topbar .btn-login:hover,
#topbar .btn-login:focus:hover {
  color: #fff;
  background: rgba(0, 0, 0, 1);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height:100px;
  top: 40px;
  border-bottom: 1px solid #fff;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1);  	 */
  box-shadow:0 0 10px rgba(38, 36, 36, 0.59)
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }  	
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height:80px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;  
  background: var(--color-primary);	
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(0, 0, 0, 1);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 20px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    /* font-weight: 600; */
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding:0px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #2cbdea;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
	border-bottom: 1px solid #2cbdea;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
	color: #fff;   
  }

  .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: var(--color-primary);*/
	color: #fff;
	background-color: #119eca;
  }	

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    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 li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {position: relative; padding:50px 0; margin-top: 140px;}
.hero-section .carousel-control-prev-icon, .hero-section .carousel-control-next-icon { background-color: #000; opacity: 1!important;}
.hero-section .carousel-control-prev, .hero-section .carousel-control-next {opacity: 1!important;}
.hero-bg:before {content:""; background-image: url('../images/slide/hero-bg.png'); opacity: 0.175; width: 100%; position:absolute; top:27px; bottom:0; right:0; left:0; height:auto; z-index:-3;}

.hero-caption h1{color: #137493; font-weight: 300;}

.hero-icon{width: 130px; height: 130px; background-color: #fafafa; border-radius:50%; padding:1.5rem 1rem 0rem;; border: 0px solid #ccc; text-align: center; margin:0.5rem 1.5rem; cursor: pointer;}
.hero-icon:hover{background-color: #fff; box-shadow: 0 0 10px #dbdbdb;}
.hero-icon p{margin-bottom: 0px; font-size: 13px; line-height: 1.3;}
.hero-icon a{color: #000;}
.carousel-inner {border-radius:4px;}	

.hero { width: 100%; background-size: cover; position: relative; min-height: 60vh; padding: 160px 0 60px 0;}
.hero h2 { font-size: 64px; font-weight: 700; margin-bottom: 20px; color: var(--color-secondary); font-family: var(--font-primary);}
.hero h2 span { color: var(--color-primary);}
.hero p {color: #4f4f5a; font-weight: 400; margin-bottom: 30px;}
.hero .btn-book-a-table {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);
}
.hero .btn-book-a-table:hover { background: rgba(206, 18, 18, 0.8); box-shadow: 0 8px 28px rgba(206, 18, 18, 0.45);}
.hero .btn-watch-video {font-size: 16px; transition: 0.5s; margin-left: 25px; color: var(--font-secondary); font-weight: 600;}
.hero .btn-watch-video i { color: var(--color-primary); font-size: 32px; transition: 0.3s; line-height: 0; margin-right: 8px;}
.hero .btn-watch-video:hover { color: var(--color-primary);}
.hero .btn-watch-video:hover i { color: rgba(206, 18, 18, 0.8);}

@media (max-width: 640px) {
  .hero h2 {font-size: 36px; }
  .hero .btn-get-started,
  .hero .btn-watch-video {font-size: 14px;}	
  .header .logo img {max-height:60px; margin-right: 6px;}
  .carousel-inner { margin-top: 109px;}	
  .footer .copyright { text-align: center!important;}	
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer { background-color: #50676f;  padding:30px 0;  color: rgba(255, 255, 255, 1);}
.footer .icon { margin-right: 15px; font-size: 24px; line-height: 0;}
.footer h4 { font-size:25px;  line-height: 40px;  position: relative; color: #fff; margin-right: 20px;}
.footer h4:after { background-color: #cd7074; content: ""; position: relative; height: 20px; width: 1px; margin-left: 20px; display: inline-block;}
.footer .footer-links { margin-bottom:0px;}
.footer .footer-links ul { list-style: none; padding: 0; margin: 0;	display: inline-block;margin-left: 20px;}
.footer .footer-links ul li { padding: 10px 10px; display: inline-block; align-items: center;}
.footer .footer-links ul li:first-child { padding-top: 0;}
.footer .footer-links ul a {color: rgba(255, 255, 255,1); transition: 0.3s; display: inline-block; line-height: 1;}
.footer .footer-links ul a:hover { color: #fff; color: rgba(255, 255, 255, 0.6);}
.footer .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size:25px; color: rgba(255, 255, 255, 1); margin-right: 10px; transition: 0.3s;}
.footer .social-links a:hover { color: #fff; border-color: #fff; color: rgba(255, 255, 255, 0.7);}
.footer .copyright { text-align: left;}
.footer .credits { padding-top: 4px; text-align: center; font-size: 13px;}
.footer .links a { color: #fff!important;}
.link-more{position:relative;}
.link-more:after{content: url('../images/icon/arrow-link.png'); position: absolute; right:-40px; top: 3px; }


/* RESPONSIVE CSS */
@media (max-width: 767px) {
.hero-section { margin-top:0px;}
.hero-bg:before {content:"";display: none;}	
.hero-icon { margin: 0.5rem 1rem;}	
}

@media screen and (min-width: 1600px) {
.hero-section .container-fluid{padding-left: 5rem; padding-right: 5rem;}	
}

.line {
  font-size: 20px;
  font-weight: 600;
  background: -webkit-linear-gradient(45deg, #910b02, #eb6320,azure 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0;
}