 /* header START*/
 #header {
    height: auto;
    /*width: 100%;*/
    padding: 10px 0 0 0;
}

.sticky-top {
    background: var(--primary-bg);
    transition: all 0.3s ease;
}
.sticky-header {
    padding-top: 15px !important;
    height: 80px;
    opacity: 0.97;
}
.sticky-header .logo img, .sticky-header .logo svg{
    width: 100px; 
    transition: width 0.5s ease;
}
.sticky-header .event_btn {
    font-size: 14px;
}
.sticky-header .sections-nav .nav-bar {
  /*height: 10px !important;*/
  min-height: 35px;
  transition: min-height 0.5s ease;
}
.sticky-header .nav-item{
  margin:0;
}

.sections-nav h5 {
  padding: 0px !important;
  margin: 0px !important;
}
.row.head {
    justify-content: space-between;
    align-items: center;
}
.logo img, .logo svg  {
    max-width: 125px;
    height: auto;
}       
@media only screen and (max-width: 768px) {
    .logo img,  .logo svg  {
        max-width: 100%;
        height: auto;
    }
}
@media only screen and (max-width: 767px) {
    .logo, .menu-container.mb-5 {
        margin-bottom: 20px !important;
    }
}
.device-mobile .logo img, .device-mobile .logo svg {
  max-width: 100px !important;
}



/*.isMobile .logo img, .isMobile .logo svg {
  max-width: 80px !important;
  border: 1px solid red;
}*/

/* MENU start */
/*
@media (min-width: 993px) {
    .navbar-expand-md .navbar-toggler {
        display: none !important;
    }

}
@media (max-width: 992px) {
    #hamburgerBtn {
        display: block !important;
    }
    .navbar-expand-md .navbar-toggler {
        display: block !important;
    }
    .collapse:not(.show) {
        display: none !important
    }
    .menu-mobile.active {
        margin-top: -25px;
    }
   
    .navbar-nav li {
        margin: 0 5px;
        font-size: 14px;
        border-bottom: 1px solid #fff;
        padding:7px 0;
    }

}

.nav-item .nav-link{
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.navbar-toggler-icon {
    width: 2em;
    height: 2em;
}
.navbar-toggler {
    border-color: #fff;
}
.navbar-nav {
    margin-right: 30px;
}
.menu-mobile .navbar-nav {
    margin:0 auto;
}

.navbar-nav li:last-child {
    border: none;
}

.menu-mobile {
    max-height: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow: hidden; 
    transition: max-height 0.5s ease-in-out; 
    opacity: 0; 
    visibility: hidden;
}

.menu-mobile.active {
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
    background-color: #00AAFF;
}
#hamburgerBtn {
    margin-left: 10px;
    display: none;
}
#hamburgerBtn span {
    color: #00AAFF;
}
#hamburgerBtn span svg path{
    stroke: #00AAFF !important;
}
@media (max-width: 992px) {
    .menu-mobile.active {
        margin-top: 10px;
        position: relative;
        z-index: 999999999999;
    }
}
*/
header ul {
    margin-bottom: 0;
}
header li {
    list-style: none;
    color: #fff;
  }
  
/*  a {
    color: #fff;
    text-decoration: none;
  }*/  
  .nav-bar {
    min-height: 4.375em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }  
  .nav-branding {
    font-size: 2rem;
    font-weight: 600;
    transition: color 500ms ease;
  }  
  .nav-branding:hover, .nav-branding:focus {
    color: #fdc500 !important;
  }  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.375em;
    flex-direction: column;
    /*background-color: rgba(38, 38, 38, 0.85);*/
    width: 100%;
    height: 100%;
    text-align: center;
    transition: 750ms;
    padding-left: 0;
  }  
  .device-mobile .nav-menu {
    margin-top: 0px;
    top:0;
    top: 100px;
    top: 65px;
  }
  .nav-menu.active {
    left: 0;
    background-color: rgba(38, 38, 38, 0.85);
    /*height: auto;*/
  }  
  .nav-item {
    margin: 1em 0;
    padding: 0px 10px;
  }  
  .nav-link {
    transition: 400ms ease;
  }
  .device-mobile .nav-link, 
  .isMobile .nav-link {
    font-size: 25px;
  }
  @media (max-width: 767px) {
    .nav-link {
      font-size: 25px;
    }
  }
 /* .nav-link:hover .nav-item {
    color: #fdc500 !important;
    background-color: #444;
  }*/
  .nav-item:hover {    
    background-color: #DEE2E6;
  }  
  .hamburger {
    cursor: pointer;
  }  
  .bar {
    display: block;
    background-color: #fff;
    background-color: #000;
    width: 24px;
    /* The following 2 properties are essential in creating the "X" when the hamburger is clicked. If you change just 1 of the 2, then you need to find the proper combination for the other one */
    height: 2px;
    margin: 6px auto;
    /*  -webkit-transition: all 300ms ease;  */
    transition: all 300ms ease-in-out;
  }  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0
  }  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }  
  @media (min-width: 768px) {
    .nav-menu {
      position: static;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 1em;
      width: auto;
    }  
    .hamburger {
      display: none;
    }
  }

/* MENU end */
.isMobile #header {
  padding: 10px 0;
}
.isMobile .sections-nav {
  /*visibility: hidden;*/
  height: 0;
}
.isMobile .sections-nav .row-title {
  display: none;
}
.isMobile header .separator {
  height: 0 !important;
}
.isMobile.logo, .menu-container.mb-5 {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 10px 0;
  }
  .sections-nav {
    /*visibility: hidden;*/
    height: 0;
  }
  .sections-nav .row-title {
    display: none;
  }
  header .separator {
    height: 0 !important;
  }
  .logo, .menu-container.mb-5 {
    margin-bottom: 0 !important;
    }
}
/* header END*/