/* ============================= */
/*          FOOTER               */
/* ============================= */


    .tb-footer {
        background: var(--black);
        color: #fff;
        padding:7.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tb-footer-top {
        padding-bottom: 3rem;
    }

    .tb-footer-top-item {
        display: flex;
        align-items: center;
        gap: .5rem;
        color: #fff;
        font-size: 1rem;
        font-weight:500;
    }

    .tb-footer-top-item a{
        color:#fff;
        text-decoration:none;
    }

        .tb-footer-top-item a:hover {
            color: #777;
            text-decoration: none;
            transition: ease .4s;
        }

    .tb-footer-main {
        padding-bottom: 4rem;
    }

    .tb-footer-title {
        font-size: 1rem;
        font-weight: 700;
    }

    .tb-footer-desc {
        font-size: .95rem;
        line-height: 1.825;
    }

    .tb-footer-underline {
        height: 1px;
        background: #262626;
        margin: 1rem 0;
    }

    .tb-footer-links {
        list-style: none;
        padding: 0;
    }

    .tb-footer-links li {
        margin-bottom: .5rem;
    }

    .tb-footer-links a {
        color: #bbb;
        text-decoration: none;
    }

        .tb-footer-links a:hover {
            color: #fff;
        }

    .tb-footer-hours {
        list-style: none;
        padding: 0;
    }

    .tb-footer-hours li {
        display: flex;
        justify-content: space-between;
        margin-bottom: .5rem;
        color: #ccc;
    }

    .tb-footer-social a {
        font-size: 1.5rem;
        color: #bbb;
    }

    .tb-footer-social a:hover {
        color: #fff;
    }

    .tb-footer-uc img {
        width: 95px;
        margin-right: 1rem;
    }

    .tb-footer-bottom {
        text-align: center;
        padding: 3.5rem 0;
    }

    .tb-footer-bottom-logo {
        margin-bottom: 1rem;
    }

    .tb-footer-bottom p {
        font-size: .9rem;
        color: #777;
    }

    @media (max-width: 991px) {
        .tb-footer-hours li {
            gap: 1rem;
        }

        .tb-footer-col {
            text-align: left;
        }
    }
    
    
       .tb-footer-social {
        align-items: center;
        flex-wrap: wrap;
    }

    .tb-footer-social a {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.02);
        color: rgba(255, 255, 255, 0.78);
        transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .tb-footer-social a svg {
        width: 20px;
        height: 20px;
        display: block;
    }

    .tb-footer-social a svg path {
        fill: currentColor;
    }

    .tb-footer-social a:hover {
        color: #fff;
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .tb-footer-uc {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }

    .tb-footer-uc a {
        display: inline-flex;
    }

    .tb-footer-uc img {
        width: 95px;
        margin-right: 0;
        opacity: 0.92;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .tb-footer-uc a:hover img {
        opacity: 1;
        transform: translateY(-2px);
    }
    
