  @import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&display=swap');
  
.menu-shell{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items:center;

  padding:14px 28px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__item a {
  color: #6c4cff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__item a:hover {
  color: #4f46e5;
  text-decoration: underline;
}

.breadcrumbs__current {
  color: #666677;
}
h1 {
    color: #6c4cff;
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    color: #6c4cff;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
}


.center-main{
  grid-column:2;
  grid-row:1 / span 2;
  justify-self:center;
  font-weight:700;
  text-align:left;
  
  
}

.left-top{
  grid-column:1;
  grid-row:1;
  justify-self:start;
}

.left-bottom{
  grid-column:1;
  grid-row:2;
  justify-self:start;
}


.right-top{
  grid-column:3;
  grid-row:1;
  justify-self:end;
}

.right-bottom{
  grid-column:3;
  grid-row:2;
 
}



.news-card-inner h3{
  color:#6D52E1;
  font-weight:600;
  margin-top:28px;
  margin-bottom:10px;
}

.hero-news {
  display: flex;
  justify-content: center;
  padding: 40px 100px;
  font-family: 'Onest', sans-serif;
}

.news-card-outer {
  background: #f3f1f5; /* фон внешней карточки */
  padding: 30px 30px 20px 30px;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.news-card-outer .hero-date {
  font-size: 14px;
  color: #666677;
  margin-bottom: 8px;
  display: block;
}

.news-card-outer .hero-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #111119;
}

.news-card-inner {
  background: #ffffff; /* фон внутренней карточки с текстом */
  padding: 1px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.hero-news .hero-text {
  font-size: 20px;
  margin-bottom: 16px;
  color: #333;
font-weight: 300;
		line-height: 1.5;
}



@media (max-width: 980px) {
  .hero-news {
    padding: 0px 20px;
  }
  .news-card-outer {
    padding: 20px 10px 15px 10px;
  }
  .news-card-inner {
    padding: 20px;
  }
  .news-card-outer .hero-title {
    font-size: 25px;
  }
  .hero-news .hero-text {
    font-size: 15px;
  }
  .news-card-outer .hero-date {
    font-size: 15px;
		}
			h2 {
				font-size: 20px;
  }
}




 html, body {
  font-family: 'Onest', sans-serif !important;
}

	#bx-admin-prefix .adm-info-message {
		display: none !important;
	}
  :root {
    --base:#ffffff;
    --text:#111119;
    --light:#666677;
    --line:#e2e2ea;
    --dark:#0a0a12;
    --topbar-shadow: 0 8px 24px rgba(0,0,0,.06);
  }

  html { scroll-behavior:smooth; }
  body {
    margin:0;
    font-family: 'Onest', sans-serif;
    background:var(--base);
    color:var(--text);
  }
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 60px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}
.menu-backdrop {
  position: fixed;
  inset: 0; 
  background: rgba(255,255,255,0.2); 
  backdrop-filter: blur(10px);    
  z-index: 900;                     
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.menu-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width:1130px){
  .burger.is-hidden{ display:none !important; }
}
@media (max-width:1130px){
  header.topbar {
    padding: 12px 16px;
    gap: 10px;
    height: auto;
			padding-right: 100px !important;
			padding-left: 100px !important;
  }
  .hero-title {
  display: block;
}
		.logo-box {
			width: 150px !important;
		}

  .logo-img { width:500px; height:50px; }



  .burger {
    display: flex;
    margin-left: auto;
    order: 3;
    z-index: 1001;
    height: 20px;
    width: 30px;
  }

.menu-area {
  display: flex;

  position: fixed;
  top: 0;
  left: 0;

  width:100% !important;

  background: #fff; 
  box-shadow: 0 6px 20px rgba(0,0,0,.2);

  z-index: 1000;

  transform: translateY(-100%);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.menu-area.is-open {
  transform: translateY(0);
  background: transparent;  
  box-shadow: none;     
}
  .menu-area.is-open {
    transform: translateY(0);
			width: 98% !important;
			left:1vw !important;

  }

  .menu-shell {
    flex-direction: row;  
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 14px 28px !important;
			display: flex;
			flex-direction: column;
			border-radius: 40px !important;
      
  }

  .menu-link {
    font-size: 4vw !important;
margin-top: 10px !important;
			color: black !important;
  }

}

  header.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #FEFEFE;
    transform: translateY(0);
    transition: transform .28s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;


    padding-top: 5px;
    padding-left: 100px;
    padding-right: 100px;
		height: 80px;
  }

  header.topbar.is-hidden {
    transform: translateY(-110%);
  }

  .logo-box {
    display:flex;
    align-items:center;
    gap:10px;
    width:100px;
    margin-left: 5px;
  }
  .logo-img {
    width:500px;
    object-fit:cover;
    display:block;
  }

  .menu-area {
    flex:1 1 auto;
    display:flex;
    justify-content:center;
    margin-left: 260px;
  }
  .menu-shell {
    display:flex;
    align-items:center;
    gap:28px;
    padding:12px 22px;
    border:1px solid var(--line);
    border-radius:999px;
    background:#fff;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
  }
  .menu-link {
    text-decoration:none;
    color:var(--light);
    font-size:15px;
    line-height:1;
    white-space:nowrap;
    transition:color .2s ease;
    font-family: 'Onest', sans-serif;
  }
  .menu-link:hover,
  .menu-link:focus { color:var(--text); }
  
