html, body{
    margin: 0;
    padding: 0;
}
video{
    top: 50%;
    left: 50%;
    min-height: 100vh;
    min-width: 100vw;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translate(-50%,-50%);
    background-size: cover;
    background-attachment: fixed;
}
.video-parallax{
    -webkit-transition-position:fixed;
    position: fixed;
}
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;
    border-radius: 5px;
}

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: #fff;
    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: linear-gradient(45deg, rgb(45,55,70),rgb(73,160,157));
    color: #fff;
    border-radius: 5px;
}
nav ul li a.active:hover{
    background: linear-gradient(225deg, rgb(0,0,0),rgb(255,255,255));
    color: white;
}
.right-togglebar{
    display: none;
}
.wrapper .logo{
    display: none;
}
header h1{
    color: #fff;
    text-align: center;
    margin: 80px auto;
    font-size: 40px;
    font-weight: 400;
    padding: 20px;
    background: rgba(30,30,30,0.5);
    border-radius: 5px;
    width: 450px;
    text-transform: uppercase;
}
p{
    text-align: center;
    color: white;
    font-weight: 200;
    margin-top: 10px;
}
.wall-item{
   display: block;
    margin: 0 0 24px 0;
    padding: 12px;
    background: rgba(30,30,30,0.95);
    transition: all 200ms;
}
.wall-item a{
    text-decoration: none;
}
.wall-item:hover{
    transform: translate(0,-6px);
    background: linear-gradient(45deg, rgba(45,55,70,.95),rgba(73,160,157,.95));
    transition: all 200ms;
    cursor: pointer;
}
.wall-item > img {
    display: block;
    width: 100%;
    margin: 0 0 30px 0;
}
.wall-item h2{
    text-align: center;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 0;
}
.wall-column{
    display: block;
    position: relative;
    width: 33.333%;
    float: left;
    padding: 0 12px;
    box-sizing: border-box;
}

/*---------------------PHONES--------------*/
 @media(max-width: 800px){
     .wrapper nav{
         display: none;
    }
     .wrapper .logo{
         display: flex;
         position: absolute;
         margin-left: auto;
         margin-right: auto;
         justify-content: center;
         left: 50%;
         top: 0%;
         transform: translate(-50%,0);
         z-index: 1000;
         color: black;  
    }
     header h1{
         width: 80%;
         margin: 150px auto;
     }
     .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: linear-gradient(45deg, rgb(45,55,70),rgb(73,160,157));
         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 .fa-bar {
         font-size: 1.3em;
         transition: transform .2s;
    }
     .right-togglebar.active .floating-btn .fas{
         transform: rotate(-90deg);
         transition: transform .2s ease;
    }
     .right-togglebar.active .floating-btn .fa-bar{
         transform: rotate(-45deg);
    }
     .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: linear-gradient(45deg, rgba(45,55,70,.95),rgba(73,160,157,.95));
         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: linear-gradient(225deg, rgb(0,0,0),rgb(255,255,255));
         color: #FFFFFF;
    }
     .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);
    }
}
@media (max-width: 640px) {
      .wall-column {
            width: 50%;
      }
}
 
@media (max-width: 480px) {
      .wall-column {
            width: auto;
            float: none;
      }
}