
@media screen and  (min-device-width:910px) and (max-device-width: 1920px)
{
.fade {
   animation-name: fade;
   animation-duration: 3.0s;
}

.div_content{
    padding-top: 0;
    margin-top: 0;
}

.header{
    display:flex;
    border-bottom: 1px solid gray;
    box-shadow: 0px 1px 5px 0px grey;
    height: auto;
    z-index: 2;
    position: fixed;
    background-color: white;
    top:0;
    left: 0;
}

.logo img{
    width: 45%;
    margin-top: 5px;
    margin-left: 30px;
    margin-bottom: 5px;
}

.logo{
    z-index: 2;
}

.menu{
   
}

.menu_ul{
    display: flex;
    margin-top: 70px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu_item {
    width: 90%;
    height: 30px;
    background-color: white;
    color: black;
    cursor: pointer;
    font-weight: 500;
}


#head_menu1{
    margin-left: 1%;
    width:100%;
    text-align: center;
    margin-bottom: 0;
}

.menu_ul li{
    list-style-type: none;
}

.menu_ul a{
    text-decoration: none;
    color: #f06313;
    font-family: "Lato", sans-serif;
    font-size: 18px;
}
.menu_item a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #0040fd;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0%;
}

.default_item a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0%;
  position: absolute;
  background: #0040fd;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 100%;
}
.menu_item a:hover:after { 
  width: 100%; 
  left: 0; 
}
.menu_item a{
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-weight: 550;
}

#humberger{
    display: none;
}

#burg_menu{
    display:none;
}


}