
.header {

    background-color: black;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 85px;
    top: 0;
    left: 0;
    z-index: 999999;
    
 
}

.header a img {
    display: inline-block;
    
    margin-left: 100px;
    margin-top: 20px;

}

.header h5 {
    display: inline-block;
    font-family: "Inter", sans-serif;
    vertical-align: top;
    padding-top: 25px;
    margin-left: -9px;
}

.header ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    overflow: hidden;
    background-color: black;
}

.header ul a {
    display: block;
    padding-bottom: 0px;
    margin-bottom: 21px;
    text-align: center;
    font-weight: 400;
    padding-right: 20px;
    color: white;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 15px;
}

.header ul a:hover,
.header .menu-btn:hover {
    color: #007bff;
    font-weight: 400;

}

.header .logo {
    display: block;
    float: right;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    
    display: inline-block;
    float: right;
    background-color: black;
    padding: 31px 20px;
    margin-top: 0px;
    margin-right: 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background-color: white;
    color: black;
    display: inline-block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
    height: 2.1px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 250px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}
/* 48em = 768px NAVIGATION ON DESKTOP? */

@media (min-width: 70em) {
    .header ul {
        float: right;

    }

    .header ul a {
        display: inline-block;
        padding-top: 35px;
        font-size: 16px;
        font-family: Inter, sans-serif;
        margin-left: 10px;
        margin-right: 20px;
        padding-right: 10px;
        
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: 80px;
        padding-right: 20px;
        padding-top: 0px;
    }

    .header .menu-icon {

        display: none;
        direction: inline-block;
        vertical-align: bottom;

    }