

/* Start:/local/kc.templates/templates/header/css/header.css?174281894111633*/
:root {
    --menu-line: 4px;
    --menu-height: 40px;
}
.menu {
    position: fixed;
    z-index: 1;
    top: 0;
    left: -301px;
    padding: var(--menu-height) 0 70px;
    width: 300px; height: 100vh;
    transition: left .2s;
    overflow-y: auto;
    background-color: var(--color-bgr);
    color: var(--color-txt);
}
.menu.active {
    left: 0;
}

.menu__outer {
    display: block;
    border-top: 1px solid rgba(var(--rgb-txt),.1);
}
.menu__inner {
    display: none;
    width: 100%;
}


.menu__outer a {
    position: relative;
    display: block;
    line-height: 1.2;
}
.b20__menuLvl1>a svg {
    display: none;
}
.b20__menuLvl1>a {
    padding: 10px 17px;
    border-bottom: 1px solid rgba(var(--rgb-txt),.1);
}
.b20__menuLvl2>a {
    padding: 10px 10px 10px 30px;
    border-bottom: 1px solid rgba(var(--rgb-txt),.1);
}


.menu__outer a:hover {
    background-color: rgba(var(--rgb-txt),.05);
}

.menu .active>a:before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: var(--menu-line);
    background-color: var(--color-2);
}


.menu__parent {
    display: flex; flex-wrap: wrap;
}
.menu__parent>a {
    flex-grow: 2;
}
.menu__expander {
    display: flex;
    align-items: center; justify-content: center;
    min-width: 50px;
    border-bottom: 1px solid rgba(var(--rgb-txt),.1);
    border-left: 1px solid rgba(var(--rgb-txt),.1);
    cursor: pointer;
}
.menu__expander svg {
    width: 16px; height: 16px;
    transition: transform .2s;
}
.menu__expander.--active svg {
    transform: rotate(180deg);
}


.menu__contacts {
    display: block;
    padding: 0 17px 17px;
}
.menu__contacts_soc {
    margin-top: 12px;
    margin-left: -6px;
    display: flex;
}

.menu__contacts_mails,
.menu__contacts_addrs {
    margin-top: 15px;
}



@media screen and (min-width: 1200px) {
    .hamburger,
    .menu__expander {
        display: none !important;
    }

    .menu__contacts {
        display: none;
    }

    .menu {
        position: static;
        width: 100%; height: auto;
        padding: 0;
        background-color: rgba(var(--color-bgr),0);
        border: none;
        overflow: visible;
    }

    .header__row .menu {
        height: calc(100% - var(--header-padding) * -2);
        margin-top: calc(var(--header-padding) * -1);
        margin-bottom: calc(var(--header-padding) * -1);
    }

    .menu__outer {
        display: flex;
        justify-content: space-between;
        border: none;
    }
    .menu__inner {
        display: block !important;
        position: absolute;
        padding: 10px 0;
        width: 300px;
        margin-right: -150px;
        top: 100%; right: 50%;
        border-radius: var(--radius);
        background-color: var(--color-bgr);
        box-shadow: 0 5px 20px rgba(0,0,0,.2);
        transform: scaleY(0);
        transition: all .2s;
        transform-origin: top;
        opacity: 0;
        text-align: left;
    }
    .b20__menuLvl1:hover .menu__inner {
        transform: scaleY(1);
        opacity: 1;
    }


    .b20__menuLvl1 {
        position: relative;
        text-align: center;
    }
    .b20__menuLvl1>a {
        position: relative;
        z-index: 100;
        display: inline-flex;
        height: var(--menu-height);
        padding: 0 17px;
        align-items: center; justify-content: center;
        border: none;
    }

    .b20__menuLvl1.active>a:before, .b20__menuLvl1>a:before {
        content: '';
        position: absolute;
        top: auto; bottom: 0;
        right: 15px; left: 15px;
        height: var(--menu-line);
        width: calc(100% - 30px);
        transition: all .2s;
        transform: scaleX(0);
    }

    .b20__menuLvl1.active>a::before {
        transform: scaleX(1);
    }
    .b20__menuLvl1>a::before {
        background-color: var(--color-1);
    }

    .b20__menuLvl1>a:hover {
        color: var(--color-1);
        background-color: rgba(var(--color-bgr),0);;
    }
    .b20__menuLvl1:hover>a::before {
        transform: scaleX(1);
    }




    .b20__menuLvl2>a {
        padding: 10px 20px;
    }

    .menu__parent>a svg {
        display: block;
        margin: 0 -4px 0 9px;
        width: 10px; height: 10px;
    }
    .b20__menuLvl1.menu__parent>a::before {
        right: 33px;
    }



}
.header {
    height: 145px;
}


