html {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Fjalla One', sans-serif;
    overflow-x: hidden;
    background: black;
}

a {
    text-decoration: none;
}

header {
    z-index: 5;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    height: 40px;

    position: fixed;
    left: 0;
    width: 100%;
}

header .navigation {
    top: 0;
}

header .navigation .navleft {
    transform: skew(-30deg);
    float: left;
    margin-left: -40px;
}

header .navigation .navright {
    transform: skew(30deg);
    float: right;
    margin-right: -20px;
}

header .navigation .tab {
    color: white;
    display: inline-block;
    width: 275px;
    height: 50px;

    margin-left: 20px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;


}



header .navigation .tab h2 {
    padding-top: 10px;
    margin: 0;
    text-align: center;
    font-size: 1.3em;

}

header .navigation .navright .tab h2 {
    transform: skew(-30deg);
}

header .navigation .navleft .tab h2 {
    transform: skew(30deg);
}

header .navigation .tab.active {
    /* height: 100px; */
    /* background: red; */
    color: #E00000;
}

header .navigation .tab.active h2 {
    top: 60px;
}

header .navigation .tab#menu-tab:hover {
    background: white!important;
    color: black !important;
    opacity: 1 !important;
}

header .navigation .tab#preorder-tab:hover {
    background: white!important;
    color: black !important;
    opacity: 1 !important;
}

header .navigation .tab#about-tab:hover {
    background: white!important;
    color: black !important;
    opacity: 1 !important;
}

header .navigation .tab#contact-tab:hover {
    background: white!important;
    color: black !important;
    opacity: 1 !important;
}

header .navigation .tab.active:hover {
    color: #E00000 !important;
}


#logo {
    max-height: 75px;
    margin-left: auto;
    margin-right: auto;
    display: block;

    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    margin-top: 5px;
}

#logo:hover {
    opacity: 1 !important;
}


.background {
    z-index: -2; 
    /* -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;  */
    height: 70%;
    width: 100%;
    position: fixed;

    background-repeat: no-repeat;

}

.menu-background {
    background: url("../images/menubackground.jpg");    /* NEWLY EDITED */
    background-position: center left;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
}

.about-background {
    background: url("../images/infobackground.jpg");
    background-position: center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
}

.preorder-background {
    background: url("../images/preorderbackground.jpg");
    background-position: center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
}

.contact-background {
    background: url("../images/contactbackground.jpg");
    background-position: center center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
}

.imageoverlay {
    z-index: -1;
    /* background: radial-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)); */
    /* background: linear-gradient(to bottom left, rgba(256, 256, 256, 0.9), 25%, rgba(256, 256, 256, 0)); */
    background: linear-gradient(rgba(0, 0, 0, 0.8), 25%, rgba(0, 0, 0, 0));
    height: 70%;
    width: 100%;
    position: fixed;
}

.shader {
    opacity: 0;
    background: rgba(0, 0, 0, .8);
    z-index: -1;
    height: 70%;
    position: fixed;
    width: 100%;
}

.videoContainer {
    position: fixed;
    width: 100%;
    height: 70%;
    overflow: hidden;
    z-index: -2;
}
.videoContainer video {
    min-width: 100%;
    min-height: 70%;
    position: relative;
    z-index: -2;
}
.videoContainer .videooverlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    /* background: radial-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 1)); */
    background: linear-gradient(rgba(0, 0, 0, 0.8), 25%, rgba(0, 0, 0, 0));
}

.banner {
    z-index: -1;
    display: table;
    width: 100%;
    /* background: rgba(29,30,34, 0.7); */
    background: rgba(255,255,255, 0.7);
    height: 20%;
    top: 20%;
    color: black;
    position: fixed;
    text-align: center;

}

.banner .text {
    display: table-cell;
    vertical-align: middle;
    font-size: 6em;
}

.menu-container {
    z-index: -1;
    position: absolute;
    width: 100%;
    top: 70%;
    left: 0;
    /* height: 2000px; */
    /* background-color: #1d1e22; */
    background: black;
    /* box-shadow: 0 0 200px 200px #1d1e22; */

    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    padding-bottom: 200px;
}

.menu-container .menu-module {
    /* padding: 100px; */
    color: white;
    background: url("../images/textures/blackboard2.jpg");
    filter: contrast(0.9);          /* NEWLY EDITED */
    background-repeat: repeat;
    width: 90%;
    z-index: 2;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    box-shadow: 0px 0px 10px 2px black;
    padding-top: 100px;
    padding-bottom: 100px;
}

.menu-container .preorder-module {
    /* padding: 100px; */
    color: white;
    background: url("../images/textures/mosaic.png");
    background-repeat: repeat;
    width: 90%;
    z-index: 2;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    box-shadow: 0px 0px 10px 2px black;
    padding-top: 100px;
    padding-bottom: 100px;
}

.menu-container .about-module {
    /* padding: 100px; */
    color: white;
    background: url("../images/textures/mosaic2.png");
    background-repeat: repeat;
    width: 90%;
    z-index: 2;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    box-shadow: 0px 0px 10px 2px black;
    padding-top: 100px;
    padding-bottom: 100px;
    /* height: 1000px; */
}

.menu-container .contact-module {
    /* padding: 100px; */
    color: white;
    background: url("../images/textures/mosaic2.png");
    background-repeat: repeat;
    width: 90%;
    z-index: 2;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    box-shadow: 0px 0px 10px 2px black;
    padding-top: 100px;
    padding-bottom: 100px;
    /* height: 1000px; */
}

