.container_nav {
    width: 100%;
    margin: 0;
}

.navbar {
    width: 100%;
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.navbar .nav-container li {
    list-style: none;
}

.navbar .nav-container a {
    text-decoration: none;
    color: #ff6a1f;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
}

.nav-container .checkbox {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    height: 32px;
    width: 32px;
    z-index: 10006;
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.nav-container .hamburger-lines {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10005;
    display: block;
    height: 26px;
    width: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-container .hamburger-lines .line {
    display: block;
    z-index: 10002;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #ff6a1f;
}

.nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

.menu-items li {
    position: static;
    z-index: 10000;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    list-style: none;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
}

.menu-items li a:hover{
    color: #f4f4f4 !important;
}

.menu-items li a{
    color: #f6f6f6 !important;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-align: center;
    font-size: 1.5rem;
}

.menu-items.show {
    transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
    opacity: 0;
}

.tg_support {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10011;
}
.support-icon {
  width: 50px;
  height: 50px;
}

.menu-items {
    top: 0;
    left: 0;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.51);
    backdrop-filter: blur(10px); 
    height: 100%;
    width: 100vw;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    padding-top: 75px;
}

@media (max-width: 600px) {
  .navbar .nav-container a {
    font-size: 1rem;
    padding: 0.5rem;
  }
  .nav-container .checkbox {
    width: 24px;
    height: 24px;
  }
  .nav-container .hamburger-lines {
    width: 24px;
    height: 20px;
    left: -1rem;
  }
  .nav-container .hamburger-lines .line {
    height: 3px;
  }
  .logo {
    font-size: 1.2rem;
  }
  .menu-items {
    padding-top: 25px;
  }
}

@media (max-width: 350px) {
  .navbar .nav-container a {
    font-size: 0.85rem;
    padding: 0.3rem;
  }
  .logo {
    font-size: 0.9rem;
    max-width: 80vw;
    white-space: normal;
  }
  .nav-container .hamburger-lines {
    width: 18px;
    height: 16px;
    left: -0.8rem;
  }
  .nav-container .checkbox {
    width: 18px;
    height: 18px;
  }
  .menu-items {
    padding-top: 10px;
  }
}