.menu-container {
      display: inline-block;
      position: relative;
        width: 49.5%;
    height: auto;
    left: 0px;
    top: 0px;
    z-index: 5;
    font-size: 26px;
    cursor: pointer;
    text-align: center;
    }



    .menu-title {
      display: block;
      padding: 10px 20px;
      /*color: white;*/
      /*background-color: #ce3d20;*/
      color: rgb(112, 112, 112);
      background-color:rgb(247, 247, 247);
      text-decoration: none;
      cursor: pointer;
    }

    span.menu-title  a{
      color: rgb(112, 112, 112);
      text-decoration: none;
}

.menu-title.active{
    display: block;
    padding: 10px 20px;
    color: white;
    background-color: #ce3d20;
    text-decoration: none;
    cursor: pointer;
}

.menu-title.active a{
    color: white;
    text-decoration: none;
}

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #f7f7f7;
      width:100%;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    .menu-container:hover .submenu {
      display: block;
    }

    .submenu-item {
      padding: 8px 15px;
      color: #707070;
      background-color: #f7f7f7;
      text-decoration: none;
      display: block;
      transition: background-color 0.2s ease;
    }

.submenu-item a{color: #707070; text-decoration: none;}

    .submenu-item:hover {
      background-color: #9c9c9c;
      color: white;
    }