#section2 {
    margin-top: 50px;
}

.title {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    color: white;
    font-size: 6em;
    text-align: center;
    border-bottom: 1px solid white;
    /* visibility: hidden; */
    opacity: 0;

    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.menu-container .menu-module h2 {
    margin-left: 100px;
    /* text-decoration: underline; */
    font-size: 3em;
}

.menu-container .menu-module p {
    margin-left: 100px;
    margin-right: 100px;
    overflow-x: hidden;
    font-size: 1.5em;
}

.menu-container .menu-module p:before {
    content: '.     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     .     ';
    width: 0;
    float: left;
    white-space: pre;
    margin-top: 15px;
    color: #e00000;
    font-size: .75em;
    font-family: 'Fjalla One', sans-serif; /* NEWLY EDITED */
}

.menu-container .menu-module p span:first-child {
    padding-right: 0.33em;
}

.menu-container .menu-module p span + span {
    float: right;
    padding-left: 0.33em;
}

/* NEW AFTER SHARING WITH KRIS */

.menu-container .menu-module .menu-content {
    font-family: 'Cabin Sketch', cursive;
    margin-top: 100px;
}

.menu-container .menu-module #menu-image1 {
    height: 150px;
    float: left;
    margin-left: 100px;
}

.menu-container .menu-module #menu-image2 {
    height: 150px;
    float: right;
    margin-right: 100px;

    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.menu-container .menu-module #menu-image3 {
    height: 100px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    /* margin-top: 50px; */
    margin-bottom: -125px;
}

.menu-container .menu-module #menu-image4 {
    height: 80px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -125px;
}

.menu-container .menu-module #menu-image5 {
    height: 100px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -125px;

    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}










.menu-container .about-module h2 {
    margin-left: 100px;
    /* text-decoration: underline; */
    font-size: 3em;
}

.menu-container .about-module p {
    margin-left: 100px;
    margin-right: 100px;
    overflow-x: hidden;
    font-size: 1.5em;
}





/* KRIS EDITS */

.preorder-form {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    color: white;
    font-size: 5em;
    text-align: center;
    margin-top: 50px;
}
  
.about-body p {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    color: white;
    font-size: 5em;
    text-align: center;
    border-bottom: 1px solid white;
    /* visibility: hidden; */
    opacity: 0;
  
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

/* FROM ABOUT_STYLE.CSS */

#saltpic {
  float: right;
  height: 200px;
  width: 400px;
  margin-left: 50px;
  margin-right: 100px;
  box-shadow: 0px 0px 5px 1px gray;
}

#Table_01 {
}

#LeftCol {
    display: inline-block;


}
#MidCol {
    display: inline-block;


}
#RightCol {
    display: inline-block;

}



/* FROM CONTACT_STYLE.CSS */

.contact-title {
    color: #fff;
    text-transform: uppercase;
    transition: all 4s ease-in-out;
}
form {
    text-align: center;
    margin-top: 50px;
    transition: all 4s ease-in-out;
}
.form-control {
    width: 600px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid gray;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

input {
  height: 45px;
}

form .submit {
    background: #ed072d;
    border-color: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    height: 50px;
    margin-top: 20px;
}

form .submit:hover {
    background-color: #0a0001;
    cursor: pointer;
}

.phone-section {
    /* margin-top: 150px; */
    width: 100%;
    text-align: center;
}

.social-section {
    /* margin-top: 150px; */
    width: 100%;
    text-align: center;
}

.info-social-media {
    height: 5em;
    margin-left: 20px;
    margin-right: 20px;
}




footer {
    width: 95%;
    text-align: right;
    position: absolute;
    color: white;
    bottom: 20px;
    font-size: 1.5em;

}

.social-media {
    height: 1.5em;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
}






/* NAVIGATION FOR SMALLER DISPLAYS */
.nav-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    visibility: hidden;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
}

@media(max-width: 1200px) {
    .nav-icon {
        visibility: visible;
    }
}

.nav-icon-div {
    width: 140px;
    height: 20px;
    background-color: black;
    margin: 24px 0;
    transition: 0.4s;
}

.clicked #bar1 {
    background-color: #E00000;
    -webkit-transform: rotate(-45deg) translate(-36px, 24px);
    transform: rotate(-45deg) translate(-36px, 24px);
}

.clicked #bar2 {
    opacity: 0;
}

.clicked #bar3 {
    -webkit-transform: rotate(45deg) translate(-32px, -32px);
    transform: rotate(45deg) translate(-32px, -32px);
    background-color: #E00000;
}

.clicked.nav-icon {
    background: none;
}



.nav-strip {
    z-index: 9;
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    width: 50%;
    height: 100%;
    padding-top: 300px;

    transform: translate(-100%);

    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;

}

.nav-strip a {
    text-decoration: none;
}

.nav-strip li {
    color: white;
    list-style: none;
    margin-bottom: 30px;
    font-size: 4em;
}

.nav-strip li:hover {
    color: #E00000;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}



.slide.nav-strip {
    visibility: visible;

    transform: none;

}


@media (max-width: 1200px) {
    header {
        visibility: hidden;
    }
}

.maps {
    height: 300px;
    margin-left: 100px;
    margin-right: 100px;
}

.maps iframe {
    width: 100%;
    height: 100%;
}


.menu-note {
    text-align: center;
    font-size: 1.5em;
}

