@media (max-width: 960px) {
    /* main {
        padding: 1% 5% 0% 5%;
    } */

    section,
    footer,
    nav {
        padding: 1% 5% 0% 5%;
    }

    footer {
        gap: 2rem;
    }

    nav {
        position: relative;
        z-index: 10;

        .close {
            display: block;
            color: white;
            font-size: 2rem;
            z-index: 10;
            position: absolute;
            right: 2rem;
            top: 2rem;
            cursor: pointer;
        }

        .showMenu {
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .bars {
            display: block;
            font-size: 2rem;
            z-index: 12;

        }

        ul {
            position: fixed;
            top: 0;
            bottom: 0;
            left: -100%;
            right: 0;
            display: flex;
            background-color: black;
            width: 100%;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 2rem;
            color: white;
            transition: all 1s;
        }
    }

    .banner {
        position: relative;

        .col1 {
            width: 100%;
            /* z-index: 10; */

            h1 {
                font-size: 2rem;
            }
        }

        .col2 {
            display: none;
            /* position: absolute;
            width: 100%;
            background-color: whitesmoke; */
        }
    }

    .about,
    .contact,
    footer {
        flex-direction: column;

        .col1,
        .col2,
        .col3,
        .textArea,
        .image {
            width: 100%;
        }
    }
}