*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Verdana, sans-serif;
}

body{
    background-color: white;
}

/* NAVBAR */
header{
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

header a, li{
    color: black;
    text-decoration: none;
}

.navLinks{
    display: flex;
    list-style: none;
    visibility: visible;
}

.navLinks li{
    display: inline-block;
    padding: 0 10px;
}

.navLinks li a{
    transition-duration: .3s;
    transition-delay: 0;
    padding: 15px;
    background-color: white;
    border-radius: 7px;
}

.menuIcon{
    visibility: hidden;
}

.cart{
    transition-duration: .3s;
    transition-delay: 0;
    background-color: white;
    padding: 15px;
    border-radius: 7px;
}

#active{
    background-color: #a5a5a5;
    border: solid 3px white;
}

/*CONTENTS*/
section{
    margin: 128px 10% 10vh 10%;
}

section h1{
    text-align: center;
    padding: 2em 0;
}

/* CART CONTENT */

#totalCost{
    margin-bottom: 20px;
}

.cartContent{
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90%;
    background-color: #E8E9EB;
    padding: 10px;
    border-radius: 7px;
}

/* CONTACT US CONTENT (FORM)*/
.contactsContent{
    display: flex;
    justify-content: center;
}

form{
    background-color: #E8E9EB;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 75%;
    max-width: 600px;
    border-radius: 7px;
}

form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background-color: #f5f5f5;
}

form textarea{
    resize: none;
}

form button{
    padding: 15px;
    background-color: white;
    color: black;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}


/*ABOUT US CONTENT*/
.content h2{
    margin-bottom: 1em;
}

.content p{
    font-size: 20px;
    margin-bottom: 2em;
}

.awards li{
    font-size: 20px;
}

.awards{
    margin-bottom: 2em;
}

.successfulProducts img{
    width: 200px;
    height: 200px;
    border: solid 2px black;
    border-radius: 5px;
}

/* HOME CONTENT */
.homeSection h2{
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

.advertisement{
    border-top: solid 2px black;
}

.advertisement h2{
    color: black;
    text-align: center;
    margin: 20px 0;
}

.advertisementImages{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.advertisementImages img{
    width: 300px;
    height: 300px;
    border: solid 2px black;
    border-radius: 5px;
    margin: 10px;
}

#countdown{
    margin-top: 10px;
}

/* EVENTS */
.card:hover{
    padding: 10px;
    border-radius: 5px;
}

.cart:hover{
    color: black;
    border-radius: 13px;
}

.navLinks li a:hover{
    color: black;
    border-radius: 13px;
}


/* MEDIA QUERIES */
@media only screen and (max-width: 1375px){

    .advertisementImages{
        flex-direction: column;
        margin-left: 20px;
    }

    section{
        margin: 7vh 5px 10vh 5px;
    }

    header{
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        background-color: black;
    }

    .navLinks li a{
        display: block;
        padding: 0;
        border-radius: 0;
        width: 100%;
        height: 30px;
    }

    .navLinks li{
        padding: 0;
        height: 30px;
        width: 100%;
    }

    nav{
        width: 100%;
    }

    .navLinks{
        flex-direction: column;
        display: flex;
    }

    .cart{
        display: block;
        width: 100%;
        padding: 0;
        border-radius: 0;
    }

    .menuIcon{
        position: absolute;
        visibility: visible;
        margin: 5px 10px;
        cursor: pointer;
    }

    .menuIcon div{
        height: 5px;
        width: 35px;
        background-color: white;
        margin: 6px 0;
    }

    .logo{
        margin: 0 auto;
    }



        /* MEDIA EVENTS */
    .cart:hover{
        color: black;
        border-radius: 0;
    }
    
    .navLinks li a:hover{
        color: black;
        border-radius: 0;
    }
}