* {
	box-sizing: border-box;
}

:root {
	--main-blue: #0060F0;
	--dark-grey: #141414;
	--black: #0B0B0B;
}


html {
	overflow-x: clip;
	font-size: 16px;
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

body {
	font-family: 'Rubik';
	font-size: 16px;
	color: #fff;
	background: var(--black);
	line-height: normal;
	font-variation-settings: 'wght' 400;
	margin: 0;
}

.container {
	max-width: 1750px;
	padding: 0 15px;
	margin: 0 auto;
	width: 100%;
}

* {
	font-family: 'Rubik';

}

a {
	text-decoration: none;
	transition: .35s;
}

a:not(#wpadminbar a, a.pretty-button):hover {
	color: var(--main-blue);
	transition: .35s;
}

button {
	cursor: pointer;
	border: none;
	margin: 0;
	padding: 0;
}

button:focus-visible {
	outline: none;
}

button:disabled {
	opacity: .5;
	pointer-events: none;
}

ul {
	padding-left: 15px;
}

p {
	margin: 0 0 10px 0;
	line-height: 125%;
}

p:last-child {
	margin: 0;
}

section.content {
	padding-bottom: 36px;
}

h1 {
	font-size: 32px;
	margin: 0px 0 15px 0;
	text-transform: uppercase;
}

h2 {
	font-size: 32px;
	margin: 0 0 36px 0;
}

h3 {
	margin: 0 0 15px 0;
}


main {
	padding-top: 36px;
}

/* Header */

header {
	position: relative;
	top: 0;
	z-index: 4;
}

header.page-header {
	box-shadow: 0px -13px 26.899999618530273px 9px rgba(0, 96, 240, 1);
}

.header-container {
	gap: 56px;
	padding: 1rem 0;
}

.menu {
	gap: 56px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu li a {
	color: #fff;
	transition: .4s;
	position: relative;
}

.header__logo img {
	transition: .35s;
}

.header__logo:hover img {
	filter: drop-shadow(0px 0px 15px #0060f0);
	transition: .35s;

}



/* Первый экран */

.first-screen {
	aspect-ratio: 24 / 11;
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 100px;
	margin-bottom: 50px;
}

.first-screen::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: linear-gradient(180.00deg, rgba(0, 96, 240, 0.44), rgba(10.5432767868042, 10.5432767868042, 10.5432767868042, 0.6) 64%, rgba(11, 11, 11, 1) 99%);
	z-index: 2;
}

.first-screen img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	object-fit: cover;
}


.first-screen__text {
	position: relative;
	z-index: 3;
	max-width: 520px;
}


.first-screen__text h1 {
	margin: 0 0 50px 0;
	font-size: 32px;
}


.pretty-button {
	padding: 1rem 1.5rem;
	background: var(--main-blue);
	color: #fff;
	border-radius: 10px;
	transition: .35s;
	display: block;
	width: fit-content;
	border: none;
	font-size: 16px;
}


.pretty-button--white {
	background: #fff;
	color: var(--black);
}

.pretty-button:hover {
	box-shadow: 0 0 22px 9px #0060f0;
	transition: .35s;
	color: #fff !important;
}

.pretty-button--white:hover {
	color: var(--black) !important;
	box-shadow: 0 0 22px 9px #0060f0;
	transition: .35s;
}


/* Footer */

footer {
	padding: 36px 0 0 0;
}

.footer-column-wrapper {
	gap: 50px;
	margin-bottom: 36px;
}

.footer-column:nth-child(1) {
	flex: 0 0 0 350px;
}

.footer__logo {
	margin-bottom: 25px;
}

.footer__logo img {
	transition: .35s;
}

.footer__logo:hover img {
	filter: drop-shadow(0px 0px 15px #0060f0);
	transition: .35s;

}

.footer__text {
	margin-bottom: 25px;
}

.messengers-list {
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 12px;
}

.messengers-list>li a>img {
	transition: .35s;
}

.messengers-list>li:hover a>img {
	filter: drop-shadow(0px 0px 15px #0060f0);
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 24px;
}

.footer-menu li a {
	color: #fff;
}

.footer__column.menu-column {
	gap: 50px;
	flex: 0 0 660px;
}

.contact-list a {
	color: #fff;
}

.contact-list {
	list-style: none;
	padding: 0;
	gap: 24px;
}

.contact-list>li {
	gap: 12px;
}

.footer-copyright {
	padding: 10px 0;
	background: var(--dark-grey);
}

.footer-copyright p:last-child {
	margin: 0;
	gap: 5px;
}

.footer-copyright p:last-child a {
	color: (var(--main-blue));
}

@keyframes heartbeat {
	0% {
		transform: scale(1);
	}

	10% {
		transform: scale(1.2);
	}

	20% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.2);
	}

	40% {
		transform: scale(1);
	}

	100% {
		transform: scale(1);
	}

}

.footer-copyright svg {
	animation: heartbeat 2s infinite;
}



/* Шорткод "Основые разделы сайта" */


.main-categories {
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin-bottom: 100px;
}

.main-categories__item {
	aspect-ratio: 10 / 13;
	width: 100%;
	height: auto;
	padding: 36px 76px;
	background-size: cover;
	background-repeat: no-repeat;
}

.main-categories__item h3 {
	font-size: 32px;
}

.main-categories__item p {
	margin-bottom: 12px;
}



.why-liquidlab {
	aspect-ratio: 344 / 151;
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 100px;
	margin-bottom: 36px;
	border-radius: 10px;
	overflow: hidden;
}

.why-liquidlab::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	/* background: linear-gradient(180.00deg, rgba(0, 96, 240, 0.44), rgba(10.5432767868042, 10.5432767868042, 10.5432767868042, 0.6) 64%, rgba(11, 11, 11, 1) 99%); */
	z-index: 0;
	background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), var(--unnamed, rgb(20, 20, 20)) 90%);
}

.why-liquidlab>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.why-inner {
	position: relative;
}

.why-inner h2 {
	margin: 0 0 10px 0;
	font-size: 32px;
}

.why-list {
	list-style: none;
	padding: 0;
	margin: 0 0 36px 0;
	gap: 24px;
}

.why-list>li>img {
	max-width: 24px;
	height: auto;
	object-fit: contain;
}

.why-list>li {
	gap: 12px;
}

.logos-block {
	margin-bottom: 36px;
}

.logos-block h2 {
	margin: 0 0 48px 0;
	font-size: 32px;
}

.logo-item {
	width: auto !important;
	display: flex !important;
	height: auto !important;
}



/* Меню */

.menu>li.menu-item-has-children>a::before {
	content: '';
	position: absolute;
	right: -20px;
	top: 5px;
	width: 11px;
	height: 11px;
	transition: .35s;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(-180deg);
	background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3845 8.15375L5.19225 2.2696e-07L3.56412e-07 8.15375L10.3845 8.15375Z" fill="white" /></svg>');
}

.menu>li.menu-item-has-children:not(#menu-main-menu-left>li:first-child) {
	position: relative;
}

.menu>li.menu-item-has-children:not(#menu-main-menu-left>li:first-child)::before {
	width: 100%;
	height: 100%;
	left: 0;
	top: 20px;
	content: '';
	position: absolute;
	background: transparent;
}

.menu>li.menu-item-has-children>.sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 20px);
	width: max-content;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px;
	border-radius: 10px;
	opacity: 0;
	transition: .35s;
	pointer-events: none;
	background: rgb(11, 11, 11, .9);
	backdrop-filter: blur(5px);
}

