.mobile-menu{
  float: right;
  width:100% !important;
  background-color:#FFFFFF;
  line-height: 50px;
  text-align: center;
}

.mobile-menu a{
  color: gray;
  text-decoration: none;
  padding: 0 10px;
}

.menu-goster{
  color: black;
  float: right;
}

.menu-goster i{
  line-height: 100px;
}

.menu-goster, .menu-kapat{
  transition: 0.4s;
  font-size: 50px;
  cursor: pointer;
  display: none;
}

.menu a:hover,
.menu-goster:hover,
.menu-kapat:hover{
  color:#3948db;
}

#chk{
  position: absolute;
  visibility: hidden;
  z-index: -1111;
}


@media screen and (max-width:800px){
  .menu{
    display: none ;
  }
  .menu-goster, .menu-kapat{
    display: block;
  }
  .mobile-menu{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #333;
    right: -100%;
    top: 0;
    text-align: center;
    padding: 80px 0;
    line-height: normal;
    transition: 0.7s;
    
  }

  .mobile-menu a{
    display: block;
    padding: 20px;
  }

  .menu-kapat{
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
  }

  .mobile-menu-ic{
    font-size: 20px !important;
  }

  .dropdown{
    font-size: 20px !important;
  }

  .dropdown-content{
    font-size: 20px !important;
  }

  #chk:checked ~ .mobile-menu {
    right: 0%;
    color: black;
  }
  
}