
:root{
  --uesv-green:#79b82a;
  --uesv-green-dark:#397b38;
  --uesv-blue:#12628f;
  --uesv-blue-dark:#123f5b;
  --uesv-ink:#263840;
  --uesv-line:#dce5e8;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;max-width:100%;overflow-x:hidden}
body{
  font-family:"Segoe UI",Arial,sans-serif;
  color:var(--uesv-ink);
  background:#fff;
}
.main{width:100%;max-width:none;margin:0;padding:0}
.uesv-layout-nav{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--uesv-line);
  backdrop-filter:blur(10px);
}
.uesv-layout-nav-inner{
  max-width:1240px;
  min-height:86px;
  padding:10px 24px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:28px;
}
.uesv-layout-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:inherit;
  text-decoration:none;
  flex:0 0 auto;
}
.uesv-layout-brand img{width:58px;height:64px;object-fit:contain}
.uesv-layout-brand-text{display:flex;flex-direction:column;line-height:1.1}
.uesv-layout-brand-text strong{
  color:var(--uesv-blue-dark);
  font-size:20px;
  font-weight:900;
  letter-spacing:.015em;
}
.uesv-layout-brand-text small{
  color:#70818a;
  margin-top:4px;
  font-size:12px;
  font-weight:700;
}
.uesv-layout-menu{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:18px;
}
.uesv-layout-menu-level1,
.uesv-layout-submenu{
  margin:0;
  padding:0;
  list-style:none;
}
.uesv-layout-menu-level1{
  display:flex;
  align-items:center;
  gap:19px;
}
.uesv-layout-menu-item{position:relative}
.uesv-layout-menu-item>a{
  display:block;
  color:#30444e;
  text-decoration:none;
  font-size:14px;
  font-weight:850;
  padding:14px 0;
  white-space:nowrap;
}
.uesv-layout-menu-item>a:hover,
.uesv-layout-menu-item.is-active>a,
.uesv-layout-menu-item.is-selected>a{color:var(--uesv-green-dark)}
.uesv-layout-menu-item.is-active>a:after,
.uesv-layout-menu-item.is-selected>a:after{
  content:"";
  position:absolute;
  height:2px;
  left:0;
  right:0;
  bottom:7px;
  background:var(--uesv-green);
}
.uesv-layout-submenu{
  display:none;
  position:absolute;
  left:-16px;
  top:100%;
  min-width:220px;
  padding:10px;
  background:#fff;
  border:1px solid var(--uesv-line);
  border-radius:13px;
  box-shadow:0 14px 35px rgba(30,56,68,.14);
}
.uesv-layout-menu-item:hover>.uesv-layout-submenu,
.uesv-layout-menu-item:focus-within>.uesv-layout-submenu{display:block}
.uesv-layout-submenu li{position:relative}
.uesv-layout-submenu a{
  display:block;
  padding:9px 10px;
  border-radius:8px;
  color:#30444e;
  text-decoration:none;
  font-size:13px;
  font-weight:750;
}
.uesv-layout-submenu a:hover{background:#eff7e7;color:var(--uesv-green-dark)}
.uesv-layout-submenu-level3{
  left:100%;
  top:-10px;
}
.uesv-layout-submenu li:hover>.uesv-layout-submenu-level3,
.uesv-layout-submenu li:focus-within>.uesv-layout-submenu-level3{display:block}
.uesv-layout-login a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border:1px solid var(--uesv-line);
  border-radius:10px;
  color:var(--uesv-blue-dark);
  text-decoration:none;
  font-size:13px;
  font-weight:850;
}
.uesv-layout-menu-toggle{
  display:none;
  border:0;
  background:#eef5f8;
  color:var(--uesv-blue-dark);
  border-radius:10px;
  padding:10px 12px;
  font:inherit;
  font-weight:850;
  cursor:pointer;
}
.uesv-layout-hamburger{font-size:18px}
.uesv-layout-header:empty{display:none}
.uesv-layout-content{
  width:100%;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  overflow:visible;
}
.uesv-layout-with-sidebar{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:28px;
  padding:0 24px;
}
.uesv-layout-sidebar{min-width:0}
.uesv-layout-footer{width:100%}
.uesv-layout-totop{
  position:fixed;
  right:20px;
  bottom:22px;
  z-index:800;
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--uesv-blue-dark);
  border:1px solid var(--uesv-line);
  box-shadow:0 8px 25px rgba(30,56,68,.14);
  cursor:pointer;
}
@media(max-width:1180px){
  .uesv-layout-nav-inner{min-height:76px}
  .uesv-layout-menu-toggle{display:flex;align-items:center;gap:7px;margin-left:auto}
  .uesv-layout-menu{
    display:none;
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    margin:0;
    padding:14px;
    background:#fff;
    border:1px solid var(--uesv-line);
    border-radius:15px;
    box-shadow:0 14px 35px rgba(30,56,68,.16);
    flex-direction:column;
    align-items:stretch;
    max-height:calc(100vh - 100px);
    max-height:calc(100dvh - 100px);
    overflow-y:auto;
    overscroll-behavior:contain;
  }
  .uesv-layout-menu.is-open{display:flex}
  .uesv-layout-menu-level1{display:block}
  .uesv-layout-menu-item>a{padding:11px 10px}
  .uesv-layout-submenu,
  .uesv-layout-submenu-level3{
    position:static;
    display:block;
    border:0;
    box-shadow:none;
    padding:0 0 0 14px;
    min-width:0;
  }
  .uesv-layout-login{padding:8px 10px 2px}
  .uesv-layout-with-sidebar{grid-template-columns:1fr}
}
@media(max-width:620px){
  .uesv-layout-nav-inner{padding:8px 16px}
  .uesv-layout-brand img{width:46px;height:52px}
  .uesv-layout-brand-text strong{font-size:16px}
  .uesv-layout-brand-text small{font-size:10px}
  .uesv-layout-menu-toggle span:first-child{display:none}
}