.nm-hero-bg.video-wrapper {
position: absolute;
    top: 0;
    left: 0;
    height: 22vw;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.nm-hero-bg.video-wrapper iframe {
    width: 105%;
    height: 20.8vw;
    object-fit: cover;
    pointer-events: none;
    margin-top: 0.5vw;

}
  .action-btn {
    text-decoration:none;
    background:var(--dark);
    color:#fff;
    padding:12px 18px;
    border-radius:999px;
    font-size:15px;
    line-height:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,.2);
    transition:transform .15s ease, box-shadow .2s ease;
    font-family: 'Onest', sans-serif;
  }
  .action-btn:hover { transform:translateY(-1px); }
  .action-btn:active { transform:translateY(0); }

  @media (max-width:980px){
    .menu-shell{ gap:20px; padding:10px 16px; }
  }
  @media (max-width:980px){
		header.topbar{ padding:12px 0px; padding-left: 20px !important; padding-right: 20px !important; gap:10px; }
    .menu-area{ order:3; width:100%; margin-left:0; }
    .menu-shell{ justify-content:space-between; width:100%; }
    .action-btn{ padding:10px 14px; }
    .logo-img{ width:500px; height:35px; }
  }

  @media (prefers-reduced-motion: reduce) {
    header.topbar { transition: none; }
  }

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 440px;
  background: linear-gradient(90deg, #17151f 0%, #1d1a27 100%);
  color: #fff;
  padding: 16px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  z-index: 999999;
  border-radius: 12px;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cookie-banner__btn {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 12px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

/* --- АДАПТИВ ДЛЯ МОБИЛОК --- */
@media (max-width: 980px) {
  .cookie-banner {
    width: calc(80% - 40px); /* почти на весь экран */
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 20px;
    padding: 18px;
    border-radius: 12px;
  }

  .cookie-banner__btn {
    padding: 12px;
    font-size: 30px;
  }
.cookie-banner {
			font-size: 20px;
		}
}

.site-footer {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  width: 100vw;
  background: linear-gradient(135deg, #1c1c2e, #2e1c3a);
  color: #fff;
  padding: 40px 0 50px;
  margin-top: 70px;
}

.footer-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 100px;

  display: grid;
  grid-template-columns: 1fr 750px; 
  align-items: start;
  gap: 40px;

}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
}

.footer-logo img { width: 200px; margin: -10px 0 10px; }

.footer-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
}

.footer-link {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
.footer-link:hover {
  color: #d3d3d3;
}

.footer-contacts-title {
  margin: 10px 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.footer-contacts p {
  margin: 0 0 8px;
  font-size: 14px;
}
.footer-contacts a {
  color:#fff;
  text-decoration:none;
}
.footer-contacts a:hover {
  text-decoration:underline;
}

.footer-address p {
  margin: 0 0 8px;
  font-size: 14px;
}

.footer-privacy {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
}
.footer-privacy h4 {
  margin: 1px 0 2px; 
  font-size: 14px;
  color: #fff;
}
.footer-privacy p {
  margin: 0 0 10px;
}
.footer-privacy .policy-question {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 12px 0 0;
}
.footer-privacy .policy-text {
  font-size: 12px; 
  line-height: 1.5;
  color: rgba(255,255,255,.8);
  margin: 0; 
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 500px;
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 550px;
  filter: grayscale(100%);
}

@media (max-width: 980px) {
  .news-card-inner > div[style*="background: #f8fafc"] {
    font-size: 16px !important;
    padding: 1rem !important;
  }
  
  .news-card-inner > div[style*="background: #f8fafc"] ul li {
    margin-bottom: 0.4rem !important;
  }
  
  .news-card-inner > div[style*="background: #f8fafc"] ul li a {
    font-size: 16px !important;
    
  }
    .footer-container {
    padding: 0 20px;
  }
}
@media (max-width: 1024px){
  .footer-container {
    grid-template-columns: 1fr;
  }
  .map-container { height: 310px; }
}

@media (max-width: 640px){
  .footer-logo img{ width: 180px; }
  .map-container { height: 220px; }
}

@media (max-width:1300px){ 
		.action-btn {
		display: none !important;
	}
		.menu-area {
			justify-content: flex-end;

		}
	}
