footer {
    width: 100%;
    height: fit-content;
    position: relative;
    box-sizing: border-box;
    background-color: #171717;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    padding: 0;

}

footer #row1{
    width: fit-content;
    height: fit-content;
    padding: 60px;
}

footer #row2{
    width: 100%;
    height: fit-content;
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer #row2 a,
footer #row2 span{
    text-decoration: none;
    color:#ececec;
    font-size: 14px;
}

footer #row2 #footer_menu{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    column-gap: 15px;
}

footer #row2 #footer_menu .dot{
    width: 3px;
    height: 3px;
    background-color: #ffffffb4;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}


@media (max-width: 890px) {
    footer #row2{
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 60px;
        padding: 20px;
        padding-bottom: 45px;
    }
}

@media (max-width: 480px) {
    footer #row1 {
        padding-inline: 20px;
    }
    footer #row2 #footer_menu{
        width: 100%;
        flex-direction: column;
        row-gap: 15px;
    }
    footer #row2 #footer_menu a{
        padding: 15px;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
    footer #row2 span{
        text-align: center;
        line-height: 1.6;
    }
}