* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid blue; */
}
header {
    height: 90px;
    background-color: #fff;
    opacity: 90%;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    z-index: 999;
}
.menu-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}
.logo-img {
    height: 60px;
}
.menu-icon {
    font-size: 2em;
    color: #222327;
    line-height: 50px;
}
nav {
    position: absolute;
    background-color: #fff; /* MOBILE MENU BACKGROUND COLOR */
    opacity: 90%;
    top: 80px;
    left: 0;
    width: 100%;
}
nav ul {
    list-style-type: none;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s;
}

nav ul:nth-of-type(2) {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    right: 15px;
    list-style-type: none;
    height: 70px;
    margin-right: 10px;
    overflow: hidden;
    transition: all 0.5s;
    justify-content: center;
    align-items: center;
}

nav ul li {
    /* padding: 0 15px; */
    text-align: center; /* MOBILE MENU ALIGNMENT*/
}
nav ul li a {
    display: inline-block;
    padding: 12px 5px;
    /* Add your custom styles below to change appearance of links */
    color: #222327;
    text-decoration: none;
    /* letter-spacing: 0.05em; */
}
/* Top Sub Menu) */
nav ul:nth-of-type(2) li a {
    display: inline-block;
    padding: 0px;
    /* Add your custom styles below to change appearance of links */
    color: #222327;
    text-decoration: none;
}
nav ul li a:hover,
nav ul li a:focus {
    color: #393a41;
}
#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: 90px;
    }
    .menu-icon {
        display: none;
    }
    nav {
        position: relative;
        top: 0;
        background-color: transparent;
    }
    nav ul {
        max-height: 70px;
        padding: 25px 0 0 0;
        text-align: right;
    }

    nav ul:nth-of-type(2) {
        font-size: 12px;
        position: absolute;
        top: 0;
        right: 0;
        list-style-type: none;
        max-height: 40px;
        overflow: hidden;
        transition: all 0.5s;
        padding: 0;
    }

    nav ul li {
        display: inline-flex;
        padding-left: 10px;
    }
}
/* 
h1 {
    font-size: 2.2em;
    text-align: center;
    padding: 60px 40px 30px;
    color: #3d4852;
    line-height: 1.2;
}
p {
    line-height: 1.6;
    font-size: 1.2em;
    padding: 0 40px;
    text-align: center;
    color: #3d4852;
} */
