

.header-1 {
	--bar-h: 76px;
	--bar-h-sm: 60px;
	--bar-top: .75rem;                 
	--bar-side: 1rem;                  
	--bar-max: calc(1320px + 100px);   
	--bar-radius: 18px;
	--glass: rgba(255, 255, 255, .72);
	--glass-stuck: rgba(255, 255, 255, .88);
	--edge: rgba(255, 255, 255, .55);
	position: relative;
	z-index: 1030;
}
.header-1 .preload * {transition: none !important;}


.header-1 .header-bar {
	position: fixed; z-index: 1030;
	top: var(--bar-top); left: var(--bar-side); right: var(--bar-side);
	margin-inline: auto; max-width: var(--bar-max);
	background: var(--glass);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border: 1px solid var(--edge);
	border-radius: var(--bar-radius);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
	transition: background .35s ease, box-shadow .35s ease, top .35s cubic-bezier(.19, 1, .22, 1);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.header-1 .header-bar {background: rgba(255, 255, 255, .97);}
}
.header-1 .header-bar.is-stuck {top: .375rem; background: var(--glass-stuck); box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .14);}

.header-1 .header-inner {
	height: var(--bar-h);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	transition: height .35s cubic-bezier(.19, 1, .22, 1);
}
.header-1 .header-bar.is-stuck .header-inner {height: var(--bar-h-sm);}


.header-1 .header-spacer {height: calc(var(--bar-h) + var(--bar-top) * 2);}

.header-1 .header-logo {position: relative; z-index: 1020; display: inline-flex; align-items: center; padding-right: 1.5rem;}
.header-1 .header-logo img {max-width: 190px; height: auto; transition: transform .35s cubic-bezier(.19, 1, .22, 1), opacity .25s;}
.header-1 .header-bar.is-stuck .header-logo img {transform: scale(.85);}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-logo:hover img {opacity: .75;}
}


.header-1 .header-toggle {position: relative; z-index: 1020; width: 3rem; height: 3rem; padding: 1rem; cursor: pointer;}
.header-1 .header-toggle > span,
.header-1 .header-toggle::before,
.header-1 .header-toggle::after {display: block; backface-visibility: hidden; width: 1.5rem; height: .125rem; background: var(--bs-body-color); position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; transition: .4s cubic-bezier(.19, 1, .22, 1);}
.header-1 .header-toggle::before {content: ''; top: 20%;}
.header-1 .header-toggle::after {content: ''; top: 80%;}
.header-1 .header-checkbox:checked ~ .header-toggle::before {top: 50%; transform: translate(-50%, -50%) rotateZ(135deg);}
.header-1 .header-checkbox:checked ~ .header-toggle::after {top: 50%; transform: translate(-50%, -50%) rotateZ(-135deg);}
.header-1 .header-checkbox:checked ~ .header-toggle > span {transform: translate(-50%, -50%) rotateY(90deg); opacity: 0;}


.header-1 .header-toolbar {
	position: fixed; z-index: 1000;
	top: var(--bar-top); left: var(--bar-side); right: var(--bar-side);
	margin-inline: auto; max-width: var(--bar-max);
	border-radius: var(--bar-radius); border: 1px solid var(--edge);
	max-height: calc(100dvh - var(--bar-top) * 2); overflow-y: auto;
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	transform: translateY(-100%); opacity: 0; visibility: hidden;
	transition: transform .45s cubic-bezier(.19, 1, .22, 1), opacity .35s ease, visibility .45s;
	padding: calc(var(--bar-h) + 1rem) 1.5rem 2rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
}
.header-1 .header-checkbox:checked ~ .header-toolbar {transform: translateY(0); opacity: 1; visibility: visible;}


.header-1 .header-contacts {gap: .75rem;}
.header-1 .header-city,
.header-1 .header-tel {display: inline-flex; align-items: center; gap: .45rem; margin: 0; white-space: nowrap; color: var(--bs-body-color); text-decoration: none;}
.header-1 .header-city {background: none; border: 0; padding: .25rem .5rem; border-radius: 8px; cursor: pointer; transition: background .2s, color .2s;}
.header-1 .header-city > span {display: inline-block; max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle;}
.header-1 .header-city .cities-caret {font-size: .7em; opacity: .5; color: inherit; transition: transform .2s;}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-city:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}
	.header-1 .header-city:hover .cities-caret {transform: translateY(2px);}
}
.header-1 .header-city i,
.header-1 .header-tel i {color: var(--bs-primary); font-size: .875em;}
.header-1 .header-tel {font-weight: 700; transition: color .25s;}
@media (hover: hover) and (pointer: fine) {
	.header-1 .header-tel:hover {color: var(--bs-primary);}
}




