<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main Menu
-----------------------------------------------*/



.menu .item a {
  color: inherit;
  text-decoration: none;
}

.menu .item a:hover {
  text-decoration: none;
}

.menu .logo a {
  color: inherit;
  text-decoration: none;
  margin-left: 32px;
}

.underline{
  height: 50px;
  width: 50px;
  background-color: #fff;
  position: absolute;
  margin-top: -54px;
  border-radius: 4px;
  opacity: 0.1;
  pointer-events: none;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.menu .logo a:hover {
  text-decoration: none;
}

.menu .logo:before{
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../img/logo.svg) no-repeat center center;
}

.menu{
  height: 70px ;
  text-align: right ;
  position: fixed ;
  width: 100%;
  z-index: 1000 ;
  /* fix flicker */ 
  -webkit-transform: translateZ(0);
  -moz-transform: rotate(0);
  /*background-color: rgba(30,35,40,0.01);*/
    
  -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


.menu .menuBox{
  text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    height: 28px ;
    margin-top:38px ;
    opacity: 1;
    position: relative;
    -webkit-backface-visibility: hidden;
}

/*
*   Responsive Menu
*/
.menu .menuBox .burger{
    width: 40px;
    height: 40px;
    position: absolute;
    background: url(../img/burger.svg) no-repeat center center;
    right: 0px;
    top: 0px;
}

@media (min-width: 992px) {
    .menu .menuBox .burger{
        display: none;
    }
}

.mobilemenu{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    
    z-index: 1000;
    background: #008db1;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 100px;
    transition: all 0.3s ease-out 0s;
    height: 0px;
    opacity: 0;
    pointer-events: none;
}

.mobilemenu.show{
    display: block;
    height: 120vh;
    opacity: 1;
    pointer-events: all;

}

.mobilemenu .close{
    width: 40px;
    height: 40px;
    position: absolute;
    background: url(../img/close.svg) no-repeat center center;
    right: 30px;
    top: 18px;
}

.mobilemenu .mobileitem{
    margin: 40px;
    text-align: center;
}

.mobilemenu a{
    color: white;
    opacity: 0.7;
}

.mobilemenu a:hover{
    opacity: 1;
}


/*
*   End Responsive Menu
*/

.menu .stretch{
  width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0
}

.menu .item{
  font-size: 16px ;
    font-weight: bold;
  /*letter-spacing: 0.15em;*/
  color: #ffffff ;
  /*text-transform: uppercase;*/
  line-height: 24px;
  font-weight: 700 ;
  vertical-align: top;
  display: inline-block;
}

.menu .logo{
     font-weight: bold;
  font-size: 16px ;
  color: #ffffff ;
  line-height: 24px;
  font-weight: 700 ;
    vertical-align: top;
    display: inline-block;
}

.menu .item:hover{
  color: #ffffff ;
    cursor: pointer;
}

.menu .itemtransition{
  opacity: 0;
}

.menu .item.passive{
  color: rgba(0,0,0,0.5) ;
}</pre></body></html>