.header__logoCol {
    align-self: center;
}


.header__top {
    padding-top: 15px;
    /* padding-left: 25px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 90px;
    padding-bottom: 15px;
    border-bottom: solid 1px #D9D9D9;
}
.header__top>.button,
.header__top>div:not(:first-child) {
    margin-left: 35px;
}
.header__telWrap {
    display: flex; align-items: center;
    flex-grow: 2;
    position: relative;
    padding-left: 34px;
    line-height: 1.35;
}
.header__tels {
    font-weight: var(--bold);

}
.header__telWrap .link {
    margin-left: 20px;

}
.header__telIcon svg {
    width: 20px; height: 20px;
    position: absolute;
    left: -1px; top: 50%;
    margin-top: -10px;
    /* transform: scale(-1,1); */
    fill: var(--color-1);
}

.b20__menuLvl1>a {
    padding: 0 5px;
}
.header .b20__socLink {
    display: inline-flex;
    align-items: center; justify-content: center;
    margin: 0 2px;
    width: 35px; height: 35px;
    border-radius: var(--radius);
    border: 1px solid currentColor;
    color: rgba(var(--rgb-txt),.6);
}
.header .b20__socLink svg {
    min-width: 21px; height: 21px;
}
.header .b20__socLink:hover {
    color: var(--color-1);
}





.b.noicons .header__telWrap {
    padding-left: 0;
}
.b.noicons .header__telIcon {
    display: none;
}

.header-adress {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.header-price {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
}
.header-descr {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}
.b20__row {
    display: grid;
    gap: 30px;
    grid-template-columns: 0.2fr 3fr;
}
.header-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.b20__tel a {
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    color: #0063B5;
}
.menu__outer {
    display: flex;
    justify-content: center;
    gap: 68px;
    border: none;
}
.b20__menuLvl1 a {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}
.b20__menuLvl1 a {
    position: relative;
}
.b20__menuLvl1 a:after {
    content:'';
    position: absolute;
    top: 20px;
    left: -40px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 5;
    background: #D9D9D9;
}
.b20__menuLvl1:first-child a:after {
    display: none;
}
.b20__menuLvl2 a:after {
    display: none;
}
.header-row a:hover {
    text-decoration: underline;
}
.header-mobile__logo,
.header-mobile__tels {
    display: none;
}
@media screen and (min-width: 1200px) {

    .b.noexpandmenu .header__menu {
        justify-content: flex-end;
    }
    .b.noexpandmenu .header__menuLvl1 {
        margin-left: 35px;
    }

    .b.noexpandmenu .header__top {
        justify-content: flex-end;
    }
    .b.noexpandmenu .header__telWrap {
        flex-grow: 0;
    }
    .header .menu {
        margin: 5px -15px 0;
        width: calc(100% + 30px);
        padding-left: 25px;
    }
    .header .b20__menuLvl1>a {
        height: auto !important;
        padding-top: 13px;
        padding-bottom: 7px;
        font-size: 1.125em;
    }

}

@media screen and (max-width: 1599px) {
    .menu__outer {
        gap: 40px;
    }
    .b20__menuLvl1 a:after {
        left: -25px;
    }
    .header__top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 45px;
    }
    .header-price {
        justify-content: start;
    }
    .b20__row {
        grid-template-columns: 0.5fr 3fr;
        gap: 10px;
    }
    .header__logoCol {
        /*             display: flex;
        align-items: center;
        justify-content: center;   */
    }
    .menu__outer {
        display: flex;
        justify-content: start;
    }
}
@media screen and (max-width: 1299px) {
    .b20__menuLvl1>a {
        padding: 0 10px;
    }
}
@media screen and (max-width: 1199px) {
    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }


    .header__burger {
        display: block;
        left: 0; top: 0;
        padding: 14px 12px;
        z-index: 600;
        background-color: rgba(var(--rgb-bgr), .8);
    }
    .header__burger.active {
        box-shadow: none;
    }
    .header__logoCol {
        text-align: center;
    }
    .header__logo {
        display: inline-block;
    }

    .header__top {
        padding-left: 0;
    }
    .header {
        height: 130px;
    }
    .header__top {
        border-bottom: 0;
    }
    .b20__row {
        align-items: center;
    }
    .b20__menu .menu__outer {
        flex-direction: column;
    }
    .menu__outer {
        flex-direction: column;
    }
    .header__logoCol,
    .header__top {
        display: none;
    }
    .header {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    .b20__menuLvl1>a {
        padding: 0 10px;
    }
    .header-mobile {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-mobile__logo {
        width: 55px;
    }
    #b20 {
        height: 90px;
        padding: 15px 0 15px;
    }
    .b20__row {
        grid-template-columns: 1fr;
    }
    .header-mobile__logo,
    .header-mobile__tels {
        display: block;
    }
    .menu {
        top: 90px;
        /*             transition: right .2s;
        right: -301px; */
    }
}

