.info-line {
    width: 100%;
    height: 70px;
    font-family: "Montserrat", sans-serif;
    background: #fff;
    -webkit-box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, .2);
    -moz-box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, .2);
    box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, .2);
}

.info-line__wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-line__first {
    max-width: 33%;
}

.info-line__first-list {
    display: flex;
    align-items: center;
}

.info-line__first-item-text {
    font-size: 22px;
    font-weight: 700;
    transition: color .3s ease-in-out;
}

.info-line__first-item-news {
    transition: color .3s ease-in-out;
}

.info-line__first-item-text:hover,
.info-line__first-item-news:hover {
    color: #0056b3;
    text-decoration: underline;
}

.info-line__first-item-news {
    position: relative;
    display: block;
    /* max-width: 155px; */
    max-width: 210px;
    font-size: 22px;
    font-weight: 700;
    color: #f9ab00;
    padding-right: 33px;
    margin: 0 auto;

    &::before {
        position: absolute;
        content: "";
        background-image: url(../assets/icons/telega.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 30px;
        height: 30px;
        top: 0;
        right: 3px;
    }
}

.info-line__second {
    max-width: 33%;
}

.info-line__second-list {
    display: flex;
    align-items: center;
}

.info-line__callback {
    max-width: 33%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-line__second-item-social {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 5px;
}

.info-line__second-item-logo img {
    display: block;
    margin: 0 auto;
}

.info-line__second-item-sign {
    font-size: 15px;
    font-weight: 700;
}

.info-line__callback a:not(:first-of-type) {
    width: 30px;
    height: 30px;
}

.info-line__callback-tel {
    font-weight: 600;
    font-size: 24px;
    transition: color .3s ease-in-out;
}

.info-line__callback-tel:hover {
    color: #0056b3;
    text-decoration: underline;
}

.info-line__callback a:last-child {
    width: 24px;
    height: 25px;
}

.info-line__second-item-text {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

@media(max-width: 1024px) {
    .info-line__second {
        display: none;
    }
}

@media(max-width: 992px) {
    .info-line__wrapper {
        justify-content: center;
    }

    .info-line__first {
        display: none;
        width: 50%;
    }

    .info-line__callback {
        width: 100%;
        max-width: unset;
        justify-content: center;
    }

    .info-line__first-item-text {
        font-size: 18px;
    }
}