/* footer */
.footer {
    background-color: #4d4d4d;
    padding: 50px 0px;
}
.footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 26px;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    z-index: 101;
    bottom: 0px;
    /* top: 266px; */
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quick_menu_wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid #fff;
    background-color: #002d52;
    border-radius: 200px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    width: 90px;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}
.quick_menu_wrap a {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.2s;
    align-items: center;
}
.quick_menu_wrap a:last-child {
    margin-bottom: 0;
}
.quick_menu_wrap a:hover {
    color: #cae728;
}
.quick_menu_wrap a img {
    margin-bottom: 2px;
}
.quick_menu > a > img {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