.header-1 .header-nav ul {list-style: none; display: flex; flex-direction: column; margin: 0; padding: 0;}
.header-1 .header-nav li {position: relative;}
.header-1 .header-nav a {display: block; padding: .625rem .1rem; color: var(--bs-body-color); text-decoration: none; border-bottom: 1px solid rgba(0, 0, 0, .06); transition: color .25s;}
.header-1 .header-nav li.parent > ul {display: none;}
.header-1 .header-nav li.parent.open > ul {display: block;}
.header-1 .header-nav .accordion-toggle {position: absolute; top: .2rem; right: 0; width: 2.25rem; height: 2.25rem; padding: 0; border: none; border-radius: 8px; background: rgba(var(--bs-primary-rgb), .1); color: var(--bs-primary); display: flex; align-items: center; justify-content: center; transition: transform .3s;}
.header-1 .header-nav li.open > .accordion-toggle {transform: rotateZ(180deg);}

@media (min-width: 1200px) {
	.header-1 .header-toolbar {position: static; border: 0; border-radius: 0; box-shadow: none; max-width: none; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; opacity: 1; visibility: visible; overflow: visible; max-height: none; flex: auto; padding: 0;}
	.header-1 .header-nav > ul {flex-direction: row;}
	.header-1 .header-nav a {border: none;}
	.header-1 .header-nav li.parent > a {padding-right: 1.3rem;}
	.header-1 .header-nav .accordion-toggle {display: none;}

	
	.header-1 .header-nav > ul > li > a::before {content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .2rem; height: 2px; background: var(--bs-primary); transform: scaleX(0); transition: transform .3s cubic-bezier(.19, 1, .22, 1);}
	.header-1 .header-nav > ul > li:hover > a::before,
	.header-1 .header-nav > ul > li.active > a::before {transform: scaleX(1);}
	.header-1 .header-nav > ul > li:hover > a,
	.header-1 .header-nav > ul > li.active > a {color: var(--bs-primary);}

	
	.header-1 .header-nav li.parent > ul,
	.header-1 .header-nav li.parent.open > ul {display: block;}
	.header-1 .header-nav li ul {
		position: absolute; z-index: 1000; white-space: nowrap; padding: .5rem; min-width: 100%;
		border-radius: 12px; border: 1px solid var(--edge);
		background: rgba(255, 255, 255, .9);
		backdrop-filter: blur(16px) saturate(180%);
		-webkit-backdrop-filter: blur(16px) saturate(180%);
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, .12);
		opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px);
		transition: opacity .28s ease, transform .28s cubic-bezier(.19, 1, .22, 1), visibility .28s;
	}
	.header-1 .header-nav > ul > li > ul {top: 100%; left: 0;}
	.header-1 .header-nav li li ul {top: -.5rem; left: 100%; margin-left: .25rem;}
	
	.header-1 .header-nav li li ul::before {content: ''; position: absolute; top: 0; left: -.25rem; width: .25rem; height: 100%;}
	.header-1 .header-nav li.parent:hover > ul,
	.header-1 .header-nav li.parent:focus-within > ul {opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);}
	.header-1 .header-nav li ul a {border-radius: 8px; padding: .5rem .75rem;}
	.header-1 .header-nav li ul a:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}

	.header-1 .header-nav li.parent > a {padding-right: 1.75rem;}
	.header-1 .header-nav li.parent > a::after {content: '\f107'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .7rem; position: absolute; top: 50%; right: .5rem; transform: translateY(-50%); transition: transform .3s;}
	.header-1 .header-nav li.parent:hover > a::after {transform: translateY(-50%) rotateZ(180deg);}
	.header-1 .header-nav li li.parent > a::after {content: '\f105'; transform: translateY(-50%);}
	.header-1 .header-nav li li.parent:hover > a::after {transform: translateY(-50%) translateX(3px);}
}

