@import url("./font/font.css");
@import url('https://fonts.googleapis.com/css?family=Oswald');


#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  display: block;
  line-height: 1;
  -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{ background: #fff; }
#cssmenu {
  width: fit-content;
  margin: auto;
  font-family: 'Roboto-Regular';
  line-height: 1;
  background: transparent;
  border:0px solid red;
}
#menu-line {
  display:none;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: #df8901;
  -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;
}
#menu-button{ display: none; }
#cssmenu > ul > li {
  display: inline-block;
  background:none;
  vertical-align: middle;
}
#cssmenu > ul > li > a > .line:after {
    content: "";
    background: #00a5e2;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    transition: 0.3s;
}
#cssmenu > ul > li .logo{ width: 120px; }
#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 {
  font-size: 16px;
  text-decoration: none;
  font-family: 'Roboto-Regular';
  text-transform: uppercase;
  text-align: center;
  color: #808080;
  -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 > a > .line{
  padding: 10px 8px 10px 15px;
  display: inline-block;
  position: relative;
}
#cssmenu > ul > li:nth-child(5) > a > .line{ padding: 5px 15px; }
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: #00a5e2 !important;
}
#cssmenu > ul > li > a > .line:hover:after, #cssmenu > ul > li.active > a > .line:after{
  width: 25%;
}
#cssmenu > ul > li.has-sub > a:after {
  content: ">";
  display: inline-block;
  transform: translate(0px, 0px) rotate(90deg);
  transition: 0.2s;
}
#cssmenu > ul > li.has-sub:hover > a:after {
  content: ">";
  display: inline-block;
  transform: translate(-4px, 0px) rotate(-90deg);
}

#cssmenu ul ul {
  position: absolute;
  left: 0%;
  display: inline;
  width: 100%;
  background:#eff2f5f2;
  height: 0;
  overflow:hidden;
  transition: 0.2s;
  text-align: center;
  z-index: 9;
  box-shadow: 0px 18px 15px #afafaf57;
}
#cssmenu li:hover > ul {
  height:auto;
  padding-top: 40px;
}
#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 {
    height: 0;    text-transform: uppercase;
    float:none;
    display: inline-block;
    -webkit-transition: height .2s ease;
    -moz-transition: height .2s ease;
    -ms-transition: height .2s ease;
    -o-transition: height .2s ease;
    transition: height .2s ease;
}
#cssmenu ul li:hover > ul > li {
  height: auto;
  width: 18%;
  vertical-align: middle;
}
#cssmenu ul ul li a {
    padding: 10px 10px 0 10px;
    width: 100%;
    float: left;
    font-size: 18px;
    display: inline;
    text-decoration: none;
    color: #000;
   -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease; 
}
.menu-img img{ width: 100%; transition:.8s cubic-bezier(0.4, 0, 0.2, 1);}
#cssmenu ul ul li a img:hover{transform: scale(1.1);}


#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #00a5e2;
  background:transparent;
}
#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  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 #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}

/*Responsive*/
@media all and (max-width: 1024px){
  #cssmenu > ul > li{
    display: block;
  }
  #cssmenu{ width: 100%; }
  #cssmenu #menu-button{
    display: block;
    padding: 10px;
    border: 1px solid #000;
  }
}