:root {
	--yellow: #EBB144;
	--yellow-hovered: #FFB400;
	--blue: #458BE0;
	--gray: #7E8B98;
}
hr {
    border-top: 1px solid #ffffff1a;
}
@media (min-width: 1260px) {
    .container {
        width: 1260px;
    }
}
.header {
    height: 190px;
    background: #2B3036;
}
header {
    height: 140px;
}
header .container {
    height: 100%;
}
.header__container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header__col:first-of-type,
.header__col:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc((100% - 60px) / 4);
}
.header__col {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 40px;
    width: calc(((100% - 40px) / 4) * 2 + 20px);
}
.header__shop {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #FFFFFF;
}
.header__shop img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}
.header__shop-phone {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    color: var(--yellow);
}
.header__shop-map {
    color: #FFFFFF;
}
.header__shop-phone:hover,
.header__shop-map:hover {
    color: var(--yellow-hovered);
}
.header-menu__wrapper {
    width: 100%;
    background-color: #0000001A;
}
.sticky .header-menu__wrapper{
    position:fixed;
    background: #272b31;
    top: 0;
    z-index: 1111;
}
.header-menu {
    width: 100%;
    height: 50px;
}
.header-menu__burger {
    display: none;
}
.header-menu ul {
    width: 100%;
    display: inline-flex;
    gap: 88px;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 50px;
}
.header-menu ul li {
    margin-bottom: 0;
}
.header-menu ul li a {
    display: inline-flex;
    gap: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #FFFFFF;
    text-decoration: none;
}
.header-menu ul li a:hover {
    color: var(--yellow-hovered);
}
.subpage {
    display: none;
    flex-direction: column;
    background: #21262C;
    width: 230px;
    position: absolute;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    z-index: 1000000;
}
.header-menu ul li:hover .subpage {
    display: flex;
}
.subpage a {
    padding: 10px 25px;
    text-align: left;
    border-bottom: 1px solid #2f2e2e;
}
.has-sub > a:after {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    background: url(/assets/icons/menu_arrow.svg);
}
.has-sub:hover .subpage {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    opacity: 1;
}
footer {
    background: #272B31;
}
footer hr {
    margin: 0;
}
.footer__copyright {
    height: 50px;
    display: flex;
}
.footer__copyright-left,
.footer__copyright-right {
    width: 50%;
    height: 100%;
}
.footer__copyright-right {
    text-align: right;
}
.footer__copyright p {
    display: inline-flex;
    margin: auto 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: #FFFFFF33;
}
.footer__menu {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 24px 0 54px 0;
}
.footer__menu-column {
    width: calc((100% - 80px) / 5);
}
.footer__menu-column > a {
    font-size: 22px;
    font-weight: 700;
    line-height: 29.96px;
    text-align: left;
    color: #FFFFFF;
    opacity: 0.3;
}
.footer__menu-column .button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.footer__menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.footer__menu-items > a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
    text-align: left;
    color: #FFFFFF;
}
.footer__contact {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    text-align: right;
    margin-bottom: 16px;
}
.footer__contact img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}
.footer__contact a {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
    color: var(--yellow);
}
.footer__contact a:hover {
    color: var(--yellow-hovered);
}
.footer__menu a:hover {
    color: var(--yellow-hovered);
    opacity: 1;
}
.footer-menu__header a {
    font-size: 22px;
    font-weight: 700;
    line-height: 29.96px;
    text-align: left;
    color: #FFFFFF4D;
}
.footer-menu__header img {
    display: none;
}
.button {
    padding: 20px 43px;
    border-radius: 5px;
    border: 2px solid;
    width: fit-content;
}
.button-yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0px 0px 6px 3px #EBB14440;
    font-family: Open Sans;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #FFFFFF;
}
.button-yellow:hover {
    background: var(--yellow-hovered);
}
.button-blue {
    padding: 20px 60px 22px 60px;
    border-radius: 5px;
    background: var(--blue);
    box-shadow: 0px 0px 6px 3px #458BE040;
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
    text-align: left;
}
.button-transparent {
    padding: 20px 60px 22px 60px;
    border-radius: 5px;
    border: 1px solid #FFFFFF33;
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
    text-align: left;
    color: #FFFFFF;
    background: none;
}
.rotate {
    rotate: 180deg;
}
#totop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ebb145;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.form_notification_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1111111111;
    background: rgba(0,0,0,.8);
    display: none;
}
.form_notification {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_notification .success {
    background: mediumseagreen;
}
.form_notification .error{
    background: red;
}
.form_notification p {
    color: #fff;
    padding: 40px;
    position: relative;
}
.form_notification p .fclose {
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 3px;
    right: 3px;
    color: #fff;
    cursor: pointer;
}
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: rgba(0,0,0,.8);
    display: none;
}
.modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-container form {
    position: relative;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #2B3036;
    padding: 40px 20px 20px 20px;
    border-radius: 5px;
}
.modal-container form .fclose {
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 8px;
    right: 20px;
    color: #fff;
    cursor: pointer;
}
.modal-container form input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 6px;
    background: #494E54;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    color: #FFFFFF99;
    margin-bottom: 12px;
    height: 50px;
}
.modal-container form button {
    text-align: center;
}
.modal-container .success {
    background: mediumseagreen;
}
.modal-container .error{
    background: red;
}
.modal-container .message {
    margin: 12px 0 0 0;
    color: #fff;
    padding: 20px;
    position: relative;
    border-radius: 5px;
}