.menu>li.menu-item-has-children:hover>.sub-menu {
	opacity: 1;
	transition: .35s;
	pointer-events: all;
}

.menu>li.menu-item-has-children:hover>a::before {
	transform: rotateY(180deg);
	background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3845 8.15375L5.19225 2.2696e-07L3.56412e-07 8.15375L10.3845 8.15375Z" fill="%230060F0" /></svg>');

}

.menu>li.menu-item-has-children:hover>a {
	color: var(--main-blue);
}




/* Меню каталога*/
#menu-main-menu-left>li:first-child>.sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100dvh;
	margin: 0;
	padding: 35px 0;
	display: flex;
	align-items: start;
	justify-content: center;
	gap: 145px;
	background: rgb(11, 11, 11, .9);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .35s;
	list-style: none;
	flex-direction: row;
	backdrop-filter: blur(5px);
	border-radius: 0;
}

#menu-main-menu-left>li:first-child.menu--active>.sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition: .35s;

}

body:has(#menu-main-menu-left > li:first-child.menu--active) {
	overflow: hidden;
	height: 100dvh;
}

#menu-main-menu-left>li>a {
	position: relative;
}

#menu-main-menu-left>li:first-child.menu--active>a {
	color: var(--main-blue);
}



#menu-main-menu-left>li.menu-item-has-children>a::before {
	content: '';
	position: absolute;
	right: -20px;
	top: 5px;
	width: 11px;
	height: 11px;
	transition: .35s;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(-180deg);
	background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3845 8.15375L5.19225 2.2696e-07L3.56412e-07 8.15375L10.3845 8.15375Z" fill="white" /></svg>');

}

#menu-main-menu-left>li:first-child.menu--active>a::before {
	background-image: url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.589792 10.5129L0 9.92313L4.66667 5.25646L0 0.589792L0.589792 0L5.25646 4.66667L9.92313 0L10.5129 0.589792L5.84625 5.25646L10.5129 9.92313L9.92313 10.5129L5.25646 5.84625L0.589792 10.5129Z" fill="%230060F0" /></svg>');
	width: 11px;
	height: 11px;
}

#menu-main-menu-left>li:first-child:not(#menu-main-menu-left>li:first-child.menu--active):hover>a::before {
	background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3845 8.15375L5.19225 2.2696e-07L3.56412e-07 8.15375L10.3845 8.15375Z" fill="%230060F0" /></svg>');

}

#menu-main-menu-left>li:first-child>.sub-menu>li>a {
	font-size: 20px;
	font-weight: 500;
	font-variation-settings: 'wght' 500;
}

#menu-main-menu-left>li:first-child>.sub-menu>li>.sub-menu {
	list-style: none;
	padding: 0;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}



/* Каталог с фильтрами */

/* .pc-category-page {} */

.pc-category-page>.container {
	gap: 30px;
}

.pc-category-page aside {
	width: calc(35% - 45px);
}

.page-title-block {
	margin-bottom: 36px;
}

.pc-list {
	width: calc(65% + 45px);
}

.pc-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 100px;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.post-loader {
	margin-bottom: 100px;
	width: 100%;
	text-align: center;
	display: none;
}

.post-loader--active {
	display: block;
}

.post-loader img {
	width: 52px;
	height: 52px;
	animation: rotation 1.5s linear infinite;
}

.pc-list-controls form {
	gap: 30px;
	width: calc(65% + 45px);
}

.pc-list-controls {
	margin-bottom: 36px;
	width: 100%;
}

.form__item {
	transition: .35s;
	position: relative;
}

.form__item::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border: 2px solid transparent;
	transform: scale(0) translate(-50%);
	transition: .35s;
}

.form__item label {
	gap: 6px;
	opacity: .5;
	cursor: pointer;
	padding: 10px;
	transition: .35s
}

.form__item:has(input:checked) label {
	opacity: 1;
	transition: .35s
}

.form__item input {
	appearance: none;
	position: absolute;
	opacity: 0;
}

/* .form__item:has(input:checked) {
	transition: .35s;
} */


.form__item:has(input:checked)::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	border-bottom: 2px solid var(--main-blue);
	transform: scale(1) translate(-50%);
	transition: .35s;
}




.pc-card {
	overflow: hidden;
	border-radius: 10px;
	overflow: hidden;
	background: var(--dark-grey);
	padding: 24px;
	position: relative;
}

.pc-card a {
	color: #fff;
}

.pc-card a::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.pc-thumb {
	position: relative;
	margin-bottom: 24px;
}

.pc-thumb img {
	position: relative;
	z-index: 1;
	max-height: 230px;
	width: 100%;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.pc-thumb::before {
	content: '';
	filter: blur(250px);
	background: var(--unnamed, rgba(0, 96, 240, .4));
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
}

.pc-title {
	margin-bottom: 24px;
}

.pc-title h3 {
	margin: 0;
	font-size: 20px;
}

.pc-chars {
	margin-bottom: 60px;
}

.pc-chars table {
	width: 100%;
}

/* .pc-chars table tr {} */

.pc-chars table tr td {
	padding: 10px 0;
	border-bottom: 1px solid #0b0b0b;
}

.pc-chars table tr td:last-child {
	padding-left: 10px;
	text-align: end;
}

.pc-chars table tr:last-child td {
	border: none;
}

.full-price {
	color: var(--main-blue);
	font-size: 20px;
}

.pc-bottom {
	gap: 30px;
}

.pc-link-button {
	opacity: 0;
	transition: .35s;
}

.pc-card:hover .pc-link-button {
	opacity: 1;
	transition: .35s;
}

.pc-swiper-container {
	margin-bottom: 100px;
	position: relative;
	z-index: 1;
	left: 50%;
	/* dynamic viewport width */
	transform: translate(-50%, 0);

}

@supports (-moz-appearance: none) {
	.pc-swiper-container {
		width: 100vw !important;
		/* оставляем как есть */
	}
}

@supports (-webkit-box-pack: center) {
	.pc-swiper-container {
		width: calc(100dvw - 16px);
	}
}

.pc-swiper-container h2 {
	position: relative;
	margin-bottom: 36px;
}


.pc-swiper-body {
	position: relative;
	width: 100%;
	transform: translate(-50%, 0);
	left: 50%;
	margin-bottom: 36px;
}

.pc-swiper-body::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 215px;
	left: -15px;
	top: 0;
	z-index: 2;
	background: linear-gradient(90deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.6) 16.2%, rgba(20, 20, 20, 0.9) 38.47%, #141414 48.85%, #141414 52.82%, #0b0b0b 52.84%);
	transform: rotate(-180deg);
	background: linear-gradient(90deg, rgba(20, 20, 20, 0) 0%, rgba(11, 11, 11, 0.7) 32.04%, rgba(11, 11, 11, 0.8) 45.26%, #0b0b0b 52.84%);
}

.pc-swiper-body::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 215px;
	right: -15px;
	top: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(20, 20, 20, 0) 0%, rgba(11, 11, 11, 0.7) 32.04%, rgba(11, 11, 11, 0.8) 45.26%, #0b0b0b 52.84%);
}

.pc-swiper-controls {
	gap: 24px;
}

.pc-swiper-controls button {
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
}

.pc-swiper-controls button svg path {
	transition: .35s;
}

.pc-swiper-controls button:hover svg path {
	fill: var(--main-blue);
	transition: .35s;
}





/* Категория портфолио */

.pc-portfolio-page h1 {
	margin: 0;
}

