:root {
  --color:#02AB50;
}
.sticky-header {
    position: fixed; /* Sayfanın üst kısmına sabitle */
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}
/* mobil alt bar*/
@media only screen and (min-width: 800px) {
  #mobilbar{
    display: none!important;
  }
}
@media only screen and (max-width: 800px) {
  footer{
    margin-bottom:50px;
  }
}

#mobilbar{
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  z-index: 999999;
  max-height: 50px;
}
#mobilbar ul{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
}
#mobilbar ul li a{
  padding: 5px;
  color:black;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#mobilbar ul li.active{
  border-top: 3px solid var(--color);
}
#mobilbar ul li.active a{
  color:var(--color)!important;
}
#mobilbar ul li a span{
font-size: 10px;
}
