.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 15px;
}
.menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-wrap ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.menu-wrap li {
    float: left;
}

.menu-wrap li a{
    display: block;
    color: #333333;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    transition: .5s;
}

.menu-wrap li a:hover {
    color: #111111;
    text-decoration: underline;
}
.download-button {
    cursor: pointer;
    margin-left: 30px;
    color: #76C741;
    border: 1px solid #76C741;
    border-radius: 8px;
    padding: 12px 24px;
    transition: .6s;
}
.download-button:hover {
    background-color: #76C741;
    color: white;
}

.mob-header-wrap {
    display: none;
}
.mob-header-wrap-nav {
    display: flex;
    justify-content: center;
    z-index: 100;
    padding: 24px;
    background-color: #3D3D4F;
    position: relative;
}
.mob-header-nav {
    display: none;
    margin-top: 72px;
    height: 100vh;
    position: fixed;
    background-color: #2C2C39;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding: 25% 15px 0 15px;
    text-align: center;
}
.mob-header-nav__item {
    font-size: 20px;
    margin-bottom: 20px;
}
.mob-header-nav__item a{
    color: white;
    text-decoration: none;
}
.mob-header-nav__button {
    color: #76C741;
    border: 1px solid #76C741;
    border-radius: 8px;
    padding: 12px 24px;
    max-width: 196px;
    margin: 0 auto;
}

.mob-header-burger {
    position: absolute;
    top: 28px;
    left: 24px;
    z-index: 100;
    width: 32px;
    cursor: pointer;
}
.mob-header-burger div{
    background: white;
    margin-bottom: 6px;
    height: 2px;
    transition: .6s;
}
.turn-down {
    position: relative;
    top: 8.5px;
    transform: rotate(45deg);
}
.turn-up {
    position: relative;
    bottom: 7.5px;
    transform: rotate(-45deg);
}
.turn-invisible {
    opacity: 0;
}

@media screen and (max-width: 715px){
    .header-wrap {
        display: none;
    }
    .mob-header-wrap {
        display: block;
    }
}
