footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    bottom: 0;
}
.footer-atas{
    width: 100%;
    min-height: 200px;
    padding: 15px 0 15px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--nav-color);
    color: var(--text-color);
}
.footer-bawah{
    width: 100%;
    height: 50px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background-color: var(--nav-active-color);
    color: var(--text-color);
}
.footer-bawah p{
    width: 100%;
    text-align: center;
}
.container-footer{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
}
.con33{
    width: 33.3%;
    text-align: center;
}
.con33 h3{
    color: yellow;
}
.con33 p, h3{
    line-height: 25px;
}
.con-icon a{
    color: #ffffff;
    text-decoration: none;
}
.con-icon a:hover{
    color: #ffd900;
}
.con-icon{
    flex-direction: row;
    display: flex;
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 25px;
}
@media screen and (max-width: 850px) {
    .container-footer{
        flex-direction: column;
    }
    .con33{
        width: auto;
        margin-bottom: 15px;
        text-align: center;
    }
}