@media screen and (max-width: 991px) {
    .header__top {
        flex-wrap: wrap;
        justify-content: center;
    }
    .header__telWrap {
        font-size: .875em;
        line-height: 1.7;
    }
    .header__telIcon {
        display: none;
    }
    .header__telWrap {
        display: block;
        padding: 0;
    }
    .header__telWrap .link {
        margin: 0;
    }
    #b40 .b40__inner {
        padding: 60px 15px 20px;
    }
    .header__soc {
        margin-right: -6px;
    }
    .header .b20__socLink {
        margin: 0 2px;
        width: 28px; height: 28px;
        border: none;
    }
    .header .b20__socLink svg {
        min-width: 20px; height: 20px;
    }
    .menu__outer {
        flex-direction: column;
    }
    .b20__menu .menu__outer {
        flex-direction: column;
    }
    .header-mobile__logo .logo {
        max-width: 100%;
    }

}

@media screen and (max-width: 575px)  {
    .b20__menuWrapper .header {
        padding-bottom: 15px;
    }
    .header__top {
        align-items: flex-start;
    }
    .header__telWrap {
        min-width: 60%;
    }
    .header__soc {
        margin-left: 0 !important;
    }
    .header__top .button {
        margin: 10px auto 0;
    }
    .b20__tel a {
        font-size: 18px;
    }
}
/* End */


/* Start:/local/kc.templates/templates/page_top/css/page_top.css?17429979601019*/
.pagetop {
    -webkit-box-shadow: 0px 12px 14px -20px rgba(0, 0, 0, 0.66) inset;
    -moz-box-shadow: 0px 12px 14px -20px rgba(0, 0, 0, 0.66) inset;
    box-shadow: 0px 12px 14px -20px rgba(0, 0, 0, 0.66) inset;
    padding-top: 70px;
    padding-bottom: 30px;
    background-color: transparent;
}
.pagetop__crumbs {
    margin-bottom: 30px;
    line-height: 1.3;
}
.pagetop__crumbs li {
    display: inline-block;
    font-size: 0.875em;
}
.pagetop__crumbs li>h1 {
    font-weight: normal;
    font-size: 1em;
}
.pagetop__crumbs a {
    color: var(--color-1);
    border-bottom: 1px solid rgba(var(--rgb-1),.4);
}
.pagetop__crumbs a:hover {
    border-color: currentColor;
}
.pagetop__crumbs .sep {
    opacity: .4;
    margin-right: 5px;
    margin-left: 5px;
}
.pagetop__title {
    margin: 0;
}
@media screen and (min-width: 992px) {
    .pagetop__title {
        hyphens: none;
    }
}
.padding_reset{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
/* End */


/* Start:/local/kc.templates/templates/subpages/css/subpages.css?17430793872225*/
.catalog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.catalog-item {
    width: calc(100% / 3 - 27px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 56px 20px 45px;
    position: relative;
    /* border: 10px solid #fff; */
}
.catalog-item div {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}
.catalog-item svg {
    height: 124px;
}
.catalog-item:hover {
    background: var(--color-2);
    color: #fff;
    transition-duration: .5s;
}
.catalog-item:hover svg path {
    fill: #fff;
    transition-duration: .5s;
}
.catalog-border {
    position: absolute;
    width: 273px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    justify-content: center;
    border-radius: 12px;
    border: 10px solid #fff;
    margin: 12px;
    padding: 13px 15px;
    cursor: pointer;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 300ms;
    z-index: 2;
}
.catalog-item:hover .catalog-border {
    visibility: visible;
    opacity: 1;
}
@media(max-width: 991px) {
    .catalog-item {
        width: calc(100% / 2 - 20px);
    }
}
@media(max-width: 991px) {
    .catalog-item {
        width: 100%;
    }
}
.b112__itemOver:hover::before, .b112__itemOver:hover::after {
    opacity: 1;
    transform: scale(1);
}
.b112__itemOver::before {
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: scale(0,1);
}

.b112__itemOver::before, .b112__itemOver::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    z-index: 1;
    opacity: 0;
    transition: opacity .35s,transform .5s;
    pointer-events: none;
}
.b112__itemOver::after {
    border-right: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: scale(1,0);
}

.b112__itemOver::before,
.b112__itemOver::after {
    top: 11px; bottom: 11px;
    right: 11px; left: 11px;
}
/* End */


/* Start:/local/kc.templates/templates/footer/css/footer.css?17428850293481*/
.b31__ {
    margin-top: auto;
    padding: 31px 0 31px;
    color: rgba(var(--rgb-txt), .8);
}
.b31__row {
    display: grid;
    grid-template-columns: 1fr 3.5fr 1.5fr;
    gap: 188px;
}
.b31__contacts-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.b31__menu li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

.footer .logo {
    margin-top: -5px;
    margin-bottom: 15px;
}
.b31__copyright {
    font-size: .875em;
}


.b31__menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 2.1fr;
    row-gap: 17px;
    column-gap: 72px;
}
.b31__menu li {
    line-height: 1.35;
    font-size: .875em;
}

