footer {
    background: var(--color-5);
    padding: 40px 0;
}

.footer__content {
    display: flex;
    gap: 50px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 420px;

    color: #000000;
    font-weight: 500;
}

.footer__column-title {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.footer__column-list-item {
    display: flex;
    gap: 10px;



    .footer__column-list-item__text {
        flex: 1;
        font-size: 12px;
    }

}

.footer__right {
    flex:1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer__right-top {
    display: flex;
    justify-content: space-between;
}

.footer__social {
    display: flex;
    gap: 20px;
    align-items: center;

    a {
        display: flex;
        background: #080a52;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        align-items: center;
        justify-content: center;

        &:hover {
            background: #ea2087;
        }
    }

}

.footer__brands {
    width: 100%;
    padding: 15px 0;
    background: var(--color-3);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;

    img {
        height: 35px;
        max-width: 130px;
        padding: 5px;
    }
}

.footer__text {
    font-size: 12px;
    border-bottom: 1px solid black;
}

.footer__secure-brand {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;

}

.footer__text__bottom {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 14px;

    span {
        display: flex;
    }
}

@media (max-width: 800px) {
    .footer__content {
        flex-direction: column;
        gap: 20px;
    }

    .footer__left {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;;
    }

    .footer__column-list-item img {
        max-width: 170px!important;
    }
}


