.Footer {
    width: 100%;
    background: #343434;
    padding: 20px 15px 40px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.FooterContainer {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FooterContainer img {
    width: 130px;
    height: 79px;
}

.FooterBox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.FooterBox p {
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 500px) {
    .FooterContainer {
        flex-direction: column;
        gap: 20px;
    }

    .FooterBox {
        align-items: center;
        width: 100%;
    }

    .FooterBox button,
    .FooterBox app-button {
        width: 100%;
    }
}