:root {
    --overlay-color: rgba(0,54,96, 0.5);
    --high-z-index: 100;
    --grey: #F1F1F1;
    --dark-grey: #939393;
}

.menu {
    position: absolute;
    top: 0vh;
    z-index: var(--very-high-z-index);
    display: block;
    overflow: auto;
    width: 0vh;
    height: 90vh;
    margin-top: 10vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    box-shadow: 8px 0 10px -5px rgba(0, 0, 0, 0.2);
    -ms-overflow-style: none;
	  scrollbar-width: none;
}

.menu.right {
    display: flex;
    right: 0;
    box-shadow: -8px 0 10px -5px rgba(0, 0, 0, 0.2);
    align-items: flex-end;
}

#main--wrapper.white-bg .menu {
    box-shadow: 0px 0 10px 0px rgba(0, 0, 0, 0.2);
}

.menu::-webkit-scrollbar {
    display: none;
}

.menu .menu-item {
    --margin: 0.5vh;
    position: relative;
    width: 20vh;
    width: calc(20vh - 4 * var(--margin));
    margin: var(--margin);
    margin-right:calc(2 * var(--margin));
    margin-left: calc(2 * var(--margin));
    background-color: #fff;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
}

.menu .menu-item:hover {
}

.menu .menu-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.1s ease-in;
}
.menu .menu-item .overlay:hover {
    opacity: 1;
}
.menu.right .menu-item .overlay {
    opacity: 1;
    background-color: var(--overlay-color);
}
.menu.right .menu-item .overlay:hover {
    opacity: 1;
}

.menu .menu-item img {
    width: 100%;
    display: inline-block;
}

.heading-4 {
    position: absolute;
    left: auto;
    top: auto;
    right: 1vh;
    bottom: 0;
    font-family: darkline, sans-serif;
    color: #fff;
    font-size: 2.5vh;
    font-weight: 400;
    margin: 0;
}

.heading-3 {
    position: absolute;
    left: 1vh;
    top: auto;
    right: auto;
    bottom: 0;
    font-family: darkline, sans-serif;
    color: #fff;
    font-size: 2.5vh;
    font-weight: 400;
    margin: 0;
}

.menu.right .title {
    color: white;
    font-size: 2.5vh;
    font-family: TTNorms-medium;
    text-transform: capitalize;
    text-align: center;
    pointer-events: none;
}

.menu.right .subtitle {
    color: white;
    font-size: 1.5vh;
    font-family: TTNorms-medium;
    text-transform: capitalize;
    text-align: center;
    pointer-events: none;
}

.menu .menu-footer {
    flex: 1;
    width: 20vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.menu .menu-footer a {
    color: var(--dark-grey);
    text-decoration: none;
    padding: 1vh;
    box-sizing: border-box;
}
