/* fonts
font-family:'Days One', sans-serif; 400
font-family:'Nunito Sans', sans-serif; variable
*/

@font-face {
	font-family:'Days One';
	src:url('fonts/Days-One/DaysOne-Regular.eot');
	src:local('Days One'), local('DaysOne-Regular'),
		url('fonts/Days-One/DaysOne-Regular.eot?#iefix') format('embedded-opentype'),
		url('fonts/Days-One/DaysOne-Regular.woff2') format('woff2'),
		url('fonts/Days-One/DaysOne-Regular.woff') format('woff'),
		url('fonts/Days-One/DaysOne-Regular.ttf') format('truetype');
	font-weight:normal;
	font-style:normal;
	font-display:swap;
}

@font-face {
	font-family:'Nunito Sans';
	src:url('fonts/NunitoSans-Variable.woff2') format('woff2');
	font-weight:200 900;
	font-stretch:75% 200%;
}
@font-face {
	font-family:'Nunito Sans Italic';
	src:url('fonts/NunitoSans-Italic-Variable.woff2') format('woff2');
	font-weight:200 900;
	font-stretch:75% 200%;
	/* font-style:oblique -10deg; */
	font-style:italic;
}

/* set html5 elements to block */
aside, footer, header, main, menu, nav, article, section {
	display:block;
}

/*** main ***/
* {
	box-sizing:border-box;
	margin:0;
	padding:0;
	outline:none !important;
}

::-moz-focus-inner {
	border:0 !important;
}
::before,
::after {
	box-sizing:border-box;
}

