.global-nav{width: 100%;background-color: rgba(150, 153, 139, 0.85);position: sticky;top: 0;z-index: 1000;}


.global-nav__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: stretch; list-style: none; }

.global-nav__item { flex: 1; position: relative; }
.global-nav__item + .global-nav__item::before { content: ''; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: rgba(58,61,53,0.18); }
.global-nav__item--active .global-nav__link { color: #ffffff; background: rgba(58,61,53,0.09); }
.global-nav__item--active .global-nav__link::after { transform: translateX(-50%) scaleX(1); }

.global-nav__link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 18px 8px; text-decoration: none; color: #ffffff; position: relative; z-index: 1; overflow: hidden;
  transition: color .35s ease, letter-spacing .35s ease; }
.global-nav__link::before { content: ''; position: absolute; inset: 0; background: rgba(58,61,53,0.11);
  transform: scaleY(0); transform-origin: bottom center; transition: transform .38s cubic-bezier(.22,1,.36,1); z-index: -1; }
.global-nav__link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 44%; height: 2.5px;
  background: #3a3d35; border-radius: 2px 2px 0 0;
  transform: translateX(-50%) scaleX(0); transition: transform .4s cubic-bezier(.22,1,.36,1); }

.global-nav__item:hover .global-nav__link { color: #ffffff; letter-spacing: .04em; }
.global-nav__item:hover .global-nav__link::before { transform: scaleY(1); }
.global-nav__item:hover .global-nav__link::after { transform: translateX(-50%) scaleX(1); }
.global-nav__item:hover .global-nav__icon { transform: translateY(-3px); opacity: 1; }
.global-nav__item:hover .global-nav__label { transform: translateY(1px); }

.global-nav__icon { display: block; width: 22px; height: 22px; opacity: .65;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease; }
.global-nav__label { display: block; font-size: 14px; font-weight: 400; letter-spacing: .06em; white-space: nowrap;
  transition: transform .35s cubic-bezier(.22,1,.36,1); }
.global-nav__label--small{font-size: 11.5px; line-height: 1.35; letter-spacing: .02em; white-space: normal; text-align: center;}
.global-nav__link{height: 100%;}

/* 1100px
------------------------------------------------------------*/
@media only screen and (max-width: 1099px){
.global-nav{display:none;}
}