footer {
    width: 100vw;
    aspect-ratio: 1920 / 407;
    background: rgba(26, 6, 0, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 3.5vw 7.5vw;
    position: relative;
}

.imgFooterCont {
    width: 33%;
    height: 100%;
}

.imgFooterCont img {
    width: 7vw;
}

.urlCont {
    height: 100%;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vw;
    font-size: 0.85vw;
    color: rgba(128, 128, 128, 1);
}

.urlCont a {
    width: 100%;
    text-align: left;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.footerContactDetails {
    display: flex;
    flex-direction: column;
    gap: 0.25vw;
    height: 100%;
    width: 33%;
}

.footerContactDetails a{
    color: inherit;
    text-decoration: none;
}

.footerContactCont {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
}

.footerContactCont:nth-child(1) {
    margin-top: -3%;
}

.footerContactCont .icon {
    background: rgba(255, 252, 245, 1);
    border-radius: 100vw;
    height: 65%;
    aspect-ratio: 1 / 1;
    margin-right: 0.5vw;
}

.footerContactCont .icon img {
    height: 50%;
    width: auto;
    filter: invert(1);
}

.footerContactInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 100%;
    min-height: 65%;
}

.footerContactHeading {
    font-size: 1.25vw;
    font-weight: 400;
    color: white;
}

.footerContactValue {
    font-size: 0.75vw;
    color: rgba(128, 128, 128, 1);
    flex: 1;
    display: flex;
    align-items: end;
}

.footerLine {
    width: 85%;
    height: 1px;
    background: rgba(128, 128, 128, 1);
    position: absolute;
    bottom: 3.5vw;
    left: 50%;
    transform: translateX(-50%);
}

.copyrights{
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    bottom: 1.75vw;
    color: white;
    font-size: 0.75vw;
}

@media (max-width: 599px) {
    footer {
        width: 100vw;
        aspect-ratio: 1920 / 600;
        height: max-content !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 3.5vw 4vw;
    }

    .copyrights{
        font-size: 2vw;
        width: 100%;
        text-align: center;
        bottom: 3vw;
    }

    .urlCont {
        display: none;
    }


    .imgFooterCont {
        width: max-content;
        height: 100%;
        display: flex;
        align-items: flex-start;
    }

    .imgFooterCont img {
        height: 50%;
        width: auto;
    }

    .footerLine {
        display: none;
    }

    .footerContactDetails {
        display: flex;
        flex-direction: row;
        gap: 0.25vw;
        height: 100%;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        margin-left: 4vw;
    }

    .footerContactCont {
        width: max-content;
        max-width: 40%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .footerContactCont:nth-child(1) {
        margin-top: 0;
    }

    .footerContactCont .icon {
        background: rgba(255, 252, 245, 1);
        border-radius: 100vw;
        height: 5vw;
        aspect-ratio: 1 / 1;
        margin-right: 0vw;
        margin-bottom: 2vw;
    }

    .footerContactCont .icon img {
        height: 50%;
        width: auto;
        filter: invert(1);
    }

    .footerContactInfo {
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        max-height: 100%;
        min-height: 65%;
    }

    .footerContactHeading {
        font-size: 3vw;
        font-weight: 400;
        color: white;
        margin-bottom: 2vw;
    }

    .footerContactValue {
        font-size: 2vw;
        color: rgba(128, 128, 128, 1);
        flex: initial;
        display: flex;
        align-items: end;
    }

    .footerLine {
        width: 85%;
        height: 1px;
        background: rgba(128, 128, 128, 1);
        position: absolute;
        bottom: 3.5vw;
        left: 50%;
        transform: translateX(-50%);
    }
}