footer {
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border: 0.8px solid #ffffff20;
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    color: #fffaf5c2;
}

footer .footer-top {
    padding: 24px 34px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

footer .footer-bottom {
    padding: 0 34px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-top>svg {
    width: 150px;
}

.footer-top .options-group {
    display: flex;
    flex-wrap: wrap;
    column-gap: 44px;
    align-items: center;
}

.options-group .option-item div {
    display: flex;
    gap: 8px;
}

.options-group .option-item div span {
    padding: 8px 12px;
    border: #ffffff20 0.8px solid;
    border-radius: 13px;
    display: flex;
    align-items: center;
    column-gap: 8px;

}

.options-group .option-title {
    font-weight: bold;
    text-transform: uppercase;
}

.options-group svg {
    width: 20px;
}

.options-group .option-item {
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

footer .line {
    margin: 24px 0;
    background: #ffffff20;
    width: 100%;
    height: 0.8px;
}

.footer-bottom .mention {
    display: flex;
    gap: 12px;
}

.footer-bottom .network {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.network .network-options {
    display: flex;
    height: 100%;
    gap: 4px;
    align-items: center;
}

.network-options a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border-radius: 8px;
    border: 0.5px solid #ffffff20;
}

.network a svg {
    color: var(--color-white);
    width: 16px;
}

.footer-bottom .mention a{
    color: #fffaf5c2;
    text-decoration: none;
}

@media (max-width: 1150px) {
    footer .footer-top {
        padding: 34px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 34px;
    }

    .footer-top .options-group {
        row-gap: 24px;
        align-items: center;
    }

    .options-group .option-item {
        /* align-items: flex-start; */
        gap: 8px;
    }

    footer .footer-bottom {
        padding: 0 16px 24px;
        display: flex;
        gap: 34px;
    }

    .footer-bottom .mention {
        flex-wrap: wrap;
        gap: 34px;
    }
    .network .network-options {
        display: flex;
        gap: 8px;
        height: 100%;
        align-items: center;
    }
    .network-options a{
        display: flex;
        height: 44px;
        width: 44px;
        border-radius: 8px;
        border: 0.5px solid #ffffff20;
    }
}