 /* Start logo top header area*/
.gift-top-bar-wrapper {
  background-color: #280202;
  padding: 10px 15px;
  /* border-bottom: 1px solid #000; */
}

.gift-top-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.gift-top-text-bar {
	padding-top: 3px;
	color: #fff;
}
.launch-text {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-right: 20px;
  line-height: 1;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.gift-top-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gift-top-bar a {
  display: block;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
/*pointer-events: none; */
}

.gift-top-bar img {
  width: auto;
  height: 30px;
  vertical-align: middle;
}

.gift-top-bar a:first-child {height:25px;}


@media (max-width: 768px) {
  .gift-top-bar-container {
    flex-direction: column;
    align-items: center;
  }
  .launch-text {
    margin: 0 0 10px 0;
    font-size: 16px;
    text-align: center;
  }
  .gift-top-bar a:first-child {
	  height:27px;}
  .gift-top-bar img {
    width: auto;
  }
  .gift-top-text-bar {
	display:none;
}
}
 /* End logo top header area*/
 
 /*header menu area */
/* Navbar */
.navbarin {
  border-top: 1px solid #ccc;
  background: #fff;
  position: relative;
  z-index: 1000;
}
.nav-containerin {
  max-width: 100%;
  padding: 20px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-menuin {
  display: flex;
  gap: 25px;
  list-style: none;
  margin-bottom: 0px !important;
}

.nav-menuin li a {
  font-size: 18px;
  font-weight: 500;
  padding-top: 10px;
  color: #000;
}
.logoin {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logoin img {
  height: 55px;
}

.quote-btnin a {
  background: #540101;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.quote-btnin a:hover {
  background: #2e070a;
  color: #fff;
}

/* Mobile Toggle Button */
.mobile-menu-togglein {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.mobile-menu-togglein span {
  width: 22px;
  height: 2px;
  background: #000;
}

/* Slide menu */
.mobile-slide-menuin {
  position: fixed;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100vh;
  background: #fff;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 2000;
}
.mobile-slide-menuin ul {
  list-style: none;
  padding-top: 40px;
}
.mobile-slide-menuin ul li {
  margin-bottom: 20px;
}
.mobile-slide-menuin ul li a {
  font-size: 18px;
  font-weight: 500;
}
.close-btnin {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: none;
  z-index: 1500;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menuin {
    display: none;
  }

  .mobile-menu-togglein {
    display: flex;
  }

  .quote-btnin {
    position: absolute;
    right: 8%;
  }
  .quote-btnin a {
    background: #540101;
    color: #fff;
    margin-right: -11px;
    padding: 8px 11px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
}

   .nav-containerin {
    max-width: 100%;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

  .logoin {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
  }

  .mobile-slide-menu.open {
    left: 0;
  }

  .overlay.active {
    display: block;
  }
  
}

/* Optional CSS to Make Slide Work */
  .mobile-slide-menuin {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: white;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .mobile-slide-menuin.open {
    left: 0;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }

  .overlay.active {
    display: block;
  }

  .close-btnin {
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
  }
 /*end header menu area */
 