/* 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; /* soft black */
  --color-primary: #ce1212; /* red */
  --color-secondary: #37373f; /* grey */  
}


/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
body {
	margin: 0;
	overflow-x: hidden;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
a {
 /* color:#ce1212; */
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 20px 0; /* distance from top */
}

.section-bg {
  background-color: transparent;  
 height:auto !important;
 padding-left:auto;
 padding-right:auto; 
}
.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: Verdana, Geneva, sans-serif;
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: Verdana, Geneva, sans-serif;
}

.section-header p span {
	/*
  color: #ce1212;*/
}


/*--------------------------------------------------------------
# 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;
  height: 90px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: Inter, sans-serif;
}

.header .logo h1 span {
  color: #ce1212;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: #ce1212;
  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(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------------------------------------------------------
# Desktop Navigation
----------------------------------------------------------------------------------------------------------------*/

@media (min-width: 1024px) {
  .navbar {
    padding: 0;
	margin-right:50px;
  }

  .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 28px; 
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: Inter, sans-serif;
    font-size: 14px; /* font size menu */
    font-weight: 600;
    color: #7f7f90;
    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: #ce1212;
    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: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 12px; /* drop menu font size - sem hamburger */
    text-transform: none;
    font-weight: 600;
  }

  .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: #ce1212;
  }

  .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: 1024px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1024px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 800px) {
  .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: Inter, sans-serif;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 14px; 
    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: #ce1212;
  }

  .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: #37373f;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: #37373f;
    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;
  }
}

/*
@media (max-width: 1279px) {
	*/
	
	@media (max-width: 1023px) {
  .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: Inter, sans-serif;
    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: #ce1212;
  }

  .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: #37373f;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: #37373f;
    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: 5px 30px;
  transition: 0.5s;
  color: #37373f !important; /* dark blue */
  border-radius: 10%;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #37517E; /* inactive link border bottom blue*/
/*  border-bottom: 2px solid #b6b6bf; */ /* inactive link border bottom gray*/

}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 5px 10px;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: Inter, sans-serif;  
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: #ce1212 !important;
}


.menu .nav-link.active {  
  border-color: #37517E;  
  color:#121462 !important;
  background-image:url(../img/menu.png) 
/*  background-color: #ffcc00; gray background-color buttons fairs */      
/*  text-shadow: 1px 1px 2px #000; */ /* with blur */
/*  text-shadow: 1px 1px #000; */ /* without blur */
}


/* title fairs */
.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775; /* dark */
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
/*  font-size: 36px; */ /* too big */
  font-size: 24px;
 /* font-weight: 600; */
  color: #37517E !important;
}

/* end title fairs */


.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img { /* images spacing */
  padding: 20px 60px;
  margin-bottom: 15px;
}


.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  font-family: Inter, sans-serif;
  font-weight: 30px;
  margin-bottom: 5px;
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination { /* dots */
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7; /* gray dot */
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #121462; /* blue dot */
}

.gallery .swiper-slide-active {
  text-align: center;
  transform: scale(0.94)!important; /* active slide */
  filter: drop-shadow(3px 3px 5px black);
}
@media (min-width: 1024px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: none;
    padding: 4px;	
    background: #fff;
    z-index: 1;
    transform: scale(2.2);
	filter: drop-shadow(3px 3px 5px black);
  }
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: none;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.1);
	filter: drop-shadow(3px 3px 5px black);
  }
}
@media (min-width: 450px) {
  .gallery .swiper-wrapper {
    padding: 5px 0;
  }

  .gallery .swiper-slide-active {
    border: none;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.0);
	filter: drop-shadow(3px 3px 5px black);
  }
}
@media (min-width: 400px) {
  .gallery .swiper-wrapper {
    padding: 5px 0;
  }

  .gallery .swiper-slide-active {
    border: none;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(0.8);
	filter: drop-shadow(3px 3px 5px black);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*
#subheader {
	line-height: 1.3;
	color: #6f6f6f;
	font-weight: 300;
	margin-bottom: 17px;
}
*/
.hero {
 /* width: 100%;  */
  background-size: cover;
  background-color:#121462; 
  position: relative;
 min-height: 8vh;
   padding: 10px 0 10px 0; 
}

.hero h2 {
  font-size: 30px;
  font-weight: 200;  
  color: #ffcc00;
  background-color:#121462; 
  font-family: Georgia, "Times New Roman", Times, serif; 
}

.hero h2 span {
	/*
  color: #ce1212;
  */
}

.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: #ce1212;
  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: Inter, sans-serif;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: #ce1212;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #ce1212;
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 20px;
  } 
}



/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/

.chefs .chef-member {	
  overflow: hidden;
  text-align: center;
 /* border-radius: 5px; */
  background: none;
 /* box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08); */
  transition: 0.3s;
 /* background-color:transparent !important; */
}

.chefs .chef-member .member-img {
	padding-left:auto;
	padding-right:auto;
  position: relative; 
  overflow: hidden; 
}

.chefs .chef-member .member-img:after {	
  position: absolute;
  content: "";
  left: 0; 
  bottom: 0;
  height: 100%;
  width: 100%;
 /* background: url(../img/feiras/artexpo/2010/2010.png) no-repeat center bottom; */
  background-size: contain; 
  z-index: 1;
}

/*
.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}
*/

.chefs .chef-member .member-info {	
  
}
.member-info {
	background-color:none !important; 
	padding: 20px 50px 10px 50px; /* top-right-bottom-left */	
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  /*color: var(--color-secondary);*/
}

.chefs .chef-member .member-info h3 {
  font-weight: 700;
 /* margin-top:0px; */
 /* margin-bottom: 5px; */
  font-size: 20px;
  /*color: var(--color-secondary);*/
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 500; 
  color: rgba(33, 37, 41, 0.5);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 15px;
  padding-top: 15px;
  line-height: 26px; 
 color: #37517E; 
}

/*
.chefs .chef-member:hover {
  transform: scale(1.1);
  */
 /* box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15); */
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
 /*padding: 30px; */
  background: none;
  color: #fff;
  font-size: 16px;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px; 
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: none;
  background: #fff;
}


.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 10px 20px; 
  width: 100%;
  height: 100%;
 /* border: 1px solid rgba(55, 55, 63, 0.1); */
 border:none;
  transition: 0.3s;
}


.why-us .icon-box i {
  color: none;
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
 /* background: rgba(206, 18, 18, 0.1); 
  border-radius: 50px; */
  display: flex;
  align-items: center;
  justify-content: center;
/*  width: 64px;
  height: 64px; */
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
 /* font-family: var(--font-secondary); */
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 450px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}




/*--------------------------------------------------------------
# Artbook Section
--------------------------------------------------------------*/

.top-space {
	height: 10px;
}

#333{
	color:2px solid #333 !important;
}