.b31__contacts {
    /* padding-left: 30px; */
    border-left: 1px solid rgba(var(--rgb-txt), .1);
    font-size: .875em;
}
.b31__contact {
    margin-bottom: 8px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 16px;
}

.b31__soc {
    display: flex;
    margin-left: -4px;
}
.b31__socLink {
    font-size: 20px;
}

.b31__bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(var(--rgb-txt), .1);
    background-color: rgba(var(--rgb-4), .025);
    font-size: .875em;
}
.b31__bottomCont {
    display: flex;
    justify-content: space-between; align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.b31__developer {
    display: flex; align-items: center;
    margin-top: 14px;
}
.b31__developer svg {
    margin-left: 18px;
    width: 110px; height: auto;

}
.b31__developer span {
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
}
.b31__tel a:hover,
.b31__mailLink:hover{
    text-decoration: underline;
}
.b31__mailLink {
    border-bottom: none;
}
.b31__cont a:hover,
.b31__bottom a:hover {
    color: var(--color-txt);
}
.b31__tel a,
.b31__mail a {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

@media screen and (max-width: 1499px) {
    .b31__row {
        gap: 20px;
    }
}
@media screen and (max-width: 1299px) {
    .b31__menu ul {
        row-gap: 17px;
    }
}
@media screen and (max-width: 991px) {
    .b31__ {
        padding-top: 50px;
    }
    .footer .logo {
        display: block;
        margin: 0 auto 10px;
        text-align: center;
    }
    .b31__copyright {
        margin-bottom: 40px;
        text-align: center;
    }
    .b31__contacts {
        text-align: center;
        padding-left: 0;
        border-left: none;
    }
    .b31__menu {
        padding: 20px 0 0;
        margin-bottom: 30px;
    }
    .b31__menu li {
        width: auto;
        adding: 0;
    }
    .b31__menu ul {
        justify-content: center;
        margin: 0 auto;
    }
    .b31__bottom {
        margin-top: 5px;
    }
    .b31__soc {
        margin-left: 0;
        justify-content: center;
    }
    .b31__row {
        grid-template-columns: 1fr;
        align-items: center;
    }
    .b31__contacts-row {
        align-items: center;
    }
}
@media screen and (max-width: 767px) {
    .b31__bottomCont {
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
    }
    .b31__developer {
        margin-top: 15px;
        flex-direction: column;
    }
    .b31__developer svg {
        margin: 7px 0 0;
    }
    .b31__menu li {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .b31__soc {
        margin-left: 0;
        justify-content: center;
    }
    .b31__menu ul {
        grid-template-columns: 1fr;
    }
}
/* End */
/* /local/kc.templates/templates/header/css/header.css?174281894111633 */
/* /local/kc.templates/templates/page_top/css/page_top.css?17429979601019 */
/* /local/kc.templates/templates/subpages/css/subpages.css?17430793872225 */
/* /local/kc.templates/templates/footer/css/footer.css?17428850293481 */
