* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*FONTS*/
@font-face {
    font-family: Kelson Sans Bold;
    src: url(../fonts/Commercial/WEB/KelsonSans-Light.woff);
}

@font-face {
    font-family: Kelson Sans Light;
    src: url(../fonts/Commercial/WEB/KelsonSans-Light.woff2);
}

@font-face {
    font-family: Kelson Sans Normal;
    src: url(../fonts/Commercial/WEB/KelsonSans-Normal.woff2);
}

@font-face {
    font-family: Lato Bold;
    src: url(../fonts/Lato/Lato-Bold.ttf);
}

@font-face {
    font-family: Lato Normal;
    src: url(../fonts/Lato/Lato-Regular.ttf);
}


h1 , h2 {
    font-family: Kelson Sans Bold;
    letter-spacing: .5rem;
}

a, p {
    font-family: Lato Normal;
}

/*BODY*/
body, html {
    font-size: 100%;
    color: white;
    position: relative;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

.content {
    max-width: 1200px;
    height: 100%;
    padding: 0 2%;
    margin: 0 auto;
}

/*NAV BAR*/
nav {
    background-color: #8786d5;
    text-align: center;
}

#logo img {
    float: left;
    max-width: 7.5rem;
    text-align: center;
    margin-top: .1vh;
}

nav ul {
    height: 100%;
    text-align: right;
    position: relative;
}

nav ul li {
    display: inline-block;
    margin: 1.15em;
}

nav ul i {
    color: #FFf;
}

#slideMenu{
    display: none;
    z-index: 10;
}

#menu {
    display: inline-block;
}

nav li a:hover {
    color: #7ac143;
    transition: all .3s ease-in;
}

nav ul li a{
    font-size: 1.6em;
    padding: .9em;
}

.cart {
    position: absolute;
    right: 0;
    top: 66px;
    width: 200px;
    text-align: center;
    height: auto !important;
    padding: .8em;
    z-index: 10;
    background-color: #4d4d4d;
}

.cart img {
    width: 80%;
    height: auto;
    padding: 1em 0;
}

.cart button {
    margin: 1em auto;
    padding: .6em 1em;
    background-color: gold;
    color: #4d4d4d;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 2em;
}

.cart button:hover {
    transform: scale(1.1);
    transition: all .3s ease-in;
}

footer {
    background-color: #2e3192;
    color: #fff;
    text-align: center;
}

footer h4 {
    font-size: 2em;
    padding-top: 3em;
}

#media li {
    display: inline-block;
    margin: 2em;
}

#media li a {
    font-size: 3em;
}

#media .fb:hover {
    color: #f47b20;
    transform: scale(1.1);
    transition: all .3s ease-in;
}

#media .ig:hover {
    color: #7ac143;
    transform: scale(1.1);
    transition: all .3s ease-in;
}

footer p {
    padding: 1em;
    border-top: 2px solid black;
    word-spacing: 3px;
    letter-spacing: 1px;
}

footer p a:hover {
    text-decoration: underline;
    color: #7ac143;
    transition: all .3s ease-in;
}

#scrolltop {
    position: fixed;
    top: 90%;
    left: 95%;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    width: 1.3em;
    height: 1.3em;
    background-color: #ec008c;
    border-radius: 50%;
    cursor: pointer; 
    scroll-behavior: smooth;
}

#scrolltop i {
    margin-top: .6rem;
}

#scrolltop:hover {
    transform: scale(1.1);
    transition: all .3s ease-in;
}

#acornToggle {
    display: none;
}

@media screen and (max-width: 1100px){
    body {
        font-size: 80%;
    }
}

@media screen and (max-width: 890px){
    nav h2 {
        display: inline-block;
    }

    #acornToggle {
        display: inline-block;
        position: absolute;
        top: .8rem;
        right: .8rem;
        width: 12%;
    }

    nav ul li {
        display: block;
        z-index: 5;
    }
    
    nav li {
        font-size: 1.5em;
        text-align: center;
    }

    .cart {
        top: 300px;
    }

    #scrolltop {
        left: 90%;
    }

    #menu {
        display: none;
    }
}

@media screen and (max-width: 600px){
    body {
        font-size: 60%;
    }

    .cart {
        top: 225px;
    }

    #scrolltop {
        left: 89%
    }
}

@media print {
    img {
        display: none;
    }  
}

@media screen and (max-width: 390px){
    #scrolltop {
        left: 85%;
        font-size: 1.8rem;
    }
    #scrolltop i {
        margin-top: .7rem;
    }

    nav menu a :active {
        color: #7ac143;
    }
}

