@charset "utf-8";
:root {
		--font: Inter, -apple-system, system-ui, "serif";
		font-size: 1.111111vw;
		--side-padding: 16px;
		--radius: 10px;
		--radius-small: 5px;
		--header: 80px;
		--gap-blocks: 16px;
		--gap: 16px;
		--gap-inner: 8px;
		--shadow-small: 0 4px 20px rgba(0, 0, 0, 0.1);
		--shadow-big: 0 4px 5px rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 940px) {
		:root {
				--gap-blocks: 50px;
				--gap: 20px;
				--gap-inner: 20px;
		}
}
@media only screen and (min-width: 1200px) {
		:root {
				--side-padding: 40px;
				--header: 153px;
		}
}
@media only screen and (min-width: 1440px) {
		:root {
				--side-padding: calc((100vw - 1360px) / 2);
		}
}
html, body {
		height: 100%;
		box-sizing: border-box;
		text-rendering: optimizeLegibility !important;
		-webkit-font-smoothing: antialiased;
		font-optical-sizing: auto;
		scroll-behavior: smooth;
}
body {
		margin: 0;
		padding: 0;
		background: var(--grey-light2);
		font: 300 16px/1.21 var(--font);
		color: var(--txt);
		-webkit-text-size-adjust: none;
		display: flex;
		flex-direction: column;
}
*, *:before, *:after {
		box-sizing: border-box;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
form, fieldset {
		margin: 0;
		padding: 0;
		border: 0;
}
input::-ms-clear {
		display: none;
}
button::-moz-focus-inner {
		border: 0;
}
textarea {
		resize: none;
}
video {
		-webkit-mask-image: -webkit-radial-gradient(white, black);
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
}
header, nav, section, article, aside, footer, menu, time, figure, figcaption, main {
		display: block;
}
img, svg, picture {
		border: 0;
		outline: none;
		vertical-align: top;
}
a {
		color: var(--color3);
		text-decoration: none;
		border-style: solid;
		border-width: 0 0 0.5px 0;
		outline: none;
		cursor: pointer;
		transition-property: color, border;
		transition-duration: 0.4s;
		transition-timing-function: ease;
}
@media (pointer:fine) {
		a:hover {
				border-color: transparent;
		}
}
a[href^=tel] {
		color: inherit !important;
		text-decoration: none !important;
}
strong {
		font-weight: bold;
}
p, ol, ul {
		margin: 12px 0;
		padding: 0;
}
ol, ul, li {
		list-style: none;
}
li {
		position: relative;
		margin: 0;
		padding: 0 0 0 2em;
}
ul > li:before {
		content: '•';
		width: 2em;
		text-align: center;
		position: absolute;
		top: 0;
		left: 0;
}
ol {
		counter-reset: li;
}
ol > li:before {
		counter-increment: li;
		content: counters(li, ".") ". ";
		position: relative;
		display: inline-block;
		vertical-align: top;
		min-width: 2em;
		margin: 0 0 0 -2em;
		padding: 0 0.25em 0 0;
}
h1, .h1 {
		font-weight: 500;
		font-size: 20px;
		line-height: 1.21;
		margin: 0 0 16px 0;
}
@media only screen and (min-width: 940px) {
		h1, .h1 {
				font-size: 32px;
		}
}
.circle-btn {
		-webkit-appearance: none;
		cursor: pointer;
		user-select: none;
		border-radius: 50%;
		position: relative;
		box-shadow: var(--shadow-small);
		background: var(--white);
		display: block;
		color: var(--color3);
		transition-property: color, background, box-shadow;
		transition-duration: 0.4s;
		transition-timing-function: ease;
		border: 0;
		outline: none;
		flex: 0 0 auto;
}
@media (pointer:fine) {
		.circle-btn:hover {
				color: var(--white);
				background-color: var(--color3);
				box-shadow: none;
		}
}
.circle-btn:active {
		transition: none;
		border-color: var(--color2);
		color: var(--color2);
		background-color: var(--color1);
		box-shadow: var(--shadow-small);
}
.circle-btn.disabled, .circle-btn.swiper-button-disabled {
		cursor: default;
		box-shadow: var(--shadow);
		color: var(--color350);
		background-color: var(--white);
}
.btn {
		text-decoration: none;
		-webkit-appearance: none;
		cursor: pointer;
		user-select: none;
		display: inline-flex;
		vertical-align: top;
		justify-content: center;
		text-align: center;
		align-items: center;
		gap: 6px;
		font: normal 16px/1.25 var(--font);
		text-transform: none;
		letter-spacing: normal;
		color: var(--color3);
		border: 1px solid var(--color3);
		border-radius: var(--radius);
		background: var(--color1);
		padding: 0 19px;
		height: 48px;
		margin: 0;
		outline: none;
		box-shadow: none;
		width: auto;
		flex: 0 0 auto;
		transition-property: color, background, border;
		transition-duration: 0.4s;
		transition-timing-function: ease;
		position: relative;
}
.btn-grey {
		color: var(--txt2);
		border-color: var(--grey-light1);
		background: none;
}
.btn-dark {
		color: var(--white);
		border-color: var(--txt);
		background-color: var(--txt);
}
.btn-stroke {
		color: var(--color3);
		border-color: var(--color3);
		background-color: transparent;
}
@media (pointer:fine) {
		.btn:hover {
				color: var(--white);
				background-color: var(--color2);
				border-color: var(--color3);
		}
		.btn-grey:hover {
				background-color: transparent;
				border-color: var(--color3);
				color: var(--color3);
		}
		.btn-dark:hover {
				color: var(--white);
				background-color: var(--color3);
				border-color: var(--color3);
		}
		.btn-stroke:hover {
				color: var(--white);
				background-color: var(--color3);
				border-color: var(--color3);
		}
}
.btn:active {
		transition: none;
		border-color: var(--color2);
		color: var(--color2);
		background-color: var(--color1);
}
.swiper {
		overflow: hidden;
}
.swiper-wrapper, .swiper-slide {
		list-style: none;
		margin: 0;
		padding: 0;
}
.swiper-slide:before {
		display: none;
}
.swiper-wrapper {
		display: flex;
}
.swiper-slide {
		flex: 0 0 auto;
		width: 100%;
}
.slider-arrow {
		cursor: pointer;
		flex: 0 0 auto;
		width: 40px;
		height: 40px;
		z-index: 5;
		border-radius: 50%;
		color: var(--color3);
}
.slider-arrow.swiper-button-disabled{
		color: var(--color2);
		cursor: default;
}
.slider-arrow:before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 12px;
		height: 12px;
		border-style: solid;
		border-width: 0 0 1px 1px;
		border-color: currentColor;
		transition: border 0.4s ease;
}
.slider-arrow-prev:before {
		transform: translate3d(-30%, -50%, 0) rotate(45deg);
}
.slider-arrow-next:before {
		transform: translate3d(-70%, -50%, 0) rotate(-135deg);
}
.mainwrap {
		flex: 0 0 auto;
		width: 100%;
		min-height: 100%;
		position: relative;
		display: flex;
		flex-direction: column;
}
.header {
		flex: 0 0 auto;
		width: 100%;
		background: var(--white);
		height: var(--header);
		box-shadow: var(--shadow-big);
		padding: 0 var(--side-padding);
		display: flex;
		align-items: center;
		position: relative;
		z-index: 100;
}
.header .head-logo {
		flex: 0 0 auto;
		max-width: 100%;
		display: flex;
		align-items: flex-end;
		gap: 0 12px;
}
.header .logo {
		flex: 0 0 auto;
		border: 0!important;
}
.header .logo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
}
.header .logo svg {
		fill: currentColor;
		width: 100%;
		height: 100%;
}
.header .logo-text {
		flex: 1;
		color: var(--color3);
		font: 300 12px/1.21 var(--font);
}
.header .logo-text a {
		border: 0;
		text-decoration: none;
		color: inherit;
}
.header .logo-text .big {
		font-weight: bold;
		font-size: 16px;
		line-height: 1.21;
		margin: 0 0 6px 0;
}
@media only screen and (max-width: 699.99px) {
		.header .logo-text .to-hide {
				display: none;
		}
}
.menu {
		font: normal 14px/1.2 var(--font);
		letter-spacing: 0.02em;
		color: var(--txt2);
}
.menu a {
		border: 0;
		color: inherit;
		text-decoration: none;
		user-select: none;
}
@media (pointer:fine) {
		.menu a:hover {
				color: var(--color3);
		}
}
.menu a:active {
		color: var(--color350);
		transition: none;
}
.menu .active {
		color: var(--color3);
}
.menu ul, .menu li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.menu li:before {
		display: none;
}
.menu li {
		position: relative;
		flex: 0 0 auto;
}
.menu li > *:not(ul) {
		text-decoration: none;
		transition: color 0.4s ease;
		color: inherit;
		display: block;
}
@media (pointer:fine) {
		.menu li > a:hover {
				color: var(--accent);
		}
}
.menu > ul > li > *:not(ul) {
		display: flex;
		align-items: center;
}
.menu li > *:not(ul) svg {
		flex: 0 0 auto;
		width: 16px;
		height: 16px;
		fill: currentColor;
		transition-property: transform, fill;
		transition-duration: 0.4s;
		transition-timing-function: ease;
}
@media only screen and (max-width: 1199.99px) {
		.header {
				padding-right: calc(50px + var(--side-padding) * 2);
		}
		.header .logo {
				width: 58px;
				height: 58px;
		}
		.toggle-menu {
				position: fixed;
				top: calc(var(--header) / 2 - 25px);
				right: var(--side-padding);
				width: 50px;
				height: 50px;
				z-index: 101;
		}
		.toggle-menu > * {
				position: absolute;
				top: 50%;
				left: 50%;
				backface-visibility: hidden;
				width: 24px;
				height: 1.3px;
				border-radius: 1px;
				background: currentColor;
				transform: translate3d(-50%, -50%, 0);
				transition-property: transform, background, opacity;
				transition-duration: 0.4s;
				transition-timing-function: ease;
		}
		.toggle-menu > *:first-child {
				transform: translate3d(-50%, calc(-50% - 6px), 0);
		}
		.toggle-menu > *:last-child {
				transform: translate3d(-50%, calc(-50% + 6px), 0);
		}
		html:has(.menu.open) .toggle-menu > *:first-child {
				transform: translate3d(-50%, -50%, 0) rotate(-135deg);
		}
		html:has(.menu.open) .toggle-menu > *:last-child {
				transform: translate3d(-50%, -50%, 0) rotate(135deg);
		}
		html:has(.menu.open) .toggle-menu > *:nth-child(2) {
				opacity: 0;
		}
		.menu-fader {
				position: fixed;
				z-index: 99;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				backface-visibility: hidden;
				backdrop-filter: blur(10px);
				-webkit-backdrop-filter: blur(10px);
		}
		.menu, .menu-fader {
				transition: opacity 0.4s ease;
		}
		.menu:not(.open), .menu:not(.open) ~ .menu-fader {
				opacity: 0;
				pointer-events: none;
		}
		.menu {
				position: fixed;
				z-index: 100;
				top: 8px;
				left: 8px;
				right: 8px;
				border-radius: var(--radius);
				background: var(--white);
				box-shadow: var(--shadow);
				max-height: calc(100vh - 16px);
				max-height: calc(100svh - 16px);
				overflow: hidden;
				overflow-y: auto;
				padding: 48px 0 16px 0;
				backface-visibility: hidden;
		}
		.menu li > *:not(ul) {
				gap: 8px;
				padding: 16px 32px;
		}
		.menu li > *:not(ul) svg {
				fill: var(--color3);
				transform: rotate(0deg);
		}
		.menu li.open > *:not(ul) {
				color: var(--color3);
		}
		.menu li.open > *:not(ul) svg {
				transform: rotate(90deg);
		}
		.menu li:not(.open) > ul {
				display: none;
		}
		.menu .arrow-desktop {
				display: none;
		}
		.menu li ul {
				background: var(--color1);
		}
		.menu li li:not(:first-child) {
				border-top: 1px solid var(--color2);
		}
		html:has(.menu.open) {
				overflow: hidden;
		}
}
@media only screen and (min-width: 1200px) {
		.header {
				flex-direction: column;
				align-items: flex-start;
				justify-content: flex-end;
				position: sticky;
				top: 0;
				z-index: 100;
		}
		.header .logo {
				width: 80px;
				height: 80px;
		}
		.header .logo-text {
				font-size: 16px;
				line-height: 1;
		}
		.header .logo-text .big {
				text-transform: uppercase;
				font-size: 24px;
				margin-bottom: 2px;
		}
		.toggle-menu, .menu-fader {
				display: none !important;
		}
		.menu {
				flex: 0 0 auto;
				width: 100%;
				letter-spacing: normal;
				margin-top: 10px;
		}
		.menu > ul {
				display: flex;
				align-items: center;
				justify-content: space-between;
		}
		.menu > ul > li > *:not(ul) {
				gap: 8px;
				padding: 0 6px 10px 6px;
				margin: 0 -6px;
				height: 48px;
				text-transform: uppercase;
		}
		.menu > ul > li > *:not(ul) svg {
				margin: 0 -4px;
				position: relative;
		}
		.menu .arrow-mobile {
				display: none;
		}
		.menu .home {
				display: none;
		}
		.menu ul ul {
				display: block !important;
				height: auto !important;
				position: absolute;
				top: 100%;
				box-shadow: inset 0 9px 5px -5px rgba(0, 0, 0, 0.1);
				z-index: 100;
				max-width: 234px;
				margin-right: -234px;
				margin-left: -30px;
				padding: 10px 0 16px 0;
				border-radius: 0 0 var(--radius) var(--radius);
				background: var(--white);
				border: 1px solid var(--grey-light1);
				border-top-width: 0;
				backface-visibility: hidden;
				transition-property: transform, opacity;
				transition-duration: 0.4s;
				transition-timing-function: ease;
				opacity: 0;
				pointer-events: none;
				transform: translate3d(0, 8px, 0);
		}
		.menu ul ul li > * {
				padding: 14px 30px;
		}
		@media (pointer:fine) {
				.menu li:hover > ul {
						opacity: 1;
						pointer-events: all;
						transform: translate3d(0, 0, 0);
				}
				.menu li:hover > *:not(ul) {
						color: var(--color3);
				}
				.menu li:hover > *:not(ul) svg {
						transform: rotate(-180deg);
						fill: var(--color3);
				}
		}
		@media (pointer:coarse) {
				.menu li.open > ul {
						opacity: 1;
						pointer-events: all;
						transform: translate3d(0, 0, 0);
				}
				.menu li.open > *:not(ul) {
						color: var(--color3);
				}
				.menu li.open > *:not(ul) svg {
						transform: rotate(-180deg);
						fill: var(--color3);
				}
		}
}
.footer {
		flex: 0 0 auto;
		width: 100%;
		display: grid;
		align-items: flex-start;
		gap: 32px 24px;
		grid-template-columns: repeat(1, 1fr);
		padding: 36px max(36px, var(--side-padding));
		box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
		background: var(--white);
		grid-template-areas:
				"day"
				"soc"
				"cont"
				"dev"
				"txt";
}
.foot-day {
		grid-area: day;
}
.foot-contacts {
		grid-area: cont;
}
.foot-soc {
		grid-area: soc;
}
.foot-text:not(.dev) {
		grid-area: txt;
}
.foot-text.dev {
		grid-area: dev;
}
.foot-day {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 16px 20px;
		font-weight: normal;
		font-size: 16px;
		line-height: 1.3;
		color: var(--grey888);
		container-type: inline-size;
		container-name: foot-day;
		flex: 0 0 auto;
		width: 100%;
		max-width: 667px;
}
.foot-day a {
		border-bottom-color: transparent;
}
@media (pointer:fine) {
		.foot-day a:hover {
				border-bottom-color: currentColor;
		}
}
.foot-day > img {
		flex: 0 0 auto;
		width: 206px;
		height: 210px;
		border-radius: var(--radius);
		object-fit: cover;
		object-position: center;
}
.foot-day .text {
		flex: 0 0 auto;
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 12px;
}
@container foot-day (min-width: 500px) {
		.foot-day .text {
				width: calc(100% - 226px);
		}
}
.foot-day .text > * {
		margin: 0;
		max-width: 100%;
}
.foot-day .info {
		font-size: 14px;
		letter-spacing: 0.02em;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 0 12px;
}
.foot-day .info + .info {
		margin-top: -12px;
}
.foot-day .big {
		font-weight: 500;
		font-size: 18px;
		color: var(--txt2);
		letter-spacing: normal;
		text-wrap: balance;
}
.foot-day .descr {
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
}
.foot-soc, .foot-soc li, .foot-contacts, .foot-contacts li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.foot-soc li:before, .foot-contacts li:before {
		display: none;
}
.foot-soc {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
}
.foot-soc li {
		flex: 1;
}
.foot-soc .btn {
		width: 100%;
}
.foot-contacts {
		display: flex;
		flex-direction: column;
		gap: 22px;
		text-wrap: balance;
}
.foot-contacts .big {
		font: inherit;
		font-weight: 500;
		color: var(--color3);
		margin: 0;
}
.foot-contacts a {
		color: inherit;
		border-bottom-color: transparent;
}
.foot-text {
		font-size: 11px;
		text-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
		max-width: 44em;
		text-wrap: balance;
}
.foot-text a {
		color: inherit;
		border-bottom-color: transparent;
}
@media (pointer:fine) {
		.foot-text a:hover {
				border-bottom-color: currentColor;
		}
}
@media only screen and (min-width: 700px) {
		.footer {
				padding-top: 56px;
				gap: 67px 24px;
		}
}
@media only screen and (min-width: 700px) and (max-width: 1099.99px) {
		.footer {
				grid-template-areas:
						"day day"
						"cont soc"
						"txt dev";
				grid-template-columns: 1fr 206px;
		}
		.foot-contacts {
				max-width: 206px;
		}
		.foot-soc {
				flex-direction: column;
		}
}
@media only screen and (min-width: 1100px) {
		.footer {
				grid-template-areas:
						"day cont soc"
						"txt dev dev";
				grid-template-columns: 1fr 206px 206px;
		}
		.foot-soc {
				flex-direction: column;
		}
}
.content {
		--content-top-padding: 32px;
		flex: 1 0 auto;
		width: 100%;
		padding: var(--content-top-padding) var(--side-padding) 64px var(--side-padding);
}
@media only screen and (min-width: 940px) {
		.content {
				--content-top-padding: 65px;
				padding-bottom: 128px;
		}
}
.grid-col3 {
		display: flex;
		flex-wrap: wrap;
		gap: var(--gap-blocks) var(--gap);
}
.grid-col3:not(:first-child) {
		margin-top: var(--gap-blocks);
}
.grid-col3:not(:last-child) {
		margin-bottom: var(--gap-blocks);
}
.content > .grid-col3:first-child {
		margin-top: calc(16px - var(--content-top-padding));
}
@media only screen and (min-width: 940px) {
		.content > .grid-col3:first-child {
				margin-top: calc(26px - var(--content-top-padding));
		}
}
.grid-col3 .col {
		flex: 0 0 auto;
		width: 100%;
		display: flex;
		flex-direction: column;
}
@media only screen and (min-width: 1200px) {
		.grid-col3 .col {
				width: calc((100% - var(--gap) * 2) / 3);
		}
		.grid-col3 .col.bigger {
				width: calc((100% - var(--gap) * 2) / 3 * 2 + var(--gap));
		}
		.grid-col3:has(.col>.mini-title) .col:not(:has(>.mini-title)){
				padding-top: calc(var(--gap-inner) + 25px);
		}
}
.mini-title {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: var(--gap-inner);
		margin: 0 0 var(--gap-inner) 0;
}
.mini-title > *, .mini-btn {
		flex: 0 0 auto;
		max-width: 100%;
		display: inline-block;
		text-decoration: none;
		color: var(--white);
		font-weight: normal;
		font-size: 11px;
		line-height: 1.21;
		padding: 5px 17px;
		text-align: center;
		border-radius: var(--radius);
		background: var(--color3);
		border: 1px solid var(--color3);
		transition-property: color, background;
		transition-duration: 0.4s;
		transition-timing-function: ease;
		user-select: none;
}
@media (pointer:fine) {
		.mini-title > a:hover, .mini-btn:hover {
				color: var(--color3);
				background-color: var(--color1);
				border-color: var(--color3);
		}
}
.mini-title > a:active, .mini-btn:active {
		transition: none;
		border-color: var(--color2);
		color: var(--color2);
		background-color: var(--color1);
}
.mini-btn-secondary{
		background-color: transparent;
		color: var(--color3);
		border-color: var(--color3);
}
.input input, .input select, .input textarea, .jcf-select-text, .jcf-option {
		font: 500 14px/1.21 var(--font);
		text-align: left;
		color: var(--txt);
		background: var(--white);
		border: 1px solid var(--grey-light1);
		border-radius: var(--radius-small);
		display: block;
		width: 100%;
		padding: 7px 15px;
		-webkit-appearance: none;
		outline: none;
		box-shadow: none;
}
.input select, .jcf-select-text {
		padding-right: 35px;
}
.jcf-select-text:after {
		content: '';
		position: absolute;
		top: 50%;
		right: 15px;
		width: 14px;
		height: 14px;
		background: url("../img/select-small.svg") no-repeat 50% 50%;
		background-size: contain;
		margin: -7px 0;
		transform: rotate(0deg);
}
.input select {
		background-image: url("../img/select-small.svg");
		background-repeat: no-repeat;
		background-size: 14px auto;
		background-position: calc(100% - 15px) 50%;
}
.jcf-select-text {
		cursor: pointer;
		position: relative;
		z-index: 1;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
}
.jcf-drop-active:not(.jcf-drop-flipped) .jcf-select-text {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
}
.jcf-drop-active.jcf-drop-flipped .jcf-select-text {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
}
.jcf-drop-active .jcf-select-text:after {
		transform: rotate(-180deg);
}
.jcf-select {
		display: block;
		position: relative;
}
.jcf-select.jcf-drop-active {
		z-index: 20;
}
.jcf-select select {
		cursor: pointer;
		z-index: 2;
}
.jcf-select-drop {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border: 1px solid var(--grey-light1);
		border-radius: var(--radius-small);
		z-index: 90;
		overflow: hidden;
}
.jcf-select-drop:not(.jcf-drop-flipped) {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		margin-top: -1px;
}
.jcf-select-drop.jcf-drop-flipped {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		margin-top: 1px;
}
.jcf-select-drop ul, .jcf-select-drop li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.jcf-select-drop li:before {
		display: none;
}
.jcf-select-drop li:not(:first-child) {
		margin-top: 1px;
}
.jcf-option {
		border: 0;
		border-radius: 0;
}
.jcf-option.jcf-hover {
		background-color: var(--color1);
}
.jcf-option.jcf-selected {
		background-color: var(--color1);
}
.jcf-list-content {
		display: block;
		overflow: hidden;
		overflow-y: auto;
		max-height: 50vh;
		max-height: 50svh;
}
@media only screen and (min-width: 940px) {
		.input input, .input select, .input textarea, .jcf-select-text, .jcf-option {
				font-size: 18px;
		}
}
.title-block {
		background: var(--grey-light2);
		margin: calc(var(--content-top-padding) * -1) calc(var(--side-padding) * -1) 16px calc(var(--side-padding) * -1);
		padding: var(--content-top-padding) var(--side-padding) 16px var(--side-padding);
		font: 500 18px/1.21 var(--font);
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 16px 24px;
}
.title-block:has(select) {
		/*
	position: sticky;
		z-index: 90;
		top: 0;
	*/
}
@media only screen and (min-width: 940px) {
		.title-block {
				font-size: 28px;
				top: var(--header);
		}
}
.title-block > * {
		margin: 0;
		font: inherit;
}
.title-block .filters {
		flex: 0 0 auto;
		max-width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: var(--gap-inner);
}
.title-block .filters > * {
		flex: 0 0 auto;
		min-width: 180px;
}
@media only screen and (max-width: 700px) {
		.title-block .filters {
				width: 100%;
		}
		.title-block .jcf-select {
				min-width: 0;
		}
		.title-block .filters > *:not(:only-child) {
				width: calc(50% - var(--gap-inner) / 2);
				min-width: 0;
		}
}
@media only screen and (min-width: 940px) {
		.title-block .filters > * {
				min-width: 190px;
		}
}
.date {
		color: var(--grey);
		font-weight: normal;
		font-size: 12px;
		line-height: 1.21;
}
.tags, .tags li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.tags li:before {
		display: none;
}
.tags {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px;
}
.tags .btn {
		font-size: 9px;
		padding: 5px 7px;
		height: auto;
		min-height: 0;
}
.load-more {
		width: 100%;
		margin-top: var(--gap);
		height: 44px;
}
.breadcrumbs, .breadcrumbs li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.breadcrumbs li:before {
		display: none;
}
.breadcrumbs {
		display: flex;
		flex-wrap: wrap;
		font-weight: 300;
		font-size: 14px;
		line-height: 1.4;
		text-transform: uppercase;
		letter-spacing: -0.011em;
		color: var(--txt2);
		gap: 0 0.5em;
		margin: 0 0 16px 0;
}
@media only screen and (min-width: 940px) {
		.breadcrumbs {
				font-size: 20px;
		}
}
.breadcrumbs a {
		color: inherit;
		border-bottom-color: transparent;
		border-bottom-width: 0.5px;
}
@media (pointer:fine) {
		.breadcrumbs a:hover {
				border-bottom-color: currentColor;
		}
}
.breadcrumbs li {
		flex: 0 0 auto;
		max-width: 100%;
		position: relative;
}
.breadcrumbs li:not(:last-child) {
		padding-right: 0.5em;
}
.breadcrumbs li:not(:last-child):after {
		content: '|';
		position: absolute;
		top: 0;
		right: -0.5em;
		width: 1em;
		text-align: center;
}
.breadcrumbs li:nth-last-child(2):after {
		color: var(--color3);
}
.breadcrumbs li:last-child {
		color: var(--color3);
}
.files, .files li {
		list-style: none;
		margin: 0;
		padding: 0;
}
.files {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: var(--gap-inner);
}
.files:not(:first-child) {
		margin-top: 32px;
}
.files:not(:last-child) {
		margin-bottom: 32px;
}
.files li:before {
		display: none;
}
.files .btn {
		height: 40px;
		font-size: 13px;
		padding: 0 11px;
}
.files .btn img {
		height: 28px;
		width: auto;
		flex: 0 0 auto;
}
.req-table {
		line-height: 1.21;
		margin: 0;
		padding: 0;
		border: 0;
		background: none;
}
.req-table .bold {
		font-weight: 500;
}
@media only screen and (min-width: 940px) {
		.req-table {
				border-collapse: collapse;
				width: 100%;
				margin: 4px 0 0 0;
		}
		.req-table th, .req-table td {
				text-align: left;
				vertical-align: top;
				border: 0;
				padding: 0;
				width: 50%;
		}
		.req-table tr:not(:first-child) th, .req-table tr:not(:first-child) td {
				padding-top: 16px;
		}
		.req-table th:not(:first-child), .req-table td:not(:first-child) {
				padding-left: 16px;
		}
		.req-table .bold {
				font-weight: 500;
				font-size: 16px;
		}
}
@media only screen and (max-width: 939.99px) {
		.req-table, .req-table thead, .req-table tbody, .req-table tr, .req-table th, .req-table td {
				display: block;
				border: 0;
				margin: 0;
				padding: 0;
		}
		.req-table tr:not(:first-child) {
				margin-top: 8px;
		}
		.req-table .bold {
				font-weight: 500;
				font-size: 14px;
				margin-bottom: 2px;
		}
}