/* footer */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../img/ft_bg.png');
    padding: 80px 158px 93px 158px;
    color: #fff;
}
.footer > .ft_top {
    display: flex;
    justify-content: center;
    width: 100%;
}
.ft_left {
    margin-left: 81.5px;
    margin-right: 446px;
}
.ft_right {
    display: flex;
    gap: 16px;
}
.ft_right > div {
    width: 256px;
    height: 78px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}
.ft_right > div:hover {
    background-color: rgba(255, 255, 255, 1);
}
.ft_right > div > a {
    padding-left: 15px;
    font-size: 18px;
    color: #fff;
    line-height: 78px;
}
.ft_right > div:hover > a {
    color: #001943;
    font-weight: 600;
}
.ft_right > div > img {
    margin-bottom: 5px;
}
.ft_right > div:hover > img {
    filter: invert(16%) sepia(89%) saturate(6000%) hue-rotate(168deg) brightness(25%) contrast(140%);
}
.ft_line {
    width: 83.541vw;
    height: 1px;
    margin: 57.2px auto 52.3px auto;
    background-color: rgba(255, 255, 255, 0.44);
    text-align: center;
}

.ft_bot {
    margin-left: 81.5px;
    font-size: 16.5px;
    line-height: 28px;
}

/* quick_manu */
.quick_manu {
    position: fixed;
    right: 32px;
    bottom: 72px;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quick_manu > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.quick_manu > a:hover {
    transform: translateY(-5px);
}
.quick_manu > div > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s;
}
.quick_manu > div > a:hover {
    opacity: 0.7;
}
.quick_manu > div > a > img {
    margin-bottom: 9px;
}
