/* =========================================================
   FOOTER
========================================================= */

.tl-footer {
    padding: 45px 0 0;

    background:
        linear-gradient(
            180deg,
            #06245c,
            #03193f
        );

    color: #fff;
}

.tl-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1.2fr 1fr 1fr;
    gap:10px;
}

.tl-footer-logo {
    display: inline-block;

    color: #fff;

    font-size: 28px;
    font-weight: 800;

    letter-spacing: -.8px;
    
}


.tl-footer-logo img {
    width: 190px;
    height: auto;
}




.tl-footer-logo span {
    color: #ff5a28;
}

.tl-footer-brand small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.72);

    font-size: 10px;
}

.tl-footer-brand p {
    max-width: 230px;

    margin: 18px 0;

    color: rgba(255,255,255,.77);

    font-size: 16px;
    line-height: 1.8;
}

.tl-footer-socials {
    display: flex;

    gap: 10px;
}

.tl-footer-socials a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;

    color: #fff;

    font-size: 11px;
}

.tl-footer-column {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.tl-footer-column h3 {
    margin: 0 0 7px;

    color: #fff;

    font-size: 18px;
}

.tl-footer-column a {
    color: rgba(255,255,255,.76);

    font-size: 16px;
    line-height: 1.4;
}

.tl-footer-column a:hover {
    color: #ff6639;
}

.tl-footer-bottom {
    margin-top: 40px;

    padding: 20px 0;

    border-top:
        1px solid rgba(255,255,255,.14);

    color: rgba(255,255,255,.70);

    font-size: 16px;

    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 950px) {

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

    .tl-footer-brand {
        grid-column: 1 / -1;
    }

}

@media (max-width: 650px) {

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

        gap: 30px;
    }

}

@media (max-width: 430px) {

    .tl-footer-grid {
        grid-template-columns: 1fr;
    }

}
.tl-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tl-footer-socials a {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    color: #ffffff;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.tl-footer-socials a svg {
    width: 16px;
    height: 16px;
    display: block;
}

.tl-footer-socials a:hover {
    background: #f4511e;
    border-color: #f4511e;
    color: #ffffff;
    transform: translateY(-2px);
}