@media (min-width: 1400px) {
	.header-1 .header-nav a {padding: .625rem 1rem;}
}


.cities-list {display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: .25rem;}
.cities-item {display: block; padding: .5rem .75rem; border-radius: 8px; color: var(--bs-body-color); text-decoration: none; transition: background .2s, color .2s;}
.cities-item:hover {background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-primary);}
.cities-item.is-active {background: var(--bs-primary); color: var(--bs-primary-text); font-weight: 700;}
#cities .modal-dialog {max-width: 56rem;}


.header-1 .breadcrumbs {padding: 1rem 0 .25rem;}
.header-1 .breadcrumbs .breadcrumb {margin: 0; flex-wrap: wrap;}
.header-1 .breadcrumbs a {color: var(--bs-secondary-color); text-decoration: none; transition: color .2s;}
.header-1 .breadcrumbs a:hover {color: var(--bs-primary);}
.header-1 .breadcrumbs .breadcrumb-item.active a {color: var(--bs-body-color); pointer-events: none;}


.header-1 .header-nav li.parent > a[href="#"] {color: var(--bs-secondary-color);}
.header-1 .header-nav li:not(.parent) > a[href="#"] {color: var(--bs-secondary-color); opacity: .75; pointer-events: none; cursor: default;}
.header-1 .header-nav li:not(.parent) > a[href="#"]::after {
	content: "скоро";
	display: inline-block;
	margin-left: .4rem;
	padding: .05rem .4rem;
	font-size: .7em;
	line-height: 1.4;
	border-radius: .5rem;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	vertical-align: middle;
	opacity: .9;
}

@media (prefers-reduced-motion: reduce) {
	.header-1 *, .header-1 *::before, .header-1 *::after {transition: none !important; animation: none !important;}
}





.rostube-1 .blog-shell {display: grid; grid-template-columns: 240px minmax(0, 1fr) 300px; gap: 2rem; align-items: start; padding-top: 1rem;}

.rostube-1 .blog-side {position: sticky; top: 90px;}
.rostube-1 .blog-side-inner {display: flex; flex-direction: column; gap: 1.5rem;}
.rostube-1 .side-title {font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--bs-secondary-color); margin-bottom: .75rem;}
.rostube-1 .side-title i {color: var(--bs-primary); margin-right: .35rem;}


.rostube-1 .side-nav {list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .15rem;}
.rostube-1 .side-nav a {display: flex; align-items: center; gap: .75rem; padding: .55rem .7rem; border-radius: .7rem; color: var(--bs-body-color); text-decoration: none; font-weight: 500; line-height: 1.2; transition: background .2s, color .2s;}
.rostube-1 .side-nav a i {width: 1.15rem; text-align: center; color: var(--bs-secondary-color); transition: color .2s;}
.rostube-1 .side-nav a:hover {background: rgba(var(--bs-primary-rgb), .07);}
.rostube-1 .side-nav a.active {background: rgba(var(--bs-primary-rgb), .1); color: var(--bs-primary);}
.rostube-1 .side-nav a.active i,
.rostube-1 .side-nav a:hover i {color: var(--bs-primary);}


.rostube-1 .side-app .pwa-install {display: flex; align-items: center; justify-content: center; font-weight: 600;}
.rostube-1 .side-stores {display: flex; flex-direction: column; gap: .5rem; margin-top: .6rem;}
.rostube-1 .store-badge {display: flex; align-items: center; gap: .6rem; padding: .45rem .75rem; border: 1px solid rgba(11, 11, 18, .15); border-radius: .7rem; color: var(--bs-body-color); text-decoration: none; transition: border-color .2s, background .2s;}
.rostube-1 .store-badge:hover {border-color: rgba(var(--bs-primary-rgb), .4); background: rgba(var(--bs-primary-rgb), .05);}
.rostube-1 .store-badge i {font-size: 1.5rem; width: 1.6rem; text-align: center;}
.rostube-1 .store-badge span {display: flex; flex-direction: column; line-height: 1.1; font-weight: 700; font-size: .95rem;}
.rostube-1 .store-badge small {font-size: .66rem; font-weight: 400; color: var(--bs-secondary-color); text-transform: uppercase; letter-spacing: .03em;}


