    /* header */
    
    .header {
        background-color: rgb(0, 0, 0);
        box-shadow: 0px 15px 80px 0 #000000;
        border-bottom: 1.8px solid #bfa65a;
        color: #BFA65A;
        position: fixed;
        width: 100vw;
        top: 0;
        padding: 0; 
        height: 85px;
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.4s ease-in-out;
    }
    .header.active {
        transform: translateY(0%);
        z-index: 99;
        opacity: 1;
        transition: all 0.4s ease-in-out;
    }

    .header ul {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
    }
    
    .header li a {
        color: #eeeeee;
        display: block;
        letter-spacing: 0.5px;
        padding: 12px 35px;
        text-decoration: none;
        transition: all 0.5s ease-in-out;
        font-size: 26px;
    }
    
    .header li a:hover,.header .menu-btn:hover {
        color: #BFA65A;
        border-bottom: 1.8px solid;
        transition: all 0.5s ease-in-out;
        padding-inline: 40px;
        font-size: 28px;
    }
    
    .header #logo1 {
        display: block;
        float: left;
        width: 85px;
        padding: 15px;
        margin-left: 1rem;
        text-decoration: none;
    }

    /* menu */
    
    .header .menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        clear: both;
        max-height: 0;
        background-color: #000000;
        transition: max-height .2s ease-out;
    }
        
    /* menu icon */
    
    .header .menu-icon {
        position: relative;
        cursor: pointer;
        display: inline-block;
        float: right;
        padding: 40px 20px;
        margin-right: 1rem;
        user-select: none;
    }
    
    .header .menu-icon .navicon {
        background: #BFA65A;
        display: block;
        height: 2px;
        position: relative;
        transition: all .5s ease-out;
        width: 24px;
    }
    
    .header .menu-icon .navicon:before,.header .menu-icon .navicon:after {
        background: #bfa65a;
        content: '';
        display: inline-block;
        position: absolute;
        height: 100%;
        transition: all .4s ease-out;
        width: 100%;
    }
    .header .menu-icon .navicon:before {
        top: 7px;
    }
    .header .menu-icon .navicon:after {
        top: -7px;
    }

    /* menu btn */

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

    .header .menu-btn:checked ~ .menu {
        max-height: 450px;
        border-bottom: 1.8px solid #bfa65a;
        box-shadow: 0px 15px 80px 0 #000000;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

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

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

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


    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
    }

  /* 48em = 768px */

@media screen and (min-width: 768px) {

    .header {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header li {
        float: left;
    }
    .header li a {
        padding: 0 22px;
        margin-right: 0;
        /* flex-direction: row; */
        font-size: 20px;
    }
    .header .menu {
        clear: none;
        max-height: none;
        flex-direction: row;
        justify-content: center;
    }
    .header .menu-icon {
    display: none;
    }
    .header #logo1 {
        margin-right: 2rem;
    }
    .header li a:hover,.header .menu-btn:hover {
        border-left: 1.8px solid #bfa65a;
        border-right: 1.8px solid #bfa65a;
        border-bottom: 0px solid #bfa65a;
        padding-inline: 20px;
        font-size: 22px;

    }
}