/*-----------------------------------------------------------------------*/
.header {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 160px;
    flex-wrap: wrap;
    background-position: 50% 100%;			/* Положение фона */
    background-repeat: repeat-x;			/* Фоновый рисунок повторяется только по горизонтали */
}
/*-----------------------------------------------------------------------*/
.logotypeBlock {
    flex-shrink: 0;
    width: auto;
    padding: 15px 20px;
    overflow: hidden;
}
.logotypeBlock img {
    height: 120px;
    width: auto;
}
/*-----------------------------------------------------------------------*/
.logoTXT {
    flex: 1;
    min-width: 0;
    padding: 15px 15px 0;
    overflow: hidden;
}
/*-----------------------------------------------------------------------*/
.logositeSubtitle {
    text-align: center;
    color: var(--color-primary);
    font-size: 22px;
    font-weight: normal;
    font-family: var(--font-main);
    line-height: 1.5;
}
/*-----------------------------------------------------------------------*/
.logotype {
    flex-shrink: 0;
    width: 120px;
    padding-top: 5px;
    padding-left: 15px;
    padding-bottom: 5px;
    overflow: hidden;
}
/*-----------------------------------------------------------------------*/

@media (max-width: 768px) {
    .header        { justify-content: center; }
    .logotypeBlock { width: auto; padding: 10px 15px; }
    .logotypeBlock img { height: 70px; }
    .logoTXT       { width: 100%; text-align: center; }
    .logositeSubtitle { font-size: 16px; }
    .logotype      { display: none; }
}