:root {
	--font:'Nunito Sans';
	--i-font:'Nunito Sans Italic';
	--h-font:'Days One';
	
	--white:#fff;
	--white-50:#ffffff80;
	--white-40:#ffffff64;
	--white-20:#ffffff32;
	--white-10:#ffffff16;
	--white-0:#fff0;
	--black:#282828;
	--orange:#ff7722;
	--orange-20:#ff772232;
	--dark-orange:#eb630e;
	--dark:#13325b;
	--blue:#2282ff;
	--blue-20:#2282ff32;
	--dark-blue:#0d60cc;
	--darkest-blue:#002788;
	--light-blue:#aecaef;
	--light-blue-20:#80bbff32;
	--gray:#7d91ab;
	--red:#ff2222;
	
	--bg1:#edf7ff;
	--bg2:#d7e8ff;
	--grad-linear-bg-blue:linear-gradient(to bottom, #00227b 0%, #2282ff 100%);
	--grad-50-linear:linear-gradient(97.97deg, #fff0 79.89%, #ffffff32 96.61%);
	--grad-linear-white:linear-gradient(0deg, #ffffff32, #ffffff32), linear-gradient(101.98deg, #ffffff32 2.63%, #fff0 21.14%);
	--grad-linear:linear-gradient(149.72deg, #fff0 32.38%, #fff 112.58%);
	--grad-orange:linear-gradient(149.72deg, rgba(255, 119, 34, 0) 32.38%, #ff7722 112.58%);
	
	--success:#00dd00;
	
	--light-blue-shadow:#0e5ec54d;
	--theme-shadow:#18274b33;
}

html {
	width:100%;
	height:100%;
	min-width:320px;
	scroll-behavior:smooth;
}

body {
	height:100%;
	background-color:var(--white);
	color:var(--dark);
	font-family:var(--font);
	font-size:16px;
	font-weight:300;
	line-height:normal;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale
	-webkit-text-size-adjust:none;
	-moz-text-size-adjust:none;
	-ms-text-size-adjust:none;
	/* iOS */
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
}

a,
.a {
	color:var(--dark);
	text-decoration:none;
	cursor:pointer;
	transition:border-color .2s, background-color .2s, color .2s, font-size .2s, opacity .2s;
}
.bx-no-touch a:hover,
.bx-no-touch .a:hover {
	text-decoration:none; /* for bootstrap */
}

b,
.b,
strong {
	font-weight:600;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	display:block;
	margin:0;
	font-family:var(--h-font);
	font-weight:400;
	line-height:1.3;
	transition:margin .2s, color .2s, font-size .2s, line-height .2s;
}
h1,
.h1 {
	font-size:148px;
}
h2,
.h2 {
	font-size:90px;
}
h3,
.h3 {
	font-size:35px;
	text-transform:uppercase;
}
h4,
.h4 {
	font-size:30px;
	text-transform:uppercase;
}
h5,
.h5 {
	font-size:24px;
	text-transform:uppercase;
}
h6,
.h6 {
	font-size:20px;
	text-transform:uppercase;
}

p {
	margin:24px 0;
}

img {
	max-width:100%;
	height:auto;
	border:none;
}

svg {
	transition:all .2s;
}
svg * {
	fill:inherit;
	stroke:inherit;
	--color:inherit;
}

.input,
input,
textarea,
select {
	padding:27px 15px 8px;
	border:none;
	border-radius:10px;
	background:var(--white-10);
	background-image:none;
	color:var(--white);
	font-family:var(--font);
	font-size:18px;
	font-weight:400;
	line-height:1.4;
	transition:padding .2s, color .2s, background-color .2s, opacity .2s;
}
button,
input[type=button],
input[type=submit],
input[type=file] {
	font-family:var(--font);
	cursor:pointer;
}
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
	display:none;
}
textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=search],
input[type=password]{
	-webkit-appearance:none;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color:inherit;
	opacity:.5;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	opacity:.5;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color:inherit;
	opacity:5;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	opacity:.5;
}

iframe {
	max-width:100%;
}

main ul,
main ol {
	list-style-position:inside;
	margin:24px 0;
	padding:0;
}
main ul li,
main ol li {
	margin:10px 0;
	padding:0;
}
main ul li::marker,
main ol li::marker {
	color:var(--dark);
	font-weight:600;
}
main li ul,
main li ol {
	margin:18px 0;
	padding:0 0 0 40px;
}

/*** additional ***/

.wrapper {
	max-width:1500px;
	margin-right:auto;
	margin-left:auto;
}

.touch,
.notouch {
	display:none;
}
.bx-touch .touch {
	display:block;
}
.bx-no-touch .notouch {
	display:block;
}

.grecaptcha-badge {
	display:none !important;
}

/* svg icons */
.icon {
	display:block;
	fill:var(--color);
}

.icon.currency {
	display:inline-block;
	width:.42lh;
	height:.50lh;
	fill:currentColor;
	vertical-align:baseline;
}
/* END svg icons */

.clear {
	clear:both;
	display:table;
	height:0;
	line-height:0;
	overflow:hidden;
}
.clear-wrapper::before,
.clear-wrapper::after {
	content:'';
	clear:both;
	display:table;
	height:0;
	overflow:hidden;
	line-height:0;
}

#bx-panel-back {
  display:none !important;
}

.nowrap {
	white-space:nowrap;
}

.popup-window {
	z-index:111111 !important;
}

.no-select {
	user-select:none;
}

.obligatory {
	color:var(--red);
}

.iframe-wrapper iframe {
	display:block;
	margin:0 auto;
}

.big-text-1 {
	font-family:var(--h-font);
	font-size:80px;
	font-weight:400;
	line-height:1.3;
	text-transform:uppercase;
}
.big-text-2 {
	font-size:25px;
	font-weight:400;
	line-height:1.4;
}
.subhead {
	font-size:20px;
	font-weight:400;
	line-height:1.4;
}
.text-1 {
	font-size:20px;
	font-weight:600;
	line-height:1.4;
}
.text-2 {
	font-size:20px;
	font-weight:500;
	line-height:1.4;
}
.text-3 {
	font-size:18px;
	font-weight:500;
	line-height:1.4;
}
.text-4 {
	font-size:18px;
	font-weight:400;
	line-height:1.4;
}
.text-5 {
	font-size:16px;
	font-weight:500;
	line-height:1.4;
}
.text-6 {
	font-size:16px;
	font-weight:400;
	line-height:1.4;
}
.text-7 {
	font-family:var(--i-font);
	font-size:16px;
	font-weight:400;
	line-height:1.3;
}
.text-8 {
	font-size:13px;
	font-weight:400;
	line-height:1.4;
}
.text-9 {
	font-size:12px;
	font-weight:400;
	line-height:1.4;
}
.text-10 {
	font-size:11px;
	font-weight:400;
	line-height:1.3;
}

.errortext,
font.errortext { /* bx style */
	color:var(--red) !important;
}

.post-active-gallery {
	opacity:0;
	transition:opacity .2s;
}
.post-active-gallery.slick-initialized {
	opacity:1;
}

/* spinner */
.send-form-spinner {
	display:block;
	width:32px;
	height:32px;
	border:1px solid var(--dark);
	border-radius:100%;
	background-color:var(--white);
	position:relative;
}
.send-form-spinner::before {
	content:'';
	position:absolute;
	background-color:var(--dark);
	top:5px;
	left:5px;
	width:8px;
	height:8px;
	border:none;
	border-radius:100%;
	transform-origin:10px 10px;
	animation-name:spin;
	animation-duration:1000ms;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}
@media (prefers-reduced-motion:reduce) {
	.send-form-spinner::before {
		animation-name:blink;
		animation-duration:2000ms;
	}
}
@keyframes spin {
	from {
		transform:rotate(0deg);
	}
	to {
		transform:rotate(360deg);
	}
}
@keyframes blink {
	from {
		opacity:0;
	}
	50% {
		opacity:1;
	}
	to {
		opacity:0;
	}
}
/* END spinner */

/* buttons */
.button-wrapper {
	text-align:center;
}

.button {
	display:inline-block;
	height:51px;
	padding:0 30px;
	border:1px solid transparent;
	border-radius:10px;
	background-color:var(--blue);
	color:var(--white);
	font-size:18px;
	font-weight:600;
	line-height:49px;
	text-align:center;
	text-decoration:none !important;
	position:relative;
	user-select:none;
	cursor:pointer;
	transition:all .2s;
}
.bx-no-touch .button:not([disabled]):hover {
	background-color:var(--dark-blue);
}

.white-button {
	border-color:var(--white);
	background-color:var(--white);
	color:var(--blue);
}
.bx-no-touch .white-button:not([disabled]):hover {
	background-color:transparent;
	color:var(--white)
}

.orange-button {
	border-color:var(--orange);
	background-color:var(--orange);
}
.bx-no-touch .orange-button:not([disabled]):hover {
	border-color:var(--dark-orange);
	background-color:var(--dark-orange);
}

.light-button {
	border-color:transparent;
	background-color:var(--white-10);
	color:var(--white);
}
.bx-no-touch .light-button:not([disabled]):hover {
	background-color:var(--white-20);
}

.light-border-button {
	border-color:var(--white-10);
	background-color:transparent;
	color:var(--white);
}
.bx-no-touch .light-border-button:not([disabled]):hover {
	border-color:transparent;
	background-color:var(--white-10);
}

.blue-border-button {
	border-color:var(--blue);
	background-color:transparent;
	color:var(--blue);
}
.bx-no-touch .blue-border-button:not([disabled]):hover {
	background-color:var(--blue);
	color:var(--white);
}

.button[disabled] {
	border-color:transparent;
	background-color:var(--gray);
	color:var(--white-50);
	cursor:default;
}
.light-button[disabled] {
	background-color:var(--white-10);
}
.light-border-button[disabled] {
	border-color:var(--white-10);
	background-color:transparent;
}
.blue-border-button[disabled] {
	border-color:var(--gray);
	background-color:transparent;
	color:var(--gray);
}

.big-button {
	height:60px;
	font-size:20px;
	line-height:58px;
}

.button.with-spinner.sending,
.sending .with-spinner {
	background-color:transparent !important;
	color:transparent !important;
	cursor:default;
	pointer-events:none;
}
.button.with-spinner .send-form-spinner {
	position:absolute;
	top:50%;
	left:50%;
	opacity:0;
	pointer-events:none;
	transform:translate(-50%, -50%);
	transition:opacity .2s;
}
.sending .send-form-spinner {
	opacity:1 !important;
}
/* END buttons */

/* custom checkbox */
.custom-checkbox-label {
	display:block;
}
.custom-checkbox-label input {
	display:none !important;
}
.custom-checkbox-text {
	display:block;
	padding-left:28px;
	min-height:18px;
	font-size:13px;
	font-weight:500;
	line-height:18px;
	position:relative;
	cursor:pointer;
}
.custom-checkbox-text::before {
	content:'';
	width:18px;
	height:18px;
	border:1px solid transparent;
	border-radius:3px;
	background-color:var(--white);
	position:absolute;
	top:0;
	left:0;
	transition:border-color .2s;
}
.custom-checkbox-label.error-field .custom-checkbox-text::before {
	border-color:var(--red) !important;
}
.custom-checkbox-text::after {
	content:'';
	width:13px;
	height:10px;
	background-image:url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 10" width="13" height="10"><path d="M1.1875 5.35417L4.375 8.54167L11.4583 0.75" fill="none" stroke="%232282ff" stroke-width="1.5"/></svg>');
	position:absolute;
	top:4px;
	left:3px;
	opacity:0;
	transition:opacity .2s;
}
.custom-checkbox-label input:checked + .custom-checkbox-text::after {
	opacity:1;
}
.custom-checkbox-label.disabled input:checked + .custom-checkbox-text::after {
	opacity:.2;
}
/* END custom checkbox */

/* fields with placeholder */
.with-placeholder-wrapper {
	position:relative;
}
.with-placeholder-wrapper label {
	color:var(--white-50);
	position:absolute;
	top:17px;
	left:15px;
	transition:all .2s;
	pointer-events:none;
}
.with-placeholder-wrapper .with-placeholder {
	width:100%;
	margin:0 !important;
}
.with-placeholder-wrapper .with-placeholder:focus + label,
.with-placeholder-wrapper .with-placeholder:valid + label {
	font-size:12px;
	top:8px;
}
/* END fields with placeholder */

/* fancybox */
.fancybox__container {
	min-width:320px;
}
.fancybox-simple {
	padding:30px 40px;
	border-radius:20px;
}
/* END fancybox */

/* popup form */
.popup-form {
	display:none;
	width:100%;
	max-width:800px;
	border-radius:15px;
	padding:40px;
	background-color:var(--blue) !important;
	color:var(--white);
	cursor:default !important;
	transition:padding .2s;
}
.popup-form form {
	width:100%;
	margin:0 auto;
}
.popup-form .h3 {
	margin:0 0 25px;
}
.popup-form .subhead {
	margin-bottom:20px;
}
.popup-form .contact-form .send-form {
	margin:0 auto;
}
.popup-form .is-close-btn {
	width:30px !important;
	height:30px !important;
	background:none !important;
	top:20px !important;
	right:20px !important;
}
.popup-form .is-close-btn svg {
	width:20px !important;
	height:20px !important;
	stroke:var(--white-20) !important;
	stroke-width:4px !important;
}
/* END popup form */

/* contact form */
.contact-form-title {
	margin:0 0 40px;
}
.contact-form a,
.contact-form .a {
	color:var(--white);
}
.contact-form .form-input-title {
	margin:0 20px 14px;
	font-size:90%;
	font-weight:600;
}
.contact-form-content {
	display:flex;
	justify-content:space-between;
	margin-bottom:30px;
}
.contact-form-block {
	width:48%;
	position:relative;
}
.contact-form .form-item {
	width:100%;
	margin-bottom:30px;
}
.contact-form .form-item-wrapper {
	margin-bottom:30px;
}
.contact-form .with-placeholder-wrapper {
	margin-bottom:30px;
}
.contact-form .upload-file-wrapper {
	display:flex;
	flex-wrap:wrap;
	margin-bottom:16px;
}
.contact-form .upload-file input[type=file]{
	display:none;
}
.contact-form .upload-file .button {
	margin-right:16px;
	padding-left:36px;
	font-weight:400;
	position:relative;
}
.contact-form .upload-file .button .icon {
	width:10px;
	height:21px;
	fill:var(--white);
	position:absolute;
	top:50%;
	left:15px;
	transform:translateY(-50%);
}
.footer-contact-form-brief {
	display:flex;
	align-items:center;
}
.footer-contact-form-brief a {
	text-decoration:underline;
}
.contact-form .upload-file-output {
	margin-top:8px;
	overflow:hidden;
}
.contact-form .upload-file-output .upload-item {
	margin:5px 0;
	word-break:break-all;
}
.contact-form textarea.form-item {
	height:140px;
	resize:none;
}
.contact-form .send-form {
	display:block;
	width:200px;
	margin-top:25px;
	position:relative;
}
.contact-form.with-spinner .send-form .send-form-spinner {
	position:absolute;
	top:50%;
	left:50%;
	opacity:0;
	pointer-events:none;
	transform:translate(-50%, -50%);
	transition:opacity .2s;
}
.contact-form.with-spinner.sending .send-form {
	background-color:transparent !important;
	color:transparent !important;
	cursor:default;
	pointer-events:none;
}
.contact-form.with-spinner.sending .send-form .send-form-spinner {
	opacity:1;
}
/* END contact form */

/* form output */
.form-output {
	height:0;
	margin:0;
	border:1px solid transparent;
	border-radius:8px;
	padding:0 10px;
	overflow:hidden;
	font-size:15px;
	text-align:center;
	transition:all .3s;
}
.success-output,
.error-output {
	height:auto;
	margin:15px 0;
	border-color:var(--orange);
	padding:10px;
	background-color:var(--white);
	color:var(--orange);
	--fancybox-content-color:var(--orange);
}
.success-output {
	border-color:var(--success);
	color:var(--success);
	--fancybox-content-color:var(--success);
}

.error-field {
	border-color:var(--orange) !important;
}
.bx-no-touch .error-field:hover,
.error-field:focus {
	border-color:var(--orange) !important;
}
.error-field + label {
	color:var(--orange) !important;
}
/* END form output */

/* custom range */
.custom-range-input {
	appearance:none;
	width:100%;
	height:4px;
	outline:none;
	border-radius:2px;
	padding:0;
	background:var(--white-10);
	cursor:pointer;
}
.custom-range-input::-webkit-slider-thumb {
	appearance:none;
	height:6px;
	width:6px;
	background-color:var(--white);
	border-radius:50%;
	border:none;
	transition:.2s ease-in-out;
}
.custom-range-input::-moz-range-thumb {
	height:6px;
	width:6px;
	background-color:var(--blue);
	border:3px solid var(--white);
	border-radius:50%;
	transition:.2s ease-in-out;
}
.bx-no-touch .custom-range-input::-webkit-slider-thumb:hover {
	box-shadow:0 0 0 8px var(--white-20);
}
.custom-range-input:active::-webkit-slider-thumb {
	box-shadow:0 0 0 8px var(--white-20);
}
.custom-range-input:focus::-webkit-slider-thumb {
	box-shadow:0 0 0 8px var(--white-10);
}
.bx-no-touch .custom-range-input::-moz-range-thumb:hover {
	box-shadow:0 0 0 8px var(--white-20);
}
.custom-range-input:active::-moz-range-thumb {
	box-shadow:0 0 0 8px var(--white-20);
}
.custom-range-input:focus::-moz-range-thumb {
	box-shadow:0 0 0 8px var(--white-10);
}
/* END custom range */

/* multilevel list OL */
.multilevel-list,
.multilevel-list ol {
	list-style:none;
	counter-reset:li;
}
.multilevel-list > li:before,
.multilevel-list ol > li:before {
	counter-increment:li;
	content:counters(li, '.') '. ';
	font-weight:600;
}
.multilevel-list ul > li {
	list-style-type:disc;
}
.multilevel-list ul ul > li {
	list-style-type:square;
}
.multilevel-list ul ul ul > li {
	list-style-type:circle;
}
/* END multilevel list OL */

/* table */
/* .table {
	width:100%;
	border:none;
	border-spacing:2px;
}
.table th,
.table td {
	padding:9px 14px;
	border:1px solid var(--overlay-bg);
	text-align:center;
	vertical-align:middle;
}
.table th {
	border-color:var(--color);
	background-color:var(--color);
	color:var(--white);
	font-size:14px;
	font-weight:600;
}
.table tr th:first-child {
	border-radius:15px 0 0 0;
}
.table tr th:last-child {
	border-radius:0 15px 0 0;
}
.table tr:nth-child(odd) td {
	border-color:var(--gray-bg);
	background-color:var(--gray-bg);
} */
/* END table */

/* wrapper for horizontal scrolling of tables */
.doubleScroll-scroll-wrapper {
	margin:5px 0;
}
h1 + .doubleScroll-scroll-wrapper,
.h1 + .doubleScroll-scroll-wrapper,
h2 + .doubleScroll-scroll-wrapper,
.h2 + .doubleScroll-scroll-wrapper,
h3 + .doubleScroll-scroll-wrapper,
.h3 + .doubleScroll-scroll-wrapper,
h4 + .doubleScroll-scroll-wrapper,
.h4 + .doubleScroll-scroll-wrapper,
h5 + .doubleScroll-scroll-wrapper,
.h5 + .doubleScroll-scroll-wrapper,
h6 + .doubleScroll-scroll-wrapper,
.h6 + .doubleScroll-scroll-wrapper {
	margin-top:-15px;
}
.table-wrapper {
	overflow:auto;
}
.doubleScroll-scroll-wrapper + .table-wrapper {
	margin-top:0;
}
.table-wrapper::-webkit-scrollbar-track,
.doubleScroll-scroll-wrapper::-webkit-scrollbar-track {
	border:2px solid white;
	background-color:#ccc;
}
.table-wrapper::-webkit-scrollbar,
.doubleScroll-scroll-wrapper::-webkit-scrollbar {
	-webkit-appearance:none;
}
.table-wrapper::-webkit-scrollbar:horizontal,
.doubleScroll-scroll-wrapper::-webkit-scrollbar:horizontal {
	height:13px;
}
.table-wrapper::-webkit-scrollbar-thumb,
.doubleScroll-scroll-wrapper::-webkit-scrollbar-thumb {
	border-radius:6px;
	border:2px solid white;
	background-color:rgba(0, 0, 0, .5);
}
/* END wrapper for horizontal scrolling of tables */

/* tabs */
/* .tabs-caption {
	display:flex;
	flex-wrap:wrap;
	border-bottom:1px solid var(--dark);
	margin-bottom:20px;
}
.tabs-caption > * {
	max-width:calc(100% - 3px);
	margin:0 20px 20px 0;
	border:1px solid var(--dark);
	border-radius:8px;
	padding:11px 14px 12px;
	font-family:var(--h-font);
	font-size:18px;
	font-weight:600;
	cursor:pointer;
	transition:all .2s;
}
.tabs-caption > :last-child {
	margin-right:0;
}
.bx-no-touch .tabs-caption :hover {
	color:var(--orange);
}
.tabs-caption .active {
	color:var(--orange);
	cursor:default;
}
.tabs-content {
	display:none;
}
.tabs-content.active {
	display:block;
} */
/* END tabs */

/* file link */
.file-link {
	display:inline-flex;
	align-items:center;
}
.file-link-image {
	width:40px;
	margin-right:12px;
}
.file-link-image .icon {
	display:block;
	width:40px;
	height:40px;
	/* color:var(--dark); */
}
.file-link-name {
	font-size:15px;
}
.file-link-description {
	/* color:var(--dark-gray-color); */
	font-size:80%;
	white-space:nowrap;
}
/* END file link */

/* check list */
ul.check-list {
	list-style:none !important;
	margin:40px 0 !important;
	padding:0 !important;
}
ul.check-list li {
	margin:24px 0 !important;
	padding:0 0 0 32px !important;
	position:relative !important;
}
ul.check-list li::before {
	content:'' !important;
	width:22px !important;
	height:16px !important;
	border-radius:0 !important;
	background:none !important;
	background-image:url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="27" height="20" viewBox="0 0 1.35 0.99" fill="%23f37520" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"><path d="M0.5 0.66c-0.01,-0.01 -0.03,-0.03 -0.04,-0.05 -0.04,-0.04 -0.22,-0.23 -0.26,-0.25 -0.06,-0.03 -0.15,-0.01 -0.19,0.06 0,0.02 -0.01,0.04 -0.01,0.05l0 0.02c0,0.02 0.01,0.04 0.02,0.06 0.02,0.04 0.26,0.27 0.29,0.3 0.03,0.03 0.1,0.11 0.13,0.12 0.05,0.02 0.1,0.02 0.14,0 0.01,-0.02 0.02,-0.03 0.04,-0.04l0.67 -0.68c0.04,-0.04 0.06,-0.06 0.06,-0.12 0,-0.09 -0.1,-0.15 -0.17,-0.12 -0.01,0 -0.02,0 -0.03,0.01 -0.01,0 -0.01,0.01 -0.02,0.01 0,0.01 -0.01,0.01 -0.01,0.01 -0.04,0.04 -0.07,0.07 -0.1,0.1 -0.04,0.04 -0.5,0.51 -0.52,0.52z"/></svg>') !important;
	background-size:contain !important;
	background-repeat:no-repeat !important;
	position:absolute !important;
	top:0 !important;
	left:0 !important;
}
/* END check list */

/*** structure ***/

.main-wrapper {
	display:flex;
	flex-direction:column;
	min-height:100vh;
	position:relative;
}

.main-header {
	width:100%;
	height:160px;
	position:absolute;
	z-index:10;
}

.top-header {
	position:relative;
	z-index:11;
}
.top-header-content {
	display:flex;
	justify-content:space-between;
	align-items:center;
	height:80px;
	margin-bottom:16px;
	padding-top:13px;
	transition:height .3s, opacity .3s;
}
.top-header-content-left,
.top-header-content-right {
	display:flex;
	align-items:center;
	width:calc(50% - 50px);
}
.top-header-content-right {
	justify-content:right;
}
.top-header a,
.top-header .a {
	text-decoration:none !important;
}

/* header social icons */
.header-social-icons {
	display:flex;
	gap:15px;
	margin-right:40px;
}
.header-social-icons a .icon {
	width:32px;
	height:32px;
	border-radius:50%;
	fill:var(--blue);
	color:var(--bg1);
}
.index .header-social-icons a .icon {
	fill:var(--white);
	color:var(--white-10);
}
.bx-no-touch .header-social-icons a:hover .icon {
	fill:var(--white);
	color:var(--blue);
}
.bx-no-touch .index .header-social-icons a:hover .icon {
	fill:var(--blue);
	color:var(--white-50);
}
/* END header social icons */

/* top menu */
.top-menu {
	list-style:none;
	flex:1;
	display:flex;
	margin:0;
	padding:0;
}
.top-menu a {
	display:block;
	color:var(--dark);
}
.bx-no-touch .top-menu a:hover,
.top-menu a.selected {
	color:var(--blue);
}
.bx-no-touch .top-menu a:hover .icon,
.top-menu a.selected .icon {
	fill:var(--blue);
}
.index .top-menu a {
	color:var(--white);
}
.bx-no-touch .top-menu .top-menu-item-level-1:hover > a {
	color:var(--blue);
}
.top-menu .top-menu-item-level-1 > a .icon {
	float:right;
	width:7px;
	height:5px;
	margin:12px 0 0 5px;
	fill:var(--dark);
}
.index .top-menu .top-menu-item-level-1 > a .icon {
	fill:var(--white);
}
.bx-no-touch .top-menu .top-menu-item-level-1:hover > a .icon {
	fill:var(--blue);
	transform:scaleY(-1);
}
.top-menu li {
	position:relative;
}
.top-menu-item-level-1 {
	margin:0 37px 0 0;
	transition:margin 0.2s;
}
.top-menu .top-menu-item-level-1:last-child {
	margin-right:0;
}
.top-menu-level-2 {
	list-style:none;
	margin:0;
	padding:15px 0 0;
	position:absolute;
	top:100%;
	left:-30px;
	z-index:1;
	opacity:0;
	pointer-events:none;
	transition:opacity .2s;
}
.top-menu-level-2::before {
	content:'';
	box-shadow:0 6px 16px 0 var(--theme-shadow);
	border-radius:12px;
	background:var(--bg1);
	position:absolute;
	inset:15px 0 0;
	z-index:0;
}
.bx-no-touch .top-menu-item-has-children:hover .top-menu-level-2 {
	opacity:1;
	pointer-events:auto;
}
.top-menu-item-level-2 li {
	z-index:1;
}
.top-menu-item-level-2 > a {
	padding:8px 30px;
	white-space:nowrap;
}
.top-menu-level-2 li:first-of-type a {
	padding-top:30px;
}
.top-menu-level-2 li:last-of-type a {
	padding-bottom:30px;
}
/* END top menu */

/* header logo */
.header-logo {
	width:92px;
	height:67px;
	position:relative;
	transition:all .2s;
}
.header-logo .icon {
	width:100%;
	height:100%;
	fill:var(--blue);
	color:var(--orange);
	position:absolute;
}
.index .header-logo .icon {
	fill:var(--white);
	color:var(--white);
}
/* END header logo */

/* social icons */
.social-icons {
	display:flex;
	gap:15px;
	align-items:center;
}
.social-icons .icon {
	display:block;
	width:32px;
	height:32px;
	fill:var(--blue);
	color:var(--bg1);
}
.bx-no-touch .social-icons .icon:hover {
	fill:var(--bg1);
	color:var(--blue);
}
/* END social icons */

.header-phone-wrapper {
	position:relative;
}
.header-phone {
	display:block;
	color:var(--dark);
	position:relative;
	z-index:1;
}
.bx-no-touch .header-phone:hover {
	color:var(--blue);
}
.header-phone .icon {
	float:right;
	width:7px;
	height:5px;
	margin:10px 0 0 4px;
	fill:var(--dark);
}
.bx-touch .header-phone .icon {
	display:none;
}
.bx-no-touch .header-phone:hover .icon {
	fill:var(--blue);
}
.bx-no-touch .header-phone-wrapper:hover .header-phone .icon {
	transform:scaleY(-1);
}
.header-phone-info {
	display:block;
	letter-spacing:0.2px;
	white-space:nowrap;
}
.header-phone-content {
	display:flex;
	flex-direction:column;
	gap:20px;
	padding:45px 30px 30px;
	position:absolute;
	inset:100% -30px auto;
	z-index:1;
	opacity:0;
	pointer-events:none;
	transition:opacity .2s;
}
.header-phone-content::before {
	content:'';
	box-shadow:0 6px 16px 0 var(--theme-shadow);
	border-radius:12px;
	background:var(--bg1);
	position:absolute;
	inset:15px 0 0;
	z-index:0;
}
.bx-no-touch .header-phone-wrapper:hover .header-phone-content {
	opacity:1;
	pointer-events:auto;
}
.header-phone-content > * {
	position:relative;
	z-index:1;
}
.header-phone-content .social-icons a {
	border:1px solid var(--blue);
	border-radius:50%;
}
.header-phone-content-item {
	display:flex;
	flex-direction:column;
	gap:8px;
}
.header-phone-content-item-title {
	display:flex;
	align-items:center;
	gap:12px;
}
.header-phone-content-item-title .icon {
	width:16px;
	height:16px;
	fill:var(--gray);
}
.bx-no-touch .header-phone-content-item .header-email:hover {
	color:var(--blue);
}

.header-callback,
.header-write-us {
	width:180px;
	padding:0 8px;
}
.header-callback {
	margin-left:10px;
}
.header-write-us {
	margin-left:32px;
}
.header-callback::after {
	content:'Заказ звонка';
}
.header-write-us::after {
	content:'Написать нам';
}

.bottom-header {
	min-width:320px;
}
.header-fix .bottom-header {
	position:fixed;
	inset:16px 0 auto;
	z-index:99;
}
.bottom-header .wrapper {
	position:relative;
}

/* header menu */
.header-menu-wrapper {
	float:right;
	width:100%;
	height:64px;
	/* overflow-x:hidden; */
	border:1px solid transparent;
	border-radius:10px;
	background-color:var(--blue);
	backdrop-filter:blur(8px);
	transition:width .2s, border-color .2s, background-color .2s;
}
.index .header-menu-wrapper {
	background-color:var(--white-10);
}
.header-fix .header-menu-wrapper {
	width:65px;
	border-color:var(--blue-20);
	background-color:var(--white-50);
}
.header-menu {
	list-style:none;
	display:flex;
	justify-content:space-around;
	height:62px;
	padding:0;
}
.header-fix .header-menu {
	display:none;
}
.header-menu li {
	position:relative;
}
.header-menu-item-level-1 {
	display:flex;
}
.header-menu .header-menu-item:last-child {
	margin-right:0;
}
.header-menu a .icon {
	display:inline-block;
	width:9px;
	height:7px;
	margin:2px 0 0 6px;
	fill:var(--white);
	vertical-align:middle;
}
.bx-no-touch .header-menu-item-level-1:hover .icon {
	transform:scaleY(-1);
}
.header-menu-item-level-1 > a {
	display:flex;
	align-items:center;
	padding:0 20px;
	color:var(--white);
	white-space:nowrap;
}
.header-menu-level-2 {
	list-style:none;
	margin:0;
	padding:15px 0 0;
	position:absolute;
	top:100%;
	left:-10px;
	z-index:1;
	opacity:0;
	pointer-events:none;
	transition:opacity .2s;
}
.header-menu > li:last-of-type .header-menu-level-2 {
	right:-10px;
	left:auto;
}
.header-menu-level-2::before {
	content:'';
	box-shadow:0 6px 16px 0 var(--theme-shadow);
	border-radius:12px;
	background:var(--bg1);
	position:absolute;
	inset:15px 0 0;
	z-index:0;
}
.bx-no-touch .header-menu-item-has-children:hover .header-menu-level-2 {
	opacity:1;
	pointer-events:auto;
}
.header-menu-item-level-2 {
	z-index:1;
}
.header-menu-item-level-2 a {
	display:block;
	padding:8px 30px;
	white-space:nowrap;
}
.header-menu-level-2 li:first-of-type a {
	padding-top:30px;
}
.header-menu-level-2 li:last-of-type a {
	padding-bottom:30px;
}
.bx-no-touch .header-menu-level-2 a:hover,
.header-menu-level-2 a.selected {
	color:var(--blue);
}
/* END header menu */

/* header menu button */
.header-menu-button {
	display:none;
	width:29px;
	height:28px;
	border:none !important;
	background:none !important;
	position:absolute;
	top:17px;
	right:17px;
}
.header-fix .header-menu-button {
	display:block;
}
.header-menu-button div,
.header-menu-button div::before,
.header-menu-button div::after {
	width:29px;
	height:4px;
	border-radius:2px;
	background-color:var(--dark);
	position:absolute;
	left:0;
	transition:all .2s;
}
.header-menu-button div {
	top:12px;
	transition:all .2s;
}
.header-menu-button div::before {
	content:'';
	top:-9px;
}
.header-menu-button div::after {
	content:'';
	top:9px;
}
.bx-no-touch .header-menu-button:hover div,
.bx-no-touch .header-menu-button:hover div::before,
.bx-no-touch .header-menu-button:hover div::after {
	background-color:var(--orange);
}
/* END header menu button */

/* mobile menu */
/* .mobile-menu-wrapper {
	min-width:320px;
	background-color:var(--white);
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:9;
	opacity:0;
	pointer-events:none;
	transition:opacity .3s;
}
.mobile-menu-content {
	overflow-y:auto;
	position:absolute;
	top:80px;
	right:0;
	bottom:0;
	left:0;
}

.mobile-menu-content .catalog-section-menu {
	margin:30px 0 16px;
	padding-top:16px;
}
.mobile-menu-content .catalog-section-menu + .catalog-section-menu {
	margin:16px 0 30px;
	border-bottom:1px solid var(--dark);
	padding-bottom:16px;
}
.mobile-menu-content .catalog-section-menu-item > a {
	border-top:none;
	font-size:16px;
}
.bx-no-touch .mobile-menu-content .catalog-section-menu-item a:hover {
	color:var(--orange) !important;
}
.mobile-menu .catalog-section-menu-item > a > .icon {
	display:inline-block;
	width:18px;
	height:18px;
	margin-right:5px;
	fill:var(--color);
}
.bx-no-touch .mobile-menu .catalog-section-menu-item > a:hover > .icon {
	fill:var(--orange) !important;
}
.mobile-menu .icon-percent-512-512 > a {
	color:var(--theme-darkest-color);
	font-weight:600;
}
.mobile-menu .icon-percent-512-512 > a > .icon {
	fill:var(--theme-darkest-color);
}
.mobile-menu .icon-lighting-512-512 > a {
	color:var(--dark-orange-color);
}
.mobile-menu .icon-lighting-512-512 > a > .icon {
	fill:var(--dark-orange-color);
	margin-right:2px;
}
.mobile-menu .catalog-section-menu-subsections a {
	font-size:14px;
	font-weight:400;
} */
/* END mobile menu */

/* breadcrumbs */
.breadcrumbs {
	display:flex;
	flex-wrap:wrap;
	color:var(--dark);
}
.breadcrumbs-separator {
	margin:0 20px;
}
.breadcrumbs-item {
	display:flex;
}
.bx-no-touch .breadcrumbs-item a:hover {
	color:var(--orange);
}
.breadcrumbs-current-item {
	color:var(--blue);
}
/* END breadcrumbs */

.main-content {
	flex-grow:1;
}
.inner .main-content {
	margin-top:210px;
}

/* .main-content ul,
.fancybox__content ul {
	margin:30px 0;
	padding:0;
}
.main-content ul li,
.fancybox__content ul li {
	list-style:none;
	margin:10px 0 0;
	padding:0 0 0 19px;
	position:relative;
}
.main-content ul li::before,
.fancybox__content ul li::before {
	content:'';
	width:5px;
	height:5px;
	border-radius:50%;
	background-color:var(--dark);
	position:absolute;
	top:7px;
	left:6px;
}
.main-content ul li ul li::before,
.fancybox__content ul li ul li::before {
	border:1px solid var(--dark);
	border-radius:50%;
	background:none;
}

.main-content ol {
	padding-left:18px;
} */

/* footer form */
.footer-form-wrapper {
	border-radius:50px 50px 0 0;
	padding:120px 0 170px;
	background-color:var(--blue);
	color:var(--white);
	position:relative;
	z-index:2;
}
.footer-form-wrapper::before,
.footer-form-wrapper::after {
	content:'';
	background:url(/images/svg/custom-bg-2.svg) no-repeat;
	background-position:left center;
	position:absolute;
	inset:0;
	z-index:0;
}
.footer-form-wrapper::after {
	background:url(/images/svg/custom-bg-3.svg) no-repeat;
	background-position:right top;
}
.footer-form-left {
	float:left;
	width:650px;
	position:relative;
	z-index:1;
}
.footer-form-left .h2 {
	margin:0 0 26px;
	color:var(--white);
}
.footer-form-left .subhead {
	max-width:500px;
}
.footer-form {
	float:right;
	width:45%;
	position:relative;
	z-index:1;
}
.footer-form .with-placeholder-wrapper {
	width:100%;
	margin-bottom:0;
	position:relative;
}
.footer-form .with-placeholder-wrapper {
	margin-bottom:16px;
}
.footer-form .custom-range-input {
	width:auto;
	position:absolute;
	inset:auto 15px 0;
}
/* END footer form */

footer {
	margin-top:-50px;
	border-radius:50px 50px 0 0;
	background-color:var(--white);
	color:var(--dark);
	font-weight:500;
	position:relative;
	z-index:3;
}
footer a {
	color:var(--dark);
}
.bx-no-touch footer a:hover {
	color:var(--orange);
}
.footer-top {
	display:flex;
	justify-content:space-between;
	align-items:start;
	margin:105px 0 90px;
	transition:margin .2s;
}
.footer-logo .icon {
	display:block;
	width:340px;
	height:110px;
	fill:var(--blue);
	color:var(--orange);
}
.footer-partners-wrapper .h5 {
	width:100%;
	margin:23px 0 17px;
}
.footer-partners {
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:425px;
}
.footer-partners .icon {
	width:26%;
	height:40px;
	fill:var(--blue-20);
	color:var(--blue-20);
	position:relative;
}
.footer-partners .logo-b24 {
	top:2px;
}
.footer-partners .logo-aspro {
	top:-2px;
}
.bx-no-touch .footer-partners .logo-bitrix:hover {
	fill:#231f20;
	color:#d91935;
}
.bx-no-touch .footer-partners .logo-b24:hover {
	fill:#005893;
	color:#0bbbef;
}
.bx-no-touch .footer-partners .logo-aspro:hover {
	fill:#242426;
}
.footer-buttons {
	display:flex;
	gap:15px;
}
.footer-buttons .button {
	width:200px;
}
.footer-callback::before {
	content:'Заказ звонка';
}
.footer-write-us::before {
	content:'Написать нам';
}

.footer-top-contacts .social-icons {
	justify-content:right;
	margin-top:21px;
}

/* footer menu */
.footer-menu {
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	grid-gap:50px;
}
.footer-menu-block {
	border-left:1px solid var(--blue-20);
	padding-left:30px;
}
.footer-menu .h5 {
	margin:0 0 20px;
}
.footer-menu-links {
	display:flex;
	flex-direction:column;
	gap:15px;
}
.footer-menu .footer-menu-block:nth-child(7) {
	grid-column:span 2;
}
.footer-menu .footer-menu-block:nth-child(7) .footer-menu-links-wrapper {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.footer-menu .footer-menu-block:nth-child(7) .footer-menu-links {
	width:48%;
}
/* END footer menu */

.footer-contacts-title {
	height:45px;
	margin:80px 0 0;
	position:relative;
}
.footer-contacts-title::before {
	content:'';
	height:1px;
	background-color:var(--blue-20);
	position:absolute;
	inset:50% 0 auto;
	z-index:0;
}
.footer-contacts-title::after {
	content:'Контакты';
	width:20%;
	display:inline-block;
	background-color:var(--white);
	line-height:45px;
	position:relative;
	z-index:1;
}
.footer-contacts {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding:50px 0;
	color:var(--dark);
}
.footer-contacts-item {
	display:flex;
	flex-direction:column;
	gap:8px;
	padding-left:65px;
	position:relative;
}
.footer-contacts-item .icon {
	width:40px;
	height:40px;
	fill:var(--blue-20);
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}

.footer-bottom {
	display:flex;
	flex-wrap:wrap;
	gap:28px;
	padding:30px 0;
	border-top:1px solid var(--blue-20);
	color:var(--light-blue);
}
.footer-bottom a {
	color:var(--light-blue);
}

/* cookie banner */
.cookie-banner {
	display:none;
	min-width:300px;
	border:1px solid var(--blue-20);
	border-radius:16px;
	padding:16px;
	background-color:var(--white-40);
	-webkit-backdrop-filter:blur(10px);
	backdrop-filter:blur(10px);
	font-size:13px;
	text-align:center;
	position:fixed;
	bottom:10px;
	left:50%;
	z-index:10000;
	transform:translateX(-50%);
}
.cookie-banner a,
.cookie-banner span {
	font-weight:600;
}
.cookie-banner .button {
	display:block;
	width:136px;
	height:30px;
	margin:16px auto 0;
	border-radius:6px;
	padding:0;
	font-size:14px;
	line-height:28px;
	cursor:pointer;
}
/* END cookie banner */


/*** CUSTOM ***/


/* index page */
.index-title {
	margin:0 0 50px;
	text-align:center;
}
/* END index page */

/* index header */
.index-header {
	height:850px;
	background:url(/images/index/index-header-bg-compressed.png) no-repeat center bottom var(--darkest-blue);
	background-size:contain;
	position:relative;
}
.webp .index-header {
	background-image:url(/images/index/index-header-bg.png_1740855633.webp);
}
.index-header-top-bg {
	width:650px;
	height:270px;
	background:url(/images/index/index-header-top-bg.png) no-repeat;
	position:absolute;
	top:0;
	left:0;
}
.webp .index-header-top-bg {
	background-image:url(/images/index/index-header-top-bg.png_1749900892.webp);
}
.index-header-content {
	display:flex;
	align-items:bottom;
	padding-top:290px;
	color:var(--white);
}
.index-header-left-title {
	font-family:var(--h-font);
	font-size:70px;
	white-space:nowrap;
}
.index-header-left-content .button {
	margin-top:35px;
}
.bx-no-touch .index-header-left-content .button:hover {
	border-color:var(--blue);
	background-color:var(--blue);
	color:var(--white);
}
.index-header-right-content {
	flex:1;
	display:flex;
	flex-wrap:wrap;
	justify-content:right;
}
.index-header-right-content-item {
	width:100%;
	margin-top:8px;
	padding:30px 40px;
	position:relative;
}
.index-header-right-content-item::before {
	content:'';
	border-radius:20px;
	padding:1px;
	background:var(--grad-50-linear);
	mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite:exclude;
	position:absolute;
	inset:0;
	z-index:1;
}
.index-header-right-content-item::after {
	content:'';
	border-radius:20px;
	background-color:var(--white-10);
	backdrop-filter:blur(25px);
	position:absolute;
	inset:1px;
	z-index:0;
}
.index-header-right-content-item-1 {
	max-width:570px;
}
.index-header-right-content-item-2 {
	max-width:350px;
}
.index-header-right-content-item-2::after {
	background-color:var(--blue-20);
}
.index-header-right-content-item-icon {
	display:inline-block;
	margin-left:5px;
	vertical-align:text-top;
}
.index-header-right-content-item-text {
	position:relative;
	z-index:2;
}
.index-header-right-content-item-sign {
	margin-top:10px;
}

.index-header-bottom-bg {
	height:478px;
	background:url(/images/index/index-header-bg-topping.png) repeat-x;
	position:absolute;
	right:0;
	bottom:-237px;
	left:0;
}
/* END index header */

/* index services */
.index-services-top-bg {
	height:237px;
	background-color:var(--blue);
	position:relative;
	z-index:-1;
}
.index-services-wrapper {
	margin:-237px 0 100px;
	position:relative;
	z-index:1;
}
.index-services-wrapper::before {
	content:'';
	background:url(/images/svg/custom-bg-1.svg) no-repeat -50px -220px;
	background-size:45%;
	position:absolute;
	inset:0;
	z-index:1;
}
.index-services-wrapper::after {
	content:'';
	border-radius:0 0 50px 50px;
	background-color:var(--blue);
	position:absolute;
	inset:237px 0 0;
	z-index:0;
}
.index-services {
	display:flex;
	color:var(--white);
	position:relative;
	top:-70px;
	z-index:1;
}
.index-services-content-wrapper {
	flex:1;
}
.index-services-content {
	position:sticky;
	top:50px;
}
.index-services-content-desctiption {
	display:none;
	margin-top:40px;
}
.index-services-content-desctiption.active {
	display:block;
}
.index-services-list {
	display:flex;
	flex-direction:column;
	gap:10px;
	width:59.5%;
	margin-left:11.5%;
}
.index-services-list-item {
	border-radius:20px;
	padding:40px 40px 36px;
	background-color:var(--white-0);
	color:var(--white);
	position:relative;
	transition:background-color .2s;
}
.bx-no-touch .index-services-list-item:hover,
.index-services-list-item.active {
	background-color:var(--white-10);
}
.index-services-list-item > * {
	position:relative;
	z-index:1;
}
.index-services-list-item::after,
.index-services-list-item::before {
	content:'';
	border-radius:20px;
	padding:1px;
	background:var(--grad-linear-white);
	mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite:exclude;
	position:absolute;
	inset:0;
	z-index:1;
	transition:opacity .2s;
}
.index-services-list-item::after {
	background:var(--grad-50-linear);
	opacity:0;
}
.bx-no-touch .index-services-list-item:hover::before,
.index-services-list-item.active::before {
	opacity:0;
}
.bx-no-touch .index-services-list-item:hover::after,
.index-services-list-item.active::after {
	opacity:1;
}
.index-services-list-item-icon {
	position:absolute;
	top:45px;
	right:32px;
}
.index-services-list-item .icon {
	width:32px;
	height:32px;
	fill:none;
	color:var(--white);
	position:absolute;
	top:46px;
	right:32px;
}
.index-services-list-item-title {
	margin:0 80px 20px 0;
}
.index-services-list-item-desctiption {
	max-width:660px;
	min-height:2lh;
}
/* END index services */

/* index about */
.index-about-wrapper {
	margin:190px 0 180px;
}
.index-about {
	display:grid;
	grid-template-columns:repeat(5, 1fr);
	grid-template-rows:1fr 1fr 1fr 1fr 1fr;
	grid-gap:20px;
}
.index-about-item {
	grid-row:span 2;
	display:flex;
}
.index-about-item.type-2 {
	grid-row:span 3;
	grid-column:span 2;
}
.index-about-item.type-2 .index-about-item-content {
	display:flex;
	flex-direction:column;
}
.index-about-item.type-2 .index-about-item-content-top {
	flex:1;
	border-radius:20px;
	padding:40px;
	background-color:var(--bg1);
}
.index-about-item.type-2 .index-about-item-content-top div + div {
	margin:35px 0 0;
}
.index-about-item.type-2 .button {
	margin-top:10px;
}
.index-about-item.type-3 {
	grid-row:span 3;
	grid-column:span 3;
	border-radius:20px;
	background:url(/images/index/index-about-bg-compressed.png) no-repeat center bottom var(--blue);
	background-blend-mode:multiply;
	background-size:cover;
}
.webp .index-about-item.type-3 {
	background-image:url(/images/index/index-about-bg.png_1750276885.webp);
}
.index-about-item.type-3 .index-about-item-content {
	width:100%;
	color:var(--white);
}
.index-about-item.type-3 .index-about-item-content .h3 {
	max-width:500px;
	margin:60px;
}
.index-about-item.type-1 {
	border-radius:20px;
	padding-top:100%;
	background-color:var(--bg1);
	position:relative;
}
.index-about-item.type-1 .index-about-item-content {
	display:flex;
	flex-direction:column;
	justify-content:end;
	position:absolute;
	inset:40px 30px;
	z-index:1;
}
.index-about-item.type-blue,
.index-about-item.type-orange {
	overflow:hidden;
	background-color:var(--blue);
	color:var(--white);
	position:relative;
}
.index-about-item.type-orange {
	background-color:var(--orange);
}
.index-about-item.type-blue .icon {
	width:134%;
	height:134%;
	fill:var(--white-10);
	position:absolute;
	top:-22%;
	left:-26%;
	z-index:0;
	transform:rotate(180deg);
}
.index-about-item.type-orange .icon {
	width:180%;
	height:180%;
	fill:var(--white-10);
	position:absolute;
	top:-15%;
	right:-10%;
	z-index:0;
	transform:rotate(170deg) scale(1, -1);
}
.index-about-item-icon {
	width:76px;
	height:76px;
	margin-bottom:20px;
}
/* END index about */

/* index clients */
.index-clients-wrapper {
	margin:180px 0 0;
	border-radius:50px;
	overflow:hidden;
	position:relative;
	z-index:1;
}
.index-clients-wrapper::before {
	content:'';
	background:url(/images/svg/custom-bg-1.svg) no-repeat -50px center var(--blue);
	background-size:45%;
	position:absolute;
	inset:0;
	z-index:1;
}
.index-clients {
	display:grid;
	grid-template-columns:repeat(5, 1fr);
	grid-template-rows:1fr 1fr;
	grid-gap:20px;
	margin:150px 0 120px;
	color:var(--white);
	position:relative;
	z-index:2;
}
.index-clients-title {
	grid-column:span 2;
	position:relative;
}
.index-clients-title .h2 {
	margin:0;
	color:var(--white);
	position:absolute;
	bottom:0;
	left:0;
}
.index-clients-item {
	display:flex;
	border-radius:10px;
	padding:30px;
	background-color:var(--white-20);
	transition:background-color .2s;
}
.bx-no-touch .index-clients-item:hover {
	background-color:var(--white);
}
.index-clients-item .icon {
	width:100%;
	height:100%;
	max-height:111px;
	fill:var(--white);
	color:var(--white-50);
}
.bx-no-touch .index-clients-item:hover .client-keromag {
	fill:#000;
	color:#fd8601;
}
.bx-no-touch .index-clients-item:hover .client-amedia {
	fill:#1a1a1a;
	color:#bb8b10;
}
.bx-no-touch .index-clients-item:hover .client-bals {
	fill:#0095d8;
	color:#e30016;
}
.bx-no-touch .index-clients-item:hover .client-publicista {
	fill:#000;
	color:#3bbaaf;
}
.bx-no-touch .index-clients-item:hover .client-rkb {
	fill:#052f88;
	color:#10409d;
}
.bx-no-touch .index-clients-item .client-cvetofor {
	--cvetofor-1:var(--white);
	--cvetofor-2:var(--white);
}
.bx-no-touch .index-clients-item:hover .client-cvetofor {
	fill:#b29a31;
	color:#b4c736;
	--cvetofor-1:#e54270;
	--cvetofor-2:#f1bc2b;
}
.bx-no-touch .index-clients-item .client-turbosport {
	--turbosport:var(--white-50);
}
.bx-no-touch .index-clients-item:hover .client-turbosport {
	fill:#5da4de;
	color:#bbdefa;
	--turbosport:#d6d6d6;
}
.bx-no-touch .index-clients-item .client-aspectum {
	color:var(--white);
	--aspectum:var(--white);
}
.bx-no-touch .index-clients-item:hover .client-aspectum {
	fill:#333333;
	color:#002d73;
	--aspectum:#14a0e6;
}
/* END index services */

/* index portfolio */
.index-portfolio-wrapper {
	margin-top:-50px;
	background:var(--bg1);
	border-radius:0 0 50px 50px;
	position:relative;
	z-index:0;
}
.index-portfolio {
	padding:180px 0 120px;
	/* display:grid;
	grid-template-columns:repeat(5, 1fr);
	grid-template-rows:1fr 1fr;
	grid-gap:20px;
	margin:120px 0;
	color:var(--white);
	position:relative;
	z-index:2; */
}
/* END index portfolio */

/* inner page intro-1 */
.intro-1-wrapper {
	border-radius:0 0 50px 50px;
	padding-bottom:75px;
	background-color:var(--white);
	position:relative;
	z-index:3;
}
.intro-1 {
	display:flex;
	flex-wrap:wrap;
	gap:50px;
}
.intro-1-content {
	flex:1;
}
.intro-1-content h1 {
	margin:50px 0 40px;
}
.intro-1-content-block-1 {
	border-radius:20px;
	padding:20px 30px;
	background-color:var(--bg1);
}
.level-0-creation .intro-1-content-block-1 {
	max-width:670px;
}
.intro-1-content-block-2 {
	margin-top:16px;
	border-radius:20px;
	padding:20px 30px;
	background-color:var(--bg2);
}
.level-0-creation .intro-1-content-block-2 {
	max-width:870px;
}
.intro-1-button-wrapper {
	display:flex;
	align-items:center;
	margin-top:20px;
}
.intro-1-button-wrapper .button {
	width:360px;
}
.intro-1-content-block-ps {
	margin-left:20px;
}
.intro-1-image {
	width:50%;
	max-width:660px;
}
.level-0-creation .intro-1-image {
	margin:-16px -96px 0 0;
}
/* END inner page intro-1 */

/* inner page intro-2 */
.intro-2-wrapper {
	margin-top:-50px;
	border-radius:0 0 50px 50px;
	padding:170px 0 120px;
	background-color:var(--bg1);
	position:relative;
	z-index:2;
}
/* END inner page intro-2 */

/* inner page intro-3 */
.intro-3-wrapper {
	margin-top:-50px;
	border-radius:0 0 50px 50px;
	padding:170px 0 120px;
	background:url(/images/svg/offers-bg.svg) no-repeat right bottom var(--blue);
	color:var(--white);
	position:relative;
	z-index:1;
}
/* END inner page intro-3 */

/* offers block */
.offers-invert {
	color:var(--white);
}
.offers-head {
	display:flex;
	align-items:center;
	margin-bottom:50px;
}
.offers-title {
	flex:1;
	margin:0;
}
.offers-description {
	max-width:588px;
	margin-left:6%;
}
.offers {
	display:flex;
	gap:20px;
}
.offers-item {
	flex:1 1 0;
	overflow:hidden;
	border-radius:20px;
	padding:40px 40px 120px;
	background-color:var(--white);
	position:relative;
	transition:background-color .2s, color .2s;
}
.offers-item > * {
	z-index:2;
	position:relative;
}
.offers-invert .offers-item {
	background-color:var(--white-20);
	color:var(--white);
}
.offers-invert .offers-item::before {
	content:'';
	border-radius:20px;
	padding:1px;
	background:linear-gradient(150deg, var(--white-0) 33%, var(--white-50) 100%);
	mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite:exclude;
	position:absolute;
	inset:0;
	z-index:1;
}
.bx-no-touch .offers-item:hover {
	background-color:var(--blue);
	color:var(--white);
}
.bx-no-touch .offers-invert .offers-item:hover {
	background-color:var(--white);
	color:var(--blue);
}
.offers-item-title,
.offers-item-price {
	min-height:2lh;
	margin-bottom:15px;
}
.offers:not(.offers-invert) .offers-item-price {
	color:var(--blue);
}
.bx-no-touch .offers:not(.offers-invert) .offers-item:hover .offers-item-price {
	color:var(--white);
}
.offers-item-description {
	min-height:8lh;
}
.offers-item .button {
	position:absolute;
	inset:auto 40px 40px;
}
.offers-invert .button {
	background-color:var(--white);
	color:var(--blue);
}
.bx-no-touch .offers-item:hover .button {
	background-color:var(--white);
	color:var(--blue);
}
.bx-no-touch .offers-invert .offers-item:hover .button {
	background-color:var(--blue);
	color:var(--white);
}
.offers-item .icon {
	width:95%;
	height:95%;
	fill:var(--white-10);
	position:absolute;
	inset:auto -40% -38% auto;
	z-index:0;
	transform:rotate(125deg);
	opacity:0;
}
.offers-invert .icon {
	fill:var(--blue-20);
}
.bx-no-touch .offers-item:hover .icon {
	opacity:1;
}
/* END offers block */

/* guarantees block */
.guarantees-wrapper {
	margin:180px 0;
}
.guarantees-title {
	margin:0 0 50px;
}
.guarantees {
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	grid-template-rows:1fr 1fr;
	grid-gap:20px;
}
.guarantees-item {
	display:flex;
	flex-direction:column;
	justify-content:end;
	gap:20px;
	border-radius:20px;
	padding:40px 30px;
	background-color:var(--bg1);
}
.guarantees-item.type-orange {
	background-color:var(--orange);
	color:var(--white);
}
.guarantees-item.type-2 {
	grid-row:span 2;
	justify-content:start;
	background:url(/images/guarantee-bg-compressed.png) no-repeat center bottom var(--blue);
	background-blend-mode:multiply;
	background-size:cover;
	color:var(--white);
}
.webp .guarantees-item.type-2 {
	background-image:url(/images/guarantee-bg.png_1751822583.webp);
}
.guarantees-item-icon {
	width:76px;
	height:76px;
}
.guarantees-item-title {
	overflow:hidden;
	min-height:3lh;
}
.guarantees-item:not(.type-orange):not(.type-2) .guarantees-item-title {
	color:var(--blue);
}
.guarantees-item-description {
	height:2lh;
}
.guarantees-notice {
	margin-top:30px;
}
.guarantees-notice .obligatory {
	color:var(--orange);
}
.guarantees-notice a {
	color:var(--blue);
}
/* END guarantees block */

/* creation */
.creation-wrapper {
	margin:180px 0;
}
.creation-title {
	margin:0 0 42px;
}
.creation-conditions {
	display:flex;
	gap:20px;
}
.creation-conditions-item {
	border-radius:20px;
	padding:40px;
}
.creation-conditions-item:nth-child(1) {
	flex:1;
	display:flex;
	align-items:center;
	background-color:var(--bg1);
}
.creation-conditions-item:nth-child(2) {
	width:24%;
	background-color:var(--blue);
	color:var(--white);
}
.creation-conditions-item:nth-child(3) {
	width:24%;
	background-color:var(--orange);
	color:var(--white);
}
.creation-conditions-item-title {
	margin:0 0 20px;
}

.creation-stages-title {
	margin:60px 0 40px;
}
.creation-stages-description {
	max-width:740px;
	margin:0 0 47px;
}
.creation-stages {
	display:flex;
	flex-direction:column;
	gap:40px;
}
.creation-stages-item {
	width:75%;
	padding:40px;
	position:relative;
}
.creation-stages-item::before {
	content:'';
	border-radius:20px;
	position:absolute;
	inset:0;
	z-index:1;
}
.creation-stages-item-content {
	position:relative;
	z-index:3;
}
.creation-stages-item:nth-child(1) {
	align-self:end;
	z-index:3;
}
.creation-stages-item:nth-child(1)::before {
	background-color:var(--bg2);
}
.creation-stages-item:nth-child(1) .creation-stages-item-title {
	color:var(--blue);
}
.creation-stages-item:nth-child(2) {
	color:var(--white);
	z-index:2;
}
.creation-stages-item:nth-child(2)::before {
	background-color:var(--blue);
}
.creation-stages-item:nth-child(3) {
	align-self:end;
	color:var(--white);
}
.creation-stages-item:nth-child(3)::before {
	background-color:var(--orange);
}
.creation-stages-item .icon {
	width:480px;
	height:480px;
	fill:var(--bg1);
	position:absolute;
	inset:-320px auto auto 30px;
	z-index:0;
	transform:scale(1,-1) rotate(25deg);
}
.creation-stages-item:nth-child(3) .icon {
	inset:-320px 30px auto auto;
	transform:scale(-1,-1) rotate(25deg);
}
.creation-stages-item-title {
	margin:15px 0 20px;
}
/* END creation */

/* additional services */
.additional-services-wrapper {
	margin-bottom:-50px;
	border-radius:50px 50px 0 0;
	padding:120px 0 170px;
	background-color:var(--bg1);
	position:relative;
	z-index:1;
}
.additional-services-title {
	margin:0 0 50px;
}
.additional-services {
	display:flex;
	gap:20px;
}
.additional-services-item {
	flex:1 1 0;
	overflow:hidden;
	border-radius:20px;
	padding:30px 30px 106px;
	background-color:var(--white);
	color:var(--blue);
	position:relative;
	transition:background-color .2s, color .2s;
}
.bx-no-touch .additional-services-item:hover {
	background-color:var(--blue);
	color:var(--white);
}
.additional-services-item-icon {
	width:32px;
	height:32px;
	fill:none;
	color:inherit;
}
.additional-services-item-title {
	margin:25px 0 15px;
}
.additional-services-item-price .currency {
	stroke:currentColor;
	stroke-width:.15px;
}
.additional-services-item .button {
	position:absolute;
	inset:auto 30px 30px;
}
.bx-no-touch .additional-services-item:hover .button {
	background-color:var(--white);
	color:var(--blue);
}
.additional-services-item-bg {
	width:350px;
	height:350px;
	fill:var(--white-10);
	position:absolute;
	inset:-203px -156px auto auto;
	z-index:0;
	transform:rotate(-12deg);
	opacity:0;
}
.bx-no-touch .additional-services-item:hover .additional-services-item-bg {
	opacity:1;
}
/* END additional services */

@media (max-width:1500px) {
	/* .wrapper {
		margin-right:2.4%;
		margin-left:2.4%;
	} */
}

@media (max-width:1250px) {
} /* < 1250px */

@media (max-width:1200px) {
} /* < 1200px */

@media (max-width:1100px) {
} /* < 1100px */

@media (min-width:1001px) {
} /* > 1001px */

@media (max-width:1000px) {
	/* h1,
	.h1 {
		margin:30px 0;
		font-size:32px;
		line-height:1;
	}
	h2,
	.h2 {
		margin:30px 0 24px;
		font-size:24px;
	}
	h3,
	.h3 {
		margin:30px 0 20px;
		font-size:22px;
	}
	h4,
	.h4 {
		margin:24px 0 20px;
		font-size:19px;
	}
	h5,
	.h5,
	h6,
	.h6 {
		margin:24px 0 20px;
		font-size:17px;
	}
	
	.big-title {
		font-size:40px;
	} */
} /* < 1000px */

@media (max-width:900px) {
	/* .top-header,
	.header-menu {
		display:none;
	}
	
	.button,
	.border-button {
		height:32px;
		padding:0 10px;
		border-radius:7px;
		font-size:16px;
		line-height:30px;
	}
	
	.big-button {
		height:48px;
		border-radius:10px;
		line-height:46px;
	} */
} /* < 900px */

@media (max-width:850px) {
} /* < 850px */

@media (max-width:800px) {
	/* .wrapper {
		margin-right:16px;
		margin-left:16px;
	} */
} /* < 800px */

@media (max-width:750px) {
	/* .big-title {
		font-size:36px;
	} */
} /* < 750px */

@media (max-width:700px) {
} /* < 700px */

@media (max-width:650px) {
} /* < 650px */

@media (max-width:600px) {
	/* body {
		font-size:14px;
	}
	
	h1,
	.h1 {
		font-size:28px;
	}
	h2,
	.h2 {
		font-size:23px;
	}
	h3,
	.h3 {
		font-size:20px;
	}
	
	.input,
	input,
	textarea,
	select {
		border-radius:6px;
		padding:14px 16px;
		font-size:14px;
		line-height:16px;
	}
	
	.wrapper {
		margin-right:15px;
		margin-left:15px;
	} */
	
	/* .two-cols-sidebar {
		margin-top:60px;
	}
	
	.footer-form-wrapper {
		margin:60px auto;
		padding-top:42px;
	}
	.contact-form-content {
		flex-wrap:wrap;
		margin-bottom:0;
	}
	.contact-form-block {
		width:100%;
	}
	.contact-form .with-placeholder-wrapper {
		margin-bottom:24px;
	}
	.with-placeholder-wrapper label {
		padding:15px 0;
		left:17px;
	}
	.with-placeholder-wrapper .with-placeholder:focus + label,
	.with-placeholder-wrapper .with-placeholder:valid + label {
		height:14px;
		font-size:12px;
		transform:translateY(-20px);
	}
	.contact-form .form-item {
		border-radius:6px;
		padding:14px 16px 13px;
	}
	.contact-form .upload-file-button {
		border-radius:6px;
		padding:14px 16px 13px 36px;
	}
	.contact-form .upload-file-button .icon {
		width:16px;
		height:21px;
		left:16px;
	}
	.footer-form-right-block .with-placeholder-wrapper {
		margin-top:24px;
	}
	.footer-form textarea.form-item {
		height:100px;
		position:relative;
	} */
} /* < 600px */

@media (max-width:550px) {
} /* < 550px */

@media (max-width:500px) {
	.popup-form {
		padding:30px;
	}
	.popup-form .contact-form .send-form {
		width:100%;
	}
	
	/* .big-title {
		font-size:32px;
	}
	
	.tabs-caption {
		margin-bottom:12px;
	}
	.tabs-caption > * {
		margin:0 12px 12px 0;
		border-radius:6px;
		padding:8px 11px 9px;
		font-size:16px;
	} */
} /* < 500px */

@media (max-width:450px) {
	/* h1,
	.h1 {
		font-size:24px;
	}
	h2,
	.h2 {
		margin:24px 0;
		font-size:21px;
	}
	h3,
	.h3 {
		margin:20px 0;
		font-size:19px;
	}
	h4,
	.h4 {
		margin:20px 0;
		font-size:18px;
	}
	h5,
	.h5,
	h6,
	.h6 {
		margin:20px;
		font-size:16px;
	}
	
	.wrapper {
		margin-right:12px;
		margin-left:12px;
	} */
	
	/* 
	.added2basket-buttons .big-button {
		width:260px;
		margin:24px 0 0;
	}
	
	.contact-form-captcha {
		flex-wrap:wrap;
	}
	.contact-form-captcha > div {
		width:100%;
	}
	.contact-form-captcha-image-wrapper {
		margin-left:0;
	}
	*/
} /* < 450px */

@media (max-width:400px) {
	/* h1,
	.h1 {
		font-size:22px;
	}
	h2,
	.h2 {
		font-size:20px;
	}
	h3,
	.h3 {
		font-size:18px;
	}
	h4,
	.h4 {
		font-size:17px;
	}
	
	.big-title {
		font-size:30px;
	} */
} /* < 400px */

@media (max-width:359px) {
	/* h1,
	.h1 {
		font-size:20px;
	}
	h2,
	.h2 {
		font-size:18px;
	}
	h3,
	.h3 {
		font-size:17px;
	}
	h4,
	.h4 {
		font-size:16px;
	}
	h5,
	.h5,
	h6,
	.h6 {
		font-size:15px;
	}
	
	.big-title {
		font-size:27px;
	} */
} /* < 359px */
