.header__message{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

/* Адрес и телефон */
.message__contacts{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.contacts__phone,
.contacts__address{
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
}
.contacts__phone{
    margin-right: 10px;
    text-decoration: none;
    color: black;
    font-size: 16px;
}
.contacts__time{
    padding-left: 10px;
    font-size: 14px;
}
.contacts__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
}

/* Соц сети и месенжеры */
.message__social{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social__item{
    list-style: none;
}
.social__link{
    display: block;
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    color: #262626;
    margin: 0 10px;
    transition: .5s;
}
.mail{
    display: none;
}
.whatsapp{
    display: none;
}
.mail__pk{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.mail__pk ion-icon{
    margin-right: 5px;
}
.social__link span{
    position: absolute;
    transition: transform .5s;
}
.social__link span:nth-child(1),
.social__link span:nth-child(3){
    width: 100%;
    height: 1px;
    background: #262626;
}
.social__link span:nth-child(1){
    top: 0;
    left: 0;
    transform-origin: right;
}
.social__link:hover span:nth-child(1){
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s;
}
.social__link span:nth-child(3){
    bottom: 0;
    left: 0;
    transform-origin: left;
}
.social__link:hover span:nth-child(3){
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
}
/* Меню и лого */
.header{
    margin-top: 4px;
    background-color: rgb(0, 255, 96);
    border-bottom: 1px solid #eee;
}
.header__nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 59px;
}
.header__button{
    display: flex;
    justify-content: center;
    align-items: center;
    /*border-bottom: 1px solid #eee;*/
}
.nav__logo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Alegreya', serif;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    color: black;
}

.logo{
    text-decoration: none;
}
.logo__img{
    width: 85px;
    height: 59px;
    max-width: 85px;
    max-height: 59px;
}
.logo__img img{
    max-width: 100%;
    max-height: 100%;
}

.header-nav__button{
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-left: 20px;
}

.header__body ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__item{
    list-style: none;
}
.nav__item a{
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background-color: rgb(0, 255, 96);
    color: #262626;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.nav__item a:hover{
    background-color: rgb(0, 160, 0);
}
@media (max-width: 768px) {
    /* Телефон Адрес и Соц сети */
    .message__contacts {
        flex-direction: column;
        align-items: start;
    }
    .social__link {
        width: 35px;
        height: 35px;
        line-height: 40px;
        font-size: 18px;
        margin: 0 5px;
    }
    .mail{
        display: block;
    }
    .contacts__time{
        padding-left: 0;
        font-size: 12px;
    }
    .whatsapp{
        display: block;
    }
    .mail__pk{
        display: none;
    }
    .contacts__phone{
        font-size: 14px;
    }
    .nav_container {
        display: block;
        position: relative;
    }
    /* Меню */
    .header__nav{
        position: relative;
    }
    .header__button {
        justify-content: space-between;
        width: 100%;
        height: 50px;
    }
    .header-nav__button{
        display: flex;
        justify-content: space-between;
    }
    .header__body{
        display: none;
        width: 100%;
        position: absolute;
        top: 59px;
        left: 0;
        z-index: 3;
    }
    .header__body ul{
        display: block;
        border-top: 1px solid #eee;
    }
    .header__body.active{
        display: block;
    }
}