/* footer */
.footer {
    background-color: var(--dark);
    padding: 54px 0px 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    opacity: 0.2;
    line-height: auto;
    letter-spacing: 0px;
    text-align: end;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quick_menu_con {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.quick_menu_con > a {
    background-color: #fff;
    border-bottom: 1px solid rgba(162, 162, 162, 0.5);
    border-left: 1px solid rgba(162, 162, 162, 0.5);
    width: 100%;
    display: inline-block;
    line-height: 65px;
    transition: all 0.2s;
}
.quick_menu_con > a:last-child {
    /* border: none; */
}
.quick_menu_con > a:hover {
    background-color: #eaf8f7;
}
