.site-header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.logo img {
    max-height: 45px;
    width: auto;
    height: auto;
    display: block;
}

/* BURGER */

.menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ========================= */
/* MOBILE FIRST NAVIGATION  */
/* ========================= */

.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    padding: 25px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    z-index: 1000;
}

.main-nav.active {
    display: block;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin-bottom: 15px;
    text-align: center;
}

.main-nav a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}