.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
    border-top: 5px solid #ff2d2d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 260px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: red;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-menu a:hover,
.footer-menu .current-menu-item a {
    color: red;
}

.footer-news-item {
    margin-bottom: 30px;
}

.footer-news-item h4 {
    margin-bottom: 12px;
}

.footer-news-item h4 a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    transition: 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-news-item h4 a:hover {
    color: red;
}

.footer-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-news-meta span:first-child {
    color: #ff2d2d;
}

.footer-subscribe-form input[type="email"] {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-subscribe-form button {
    width: 100%;
    height: 45px;
    border: none;
    background: #ff2d2d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

.footer-subscribe-form button:hover {
    opacity: 0.9;
}

.footer-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-checkbox a {
    color: #ff2d2d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 600;
	line-height: 22px;
}

.footer-bottom p a {
	color:#ff2d2d;
}

@media(max-width: 1200px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 767px) {

    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .footer-news-item h4 a {
        font-size: 14px;
    }

}