@media screen and (min-width: 300px) {
    .first-footer{
        width: 100%;
        height: 50px;
        display: flex;
        padding: 10px 5px;
        position: fixed;
        z-index: 1000;
        bottom: 0;
        background-color: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    
        .item{
            width: 20%;
        }
    
        .item a{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: var(--text1);
            font-size: 10px;
    
            i{
                font-size: 20px;
                margin-bottom: 2px;
            }
        }
    }
    
    
    
    .footer{
        width: 100%;
        height: 50px;
        display: none;
        justify-content: space-between;
        padding: 10px 60px;
    
        .left{
            width: 60%;
            display: flex;
    
            .item{
                font-size: 14px;
                color: var(--text2);
                list-style-type: disc;
    
                a{
                    text-decoration: none;
                    color: var(--text2);
                }
            }
        }
    
        .right{
            width: 40%;
            display: flex;
            justify-content: flex-end;
    
            a{
                text-decoration: none;
                color: var(--text1);
            }
    
            i{
                margin-left: 20px;
            }
        }
    }
}

@media screen and (min-width: 1100px) {
    .first-footer{
        width: 100%;
        height: 50px;
        display: none;
        padding: 10px 5px;
    
        .item{
            width: 20%;
        }
    
        .item a{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: var(--text1);
            font-size: 10px;
    
            i{
                font-size: 20px;
                margin-bottom: 2px;
            }
        }
    }
    
    
    
    .footer{
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-between;
        padding: 10px 30px;
    
        .left{
            width: 60%;
            display: flex;
    
            .item{
                font-size: 14px;
                color: var(--text2);
                list-style-type: disc;
    
                a{
                    text-decoration: none;
                    color: var(--text2);
                }
            }
        }
    
        .right{
            width: 40%;
            display: flex;
            justify-content: flex-end;
    
            a{
                text-decoration: none;
                color: var(--text1);
            }
    
            i{
                margin-left: 20px;
            }
        }
    }
}


@media screen and (min-width: 1200px) {
    .first-footer{
        width: 100%;
        height: 50px;
        display: none;
        padding: 10px 5px;
    
        .item{
            width: 20%;
        }
    
        .item a{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: var(--text1);
            font-size: 10px;
    
            i{
                font-size: 20px;
                margin-bottom: 2px;
            }
        }
    }
    
    
    
    .footer{
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-between;
        padding: 10px 30px;
    
        .left{
            width: 60%;
            display: flex;
    
            .item{
                font-size: 14px;
                color: var(--text2);
                list-style-type: disc;
    
                a{
                    text-decoration: none;
                    color: var(--text2);
                }
            }
        }
    
        .right{
            width: 40%;
            display: flex;
            justify-content: flex-end;
    
            a{
                text-decoration: none;
                color: var(--text1);
            }
    
            i{
                margin-left: 20px;
            }
        }
    }
}