/*topbar css*/



.lang select {
   border: none;
   background-color: transparent;
   color: #fff;
   cursor: pointer;
   font-size: 0.9rem;
}

.lang select:hover {
   background-color: #1b1b1b;
   box-shadow: none;
   outline: none;
}


.top-bar {
   border-bottom: 1px solid rgba(255, 255, 255, 0.4);
   background-color: #1b1b1b;
   height: 45px;

}

.call-to-action {
   color: #fff;
}

.call-to-action p {
   display: inline-block;
   margin-right: 15px;
   margin-bottom: 0px;
   margin-top: 8px;
   font-size: 0.85rem;
}

.call-to-action p a {
   color: white;
   font-size: 1rem;
}

.call-to-action i {
   margin-right: 10px;
}

.book-table-popup {
   float: right;
   margin-top: 10px;
}

.book-table-popup a {
   background: transparent;
   color: #fff;
   font-weight: 700;
   font-size: 0.85rem;
}

.lang {
   float: right;
   margin-top: 5px;
   box-shadow: none;
   outline: none;
}

.lang select option {
   padding: 10px !important;
}

.lang select {
   box-shadow: none;
   border: none;
}
.lang select:focus{
   box-shadow: none;
   border: none;
}

.lang ul {
   list-style: outside none none;
   margin: 0;
   padding: 0;
   text-align: right;
}

.lang ul li {
   display: inline;
}

.lang ul li a {
   color: #fff;
   display: inline-block;
   font-size: 14px;
   height: 39px;
   margin: 0 -2.5px;
   padding: 6px;
   text-align: center;
   width: 40px;
}

@media only screen and (max-width: 767px) {
   .call-to-action {
      display: none;
   }

   .book-table-popup a {
      padding: 15px 10px;
   }

   .lang {
      float: left;
   }

   .lang ul li a {
      width: 33px;
   }
}




/*navigation css*/
.navigation {
   background: #1b1b1b;
   position: fixed;
   width: 100%;
   z-index: 10;
}

.brand {
   position: absolute;
   float: left;
   margin: auto !important;
   width: 250px;
   padding: 3px 10px !important;
}


.brand img {
   width: 100%;
   object-fit: cover;
}
.nav-list a{color: white !important;}
.nav-list a.active{
   background: #c19d5f;
   color: #ffffff;
}

.nav-container {
   max-width: 1200px;
   margin: 0 auto;
}

nav {
   float: right;
}

nav ul {
   list-style: none;
   margin: 0;
   padding: 0;
}

nav ul li {
   float: left;
   position: relative;
}

nav ul li a,
nav ul li a:visited {
   display: block;
   padding: 0 20px;
   line-height: 70px;
   background: #1b1b1b;
   color: #ffffff;
   text-decoration: none;
   font-size: 1.05rem !important;
   font-weight: 400;
}

nav ul li a:hover,
nav ul li a:visited:hover {
   background: #c19d5f;
   color: #ffffff;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
   padding-left: 4px;
   content: ' ▾';
}

nav ul li ul li {
   min-width: 190px;
}

nav ul li ul li a {
   padding: 15px;
   line-height: 20px;
}

.nav-dropdown {
   position: absolute;
   display: none;
   z-index: 1;
   box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
   display: none;
   position: absolute;
   top: 0;
   right: 0;
   background: #262626;
   height: 70px;
   width: 70px;
}

@media only screen and (max-width: 798px) {
   .nav-mobile {
      display: block;
   }

   nav {
      width: 100%;
      padding: 55px 0 15px;
   }

   nav ul {
      display: none;
   }

   nav ul li {
      float: none;
   }

   nav ul li a {
      padding: 15px;
      line-height: 20px;
   }

   nav ul li ul li a {
      padding-left: 30px;
   }

   .nav-dropdown {
      position: static;
   }
}

@media screen and (min-width: 799px) {
   .nav-list {
      display: block !important;
   }
}

#nav-toggle {
   position: absolute;
   left: 18px;
   top: 22px;
   cursor: pointer;
   padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
   cursor: pointer;
   border-radius: 1px;
   height: 2px;
   width: 28px;
   background: #ffffff;
   position: absolute;
   display: block;
   content: '';
   transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
   top: -10px;
}

#nav-toggle span:after {
   bottom: -10px;
}

#nav-toggle.active span {
   background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
   top: 0;
}

#nav-toggle.active span:before {
   transform: rotate(45deg);
}

#nav-toggle.active span:after {
   transform: rotate(-45deg);
}