/* footer */

.footer {
    width: 100%;
    min-height: fit-content !important;
    height: 5vh !important;
    scroll-snap-align: start !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 3 !important;
}

.footer-top {
    background: #1092FF;
    padding: 15px 0;
    text-align: center;
}

.footer-top a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    width: 36px;
    height: 36px;
}

.footer-top a:hover {
    filter: brightness(.9);
}

.col-link-ft {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.footer-bottom .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.col-logo-inft .rh {
    height: 25px;
    border-right: 1px solid #9A9DA3;
}

.col-logo-inft .hof {
    height: 60px;
}

.footer-bottom .links {
    text-align: start;
    flex: 1;
    color: #aaa;
}

.footer-bottom .links a {
    color: #aaa;
    margin-right: 6px;
    margin-left: 6px;
    text-decoration: none;
    font-size: 12px;
}

.footer-bottom .links a:first-of-type {
    margin-left: 0;
}

.footer-bottom .links a:hover {
    text-decoration: underline;
}

.footer-bottom .copyright {
    flex: 1;
    font-size: 12px;
    color: #888;
}


@media (max-width: 992px) {

    .footer-bottom .links a {
        margin: 0;
    }

    .col-link-ft {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .copyright {
        margin-top: 10px;
        text-align: center;
    }
}