* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}


.navbar {
    background-color: #e7e7e7;
    box-sizing: border-box;
    padding: 5px;
}

.navbar img {
    width: auto;
    margin: auto;
}

.navbar ul {
    width: 100%;
    font-size: 0;
    margin-bottom: 0;
}

.navbar ul > li {
    list-style: none;
    display: inline-block;
    width: calc(100% / 7);
    width: 14.2%;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.navbar > ul > li:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 80%;
    border-radius: 5px;
    transform: translateY(-50%);
    background: white;
    box-shadow: inset 1px 1px 2px #ccc;
}

.navbar > ul > li:last-child ul {
    padding: 0;
}

.navbar > ul > li:last-child li {
    display: inline-block;
    width: calc(100% / 3);
    padding: 5px;
}

.navbar > ul > li:last-child li:nth-child(2) {
    border-right: 1px solid #b91681;
    border-left: 1px solid #b91681;
}

.navbar > ul > li:last-child:after {
    display: none;
}

.navbar ul > li > img,
.navbar ul > li > a > img {
    width: auto;
    max-width: 100%;
    max-height: 35px;
    cursor: pointer;
}

.navbar ul > li:hover .hoverNav {
    display: block;
}

.hoverNav {
    padding: 20px;
    position: absolute;
    background-color: rgba(231, 231, 231, 0.7);
    border-radius: 0 0 5px 5px;
    width: 100%;
    right: 0;
    top: calc(100%);
    z-index: 100;
    display: none;
}

.hoverNav:hover {
    display: block;
}

.hoverNav a {
    display: block;
    padding: 5px 0;
    color: #939393;
    text-decoration: none;
    position: relative;
    font-size: 1rem;
}

.hoverNav a:hover {
    color: rgb(235, 166, 62);
}

.hoverNav a:after {
    content: "";
    display: block;
    width: 80%;
    height: 2px;
    background-image: linear-gradient(to left, #fff, transparent, #fff);
    position: absolute;
    bottom: 0;
    left: 0;

    right: 0;
    margin: auto;
}

.hoverNav a:last-child:after {
    display: none;
}

.sandwich {
    display: none;
}




.show-m {
    display: none;
}



@media screen and (max-width: 768px) {
    .navbar ul > li:first-child {
        display: none
    }
    .show-m {
        display: block;
    }
    .hidden-m {
        display: none
    }
    .navbar {
        position: relative;
        z-index: 100;
        padding: 0;
        width: 100%;
        background-color: rgba(231, 231, 231, 0);
        
    }
    .navbar.active {
    }
    .navbar > ul {
        flex-wrap: wrap;
        height: 100%;
        justify-content: space-around;
        display: none;
    }
    .navbar > ul.active {
        display: flex;
        min-height: 70vh;
        width: 50%;
        background-color: rgba(231, 231, 231, 1);
        padding: 0 20px;
        border-radius: 0 0 20px 20px;
    }
    .navbar ul > li {
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        /* height: calc(100vh / 7); */
    }

    .navbar > ul > li:after {
        display: block;
        position: absolute;
        width: 50%;
        height: 3px;
        top: auto;
        right: 25%;
        bottom: 0;
        border-radius: 5px;
        transform: translateY(-50%);
        background: white;
        box-shadow: inset 1px 1px 2px #ccc;
    }
    .navbar ul > li > img,
    .navbar ul > li > a > img {
        margin: 0px auto;
        width: 100%;
        max-height: 100%;
        max-width: 100%;
    }
    .sandwich {
        width: 100%;
        padding: 20px;
        text-align: center;
        margin: 0;
        display: block;
        background-color: rgba(231, 231, 231, 1);
    }
    .sandwich .sandwich-logo{
        width: 120px;
        padding-top: 5px;
    }
    .sandwich .nav-arrow {
        margin: 0;
        display: inline;
        max-width: 40px;
        transition: 0.5s;
        position: absolute;
        left: 26px;
        top: 27px;
    }
    .sandwich .nav-arrow.active {}
    .hoverNav {
        padding: 20px;
        position: static;
        background-color: #EAE1EB;
        border-left: 20px solid #B053C0;
        border-right: 20px solid #B053C0;
        width: 100%;
        right: 0;
        top: calc(100%);
        z-index: 100;
        display: none;
    }

    .hoverNav a {
        padding: 15px 0;
        font-size: 24px;
    }
    .hoverNav a:after {
        background-image: linear-gradient(to left, #ccc, #ccc);
        background: #ccc;

    }
    .navbar > ul > li:last-child ul {
        padding: 20px 0;
    }
    #wrap.active {
        filter: blur(30px);
        pointer-events: none;
    }
    
    .social-icon img{
        padding: 10px;
    }
}
