/* VARIABLES */

:root {
    --navbar-height: 120px;
    --navbar-breakpoint: 1024px;
}


/* NAVBAR */

.flx-grid {display: flex;justify-content: space-between;align-items: center;}
.flx-menu {display: flex;align-items: center;}
.flx-menu-ul {display: flex;margin-bottom:0}
.flx-menu-ul .flx-menu-li {display:flex;margin-bottom: 0;}
.flx-menu-ul .flx-menu-li a {padding: 15px 20px;}
.menu-item-has-children.flx-menu-li {position: relative;}
.menu-item-has-children.flx-menu-li:hover ul.sub-menu {display: block;}
.menu-item-has-children.flx-menu-li > ul.sub-menu {
    display: none;
    position: absolute;
    top: 52px;
    left: -3px;
    margin: 0;
    z-index: 99999;
    min-width: 220px;
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  }
.menu-item-has-children.flx-menu-li:hover ul.sub-menu {display: block;}
.dropdown-menu {margin:0;}


@media (min-width: 768px) {
#menuToggle {display: none;}
}





/* NAVBAR BREAKPOINT MEDIAQUERY */


@media (max-width: 767px) { 

 
   
}





/* MOBILE NAVBAR ANIMATION */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-row {
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.hamburger path {
    fill: #fff;
    stroke: #fff;
}

.fullpage-menu {
    position: fixed;
    left: 0; top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: none;
}

.fullpage-menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 100px 60px;
}

.fullpage-menu-inner li {
    overflow: hidden;
    line-height: 1;
    text-align: center;
    position: relative;
  }

  .fullpage-menu-inner li + li {
    margin-top: 30px;
  }

  .fullpage-menu-inner nav li a {
    font-size: 3rem;
    color: transparent;
    display: inline-block;
    color: white;
    padding: 20px 0;
    width: 100%;
  }


.menu-bg {
    height: 0;
    width: 100%;
    position: absolute;
    left: 0; top: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(15px);
    /* opacity: 0; */
}

