:root{
  --lbv2-blue:#0c53a5;
  --lbv2-blue-dark:#073f7e;
  --lbv2-navy:#022041;
  --lbv2-ink:#263548;
  --lbv2-muted:#718096;
  --lbv2-line:#e3eaf1;
  --lbv2-soft:#f5f8fb;
  --lbv2-white:#fff;
  --lbv2-font:'Shabnam',Tahoma,Arial,sans-serif;
  --lbv2-shadow:0 22px 65px rgba(2,32,65,.15);
  --lbv2-header-height:122px;
}

html{
  scroll-padding-top:calc(
    var(--lbv2-header-height) + 20px
  );
}

body{
  margin:0;
  font-family:var(--lbv2-font);
  color:var(--lbv2-ink);
  background:#fff;
  overflow-x:hidden;
}

body.lbv2-lock{
  overflow:hidden;
}

.lbv2-container{
  width:min(
    calc(100% - clamp(32px,6vw,104px)),
    1540px
  );
  margin-inline:auto;
}

.lbv2-header,
.lbv2-header *{
  box-sizing:border-box;
}

.lbv2-header{
  width:100%;
  position:fixed;
  top:0;
  right:0;
  left:0;
  z-index:5000;
  font-family:var(--lbv2-font);
}

.lbv2-header a{
  color:inherit;
  text-decoration:none;
}

.lbv2-topbar{
  height:34px;
  overflow:hidden;
  color:#fff;
  background:
    linear-gradient(
      100deg,
      #031a33,
      var(--lbv2-navy)
    );
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:
    height .3s ease,
    opacity .3s ease;
}

.lbv2-topbar__inner{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.lbv2-topbar__title{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.88);
  font-size:11.5px;
  font-weight:800;
  white-space:nowrap;
}

.lbv2-topbar__title span{
  width:7px;
  height:7px;
  flex:0 0 auto;
  border-radius:50%;
  background:#4da9f6;
  box-shadow:0 0 0 5px rgba(77,169,246,.12);
}

.lbv2-topbar__links{
  display:flex;
  align-items:center;
  gap:18px;
}

.lbv2-topbar__links a{
  height:34px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:rgba(255,255,255,.84);
  font-size:10.5px;
  font-weight:750;
  white-space:nowrap;
  transition:color .2s ease;
}

.lbv2-topbar__links a:hover{
  color:#fff;
}

.lbv2-main{
  background:rgba(255,255,255,.97);
  border-bottom:1px solid rgba(2,32,65,.09);
  box-shadow:0 8px 28px rgba(2,32,65,.055);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.lbv2-main__inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:clamp(24px,3vw,58px);
  transition:min-height .3s ease;
}

.lbv2-brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:13px;
}