.rostube-1 .rail-pop {list-style: none; counter-reset: pop; padding: 0; margin: 0;}
.rostube-1 .rail-pop li {counter-increment: pop; border-top: 1px solid rgba(11, 11, 18, .07);}
.rostube-1 .rail-pop li:first-child {border-top: none;}
.rostube-1 .rail-pop a {display: flex; gap: .6rem; align-items: flex-start; padding: .6rem 0; color: var(--bs-body-color); text-decoration: none;}
.rostube-1 .rail-pop a::before {content: counter(pop); font-weight: 800; font-size: .95rem; color: rgba(var(--bs-primary-rgb), .5); line-height: 1.3; flex: 0 0 1rem;}
.rostube-1 .rail-pop-title {font-size: .875rem; font-weight: 500; line-height: 1.3; transition: color .2s;}
.rostube-1 .rail-pop a:hover .rail-pop-title {color: var(--bs-primary);}
.rostube-1 .rail-pop-meta {display: block; font-size: .78rem; color: var(--bs-secondary-color); margin-top: .15rem;}
.rostube-1 .rail-pop-meta i {margin-right: .25rem;}


.rostube-1 .blog-rail {position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.25rem;}
.rostube-1 .rail-card {background: var(--bs-body-bg); border: 1px solid rgba(11, 11, 18, .1); border-radius: 1.15rem; padding: 1.25rem;}
.rostube-1 .rail-title {font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--bs-secondary-color); margin-bottom: .75rem;}
.rostube-1 .rail-title i {color: var(--bs-primary); margin-right: .35rem;}
.rostube-1 .rail-cta {background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-hover, #c62828) 100%); color: var(--bs-primary-text); border: none;}
.rostube-1 .rail-cta-title {font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem;}
.rostube-1 .rail-cta p {font-size: .875rem; opacity: .92; margin-bottom: 1rem;}
.rostube-1 .rail-cta .btn {background: #fff; border-color: #fff; color: var(--bs-primary); font-weight: 600;}
.rostube-1 .rail-cta .btn:hover {background: rgba(255, 255, 255, .9); border-color: rgba(255, 255, 255, .9); color: var(--bs-primary);}


.rostube-1 .feed-header {margin-bottom: 1.5rem;}
.rostube-1 .feed-header h1 {font-weight: 800; letter-spacing: -.01em; margin-bottom: .35rem;}
.rostube-1 .feed-sub {color: var(--bs-secondary-color); max-width: 46rem; margin: 0;}


.rostube-1 .blog-card {overflow: hidden;}
.rostube-1 .blog-card .card-img-link {position: relative; display: block;}
.rostube-1 .blog-card .card-img-top {aspect-ratio: 16 / 9; object-fit: cover;}
.rostube-1 .blog-card .card-rubric {color: var(--bs-primary); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .02em; text-decoration: none; margin-bottom: .4rem;}
.rostube-1 .blog-card .card-rubric:hover {text-decoration: underline;}
.rostube-1 .blog-card .card-title-link {text-decoration: none; color: var(--bs-body-color);}
.rostube-1 .blog-card .card-title {line-height: 1.25; transition: color .2s;}
.rostube-1 .blog-card:hover .card-title {color: var(--bs-primary);}
.rostube-1 .blog-card .card-text {color: var(--bs-secondary-color); font-size: .92rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;}
.rostube-1 .blog-card .card-header i,
.rostube-1 .blog-card .ratings i {opacity: .85;}
.rostube-1 .blog-card .card-header .ratings i {color: var(--bs-primary);}


.rostube-1 .post-type {position: absolute; top: .6rem; left: .6rem; z-index: 2; display: inline-block; font-size: .68rem; font-weight: 700; line-height: 1; padding: .3rem .5rem; border-radius: .35rem; text-transform: uppercase; letter-spacing: .03em; box-shadow: 0 .15rem .5rem rgba(0, 0, 0, .25);}
.rostube-1 .post-type-article {background: var(--bs-primary); color: var(--bs-primary-text);}
.rostube-1 .post-type-news {background: #1f2937; color: #fff;}
.rostube-1 .post-type-video {background: #dc2626; color: #fff;}

.rostube-1 .card-play {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 3.4rem; height: 3.4rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(220, 38, 38, .92); color: #fff; font-size: 1.15rem; padding-left: .2rem; box-shadow: 0 .3rem 1rem rgba(0, 0, 0, .35); transition: transform .2s, background .2s;}
.rostube-1 .blog-card:hover .card-play {transform: translate(-50%, -50%) scale(1.08); background: #dc2626;}


.rostube-1 .blog-card .card-author {display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--bs-body-color); min-width: 0;}
.rostube-1 .blog-card .card-author span:last-child {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.rostube-1 .blog-card .card-ava {width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--bs-primary); color: var(--bs-primary-text); display: grid; place-items: center; font-size: .68rem; font-weight: 700; flex: 0 0 auto;}
.rostube-1 .blog-card .date-published {flex: 0 0 auto;}

.rostube-1 .feed-empty {padding: 2.5rem; text-align: center; color: var(--bs-secondary-color); border: 1px dashed rgba(11, 11, 18, .15); border-radius: 1rem;}


.rostube-1 .feed-mobnav {display: none; position: sticky; top: 76px; z-index: 20; margin: 0 0 1.25rem; padding: .55rem 0; background: var(--bs-body-bg); border-bottom: 1px solid rgba(11, 11, 18, .08);}
.rostube-1 .feed-mobnav ul {list-style: none; display: flex; gap: .5rem; overflow-x: auto; padding: 0 0 .35rem; margin: 0; scrollbar-width: thin;}
.rostube-1 .feed-mobnav li {flex: 0 0 auto;}
.rostube-1 .feed-mobnav a {display: inline-block; padding: .4rem .85rem; border-radius: 2rem; background: rgba(var(--bs-primary-rgb), .08); color: var(--bs-body-color); text-decoration: none; font-size: .85rem; font-weight: 500; white-space: nowrap;}
.rostube-1 .feed-mobnav a.active {background: var(--bs-primary); color: var(--bs-primary-text);}


@media (max-width: 1199.98px) {
	.rostube-1 .blog-shell {grid-template-columns: 220px minmax(0, 1fr); gap: 1.5rem;}
	.rostube-1 .blog-rail {display: none;}
}
@media (max-width: 991.98px) {
	.rostube-1 .blog-shell {grid-template-columns: 1fr;}
	.rostube-1 .blog-side {display: none;}
	.rostube-1 .feed-mobnav {display: block;}
}

@media (prefers-reduced-motion: reduce) {
	.rostube-1 .blog-card .card-title,
	.rostube-1 .rail-pop-title {transition: none;}
}


.rostube-1 img {max-width: 100%; height: auto;}




.footer-1 {padding: 3rem 0; position: relative;}
.footer-1 address {font-style: normal; margin: 0;}
.footer-1 a {color: var(--bs-body-color);}
.footer-1 a:hover {color: var(--bs-primary);}
.footer-1 .footer-tel {font-weight: 700;}

.footer-1 ul {display: block; list-style: none; margin: 0; padding: 0;}
.footer-1 ul li {display: block; margin: 0; padding: 0;}
.footer-1 ul li a {display: block; margin: 0; padding: .25rem 0;}
.footer-1 .footer-system ul li a {padding: .1rem 0;}

.footer-1 .btn-outline-primary {color: var(--bs-primary);}
.footer-1 .btn-outline-primary:hover {color: var(--bs-primary-text);}

.footer-1 .scroll-to-top {position: fixed; z-index: 1030; left: 2em; bottom: 2em; width: 2.5rem; height: 2.5rem; font-size: .7rem; display: flex; justify-content: center; align-items: center; border: none; border-radius: .25rem; opacity: 0; pointer-events: none; transition: .5s; background: rgba(0, 0, 0, .2); color: #fff;}
.footer-1 .scroll-to-top.active {opacity: 1; pointer-events: auto;}
.footer-1 .scroll-to-top:hover {background: rgba(0, 0, 0, .3);}

@media (min-width: 576px) {
	.footer-1 .scroll-to-top {font-size: .85rem;}
}
@media (min-width: 768px) {
	.footer-1 .scroll-to-top {font-size: 1rem;}
}


