@charset "UTF-8";
/* =========================================================================
   Header + footer navigation menus — extracted from css/style-black.css
   2026-04-25 (Pass 2).

   .menu / .headMenu (top navbar with hover dropdowns) + .fmenus (footer
   columns of links). Loaded after the early scattered single-line rules
   (.MenuArrow / .menuBTN / .logo img / .Header / .navbarLogo) which
   stayed in style-black.css for now — they're tangled with non-menu
   utility rules and need a deeper Pass-2 sweep to disentangle.

   Mobile drawer/overlay rules for the menu live in the legacy bulk near
   the top of style-black.css — those will move here once the legacy bulk
   is dissected. For now this file holds the desktop menu styling.
   ========================================================================= */

/*  MENU  */

.menu
{
	position: fixed;
	z-index: 20;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	background: #0d1117;
	height: 80px;
	justify-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
	border-bottom: 1px solid #ffffff5e;
	border-radius: 0;
	box-shadow: none;
	transition: top 0.35s ease, left 0.35s ease, right 0.35s ease,
	            border-radius 0.35s ease, background-color 0.35s ease,
	            box-shadow 0.35s ease, height 0.35s ease;
}
.menu.floating
{
	top: 10px;
	left: 16px;
	height: 60px;
	right: 16px;
	border-radius: 16px;
	background: rgba(13, 17, 23, 0.8) !important;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.menu.floating .headMenu>li>a {
	height: 60px;
}

.headMenu {
  display: inline-flex;
  text-align: end;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0;
  margin: 0;
  transition: height 0.2s linear;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.headMenu *:not(a), .headMenu *:before {
   -webkit-transition: all 0.3s ease; 
  transition: all 0.3s ease;
}
.headMenu li {
  display: inline-block;
  list-style: outside none none;
  margin: 0;
  position: relative;
}
[dir="rtl"] .headMenu li { float: right; }
[dir="ltr"] .headMenu li { float: left; font-size: 13px; }
.headMenu > li {
  border: none;
}
.headMenu > li:first-of-type {
  border: none;
}
.headMenu a {
  color: #94a3b8;
  display: flex;
  padding: 0 10px;
  position: relative;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  white-space: normal;
  text-align: center;
  height: 80px;
  overflow: hidden;
  align-content: center;
  align-items: center;
  transition: height 0.35s ease;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

.headMenu a:hover {
  color: #ffffff;
}
.headMenu > li:before,
.headMenu > li:after {
  position: absolute;
  content: '';
}
.headMenu li:before {
  display: none;
}

.headMenu ul {
  display: none;
  position: absolute;
  top: 100%;
  right: -2px;
  margin: 0;
  padding: 6px 0;
  white-space: nowrap;
  min-width: 175px;
  background: #131c2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid #e63946;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  color: #94a3b8;
  font-weight: 400;
  z-index: 100;
}
.headMenu ul li {
  display: list-item;
  float: none;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-inline-end: none;
  border-inline-start: none;
}
.headMenu ul li a {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  color: #94a3b8;
  text-transform: none;
  text-align: start;
  height: auto;
  min-width: 175px;
  font-size: 12px;
  transition: all 0.15s ease;
  letter-spacing: 0;
}
.headMenu ul li a:hover {
  color: #ffffff;
  background: rgba(230,57,70,0.08);
  padding-inline-start: 22px;
  cursor: pointer;
  opacity: 1;
}
.headMenu li:hover > ul, .headMenu li.active > ul {
  display: inherit;
}
.headMenu li > a:after {
  content: ' \f0d7';
  font-family: "fontawesome";
  padding-inline-start: 4px;
  font-size: 10px;
  opacity: 0.4;
}
.headMenu li > a:only-child:after {
  content: '';
}
.headMenu ul ul {
  background-color: #000000;
  top: 0px;
  right: 100%;
  list-style: none;
  font-size: 1em;
}
.headMenu ul li > a:after {
  content: '';
}
.headMenu > li:hover > a,
.headMenu > li.current > a {
  color: #ffffff;
}
.headMenu > li:hover:before,.headMenu > li.active:before,.headMenu > li.current:before {
  opacity: 0;
}
.headMenu > li.current > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e63946;
  border-radius: 2px 2px 0 0;
}

.wide-map-top.inj {
    background: #759583;
    padding: 0;
}
.footerMsg {
    max-width: 350px;
    text-align: justify;
    font-size: 12px;
    color: #ccc;
    display: block;
    border-inline-start: 5px solid;
    padding: 0 10px 0 10px;
}

.footerLogo {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
}

.footerCopyRights {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #222;
    max-width: 1000px;
    margin: 20px auto;
    color: #FFF;
}
.footer-cr-left   { justify-self: start;  }
.footer-cr-center { justify-self: center; text-align: center; }
.footer-cr-right  { justify-self: end;    }

.footer-telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    color: #fff;
    background: transparent;
    font-size: 22px;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}
.footer-telegram-btn:hover {
    color: #fff;
    opacity: 0.75;
    transform: translateY(-1px);
}

.footer ul {
    display: flex;
    flex-direction: column;
    width: 230px;
    gap: 10px;
    border-inline-end: 1px solid #222;
    margin: 10px 0 0;
    padding: 0 20px;
    list-style: none;
}

.fmenus {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.fmenus li a:hover {
    color: white;
    font-weight: bold;
}

.fmenus li a:before {
    content: '\f0d9';
    font-family: 'FontAwesome';
    margin-inline-end: 10px;
}
[dir="ltr"] .fmenus li a:before { content: '\f0da'; }
