/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto');

/* Body Background and Fonts */
html {
    scroll-behavior: smooth;
}
body {
    background-color: darkgray;
    margin: 0;
    color: white;
    font-family: 'Roboto', sans-serif;
}
* {
    box-sizing: border-box;
}
p {
    text-align: justify;
    text-justify: inter-word;
}
/* Get rid of underline on links */
a {
    text-decoration: none;
    color: white;
}

/* Back to Top Button */
a.top {
    display: none;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    background: #2699FB url("../asset/arrow.png") no-repeat center 43%;
    border-radius: 30px;
}

/* Navbar Styling */
nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #707070;
}
nav a {
    float: right;
    text-align: center;
    padding: 14px 16px;
}
nav a.calltoaction:hover {
    background-color: rgb(0, 120, 224);
}
nav a:hover {
    background-color: #656565;
}
nav a.active {
    background-color: #686868;
}
nav a.calltoaction {
    background-color: #2699FB;
}
nav img.brand {
    padding: 14px 16px;
}
nav .icon {
    display: none;
}
/* Responsive Navbar */
@media screen and (max-width: 900px) {
    nav a {
        display: none;
    }
    nav .icon {
        float: right;
        display: block;
    }
    nav.responsive {
        position: relative;
    }
    nav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    nav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

/* Style Video */
.VideoHeader {
    width: 100%;
    max-height: 60vh;
    overflow: hidden;
    display: block;
}
#video {
    width: 100vw;
}

/* Footer */
footer {
    background-color: #707070;
}
/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 50px;
    background-color: #707070;
    text-align: center;
}
.column i {
    font-size: 3rem;
}
/* Clear floats after the columns */
footer:after {
    content: "";
    display: table;
    clear: both;
}
/* Add margin to social so it matches */
.social {
    margin-top: 26px;
    margin-bottom: 26px;
}
/* Responsive layout footer */
@media screen and (max-width: 1000px) {
    .column {
        width: 100%;
        border-bottom: 1px solid #aaa;
    }
    .social {
        margin-top: 0px;
        margin-bottom: 5px;
    }
}

/* Section with Aside */
.half {
    float: left;
    width: 50%;
    padding: 40px;
    text-align: center;
}
.half img {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}
section:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (max-width: 750px) {
    .half {
        width: 100%;
        border-bottom: 1px solid #aaa;
    }
}

/* Section Background */
.concept {
    background: url("../asset/home/concept.jpg");
    padding-top: 9vh;
    padding-bottom: 9vh;
}
#rounded {
    text-align: center;
    border-radius: 25px;
    background: #707070;
    padding: 20px;
    width: 35vw;
    margin-left: auto;
    margin-right: auto;
}
#rounded h1 {
    margin-top: 0%;
}
.button {
    font-weight: bold;
    background: #2699FB;
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 20vw;
}
.button:hover {
    background-color: rgb(0, 120, 224);
}
@media screen and (max-width: 750px) {
    #rounded {
        width: 90vw;
    }
    .button {
        max-width: 50vw;
    }
}

/* Style Audio Player */
audio {
    width: 100%;
}

/* Card UI */
section.center {
    text-align: center;
}
div.card {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 300px;
    max-width: 100%;
    border-radius: 5px;
    background: #ffffff;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%;
    display: inline-block;
}
div.card:hover {
    box-shadow: 0 64px 128px 0 rgba(0,0,0,0.2);
}
.container {
    padding: 2px 16px;
    color: #686868;
    text-align: center;
}
div.card img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: auto;
}

/* Merchandise Cart Styling */
div.cart {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #aaa;
}
div.cart a {
    background-color: #707070;
    float: right;
    text-align: center;
    padding: 14px 16px;
}
div.cart a:hover {
    background-color: #686868;
}
/* Cart Contents */
.modheader h1{
    display: inline-block;
}
.modbody li{
    margin-bottom: 2%;
    padding: 5px;
    width: 100%;
    background: #aaa;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
}
.modbody li:hover{
    box-shadow: 0 16px 32px 0 rgba(0,0,0,0.2);
}
/* Cart Empty Button */
.emptybutton {
    background-color: #707070;
    float: right;
    text-align: center;
    padding: 14px 16px;
    margin: 15px;
}
.emptybutton:hover {
    background-color: #686868;
}

/* Configure Section Image */
.imgblock img {
    padding-top: 2vh;
    padding-left: 8vw;
    padding-right: 8vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.sectblock {
    background: #707070;
    text-align: center;
    margin-bottom: 2vh;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-bottom: 10px;
}
.sectblock h1 {
    margin-bottom: 0px;
    padding-top: 1vh;
    padding-bottom: 1vh;
}
@media screen and (max-width: 750px) {
    .sectblock {
        padding-left: 0vw;
        padding-right: 0vw;
    }
    .imgblock img {
        padding-left: 0vw;
        padding-right: 0vw;
    }
    .sectblock {
        margin-left: 0vw;
        margin-right: 0vw;
    }
}

/* Configure View Button */
section button {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Style Colour Dots */
.dot {
    height: 5vw;
    width: 5vw;
    border-radius: 50%;
    display: inline-block;
}
@media screen and (max-width: 750px) {
    .dot {
        height: 8vw;
        width: 8vw;
    }
}

/* Fun Page */
.decals {
    text-align: center;
    margin-bottom: 40px;
}
.decals div {
    display: inline;
}
.decals img {
    width: 8%;
    height: 15%;
}

/* iframe Style */
iframe {
    width: 100%;
    height: 40vh;
    margin: 0;
    border: 0;
    scroll-behavior: unset;
}

/* Map Style */
map {
    text-align: center;
}

/* Demo Video Style */
.demo {
    max-height: 70vh;
    max-width: 100vw;
}
.demoblock {
    background: #707070;
    text-align: center;
    margin-bottom: 2vh;
    padding-bottom: 10px;
}
.demoblock h1 {
    padding-top: 32px;
}
.demoblock video {
    padding-top: 16px;
}
