/* defaults */
html, body {
    padding: 0;
    margin: 0;
    background-color: black;
}
body::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* navigation */
nav {
    width: 100vw;
    height: 16vh;
}
nav img {
    width: 20vw;
    margin-left: 40vw;
}
.nav-items {
    width: 100vw;
    display: flex;
    justify-content: space-around;
}
.nav-items a {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
    color: white;
}

/* collection slide */
.firstslide {
    width: 100vw;
    overflow: hidden;
}
.firstslide-left, .firstslide-right {
    width: 50vw;
    height: 84vh;
    float: left;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.firstslide-left video {
    height: 84vh;
}
.firstslide-right a {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 6vh;
    color: white;
}

/* discover */
.discover {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.discover-image {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    float: left;
}
.discover-image img {
    height: 100vh;
}
.discover-text {
    width: 50vw;
    height: 100vh;
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    float: left;
}
.discover-text h1 {
    font-size: 6vh;
    margin-bottom: 0;
}
.discover-text i, .discover-text a {
    font-size: 4vh;
}
.discover-text i span {
    font-size: 2vh;
}
.dt-light, .dt-light a {
    background-color: white;
    color: black;
}
.dt-dark, .dt-dark a {
    background-color: black;
    color: white;
}

/* footer */
footer {
    color: white;
}
.footer-top {
    width: 90vw;
    height: 40vh;
    margin-left: 5vw;
}
.footer-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15vw;
    height: 40vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 4vh;
    float: left;
}
.footer-pages, .footer-stores {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37.5vw;
    height: 40vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3vh;
    float: left;
}
.footer-pages a {
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
}
.footer-stores b, .footer-stores span {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
}
.footer-stores b {
    line-height: 2.6;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 8vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
}

/* misc */
.divider {
    background-color: black;
    width: 100vw;
    height: 8vh;
    overflow: hidden;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2vh;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divider span {
    margin-right: 28px;
}

/* responsive */
@media only screen and (max-width: 768px) {
    
    nav img {
        width: 100vw;
        margin-left: 0;
    }
    
    .firstslide-left, .firstslide-right {
        width: 100vw;
        height: 60vh;
        float: none;
    }
    
    .discover-image, .discover-text {
        width: 100vw;
        height: 60vh;
        float: none;
    }
    .discover {
        height: 120vh;
    }
    
    .discover-text {
        text-align: center;
    }
    
    nav {
        height: auto;
    }
    .nav-items {
        width: 100vw;
        overflow: scroll;
        justify-content: flex-start;
    }
    .nav-items a {
        font-size: 3vh;
        padding-left: 6vw;
        padding-right: 6vw;
        float: left;
    }
    
    .footer-top, .footer-top div {
        width: 100vw;
        height: auto;
        float: none;
        margin-left: 0;
    }
    .footer-top div {
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }
    .footer-bottom {
        font-size: 1.5vh;
    }
    
}