@media screen  and (max-device-width: 900px)
{
  

.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:100%;
    margin-left: 10px;
    
}

.logo{
    margin: 5px;
    z-index: 2;
}

.menu{
    
}

.menu_ul{
    display: flex;
    margin-top: 55px;
}

#head_menu1{
    margin-left: 1%;
    width:100%;
}

.menu_ul li{
    list-style-type: none;
}

.menu_ul a{
    text-decoration: none;
    color: #1d698c;
    font-family: "Lato", sans-serif;
}

.menu_strip{
    display:none;
}

#humberger #menuCheck {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}
#humberger{
    display:block;
    margin-top: 15px;
    -webkit-user-select: none;
    user-select: none;
    z-index:1;
}

#humberger span {
    display: block;
    width: 40px;
    height: 6px;
    margin-top: 7px;
    position: relative;
    background: #000;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}

#humberger input:checked ~ ul {
   transform: none;
}

#humberger input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

#humberger span:nth-last-child(2) {
    transform-origin: 0% 0%;
}

#humberger input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2,0.2);
}

#humberger input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#burg_menu {
    position: absolute;
    width: 70%;
    height: auto;
    text-decoration: none;
    color: #0338da;
    text-align: center;
    overflow-y: scroll;
    margin: 50px 0px 0px -60%;
    padding: 5px;
    padding-top: 5px;
    background: #eeece9;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-190%,0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    border-radius: 4px;
}

#Dimenu{
    display: block;
    width: 100%;
    height: 38px;
    position: absolute;
    margin-top: -34px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;

}

#Dimenu:checked ~ #DiSubmenu{
    display: contents;
    background-color: #fff;
    color:#7DB725;
    height: auto;
    padding-top: 1px;
}

.burg_dropdown {
    display: flex;
   
}

.menubug a {
    color: #112a78;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 25px;

}

.menubug {
    background-color: #ffac32;
    display: block;
    border-radius: 4px;
    width: 100%;
}

}