body, html{
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.8em;
    color: #666;
}
.pimg1, .pimg2, .pimg3{
    position: relative;
    opacity: 0.80;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*
    fixed = parallax
    scroll = normal
    */
}
.pimg1{
    background-image: url(../Background_Image/BackgroundPantry.jpeg);
    min-height: 100%;
}

.pimg2{
    background-image: url(../Background_Image/BackgroundPantry2.jpeg);
    min-height: 400px;
}

.pimg3{
    background-image: url(../Background_Image/BackgroundPantry3.jpeg);
    min-height: 400px;
}

.section{
    text-align: center;
    padding: 50px 80px;
}

.section-light{
    background-color: #f4f4f4;
    color: #666;
}

.section-dark{
    background-color: #282e34;
    color: #ddd;
}

.ptext{
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 27px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

nav{
    position: fixed;
    /*background: rgba(0,0,0,.75);*/
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 20px 100px;
    box-sizing: border-box;
    transition: .3s;
    z-index: 1;
    
}

nav.black{
    background: rgba(0,0,0,.75);
    height: 60px;
    padding: 10px 100px;
}

.wrapper nav .logo{
    display: block;
    padding: 0px 0px;
    height: 80px;
    float: left;
    font-size: 24px;
    transition: .3s;
    z-index: 1;
    margin-top: -3vh;
    margin-left: -9vh;
}

nav.black .logo{
    color: #fff;
}

nav ul{
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    line-height: 8px;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}
nav.black ul li a{
    background: none;
    color: #fff;
}

nav ul li a:focus{
    outline: none;
}

nav ul li a.active{
    background: #2b2b5a;
    color: #fff;
    border-radius: 5px;
}
nav ul li a.active:hover{
    background: white;
    color: black;
}
.ptext .border{
    background: rgba(0,0,0,.75);
    border: 2px solid white;
    border-radius: 15px;
    color: #fff;
    padding: 20px;
}

.ptext .border.transparent{
    background-color: transparent;
    color: aqua;
    border: none;
}

.right-togglebar{
    display: none;
}
.wrapper .logo{
    display: none;
}


@media(max-width: 800px){
    .wrapper nav{
        display: none;
    }
    .wrapper .logo{
        display: flex;
        position: absolute;
         margin-left: auto;
         margin-right: auto;
         justify-content: center;
         min-width: 50vh;
        z-index: 1000;
        color: black;
    }
    .pimg1, .pimg2, .pimg3{
        background-attachment: scroll;
    }
    
    .right-togglebar {
        display: block;
        position: fixed;
        bottom: 1em;
        right: 1em;
    }
    .floating-btn .fa-bars{
        margin: auto;
        display: inline-block;
        line-height: 3.5;
        width: 3.5em;
        height: 3.5em;
        border-radius: 50%;
        background-color: rgba(43, 43, 90, 1);
        box-shadow: 0 2px 5px 0 hsla(0, 0%, 0%, .26);  
        color: hsl(0, 0%, 100%);
        text-align: center;
        outline: 0;
    }

    .right-togglebar.active .floating-btn {
        box-shadow: inset 0 0 3px hsla(0, 0%, 0%, .3);
    }

    .right-togglebar .floating-btn:active {
        box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, .4);
    }

    .right-togglebar .floating-btn .fas {
        font-size: 1.0em;
        transition: transform .2s ease;  
    }

    .right-togglebar.active .floating-btn .fas{
        transform: rotate(-90deg);
        transition: transform .2s ease; 
    }

    .right-togglebar::after {
        display: block;
        content: "";
        width: 3.5em;
        height: 3.5em;
        border-radius: 50%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -2;
        background-color:rgba(43, 43, 90, .85) ;
        transition: all .3s ease;
    }

    .right-togglebar.active::after {
        transform: scale3d(5.5, 5.5, 1);
        transition-timing-function: cubic-bezier(.68, 1.55, .265, 1);
    }

    .right-togglebar .items-wrapper {
        padding: 0;
        margin: 0;
    }

    .right-togglebar .menu-item {
        position: absolute;
        top: .2em;
        right: .2em;
        z-index: -1;
        display: block;
        text-decoration: none;
        color: hsl(0, 0%, 100%);
        font-size: 1em;
        width: 3em;
        height: 3em;
        border-radius: 50%;
        text-align: center;
        line-height: 3;
        background-color: hsla(0,0%,0%,.1);
        transition: transform .3s ease, background .2s ease;
    }

    .right-togglebar .menu-item:hover {
        background-color: rgba(255, 255, 255, .85);
        color: #000000;
    }

    .right-togglebar.active .menu-item {
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .right-togglebar.active .menu-item:nth-child(1) {
        transform: translate3d(1em,-7em,0);
    }

    .right-togglebar.active .menu-item:nth-child(2) {
        transform: translate3d(-3.5em,-6.3em,0);
    }

    .right-togglebar.active .menu-item:nth-child(3) {
        transform: translate3d(-6.5em,-3.2em,0);
    }

    .right-togglebar.active .menu-item:nth-child(4) {
        transform: translate3d(-7em,1em,0);
    }
}