.humburger {
    right: 20px;
    left: inherit;
}

.site-branding {
    flex-wrap: nowrap;
    padding-left: 0;
    justify-content: flex-start;
}

.site-logotype {
    width: 76px;
    margin-right: 0;
}

.site-branding__body {
    flex: 0 1 0;
}

.site-title {
    letter-spacing: 0.066em;
}

.main-navigation ul li>a {
    padding: 15px;
}

@media (min-width: 480px) {
    #header_menu {
        flex-direction: row;
    }
}

.site-header-top {
    position: relative;
    padding: 10px 0;
}

@media (min-width: 992px) {
    .site-header-top {
        padding: 0;
    }
}

.site-header-top:before, .site-header-top:after {
    content: "";
    position: absolute;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw) !important;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: inset 0 -1px 0 0 #f2f5f9;
}

.site-header-top:after {
    box-shadow: inset 0 1px 0 0 #f2f5f9;
}

@media (min-width: 992px) {
    .site-header-top:before, .site-header-top:after {
        box-shadow: none;
    }
}

.site-header-top__wrap {
    display: flex;
    gap: 20px;
    align-items: baseline;
    flex-direction: row !important;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .site-header-top__wrap {
        align-items: center;
        margin-left: 10px;
    }
}

.contacts-item .top-contacts__text {
    font-size: 12px;
    font-weight: normal;
    padding: 0;
}

.contacts-item--descr {
    display: none;
}

@media (min-width: 768px) {
    .contacts-item--descr {
        display: block;
        flex: 0 1 165px;
        text-align: left;
    }

    .contacts-item--descr .top-contacts__text {
        font-size: 16px;
        font-weight: normal;
        padding: 0;
    }
}

.top-contacts__text {
    display: block;
    font-size: 12px;
}

.contacts-item--adress {
    display: block;
    text-align: left;
}

@media (min-width: 448px) {
    .contacts-item--adress {
        flex: 0 1 115px;

    }
}

.contacts-item--messenger {
    order: 3;
    flex: 0 1 100px;
    text-align: left;
}

@media (min-width: 992px) {
    .contacts-item--messenger {
        order: 0;
    }
}

.contacts-item--schedule {
    flex: 0 1 170px;
    text-align: left;
}

.contacts-item .top-contacts__link {
    font-size: 12px;
    padding: 0;
}

.contacts-item .top-contacts__link--map {
    text-transform: uppercase;
    font-size: 10px;
}

.top-contacts__link.top-contacts__link--map,
.top-contacts__link.top-contacts__link--email {
    color: var(--red-color);
    font-weight: bold;
}

.top-contacts__link--phone {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    display: block;
}

.contacts-item .top-contacts__link--telegram,
.contacts-item .top-contacts__link--whatsapp {
    display: inline-flex;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    justify-content: center;
}

.top-contacts__link--telegram {
    background: #40B3E0;
}

.top-contacts__link--whatsapp {
    background: #25D366;
}

.contacts-item .top-contacts__link--telegram svg,
.contacts-item .top-contacts__link--whatsapp svg {
    width: 22px;
    height: 22px;
    fill: var(--light-color);
    flex: 0 0 22px;
}

.contacts-item .top-contacts__btn {
    display: block;
    /*font-family: var(--font-primary);*/
    color: var(--red-color);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
}

.link-line-dotted {
    position: relative;
    cursor: pointer;
}

.link-line-dotted::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    height: 0;
    border-bottom: 0.0520833333vw dashed #FF4019;
    transition: 0.3s;
}

.link-line-dotted:hover::after {
    width: 60%;
    right: 40%;
}