.header{
    padding: 15px 30px;
    background-size: 100% 100%;
    width: 100%;
    display: grid;
    column-gap: 7%;
}
.info{
    grid-row: 1/2;
    grid-column: 2/-1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}


.info__item{
    /*border-right: 1px solid #fff;*/
    padding: 5px;
    display: flex;
    width: max-content;
}

.info__item_type_soc{
    gap: 5px;
}

.info__link{
    display: flex;
    gap: 4px;
    width: max-content;
    align-items: center;
}

.info__image{
    min-width: 20px;
    height: 20px;
}

.info__content{
    font-size: 18px;
}

.link{
    color: #fff;
    text-decoration: none;
}

.link_type_burger{
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link:hover{
    cursor: pointer;
}

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

.navigator__list{
    display: flex;
    gap: 25px;
    align-items: center;
}

.navigator__item{
    list-style-type: none;
    font-size: 21px;
    color: #fff;
    opacity: 0.6;
}

.navigator__link{
    font-size: 20px;
}

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

.header__basket{
    width: 24px;
    height: 20px;
}

.header__basket:hover{
    cursor: pointer;
}

.hero{
    grid-row: 3/4;
    grid-column: 2/-1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.call-me{
    background: url("../pictures/callme.png") no-repeat center center;
    background-size: 100% 100%;
    border: none;
    width: 202px;
    height: 47px;
    margin-bottom: 5%;
}

.call-me:hover{
    cursor: pointer;
}

.burger{
    display: none;
}

@media (max-width: 768px) {
    .info {
        display: none;
    }
    .navigator{
        display: none;
    }
    .burger { display: inline-block; }
}
.burger {
    position: relative;
}

/* меню по умолчанию */
.burger-menu {
    position: absolute;
    top: 0;
    right: 80%;  /* впритык к кнопке слева */
    /*width: 300px;*/
    width: 70vw;
    height: 90vh;
    background: rgba(0, 0, 0, .7);
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    transform: translateX(120%);
    transition: transform .4s ease;
    z-index: 1000;
    border-radius: var(--main-border);
}

/* активное состояние — выезжает */
.burger-menu.active {
    transform: translateX(0);
}

/* кнопка */
.button_type_burger {
    width: 55px;
    height: 55px;
    transition: transform 0.3s ease;
    z-index: 1001; /* поверх меню */
    position: relative;
}


