.header__logo {
    margin: auto;
}
.header__logo-wrap {
    flex: none;
    text-align: center;
}
.header__logo-wrap .header__contacts-item {
    font-size: 13px;
    margin-top: 12px;
}
.header__logo-wrap .header__contacts-item > svg {
    width: 14px;
    height: 20px;
}

.header__menu {
    gap: 40px;
}
.header__content-right {
    gap: 40px;
    flex: none;
}
.header__contacts-item a {
    white-space: nowrap;
}
.header__btn {
    flex: none;
}
.header__contacts-mob {
    display: none;
}
@media screen and (max-width: 1560px) {
    .header__logo {
        width: 100px;
    }
    .header__menu {
        gap: 10px;
        flex: auto;
    }
    .header__content-right {
        gap: 10px;
    }
    .header__contacts-item {
        font-size: 12px;
        gap: 5px;
    }
    .header__contacts-item > svg {
        height: 20px;
        width: auto;
    }
    .header__logo-wrap .header__contacts-item {
        font-size: 10px;
        margin-top: 0;
    }
    .header__btn {
        max-width: 150px;
        font-size: 12px;
    }
}
@media screen and (max-width: 620px) {
    .header__logo-wrap .header__contacts-item {
        display: none;
    }
    .header__menu {
        display: none;
    }
    .header__content {
        gap: 10px;
    }
    .header__contacts-mob {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-self: flex-end;
        flex: auto;
    }
    .header__contacts-item.mob-hide {
        display: none;
    }
    .header__contacts-item {
        font-size: 9px;
        line-height: 10px;
        font-weight: 600;
    }
    .header__contacts-item:first-child {
        font-size: 12px;
    }

    .header__contacts-item > svg {
        height: 13px;
    }
    .header__contacts-item:first-child > svg {
        height: 15px;
    }
}

.color-accent {
    color: var(--accent);
}