.footer {
    padding-top: 100px;
    background: linear-gradient(180deg, #F5F4F9 0%, #EDECF6 20.67%, #FCFCFC 100%);
}

.footer__smm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 56px;
}

.smm-element {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 70px;
    background: #BEBDC7;
    transition: background 300ms ease;
}

.smm-element:hover {
    background: #919099;
}

.footer__map {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 142px;
}

.footer__map-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.footer__map-element {
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer__map-element:hover {
    color: #E93F2E;
}

.footer__map-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer__info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #BEBDC7;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 56px;
}

.footer__info-img {
    height: 32px;
    margin-right: 40px;
}

.footer__info-copyright {
    margin-right: auto;
}

.sd {
    background: #EDECF6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 0;
}

.sd__text {
    color: #A2A2AA;
    text-align: center;
    font-size: 14px;
}

.sd__img {
    height: 32px;
}

@media (max-width: 860px) {
    .footer {
        padding-top: 40px;
    }

    .footer__smm {
        margin-bottom: 32px;
    }

    .footer__info {
        margin-bottom: 32px;
        gap: 16px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__info-img {
        margin-right: 0
    }
    
    .footer__info-copyright {
        margin-right: 0
    }

    .footer__map {
        margin-bottom: 34px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 22px;
    }

    .footer__map-ad-formats {
        grid-area: 2 / 1;
    }

    .footer__map-about-us {
        grid-area: 1 / 2;
    }
}
