.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.footer {
	flex: 0 0 auto;
    /* background: url(/img/pattern-white.jpg); */
    padding: 38px 0px;
    box-shadow: -1px 0px 8px 0px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2f2f2f 0%, #171717 100%);
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer__brand {
    color: #FFD25B;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer__text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFD25B;
}

.footer-link--muted {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 400;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
