footer{
    margin-top: 80px;
}

.footer-cont{
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text{
    font-size: 2rem;
    color: var(--text-white);
    text-decoration: none;
}

.copyright-cont{
    width: 100%;
    height: 60px;
    text-align: center;
    color: var(--text-white);
    background-color: var(--secondarycolor);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.copyright-cont p{
    margin: 0;
}

footer .footer-list-group{
    display: flex;
    gap: 40px;

}

footer .footer-list-item{
    list-style: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-list-item a{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
}

.fa-facebook,.fa-telegram,.fa-envelope{
    font-size: 3.5rem;
}


/* Start Mobile Nav Section  */
.mobile-nav-list{
    display: none;
}


/* End Mobile Nav Section   */

@media screen and (max-width: 1024px) {
    .footer-cont{
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .mobile-nav-list{
        display: grid;
        grid-template-columns: repeat(5,1fr);
        gap: 10px;
        margin: 0;
        padding: 10px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondarycolor);
    }

    .footer-icon{
        width: 30px;
        height: 30px;
    }

    .mobile-nav-list .mobile-nav-item{
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;

    }
}