.lbv2-brand__logo{
  width:118px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lbv2-brand__logo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.lbv2-brand__separator{
  width:1px;
  height:38px;
  background:linear-gradient(
    to bottom,
    transparent,
    #b9c6d3,
    transparent
  );
}

.lbv2-brand__text{
  display:flex;
  flex-direction:column;
  gap:3px;
  direction:ltr;
  text-align:left;
  line-height:1.2;
  white-space:nowrap;
}

.lbv2-brand__text strong{
  color:var(--lbv2-navy);
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
}

.lbv2-brand__text small{
  color:#768495;
  font-size:8.5px;
  font-weight:700;
  letter-spacing:.25px;
}

.lbv2-nav{
  min-width:0;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
}

.lbv2-nav__link,
.lbv2-nav__item{
  height:100%;
  position:relative;
  display:flex;
  align-items:center;
}

.lbv2-nav__link,
.lbv2-nav__item>a{
  min-height:42px;
  padding:0 12px;
  display:flex;
  align-items:center;
  border-radius:10px;
  color:#304256;
  font-size:12.5px;
  font-weight:850;
  white-space:nowrap;
  transition:
    color .2s ease,
    background .2s ease;
}

.lbv2-nav__item{
  padding-left:3px;
}

.lbv2-nav__item>button{
  width:25px;
  height:34px;
  margin-right:-9px;
  border:0;
  color:#7b8998;
  background:transparent;
  cursor:pointer;
  font-size:8px;
  transition:
    color .2s ease,
    transform .2s ease;
}

.lbv2-nav__link:hover,
.lbv2-nav__item:hover>a,
.lbv2-nav__item.is-open>a{
  color:var(--lbv2-blue);
  background:#edf5fc;
}

.lbv2-nav__item:hover>button,
.lbv2-nav__item.is-open>button{
  color:var(--lbv2-blue);
  transform:rotate(180deg);
}

.lbv2-nav__link.is-active::after,
.lbv2-nav__item.is-active::after{
  content:"";
  position:absolute;
  right:13px;
  bottom:0;
  left:13px;
  height:3px;
  border-radius:4px 4px 0 0;
  background:var(--lbv2-blue);
}

.lbv2-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.lbv2-search-button{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid #dce5ed;
  border-radius:12px;
  color:var(--lbv2-navy);
  background:#fff;
  cursor:pointer;
  font-size:15px;
  transition:
    border-color .2s ease,
    color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.lbv2-search-button:hover,
.lbv2-search-button.is-active{
  border-color:#b7cce0;
  color:var(--lbv2-blue);
  background:#f5f9fd;
  transform:translateY(-1px);
}

.lbv2-quote{
  min-height:48px;
  padding:0 17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border:1px solid var(--lbv2-blue);
  border-radius:12px;
  color:#fff!important;
  background:linear-gradient(
    135deg,
    var(--lbv2-blue),
    var(--lbv2-blue-dark)
  );
  box-shadow:0 11px 25px rgba(12,83,165,.2);
  font-size:11.5px;
  font-weight:900;
  white-space:nowrap;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.lbv2-quote:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(12,83,165,.27);
}

.lbv2-quote i{
  font-size:9px;
}

.lbv2-header.is-compact .lbv2-topbar{
  height:0;
  opacity:0;
}

.lbv2-header.is-compact .lbv2-main__inner{
  min-height:74px;
}

.lbv2-header.is-compact .lbv2-nav{
  height:74px;
}

.lbv2-header.is-compact .lbv2-brand__logo{
  width:102px;
  height:54px;
}

.lbv2-search-panel{
  position:absolute;
  top:100%;
  right:0;
  left:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  background:#fff;
  border-bottom:1px solid var(--lbv2-line);
  box-shadow:0 20px 48px rgba(2,32,65,.12);
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
}

.lbv2-search-panel.is-open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.lbv2-search-form{
  min-height:82px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto auto;
  align-items:center;
  gap:14px;
}

.lbv2-search-form>i{
  color:var(--lbv2-blue);
  font-size:17px;
}

.lbv2-search-form input{
  width:100%;
  height:48px;
  padding:0 16px;
  border:1px solid #dce5ed;
  border-radius:11px;
  outline:0;
  color:#27394c;
  background:#f9fbfd;
  font-family:var(--lbv2-font);
  font-size:12.5px;
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.lbv2-search-form input:focus{
  border-color:#9ebeda;
  background:#fff;
  box-shadow:0 0 0 4px rgba(12,83,165,.08);
}

.lbv2-search-form>button[type="submit"]{
  height:46px;
  padding:0 23px;
  border:1px solid var(--lbv2-blue);
  border-radius:10px;
  color:#fff;
  background:var(--lbv2-blue);
  font-family:var(--lbv2-font);
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}

.lbv2-search-close{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:0;
  color:#778697;
  background:transparent;
  cursor:pointer;
  font-size:15px;
}

.lbv2-mega{
  width:min(1040px,calc(100vw - 48px));
  position:absolute;
  top:calc(100% + 12px);
  right:50%;
  opacity:0;
  visibility:hidden;
  transform:translate(50%,12px);
  border:1px solid var(--lbv2-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 32px 85px rgba(2,32,65,.2);
  overflow:hidden;
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .25s ease;
}

.lbv2-mega.is-open{
  opacity:1;
  visibility:visible;
  transform:translate(50%,0);
}

.lbv2-mega__grid{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) 340px;
}

.lbv2-mega__content{
  padding:27px;
}

.lbv2-mega__head{
  padding-bottom:19px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  border-bottom:1px solid var(--lbv2-line);
}

.lbv2-mega__head span{
  display:block;
  color:var(--lbv2-blue);
  font-size:8.5px;
  font-weight:900;
  letter-spacing:1.4px;
}

.lbv2-mega__head h2{
  margin:7px 0 0;
  color:var(--lbv2-navy);
  font-size:19px;
  font-weight:900;
}

.lbv2-mega__head p{
  margin:6px 0 0;
  color:var(--lbv2-muted);
  font-size:10.5px;
  line-height:1.8;
}

.lbv2-mega__head>a{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--lbv2-blue);
  font-size:10.5px;
  font-weight:900;
}

.lbv2-mega__products{
  margin-top:17px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}

.lbv2-product-link{
  min-height:70px;
  padding:9px 11px;
  display:grid;
  grid-template-columns:26px 34px minmax(0,1fr) 18px;
  align-items:center;
  gap:9px;
  border:1px solid #e6edf3;
  border-radius:12px;
  background:#fff;
  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.lbv2-product-link:hover{
  border-color:#bad1e6;
  background:#f7fbff;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(12,83,165,.08);
}

.lbv2-product-link__number{
  color:#a0adba;
  font-size:8.5px;
  font-weight:900;
}

.lbv2-product-link__icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:var(--lbv2-blue);
  background:#eaf3fb;
  font-size:12px;
}

.lbv2-product-link__text{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.lbv2-product-link__text strong{
  overflow:hidden;
  color:#2b3d50;
  font-size:11.5px;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lbv2-product-link__text small{
  overflow:hidden;
  color:#8996a4;
  font-size:8.5px;
  font-weight:650;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lbv2-product-link>i{
  color:#a2afbb;
  font-size:8px;
  transition:
    color .2s ease,
    transform .2s ease;
}

.lbv2-product-link:hover>i{
  color:var(--lbv2-blue);
  transform:translateX(-3px);
}

.lbv2-mega__visual{
  min-height:405px;
  padding:22px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#fff;
  background:
    linear-gradient(
      155deg,
      #0b5aa9,
      #022041
    );
  isolation:isolate;
}

.lbv2-mega__visual::before{
  content:"";
  width:240px;
  height:240px;
  position:absolute;
  top:-130px;
  left:-100px;
  z-index:-1;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
  box-shadow:
    0 0 0 38px rgba(255,255,255,.025),
    0 0 0 76px rgba(255,255,255,.018);
}

.lbv2-mega__visual-label{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:5px;
}

.lbv2-mega__visual-label span{
  color:#99d1ff;
  font-size:8px;
  font-weight:900;
  letter-spacing:1.3px;
}

.lbv2-mega__visual-label strong{
  font-size:15px;
  font-weight:900;
}

.lbv2-mega__visual img{
  width:100%;
  height:205px;
  padding:10px;
  display:block;
  object-fit:contain;
  border-radius:13px;
  background:#fff;
  box-sizing:border-box;
  filter:drop-shadow(0 18px 24px rgba(0,0,0,.18));
}

.lbv2-mega__visual-footer{
  position:relative;
  z-index:2;
}

.lbv2-mega__visual-footer p{
  margin:0 0 11px;
  color:rgba(255,255,255,.76);
  font-size:10.5px;
  line-height:1.8;
}

.lbv2-mega__visual-footer a{
  min-height:43px;
  padding:0 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,.2);
  border-radius:10px;
  color:#fff;
  background:rgba(255,255,255,.09);
  font-size:10px;
  font-weight:900;
}

.lbv2-search-panel{
  position:absolute;
  top:100%;
  right:0;
  left:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(-10px);
  background:#fff;
  border-bottom:1px solid var(--lbv2-line);
  box-shadow:0 20px 48px rgba(2,32,65,.12);
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
}

.lbv2-search-panel.is-open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.lbv2-search-form{
  min-height:82px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto auto;
  align-items:center;
  gap:14px;
}

.lbv2-search-form>i{
  color:var(--lbv2-blue);
  font-size:17px;
}

.lbv2-search-form input{
  width:100%;
  height:48px;
  padding:0 16px;
  border:1px solid #dce5ed;
  border-radius:11px;
  outline:0;
  color:#27394c;
  background:#f9fbfd;
  font-family:var(--lbv2-font);
  font-size:12.5px;
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.lbv2-search-form input:focus{
  border-color:#9ebeda;
  background:#fff;
  box-shadow:0 0 0 4px rgba(12,83,165,.08);
}

.lbv2-search-form>button[type="submit"]{
  height:46px;
  padding:0 23px;
  border:1px solid var(--lbv2-blue);
  border-radius:10px;
  color:#fff;
  background:var(--lbv2-blue);
  font-family:var(--lbv2-font);
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}

.lbv2-search-close{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:0;
  color:#778697;
  background:transparent;
  cursor:pointer;
  font-size:15px;
}

.lbv2-mega{
  width:min(1040px,calc(100vw - 48px));
  position:absolute;
  top:calc(100% + 12px);
  right:50%;
  opacity:0;
  visibility:hidden;
  transform:translate(50%,12px);
  border:1px solid var(--lbv2-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 32px 85px rgba(2,32,65,.2);
  overflow:hidden;
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .25s ease;
}

.lbv2-mega.is-open{
  opacity:1;
  visibility:visible;
  transform:translate(50%,0);
}

.lbv2-mega__grid{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) 340px;
}

.lbv2-mega__content{
  padding:27px;
}

.lbv2-mega__head{
  padding-bottom:19px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  border-bottom:1px solid var(--lbv2-line);
}

.lbv2-mega__head span{
  display:block;
  color:var(--lbv2-blue);
  font-size:8.5px;
  font-weight:900;
  letter-spacing:1.4px;
}

.lbv2-mega__head h2{
  margin:7px 0 0;
  color:var(--lbv2-navy);
  font-size:19px;
  font-weight:900;
}

.lbv2-mega__head p{
  margin:6px 0 0;
  color:var(--lbv2-muted);
  font-size:10.5px;
  line-height:1.8;
}

.lbv2-mega__head>a{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--lbv2-blue);
  font-size:10.5px;
  font-weight:900;
}

.lbv2-mega__products{
  margin-top:17px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}

.lbv2-product-link{
  min-height:70px;
  padding:9px 11px;
  display:grid;
  grid-template-columns:26px 34px minmax(0,1fr) 18px;
  align-items:center;
  gap:9px;
  border:1px solid #e6edf3;
  border-radius:12px;
  background:#fff;
  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.lbv2-product-link:hover{
  border-color:#bad1e6;
  background:#f7fbff;
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(12,83,165,.08);
}

.lbv2-product-link__number{
  color:#a0adba;
  font-size:8.5px;
  font-weight:900;
}

.lbv2-product-link__icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:var(--lbv2-blue);
  background:#eaf3fb;
  font-size:12px;
}

.lbv2-product-link__text{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.lbv2-product-link__text strong{
  overflow:hidden;
  color:#2b3d50;
  font-size:11.5px;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lbv2-product-link__text small{
  overflow:hidden;
  color:#8996a4;
  font-size:8.5px;
  font-weight:650;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.lbv2-product-link>i{
  color:#a2afbb;
  font-size:8px;
  transition:
    color .2s ease,
    transform .2s ease;
}

.lbv2-product-link:hover>i{
  color:var(--lbv2-blue);
  transform:translateX(-3px);
}

.lbv2-mega__visual{
  min-height:405px;
  padding:22px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#fff;
  background:
    linear-gradient(
      155deg,
      #0b5aa9,
      #022041
    );
  isolation:isolate;
}

.lbv2-mega__visual::before{
  content:"";
  width:240px;
  height:240px;
  position:absolute;
  top:-130px;
  left:-100px;
  z-index:-1;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
  box-shadow:
    0 0 0 38px rgba(255,255,255,.025),
    0 0 0 76px rgba(255,255,255,.018);
}

.lbv2-mega__visual-label{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:5px;
}

.lbv2-mega__visual-label span{
  color:#99d1ff;
  font-size:8px;
  font-weight:900;
  letter-spacing:1.3px;
}

.lbv2-mega__visual-label strong{
  font-size:15px;
  font-weight:900;
}

.lbv2-mega__visual img{
  width:100%;
  height:205px;
  padding:10px;
  display:block;
  object-fit:contain;
  border-radius:13px;
  background:#fff;
  box-sizing:border-box;
  filter:drop-shadow(0 18px 24px rgba(0,0,0,.18));
}

.lbv2-mega__visual-footer{
  position:relative;
  z-index:2;
}

.lbv2-mega__visual-footer p{
  margin:0 0 11px;
  color:rgba(255,255,255,.76);
  font-size:10.5px;
  line-height:1.8;
}

.lbv2-mega__visual-footer a{
  min-height:43px;
  padding:0 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,.2);
  border-radius:10px;
  color:#fff;
  background:rgba(255,255,255,.09);
  font-size:10px;
  font-weight:900;
}

.lbv2-burger{
  width:46px;
  height:46px;
  display:none;
  position:relative;
  border:1px solid var(--lbv2-line);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
}

.lbv2-burger span{
  width:21px;
  height:2px;
  position:absolute;
  right:12px;
  border-radius:10px;
  background:var(--lbv2-navy);
  transition:
    top .22s ease,
    transform .22s ease,
    opacity .2s ease;
}

.lbv2-burger span:nth-child(1){
  top:14px;
}

.lbv2-burger span:nth-child(2){
  top:22px;
}

.lbv2-burger span:nth-child(3){
  top:30px;
}

.lbv2-burger.is-active span:nth-child(1){
  top:22px;
  transform:rotate(45deg);
}

.lbv2-burger.is-active span:nth-child(2){
  opacity:0;
}

.lbv2-burger.is-active span:nth-child(3){
  top:22px;
  transform:rotate(-45deg);
}

.lbv2-overlay{
  position:fixed;
  inset:0;
  z-index:5998;
  opacity:0;
  visibility:hidden;
  background:rgba(1,17,34,.68);
  backdrop-filter:blur(4px);
  transition:
    opacity .25s ease,
    visibility .25s ease;
}

.lbv2-overlay.is-open{
  opacity:1;
  visibility:visible;
}

.lbv2-drawer{
  width:min(380px,92vw);
  height:100dvh;
  position:fixed;
  top:0;
  right:-410px;
  z-index:5999;
  display:grid;
  grid-template-rows:auto auto minmax(0,1fr) auto;
  overflow:hidden;
  color:#fff;
  background:#06172b;
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-30px 0 80px rgba(0,0,0,.35);
  transition:right .3s cubic-bezier(.22,.61,.36,1);
}

.lbv2-drawer.is-open{
  right:0;
}

.lbv2-drawer__head{
  min-height:82px;
  padding:13px 17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.lbv2-drawer__brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
}

.lbv2-drawer__brand img{
  width:88px;
  height:50px;
  padding:4px 7px;
  object-fit:contain;
  border-radius:9px;
  background:#fff;
}

.lbv2-drawer__brand span{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:3px;
  direction:ltr;
  text-align:left;
}

.lbv2-drawer__brand strong{
  color:#fff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.8px;
}

.lbv2-drawer__brand small{
  color:rgba(255,255,255,.45);
  font-size:7.5px;
  font-weight:700;
}

.lbv2-drawer__head>button{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  color:#fff;
  background:rgba(255,255,255,.06);
  cursor:pointer;
  font-size:16px;
}

.lbv2-drawer__intro{
  margin:15px 17px 4px;
  padding:14px;
  border:1px solid rgba(88,175,251,.18);
  border-radius:12px;
  background:linear-gradient(
    135deg,
    rgba(12,83,165,.34),
    rgba(255,255,255,.03)
  );
}

.lbv2-drawer__intro span{
  color:#77c1ff;
  font-size:7.5px;
  font-weight:900;
  letter-spacing:1.1px;
}

.lbv2-drawer__intro p{
  margin:6px 0 0;
  color:rgba(255,255,255,.7);
  font-size:10.5px;
  font-weight:650;
  line-height:1.8;
}

.lbv2-mobile-nav{
  padding:11px 17px 18px;
  overflow-y:auto;
}

.lbv2-mobile-link,
.lbv2-mobile-item__row{
  min-height:48px;
  margin-top:7px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:11px;
  background:rgba(255,255,255,.045);
}

.lbv2-mobile-link{
  padding:0 13px;
  display:flex;
  align-items:center;
  gap:11px;
  color:rgba(255,255,255,.88)!important;
  font-size:11.5px;
  font-weight:800;
}

.lbv2-mobile-link>i,
.lbv2-mobile-item__row>a>i{
  width:22px;
  color:#79c1ff;
  text-align:center;
}

.lbv2-mobile-link.is-active,
.lbv2-mobile-item.is-active
.lbv2-mobile-item__row{
  border-color:rgba(95,180,255,.28);
  background:rgba(12,83,165,.32);
}

.lbv2-mobile-item__row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 44px;
  overflow:hidden;
}

.lbv2-mobile-item__row>a{
  min-height:48px;
  padding:0 13px;
  display:flex;
  align-items:center;
  gap:11px;
  color:rgba(255,255,255,.88);
  font-size:11.5px;
  font-weight:800;
}

.lbv2-mobile-item__row>button{
  width:44px;
  border:0;
  border-right:1px solid rgba(255,255,255,.075);
  color:#79c1ff;
  background:rgba(255,255,255,.025);
  cursor:pointer;
}

.lbv2-mobile-item.is-open
.lbv2-mobile-item__row>button i{
  transform:rotate(45deg);
}

.lbv2-mobile-item__row>button i{
  transition:transform .2s ease;
}

.lbv2-mobile-products{
  padding:7px 13px 3px;
}

.lbv2-mobile-products[hidden]{
  display:none;
}

.lbv2-mobile-products a{
  min-height:39px;
  padding:0 12px;
  position:relative;
  display:flex;
  align-items:center;
  color:rgba(255,255,255,.65);
  font-size:10.5px;
  font-weight:700;
}

.lbv2-mobile-products a::before{
  content:"";
  width:5px;
  height:5px;
  margin-left:9px;
  border-radius:50%;
  background:#4ca9f7;
}

.lbv2-drawer__footer{
  padding:14px 17px 18px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.13);
}

.lbv2-drawer__quote{
  min-height:56px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  border-radius:12px;
  color:#fff!important;
  background:linear-gradient(
    135deg,
    #1473d4,
    var(--lbv2-blue)
  );
}

.lbv2-drawer__quote span{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.lbv2-drawer__quote small{
  color:rgba(255,255,255,.6);
  font-size:7.5px;
}

.lbv2-drawer__quote strong{
  font-size:10.5px;
  font-weight:900;
}

.lbv2-drawer__contacts{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:7px;
}

.lbv2-drawer__contacts a{
  height:37px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.09);
  border-radius:9px;
  color:#d9ecfb;
  background:rgba(255,255,255,.04);
}

.zw-page-main{
  position:relative;
  z-index:1;
  width:100%;
  overflow:hidden;
}

@media(max-width:1340px){

  .lbv2-main__inner{
    gap:24px;
  }

  .lbv2-brand__text,
  .lbv2-brand__separator{
    display:none;
  }

  .lbv2-nav__link,
  .lbv2-nav__item>a{
    padding-inline:9px;
    font-size:12px;
  }

}

@media(max-width:1120px){

  .lbv2-topbar{
    display:none;
  }

  .lbv2-main__inner{
    min-height:76px;
    grid-template-columns:auto auto minmax(0,1fr) auto;
    gap:13px;
  }

  .lbv2-burger{
    display:block;
  }

  .lbv2-brand{
    justify-self:start;
  }

  .lbv2-brand__logo{
    width:104px;
    height:57px;
  }

  .lbv2-nav{
    display:none;
  }

  .lbv2-actions{
    grid-column:4;
  }

  .lbv2-mega{
    display:none;
  }

}

@media(max-width:680px){

  .lbv2-container{
    width:calc(100% - 24px);
  }

  .lbv2-main__inner{
    min-height:70px;
    grid-template-columns:44px minmax(0,1fr) auto;
    gap:9px;
  }

  .lbv2-burger{
    width:44px;
    height:44px;
  }

  .lbv2-brand{
    justify-self:center;
  }

  .lbv2-brand__logo{
    width:91px;
    height:51px;
  }

  .lbv2-actions{
    grid-column:3;
  }

  .lbv2-quote{
    display:none;
  }

  .lbv2-search-button{
    width:44px;
    height:44px;
  }

  .lbv2-search-form{
    min-height:72px;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:8px;
  }

  .lbv2-search-form>i{
    display:none;
  }

  .lbv2-search-form input{
    height:44px;
    padding-inline:12px;
    font-size:10.5px;
  }

  .lbv2-search-form>button[type="submit"]{
    height:42px;
    padding-inline:13px;
    font-size:9.5px;
  }

  .lbv2-search-close{
    width:34px;
  }

}

@media(max-width:410px){

  .lbv2-brand__logo{
    width:82px;
  }

  .lbv2-drawer{
    width:94vw;
    right:-96vw;
  }

}

@media(prefers-reduced-motion:reduce){

  *,
  *::before,
  *::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
  }

}

/* LIFTINGBEAM_FULL_WIDTH_HEADER_START */

/*
 * Full-width header layout
 * Independent LiftingBeam identity
 */

.lbv2-container{
  width:100%!important;
  max-width:none!important;
  margin-inline:0!important;
  padding-inline:clamp(
    20px,
    3.4vw,
    64px
  )!important;
  box-sizing:border-box;
}

.lbv2-main,
.lbv2-main__inner{
  width:100%;
  max-width:none;
}

.lbv2-main__inner{
  grid-template-columns:
    auto
    minmax(0,1fr)
    auto;
}

.lbv2-nav{
  width:100%;
  justify-content:center;
}

/*
 * Full viewport mega menu
 */

.lbv2-mega{
  width:100%!important;
  max-width:none!important;
  top:100%!important;
  right:0!important;
  left:0!important;

  border-right:0!important;
  border-left:0!important;
  border-radius:0!important;

  transform:translateY(14px)!important;
}

.lbv2-mega.is-open{
  transform:translateY(0)!important;
}

.lbv2-mega__grid{
  width:100%;
  max-width:none;
  min-height:430px;

  grid-template-columns:
    minmax(0,1fr)
    clamp(380px,29vw,480px);
}

.lbv2-mega__content{
  padding:
    30px
    clamp(28px,4.2vw,72px);
}

.lbv2-mega__head{
  width:100%;
}

.lbv2-mega__products{
  grid-template-columns:
    repeat(3,minmax(0,1fr));
  gap:10px;
}

.lbv2-product-link{
  min-height:76px;
}

.lbv2-mega__visual{
  min-height:430px;
  border-radius:0;
}

.lbv2-mega__visual img{
  height:225px;
}

/*
 * Full-width search panel
 */

.lbv2-search-panel{
  width:100%;
  right:0;
  left:0;
}

.lbv2-search-form{
  width:100%;
}

/*
 * Slightly larger actual site logo
 */

.lbv2-brand__logo{
  width:82px;
  height:70px;
}

.lbv2-brand__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.lbv2-header.is-compact
.lbv2-brand__logo{
  width:68px;
  height:58px;
}

@media(
  min-width:1121px
)
and
(
  max-width:1320px
){

  .lbv2-mega__products{
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

  .lbv2-mega__grid{
    grid-template-columns:
      minmax(0,1fr)
      370px;
  }

}

@media(max-width:1120px){

  .lbv2-container{
    padding-inline:18px!important;
  }

  .lbv2-main__inner{
    grid-template-columns:
      auto
      auto
      minmax(0,1fr)
      auto;
  }

  .lbv2-brand__logo{
    width:68px;
    height:58px;
  }

}

@media(max-width:680px){

  .lbv2-container{
    width:100%!important;
    padding-inline:12px!important;
  }

  .lbv2-main__inner{
    grid-template-columns:
      44px
      minmax(0,1fr)
      44px;
  }

  .lbv2-brand__logo{
    width:58px;
    height:54px;
  }

}

/* LIFTINGBEAM_FULL_WIDTH_HEADER_END */
