.transparent-header .logo-light {
  display: block;
}
.menu-mobile {
    display: none;
    padding: 20px;
}
.cssmenu,
.cssmenu ul,
.cssmenu ul ul li,
.cssmenu ul ul li a,
.cssmenu .menu-button {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cssmenu:after,
.cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.cssmenu .menu-button {
  display: none;
}
.cssmenu {
  width: auto;
  line-height: 1;
}
.cssmenu > ul > li {
    position: relative
}
.cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
.cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
.cssmenu.align-center ul ul {
  text-align: left;
}
.cssmenu.align-right > ul > li {
  float: right;
}
.cssmenu.align-right ul ul {
  text-align: right;
}
.cssmenu > ul > li > a {
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
.cssmenu > ul > li.has-sub > a {
}
/*navigation*/
.cssmenu .menu{
    margin: 0;
    padding: 0;
}

.cssmenu .menu > li{ 
    padding: 0;
}
.cssmenu .menu > li > a{
  line-height: 20px;
    display: block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding-bottom: 26px;
    padding-top: 27px;
}
.cssmenu .menu  a:hover,
.cssmenu .menu  a:focus,
.cssmenu .menu  a:active{
    text-decoration: none;
}
.cssmenu .menu > .search-box > ul{
    width: 480px;   
    text-align: right;
    max-width: 480px;
    
}
.search-box .search-form{
    padding: 30px;
}
.cssmenu .menu > .search-box:hover > ul{
    left: auto;
    right: 0;
}
.cssmenu > ul > li.has-sub:hover > a::after {
 
}
.cssmenu ul ul {
  position: absolute;
  left: -9999px;
  z-index: 99999 !important;  
  text-align: left;
  border-bottom: none;
  background-color: #fff;
}
.cssmenu li:hover > ul {
  left: auto;
  -webkit-animation: fadeinUp .3s; /* Safari and Chrome */
    -moz-animation: fadeinUp .3s; /* Firefox */
    -ms-animation: fadeinUp .3s; /* Internet Explorer */
    -o-animation: fadeinUp .3s; /* Opera */
    animation: fadeinUp .3s;
}
.cssmenu.align-right li:hover > ul {
  right: 0;
}
.cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
.cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
.cssmenu ul ul li {
}
.cssmenu ul li:hover > ul > li {
  
}
.cssmenu ul ul li a {
  padding: 15px 15px;
  width: 220px;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  display: block;
  background-color: #fff;
}
.cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: calc(50% - 4px );
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #212121;
  border-right: 1px solid #212121;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #212121;
  border-left: 1px solid #212121;
}
.cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #000;
}
.menu-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  background-color: #fff;  
}

/*nav-style-dark*/
.nav-style-dark{
    background-color: #131313;
    border-top: none;
    z-index: 999;
}
.nav-style-dark .menu > li > a{
    color: #fff;    
}
.nav-style-dark .menu > li{
    margin-left: -4px;  
}
.nav-style-dark .menu > li.active > a,
.nav-style-dark .menu > li:hover > a{
    background-color: rgba(255, 255, 255, .1);
}

.nav-style-dark .menu > .pull-right:hover a{
    background-color: #131313;
}
.nav-style-dark .menu > .pull-right{
    margin-left: 11px;
}
.nav-style-dark .cssmenu ul ul{
    border-color: rgba(255, 255, 255, .1);
    background-color: #131313;
}

.nav-style-dark .cssmenu ul ul li a{
    background-color: #131313;
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, .1);
}
.nav-style-dark .cssmenu .menu-button::before{
    border-color: #fff;
}
.nav-style-dark .cssmenu .submenu-button::after,
.nav-style-dark .cssmenu .submenu-button::before,
.nav-style-dark .cssmenu .menu-button::after{
    background-color: #fff;
}
.nav-style-dark .cssmenu ul ul li.active > a,
.nav-style-dark .cssmenu ul ul li:hover > a{
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    
}
.nav-style-dark .cssmenu ul ul li.has-sub > a::after,
.nav-style-dark .cssmenu ul ul li.has-sub:hover > a::after{
    border-color: #fff;
}
.nav-style-dark .menu > .pull-right > a{
    background-color: rgba(255, 255, 255, .1);
    width: 45px;
    line-height: 43px;
    height: 43px;
    text-align: center;
    padding: 0;
    margin-top: 17px;
}

.nav-style-color,
.nav-style-color .cssmenu ul ul,
.nav-style-color .cssmenu ul ul li a{
  background-color: #5cbcf6;
}

.nav-style-gray,
.nav-style-gray .cssmenu ul ul,
.nav-style-gray .cssmenu ul ul li a{
  background-color: #fafafa;
}

.toggle-button{
  display: none;
}


@media (max-width: 600px) {
  .admin-bar .is-sticky .navbar{
    margin-top: 0;
  }
}
@media (max-width: 360px) {
  .is-sticky .toggle-button .menu-button{
    margin-top: 5px;
  }
}
@keyframes fadeinUp {
    from { opacity: 0; margin-top: 30px; }
    to   { opacity: 1; margin-top: 0; }
}

/* Firefox */
@-moz-keyframes fadeinUp {
    from { opacity: 0; margin-top: 10px;}
    to   { opacity: 1; margin-top: 0;}
}

/* Safari and Chrome */
@-webkit-keyframes fadeinUp {
    from { opacity: 0; margin-top: 10px;}
    to   { opacity: 1; margin-top: 0;}
}

/* Internet Explorer */
@-ms-keyframes fadeinUp {
    from { opacity: 0; margin-top: 10px;}
    to   { opacity: 1; margin-top: 0;}
}

/* Opera */
@-o-keyframes fadeinUp {
    from { opacity: 0; margin-top: 10px;}
    to   { opacity: 1; margin-top: 0;}
}