.portfolio-list {
	margin-bottom: 100px;
}

.portfolio-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

.portfolio-card {
	aspect-ratio: 84 / 48;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	padding: 40px;
}


.portfolio-card>a {
	color: #fff;
}

.portfolio-card>a:hover {
	color: #fff !important;
}

.portfolio-card .pc-link-button {
	position: relative;
	z-index: 2;
}

.portfolio-card:hover .pc-link-button {
	opacity: 1;
	transition: .35s;
}

.portfolio-card::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	border-radius: 10px;
	z-index: 2;
	background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), var(--unnamed, rgb(20, 20, 20)) 90%);
}

.portfolio-thumb {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}


.portfolio-thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--dark-grey) 0%, rgba(255, 255, 255, 0.1) 50%, var(--dark-grey) 100%);
	animation: shimmer 1.5s infinite;
}

.portfolio-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.portfolio-card__text {
	position: relative;
	z-index: 2;

}

.portfolio-card__desc {
	gap: 8px;
}

.portfolio-card__text p {
	margin: 0;
	max-width: 440px;
}

.portfolio-card__title {
	font-size: 32px;
	margin-bottom: 5px;
	max-width: 440px;
}


.open-porfolio {
	position: absolute;
	width: 100%;
	/* appearance: none; */
	height: 100%;
	left: 0;
	top: 0;
	z-index: 3;
	background: transparent;
	opacity: 0;
	margin: 0;
	border: none;
}

dialog {
	transition-behavior: allow-descrete;
	transition: .35s;

}

dialog::backdrop {
	background: radial-gradient(164.61% 72.33% at 50% 47.73%, #000b1b 0%, #000 100%);
	opacity: 0.9;
	transition: .35s;
}

#portfolio_dialog {
	width: calc(100% - 30px);
	max-width: 1250px;
	aspect-ratio: 124 / 52;
	border: none;
	padding-top: 35px;
	background: transparent;
	padding: 35px 0 0 0;
	overflow: hidden;
	transition: .35s;
}


@starting-style {
	dialog {
		opacity: 0;
		transform: translateY(30px)
	}
}


#portfolio_dialog>form {
	position: absolute;
	right: 0;
	top: 5px;
}

#portfolio_dialog>form>button {
	background: transparent;
	border: none;
	padding: 0;
	margin: 5px;
	transition: .35s;
	will-change: transform;
}

#portfolio_dialog>form>button:hover {
	transform: scale(1.05);
	transition: .35s;
}

#portfolio_dialog:focus-visible {
	outline: none;
}

.dialog-container {
	position: relative;
	height: 100%;
	background: var(--dark-grey);
	border-radius: 10px;
	padding: 56px 36px 36px 36px;
	gap: 30px;
	overflow: hidden;
	transition: .35s;

}

#portfolio_dialog::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 200px;
	height: 200px;
	border-radius: 100%;
	transform: translate(-70%, 50px);
	pointer-events: none;
	z-index: 1;
	transition: .35s;
}


.dialog-container::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	right: calc(0% - 85px);
	top: calc(0% - 85px);
	width: 170px;
	height: 170px;
	border-radius: 100%;
	pointer-events: none;
	z-index: 1;
	transition: .35s;
}

.dialog-container__slider {
	width: calc(42% - 15px);
	transition: .35s;
}

.dialog-container__text {
	height: 100%;
	overflow-y: auto;
	z-index: 2;
	position: relative;
	color: #fff;
	width: calc(58% - 15px);
	padding: 0 36px 0 30px;
}

.dialog-container__text::-webkit-scrollbar {
	width: 6px;
	border-radius: 10px;
}

.dialog-container__text::-webkit-scrollbar-thumb {
	background-color: var(--main-blue);
	border-radius: 10px;
	width: 4px;
	border: 1px solid #d9d9d9;
}

.dialog-container__text::-webkit-scrollbar-track {
	background: #d9d9d9;
	border-radius: 10px;
	padding: 1px;
}

#portfolio_dialog.is-loading {}

#portfolio_dialog.is-loading .dialog-container {
	transition: .35s;
	background: var(--black);
}


#portfolio_dialog.is-loading .dialog-container::before {
	opacity: 0;
	transition: .35s;
}

#portfolio_dialog.is-loading::before {
	opacity: 0;
	transition: .35s;
}

#portfolio_dialog .post-loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#portfolio_dialog.is-loading .dialog-container__slider {
	opacity: 0;
	transition: .35s;
}





.portfolio-header {
	position: relative;
	padding-bottom: 56px;
}

.portfolio-header h2 {
	margin-bottom: 12px;
}

.portfolio-content {
	padding-top: 56px;
}

.portfolio-content h2,
.portfolio-content h3 {
	font-size: 32px;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.portfolio-content p {
	margin-bottom: 25px;
}


.portfolio-content p:last-child {
	margin-bottom: 0;
}

.portfolio-header::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='660' height='2' viewBox='0 0 660 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-3.27835e-08 0.625C-1.09278e-08 0.875 1.09278e-08 1.125 3.27835e-08 1.375C11 1.41667 22 1.45625 33 1.49375C132 1.83124 231 1.99998 330 1.99997C429 1.99996 528 1.8312 627 1.4937C638 1.45619 649 1.41661 660 1.37494C660 1.12494 660 0.874942 660 0.624942C649 0.583277 638 0.543694 627 0.506195C528 0.168704 429 -3.75044e-05 330 -2.88495e-05C231 -2.01947e-05 132 0.168738 33 0.506247C22 0.543748 11 0.583332 -3.27835e-08 0.625Z' fill='url(%23paint0_linear_327_14995)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_327_14995' x1='4.37107e-08' y1='1.49999' x2='660' y2='1.49993' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23141414' /%3E%3Cstop offset='0.5' stop-color='%230060F0' /%3E%3Cstop offset='1' stop-color='%23141414' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
	background-size: 100%;
	/* background-repeat: no-repeat; */
	background-position: center;
}


