@media only screen and (max-width: 576px) {

    section {
        padding: 1rem 0;
    }

    /* NAVBAR */

    nav.navbar {
        height: fit-content;
    }

    nav.navbar.mobile-show {
        height: auto;
        width: 100%;
        background: rgba(0, 0, 0, .85);
    }

    li.nav-item a.nav-link {
        text-align: center;
        padding: 2rem;
    }

    li.nav-item a.nav-link.active {
        font-size: 1.5em;
        font-weight: 700;
        padding: .1em;
    }

    nav.navbar.navbar-expand-lg.fixed-top .container-fluid {
        align-self: baseline;
    }

    .navbar-nav {
        writing-mode: unset;
        text-transform: uppercase;
        padding: 2rem 0;
        transition: all .35s linear;
    }
    
    button.navbar-toggler {
        padding: 1rem 0;
        line-height: 1;
        font-weight: 800;
        font-size: 7vw;
        color: #EEE8A966;
    }

    button.navbar-toggler:focus {
        outline: none;
        box-shadow: unset;
        color: #EEE8A9;
    }

    /* HOME */

    .main {
        background: url('./pictures/krajobraz/sample/01.jpg');
        background-size: cover;
    }

    .border-div {
        display: none;
    }

    .text-outlined h1 {
        font-size: 11vw;
    }

    .text-outlined p {
        font-size: 8vw;
        text-align: end;
    }

    /* ABOUT */

    #about .container {
        width: 100%;
    }

    .about-text {
        font-size: .5em;
        right: 0;
        bottom: 0;
        top: unset;
        left: unset;
        width: auto;
        padding: 0 1rem;
        background: transparent;
    }

    .about-txt span,
    p.seller-txt {
        font-size: 5vw;
    }

    /* CONTACT */

    .contact-img {
        opacity: .35;
        background-size: cover;
    }

    .picture-text {
        left: 0;
        top: 0;
        position: relative;
        width: auto;
        padding: 0 1rem;
    }

    .about-text h1,
    .picture-text h1 {
        font-size: 10vw;
    }

    #about p {
        background: transparent;
        box-shadow: none;
    }

    .contact-img {
        width: 100%;
        left: 0;
    }

    .bg-contact {
        display: none;
    }

    #contactForm {
        width: 100%;
    }

    .form-floating textarea.form-control {
        height: 50vh;
    }

  }