body{
    font-family: 'Varela', sans-serif;
}

header{
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    box-shadow: 0 0 6px #666;
    min-height: 6em;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-col{
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-list{
    list-style: none;
    margin: 0;
}

.menu-list > li{
    display: inline-block;
    cursor : pointer;
}

.menu-list > li > a {
    padding: 1em 1.4em;
    color: #fff;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 33;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor : pointer;
}

.menu-list > li > a:hover{
    text-decoration: none;
    color: #ebcbbb;
    transition: all 0.3s ease-in-out;
}

.img-responsive{
    width: 100%;
    height: auto;
}

.pad-top{
    padding-top: 4em;
}

.product-card{
    padding: 0.5em;
    box-shadow: 0 0 6px #ccc;
    height: 100%;
}

.section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.abt-container{
    position: relative;
}

.abt-content{
    position: absolute;
    top: 50%;
    right: 3em;
    padding: 2em;
    /* border: 4px solid #fff; */
    width: 50%;
    color: #fff;
    background-color: rgba(10, 10, 10, 0.3);
    transform: translate3d(0,-50%,0);
    box-shadow: 1px 1px 5px #666;
}

.view-details{
        background: #4a4a4a;
        color: #fff;
        padding: 0.75em 2em;
}

.view-details:hover{
    color: #000;
}

.mob-menu{
    padding-top: 6em;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.mob-menu.active{
    height: auto;
    transition: all 0.3s ease-in-out;
}

.mob-menu-list{
    list-style: none;
    padding: 0; 
}

.mob-menu-list-item > a{
    display: block;
    padding: 1em;
    color: #000;
    text-decoration: none;
}

#menu{
    color: #000;
}

#menu:hover{
    color: #000;
}

.section{
    min-height: 100vh;
}

.view-details:hover{
    color: #fff;
}

h4{
font-weight : bold;}

.logo-link{
    position: absolute;
    left: 50%;
    width:35%;
    transform: translate3d(-50%,0,0);
        top: -1.5em;
}

.logo-link-area{
        position: absolute;
        left: 0;
            width: 5em;
    }

@media only screen and (max-width: 500px) {
    .logo-link{
        width: 70%;
        /* left: 0; */
        transform: translate3d(-50%,0,0);
        top: 0.4em;
    }

    .logo-link-area{
        position: absolute;
        left: 0;
    }

}