html {
    height: 100vh;
    width: 100vw;
}



body {
    height: 100%;
    margin: 0;
    background-color: #f5f5f5;
    
    z-index: -1;
}


.home-overlay {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 4; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
  transition: .9s ease;
}

.type-width {
    width: 100%;
}

.flex-grow {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    
    perspective: 1px;
    overflow-x: hidden;
}

@media screen and (min-width: 1279px)
{
    .desktop--width {
        padding-left: 240px;
    }


ul {
    list-style: none;
    padding: 0;
}

.list-links {
    margin: 0 0 8px;
}

.list-links a {
    display: block;
    color: #565454;
    cursor: pointer;
}


.list-links a:after {
    content: "";
    display: block;
    width: 0;
    border-bottom: 1px solid;
    border-color: inherit;
    transition: .2s;
    margin: 0px auto;
}

.list-links a:hover:after {
    width: 30px;
}

.menu_nav_link {
    margin: 8px 0 0;
    padding: 8px 16px;
}


}


