.section-nav-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 90;
    -webkit-box-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 40px;
    width: 80%;
}

.section-nav-wrapper.is-unstuck {
    position: relative;
    top: auto !important;
    box-shadow: none;
}

.section-nav-wrapper .nav-toggle {
    display: block;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
    border: 0;
}

.section-nav-wrapper .nav-burger {
    display: none;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: .85rem 2rem;
    cursor: pointer;
    font-size: .875rem;
    font-weight: 500;
    color: #1a1a1a;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.section-nav-wrapper .nav-icon {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.section-nav-wrapper .section-nav {
    list-style: none;
    display: -webkit-inline-box;
    display: inline-flex;
    /* max-width: 1100px; */
    /* margin: 0 auto; */
    padding: .7rem;
    background: #91D0D5;
    border-radius: 50px;
}

.section-nav-wrapper .section-nav li a {
    display: block;
    padding: .8rem 1.8rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #5a6a82;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: 1px solid transparent;
    border-radius: 50px;
    white-space: nowrap;
}

.section-nav-wrapper .section-nav li a.active {
    color: #1D1921;
    /* border: 1px solid #1D1921; */
    text-decoration: underline;
}

@media (max-width: 767px) {
    .section-nav-wrapper {
        background: #91D0D5;
        color: #1D1921;
        padding-top: 0;
        max-width: 320px;
        height: 50px;
        top: 30px!important;
/*         border-radius: 50px; */
    }

    .section-nav-wrapper .nav-burger {
        display: -webkit-box;
        display: flex;
        color: #1D1921;
        margin-bottom: 0;
		padding: .85rem 1.5rem;
    }
	
	.section-nav-wrapper .nav-burger .nav-burger__label {
        font-weight: 700;
    }

    .section-nav-wrapper .section-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 89;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        background: #91D0D5FA;
        border-radius: 0;
    }
	
	.section-nav-wrapper .nav-toggle:checked ~ .section-nav {
        max-height: 400px;
    }

    .section-nav-wrapper .section-nav li a {
        padding: .85rem 1.5rem;
        font-size: .875rem;
        border: unset;
    }

    .section-nav-wrapper .section-nav li a.active {
        border: unset;
        font-weight: 700;
    }
}