*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;   
 }
 li{list-style-type: none;}
 a{text-decoration: none;}
 @font-face {
  font-family: 'opensans';
  src:url('../fonts/OpenSans-VariableFont_wdth,wght.ttf');
}
@font-face {
  font-family: 'oswald';
  src:url('../fonts/Oswald-VariableFont_wght.ttf');
}

@font-face {
	font-family: 'BenchNine-Bold';
	src: url('../fonts/BenchNine-Bold.ttf');
}

@font-face {
	font-family: 'BenchNine-Regular';
	src: url('../fonts/BenchNine-Regular.ttf');
}
ul{margin: 0; padding: 0;}
/*header css*/

/*.top-section{ */
/*    background: url(../images/banner.png) center/cover no-repeat; width: 100%; padding: 50px 0 13% 0;*/
/*    height: 80vh;*/
/*    width: 100%;*/
/*    position: relative;*/
/*}*/
/*.hero{*/
/*    height: 80vh;*/
/*}*/
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 28px 0;
}
.hero .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.hero .overlay.active {
  opacity: 1;
  visibility: visible;
}
.for-order {
  width: 100%;
}

.ordr-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.toggle {
  display: none;
  cursor: pointer;
}

.toggle-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: white;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.menu li{
    margin-right: 46px;
} 
.menu li:last-child{
    margin-right: 0;
} 
.nav-left, .nav-right {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-left li a,
.nav-right li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  position: relative;
  font-family: 'opensans';
  text-transform: uppercase;
}


.nav-left li a::after,
.nav-right li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: #00ffc8;
  transition: all .3s ease-in-out;
}
.nav-left li a::before,
.nav-right li a::before  {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

.nav-right li:nth-child(2) a::before ,
.nav-right li:nth-child(2) a::after ,
.nav-right li:nth-child(3) a::after ,
.nav-right li:nth-child(3) a::before{
    display: none;
}


.nav-left li a:hover::after,
.nav-right li a:hover::after  {
  width: 75%;
}
.nav-left li a:hover::before,
.nav-right li a:hover::before {
    width: 20%;
}

.nav-left li.current-menu-item a::after,
.nav-right li.current-menu-item a::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: #00ffc8;
}
.nav-left li.current-menu-item a::before,
.nav-right li.current-menu-item a::before {
    content: '';
    position: absolute;
    width: 20%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
}

.nav-logo img {
  height: 50px;
}

.book-btn {
  background-color: #00C5AA;
  color: black;
  padding: 8px 17px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
  font-family: 'opensans';
}

.book-btn:hover {
  background-color: #00d6aa;
}


@media (max-width: 992px) {
  .nav-logo {
    display: flex !important;
    order: -1 !important;
}
.nav-right{
  margin-top: 20px;
}
  .toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 75%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease-in-out;
    z-index: 9999;
  }

  .menu.open {
    left: 0;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav-logo {
    margin: 20px 0;
  }

  .menu li {
    margin: 10px 0;
  }
  .navbar{
    padding: 0;
  }
}
@media (max-width: 768px) {
  .nav-logo img {
    height: 30px;
  }
}
