
/* Navigation */

.navigation {
    background-color: transparent;
}

.logo {
    color: #fff;
}

.navigation-item a {
    color: #fff;
}

.navigation-item a:hover {
    color: #808080;
}

.navigation-right a {
    color: #fff;
}

.top {
    background-color: #fff;
}

.top .logo,
.top .navigation-item a,
.top .header__right a {
    color: #000;
}


/* hero section */

.hero {
    height: 100vh;
    background-color: #000000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.bg-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .70;
    z-index: -1;
}

.bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; 
}

.main-content {
    font-size: 3.5rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .3rem;
}

.main-content a {
    margin: 5rem 1.5rem;
}

/* Product section */

.product-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5rem 0;
}

.product-section h1 {
    font-size: 5rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.product-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px) );
    justify-content: space-evenly;
    align-content: center;
    margin-bottom: 5rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.product-item {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all .3s linear;
}

.product-item img {
    height: 40rem;
}

.product-item span {
    display: block;
    text-align: center;    
    font-size: 3.5rem;
    text-transform: uppercase;
    opacity: 0;
    transition: all .3s linear;
}

.product-item:hover {
    /* background-color: #f2f2f2; */
    cursor: pointer;
}

.product-item:hover span {
    opacity: 100;
}

/* media queries */