*{box-sizing:border-box}
body{margin:0;font-family:Arial,sans-serif;color:#222;background:#fff;line-height:1.5}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
/* .container{width:min(1180px,calc(100% - 32px));margin:0 auto} */
.contacts{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap;gap:12px 22px;font-size:14px;color:#333}
.contacts a{color:#1f1f1f;font-weight:600}
.btn,.seo-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:4px;border:0;background:#f7c400;color:#111!important;font-weight:700;cursor:pointer}
.breadcrumbs{padding:16px 0;background:#f7f7f7;border-bottom:1px solid #eee}.breadcrumb-list{margin:0;padding:0;list-style:none;display:flex;align-items:center;flex-wrap:wrap;gap:8px;color:#777;font-size:14px}.breadcrumb-list li:not(:last-child)::after{content:"/";margin-left:8px;color:#aaa}
.page-layout{display:grid;grid-template-columns:1fr;gap:0;padding:32px 0 48px}.sidebar{display:none}.content{width:100%}.content--wide{max-width:100%}.seo-split{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.15fr);gap:18px}.seo-split .seo-panel{height:100%}.catalog-more{display:flex;justify-content:center;margin-top:18px}
.sidebar-widget{border:1px solid #e7e7e7;border-radius:4px;overflow:hidden;background:#fff}.sidebar-widget__title{display:block;padding:15px 18px;background:#333;color:#fff;font-size:20px;font-weight:700}.sidebar-menu{padding:12px 0}.sidebar-menu a,.sidebar-menu__group-title{display:block;padding:9px 18px;color:#333;font-size:15px}.sidebar-menu a:hover{background:#f5f5f5}.sidebar-menu__group-title{font-weight:700;color:#111}.sidebar-menu__sub a{padding-left:34px;color:#555}.sidebar-menu .current{color:#b88800;font-weight:700}
.content h1{margin:0 0 24px;font-size:32px;line-height:1.2;color:#222}.content h2{margin:0 0 16px;font-size:26px;line-height:1.25}.content h3{margin:0 0 8px;font-size:18px;line-height:1.25}.content p{margin:0 0 12px}
.seo-block{margin:0 0 28px}.seo-panel{padding:24px;border:1px solid #e7e2da;border-radius:10px;background:#fff}.seo-soft{background:#fbfaf7}
.seo-hero{display:grid;grid-template-columns:minmax(0,1.45fr) 300px;gap:22px;align-items:stretch;margin-bottom:26px;padding:26px;border:1px solid #e6dfd4;border-radius:12px;background:linear-gradient(135deg,#fbfaf7 0%,#fff 58%,#f6f1e9 100%)}
.seo-kicker{display:inline-block;margin-bottom:10px;padding:5px 10px;border-radius:999px;background:#f7c400;color:#111;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.03em}
.seo-hero__lead{font-size:17px;color:#333}.seo-muted{color:#666}.seo-side-card{padding:22px;border-radius:10px;background:#333;color:#fff}.seo-side-card h2{color:#fff;font-size:22px}.seo-side-card ul{margin:0 0 18px;padding:0;list-style:none}.seo-side-card li{position:relative;padding-left:22px;margin-bottom:9px;font-size:15px}.seo-side-card li:before{content:"✓";position:absolute;left:0;top:0;color:#f7c400;font-weight:700}
.seo-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.seo-btn--dark{background:#333;color:#fff!important}.seo-btn--light{background:#fff;color:#222!important;border:1px solid #ddd}
.seo-quick{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:16px}.seo-quick a{display:block;padding:13px 14px;border:1px solid #e4e4e4;border-radius:8px;background:#fff;font-weight:700;color:#333}.seo-quick a:hover{border-color:#f7c400;box-shadow:0 6px 18px rgba(0,0,0,.06)}
.seo-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.seo-grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.seo-card{padding:18px;border:1px solid #e6e6e6;border-radius:10px;background:#fff}.seo-card p{color:#555;font-size:15px}
.price-table{width:100%;border-collapse:collapse;background:#fff}.price-table th,.price-table td{padding:14px 16px;border:1px solid #e5e5e5;text-align:left;vertical-align:top}.price-table th{background:#333;color:#fff}.price-table td:last-child{white-space:nowrap;font-weight:700}
.seo-list{margin:12px 0 0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.seo-list li{position:relative;padding:12px 12px 12px 34px;border:1px solid #e6e6e6;border-radius:8px;background:#fff;color:#444}.seo-list li:before{content:"";position:absolute;left:14px;top:20px;width:8px;height:8px;border-radius:50%;background:#f7c400}
.catalog-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin:0 0 18px}.catalog-intro p{max-width:470px;color:#666;font-size:15px}.catalog{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.product-card{display:flex;flex-direction:column;min-height:100%;border:1px solid #e5e5e5;background:#fff;transition:.2s}.product-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.08)}.product-card img{width:100%;aspect-ratio:263/346;object-fit:cover;background:#f4f4f4}.product-card__body{display:flex;flex-direction:column;flex:1;padding:14px}.product-card__title{display:block;padding:0 0 6px;font-size:16px;font-weight:700;color:#222}.product-card__price{display:block;padding:0 0 10px;font-weight:700}.product-card__tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:12px}.product-card__tags span{display:inline-block;padding:4px 7px;border-radius:999px;background:#f5f5f5;color:#555;font-size:12px}.product-card__cta{display:block;margin-top:auto;padding:9px 10px;border-radius:4px;background:#333;color:#fff;text-align:center;font-weight:700}
.page-meta{margin:30px 0}.page-total{color:#777;font-size:14px;margin-bottom:12px}.page-nav{display:flex;gap:8px;list-style:none;padding:0;margin:16px 0 0}.page-nav a,.page-nav span{display:block;min-width:36px;padding:8px 12px;border:1px solid #ddd;text-align:center;color:#333}.page-nav .disabled span{color: #33333366;}.page-nav a.active,.page-nav a:hover{background:#333;color:#fff;border-color:#333}
.seo-steps{counter-reset:step;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.seo-step{padding:18px;border:1px solid #e6e6e6;border-radius:10px;background:#fff}.seo-step:before{counter-increment:step;content:counter(step);display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;margin-bottom:12px;border-radius:50%;background:#f7c400;font-weight:700}
.seo-tags{display:flex;flex-wrap:wrap;gap:10px}.seo-tags span,.seo-tags a{display:inline-flex;padding:10px 13px;border-radius:999px;border:1px solid #e2e2e2;background:#fff;color:#333;font-weight:700;font-size:14px}.seo-tags a:hover{color: #2a6496;}
.seo-work-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.seo-work{border:1px solid #e6e6e6;border-radius:10px;overflow:hidden;background:#fff}.seo-work__photo{display:flex;align-items:center;justify-content:center;min-height:170px;background:#f3f3f3;color:#777;font-weight:700;text-align:center;padding:20px}.seo-work__body{padding:15px}
.seo-contact-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.9fr);gap:22px;align-items:start}.seo-contact-main .seo-contact-box__meta{margin-top:16px}.seo-price-wrap{display:grid;grid-template-columns:minmax(0,1fr);gap:18px}.seo-price-note{max-width:860px}.seo-price-extra{margin-top:18px;padding:16px;border-radius:10px;background:#fff;border:1px solid #e7e0d1}.seo-price-extra__title{margin:0 0 12px;font-size:18px;font-weight:700;color:#222}.seo-price-extra__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.seo-price-extra__item{display:block;padding:13px 14px;border-radius:8px;background:#fafafa;border:1px solid #e4e4e4;color:#222;transition:.2s}.seo-price-extra__item:hover{border-color:#f7c400;background:#fffdf2}.seo-price-extra__item strong{display:block;margin-bottom:5px;font-size:15px}.seo-price-extra__item span{display:block;color:#555;font-size:13px;line-height:1.35}.seo-blog-links{margin-top:22px;padding:18px;border-radius:10px;background:#fff;border:1px solid #e7e0d1}.seo-blog-links__title{margin:0 0 12px;font-size:18px;font-weight:700;color:#222}.seo-blog-links__grid{display:grid;grid-template-columns:1fr;gap:9px}.seo-blog-links__item{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-radius:8px;background:#fafafa;border:1px solid #e4e4e4;color:#222;font-weight:700;transition:.2s}.seo-blog-links__item:hover{border-color:#f7c400;background:#fffdf2}.seo-blog-links__item:after{content:"→";display:inline-flex;align-items:center;justify-content:center;min-width:26px;height:26px;border-radius:50%;background:#f7c400;color:#111;font-weight:700}.seo-granite-card{display:flex;flex-direction:column;gap:14px}.seo-granite-card__top{display:flex;align-items:center;gap:12px}.seo-granite-card__swatch{width:64px;height:64px;border-radius:12px;border:1px dashed #cfcfcf;background:linear-gradient(180deg,#f8f8f8 0%,#eeeeee 100%);display:flex;align-items:center;justify-content:center;color:#8d8d8d;font-size:11px;font-weight:700;line-height:1.15;text-align:center;overflow:hidden;flex:0 0 64px;text-transform:uppercase}.seo-granite-card__title{margin:0;font-size:20px;line-height:1.2}.seo-granite-card p{margin:0;color:#444}.seo-photo-card{display:flex;flex-direction:column;gap:14px}.seo-photo-placeholder{height:220px;border:2px dashed #d7d7d7;border-radius:12px;background:linear-gradient(180deg,#fafafa 0%,#f2f2f2 100%);display:flex;align-items:center;justify-content:center;color:#8a8a8a;font-size:18px;font-weight:700;text-transform:uppercase;overflow:hidden;}.seo-photo-placeholder img{width: 100%;object-fit:cover;}.seo-variant-card{display:flex;flex-direction:column;justify-content:space-between;min-height:100%}.seo-variant-card p{margin-bottom:12px}.seo-variant-card__meta{display:flex;flex-wrap:wrap;gap:8px}.seo-variant-card__meta span{display:inline-block;padding:6px 10px;border-radius:999px;background:#f5f5f5;border:1px solid #e4e4e4;font-size:13px;color:#444}.seo-card-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.seo-card-actions .seo-btn{min-width:190px}.seo-card--icon{display:flex;gap:14px;align-items:flex-start}.seo-card__icon{flex:0 0 44px;width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:#f7c400;color:#111;font-size:22px;font-weight:700;line-height:1}.seo-card__content{flex:1 1 auto}.seo-text-block{background:#fff}.seo-text-block__content{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.45fr);gap:24px;align-items:start}.seo-text-block__main p{color:#444;font-size:16px}.seo-text-block__side{padding:18px;border-radius:10px;background:#fbfaf7;border:1px solid #e7e0d1}.seo-text-block__side h3{margin:0 0 12px}.seo-text-block__side ul{margin:0;padding:0;list-style:none}.seo-text-block__side li{position:relative;padding-left:20px;margin-bottom:9px;color:#444;font-size:15px}.seo-text-block__side li:before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;border-radius:50%;background:#f7c400}.seo-text-block__side li:last-child{margin-bottom:0}.seo-faq{display:grid;gap:10px}.seo-faq details{padding:16px 18px;border:1px solid #e6e6e6;border-radius:8px;background:#fff}.seo-faq summary{display:list-item;cursor:pointer;font-weight:700}.seo-faq p{margin-top:10px;color:#555}.seo-contact-box{margin-top:18px;padding:20px;border:1px solid #ead9b5;border-radius:10px;background:linear-gradient(135deg,#fffdf7 0%,#f9f4e7 100%)}.seo-contact-box--wide{margin-top:0}.seo-contact-box h3{margin:0 0 10px;font-size:22px;line-height:1.25}.seo-contact-box p{margin:0 0 14px;color:#555}.seo-contact-box__meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:16px}.seo-contact-box__item{padding:12px 14px;border-radius:8px;background:#fff;border:1px solid #e7e0d1}.seo-contact-box__item strong{display:block;margin-bottom:4px;color:#222}.seo-contact-box__actions{display:flex;flex-wrap:wrap;gap:10px}
.seo-side-card .seo-btn {
    width: 100%;
}
.page-meta hr {
    border-top: 1px solid gray;
}
@media (max-width: 1199px) {
    header {
        height: auto;
    }
    .header__col,
    .header__col:first-of-type, 
    .header__col:last-of-type {
        flex-direction: column;
        gap: 12px;
        width: calc((100% - 40px) / 3);
    }
    .header__shop-phone {
        font-size: 18px;
    }
    .header-menu ul {
        gap: 40px;
    }
    .footer__menu {
        gap: 30px 60px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer__menu-column {
        width: calc((100% - 120px) / 3);
    }
    .header__shop-mail {
        margin-left: 0;
    }
    .header {
        height: auto;
    }
    .header header {
        padding: 10px 0;
    }
}
@media (max-width: 991px) {
    .header-menu ul {
        gap: 14px;
    }
}
@media(max-width:960px){.contacts{justify-content:flex-start}.page-layout{grid-template-columns:1fr}.seo-hero,.seo-grid-3,.seo-grid-4,.seo-steps,.seo-work-grid,.seo-split{grid-template-columns:repeat(2,minmax(0,1fr))}.seo-contact-layout,.seo-text-block__content{grid-template-columns:1fr}.seo-quick{grid-template-columns:repeat(2,minmax(0,1fr))}.seo-list{grid-template-columns:1fr}.catalog{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 767px) {
    .header.sticky{
        position: fixed;
        background: #272b31;
        top: 0;
        z-index: 1111;
        width:100%;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    header {
        height: auto;
    }
    .header__container {
        flex-direction: column;
        gap: 0;
    }
    .header__col {
        width: 100%!important;
    }
    .header__col:first-of-type {
        flex-direction: row;
        justify-content: space-between;
        order: 2;
    }
    .header__shop:last-of-type {
        padding: 7px 0;
    }
    .header__shop img {
        width: 15px;
        height: 15px;
        margin-right: 3px;
    }
    .header__shop-phone {
        font-size: 15px;
        font-weight: 600;
        line-height: 21px;
        text-align: left;
    }
    .header-menu__burger {
        display: block;
    }
    .header-menu__wrapper {
        display: none;
        background: #21262C;
        z-index: 9999999;
        position: relative;
    }
    .sticky .header-menu__wrapper{
        top:81px;
    }
    .header-menu {
        height: auto;
        padding: 20px 0;
    }
    .header-menu ul {
        flex-direction: column;
        line-height: unset;
        gap: 8px;
    }
    .has-sub > a:after {
        display: none;
    }
    .subpage {
        display: flex;
        width: 100%;
        position: unset;
    }
    footer .container:first-of-type {
        padding-left: 0;
        padding-right: 0;
    }
    .footer__menu {
        flex-direction: column;
        gap: 0;
        padding: 0 0 111px 0;
    }
    .footer__menu-column {
        width: 100%;
    }
    .footer__menu-column:not(:last-of-type) {
        border-bottom: 1px solid #FFFFFF33;
    }
    .footer__menu-column:last-of-type {
        padding-top: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .footer-menu__header {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
        padding: 20px 25px;
    }
    .footer-menu__header > a {
        font-size: 18px;
        font-weight: 700;
        line-height: 24.51px;
        text-align: left;
        color: #FFFFFF4D;
    }
    .footer-menu__header > img {
        display: block;
    }
    .footer__menu-items {
        display: none;
        margin: 12px auto 40px 40px;
    }
    .footer__menu-items > a {
        font-size: 14px;
        line-height: 19.07px;
    }
    .footer-menu__items-show {
        display: flex;
    }
    .footer__contact {
        justify-content: start;
        margin-bottom: 12px;
    }
    .footer__menu-column .button {
        width: auto;
        min-width: 260px;
        margin-top: 22px;
    }
    .header header {
        padding: 0;
    }
    .menu-opened {
        overflow: hidden;
    }
    .menu-opened .header-menu__wrapper {
        display: block;
        overflow: scroll;
        height: calc(100vh - 81px);
    }
    .seo-hero {
        grid-template-columns: 1fr;
    }
    .flex-row {
        flex-direction: row;
    }
}
@media(max-width: 560px){.content h1{font-size:26px}.seo-grid-3,.seo-grid-4,.seo-steps,.seo-work-grid,.seo-quick,.catalog,.seo-split,.seo-contact-layout,.seo-text-block__content{grid-template-columns:1fr}.seo-hero,.seo-panel{padding:20px}.catalog-intro{display:block}.price-table{display:block;overflow-x:auto}}
@media(max-width: 480px) {
    footer hr {
        display: none;
    }
    .footer__copyright {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .footer__copyright-left, 
    .footer__copyright-right {
        width: 100%;
    }
    .footer__copyright-left {
        border-bottom: 1px solid #FFFFFF1A;
    }
    .seo-actions,
    .seo-contact-box__actions,
    .seo-card-actions {
        flex-direction: column;
    }
    .seo-actions .seo-btn {
        width: 100%;
    }
    .seo-contact-box__meta {
        grid-template-columns: repeat(1, 1fr);
    }
    .seo-price-extra__grid {
      grid-template-columns: repeat(2, 1fr);
    }
}