header {
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background:#232323;
    border-bottom: 1px solid var(--yellow);
}

.head {
    display: flex;
    justify-content: space-between;
    padding: 15px 80px;
}

.head > a {
    color: var(--white);
    text-decoration: none;
}

.title {
    letter-spacing: 3px;
}

.title > span {
    font-size: 14px;
    font-family: 'DM Sans Regular', sans-serif;
    letter-spacing: 2px;
}

.toggle {
    background: transparent;
    padding: 10px 20px;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    outline-width: 0;
}

.hamburger {
    position: fixed;
    background-color: #232323;
    height: 100%;
    width: 250px;
    top: 0;
    right: -301px;
    top: 73px;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
    padding: 25px;
    border-left: 1px solid #D1D1D1;	
    z-index: 99;	
}

.hamburger ul {
    padding: 0;
}

.hamburger li {
    list-style-type: none;
    padding: 20px 15px;
}

.hamburger a {
    color: #f6f6f6;			
    text-decoration: none;
    font-size: 16px;
}

.hamburger a:hover > li > span {
    border-bottom: 1px solid;
}

.slide-hamburger {
    right: 0 !important;
}

/*
 * Media Query
 */

@media screen and (max-width: 767px) {

    .head {
        padding: 15px 25px;
    }

    .title {
        letter-spacing: 2px;
    }

    .title > span {
        display: none;
    }
}