.mainfooter{
    height: 20vh;
    background-color: var(--Black);
}

.topfooter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3%;
}

.icon-footer{
    display: flex;
    flex-direction: row;
    gap: 15%;
    position: absolute;
    right: 18%;
}

/* .bottomfooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
} */

.footernav{
    display: flex;
    flex-direction: row;
    color: var(--White);
    list-style: none;
    gap: 10%;
    position: absolute;
    left: 12%;
    margin-top: 3%;
    font-family: 'Alata', sans-serif;
}

.copyright{
    color: var(--DarkGray);
    position: absolute;
    right: 15%;
    margin-top: 3%;
    font-family: 'Alata', sans-serif;
    font-size: 14px;
}

.mainfootermobile{
    display: none;
}

@media (max-width:768px) {
    .mainfooter{
        display: none;
    }

    .mainfootermobile{
        display: block;
        height: 60vh;
        background-color: var(--Black);
    }

    .topfootermobile{
        padding-top: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .icon-footermobile{
        gap: 15%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .bottomfootermobile{
        padding-top: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--White);
    }

    .footernavmobile{
        list-style: none;
        text-align: center;
        font-family: 'Alata', sans-serif;
    }

    .footernavli{
        margin-bottom: 25%;
    }
}