@media screen and (max-width: 768px) {
    .desktop-container {
        display: none;
    }

    .mobile-container {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    .desktop-container {
        display: block;
        background: url(https://khastanahadiubud.com/wp-content/uploads/2025/02/BGDesktop-scaled.webp);
        background-size: cover;
        background-position: center;
    }

    .mobile-container {
        display: none;
    }

    .sect1D {
        width: 100%;
        position: relative;
        padding-top: 10%;
        margin-bottom: 5%;
        padding-inline: 10%;
    }

    .sect1D h2 {
        font: normal normal 400 65px/73px Accia Piano;
        text-align: center;
        color: #714923;
        margin-bottom: 30px;
    }

    .sect1D p {
        font: normal normal 500 25px/35px Avenir;
        text-align: center;
        color: #714923;
        width: 70%;
        margin-inline: auto;
    }

    .sect2D {
        width: 100%;
        position: relative;
        padding-inline: 10%;
        margin-bottom: 5%;
    }

    .testingGrid {
        width: 100%;
        position: relative;
        padding-bottom: 10%;
        display: flex;
        gap: 10px;

    }

    .testingGrid .firstLine {
        width: 80%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .firstLine .firstGrid {
        display: flex;
        gap: 10px;
    }

    .firstGrid .topBott {
        display: flex;
        gap: 10px;
        flex-direction: column;
        width: 55%;
    }

    .topBott img {
        width: 100%;
        display: block;
    }

    .firstGrid .imgBott {
        width: 45%;
        display: block;
    }

    .firstLine .firstBott {
        display: flex;
        gap: 10px;
        padding-right: 10px;
    }

    .firstBott img:nth-child(1) {
        width: 65%;
        display: block;
    }

    .firstBott img:nth-child(2) {
        width: 35%;
        display: block;
    }

    .testingGrid .secondLine {
        width: 29.9%;
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .secondLine img {
        width: 100%;
        display: block;
    }

    .sect3D {
        width: 100%;
        position: relative;
        margin-bottom: 5%;
    }

    .sect3D .bg3D {
        display: block;
        width: 100%;
    }

    .sect3D .overlay3D {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

}