/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 6 version
*/

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/*
Resets
*/

* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 200%;
    background-size: cover;
}

details {
    cursor: pointer;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/*
Navigation Menu
*/

nav {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    height: 100%;
    z-index: 10000;
    padding: 1%;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    background-size: cover;
    background-position: 50% 50%;
}

@media screen and (orientation:portrait) {
    nav {
        width: 100%;
        height: auto;
        padding: 2%;
    }
}

nav details summary::-webkit-details-marker {
    display: none;
}

nav details summary {
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    content: "";
    display: block;
    width: 30px;
    height: 18px;
}

nav details summary div,
nav details summary div::before,
nav details summary div::after {
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    content: "";
    display: block;
    width: 30px;
    height: 0;
    border-bottom: 1px solid white;
    padding-top: 25%;
}

nav details summary div {
    padding-top: 0;
    border-top: 1px solid white;
    border-bottom: none;
}

nav details ul {
    color: white;
    list-style: none;
    opacity: 0;
}

nav details li {
    font-family: 'Pacifico', cursive;
    font-size: 120%;
    font-weight: 10;
    border-bottom: 1px solid white;
}

@-webkit-keyframes slideInLeft {
    from {
        font-size: 0;
        margin-right: 6%;
        margin-left: -6%;
    }
    50% {
        opacity: 0;
        font-size: 100%;
    }
    to {
        margin-right: 0%;
        margin-left: 0%;
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        font-size: 0;
        margin-right: 6%;
        margin-left: -6%;
    }
    50% {
        opacity: 0;
        font-size: 100%;
    }
    to {
        margin-right: 0%;
        margin-left: 0%;
        opacity: 1;
    }
}

@-webkit-keyframes slideInTop {
    from {
        margin-top: -20%;
    }
    50% {
        opacity: 0;
        font-size: 100%;
    }
    to {
        margin-top: 0%;
        opacity: 1;
    }
}

@keyframes slideInTop {
    from {
        margin-top: -20%;
    }
    50% {
        opacity: 0;
        font-size: 100%;
    }
    to {
        margin-top: 0%;
        opacity: 1;
    }
}

@media screen and (orientation:landscape) {
    nav details[open] ul {
        margin-top: 1%;
        -webkit-animation: slideInLeft .3s forwards ease-out;
        animation: slideInLeft .3s forwards ease-out;
    }
}

@media screen and (orientation:portrait) {
    nav details[open] ul {
        margin-top: 1%;
        -webkit-animation: slideInTop .3s forwards ease-out;
        animation: slideInTop .3s forwards ease-out;
    }
}

@-webkit-keyframes rotateRight {
    from {
        -webkit-transform: rotate(0deg) translateY(-100%);
        transform: rotate(0deg) translateY(-100%);
    }
    to {
        -webkit-transform: rotate(45deg) translateY(-100%) translateX(-25%);
        transform: rotate(45deg) translateY(-100%) translateX(-25%);
    }
}

@keyframes rotateRight {
    from {
        -webkit-transform: rotate(0deg) translateY(-100%);
        transform: rotate(0deg) translateY(-100%);
    }
    to {
        -webkit-transform: rotate(45deg) translateY(-100%) translateX(-25%);
        transform: rotate(45deg) translateY(-100%) translateX(-25%);
    }
}

@-webkit-keyframes rotateLeft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@keyframes rotateLeft {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

nav details[open] summary div::before {
    -webkit-animation: rotateRight .5s forwards;
    animation: rotateRight .5s forwards;
}

nav details[open] summary div::after {
    -webkit-animation: rotateLeft .5s forwards;
    animation: rotateLeft .5s forwards;
}

nav details[open] summary div {
    border: none;
}

nav details[open] summary {
    height: 22px;
    width: 22px;
}

nav details {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                            supported by Chrome, Opera and Firefox */
}


/*
Header
*/

header {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    background-size: cover;
    position: relative;
    border-bottom: 1px solid black;
}

video {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: contrast(2);
    filter: contrast(2);
    mix-blend-mode: screen;
}

@media screen and (orientation: portrait) {
    video {
        background-color: white;
        -o-object-fit: contain;
        object-fit: contain;
    }
}


/*
Main Page
*/

section {
    border: none;
    margin: 0;
    padding: 0;
    width: 90vw;
    min-height: 100vh;
    padding: 0 5vw;
    overflow: hidden;
}

@media screen and (orientation: landscape) {
    section {
        margin-left: calc(2% + 30px);
        width: auto;
    }
}


/*Who Are We*/

#who h1,
#who h2 {
    font-family: 'Pacifico', cursive;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 300;
}

#who img {
    float: right;
}

@media screen and (orientation: portrait) {
    #who img {
        display: none;
    }
}

#who ul {
    list-style: none;
    line-height: 200%;
}

#who li {
    padding: 5px;
    padding-left: 60px;
}

#who li:nth-of-type(1) {
    background: url("https://static.thenounproject.com/png/2047007-200.png") no-repeat 0 10px;
    background-size: 50px 50px;
}

#who li:nth-of-type(2) {
    background: url("https://static.thenounproject.com/png/1316508-200.png") no-repeat 0 10px;
    background-size: 50px 50px;
}

#who li:nth-of-type(3) {
    background: url("https://static.thenounproject.com/png/200893-200.png") no-repeat 0 10px;
    background-size: 50px 50px;
}

#who li:nth-of-type(4) {
    background: url("https://static.thenounproject.com/png/2278764-200.png") no-repeat 0 10px;
    background-size: 50px 50px;
}


/*Products Section*/

#products {
    font-size: 80%;
}

#products form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 80%;
}

#products form label {
    font-weight: bold;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    background-size: cover;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

#products form select {
    font-size: 80%;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    background-size: cover;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    border: 1px solid rgb(233, 100, 33);
    margin: 0 1%;
    margin-right: 5%;
}

#products form input[type="submit"] {
    font-weight: bold;
    color: white;
    font-size: inherit;
    padding: 1%;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    border: 1px solid rgb(233, 100, 33);
    -webkit-box-shadow: 8px 9px 18px -4px rgba(0, 0, 0, 0.158);
    box-shadow: 8px 9px 18px -4px rgba(0, 0, 0, 0.281);
}

#products form select option {
    border: none;
    font-size: auto;
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    background-size: cover;
    color: black;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#products .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#products .list article {
    color: white;
    width: 96%;
    height: 40vh;
    margin: 3% 1%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid white;
    -webkit-box-shadow: 8px 9px 18px -4px rgba(0, 0, 0, 0.158);
    box-shadow: 8px 9px 18px -4px rgba(0, 0, 0, 0.281);
}

#products .list article img {
    width: 46%;
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

#products .list article:nth-of-type(2n) img {
    float: right;
}

#products .list article:nth-of-type(2n+1) img {
    float: left;
}

#products .list article div {
    background-image: url("https://cdn.pixabay.com/photo/2016/01/12/13/10/image-1135418_1280.jpg");
    background-size: cover;
    height: 96%;
    width: 50%;
    padding: 2%;
    display: inline-block;
}

@media screen and (orientation: portrait) {
    #products .list article {
        height: 80vh;
    }
    #products .list article img {
        width: 100%;
        height: 50%;
    }
    #products .list article div {
        padding: 4%;
        height: 50%;
        width: auto;
    }
}

#products .list article div cite {
    font-family: 'Pacifico', cursive;
    font-weight: 10;
    font-size: 80%;
}

#products .list article div>* {
    margin: 0;
    padding: 0;
}