 .dropdown-submenu 
    {
           display: none;
      position: absolute;
      top: 200px;
      left: 50%;
      transform: translateX(-50%);
      /* width: 1445px; */
      height: 606px;
      background: white;
      box-shadow: 0px 5px 15px var(--shadow-color);
      border-radius: 15px;
      padding: 32px 31px;
      z-index: 1000;
    }
    .dropdown-submenu.active{
        display: flex;
        justify-content: space-between;
        /* position: relative; */
    }

     .dropdown-submenu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 100%;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
    }