:root{
    --belavi-green:#2f4f46;
    --belavi-cream:#fcf7f0;
    --belavi-muted:#a2a2a2;
    --belavi-layout-width:var(--container-max,1600px);
}

html{scroll-padding-top:90px}
body{font-family:"Montserrat",sans-serif}
.container,.figma-container,.belavi-layout-container{
    box-sizing:border-box;
    width:100%;
    max-width:var(--belavi-layout-width);
    margin-right:auto;
    margin-left:auto;
    padding-right:10px;
    padding-left:10px;
}

.belavi-header{
    position:sticky;
    z-index:9000;
    top:0;
    width:100%;
    padding:30px 0;
    background:#fff;
    transition:padding .3s ease,box-shadow .3s ease,background-color .3s ease;
}
.belavi-header.is-compact{
    padding-top:10px;
    padding-bottom:10px;
    box-shadow:0 8px 30px rgba(47,79,70,.08);
}
.belavi-header__row{
    display:grid;
    grid-template-columns:200px minmax(640px,1fr) auto auto;
    gap:10px;
    align-items:center;
    min-height:48px;
}
.belavi-header__logo{
    display:flex;
    align-items:center;
    width:200px;
    max-width:100%;
    color:var(--belavi-green);
}
.belavi-header__logo img{
    display:block;
    width:200px;
    max-width:100%;
    height:auto;
    max-height:48px;
    object-fit:contain;
    object-position:left center;
}
.belavi-desktop-nav{
    width:min(56vw,900px);
    min-width:640px;
    height:47px;
    justify-self:center;
    border-radius:22px;
    background:rgba(0,0,0,.05);
}
.belavi-desktop-nav ul{margin:0;padding:0;list-style:none}
.belavi-desktop-nav__list{
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    height:47px;
}
.belavi-desktop-nav__item{
    position:relative;
    display:flex;
    align-items:stretch;
}
.belavi-desktop-nav__item.has-children::after{
    position:absolute;
    top:100%;
    right:0;
    left:0;
    height:11px;
    content:"";
}
.belavi-desktop-nav__link{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:100%;
    padding:12px 26px;
    border-radius:22px;
    color:var(--belavi-green);
    font-family:"Montserrat",sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:1;
    text-decoration:none;
    white-space:nowrap;
    transition:color .2s ease,background-color .2s ease;
}
.belavi-desktop-nav__item:hover>.belavi-desktop-nav__link,
.belavi-desktop-nav__item:focus-within>.belavi-desktop-nav__link,
.belavi-desktop-nav__item.is-open>.belavi-desktop-nav__link,
.belavi-desktop-nav__item.is-active>.belavi-desktop-nav__link{
    color:#fff;
    background:var(--belavi-green);
}
.belavi-nav-caret{
    width:11px;
    height:8px;
    flex:0 0 auto;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:transform .2s ease;
}
.belavi-desktop-nav__item.is-open .belavi-nav-caret{transform:rotate(180deg)}
.belavi-desktop-nav__submenu{
    position:absolute;
    z-index:30;
    top:calc(100% + 10px);
    left:0;
    min-width:380px;
    padding:15px 0;
    border:0;
    border-top:1px solid #dadada;
    border-radius:20px;
    overflow:hidden;
    background:#f4f4f4;
    box-shadow:0 10px 30px rgba(45,45,45,.2);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
}
.belavi-desktop-nav__item:hover>.belavi-desktop-nav__submenu,
.belavi-desktop-nav__item:focus-within>.belavi-desktop-nav__submenu,
.belavi-desktop-nav__item.is-open>.belavi-desktop-nav__submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.belavi-desktop-nav__submenu a{
    display:flex;
    align-items:center;
    min-height:32px;
    padding:7px 15px;
    color:#000;
    font-family:"Montserrat",sans-serif;
    font-size:14px;
    font-weight:400;
    line-height:1.35;
    text-decoration:none;
    transition:color .2s ease,background-color .2s ease;
}
.belavi-desktop-nav__submenu a:hover,
.belavi-desktop-nav__submenu a:focus-visible{
    color:#fff;
    background:var(--belavi-green);
}
.belavi-header__phone,
.belavi-header__cta{
    box-sizing:border-box;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:47px;
    border:1px solid var(--belavi-green);
    border-radius:24px;
    font-family:"Montserrat",sans-serif;
    line-height:1;
    text-decoration:none;
    white-space:nowrap;
    cursor:pointer;
    transition:color .2s ease,background-color .2s ease;
}
.belavi-header__phone{
    gap:7px;
    padding:10px 20px;
    color:var(--belavi-green);
    background:#fff;
    font-size:17px;
    font-weight:500;
}
.belavi-header__phone svg,
.belavi-header__mobile-button svg{
    width:19px;
    height:19px;
    fill:currentColor;
}
.belavi-header__phone:hover,
.belavi-header__phone:focus-visible{
    color:#fff;
    background:var(--belavi-green);
}
.belavi-header__cta{
    padding:10px 15px;
    color:#fff;
    background:var(--belavi-green);
    font-size:16px;
    font-weight:500;
}
.belavi-header__cta:hover,
.belavi-header__cta:focus-visible{
    color:var(--belavi-green);
    background:#fff;
}
.belavi-header__mobile-actions{display:none}
.belavi-header a:focus-visible,
.belavi-header button:focus-visible,
.belavi-mobile-menu a:focus-visible,
.belavi-mobile-menu button:focus-visible,
.belavi-footer a:focus-visible,
.belavi-footer button:focus-visible{
    outline:3px solid rgba(47,79,70,.3);
    outline-offset:3px;
}