.portfolio-dialog-slider {
	aspect-ratio: 48 / 40;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.portfolio-dialog-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




.slider-hover-button {
	position: absolute;
	height: 100%;
	width: 180px;
	top: 0;
	z-index: 1;
	opacity: 0;
	transition: .35s;
}

.slider-hover-button.next {
	background: linear-gradient(90deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
	right: 0;

}

.slider-hover-button.prev {
	background: linear-gradient(-90deg, rgba(20, 20, 20, 0) 0%, #141414 100%);
	left: 0;

}

.slider-hover-button:hover {
	opacity: 1;
	transition: .35s;
}

.slider-hover-button button {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}


/* .portfolio-slider {} */

.portfolio-slider .portfolio-card {
	display: flex !important;
}

.portfolio-slider-container {
	position: relative;
	margin-bottom: 100px;
	border-radius: 10px;
	overflow: hidden;
}

.portfolio-slider-container::after {
	content: '';
	position: absolute;
	right: -100px;
	top: 0;
	width: 215px;
	height: 100%;
	background: linear-gradient(90deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.6) 16.2%, rgba(20, 20, 20, 0.9) 38.47%, #141414 48.85%, #141414 52.82%, #0b0b0b 52.84%);
	z-index: 1;
}

.portfolio-slider-container::before {
	content: '';
	position: absolute;
	left: -100px;
	top: 0;
	width: 215px;
	height: 100%;
	background: linear-gradient(-90deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.6) 16.2%, rgba(20, 20, 20, 0.9) 38.47%, #141414 48.85%, #141414 52.82%, #0b0b0b 52.84%);
	z-index: 2;
}

.work-steps {
	gap: 46px;
	max-width: 1280px;
	margin: 0 auto 100px auto;
}

.work-steps__img {
	position: relative;
	width: calc(57% - 23px);

}

.work-steps__img img {
	position: relative;
	z-index: 1;
	/* left: 50%; */
	bottom: 0;
	/* transform: translate(-50%, 0); */
}


.work-steps__img::before {
	background: var(--dark-grey);
	border-radius: 10px;
	content: '';
	width: 100%;
	height: calc(100% - 100px);
	position: absolute;
	left: 0;
	bottom: 0;
}

.work-steps__text {
	width: calc(43% - 23px);
	gap: 36px;
	padding-top: 100px;
	overflow: hidden;
}

.work-steps__title {
	font-size: 20px;
}

.work-steps__item {
	display: none;
	gap: 12px;
	transition: .35s;
	transition-behavior: allow-descrete;
	transform: translateY(0);

}

.work-steps__item--active {
	display: flex;
}

@starting-style {
	.work-steps__item {
		transform: translateY(30px);
		opacity: 0;
	}
}

.work-steps__item>span {
	font-size: 32px;
}

.work-steps__item>p {
	line-height: 125%;
}

.work-steps__item>p:last-child {
	margin: 0;
}


.work-steps__tabs {
	border-radius: 10px;
	overflow: hidden;
	width: fit-content;
	position: relative;
	background: var(--dark-grey);
}

.work-steps__tab {
	padding: 12px 30px;
	border: none;
	margin: 0;
	font-size: 32px;
	color: #fff;
	background: transparent;
	position: relative;
	z-index: 1;
	cursor: pointer;

}

.work-steps__tab--overlay {
	position: absolute;
	left: 0;
	height: 100%;
	border-radius: 10px;
	background: var(--main-blue);
	transition: .35s;
}



/* Фильтр */

.pc-filter-form {
	max-width: calc(100% - 260px);
	gap: 24px;
}

.pc-filter-fieldset legend {
	font-size: 20px;
	line-height: 150%;
	margin-bottom: 16px;
	width: 100%;
	position: relative;
	cursor: pointer;
}

.pc-filter-fieldset legend::before {
	content: '';
	position: absolute;
	right: 2px;
	top: 10px;
	width: 11px;
	height: 9px;
	transition: .35s;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.3845 8.15375L5.19225 2.2696e-07L3.56412e-07 8.15375L10.3845 8.15375Z" fill="white" /></svg>');
}

.pc-filter-fieldset.inactive legend::before {
	transform: rotateX(-180deg);
	transition: .35s;
}

.pc-filter-fieldset {
	padding: 0;
	border: none;
	gap: 16px;
	margin: 0;
}

.pc-filter-fieldset label {
	gap: 30px;
	cursor: pointer;
	position: relative;
	transition: .35s;
	display: flex;
	transition-behavior: allow-descrete;
}

@starting-style {
	.pc-filter-fieldset label {
		opacity: 0;
	}
}

.pc-filter-fieldset.inactive label {
	display: none;
}

.pc-filter-fieldset.inactive legend {
	margin: 0;
}

.pc-filter-fieldset label span {
	transition: .35s;
	max-width: calc(100% - 50px);
}

.pc-filter-fieldset label:has(input:checked) span {
	color: var(--main-blue);
	transition: .35s;
}

.pc-filter-fieldset label:hover span {
	color: var(--main-blue);
	transition: .35s;
}

.pc-filter-fieldset label input {
	appearance: none;
	border: 1px solid #fff;
	border-radius: 3px;
	width: 16px;
	height: 16px;
	margin: 0;
	transition: .35s;
	cursor: pointer;
	position: relative;
}

.pc-filter-fieldset label:hover input {
	border-color: var(--main-blue);
	transition: .35s;
}


.pc-filter-fieldset label input:checked {
	background-color: var(--main-blue);
	border-color: var(--main-blue);
	transition: .35s;
}

.pc-filter-fieldset label input:checked::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px;
	background-image: url('data:image/svg+xml,<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.16782 0.292332C9.53665 0.682107 9.53665 1.31406 9.16782 1.70383L3.77778 7.4L0.276621 3.7C-0.0922071 3.31022 -0.0922071 2.67827 0.276621 2.2885C0.64545 1.89872 1.24344 1.89872 1.61227 2.2885L3.77778 4.577L7.83218 0.292332C8.20101 -0.0974439 8.79899 -0.0974439 9.16782 0.292332Z" fill="white" /></svg>');
}


.pc-filter-fieldset label:has(input:disabled) {
	opacity: .5;
	pointer-events: none;
	cursor: not-allowed;
	transition: .35s;
}



/* Блог */


.posts-list {
	margin-bottom: 100px;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

.article-thumbnail {
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 84 / 48;
	height: auto;
	width: 100%;
	background: var(--dark-grey);
	position: relative;
}

/* Шиммер-анимация */
.article-thumbnail::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
			var(--dark-grey) 0%,
			rgba(255, 255, 255, 0.1) 50%,
			var(--dark-grey) 100%);
	animation: shimmer 1.5s infinite;
}

/* Ключевые кадры */
@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

.article-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.article-title {
	margin: 24px 0;
}

.article-excerpt p {
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.article-excerpt p {
	line-height: 125%;
}

.article-excerpt {
	margin-bottom: 24px;
}

.article-bottom p {
	margin: 0;
}

.article-bottom {
	gap: 12px;
}

.article-bottom span {
	gap: 12px;
}

/* Страница "О компании" */

.page-title {
	gap: 12px;
	padding: 24px 0;
	margin-bottom: 56px;
}

.page-title h1 {
	margin: 0;
}

.page-title p {
	margin: 0;
}

.text-img__items {
	gap: 36px;
}

.text-img__item {
	width: calc(50% - 18px);
	background: var(--dark-grey);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.text-img__item img {
	position: relative;
	max-width: 390px;
	width: 390px;
}

.text-img__item p {
	padding: 16px 24px;
	margin: 0;
	line-height: 125%;
}

.text-img__item::before {
	content: '';
	filter: blur(250px);
	background: var(--unnamed, rgba(0, 96, 240, .4));
	position: absolute;
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 0;
	width: 50%;
	height: 100%;
}

.about-company {
	margin-bottom: 55px;
}

.text-numbers {
	margin-bottom: 100px;
	gap: 220px;
	grid-template-columns: repeat(3, 1fr);
	padding: 0 200px;
}

.text-numbers__item {
	gap: 12px;
}

.text-numbers__item span {
	font-size: 32px;
}

.text-numbers__item p {
	margin: 0;
}

.built-pc {
	gap: 36px;
	padding: 0 200px;
	margin-bottom: 40px;
}

.built-pc>* {
	width: calc(50% - 18px);
}


.built-pc__title {
	width: 100%;
	font-size: 32px;
}

.built-pc__item {
	gap: 12px;
}

.built-pc__item>span {
	font-size: 20px;
}

.built-pc__item>p {
	margin: 0;
	line-height: 125%;
}

.built-pc__items {
	gap: 56px;
}

.built-pc__img {
	position: sticky;
	top: 30px;
}

.built-pc__img img {
	max-width: 100%;
	position: relative;
	z-index: 1;
}

.built-pc__img::before {
	content: '';
	filter: blur(300px);
	background: var(--unnamed, rgba(0, 96, 240, .4));
	position: absolute;
	transform: translate(0%, -50%);
	right: 0;
	top: 50%;
	width: 100%;
	height: 100%;
}



/* Квиз */

section.quiz {
	margin-bottom: 150px;
}

.quiz-text {
	background: var(--dark-grey);
	border-radius: 10px;
	width: 680px;
}

.quiz-text__block {
	padding: 36px 36px 20px 36px;
	gap: 36px;
}

.quiz-text__block h2 {
	margin: 0;
}

.quiz-text__block p:last-child {
	margin-bottom: 0;
}

.answers-items {
	margin: 40px 36px;
	position: relative;
	z-index: 1;
}

.answer__item:hover label {
	color: var(--main-blue);
	transition: .35s;
}

.answer__item label {
	gap: 18px;
	cursor: pointer;
	transition: .35s;
}

.answer__item input {
	padding: 0;
	margin: 0;
	appearance: none;
	border: 1px solid #fff;
	border-radius: 2px;
	width: 16px;
	height: 16px;
	transition: .35s;
	position: relative;
}

.answer__item input::before {
	position: absolute;
	transition: .35s;
	opacity: 0;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 11.5078L12.9962 5.1115L12.2885 4.40375L6.6 10.0922L3.75 7.24225L3.04225 7.95L6.6 11.5078ZM1.6155 16C1.15517 16 0.770833 15.8458 0.4625 15.5375C0.154167 15.2292 0 14.8448 0 14.3845V1.6155C0 1.15517 0.154167 0.770833 0.4625 0.4625C0.770833 0.154167 1.15517 0 1.6155 0H14.3845C14.8448 0 15.2292 0.154167 15.5375 0.4625C15.8458 0.770833 16 1.15517 16 1.6155V14.3845C16 14.8448 15.8458 15.2292 15.5375 15.5375C15.2292 15.8458 14.8448 16 14.3845 16H1.6155ZM1.6155 15H14.3845C14.5385 15 14.6796 14.9359 14.8077 14.8077C14.9359 14.6796 15 14.5385 15 14.3845V1.6155C15 1.4615 14.9359 1.32042 14.8077 1.19225C14.6796 1.06408 14.5385 1 14.3845 1H1.6155C1.4615 1 1.32042 1.06408 1.19225 1.19225C1.06408 1.32042 1 1.4615 1 1.6155V14.3845C1 14.5385 1.06408 14.6796 1.19225 14.8077C1.32042 14.9359 1.4615 15 1.6155 15Z' fill='%230060F0' /%3E%3C/svg%3E");

}


.answer__item:hover input {
	border-color: var(--main-blue);
	transition: .35s;
}

.answer__item p {
	max-width: calc(100% - 40px);
	transition: .35s;
}

.answer__item span {
	gap: 22px;
}

.answer__item label:has(input:checked) input {
	border-color: var(--main-blue);
	transition: .35s;

}

.answer__item label:has(input:checked) p {
	color: var(--main-blue);
	transition: .35s;
}

.answer__item label:has(input:checked) input::before {
	opacity: 1;
	transition: .35s;
}

.quiz-block {
	gap: 36px;
}

.quiz-answers {
	background: var(--dark-grey);
	border-radius: 10px;
	width: calc(100% - 716px);
	position: relative;
	overflow: hidden;
}

.quiz-answers::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	left: -20%;
	top: 36px;
	width: 640px;
	height: 120px;
	border-radius: 100%;
}

.quiz-answers::after {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	right: -20%;
	bottom: 36px;
	width: 560px;
	height: 160px;
	border-radius: 100%;
}

.answers__item {
	gap: 36px;
	position: relative;
	display: none;
	transition: .35s;
	opacity: 1;
	transition-behavior: allow-descrete;
}

.answers__item img {
	width: 100%;
	height: auto;
	aspect-ratio: 268 / 136;
	border-radius: 10px;
	overflow: hidden;
}

.answers__item--active {
	display: flex;
}

@starting-style {

	.answers__item {
		opacity: 0;
		transform: translateY(20px)
	}
}


.answers__item>span.question {
	font-size: 20px;
}

.answers {
	grid-template-columns: repeat(3, 1fr);
	gap: 64px;
}

.answers-bottom {
	margin: 0 36px 40px 36px;
	gap: 36px;
	position: relative;
	z-index: 1;
}

.question-counter__top {
	gap: 36px;
}

.question-counter {
	gap: 25px;
	width: 100%;
}

.question-counter__item {
	height: 7px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.question-counter__item::before {
	content: '';
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--main-blue);
	position: absolute;
	transition: .35s ease-in-out;
}

.question-counter-items {
	gap: 4px;
}

.question-counter__item--painted::before {
	width: 100%;
	transition: .35s ease-in-out;
}

.answers-controls {
	gap: 24px;
}

.answers-controls button:disabled {
	cursor: not-allowed;
}

.quiz-form {
	display: none;
	height: 100%;
	gap: 36px;
	max-width: 550px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	transition-behavior: allow-descrete;
	transition: .35s;

}

@starting-style {
	.quiz-form {
		opacity: 0;
		transform: translateY(20px);
	}
}


.quiz-form--active {
	display: flex;
}

.quiz-form__form {
	width: 100%;
}

.quiz-form__form form {
	gap: 16px;
}

.form-inputs {
	gap: 16px;
}

.form-inputs__item {
	gap: 5px;
}

.form-inputs__item label {
	line-height: 125%;
	font-weight: normal;
}

.how-connect__inputs {
	gap: 5px;
}

.how-connect__inputs>* {
	width: calc(50% - 2.5px);
	padding: 16px 10px;
	background: #fff;
	border-radius: 10px;
	position: relative;
	transition: .35s;
	cursor: pointer;
}

.how-connect__inputs>*:hover {
	box-shadow: 0 0 23px 1px #0060f0;
	transition: .35s;
	z-index: 2;
}


.how-connect__inputs>*>span {
	gap: 10px;
}

.how-connect__inputs>*>span>strong {
	line-height: 125%;
	color: var(--black);
	transition: .35s;
}

.how-connect__inputs>*>span>b {
	/* background-color: #fff;
	border-radius: 50px;
	place-items: center;
	width: 20px;
	height: 20px; */
}

.how-connect__inputs>*>input {
	appearance: none;
	position: absolute;
	overflow: hidden;
}

.how-connect__inputs>*:has(input:checked) {
	background: var(--main-blue);
	transition: .35s;
}


.how-connect__inputs>*:has(input:checked)>span>strong {
	color: #fff;
	transition: .35s;
}

.how-connect__inputs>*:has(input:checked) svg rect {
	transition: .35s;
}


.how-connect__inputs>*:has(input:checked) svg path {
	transition: .35s;
}

.how-connect__inputs>*:first-child:has(input:checked) svg path:first-child {
	fill: #fff;
	transition: .35s;

}

.how-connect__inputs>*:first-child:has(input:checked) svg path:nth-child(2) {
	fill: var(--main-blue);
	transition: .35s;

}

.how-connect__inputs>*:first-child:has(input:checked) svg rect {
	fill: #fff;
	transition: .35s;

}



.how-connect__inputs>*:last-child:has(input:checked) svg path:first-child {
	fill: #fff;
	transition: .35s;

}

.how-connect__inputs>*:last-child:has(input:checked) svg path:nth-child(2) {
	fill: var(--main-blue);
	transition: .35s;

}

.how-connect__inputs>*:last-child:has(input:checked) svg path:nth-child(3) {
	fill: var(--main-blue);
	transition: .35s;

}

.how-connect__inputs>*:last-child:has(input:checked) svg rect {
	fill: #fff;
	transition: .35s;

}



.form-inputs__item input[type="text"],
.form-inputs__item input[type="tel"] {
	background: #fff;
	border-radius: 10px;
	color: var(--black);
	padding: 16px 40px 16px 10px;
	border: none;
	font-size: 16px;
}

.form-inputs__item input[type="text"]:focus-visible,
.form-inputs__item input[type="tel"]:focus-visible {
	outline: none;
}


.form-inputs__item input[type="text"]::placeholder,
.form-inputs__item input[type="tel"]::placeholder {
	opacity: .4;
}

.form-proof {
	gap: 12px;
}

.form-proof input {
	appearance: none;
	width: 16px;
	height: 16px;
	border: 1px solid #fff;
	border-radius: 2px;
	transition: .35s;
	position: relative;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.form-proof input:hover {
	border-color: var(--main-blue);
	transition: .35s;
}

.form-proof input::before {
	content: '';
	width: 100%;
	height: 100%;
	top: 1px;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.16782 0.292332C9.53665 0.682107 9.53665 1.31406 9.16782 1.70383L3.77778 7.4L0.276621 3.7C-0.0922071 3.31022 -0.0922071 2.67827 0.276621 2.2885C0.64545 1.89872 1.24344 1.89872 1.61227 2.2885L3.77778 4.577L7.83218 0.292332C8.201 -0.0974439 8.799 -0.0974439 9.16782 0.292332Z' fill='white' /%3E%3C/svg%3E");
	background-position: center;
	background-size: 11px;
	position: absolute;
	opacity: 0;
	background-repeat: no-repeat;
	left: 1px;
}

.form-proof input:checked {
	border-color: var(--main-blue);
	transition: .35s;
	background-color: var(--main-blue);
}

.form-proof input:checked::before {
	opacity: 1;
	transition: .35s;
}

.form-proof label {
	max-width: calc(100% - 30px);
	font-weight: normal;
}

.quiz-form>p {
	margin: 0;
}


.quiz-form .pretty-button {
	width: 100%;
}

@media(width<=1750px) {
	.quiz-text {
		width: calc(42% - 18px);
	}

	.quiz-answers {
		width: calc(58% - 18px);
	}

	.answers {
		gap: 36px;
	}
}



/* Блок сотрудников */

.team-block {
	margin-bottom: 100px;
}

.team-block__items {
	gap: 36px;
}

.team-row {
	gap: 24px;
}

.team-row:nth-child(even) .team-block__item {
	flex-direction: row-reverse;
}


.team-block__item {
	width: calc(50% - 12px);
	background: var(--dark-grey);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	gap: 24px;
}


.team-block__item>* {
	position: relative;
	z-index: 1;
	width: calc(50% - 12px);
	height: 100%;
}

.employee-photo {
	min-height: 320px;
}

.employee-photo img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	bottom: 0;
	z-index: 1;
	left: 50%;
	transform: translate(-50%, 0);
}

.team-block__item::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	right: 50%;
	top: 50%;
	transform: translate(50%, -50%);
	width: 380px;
	height: 90px;
	border-radius: 100%;
}

.employee-text {
	padding: 24px;
}

.employee-text span {
	font-size: 32px;
	line-height: 120%;
	display: inline-block;
	margin-bottom: 12px;
}




/* Отзывы клиентов */

.reviews-block {
	margin-bottom: 100px;
}

.review-item__top {
	gap: 24px;
}

.reviews-block__items {
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 36px;
}

.review-item {
	position: relative;
	background: var(--dark-grey);
	overflow: hidden;
	padding: 24px;
	border-radius: 10px;
	gap: 30px;
}

.review-item::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	right: calc(0% - 125px);
	top: -100px;
	width: 255px;
	height: 205px;
	border-radius: 100%;
}

