/* footer */


.footer {
    background: #000;
    color: #fff;
    /* height: 44rem; */
    padding: 6rem 4rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    width: 100%;
}

.footer-grid {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 5rem; */
    padding: 0 10rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    column-gap: 8px;
    width: max-content;
    max-width: 24%;
}

.footer-col .address-separator {
    margin-bottom: 4rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.footer-addresses {
    font-family: "Poppins", sans-serif;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start !important;
}

.footer-logo {
    font-size: 4.8rem;
    font-weight: 400;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #FFFFFF;
    font-weight: 400;
    font-family: "GFS Didot", serif;
    /* margin-bottom: 9rem; */
}

.reg-no {
    margin-top: 20px;
    color: #bbb;
}

.nav-links a,
.socials a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.socials a:hover {
    color: #fff;
}



.footer-bottom {
    text-align: center;
    margin-top: 6rem;
    font-size: 1.4rem;
    color: #fff;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-container {
    height: 10rem;
    display: flex;
    justify-content: flex-end;
}

.footer-logo-container img {
    width: 5rem;
    height: 7rem;
    cursor: pointer;
}

@media (max-width: 768px) {

    .footer {
        /* overflow-x: hidden; */
        height: auto;
        width: 100vw;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
        padding: 0 0rem;
    }

    .hip-col {
        align-items: flex-start;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        column-gap: 8px;
        width: max-content;
        max-width: 100%;
    }

    .footer-col .address-separator {
        margin-bottom: 10rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }

    .footer-addresses {
        font-family: "Poppins", sans-serif;
    }

    .socials {
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: flex-start !important;
    }

    .footer-logo {
        font-size: 4.8rem;
        font-weight: 400;
        margin: 0;
        font-family: "Inter", sans-serif;
    }

    .tagline {
        font-size: 1.2rem;
        font-style: italic;
        color: #FFFFFF;
        font-weight: 400;
        font-family: "GFS Didot", serif;
        /* margin-bottom: 9rem; */
    }

    .footer-col .address-separator {
        margin-bottom: 2rem;
    }
}

@media only screen and (width: 768px) and (orientation: portrait) {
    .footer {
        /* overflow-x: hidden; */
        height: auto;
        width: 100vw;
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 2rem;
    }

    .hip-col {
        align-items: flex-start;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
    }

    .footer-col .address-separator {
        margin-bottom: 2rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        row-gap: 0.5rem;
    }

    .footer-addresses {
        font-family: "Poppins", sans-serif;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .socials {
        display: flex;
        flex-direction: row;
        /* Horizontal makes better use of width */
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start;
    }

    .footer-logo {
        font-size: 3.6rem;
        font-weight: 500;
        margin: 0;
        font-family: "Inter", sans-serif;
    }

    .tagline {
        font-size: 1.2rem;
        font-style: italic;
        color: #FFFFFF;
        font-weight: 400;
        font-family: "GFS Didot", serif;
    }
	
}