/* СТИЛИ ШАПКИ */
header .topLabel{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
header .topLabel .imgLogo{
    display: block;
}
header .topLabel .imgLogoMobile{
    display: none;
}
header .topLabel .topInfo{
    line-height: 18px;
    text-align: end;
    margin-top: 5px;
}
header .topLabel .topInfo p{
    font-size: 15px;
    margin-bottom: 0;
    color: #2E3479;
}
header .topLabel .topInfo a{
    color: #2E3479;
    font-size: 21px;
    font-weight: 600;
}

@media (max-width: 767px)
{
    /* ШАПКА */
    header{
        background-color: #251434;
    }
    header .topLabel .imgLogo{
        display: none;
    }
    header .topLabel .imgLogoMobile{
        display: block;
    }
    header .topLabel .topInfo a{
        color: #fff;
    }
    header .topLabel .topInfo p{
        color: #fff;
    }
}

@media (max-width: 575px)
{
    /* ШАПКА */
    header .topLabel{
        justify-content: space-between;
    }
    header .topLabel .imgLogoMobile img{
        width: 80%;
    }
    header .topLabel .topInfo{
        margin-right: 20px;
    }
    header .topLabel .topInfo a{
        font-size: 15px;
    }
    header .topLabel .topInfo p{
        font-size: 13px;
    }
}
