
header {
    background: #a6b476;
    position: sticky;
    top: 0;
    z-index: 2;
}

main {
    /* overflow: hidden; */
}

.header-main {
    display: flex;
    justify-content: space-between;
}

.header-main .logo {
    /* margin-right: 100px; */
}

.header-main .logo a {
    display: flex
;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.header-main .logo a img {
    height: 62px;
}

.header-main .logo a h1 {
    font-family: 'RichardsonBlock', sans-serif;

    margin: 0 10px 0;
    color: #fff;
    font-size: 48px;
    
}



nav {
    flex: auto;
    max-width: 750px;

}

nav ul {
    list-style: none;
    padding: 0;
    display: flex
;
    justify-content: space-between;
    height: 100%;
}

nav ul li a:hover {
    text-shadow: 2px 2px #616a42;
    transform: translateY(2px);
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    font-weight: 300;
    font-family: 'Lexend';
    transition: 0.5s;

    text-transform: uppercase;
}




@media (max-width: 991px) {
    .header-main .logo {
        margin-right: 20px;
    }
    
    nav ul li a {
        font-size: 20px;
        font-weight: 300;
    }
}




@media (max-width: 767px) {
    .responsive-phone {
        display: block;
    }

    .header-main .logo {
        margin-right: 20px;
    }

    .btn-header {
        align-items: center;
        display: flex;
    }


    button.btn-nav-in {
        border: 0;
        font-size: 20px;
        display: block;
        border-radius: 3px;
        color: #6c754d;
        width: 32px;
        height: 32px;
        line-height: 35px;
    }
    
    button.btn-nav-out {
        border: 0;
        font-size: 20px;
        display: block;
        border-radius: 3px;
        color: #6c754d;
        width: 32px;
        height: 32px;
        line-height: 35px;
    }

    .header-phone img {
        filter: contrast(0.4);
        width: 52px;
        height: auto;
    }

    nav {
        flex: auto;
        position: fixed;
        top:0;
        background: #ffffffa6;
        height: 100%;
        width: 100%;
        right: 0;
        transition: 0.5s;
        transform: translateX(100%);
    }

    nav ul {
        flex-direction: column;
        background: #fff;
        padding: 20px;
        height: auto;
        padding-top: 5px;
    }
    
    
    nav ul li a {
        font-size: 20px;
        font-weight: 300;
        color: #000;
        padding: 18px 10px;
    }

    .header-phone {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-phone img {
        filter: contrast(0.4);
        width: 50px;
    }

    li.icon-share {
        display: flex;
        justify-content: center;
    }
}