/* в рамаках тикета 34215 добавляем контакты в шапку сайта
ticket 34215 - adding contacts to the site header*/

.header__phone {
    display: flex;
    gap: 24px;
    font-weight: 700;
}

.header__phone a{
    font-weight: 700;
}

.header__phone a:hover{
    color: #8D8D8D;
}
h1.hidden{
    display: none;
}
@media (max-width: 1439px) {
    .header__phone {
        display: block;
    }
}

@media (max-width: 1200px) {
    .header__menu ul li {
        margin-right: 16px;
    }
}

@media (max-width: 991px) {
    .header__phone {
        display: flex;
        margin-bottom: 15px;
    }

    .mobile-menu-main .header__callback {
        max-width: max-content;
        margin-top: 8px;
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
        position: relative;
        color: #fff;
    }
}

@media (max-width: 490px) {
    .header-mobile-empty {
        height: 130px;
    }

    .header__phone {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .header__phone-number{
        display: flex;
        flex-direction: column;
    }

    .container-header {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .container-header .header__row:first-child {
        order: 2;
    }

  
}


