* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a,
a:visited {
    color: #111;
}

.mobile-buttons {
    display: none;
}

.page-header-top-mobile__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

input {
    padding-left: 30px;
}

.burger {
    display: inline-block;
    position: relative;
    z-index: 6;
    border: 0;
    line-height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    background-color: #fff;
    width: 72px;
    height: 72px;
    padding: 20px;
    outline: 0
}

.burger__wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-right: 20px;
    background-color: #fff;
    z-index: 5;
    display: none;
}

.burger__wrapper:after {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 9px 18.4px .6px rgba(0, 0, 0, .13);
    box-shadow: 0 9px 18.4px .6px rgba(0, 0, 0, .13);
    z-index: 4
}

.burger:hover {
    background-color: #fff
}

.burger:active {
    background-color: #fff
}

.burger>span {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 3px;
    vertical-align: middle;
    font-size: 0;
    color: transparent;
    background: #000;
    -webkit-transition: background .3s .3s;
    transition: background .3s .3s;
    pointer-events: none
}

.burger>span:before,
.burger>span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: top .3s .3s, -webkit-transform .3s;
    transition: top .3s .3s, -webkit-transform .3s;
    transition: top .3s .3s, transform .3s;
    transition: top .3s .3s, transform .3s, -webkit-transform .3s;
}

.burger>span:before {
    top: -10px
}

.burger>span:after {
    top: 10px
}

.burger--close>span {
    -webkit-transition: background .3s 0s;
    transition: background .3s 0s;
    background: 0 0
}

.burger--close>span:before,
.burger--close>span:after {
    top: 0;
    -webkit-transition: top .3s, -webkit-transform .3s .3s;
    transition: top .3s, -webkit-transform .3s .3s;
    transition: top .3s, transform .3s .3s;
    transition: top .3s, transform .3s .3s, -webkit-transform .3s .3s
}

.burger--close>span:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg)
}

.burger--close>span:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg)
}

.flex-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-block_column {
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
}

.flex-block_j-center {
    justify-content: center;
    -webkit-justify-content: center;
}

.flex-block_a-center {
    align-items: center;
    -webkit-align-items: center;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
}

.header__container {
    margin: 0 auto;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    height: 66px;
    max-width: 1280px;
}

.header__sup {
    width: 100%;
    height: 66px;
    background: #FFFFFF;
}

.header .burger {
    box-sizing: border-box;
    padding: 23px 20px;
}

.header__logo {
    max-width: 93px;
    max-height: 26px;
}

.header .header-description {
    color: #8E8E8E;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 23px;
}

.header .search__inner {
    height: 30px;
    flex-shrink: 0;
    margin-left: 19px;
    position: relative;
    width: 228px;
}

.header.active .search__inner {
    display: block;
}

.header .search__inner svg {
    position: absolute;
    left: 11px;
    top: 8px;
    z-index: 9;
}

.header .field-search__input {
    box-sizing: border-box;
    border-radius: 2px;
    border: 0.2px solid #000;
    background: #FFF;
    padding: 8px 70px 10px 34px;
    color: #B9ACAC;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 30px;
    min-height: 30px;
    position: relative;
    width: 100%;
}

.header__search-btn {
    width: 77px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 2px;
    background: #AA1A35;
    position: absolute;
    right: 0;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    outline: none;
    border: 0;
    top: 0;
}

.header .field-search__input::placeholder {
    color: #B9ACAC;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header .field-search__input::-webkit-input-placeholder {
    color: #B9ACAC;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header .field-search__input::-moz-placeholder {
    color: #B9ACAC;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header .field-search__input:-ms-input-placeholder {
    color: #B9ACAC;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header .field-search__input:-moz-placeholder {
    color: #B9ACAC;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.header .header-region {
    margin: 0 0 0 20px;
    font-family: 'Roboto', sans-serif;
}

.header .header-region__text {
    color: #34373C;
    text-align: left;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 4px;
}

.header .header-region__link {
    color: #34373C;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline !important;
    cursor: pointer;
}

.header .header-region__link:hover {
    color: #DA2B2B !important;
}

.header__wa {
    background: url("/images/wa-icon.png");
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    margin-left: 60px;
}

.header__contacts {
    color: #34373C;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    text-align: right;
    margin-left: 53px;
}

.header__contacts-open {
    font-size: 12px;
    font-weight: 400;
    position: relative;
    margin-bottom: 5px;
    padding-left: 13px;
}

.header__contacts-open:before {
    width: 8px;
    height: 8px;
    content: '';
    background: #29A71A;
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 50%;
    animation: pulseOpen infinite 3s alternate;
}

@keyframes pulseOpen {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
    80% {
        opacity: 0.3;
    }
}

.header__contacts-phone {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    text-decoration: none;
}

.header .btn * {
    flex-shrink: 0;
}

.header .btn {
    width: 150px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 4px;
    background-color: #da2b2b;
    border: 0;
    cursor: pointer;
}

.header .btn__text {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 139.523%;
    margin-left: 10px;
    text-transform: none;
}

.header .header-btn {
    margin-left: 20px;
}

.header__sub {
    width: 100%;
    padding: 20px 0 21px 0;
    background: #F1F2F4;
    position: relative;
    z-index: 9;
    height: 66px;
}

