#header-container {
  position:sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

#header-container.hidden {
  transform: translateY(-110%);
}

#header-container.visible {
  transform: translateY(0);
}
header{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:'Inter';
  z-index: 1000;
  background: rgb(255, 255, 255);
  width: 100%;
  padding: 10px 20px 10px 20px;
}
.list{
  display: none;
}
.offcanvas{
  height: 800px;
  background: rgba(0, 0, 0, 0.766) !important; 
  backdrop-filter: blur(10px) !important; 
}
.offcanvas.offcanvas-end {
  transform: none !important;
}
a{
  color: inherit;
  text-decoration: none;
}
.logo img{
  transform: scale(1);
}
.logo{

  display: flex;
}

.navigation-bar{
  display: flex;
  width: 90%;
  list-style-type: none;
  justify-content: space-evenly;
  text-transform: uppercase;
  height: 25px;
  margin-top:20px;
}
.navigation-items{
  position: relative;
  color:#000000;
  text-decoration: none;
}
.navigation-items::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #68afe2;
  transition: width 0.5s ease;
}

.navigation-items:hover::after{
  width: 100%;
}
.navigation-items[aria-current="page"]::after {
  width: 100%;
  transition: none;
}
.support{
  text-transform: uppercase;
  width: 135px;
  height: 45px;
  background-color:#68afe2;
  color:white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: 0.5s ease;
}
.support:hover{
  background-color: white;
  border:2px solid #68afe2;
  color:black;
}
.nav-item{
  width:fit-content !important;
}

.nav-link {
  text-decoration: none;
}
.nav-link.active {
  border-bottom: 2px solid #000;
}
@media (max-width: 1060px) {
  header{
    justify-content: space-between;
  }
  .navigation-bar,.support{
    display: none;
  }
  .list{
    display: flex;
  }
  .list svg{
    transform: scale(2.5);
  }
  .navbar-nav ,.nav-item{
    position: relative;
    text-decoration: none;
  }
  .navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #68afe2;
    transition: width 0.5s ease;
  }
  .navbar-nav .nav-item:hover::after{
    width: 100%;
  }
  .nav-item-support{
    height: 35px;
    width: 50%;
    background-color: #68afe2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    color:white;
    transition: 0.3s ease;
  }
  .nav-item-support:hover{
    background-color: white;
    border:2px solid #68afe2;
    color:black;
    
  }
}
