.menu{
  width: 100vw;
  height: 6vw;
}

 /* menu */

.mobile-menu{
  display: none;
}
 
    .navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
 -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #ffffffb3;
  z-index: 1000;
  padding-left: 15vw; 
  padding-top: 1.5vw;
  padding-bottom: 1.5vw;
}

.logo {
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.2;
  width: 30%;
}

.logo img{
  width: 5vw;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  width: 70%;
  justify-content:flex-end;
    padding-right: 16vw;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 1vw;
  font-weight: 300;
  transition: color 0.3s;
  margin-right: 1.9vw;
}

.nav-links a:hover {
  color: black;
}

.apply-btn {
     background-color: #122E37;
    color: #fff !important;
   font-weight: 600 !important;
    /* border-radius: 2px; */
    width: 6vw;
    height: 3vw;

     display: inline-flex; 
    justify-content: center;
    align-items: center;
    margin-right: 0vw !important;
}





/* Mobile Menü */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 20vw;
  background-color: #ffff;
}

.menu-toggle {
      width: 10vw;
    height: 6vw;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 6.6vw;
    right: 5vw;
    z-index: 1001;
    margin-right: 9vw;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu.active .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-content {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: top 0.4s ease;
  z-index: 999;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top:10vw;
}

.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
}

.menu-content li {
  margin-bottom: 20px;
}

.menu-content a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
}

.mobile-menu.active .menu-content {
  top: 0;
}

@media only screen and (max-width: 768px) {

  .mobile-menu{
  display: flex;
}
  .nav-links{
  display: none;
}

 .navbar{
  position: fixed;
 background-color: #ffffff00 !important;
 backdrop-filter:unset !important;
 left: 0;
 width: 45%;
 padding-left: 2vw;
 }

 .logo img{
  width: 15vw;
    padding: 3vw;
    height: auto;
 }

 .header{
  margin-top: 25vw;
 }

 .menu-toggle span{
      height: 0.5vw;
      border-radius: 99vw;
 }

 .menu-toggle{
      width: 6vw !important;
    height: 5vw !important;
        border-radius: 99vw;
 }

 .menu-content a{
      font-size: 3.5vw;
 }

 .menu-content ul{
  margin-right: 16vw;
 }
}