
.footer {
    position: relative;
    padding-top: 0.7px;
    padding-bottom: 3.5rem;
    width: 100vw;
    display: flex;
    background-color: rgb(18, 9, 75);
}
.footer-logo {
    width: 28%;
    margin-left: 6%;
    padding-top: 2.4rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 0.4rem;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-logo i {
    margin-right: 0.2px;
    font-size: 1.2rem;
}

.footer-logo img {
    margin-left: -1rem;
    margin-bottom: 1rem;
    width: 13.5rem;
}

.footer-box {
    width: 22%;
    padding-top: 4rem;
    /* border: 1px solid; */
    color: #ccc;
    flex-direction: column;
    align-items: center;
    row-gap: 0.4rem;
    display: flex;
    font-size: 1.1rem;
}

.footer-box p {
    margin-bottom: 1rem;
    color: #eee;
    font-size: 1.5rem;
    font-weight: bolder;
}

.footer-last {
    position: absolute;
    bottom: 0.7rem;
    width: 100%;
    color: #929292;
    padding: 0 5%;
    box-sizing: border-box;
    font-size: 1.1rem;
    display: flex;
    column-gap: 3%;
}

.footer-last div:first-child {
    margin-left: -1%;
    width: inherit;
}

/* ==== Mobile View of Footer ==== */
/* ==== Mobile View of Footer ==== */
/* ==== Mobile View of Footer ==== */

@media (max-width: 500px) {
    .footer {
        position: relative;
        width: 100vw;
        padding-bottom: 75px;
        padding-left: 30px;
        box-sizing: border-box;
        flex-direction: column;
        overflow: hidden;
    }

    .footer-logo {
        margin: 0;
        width: 100%;
        font-size: 1rem;
    }

    .footer-logo img {
        width: 12rem;

    }

    .footer-logo i {
        font-size: 1.1rem;
    }

    .footer-box {
        padding-top: 2rem;
        width: 100%;
        align-items: flex-start;
        font-size: 1rem;
    }

    .footer-box p {
        position: relative;
        top: 0.5rem;
        font-size: 1.3rem;
    }

    .footer-last {
        padding: 0;
        font-size: 0.9rem;
        flex-direction: column;
        row-gap: 5px;
    }

    .footer-last div:nth-child(3),
    .footer-last div:nth-child(4) {
        display: none;
    }
}