.header {
    background-color: var(--default_orange_color);
    color: white;
    width: 100%;
    height: 90px;
    text-align: center;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  .header_content{
    padding-left: 3%;
    position: relative;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-weight: 500;
  }

  .navbar {
    position: relative;
    display: flex;
    justify-content: center;
    vertical-align: center;
    display: none;
    z-index: 1;
  }

  .sliding-background {
    position: absolute;
    height: 120%; /* Adjust as needed */
    width: 0; /* Initial width */
    transform: translateY(-10%);
    background-color: var(--default_header_purple);; /* Background color */
    transition: left 0.3s ease, width 0.3s ease; /* Smooth transition for left position and width */
    z-index: 0;
    left: 0;
    border-radius: 10px;
}

  .logo_image_header {
    height: 70%;
  }

  .navbar a {
    position: relative;
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    margin: 0 10px;
    z-index: 2;
  }

  .navbar a:hover{
    background-color: var(--default_header_purple);
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
  }

  .active-header-link {
    background-color: var(--default_header_purple); /* or any color you prefer */
    border-radius: 10px;
    /* other styles for active state */
}

  .navbar_selected_item {
    background-color: var(--default_header_purple);
    border-radius: 10px;
    
  }

  .header_social_media {
    display: flex;
    flex-direction: row;
    vertical-align: center;
  }

  .header_social_media img {
    display: none;
    padding: 0 5px;
    width: 40px;
    cursor: pointer;
  }


  /*Mobile menu*/
.mobile-menu{height: 100vh; width: 100%; z-index: 995; position: fixed; background: white; opacity: .95; right: -100%; transition: .2s;}

.active{right: 0%;}

.main_mobile_ul{ position: relative; color: black; margin-top: 100px; font-size: 26px; text-align: left;}

.main_mobile_ul a{color: var(--default_orange_color); text-decoration: none; font-weight: bold;}

.main_mobile_ul li{padding: 20px 0; cursor: pointer; list-style: none;}

.mobile_nav_dropdown {
    padding-left: 20px;
    display: none;
}

.hamburguer-bt {
  display: block;
  position: absolute;
  z-index: 999;
  cursor: pointer;
  height: 50px;
  right: 3%;
  top: 30px;
  width: 50px;
  transition: all .2s ease-out;
}

.hamburguer-bt:focus{
  outline: none;
}

.hamburguer-bt .hamburguer-bt__stripe {
  width: 100%;
  height: 10px;
  background: white;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 5px;
}

.hamburguer-bt__stripe:focus{
  outline:none;
}

.hamburguer-bt.on .hamburguer-bt__stripe__top {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburguer-bt.on .hamburguer-bt__stripe__middle {
  opacity: 0;
}

.hamburguer-bt.on .hamburguer-bt__stripe__bottom {
  transform: rotate(-45deg) translate(10px, -10px);
}

.header_social_media_mobile {
  position: absolute;
  bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.header_social_media_mobile img {
  width: 40px;
  height: 40px;
}



@media (min-width: 800px) {

  .header_content{
    padding-left: 0px;
    justify-content: space-around;
  }

  .navbar {
    display: block;
  }


  .header_social_media img {
    display: block;
  }

/*Menu mobile*/
.hamburguer-bt{display: none;}
}