.belavi-mobile-menu{
    position:fixed;
    z-index:12000;
    inset:0;
    overflow-x:hidden;
    overflow-y:auto;
    width:100%;
    height:100vh;
    height:100dvh;
    background:var(--belavi-cream);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-100%);
    transition:transform .45s cubic-bezier(.22,.7,.25,1),opacity .25s ease,visibility .45s;
}
.belavi-mobile-menu.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}
body.belavi-mobile-menu-open{overflow:hidden}
.belavi-mobile-menu__green{
    padding:20px;
    border-radius:0 0 25px 25px;
    background:var(--belavi-green);
}
.belavi-mobile-menu__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.belavi-mobile-menu__logo{
    display:flex;
    width:133px;
    max-width:calc(100% - 64px);
    align-items:center;
}
.belavi-mobile-menu__logo img{
    display:block;
    width:133px;
    max-width:100%;
    height:auto;
    max-height:42px;
    object-fit:contain;
    object-position:left center;
}
.belavi-mobile-menu__close{
    display:inline-flex;
    width:44px;
    height:44px;
    padding:0;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.34);
    border-radius:10px;
    color:var(--belavi-green);
    background:rgba(252,247,240,.8);
    cursor:pointer;
}
.belavi-mobile-menu__close svg{
    width:23px;
    height:23px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
}
.belavi-mobile-nav{margin-top:60px;margin-bottom:60px}
.belavi-mobile-nav ul{margin:0;padding:0;list-style:none}
.belavi-mobile-nav>ul{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.belavi-mobile-nav>ul>li>a,
.belavi-mobile-nav__services>button,
.belavi-mobile-nav__parent-row>a,
.belavi-mobile-nav__parent-row>span{
    display:inline-flex;
    width:auto;
    padding:0;
    align-items:center;
    gap:10px;
    border:0;
    color:rgba(255,255,255,.49);
    background:transparent;
    font-family:"Montserrat",sans-serif;
    font-size:22px;
    font-weight:400;
    line-height:26px;
    text-align:left;
    text-decoration:none;
    cursor:pointer;
}
.belavi-mobile-nav>ul>li>a:hover,
.belavi-mobile-nav>ul>li>a:focus-visible,
.belavi-mobile-nav__services>button:hover,
.belavi-mobile-nav__services>button:focus-visible,
.belavi-mobile-nav__parent-row>a:hover,
.belavi-mobile-nav__parent-row>a:focus-visible{
    color:#fff;
    text-decoration:underline;
    text-underline-offset:4px;
}
.belavi-mobile-nav__services>button svg{
    width:12px;
    height:8px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:transform .25s ease;
}
.belavi-mobile-nav__services>button[aria-expanded="true"] svg{transform:rotate(180deg)}
.belavi-mobile-nav__parent-row{display:flex;align-items:center;gap:10px}
.belavi-mobile-nav__parent-row>button{display:grid;width:28px;height:28px;padding:0;place-items:center;border:0;background:transparent;color:rgba(255,255,255,.49);cursor:pointer}
.belavi-mobile-nav__parent-row>button svg{width:12px;height:8px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s ease}
.belavi-mobile-nav__parent-row>button[aria-expanded="true"]{color:#fff}.belavi-mobile-nav__parent-row>button[aria-expanded="true"] svg{transform:rotate(180deg)}
.belavi-mobile-nav__submenu{
    max-height:0;
    margin-top:0!important;
    margin-left:10px!important;
    opacity:0;
    overflow:hidden;
    transition:max-height .38s ease,opacity .25s ease,margin-top .32s ease;
}
.belavi-mobile-nav__submenu.is-open{
    max-height:720px;
    margin-top:18px!important;
    opacity:1;
}
.belavi-mobile-nav__submenu li{overflow:hidden}
.belavi-mobile-nav__submenu a{
    display:block;
    padding:6px 0;
    color:#fff;
    font-family:"Montserrat",sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:1.35;
    text-decoration:none;
}
.belavi-mobile-nav__submenu a:hover,
.belavi-mobile-nav__submenu a:focus-visible{text-decoration:underline;text-underline-offset:3px}
.belavi-mobile-menu__contacts{
    padding:45px 20px 36px;
    color:var(--belavi-green);
}
.belavi-mobile-menu__phones{
    display:flex;
    flex-direction:column;
    gap:7px;
}
.belavi-mobile-menu__phones a{
    color:var(--belavi-green);
    font-size:16px;
    font-weight:500;
    line-height:1.4;
    text-decoration:none;
}
.belavi-mobile-menu__details{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
    gap:20px;
    margin-top:10px;
}
.belavi-mobile-menu__details h2{
    margin:0 0 10px;
    color:var(--belavi-muted);
    font-family:"Montserrat",sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:1.4;
}
.belavi-mobile-menu__address-list,
.belavi-mobile-menu__hours{
    display:flex;
    flex-direction:column;
    gap:8px;
}
.belavi-mobile-menu__address-list a,
.belavi-mobile-menu__hours span{
    color:var(--belavi-green);
    font-size:15px;
    font-weight:500;
    line-height:1.35;
    text-decoration:none;
}
.belavi-mobile-menu__address-list a:hover,
.belavi-mobile-menu__address-list a:focus-visible{text-decoration:underline;text-underline-offset:3px}
.belavi-mobile-menu__legal{
    display:flex;
    flex-direction:column;
    margin-top:32px;
    color:var(--belavi-green);
    font-size:15px;
    font-weight:400;
    line-height:19px;
}
.belavi-mobile-menu__legal strong{font-weight:600}

.belavi-footer{
    margin:40px 0 0;
    color:var(--belavi-green);
    font-family:"Montserrat",sans-serif;
}
.belavi-footer__panel{
    padding:50px;
    border-radius:20px;
    background:rgba(47,79,70,.05);
}
.belavi-footer__grid{
    display:grid;
    grid-template-columns:1.18fr 1fr 1fr 1.12fr;
    gap:30px;
}
.belavi-footer section{min-width:0}
.belavi-footer__logo{
    display:flex;
    width:200px;
    max-width:100%;
    align-items:center;
}
.belavi-footer__logo img{
    display:block;
    width:200px;
    max-width:100%;
    height:auto;
    max-height:48px;
    object-fit:contain;
    object-position:left center;
}
.belavi-footer__requisites,
.belavi-footer__license{
    display:flex;
    flex-direction:column;
    color:var(--belavi-green);
    font-size:16px;
    font-weight:400;
    line-height:1.55;
}
.belavi-footer__requisites{margin-top:20px}
.belavi-footer__license{margin-top:30px}
.belavi-footer__column h2{
    margin:0 0 10px;
    color:var(--belavi-muted);
    font-family:"Montserrat",sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:1.5;
}
.belavi-footer__links,
.belavi-footer__hours{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.belavi-footer__links a,
.belavi-footer__hours span{
    color:var(--belavi-green);
    font-size:16px;
    font-weight:500;
    line-height:1.45;
    text-decoration:none;
}
.belavi-footer__links a:hover,
.belavi-footer__links a:focus-visible{text-decoration:underline;text-underline-offset:3px}
.belavi-footer__contact{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.belavi-footer__phone{
    color:var(--belavi-green);
    font-size:22px;
    font-weight:500;
    line-height:1.25;
    text-decoration:none;
}
.belavi-footer__email{
    margin-top:20px;
    color:var(--belavi-green);
    font-size:16px;
    font-weight:500;
    line-height:1.4;
    text-decoration:none;
}
.belavi-footer__phone:hover,
.belavi-footer__email:hover{text-decoration:underline;text-underline-offset:3px}
.belavi-footer__cta{
    display:inline-flex;
    min-height:48px;
    margin-top:20px;
    padding:15px 30px;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:1px solid var(--belavi-green);
    border-radius:30px;
    color:#fff;
    fill:#fff;
    background:var(--belavi-green);
    font-family:"Montserrat",sans-serif;
    font-size:15px;
    font-weight:500;
    line-height:1;
    cursor:pointer;
    transition:color .2s ease,background-color .2s ease;
}
.belavi-footer__cta svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.belavi-footer__cta:hover,
.belavi-footer__cta:focus-visible{color:var(--belavi-green);background:#fff}
.belavi-footer__bottom{
    display:flex;
    margin-top:30px;
    padding:0 0 40px;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    color:var(--belavi-green);
    font-size:16px;
    font-weight:400;
    line-height:1.4;
}
.belavi-footer__bottom a{color:inherit;text-decoration:none}
.belavi-footer__bottom a:hover{text-decoration:underline;text-underline-offset:3px}

.belavi-cookie{
    position:fixed;
    z-index:999999;
    bottom:16px;
    left:50%;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    width:calc(100% - 36px);
    max-width:920px;
    padding:12px 52px 12px 16px;
    align-items:center;
    column-gap:18px;
    row-gap:4px;
    border:1px solid rgba(47,79,70,.16);
    border-radius:16px;
    background:rgba(255,255,255,.96);
    color:#252525;
    box-shadow:0 8px 24px rgba(47,79,70,.14);
    backdrop-filter:blur(12px);
    font-family:"Montserrat",sans-serif;
    line-height:1.35;
    transform:translateX(-50%);
}
.belavi-cookie[hidden]{display:none}
.belavi-cookie__title{
    color:var(--belavi-green);
    font-size:15px;
    font-weight:600;
}
.belavi-cookie__text{
    margin-top:3px;
    color:#515b57;
    font-size:13px;
    font-weight:400;
}
.belavi-cookie__link{
    color:var(--belavi-green);
    font-size:inherit;
    font-weight:500;
    line-height:inherit;
    text-decoration:underline;
    text-underline-offset:2px;
}
.belavi-cookie__actions{display:flex;align-items:center}
.belavi-cookie__btn{
    min-height:40px;
    padding:10px 22px;
    border:1px solid var(--belavi-green);
    border-radius:22px;
    background:var(--belavi-green);
    color:#fff;
    font-family:"Montserrat",sans-serif;
    font-size:13px;
    font-weight:500;
    line-height:1;
    cursor:pointer;
    transition:color .2s ease,background-color .2s ease;
}
.belavi-cookie__btn:hover,
.belavi-cookie__btn:focus-visible{background:#fff;color:var(--belavi-green)}
.belavi-cookie__close{
    position:absolute;
    top:8px;
    right:10px;
    display:grid;
    width:30px;
    height:30px;
    padding:0;
    place-items:center;
    border:0;
    border-radius:50%;
    background:transparent;
    color:var(--belavi-green);
    font-family:"Montserrat",sans-serif;
    font-size:22px;
    font-weight:400;
    line-height:1;
    cursor:pointer;
}

@media(max-width:1500px) and (min-width:1121px){
    .belavi-header__row{grid-template-columns:252px clamp(570px,43vw,650px) minmax(0,1fr) 43px 153px}
    .belavi-header__logo,.belavi-header__logo img{width:170px}
    .belavi-desktop-nav{width:100%;min-width:0;height:43px;justify-self:stretch}
    .belavi-desktop-nav__list{height:43px}
    .belavi-desktop-nav__link{padding:10px 16px;font-size:12px}
    .belavi-header__phone{grid-column:4;width:43px;min-height:43px;padding-right:0;padding-left:0}
    .belavi-header__phone span{display:none}
    .belavi-header__cta{grid-column:5;width:153px;min-height:42px;padding:10px;font-size:13px}
}
@media(max-width:1120px){
    .belavi-header{padding-top:18px;padding-bottom:18px}
    .belavi-header.is-compact{padding-top:10px;padding-bottom:10px}
    .belavi-header__row{display:flex;min-height:44px;justify-content:space-between}
    .belavi-header__logo,.belavi-header__logo img{width:150px;max-height:44px}
    .belavi-desktop-nav,.belavi-header__phone,.belavi-header__cta{display:none}
    .belavi-header__mobile-actions{display:flex;align-items:center;gap:10px}
    .belavi-header__mobile-button{
        box-sizing:border-box;
        display:inline-flex;
        width:44px;
        height:44px;
        padding:0;
        align-items:center;
        justify-content:center;
        border:1px solid var(--belavi-green);
        border-radius:10px;
        color:#fff;
        background:var(--belavi-green);
        cursor:pointer;
        transition:color .2s ease,background-color .2s ease;
    }
    .belavi-header__mobile-button:hover,
    .belavi-header__mobile-button:focus-visible{color:#69727d;background:#fff}
    .belavi-burger{flex-direction:column;gap:4px}
    .belavi-burger span{display:block;width:21px;height:1.5px;border-radius:2px;background:currentColor}
}
@media(min-width:1121px){.belavi-mobile-menu{display:none!important}}
@media(max-width:960px){
    .belavi-footer__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:640px){
    .belavi-footer{margin-top:30px}
    .belavi-footer__panel{padding:30px 20px}
    .belavi-footer__grid{grid-template-columns:1fr;gap:34px}
    .belavi-footer__bottom{
        align-items:center;
        flex-direction:column;
        justify-content:center;
        gap:12px;
        text-align:center;
    }
    .belavi-footer__cta{width:100%}
    .belavi-cookie{
        bottom:10px;
        grid-template-columns:1fr;
        width:calc(100% - 20px);
        padding:16px 42px 16px 16px;
        gap:13px;
    }
    .belavi-cookie__title{font-size:14px}
    .belavi-cookie__text{font-size:12px;line-height:1.45}
    .belavi-cookie__link{font-size:inherit}
    .belavi-cookie__actions{grid-column:1/-1}
    .belavi-cookie__btn{width:100%}
}
@media(max-width:380px){
    .belavi-header__mobile-actions{gap:7px}
    .belavi-mobile-menu__details{gap:14px}
    .belavi-mobile-menu__address-list a,
    .belavi-mobile-menu__hours span{font-size:14px}
}
@media(prefers-reduced-motion:reduce){
    .belavi-header,
    .belavi-mobile-menu,
    .belavi-desktop-nav__submenu,
    .belavi-mobile-nav__submenu,
    .belavi-nav-caret{transition:none!important}
}
