@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {

  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  
  background: #000
  
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 100px;
  z-index: 1100;
  background: #000000;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
}
.nav.sticky {
  padding: 15px 0;
  background: #000000;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
}
.nav .logo {
  font-size: 22px;
  font-weight: 500;
}

.nav .logo:hover{
  color: #D4AF37;
}

.nav .logout i{
  
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.nav .logout i:hover{
  color: #D4AF37;
}

.nav .nav-links {
  column-gap: 40px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
}

.nav .nav-links li {
  color: white;
  text-decoration: none;
  border: none;
  background: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.nav .nav-links li::before {
  margin-left: auto;
}

.nav .nav-links li::after, .nav .nav-links li::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #D4AF37;
  display: block;
  transition: 0.5s;
}

.nav .nav-links li:hover::after, .nav .nav-links li:hover::before {
  width: 100%;
}

.nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}
.nav .search-icon {
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.nav .search-icon:hover{
  color: #D4AF37;
}

.nav .search-box {
  position: absolute;
  right: 620px;
  height: 45px;
  max-width: 250px;
  width: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: #323232;
  transform: translateY(-50%);
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #fff;
  padding: 0 15px 0 45px;
}


.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
  @media screen and (max-width: 1160px) {
    .nav {
      padding: 15px 100px;
    }
    .nav .search-box {
      right: 150px;
    }
  }
  @media screen and (max-width: 950px) {
    .nav {
      padding: 15px 50px;
    }
    .nav .search-box {
      right: 100px;
      max-width: 400px;
    }
  }
  @media screen and (max-width: 768px) {
    .nav .navOpenBtn,
    .nav .navCloseBtn {
      display: block;
    }
    .nav {
      padding: 15px 20px;
    }
    .nav .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100%;
      max-width: 280px;
      width: 100%;
      padding-top: 100px;
      row-gap: 30px;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.9);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      z-index: 100;
    }
    .nav.openNav .nav-links {
      left: 0;
    }
    .nav .navOpenBtn {
      color: #ffffff;
      font-size: 20px;
      cursor: pointer;
    }
    .nav .navCloseBtn {
      position: absolute;
      top: 20px;
      left: 20px;
      color: #ffffff;
      font-size: 20px;
      cursor: pointer;
    }
    .nav .search-box {
      top: calc(100% + 10px);
      max-width: calc(100% - 20px);
      right: 50%;
      transform: translateX(50%);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
  }
  
  ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

.wrapper{
    width: 1170px;
    margin: auto;
}


.welcome-text button:hover{
    background: #e42;
    color: #ffffff;
}
img{
	height: 70px;
	width: 50px;
}

.box input{
    border: none;
    background-color: transparent;
    height: 40px;
    width: 100px;
    color: #e42;
}

.box input:hover{
    background: linear-gradient(45deg,#e42,#e42);
    color: #fff;
}
/*resposive*/

@media (max-width:600px){
    .wrapper {
width: 100%;
}
.logo {
float: none;
width: 50%;
text-align: center;
margin: auto;
}

.nav-area {
float: none;
margin-top: 0;
}
    .nav-area li a {
padding: 5px;
font-size: 11px;
}
.nav-area {
text-align: center;
}
    .welcome-text {
width: 100%;
height: auto;
margin: 30% 0;
}
    .welcome-text h1 {
font-size: 30px;
}
}


.Login-box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%,-50%);
    background: rgba(255, 255, 255, 0.02);
    box-sizing: border-box;
    
    border-radius: 10px;
}
.Login-box h2{
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}
.user-box{
    position: relative;
}

.user-box input{
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #D4AF37;
    outline: none;
    background: transparent;
}

.user-box input :focus{
    border-bottom-color: #d703f3;
}

.user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: all 0.5s;
}

.user-box input:focus ~ label,
.user-box input:valid~label{
    top: -20px;
    left: 0;
    color: #D4AF37;
    font-size: 13px;
}

.Login-box .btn {
  display: inline-block;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 1rem auto;
  padding: 0.7rem 2rem;
  border-radius: 30em;
  border-style: none;
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: transparent;
  border: 1px solid #D4AF37;
}

.Login-box .btn a{
  text-decoration: none;
  font-weight: 1000;
  color: #fff;
  padding: 10px 20px;
}

.Login-box button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #D4AF37;
  transform: translateX(-101%);
  transition: all .3s ease;
  z-index: -1;
}

.Login-box button:hover {
  color: #ffffff;
  transition: all .3s ease;
}

button:hover::before {
  transform: translateX(0);
}

.login_signup {
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    transition: all 0.5s;
}

.login_signup a{
    text-decoration: none;
    color: #D4AF37;
    letter-spacing: 1.5px;
    box-sizing: border-box;
}

.login_merchant {
    font-size: 16px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    transition: all 0.5s;
}

.login_merchant a{
    text-decoration: none;
    color: #e42;
    letter-spacing: 1.5px;
}




    



