@media (max-width:768px) {

    /* HEADER */

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* HAMBURGER */

    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* MENU */

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;

        background: #000;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 40px;

        transform: translateX(100%);
        transition: 0.4s ease;

        z-index: 1000;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list a {
        font-size: 26px;
    }

    /* HERO */

    .hero {
        height: 100vh;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }


    /* ABOUT */

    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 400px;
    }

    .about-text {
        text-align: center;
    }

    /* SERVICES */

    .services-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-gallery {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-gallery img {
        width: 90px;
        height: 90px;
    }

    /* LOCATION */

    .location-container {
        flex-direction: column;
        gap: 40px;
    }

    /* FOOTER */

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}