.review-item__top>* {
	gap: 12px;
}

.review-author {
	font-size: 20px;
}

.review-date {
	color: var(--main-blue);
	line-height: 125%;
}

.rate {
	gap: 4px;
}

.review-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	overflow: hidden;
}

.review-link a {
	color: var(--main-blue);
}

.general-links {
	gap: 24px;
}

.general-links>span {
	font-size: 32px;
	line-height: 120%;
}

.general-links__items {
	gap: 36px;
}


.general-links__item img {
	max-height: 24px;
}

.general-links__item .pretty-button {
	width: 275px;
}


/* Контакты */


.contact-info__items {
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

.contact-info__item {
	padding: 56px 100px;
	gap: 56px;
	background: var(--dark-grey);
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}


.contact-info__item::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	left: -300px;
	top: -190px;
	width: 475px;
	height: 195px;
	border-radius: 100%;
	transform: rotate(45deg);
}

.contact-info__item>* {
	position: relative;
	z-index: 1;
}

.contact-info__item h2 {
	margin: 0;
}

.work-time__title {
	gap: 12px;
}

.work-time__status {
	margin-top: -2px;

}

.work-time__status strong {
	font-weight: normal;
	font-variation-settings: 'wght' 400;
	font-size: 16px;
}

.work-time__status strong.is_open {
	color: #00FF19;
}