.header__menu {
    gap: 72px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu-item--link {
    color: #34373C;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    text-transform: uppercase;
}

.header__menu-item--link:hover {
    color: #DA2B2B;
}

.header__search {
    display: none;
}

.header__top-mobile {
    display: none;
}

@media (max-width: 1050px) {
    .field-search input {
        padding-left: 40px;
        width: 100%;
    }
    .header__sub,
    .header__contacts,
    .header .header-description,
    .header .header-btn,
    .header__wa {
        display: none;
    }
    .header .burger__wrapper {
        width: auto;
        height: auto;
        margin-right: 23px;
        display: block;
    }
    .header .burger {
        width: 72px;
        height: 50px;
        flex-shrink: 0;
        filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
        display: flex;
        padding-top: 16px;
    }
    .header .burger__wrapper:after {
        display: none;
    }
    .header .burger>span,
    .header .burger>span:before,
    .header .burger>span:after {
        height: 3px;
    }
    .header .burger>span {
        top: -3px;
    }
    .header .burger>span:before {
        top: 20px;
    }
    .header .burger>span:after {
        top: 10px;
    }
    .header__sup {
        height: auto;
    }
    .header {
        overflow: hidden;
        background: #FFFFFF;
    }
    .header .header-region__inner-header {
        flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        align-items: baseline;
        -webkit-align-items: baseline;
    }
    .header .header-region {
        margin: 0 36px;
    }
    .header__container {
        position: relative;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        height: auto;
    }
    .header .search__inner {
        position: absolute;
        width: 100%;
        bottom: -30px;
        margin: 0;
        display: none;
    }
    .header .header-region__text {
        display: block;
    }
    .header__search {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin-right: 20px;
    }
    .header-no-overflow {
        overflow: visible !important;
    }
    .header .search__inner svg {
        left: 18px;
    }
    .header .field-search__input {
        padding-left: 56px;
    }
    .header__top-mobile {
        width: 100%;
        display: table;
    }
    .header .page-header-top-mobile__phone {
        background: #F1F2F4;
        padding: 0 10px;
        color: #34373C;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        flex: 1;
        height: 30px;
    }
    .header .page-header-top-mobile__btn {
        flex: 1;
        background: #DA2B2B;
        padding: 0 10px;
        color: #FFF;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 139.523%;
        text-transform: none;
        height: 30px;
    }
    .header .page-header-top-mobile__btn svg {
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .mobile-buttons {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        width: 100%;
        z-index: 99;
        position: fixed;
        bottom: 0;
        height: 60px;
    }
    html body .mobile-buttons .mobile-buttons__call {
        width: 100%;
        background: #07B824;
        color: #FFF;
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-decoration: none;
    }
    .mobile-buttons__call-icon {
        background: url("/articles/wp-content/themes/reboot_child/assets/images/header/call-icon.png") center center no-repeat;
        width: 20px;
        height: 20px;
        display: block;
        margin-right: 19px;
    }
}


/* ТОП-БАР*/

.promo-bar-mob {
    display: none;
}

.promo-bar {
    width: 100%;
    background-color: #2B71D9;
    font-family: 'Roboto', sans-serif;
    padding: 10px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.promo-bar-wrapper {
    max-width: 1260px;
    display: flex;
    color: #FFFFFF;
    align-items: center;
    height: auto;
    justify-content: space-around;
}

.promo-bar__date {
    line-height: 18.75px;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 7px 10px;
    max-height: 35px;
    white-space: nowrap;
}

.date {
    font-weight: 600;
}

.promo-bar .mob{
    display: none;
}

.promo-bar__content {
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    padding: 11px;
}

.promo-bar__content span {
    text-decoration: line-through;
}

.promo-bar__btn {
    background-color: #AA1A35;
    padding: 8px 50px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    cursor: pointer;
    white-space: nowrap;
}

.promo-bar__btn {
    color: #fff;
}

.promo-bar__btn:hover {
    color: #fff;
}

.top-bar__close {
    cursor: pointer;
}

.top-bar__close svg path {
    stroke: #FFFFFF;
}

@media (max-width: 1170px) {
    .promo-bar__btn {
        padding: 10px 16px;
    }
}

@media (max-width: 1050px) {
    .promo-bar {
        display: none;
    }

    .promo-bar .mob{
        display: block;
    }

    .promo-bar-mob {
        display: flex;
        color: #FFFFFF;
        margin-top: 0;
        background-color: #2B71D9;
        justify-content: center;
        width: 100%;
        height: auto;
    }
    .header.active .promo-bar-mob {
        margin-top: 30px;
    }
    .promo-bar-wrapper-mob {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 5px;
        align-items: center;
    }
    .promo-bar-wrapper__content {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }
    .top-bar__close-mob {
        cursor: pointer;
        width: 12px;
        height: 12px;
    }
    .top-bar__close-mob svg path {
        stroke: #FFFFFF;
    }
    .promo-bar__btn {
        background-color: #AA1A35;
        padding: 5px 16px;
        height: auto;
        text-align: center;
        border-radius: 4px;
        font-weight: 600;
        font-size: 16px;
        line-height: 23px;
        cursor: pointer;
        width: 100%;
    }
    .promo-bar__date-mob {
        line-height: 14px;
        font-weight: 400;
        font-size: 12px;
        border: 1px solid #ffffff;
        border-radius: 30px;
        height: auto;
        text-align: center;
        padding: 3px 12px;
        white-space: nowrap;
    }
    .promo-bar__content-mob {
        font-size: 14px;
        font-weight: 600;
        line-height: 18px;
        letter-spacing: 0em;
        text-align: left;
        padding-left: 10px;
    }
    .promo-bar__content-mob span {
        text-decoration: line-through;
    }
}

body .awesome-btn {
    display: none !important;
}