/* footer */
.footer {
    background-color: #383838;
    padding: 59px 0px;
}
.footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer p {
    font-size: 18px;
    font-weight: 300;
    color: #cfcfcf;
    line-height: 36px;
}

/* quick_menu */
.quick_menu {
    position: fixed;
    z-index: 101;
    right: 50px;
    bottom: 85px;
    opacity: 0;
    transition: all 0.2s;
}
.quick_menu.active {
    opacity: 1;
}
.quick_menu_box {
    background-color: #40b4a4;
    border-radius: 200px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
    padding: 38px 0px;
    width: 110px;
    text-align: center;
}
.quick_menu_box > a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 35px;
    transition: all 0.2s;
}
.quick_menu_box > a > img {
    margin-bottom: 10px;
}
.quick_menu_box > a:last-child {
    margin: 0;
}
.quick_menu_box > a:hover {
    opacity: 0.7;
}
.quick_menu > a {
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
    display: block;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin: 20px auto 0;
    transition: all 0.2s;
}
.quick_menu > a:hover {
    transform: translateY(-5px);
}