.work-time__status strong.is_close {
	color: #F00000;
}

.work-time__block {
	gap: 12px;
}

.work-time__desc {
	margin: 0;
}

.work-time__title {
	font-size: 20px;
}

#shop_time {
	opacity: .5;
}

.work-time {
	gap: 24px;
}

.work-time__contacts {
	gap: 36px;
}

.work-time__contact {
	gap: 12px;
}

.work-time__contact span {
	font-size: 20px;
}

.work-time__contact a {
	color: #fff;
}

.contact-info__item>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

#map {
	height: 610px;
	border-radius: 10px;
	overflow: hidden;
}

.mark-text {
	background: hsla(0, 0%, 100%, .9);
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding: 3px 6px 4px;
	border-radius: 6px;
	line-height: inherit;
	height: auto;
	width: max-content;
	color: #4d4d4d;
	left: 10px;
}

.mark-text>div {
	gap: 4px;
}

.mark-text>div>* {
	display: flex;
	font-size: 14px;
}

.mark-text strong {
	font-variation-settings: 'wght' 400;
	font-size: 16px;
}

.mark-text>div>span {
	color: #000;
}

.mark-text>div>span:nth-child(2) {
	margin-top: -2px;
}

.mark-text>div>span:nth-child(1) {
	font-size: 16px;
}


.route-map-links {
	position: absolute;
	bottom: 56px;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;

}

.route-map-links>div {
	gap: 24px;
}

.route-map-links__head {
	font-size: 32px;
}

.route-map-links__link a img {
	max-height: 24px;
}

.route-map-links__link a {
	width: 275px;
}

.route-map-links__link {
	gap: 36px;
}

.map-container {
	position: relative;
	margin-bottom: 100px;
	border-radius: 10px;
	overflow: hidden;
}

.map-container::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	/* background: linear-gradient(180.00deg, rgba(0, 96, 240, 0.44), rgba(10.5432767868042, 10.5432767868042, 10.5432767868042, 0.6) 64%, rgba(11, 11, 11, 1) 99%); */
	z-index: 0;
	background: linear-gradient(180.00deg, rgba(0, 0, 0, 0), var(--unnamed, rgb(20, 20, 20)) 90%);
	z-index: 1;
	pointer-events: none;
	/* ключевой момент — карта остаётся кликабельной */
}


