.ebet__footer {
    position: relative;
    background-color: var(--footerBgr);
}

.ebet__footer-content {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.ebet__footer-copyright {
    font-size: var(--footerFontSize);
    color: var(--footerColor);
    margin: 15px 0;
}

.ebet__footer-payment {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 70px;
    border-top: 1px solid #3a4264;
    border-bottom: 1px solid #3a4264;
    padding: 20px 0;
    width: var(--footerContainer);
}

.ebet__footer-address {
    font-size: calc(var(--footerFontSize) - 2px);
    color: var(--footerColor);
    margin: 6px 0;
    text-align: center;
    width: var(--footerContainer);
}

.ebet__footer__menus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background-color: var(--footerBgrHl);
    width: 100%;
    column-gap: 10px;
    color: var(--footerColor);
}

.ebet__footer__menus a {
    font-size: calc(var(--footerFontSize) - 2px);
    color: var(--footerColor);
}

.ebet__footer-social-network {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
    padding: 15px 0;
}

@media (max-width: 768px) {
    .ebet__footer-payment {
        padding: 10px 0;
    }
}

@media (max-width: 320px) {
    .ebet__footer-payment {
        column-gap: 15px;
    }

    .ebet__footer-payment img {
        width: 55px;
   }
}