@media (min-width: 768px) {
    .header-mobile{
        display: none;
    }
    .footer-mobile{
        display: none;
    }
}

@media (max-width: 767px) {
    #konten-logo{
        display: none;
    }
    #konten-form{
        width: 80%;
    }

    /* HEADER MOBILE */
    .header-mobile{
        display: flex;
        align-items: center;
        gap: 10px;
        padding-left: 50px;
        padding-bottom: 20px;
    }
    .header-mobile img{
        width: 50px;
        margin-bottom: 10px;
    }
    .header-mobile h6{
        font-size: 15px;
    }

    .footer-mobile{
        margin-top: 40px;
        width: 100%;
        height: auto;
        /* background-color: aqua; */
    }
    .media{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
}