@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');


body {
    font-family: 'Onest';
    margin: 0;
}

aside {
    display: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px 5px 0px 0px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo p {
    font-size: 25px;
    font-family: 'Unbounded';
    color: #2E135B;
    font-weight: 600;
}


.umsotlogo {
    margin: 0px;
}

.set, .set-active {
    margin-right: 30px;
    font-size: 15px;
    text-decoration: none;
}

.set {
    color: #1a202675;
    transition: color 0.3s ease;
}
 
.set:hover {
    color: #2E135B;
    transition: color 0.3s ease;
}

.set-active {
    color: #2E135B;
    border-bottom: 1px #2E135B solid;
}

.button-v {
    padding: 10px 20px;
    background: #2E135B;
    transition: background 0.3s;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
}

.button-v:hover {
    background: #482979;
    transition: background 0.3s;
}

















.menu-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px;
}
.menu-a p {
    margin: 0;
    font-size: 25px;
    font-family: 'Unbounded';
    color: #2E135B;
    font-weight: 600;
}

.burger-checkbox {
    position: absolute;
    visibility: hidden;
  }
  .burger {
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
    position: relative;
    border: none;
    background: transparent;
    width: 40px;
    height: 26px;
  }
  .burger::before,
  .burger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #2E135B;
  }
  .burger::before {
    top: 0;
    box-shadow: 0 11px 0 #2E135B;
    transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
  }
  .burger::after {
    bottom: 0;
    transition: bottom .3s .15s, transform .3s;
  }
  .burger-checkbox:checked + .burger::before {
    top: 11px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0,0,0,0);
    transition: box-shadow .15s, top .3s, transform .3s .15s;
  }
  .burger-checkbox:checked + .burger::after {
    bottom: 11px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
  }
.menu-list {
  display: block;
  background: #ffffff;
  list-style-type: none;
  transform: translateX(-100%);
  transition: .3s;
  width: 100%;
  height: 100%;

  position: fixed;
  top: 0;
  left: 0;
  padding: 42px 0;
  margin: 0;
}
  .menu-item {
    display: block;
    padding: 8px;
    color: #2E135B;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
  }
  .menu-item:hover {
    background: rgba(255,255,255,.2)
  }
  .burger-checkbox:checked ~ .menu-list {
    transform: translateX(0);
  }















@media (min-width: 1100px) {
    aside {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 150px;
        padding-right: 150px;
    }

    .menu-a {
        display: none;
    }
}