/* footer */
.footer {
    background-color: #333333;
    padding: 46px 0px;
}
.footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 26px;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    right: 0px;
    bottom: 79px;
    border-radius: 20px 0px 0px 0px;
    overflow: hidden;
    z-index: 101;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.quick_menu h2 {
    font-size: 14px;
    font-weight: 500;
    background-color: #153d81;
    padding: 20px 0px 8px;
}
.quick_menu_box {
    display: flex;
    flex-direction: column;
    background-color: #001e50;
    align-items: center;
    justify-content: center;
    height: 426px;
    /* height: 460px; */
}
.quick_menu_box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    height: 25%;
    transition: all 0.2s;
}
.quick_menu_box a:hover {
    opacity: 0.7;
}
.quick_menu_box a > img {
    margin-bottom: 11px;
}
