@media (max-width: 1000px) {
    .showcase-form {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .grid,
    .showcase .grid,
    .stats .grid,
    .cli .grid,
    .cloud .grid,
    .features-main .grid,
    .docs-main .grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .showcase {
        height: auto;
    }

    .showcase-text {
        text-align: center;
        margin-top: 40px;
        animation: slideInFromTop 0.4s ease-in;
    }

    .showcase-form {
        justify-self: center;
        margin: auto;
        animation: slideInFromBottom 0.4s ease-in;
    }

    .cli .grid>*:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .tools-head,
    .tools-sub-head,
    .docs-head {
        text-align: center;
    }

    .tools-head img,
    .tools-sub-head img,
    .docs-head img {
        justify-self: center;
    }

    .tools-main .grid>*:first-child,
    .tools-main .grid>*:nth-child(2) {
        grid-column: 1;
    }
}


/* @media (max-width: 500px) { */
@media (max-width: 600px) {
    .navbar {
        height: 110px; 
    }

    .navbar .flex {
        flex-direction: column;
        height: 100%;
    }

    .navbar ul {
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .showcase-form {
        width: 300px;
    }

}