
footer {
    background-color: var(--second-theme-color);
    color: #fff;
    padding: 1rem;
    text-align: center;
    margin-top: 16px
}


.footer__blocks {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 50px 0
}

@media (max-width: 768px) {
    .footer__section {
        padding:20px
    }

    .footer__blocks {
        flex-wrap: wrap
    }

    .footer__block {
        text-wrap: wrap;
        max-width: none;
        flex: 1 1 50%
    }

    .footer__bottom {
        flex-direction: column-reverse
    }
}

.footer__title {
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: MaisonNeue;
    letter-spacing: 3px;
    text-align: left
}

.footer__menu {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: start
}
.footer__menu li{
    max-width: 200px;
}
.footer__menu a {
    display: inline-block;
    color: #fff;
    line-height: 1.5rem;
    font-size: 14px;
    cursor: pointer;
    font-weight: 100;
    white-space: nowrap;
    font-family: system-ui;
    text-decoration: none;
    text-wrap: wrap;
}

._collections a {
    text-transform: uppercase
}

.footer__bottom {
    display: flex;
    justify-content: space-around;
    align-items: center
}

.icon_block {
    display: flex;
    gap: 20px
}

.icon_block img {
    background: #fff;
    border-radius: 50px;
    width: 30px;
    height: 30px
}
@media (max-width: 768px) {
    .footer__blocks {
        flex-direction: column;
}}