/* * {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

.neon-glow {
    color: white;
    -webkit-text-decoration: normal;
    text-decoration: normal;
    text-overflow: clip;
    text-shadow: 0px -2px 0px black, 0 0 5px rgba(255, 255, 255, 0.8), 0 -4px 15px rgba(255, 255, 255, 0.5);
    transition: all 350ms cubic-bezier(0.42, 0, 0.58, 1);
}

html {
    box-sizing: border-box;
    height: 100%;
}


/* *,
*:before,
*:after {
    box-sizing: inherit;
} */

body {
    height: 100%;
}


/* .noSelect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */


/* header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: black;
    z-index: 99999;
    border-bottom: 1px solid palegoldenrod;
} */


/* #header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 960px;
    width: 960px;
    height: 100%;
}

#logo-container>h1 {
    color: azure;
    font-family: "Stardos Stencil", cursive;
    font-weight: 100;
    text-decoration: underline;
}

#top-nav ul li {
    display: inline-block;
    margin: 10px;
}

#top-nav ul li a {
    display: block;
    text-decoration: none;
    color: azure;
    font-size: 1em;
    transition: all 0.4s ease-out;
} */


/* #top-nav ul li a:hover {
    text-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white, 0 0 40px #00ffff, 0 0 70px #00ffff, 0 0 80px #00ffff, 0 0 100px #00ffff;
} */


/* header #button-container button {
    display: inline-block;
    height: 40px;
    width: 100px;
    border-radius: 20px;
    color: azure;
    background-color: black;
    margin: 5px;
    border: 1px solid #f0f0f0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    transition: all 0.3s;
} */


/* header #button-container button:nth-of-type(1):hover {
    border: 2px solid #f0f0f0;
    opacity: 0.8;
} */

header #button-container button:nth-of-type(2) {
    border: 2px solid #665dc3;
    transition: all 0.3s;
}

header #button-container button:nth-of-type(2):hover {
    border: 3px solid #665dc3;
}

#hero-banner {
    position: relative;
    /* top: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 830px;
    overflow: hidden;
    text-align: center;
}

#hero-banner #video-box {
    height: 830px;
    width: 100%;
    opacity: 0.9;
    filter: grayscale(0.15);
}

#hero-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

hr {
    border-top: 1px solid red;
    width: 600px;
    margin-bottom: 16px;
}

#hero-content {
    position: absolute;
    width: 100%;
    height: 200px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: azure;
}

#hero-banner #hero-button-container {
    padding: 40px;
    width: 600px;
    height: 200px;
    z-index: 10000;
    justify-content: center;
    color: azure;
    top: 120px;
    flex-direction: row;
    width: 400px;
}

#hero-button-container button {
    height: 40px;
    width: 113px;
    border-radius: 20px;
    margin: 10px;
    background-color: transparent;
    border: 1px ridge darkslategray;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    color: azure;
    font-weight: 600;
}

#hero-banner div button:nth-of-type(1) {
    background-color: #665dc3;
    transition: opacity 0.1s;
}

#hero-banner div button:nth-of-type(1):hover {
    opacity: 0.85;
}

#hero-banner div button:nth-of-type(2) {
    width: 142px;
    border: 1px solid #f0f0f0;
}

#hero-banner div button:nth-of-type(2):hover {
    opacity: 0.9;
}

div {
    background-color: transparent;
}

#hero-banner div h1 {
    /* color: black;
    font-size: 2.5em; */
    margin-bottom: 16px;
    /* text-shadow: -1px 0 10px white, 0 1px black, 1px 0 goldenrod, 0 -1px goldenrod; */
    text-shadow: -1px 0 10px white, 0 1px black, 1px 0 white, 0 -1px #b0aeaa;
    font-weight: 600;
    font-size: 92px;
    line-height: 1;
    color: var(--secondary);
    padding-bottom: 15px;
    opacity: 0;
}

#product-banner {
    position: relative;
    background-color: #080808;
    top: 0px;
    height: 275px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: space-between;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1607614/darkpatterns.svg");
    border-top: 1px solid lightyellow;
}

#product-grid-container {
    display: flex;
    justify-content: space-evenly;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 85%;
    max-width: 960px;
    height: 100%;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 220px;
    height: 80%;
    margin: 0 10px;
    color: white;
    text-align: left;
}

.product-grid>h3 {
    margin-bottom: 16px;
}

.product-grid>h3 .material-icons {
    margin-right: 12px;
    vertical-align: middle;
    font-size: 2em;
}

.product-grid>a {
    margin-top: 24px;
}

.feature-panel {
    background-color: #f0f0f0;
    width: 100%;
    height: 450px;
}

.video {
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
}

@media only screen and (max-width: 767px) {
    #hero-banner div h1 {
        font-size: 70px;
    }
}

@media only screen and (max-width: 670px) {
    #hero-banner div h1 {
        margin-bottom: 16px;
        font-size: 70px;
    }
}

@media only screen and (max-width: 515px) {
    #hero-banner div h1 {
        margin-bottom: 16px;
        font-size: 70px;
    }
    .hero__slide-left p {
        font-size: 18px!important;
        padding: 0 50px;
    }
}

@media only screen and (max-width: 500px) {
    #hero-banner div h1 {
        font-size: 45px;
    }
    .box-crop-bg-vdo {
        margin: 0 105px;
    }
    .box-vdo-crop {
        margin: 0 55px;
    }
}

@media only screen and (max-width: 500px) {
    .box-vdo-crop {
        margin: 0 80px;
    }
}

@media only screen and (max-width: 450px) {
    .box-vdo-crop {
        margin: 0 15px;
    }
}