/* Footer */

footer{
	box-shadow: 0 -2px 11.3px 2px rgba(0, 0, 0, 0.20);
}

.footer-logo img {
    transition: .3s;
    min-height: 76px;
}

.footer-logo:hover img {
    filter: drop-shadow(0px 0px 7px var(--main-green));
    transition: .3s;
}



.footer__items {
    gap: 24px;
}


.footer__column {
    gap: 24px;
}

.footer__column:nth-child(1) {
    width: calc(28% - 20px);
}





.footer__column:nth-child(2) {
    width: calc(20% - 25px);
}

.footer__column:nth-child(3) {
    width: calc(20% - 25px);
}

.footer__column:nth-child(4) {
    width: calc(30% - 15px);
}

.footer__title {
    font-size: 24px;
}

.footer__copyright {
    gap: 24px;
    color: var(--black--text);
    font-size: 16px;
}

.footer-copyright__text+a {
    color: var(--black--text);
}

/* .silver span:not(span.heart) {
    opacity: .5;
} */

.silver a {
    color: var(--black--text);
}

.silver span.heart svg {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.2);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    40% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.footer-bottom {
    padding: 8px 0;
    background: var(--main-green);
    font-size: 16px;
    color: var(--main-white);
}


.footer-container {
    padding: 24px 0;
}

.footer-menu {
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu>li {
    position: relative;
    padding-left: 18px;
}

.footer-menu>li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--middle-grey);
    position: absolute;
}

.footer-menu>li>a {
    color: var(--black--text);
}

.header-info__item.address {
    max-width: 85%;
}

.footer-socials{
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}