@import url(http://fonts.googleapis.com/css?family=Raleway);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  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;
  display: none;
}
#cssmenu > ul {
  background: linear-gradient(top,rgba(19,63,136,1), rgba(24,124,246,1));
  background: -webkit-linear-gradient(top,rgba(19,63,136,1), rgba(24,124,246,1));
  background: -moz-linear-gradient(top,rgba(19,63,136,1), rgba(24,124,246,1));
  background: -ms-linear-gradient(top,rgba(19,63,136,1), rgba(24,124,246,1));
  box-shadow: 0 7px 7px rgba(0,0,0,0.5);
}
#cssmenu > ul > li {
  float: left;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu > ul > li > a {
	font-family: 'Conv_calibri_0';
	padding: 12px 20px;
    font-size: 17px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(0,0,0,0.3);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
#cssmenu > ul > li.active > a {
  color: #00FFFF;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li > a:hover {
	color: #187CF6;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
    -ms-transform: none;
    background: rgba(255,255,255,1);
}
#cssmenu > ul > li > a::before {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 16px 20px;
  color: #dff2fa;
  background: #19799f;
  content: attr(data-title);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -ms-transform: translateY(- -18px);
}
#cssmenu > ul > li:hover > a::before,
#cssmenu > ul > li > a:hover::before {
  background: #3db2e1;
}
#cssmenu.small-screen {
    width: 100%;
    position: absolute;
    z-index: 99;
    top: -71px;
}
#cssmenu.small-screen > ul,
#cssmenu.small-screen.align-center > ul {
  width: 100%;
  text-align: left;
  animation: animacion_menu 0.3s;
}
@keyframes animacion_menu{
	0% {opacity:0; transform: scale(0);}
	100% {opacity:1; transform: scale(1);}
}
#cssmenu.small-screen > ul > li,
#cssmenu.small-screen.align-center {
  float: none;
  display: block;
  border-top: 1px solid rgba(100, 100, 100, 0.1);
}
#cssmenu.small-screen > ul > li:hover > a,
#cssmenu.small-screen > ul > li > a:hover {
  color: #187CF6;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  -ms-transform: none;
}
#cssmenu.small-screen > ul > li > a::before {
  display: none;
}
#cssmenu.small-screen #menu-button {
  	display: block;
    padding: 27px 20px;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
    color: rgba(41,54,69,0);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #FFF;
    /* box-shadow: 0 5px 5px rgba(0,0,0,0.3); */
    font-weight: bold;
}
#cssmenu.small-screen #menu-button:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 15px;
  display: block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-top: 3px solid rgba(19,63,136,1);
  border-bottom: 3px solid rgba(19,63,136,1);
  width: 40px;
  height: 7px;
}
#cssmenu.small-screen #menu-button.menu-opened:after {
  border-top: 3px solid rgba(19,63,136,1);
  border-bottom: 3px solid rgba(19,63,136,1);
}
#cssmenu.small-screen #menu-button:before {
	content: "";
    position: absolute;
    right: 20px;
    top: 35px;
    display: block;
    width: 40px;
    height: 3px;
    background: rgba(19,63,136,1);
}
#cssmenu.small-screen #menu-button.menu-opened:before {
  background: rgba(19,63,136,1);
}

/*Mobil 568px*/
@media only screen and (max-width:568px){

#cssmenu {
  display: block;
}
	}
