footer {
    background-color: #000;

}

footer .page-width {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 3rem !important;
    overflow: hidden;
    padding-bottom: 2rem;
}

.footer-absolute-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: 88%;
}

.footer-column-1 {
    display: flex;
    width: 15%;
}

.footer-column-1 a {
    width: 65%;
    height: auto;
}

.footer-column-1 img {
    width: 100%;
    height: auto;
}

.footer-column-2,
.footer-column-3 {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.footer-column-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    max-width: 25%;
}

.footer-column-4 p {
    color: #fff;
    text-align: right;
    font-size: 1rem;
}

.socials-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.socials-container img {
    width: 20px;
}

.call-cta-footer {
    background-color: #fff;
    color: #000;
    padding: .6rem 1.5rem;
    font-weight: 500;
    border-radius: 2000px;
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
    transition: all ease-out .3s;
}

.call-cta-footer:hover {
    background-color: #BE1E28;
    color: #fff;
    transition: all ease-out .3s;
}

.footer-column-heading {
    margin: 0 0 1rem;
    font-weight: 500;
    font-size: 1.2rem;
    color: #fff;
}

.footer-column-2 a,
.footer-column-3 a {
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 15px;
    color: #fff;
}

.footer-brand-details-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-brand-details-container img {
    width: 20px;
    height: 20px;
}

.footer-brand-details-container p {
    margin: 0;
}
.footer-highlighted-tab{
    color: #BE1E28 !important;
}
@media(max-width:756px) {
    footer .page-width {
        flex-direction: unset;
        gap: 50px;
        column-gap: 10px;
        flex-wrap: wrap;
        height: fit-content;
        padding-bottom: 3rem;
    }

    .footer-absolute-text {
        width: 93%;
    }

    .footer-column-2,
    .footer-column-3 {
        width: fit-content;
    }

    .footer-column-1 {
        width: 100%;
    }

    .footer-column-1 a {
        width: 25%;
    }

    .footer-column-2 a,
    .footer-column-3 a {
        font-size: .9rem;
    }

    .footer-column-4 {
        width: 100%;
        max-width: unset;
        align-items: start;
    }
    .footer-brand-details-container{
        flex-direction: row-reverse;
    }
}