* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid blue; */
}
header {
    height: 90px;
    /* background-color: #fff; */
    background-image: url("../img/bg-dotted-pattern.png");
    padding: 10px 7%;
    font-size: 20px;
    font-weight: 600;
}
.menu-wrap {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
}
.logo-img {
    height: 150px;
    z-index: 2;
}
.menu-icon {
    font-size: 2.4em;
    color: #000;
    line-height: 50px;
}
nav {
    position: absolute;
    background-color: #f0f0f0;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 1;
}
nav ul {
    list-style-type: none;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s;
}
nav ul li {
    /* padding: 0 15px; */
    text-align: center; /* MOBILE MENU ALIGNMENT*/
}
nav ul li a {
    display: inline-block;
    padding: 12px;
    /* Add your custom styles below to change appearance of links */
    color: #000;
    font-family: "intro_regular", sans-serif;
    text-decoration: none;
    letter-spacing: 0.05em;
}
nav ul li a:hover,
nav ul li a:focus {
    color: #666;
}
#checkbox {
    display: none;
}
#checkbox:checked ~ nav ul {
    max-height: 350px; /* MOBILE MENU BACKGROUND HEIGHT*/
    /* padding: 15px 0; */
    transition: all 0.5s;
}

@media (min-width: 768px) {
    header {
        height: 110px;
    }
    .menu-icon {
        display: none;
    }
    nav {
        position: relative;
        top: -10px;
        background-color: transparent;
    }
    nav ul {
        max-height: 70px;
        padding: 15px 0;
        text-align: right;
    }
    nav ul li {
        display: inline-flex;
        padding-left: 10px;
    }
}
