nav {
    background-color: rgba(10, 10, 10, 0.7);
    border-color: #464646;
}
@media screen and (max-width: 850px) {
    #nav_links {
        background-color: rgba(10, 10, 10, 0.7);
    }
}
#nav_links a[href]::after {
    
    background: white;
    opacity: 0.8;
    
}
nav .text, #menu i {
    color: rgb(199, 199, 199) !important;
}
body {
    padding-bottom: 0;
    height: 100%;
}
footer {
    position: relative;
}

#bg {
    width: 100%;
    height: 100%;
    z-index: -1;
    
    position: relative;
    transition: height 5s;
    overflow: hidden;
}
#bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../bg.jpg");
    background-size: cover;
    background-position: center;
    content: '';
}

#slogan {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    
    
    display: block;
    width: 600px;
    height: 300px;
    height: max-content;
    margin: auto;
    width: 90%;
    
    will-change: transform;
    text-align: center;
}
#slogan_text {
    color: black;
    background-color: rgba(10, 10, 10, 0.5);
    color: rgb(199, 199, 199);
    font-size: 4vw;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 8px;
    -webkit-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone;
}
#products {
    text-align: center;
    width: 100%;
    display: inline-block;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0;
}
.product_box {
    width: 300px;
    max-width: 80vw;
    height: 280px;
    background-color: #f2f2f2;
    display: inline-block;
    margin: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    vertical-align: top;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    transform: translateY(0);
    transition: transform 0.3s;
    transition-timing-function: ease-in-out;
    overflow: auto;
}
.product_box:hover {
    transform: translateY(-8%);
}
.product_box h2 {
    font-size: 30px;
}
.product_box p {
    padding: 15px;
    padding-top: 0;
    font-size: 22px;
    text-align: left;
}

@media screen and (max-width: 600px) {
    #slogan_text {
      font-size: 35px;
    }
    .product_box {
        margin: 5px;
        margin-bottom: 25px;
    }
    .product_box:hover {
        transform: translateY(0);
    }
    .product_box p {
        font-size: 21px;
    }
}