/* FAQ */

.faq-list {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	margin-bottom: 180px;
}

.faq-list__item {
	gap: 100px;
	padding: 68px 0;
	position: relative;
}

.faq-list__item:nth-child(1) {
	padding-top: 0;
}

.faq-list__item:nth-child(even) {
	flex-direction: row-reverse;
}

.faq-list__item::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='1248' height='2' viewBox='0 0 1248 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-3.27835e-08 0.625C-1.09278e-08 0.875 1.09278e-08 1.125 3.27835e-08 1.375C20.8 1.41666 41.6 1.45625 62.4 1.49374C249.6 1.83123 436.8 1.99996 624 1.99995C811.2 1.99993 998.4 1.83116 1185.6 1.49365C1206.4 1.45614 1227.2 1.41656 1248 1.37489C1248 1.12489 1248 0.874891 1248 0.624891C1227.2 0.583226 1206.4 0.543645 1185.6 0.506146C998.4 0.168663 811.2 -7.09174e-05 624 -5.45518e-05C436.8 -3.81863e-05 249.6 0.168728 62.4 0.506245C41.6 0.543746 20.8 0.583332 -3.27835e-08 0.625Z' fill='url(%23paint0_linear_327_15080)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_327_15080' x1='4.37107e-08' y1='1.49999' x2='1248' y2='1.49988' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23141414' /%3E%3Cstop offset='0.5' stop-color='%230060F0' /%3E%3Cstop offset='1' stop-color='%23141414' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}


.list-item__text {
	width: calc(65% - 80px);
	gap: 56px;
	position: relative;
	z-index: 1;
}

.list-item__text>div>p {
	margin: 0 0 25px 0;
}


.list-item__text>div>p:last-child {
	margin: 0;
}

.list-item__text h2 {
	margin: 0;
}

.list-item__img {
	width: calc(35% - 20px);
	position: relative;
	z-index: 1;
}

.list-item__img::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(100% - 40px);
	height: auto;
	aspect-ratio: 380 / 90;
	border-radius: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.list-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




/* Страница новости */


.news-content {
	padding-bottom: 36px;
	max-width: 790px;
	margin: 0 auto 36px auto;
}

.news-content .page-title {
	padding: 0;
	margin-bottom: 36px;
}

.news-content ul li::marker {
	color: var(--main-blue);
}


/* 404 */

.page-404 {
	max-width: 850px;
	margin: 0 auto;
	margin-top: -40px;
}

.page-404 img {
	width: 100%;
	height: auto;
}

.page-404 .pretty-button {
	margin: -60px auto 60px auto;
}


/* Закрепленный виджет мессенджеров */


.sticky-messengers-list {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 24px;
	z-index: 9;
}

.sticky-messengers-list li {
	border-radius: 10px 0 0 10px;
	border: 1px solid var(--main-blue);
	border-right: none;
	background: var(--dark-grey);
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
}

.sticky-messengers-list li::before {
	content: '';
	width: 0;
	height: 100%;
	right: 0;
	top: 0;
	background: var(--main-blue);
	position: absolute;
	transition: .35s;
}

.sticky-messengers-list li:hover::before {
	width: 100%;
	transition: .35s;
}

.sticky-messengers-list li a {
	padding: 16px;
	position: relative;

}

.sticky-messengers-list li img {
	max-height: 24px;
}


/* Страница готового ПК */

.product-sections {}

#hardwares {
	margin-bottom: 175px;
}


/* График FPS */

.chart-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 70px;
}

.chart-container::after {
	content: '';
	width: 100vw;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: 0;
	background-size: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='1920' height='2' viewBox='0 0 1920 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-3.27835e-08 0.625C-1.09278e-08 0.875 1.09278e-08 1.125 3.27835e-08 1.375C32 1.41666 64 1.45624 96 1.49374C384 1.83122 672 1.99994 960 1.99992C1248 1.99989 1536 1.83112 1824 1.49359C1856 1.45609 1888 1.4165 1920 1.37483C1920 1.12483 1920 0.874832 1920 0.624832C1888 0.583168 1856 0.543588 1824 0.506091C1536 0.168616 1248 -0.000109104 960 -8.39259e-05C672 -5.87481e-05 384 0.168716 96 0.506242C64 0.543744 32 0.583331 -3.27835e-08 0.625Z' fill='url(%23paint0_linear_327_16873)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_327_16873' x1='4.37107e-08' y1='1.49999' x2='1920' y2='1.49982' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23141414' /%3E%3Cstop offset='0.5' stop-color='%230060F0' /%3E%3Cstop offset='1' stop-color='%23141414' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
	transform: translate(-50%);
}

.chart-container::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	left: 50%;
	top: 50%;
	width: 380px;
	height: 120px;
	border-radius: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}


.chart-container h2 {
	margin-bottom: 12px;
}

.chart-container p {
	max-width: 685px;
	margin: 0 auto 36px auto;
}


#chart-legend ul {
	display: flex;
	gap: 36px;
	list-style: none;
	margin: 0 0 36px 0;
	padding: 0;
	justify-content: center;
	flex-wrap: wrap;
}

#chart-legend ul li {
	gap: 12px;
	cursor: pointer;
	transition: .35s;
}

#chart-legend ul li.inactive {
	opacity: .3;
	transition: .35s;
}

#chart-legend ul li.inactive span{
	color: #fff !important;
}

.legend-item__color {
	width: 58px;
	height: 10px;
	margin: 5px 0;
	border-radius: 10px;
}

.legend-item__label {
	display: inline-block;
}

.legend-item span{
	transition: .35s;
}

.legend-item:hover span{
	color: var(--main-blue);
	transition: .35s;
}


/* Список комплектующих готового ПК */


.hardware-list {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	margin-bottom: 180px;
}

.hardware-list__item {
	gap: 100px;
	padding: 68px 0;
	position: relative;
}

.hardware-list__item:nth-child(odd) {
	flex-direction: row-reverse;
}

.hardware-list__item::before {
	content: '';
	width: 100vw;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: 0;
	background-size: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='1920' height='2' viewBox='0 0 1920 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-3.27835e-08 0.625C-1.09278e-08 0.875 1.09278e-08 1.125 3.27835e-08 1.375C32 1.41666 64 1.45624 96 1.49374C384 1.83122 672 1.99994 960 1.99992C1248 1.99989 1536 1.83112 1824 1.49359C1856 1.45609 1888 1.4165 1920 1.37483C1920 1.12483 1920 0.874832 1920 0.624832C1888 0.583168 1856 0.543588 1824 0.506091C1536 0.168616 1248 -0.000109104 960 -8.39259e-05C672 -5.87481e-05 384 0.168716 96 0.506242C64 0.543744 32 0.583331 -3.27835e-08 0.625Z' fill='url(%23paint0_linear_327_16873)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_327_16873' x1='4.37107e-08' y1='1.49999' x2='1920' y2='1.49982' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23141414' /%3E%3Cstop offset='0.5' stop-color='%230060F0' /%3E%3Cstop offset='1' stop-color='%23141414' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
	transform: translate(-50%);
}


.hardware-list-item__text {
	width: calc(50% - 50px);
	gap: 56px;
	position: relative;
	z-index: 1;
}

.hardware-list-item__text>div>p {
	margin: 0 0 25px 0;
}


.hardware-list-item__text>div>p:last-child {
	margin: 0;
}

.hardware-list-item__text h2 {
	margin: 0;
}

