.asideLinks a{
  color: #39739d;
  font-weight: bold;
  box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
  background-color: #e1ecf4;
  font-size: 14px;
  padding: 10px;
  display: flex;
  width: 200px;
  border: 1px solid #7aa7c7;
  border-radius: 5px;
}

.asideLinks a:hover{
  background-color: #b3d3ea;
  color: #2c5777;
 
}

.asideLinks li{
  margin: 5px;
  border-radius: 5px;
}

 .asideLinks ul{
  /* width: 20%; */
  position: sticky;
} 

/* new css */ 
 .asideLinks ul {
    list-style-type: none;
    padding-left: 0;
  }

  .asideLinks li {
    margin: 5px 0;
  }

  .submenu {
    display: none;
    margin-left: 15px;
  }

  .has-submenu:hover .submenu {
    display: block;
  }

  .submenu a {
    font-size: 14px;
    display: block;
    margin-top: 3px;
  }

/* .asideLinks {
    z-index: 3;
    position: fixed;
    top: 20%;
    left: 0;
    margin-left: 30px;
    transform: translateX(-100%);
    transition: all 0.5s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  }

  .asideLinks.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .asideLinks ul {
    list-style: none;
    padding: 0;
  }

  .asideLinks a {
    color: #0E5283;
    padding: 10px;
    display: block;
    background-color: #fff;
    font-weight: bold;
    border: 1px solid #0E5283;
    text-decoration: none;
  }

  .asideLinks a:hover {
    background-color: #0e5283;
    color: #fff;
  }

  .arrow-btn {
    position: fixed;
    top: 40%;
    left: 0;
    height: 20vh;
    background-color: #0e5283;
    border-radius: 10% 100px 100px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    padding: 10px 5px;
  }

  .arrow-btn ion-icon {
    color: #fff;
    font-size: 20px;
  }

  .arrow-btn .arrow-icon {
    animation: blink normal 1.5s infinite ease-in-out;
  }

  .arrow-btn .arrow-icon[name="arrow-forward-outline"] {
    display: block;
  }

  .arrow-btn .arrow-icon[name="arrow-back-outline"] {
    display: none;
  }

  .asideLinks.active ~ .arrow-btn .arrow-icon[name="arrow-forward-outline"] {
    display: none;
  }

  .asideLinks.active ~ .arrow-btn .arrow-icon[name="arrow-back-outline"] {
    display: block;
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0.5;
    }

    100% {
      opacity: 1;
    }
  }

  @media screen and (max-width: 320px) {
    .asideLinks {
      width: 100% !important;
    }
  } */

 @media screen and (max-width: 1115px) { /*1115px*/
  .asideLinks {
    justify-content: center;
  }
  .asideLinks ul {
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
  
  @media screen and (max-width: 400px){
    .asideLinks a{
      width: 150px;
      font-size: 12px;
    }
  }