﻿.footer-custom {
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    padding: 8px 0;
}
.footer-custom__inner {
    width: 100%;
    background: #090909;
    padding: 12px 16px;
}
.footer-custom__logo-wrap {
    display: flex;
    justify-content: center;
    padding-bottom: 6px;
}
.footer-custom__logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}
.footer-custom__contact-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
    font-size: 12px;
}
.footer-custom__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    color: #e5e7eb;
    text-decoration: none;
    padding: 2px 0;
}
.footer-custom__contact-item:hover {
    color: #fff;
}
.footer-custom__contact-item::before,
.footer-custom__contact-item::after {
    content: none !important;
    display: none !important;
}
.footer-custom__icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
.footer-custom__contact-item:last-child .footer-custom__icon {
    width: 18px;
    height: 18px;
}
.footer-custom__contact-sep {
    display: none;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}
.footer-custom__line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 8px 0;
    opacity: 0.4;
}
.footer-custom__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-custom__social {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer-custom__social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.footer-custom__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.footer-custom__links a {
    color: #e5e7eb;
    text-decoration: none;
}
.footer-custom__links a:hover {
    color: #fff;
}
.footer-custom__dot {
    color: #cb0e0f;
}
.footer-custom__copyright {
    color: #d1d5db;
    font-size: 11px;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-custom__inner {
        padding: 14px 24px;
    }
    .footer-custom__logo-wrap {
        padding-bottom: 14px;
    }
    .footer-custom__logo {
        height: 26px;
    }
    .footer-custom__contact-row {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        font-size: 20px;
    }
    .footer-custom__contact-item {
        padding: 0 20px;
        text-align: left;
    }
    .footer-custom__contact-sep {
        display: inline-block;
    }
    .footer-custom__bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }
    .footer-custom__links {
        font-size: 14px;
        gap: 14px;
    }
    .footer-custom__copyright {
        font-size: 12px;
    }
}