.hardware-list-item__img {
	width: calc(50% - 50px);
	position: relative;
	z-index: 1;
}

.hardware-list-item__img::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	left: 50%;
	top: 50%;
	width: 380px;
	height: auto;
	aspect-ratio: 380 / 70;
	border-radius: 100%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.hardware-list-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 330px;
	position: relative;
	z-index: 1;
}

.hardware-list__item h2 {
	margin-bottom: 12px;
}

.hardware-list__item h3 {
	margin-bottom: 36px;
}


.product-info-gallery {
	width: 50%;
}

.product-gallery-swiper {
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 100%;
	/* aspect-ratio: 86 / 72; */
}

.product-gallery__item {
	height: 100% !important;
}


.product-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* aspect-ratio: 86 / 72; */
}

.product-info-text {
	width: 50%;
	background: var(--dark-grey);
	border-radius: 0 10px 10px 0;
	padding: 48px 64px;
	overflow: hidden;
}

.product-info-text__title {
	gap: 22px;
}

.product-info-text__title h1 {
	margin: 0;
}

.compare {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	gap: 12px;
	color: #fff;
	font-size: 16px;
}

.compare span {
	transition: .35s;
}

.compare span svg path {
	transition: .35s;
}


.compare:hover span {
	transition: .35s;
	color: var(--main-blue);
}

.compare:hover span svg path {
	transition: .35s;
	fill: var(--main-blue);
}

.product-info {
	margin-bottom: 24px;
	z-index: 1;
	position: relative;
}

.product-info-text__container {
	gap: 36px;
}

.product-info__price {
	gap: 12px;
}

.product-info__price .price-full {
	color: var(--main-blue);
	font-size: 32px;
}

.chars-table td {
	width: 50%;
	padding: 12px 0;
	border-bottom: 1px solid var(--black);
}

.chars-table tr:first-child td {
	padding-top: 0;
}

.chars-table tr:last-child td {
	border: none;
}

.char-value {
	padding-left: 15px;
}

.product-info__buttons>* {
	width: calc(50% - 18px);
	gap: 12px;
}

.product-info__buttons {
	gap: 36px;
}

.credit-slide {
	gap: 12px;
	cursor: pointer;
}

.credit-slide img {
	transition: .35s;
	border-radius: 10px;
}

.credit-slide:hover img {
	box-shadow: 0 0 22px 9px #0060f0;
	transition: .35s;
}

.credit-item {
	max-width: 171px !important;
	margin-right: 36px;
	cursor: pointer;
}


.product-info__credits {
	overflow-x: hidden;
	margin-top: -30px;
	width: calc(100% + 30px);
	margin-left: -30px;
	padding: 30px 0 0 30px;
	position: relative;
}


.credits-swiper {
	/* position: relative; */
}



.credits-swiper::before {
	content: '';
	width: 30px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, #141414 100%);
	z-index: 2;
}

.credits-swiper::after {
	content: '';
	width: 30px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #141414 100%);
	z-index: 2;
}



#credit-dialog {
	width: calc(100% - 30px);
	max-width: 585px;
	border: none;
	padding-top: 35px;
	background: transparent;
	padding: 35px 0 0 0;
	overflow: hidden;
	transition: .35s;
	transition-behavior: allow-descrete;
}

#credit-dialog>form {
	position: absolute;
	right: 0;
	top: 5px;
}

#credit-dialog>form>button {
	background: transparent;
	border: none;
	padding: 0;
	margin: 5px;
	transition: .35s;
	will-change: transform;
}

.dialog-content {
	position: relative;
	height: 100%;
	background: var(--dark-grey);
	border-radius: 10px;
	padding: 24px;
	overflow: hidden;
	transition: .35s;
	color: #fff;
	gap: 24px;
}

.credit-info-list {
	background: #fff;
	color: var(--black);
	border-radius: 10px;
	padding: 16px 10px;
	gap: 10px;
	transition: .35s;
}

.credit-info-item>* {
	width: calc(50% - 12px);
}

.credit-info-item {
	gap: 24px;
}

.credit-info-item>*:last-child {
	color: var(--main-blue);
}

#credit-dialog .pretty-button {
	width: 100%;
}


.dialog-content::before {
	content: '';
	filter: blur(200px);
	background: var(--main-blue);
	position: absolute;
	right: 0;
	top: 100%;
	width: 340px;
	height: 190px;
	border-radius: 100%;
	pointer-events: none;
	z-index: 1;
	transition: .35s;
	transform: translate(50%, -50%) rotate(45deg);
}

.dialog-content>* {
	position: relative;
	z-index: 1;
}


.bank-list {
    display: none;
    gap: 5px;
    background: #fff;
    color: var(--black);
    border-radius: 10px;
    padding: 16px 10px;
    position: absolute;
    pointer-events: none;
    transition: .35s;
    opacity: 0;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
	overflow: hidden;
}

.bank-list-items {
    overflow-y: auto;
    max-height: 150px;
    height: 100%;
    width: 100%;
}

.bank-list-items::-webkit-scrollbar {
	width: 6px;
	border-radius: 10px;
}

.bank-list-items::-webkit-scrollbar-thumb {
	background-color: var(--main-blue);
	border-radius: 10px;
	width: 4px;
	border: 1px solid #d9d9d9;
}

.bank-list-items::-webkit-scrollbar-track {
	background: #d9d9d9;
	border-radius: 10px;
	padding: 1px;
}



.bank-list.open {
	display: flex;
	pointer-events: all;
	opacity: 1;
}


@starting-style {
	.bank-list {
		top: calc(100% + 30px)
	}
}

.banks-list-content {
	position: relative;
	z-index: 2;
}

.banks-list-content>p{
	margin-bottom: 5px;
}

.active-bank {
    width: 100%;
    padding: 16px 40px 16px 10px;
    border-radius: 10px;
    font-size: 16px;
    text-align: start;
    position: relative;
}

.active-bank::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    top: calc(50% - 5px);
    background-position: center;
    background-size: contain;
    transition: .35s;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.65375 0.000129798L4.32688 6.79492L0 0.000130177L8.65375 0.000129798Z' fill='%23141414' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
}


.banks-list-content:has(.bank-list.open) .active-bank::before {
    transform: rotateX(-180deg);
    transition: .35s;
}


.dialog-content:has(.bank-list.open ) .credit-info-list {
	opacity: .5;
	transition: .35s;
}


.bank-list__item {
	padding: 10px;
	transition: .35s;
	border-radius: 10px;
	cursor: pointer;
}

.bank-list__item:hover{
	background: #0000000a;
}

.bank-list__item.active{
	color: var(--main-blue);
}

/* Якорные ссылки */


.anchors {
    margin-bottom: 70px;
    position: sticky;
    top: 50px;
    z-index: 3;
}

.anchors-container{
	max-width: 1470px;
}

.anchors__title{
	background: var(--main-blue);
	font-size: 32px;
	padding: 12px 15px;
}



.hardware-anchors {
    position: relative;
    margin: 0;
}
  
  .hardware-anchor-link {
	position: relative;
	padding: 6px 12px;
	display: inline-block;
	transition: color 0.2s;
  }
  
  .anchors-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	background: rgba(20,20,20,0.2);
	border-radius: 6px;
	transform: translate(0,0);
	transition: transform 0.3s ease, width 0.3s ease;
	pointer-events: none; /* чтобы не мешал кликам */
  }
  

  .anchors-overlay{
	height: calc(100% + 12px);
	background: var(--main-blue);
  }