/* page{
display: grid;
grid-template-rows: auto;
grid-auto-columns: 1fr 5fr 5fr 5fr 1fr;
grid-template-areas: "top top top top top"
                    "games games games games games"
                    "gallery gallery gallery gallery gallery"
                    "packages packages packages packages packages"
                    "specials specials specials specials specials "
                    "contact contact contact contact contact"
                    "bottom bottom bottom bottom bottom";

} */

.top{
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    grid-area: top;
    min-width: 100%;
    order: 1;
    /* border: 15px solid rgba(10, 127, 40, 1); */
    height: 90vh;
}



/* .topText h1{
    font-family: "Roboto",san-serif;
    padding-bottom: 1rem;
} */

.gallerySection{
    display: flex;
    grid-area: gallery;
    order: 2;
    padding: 2rem 5%;
    background: url("../style/background/bg3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-attachment: fixed;
    /* min-height: 100%; */
}

.right{
    display: flex;
    order: 1;
    flex: 1 1 30%;
    padding: 10px 20px;
    flex-flow: column;
    justify-content: start;
    max-width: 100%;
}

.right p{
    text-align: justify;
}

.banner{
    display: flex;
}

/* #banner{
    display: flex;
    order: 2;
    min-height: calc(100% - 40px);
    padding: 10px 20px;
    border: 15px solid rgba(10, 127, 40, 1);
    border-radius: 30px;
    flex: 1 0 70%;
    max-width:100%;
    justify-content: center;
} */

.bottom{
    display:grid;
    grid-area:bottom;
    grid-template-columns: 1fr 2fr 2fr 2fr 1fr;
    grid-template-areas: ". main3 main4 main4 .";
    width: 100%;
}

#bannerright, #bannerleft, .banner {
    background-image:url("/style/20190105_010.png");
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
}

#contact{
    grid-area: contact;
    display: flex;
    flex-flow: row wrap;
}

#mainContact{
    display: flex;
    flex-direction: column;
    flex: 1 1 60%;
    order: 4;
    align-items: center;
}

#specials{
    grid-area: specials;
    display: flex;
    flex-direction: column;
    order:2;
    color: white;
    min-height: 90vh;
    align-items: center;
    justify-content: space-between;
    /* border: 15px solid rgba(10, 127, 40, 1); */
    /* border-radius: 10px; */
    max-width: 100%;
    /* padding: 10px 20px; */
    background-color: rgba(0,0,0,.7);
    /* margin: 20px 20px; */
    color:white;
    position: relative;
}

/* #specials div{
    display:flex;
    flex-direction: column;
    background-color: rgba(0,0,0,.7);
    align-items: center;
    text-align:center;
    color: white;
    width: 100%;
    padding: 4px 0px 0px 0px; 
    margin:0px 2px; 
    border-radius: 0px 0px 15px 15px;
} */

#specials h3{
    background-color: rgba(0,0,0,.7);
    text-align:center;
    color: white;
    padding: 10px 0px 10px 0px; 
    margin:0px 2px; 
    border-radius: 15px 15px 0px 0px;
}


#specialText{
    padding: 1rem;
}

#specialButton{
    margin: 1rem;
}

.sliderControls{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    min-height: 100%;
    min-width: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.sliderControlArrow{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    width: 5%;
    font-size: 3rem;
    color: rgba(255,255,255, .6);
    cursor: pointer;
}

.sliderControlArrow:hover{
    background-color: rgba(0,0,0,.2);
    color: white;
}

.sliderControls #dots{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
    align-self: flex-end;
    width: 50%;
    margin-bottom: 1%;
}

.sliderControls #dots .dot{
    border-radius: 50%; 
    height: 1rem; 
    width: 1rem; 
    background-color:rgba(255,255,255, .6);
}

.sliderControls #dots .dot:hover{
    background-color: white;
}

.sliderControls #dots .activeDot{
    background-color: white;
}



.quotebutton{
    margin: 15px 0px;
}

.quotebutton a{
    padding: 15px 15px;
    text-justify: center;
    background-color: red;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}
.scrollingbackground{
    background-image:url("../style/20190105_010.png");
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.scrollingbackground2{
    background-image:url("../style/background/bg3.jpg");
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dealerformbackground{

    background-image:url("../style/background/formbg3.jpg");
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ANIMATIONS */

.oneSecondReveal{
    animation-name: oneSecondReveal;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes oneSecondReveal{
    0%{
        opacity: 0%;
    }

    100%{
        opacity: 100%;
    }
}

.oneSecondHide{
    animation-name: oneSecondHide;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes oneSecondHide{
    0%{
        opacity: 100%;
    }
    100%{
        opacity: 0%;
    }
}