/***************************************************              GENERAL RESET STYLES             ***************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: normal;
}

*:focus {
	outline: none;
}

body {
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

ol,
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

strong,
b {
	font-weight: 600;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border-style: none;
	width: 100%;
	height: auto;
	display: block;
}

form fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

input,
textarea,
select {
	vertical-align: middle;
	padding: 0;
	box-sizing: border-box;
	resize: none;
	border: 1px solid transparent;
	color: #000c49;
	background-color: #fff;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #000c49;
	font-size: 16px;
}

span {
	font: inherit;
	color: inherit;
}

svg {
	display: block;
	width: 100%;
	height: 100%;
}

.mk-container {
	display: block;
	position: relative;
	overflow: hidden;
	width: 1240px;
	margin: 0 auto;
	height: 100%;
}

header,
main,
footer,
section {
	display: block;
	position: relative;
	width: 100%;
}

/* common styles */
:root {
	--color-base-white: #ffffff;
	--color-base-black: #0b0b0b;
	--color-base-error: #f32e2e;
	--color-surface-100: #f3f8fe;
	--color-surface-200: #c5dbf7;
	--color-surface-300: #a7c7eb;
	--color-surface-400: #7fa7d6;
	--color-surface-500: #5b87bf;
	--color-primary-100: #e6f0f6;
	--color-primary-200: #9fb7c7;
	--color-primary-300: #4f7a91;
	--color-primary-400: #1f3a4a;
	--color-primary-500: #09202e;
	--color-accent-100: #e6f4f1;
	--color-accent-200: #b3dad1;
	--color-accent-300: #66b3a3;
	--color-accent-400: #2d8c74;
	--color-accent-500: #006650;
	--color-neutral-100: #f4f8fc;
	--color-neutral-200: #e9edf3;
	--color-neutral-300: #a7bacb;
	--color-neutral-400: #97a5b9;
	--color-neutral-500: #515a72;

	--font-montserrat: "Montserrat", sans-serif;
}

.title-h2 {
	font-weight: 900;
	font-style: italic;
	font-size: 36px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-base-black);
}

.text-13 {
	font-size: 13px;
}

.text-16 {
	font-size: 16px;
}

.text-20 {
	font-size: 20px;
}

.text-500 {
	font-weight: 500;
}

.text-600 {
	font-weight: 600;
}

.text-center {
	text-align: center;
}

.section-margin {
	margin-top: 96px;
}

.d-flex {
	display: flex;
}
.flex-col {
	flex-direction: column;
}
.items-center {
	align-items: center;
}
.gap-4 {
	gap: 4px;
}
.gap-12 {
	gap: 12px;
}
.gap-16 {
	gap: 16px;
}
.gap-24 {
	gap: 24px;
}
.gap-48 {
	gap: 48px;
}

.line-link {
	position: relative;
	padding: 5px 0;
}
.line-link::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	bottom: 0;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.4s;
}
.line-link:hover::before {
	opacity: 1;
	transform: scale(1);
}
/* common styles */

/* buttons styles */
.mk-btn {
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: var(--color-base-white);
	padding: 12px 16px;
	cursor: pointer;
	transition: all 0.45s;
	flex-shrink: 0;
	border: none;
	outline: none;
	margin: 0;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 1px solid transparent;
	width: fit-content;
}

.mk-btn-neutral {
	background-color: var(--color-neutral-500);
	color: var(--color-base-white);
}
.mk-btn-neutral:hover {
	background-color: transparent;
	color: var(--color-neutral-500);
	border-color: var(--color-neutral-500);
}

.mk-btn-green {
	background-color: var(--color-accent-500);
	color: var(--color-base-white);
}
.mk-btn-green:hover {
	background-color: transparent;
	color: var(--color-accent-500);
	border-color: var(--color-accent-500);
}

.mk-btn-blue {
	background-color: var(--color-primary-500);
	color: var(--color-base-white);
}
.mk-btn-blue:hover {
	background-color: transparent;
	color: var(--color-primary-500);
	border-color: var(--color-primary-500);
}

.mk-btn-white {
	color: var(--color-primary-500);
	background-color: var(--color-base-white);
}

.mk-btn-neutral-border {
	border-color: var(--color-neutral-500);
	background-color: transparent;
	color: var(--color-neutral-500);
}

/* .mk-btn-white:hover {
	color: var(--color-base-white);
	border-color: var(--color-base-white);
} */

.mk-btn-surface {
	background-color: var(--color-surface-100);
	color: var(--color-primary-500);
}
.mk-btn-surface:hover {
	background-color: transparent;
	border-color: var(--color-surface-100);
}
.mk-btn-hover-to-green:hover {
	background-color: var(--color-accent-500);
	color: var(--color-base-white);
}
.mk-btn-hover-to-neutral:hover {
	background-color: var(--color-neutral-500);
	color: var(--color-base-white);
}
/* buttons styles */

/* header styles */
.mk-header {
	position: fixed;
	top: 0;
	z-index: 20;
	width: 100%;
	background-color: var(--color-base-white);
	border-bottom: 1px solid var(--color-neutral-500);
}
.mk-header__wrapper {
	position: relative;
}
.mk-header__wrapper::after {
	content: "";
	width: 100%;
	display: block;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	background-color: var(--color-neutral-500);
}
.mk-header__logo {
	flex-shrink: 0;
}
.mk-header__main-header {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 27px 0;
	position: relative;
	z-index: 3;
	background-color: var(--color-base-white);
}

.mk-header__top-link {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	color: var(--color-neutral-500);
	cursor: pointer;
}

.mk-header__top-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-end;
}
.mk-header__top-right,
.mk-header__top-left {
	display: flex;
	align-items: center;
	gap: 15px;
}
.mk-header__top-right {
	gap: 20px;
}
.mk-header__lang-wrapper {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 4px;
}
.mk-header__lang-wrapper .other_langs a {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	color: var(--color-primary-500);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 4px;
	min-width: 35px;
	text-transform: uppercase;
}
.mk-header__lang-wrapper .other_langs.active a {
	color: var(--color-base-white);
	background-color: var(--color-primary-500);
}
.mk-header__dropdown-overlay {
	position: absolute;
	top: 100%;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -20;
	opacity: 0;
	transition: all 0.4s;
	cursor: pointer;
	pointer-events: none;
}
.mk-header__dropdown {
	position: absolute;
	top: 100%;
	height: fit-content;
	min-height: 458px;
	padding: 24px 0;
	width: 100%;
	background-color: var(--color-base-white);
	z-index: 2;
	transition: all 0.4s;
	transform: translateY(-100%);
	max-height: 700px;
	overflow: hidden;
}
.mk-header__bottom-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}
.mk-header__menu-nav ul,
.mk-header__menu {
	display: flex;
	align-items: center;
	gap: 30px;
}
.mk-header__menu-nav ul {
	gap: 40px;
}
.mk-header__menu-link {
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
	color: var(--color-primary-500);
}
.dropdown-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--color-accent-500);
	color: var(--color-base-white);
	cursor: pointer;
}
.dropdown-btn:hover {
	transform: scale(1.01);
}
.dropdown-btn-icon {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
}
.dropdown-btn.active {
	background-color: transparent;
	border-color: var(--color-accent-500);
	color: var(--color-accent-500);
}
.mk-header__dropdown.active {
	transform: translateY(0);
}
.mk-header__dropdown-overlay.active {
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}
/* header styles */

/* dropdown menu styles */
.mk-header__dropdown-inner {
	display: flex;
	gap: 20px;
}
.mk-header__dropdown-inner-left {
	width: 100%;
	max-width: 515px;
	flex-shrink: 0;
	position: relative;
}
.mk-header__dropdown-inner-right {
	width: 100%;
	height: fit-content;
	background-color: var(--color-neutral-100);
	padding: 24px;
	gap: 24px;
	display: flex;
	flex-direction: column;
}
.mk-dropdown__link {
	padding: 11px;
	transition: all 0.4s;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	font-size: 13px;
	line-height: 100%;
	color: var(--color-primary-500);
}
.mk-dropdown__link.active,
.mk-dropdown__link:hover {
	background-color: var(--color-surface-100);
	gap: 16px;
}

.mk-dropdown__outer {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 20px;
}
.mk-dropdown__icon {
	width: 36px;
	height: 36px;
	background-color: var(--color-accent-500);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-base-white);
}
.mk-dropdown__icon svg {
	width: 15px;
	height: 15px;
	transition: transform 0.4s;
	transform: rotate(-45deg);
}

.mk-dropdown__link.active .mk-dropdown__icon svg,
.mk-dropdown__link:hover .mk-dropdown__icon svg {
	transform: rotate(45deg);
}
.dropdown-toggle__icon {
	flex-shrink: 0;
	width: 8px;
	height: 14px;
	transition: transform 0.4s;
}
.dropdown-toggle__inner {
	display: flex;
	align-items: center;
	gap: 15px;
}
.mk-dropdown__inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	/* width: calc(50% - 10px); */
	width: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 20;
	/* transition: all 0.4s; */
}
.mk-dropdown__inner.active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}
.has-dropdown:has(ul.active) {
	grid-column: span 2;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: flex-start;
}
.mk-header__catalogs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mk-header__text,
.mk-header__catalog-content {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}
.mk-hr {
	margin: 0;
	padding: 0;
	background-color: var(--color-neutral-500);
}
.mk-header__catalog {
	display: flex;
	flex-direction: column;
	gap: 25px;
	background-color: var(--color-primary-500);
}
.mk-header__catalog-content {
	padding: 0px 15px 15px;
}
.mk-header__catalog-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: var(--color-base-white);
}
.mk-header__catalog-img {
	aspect-ratio: 320 / 168;
	overflow: hidden;
}
.mk-header__catalog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.mk-dropdown__item {
	/* transition: opacity 0.4s; */
}
.mk-dropdown__item.disabled {
	opacity: 0;
	pointer-events: none;
	display: none;
}
.mk-dropdown-catalog-link {
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	color: var(--color-base-black);
	display: flex;
	width: fit-content;
	padding: 10px 5px;
	border-bottom: 1px solid currentColor;
	transition: color 0.4s;
}
.mk-dropdown-catalog-link:hover {
	color: var(--color-accent-500);
}
/* dropdown menu styles */

/* mobile menu styles */
.header-mobile__right {
	display: none;
	align-items: center;
	gap: 20px;
}
.header-mobile__btn {
	width: 40px;
	height: 40px;
	background-color: var(--color-accent-500);
	position: relative;
	flex-shrink: 0;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-mobile__btn .close-icon-line {
	width: 19px;
	height: 2px;
	background-color: var(--color-base-white);
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	/* transition: transform 0.4s ease-in-out; */
}
.header-mobile__btn .close-icon-line:first-child {
	transform: translate(-50%, -3px);
}
.header-mobile__btn .close-icon-line:last-child {
	transform: translate(-50%, 3px);
}
.header-mobile__menu {
	display: none;
	width: 100%;
	height: 100vh;
	background-color: var(--color-base-white);
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.4s;
	transform: translateX(-110%);
	overflow: hidden;
}
.header-mobile__menu.active {
	transform: translateX(0);
}
.header-mobile__menu-inner {
	padding-top: 80px;
	padding-bottom: 50px;
	max-width: 720px;
	margin: 0 auto;
	height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: column;
}
.header-mobile__menu-dropdown {
	display: none;
	margin-top: 24px;
}
.header-mobile__menu-dropdown.active {
	display: block;
}
.header-mobile__menu-top,
.header-mobile__menu-bottom {
	padding: 24px;
}
/* mobile menu styles */

/* main hero styles */
.mk-main-hero__mobile-inner {
	width: 100%;
	margin-bottom: 16px;
}
.mk-main-hero {
	width: 100%;
	object-fit: cover;
	height: 100vh;
	position: relative;
}
.mk-main-hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-base-black);
}
.mk-main-hero__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mk-main-hero__content {
	position: relative;
	z-index: 1;
	padding-top: 150px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.mk-main-hero__content-inner-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.mk-hero-btn {
	margin-top: 12px;
}
.mk-hero-text {
	max-width: 488px;
	font-weight: 400;
	font-size: 24px;
	line-height: 125%;
	color: var(--color-base-white);
}
.mk-hero-title {
	font-weight: 900;
	font-style: italic;
	font-size: 52px;
	line-height: 125%;
	text-transform: uppercase;
	color: var(--color-base-white);
}

.mk-main-hero__cards {
	display: flex;
	flex-direction: column;
	gap: 48px;
	flex-shrink: 0;
}

.mk-main-hero__mobile {
	display: none;
}
.mk-main-hero__content-inner {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	align-items: center;
	height: 100%;
}
.mk-main-hero__content-inner-left {
	grid-column: span 8;
	max-width: 715px;
}
.mk-main-hero__cards {
	grid-column: span 4;
}
.mk-main-hero__card {
	position: relative;
	border: 1px solid var(--color-base-white);
	padding: 24px;
	overflow: hidden;
	min-height: 182px;
}
.mk-main-hero__card::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	right: 28px;
	width: 1px;
	height: 100%;
	background-color: var(--color-base-white);
	transition: background-color 0.4s;
}
.mk-main-hero__card::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--color-base-white);
	transition: transform 0.4s;
	transform: scaleX(0);
	transform-origin: right;
	inset: 0;
}
.mk-main-hero__card:hover::after {
	transform: scaleX(1);
}
.mk-main-hero__card:hover::before {
	background-color: var(--color-primary-500);
}
.mk-main-hero__card:hover .mk-main-hero__card-num,
.mk-main-hero__card:hover .mk-main-hero__card-text {
	color: var(--color-primary-500);
}

.mk-main-hero__card-content {
	max-width: 216px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 2;
}
.mk-main-hero__card-num {
	font-family: var(--font-montserrat);
	font-weight: 700;
	font-size: 60px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-base-white);
	transition: color 0.4s;
}
.mk-main-hero__card-text {
	font-family: var(--font-montserrat);
	font-weight: 500;
	font-size: 16px;
	line-height: 125%;
	text-transform: uppercase;
	color: var(--color-base-white);
	transition: color 0.4s;
}
.main-hero-mobile-swiper .swiper-slide {
	height: auto;
}
.main-hero-mobile-swiper .swiper-slide .mk-main-hero__card {
	height: 100%;
}
/* main hero styles */

/* square pagination styles */
.square-pagination {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
}
.square-pagination.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	background-color: var(--color-base-white);
	flex-shrink: 0;
	border-radius: 0;
	transition: all 0.4s;
}
/* square pagination styles */

/* why us styles */
.why-us__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.why-us__items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.why-us__item {
	padding: 20px;
}
.why-us__item-top {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}
.why-us__item-num {
	font-weight: 900;
	font-style: italic;
	font-size: 60px;
	line-height: 100%;
	text-transform: uppercase;
}
.why-us__item-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}
.why-us__item {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.why-us__item-bottom {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.why-us__item-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
}
.why-us__item-text {
	font-weight: 300;
	font-size: 16px;
	line-height: 100%;
}

.why-us__items > :nth-child(odd) {
	background-color: var(--color-primary-500);
}
.why-us__items > :nth-child(odd) .why-us__item-icon,
.why-us__items > :nth-child(odd) .why-us__item-num,
.why-us__items > :nth-child(odd) .why-us__item-title,
.why-us__items > :nth-child(odd) .why-us__item-text {
	color: var(--color-base-white);
}

.why-us__items > :nth-child(even) {
	background-color: transparent;
	border: 1px solid var(--color-primary-500);
}
.why-us__items > :nth-child(even) .why-us__item-icon,
.why-us__items > :nth-child(even) .why-us__item-num,
.why-us__items > :nth-child(even) .why-us__item-title,
.why-us__items > :nth-child(even) .why-us__item-text {
	color: var(--color-primary-500);
}
/* why us styles */

/* slider block styles */
.borders-block {
	padding: 48px 0px;
	border-top: 1px solid var(--color-base-black);
	border-bottom: 1px solid var(--color-base-black);
}
.slider-block__top {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}
.slider-block__top-left {
	max-width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.slider-block__link {
	padding: 10px 0px;
	font-weight: 600;
	font-size: 15px;
	line-height: 100%;
	color: var(--color-accent-500);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: fit-content;
	min-width: 138px;
	cursor: pointer;
	border-bottom: 1px solid currentColor;
}
.slider-block__link > span {
	transition: all 0.4s;
}
.slider-block__link-icon {
	width: 12px;
	height: 12px;
	background-color: currentColor;
	transform: translateX(-4px);
}
.slider-block__link-text {
	transform: translateX(4px);
}
.slider-block__link:hover .slider-block__link-icon,
.slider-block__link:hover .slider-block__link-text {
	transform: translateX(0px);
}
.slider-block__btn {
	width: 36px;
	height: 36px;
	background-color: var(--color-accent-500);
	cursor: pointer;
	color: var(--color-base-white);
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.4s;
	padding: 12px;
}
.slider-block__navigation {
	display: flex;
	align-items: center;
	gap: 8px;
}
.slider-block__btn-prev svg {
	transform: rotate(-135deg);
}
.slider-block__btn-next svg {
	transform: rotate(45deg);
}
.slider-block__nav-current {
	font-weight: 500;
	font-size: 20px;
	line-height: 125%;
	color: var(--color-primary-500);
	display: flex;
	align-items: center;
}
.slider-block__nav-current-num {
	color: var(--color-primary-200);
}
.slider-block__nav {
	gap: 16px;
	align-items: center;
	display: flex;
}
.slider-block__inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.slider-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}
.slider-card__img-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 400 / 460;
	overflow: hidden;
	flex-shrink: 0;
}
.slider-card__img {
	width: 100%;
	overflow: hidden;
	height: 100%;
}
.slider-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s;
}
.slider-card:hover .slider-card__img img {
	transform: scale(1.02);
}
.slider-card__content-top-title {
	font-weight: 600;
	font-size: 22px;
	line-height: 125%;
	color: var(--color-primary-500);
}
.slider-card__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: 100%;
}
.slider-card__arrow {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	pointer-events: none;
	z-index: 1;
	transition: opacity 0.4s;
	will-change: opacity;
	opacity: 0;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary-500);
	background-color: var(--color-base-white);
	box-shadow: 2px 2px 2px 0px #00000040;
}
.slider-card:hover .slider-card__arrow {
	opacity: 1;
}
.slider-card__more {
	margin-top: auto;
}
/* slider block styles */

/* footer styles */
body:has(.feedback-section) .footer {
	margin-top: 0 !important;
}
.footer__production-mobile {
	display: none;
}
.footer__text {
	font-size: 12px;
	line-height: 150%;
	color: var(--color-base-white);
}
.footer__text-opacity-50 {
	opacity: 0.5;
}
.footer__text-bold {
	font-weight: 600;
}
.footer__text .made-by {
	color: var(--color-base-white);
	font: inherit;
}
.header-mobile__menu-bottom .footer__text .made-by {
	color: var(--color-primary-500);
}
.footer {
	padding: 96px 0 48px;
	background-color: var(--color-primary-500);
}
.footer__top {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}
.footer__top-left {
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	gap: 48px;
	max-width: 278px;
}
.footer__data {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer__data-phones {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__data-phone {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	color: var(--color-base-white);
}
.footer__data-email {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	color: var(--color-base-white);
}
.footer__bottom {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}
.footer__nav-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	color: var(--color-base-white);
}
.footer__block2,
.footer__block1 {
	grid-column: span 3;
}
.footer__top-right {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.footer__nav-link {
	font-weight: 400;
	font-size: 14px;
	color: var(--color-base-white);
	line-height: 100%;
	opacity: 0.75;
	transition: all 0.4s;
}
.footer__nav-link:hover {
	opacity: 1;
}
.footer__nav-wrap,
.mobile-production-tab ul,
.footer__nav ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer__nav-wrap {
	gap: 16px;
}
.footer__contacts-social-nav ul {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer__contacts-social-link {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-base-white);
	transition: all 0.4s;
	padding: 8px;
	color: var(--color-primary-500);
}
.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 62px;
}
.mobile-production-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
}
.mobile-production-btn svg {
	flex-shrink: 0;
	width: auto;
	height: auto;
	transition: all 0.4s;
}
.mobile-production-btn.active svg {
	transform: rotate(180deg);
}
.mobile-production-tab__fix {
	display: block;
	width: 100%;
	height: 16px;
}
.mobile-production-tab {
	grid-template-rows: 0fr;
	display: grid;
	overflow: hidden;
	transition: grid-template-rows 0.4s;
}
.mobile-production-tab.active {
	grid-template-rows: 1fr;
}
.mobile-production-tab > div {
	min-height: 0;
}
/* footer styles */

/* news block styles */
.news-block__inner {
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 44px;
}
.news__card {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	padding: 24px 0px;
	border-bottom: 1px solid var(--color-primary-500);
}
.news__card-left {
	grid-column: span 4;
}
.news__card-img {
	width: 100%;
	grid-column: span 3;
	aspect-ratio: 295 / 204;
	overflow: hidden;
}
.news__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s;
}
.news__card-right {
	grid-column: span 3;
	transition: transform 0.4s;
}
.news__card:hover .news__card-right {
	transform: translateX(3px);
}
.news__card-left,
.news__card-right {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: space-between;
}
.news__card-date {
	font-weight: 300;
	font-size: 12px;
	line-height: 100%;
	color: var(--color-neutral-500);
}
.news__card-title {
	font-weight: 900;
	font-style: italic;
	font-size: 20px;
	line-height: 125%;
	text-transform: uppercase;
	color: var(--color-primary-500);
	transition: all 0.4s;
}
.news__card:hover .news__card-img img {
	transform: scale(1.05);
}
.news__card:hover .news__card-title {
	color: var(--color-accent-500);
	text-decoration: underline;
	text-underline-offset: 4px;
	transform: translateX(3px);
}
/* news block styles */

/* about sm block */
.about-sm__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-sm__title {
	font-weight: 900;
	font-style: Italic;
	font-size: 36px;
	text-transform: uppercase;
	color: var(--color-base-black);
}
.about-sm__block {
	display: grid;
	grid-template-columns: 394px 1fr;
}
.about-sm__left {
	padding: 24px;
	background-color: var(--color-primary-500);
}
.about-sm__right {
	background-color: var(--color-surface-200);
	padding: 24px;
}
.about-sm__right-item {
	max-width: 323px;
}
.about-sm__text {
	font-size: 18px;
	padding-left: 24px;
	color: var(--color-base-black);
}
.about-sm__text--big {
	font-size: 20px;
}
.about-sm__text > span {
	font-weight: 700;
}
.about-sm__inner--main {
	gap: 44px;
}
.about-sm__inner--main h3,
.about-sm__inner--main p,
.about-sm__inner--main span {
	line-height: 125%;
}
/* .about-sm__bottom p {
	font-weight: 500;
} */
.about-sm__inner--about h3,
.about-sm__inner--about p,
.about-sm__inner--about span {
	line-height: 150%;
}
/* about sm block */

/* spin3d hero styles */
.spin3d-hero__wrapper {
	width: 100%;
	height: 500px;
}
.spin3d-viewport {
	overflow: hidden;
	width: 100%;
	height: 100%;
	perspective: 10000px;
	transform-style: preserve-3d;
}

.spin3d-stage {
	z-index: 1;
	transform-style: preserve-3d;
	position: relative;
	height: 100%;
	width: 100%;
	pointer-events: none;
	display: grid;
	place-content: center;
}

ul.spin3d-track {
	position: relative;
	transform-style: preserve-3d;
	transform-origin: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.spin3d-item {
	position: absolute;
	top: 0;
	left: 0;
	translate: -50% -50%;
	width: 340px;
	aspect-ratio: 320 / 185;
	z-index: 1;
	pointer-events: all;
	margin: 0;
	padding-left: 24px !important;
	transform-style: preserve-3d;
}

.spin3d-item__inner {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
	text-decoration: none;
	transform-style: preserve-3d;
	background-color: transparent;
}

.spin3d-item__front,
.spin3d-item__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	clip-path: url(#spin3d-clip-card-mirror);
	background-color: var(--color-accent-500);
}

.spin3d-item__back {
	transform: rotateY(180deg);
}

.spin3d-item__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.spin3d-item__text {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	padding-top: 34px;
	padding-left: 20px;
}

.spin3d-item__title {
	color: var(--color-base-white);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	max-width: 138px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	text-align: left;
}
.spin3d-item__icon {
	color: var(--color-base-white);
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	/* transform: rotate(-90deg); */
}

.spin3d-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.spin3d-hero--line {
	padding-top: 48px;
	border-bottom: 1px solid var(--color-primary-500);
}
/* spin3d hero styles */

/* sertificates styles */
.sertificates__left-btn {
	min-width: 190px;
}
.sertificates__left {
	max-width: 320px;
	width: 100%;
	flex-shrink: 0;
}
.sertificates__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.sertificates__right {
	position: relative;
	max-width: 900px;
}
.sertificates__nav {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
}
.sertificates__item {
	display: block;
	text-decoration: none;
	color: inherit;
	aspect-ratio: 295 / 415;
	overflow: hidden;
	/* width: 100%; */
	/* background-color: #2d8c745a; */
}
.sertificates__item-img {
	width: 100%;
	height: 100%;
	transition: transform 0.3s;
	transform: scale(0.7);
	transform-origin: bottom left;
}
.sertificates__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.sertificates__slider {
	transform: translateX(124px);
}
.swiper-slide.swiper-slide-active .sertificates__item-img {
	transform: scale(1);
}
.swiper-slide.swiper-slide-next .sertificates__item-img {
	transform: scale(0.85) translateX(30px);
}
.sertificates > .mk-container {
	overflow: visible;
}
.sertificates {
	overflow: hidden;
}
/* sertificates styles */

/* trust grid styles */
.trust-grid__inner {
	display: flex;
	flex-direction: column;
	gap: 72px;
}
.trust-grid__wrap {
	display: flex;
}
.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.trust-grid__item {
	position: relative;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-grid__item-img {
	width: 100%;
	aspect-ratio: 295 / 124;
}

.trust-grid__item-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}
.trust-grid__item::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 1px;
	right: 0;
	top: 0;
	background-color: var(--color-neutral-300);
}
.trust-grid__item::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: var(--color-neutral-300);
}
.trust-grid__item:nth-child(4n)::before {
	display: none;
}
.trust-grid__item:last-child::before {
	display: none;
}
.trust-grid__item:nth-child(n + 5)::after {
	display: none;
}
/* trust grid styles */

/* feedback section styles */
.feedback-section {
	background-color: var(--color-neutral-100);
	padding: 96px 0;
}
.feedback-form__item {
	position: relative;
}
.feedback-form__item label {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}
.feedback-form__input {
	width: 100%;
	display: block;
	padding: 12px 20px;
	background-color: var(--color-base-white);
	border: 1px solid var(--color-surface-200);
}
textarea.feedback-form__input {
	resize: none;
	max-height: 120px;
}

.feedback-form__input,
.feedback-form__input::placeholder {
	font-size: 15px;
	font-weight: 500;
}
.feedback-form__input::placeholder {
	text-transform: uppercase;
	color: var(--color-primary-300);
}

.feedback-form__input {
	color: var(--color-neutral-500);
}
.feedback-form__input:active,
.feedback-form__input:focus,
.feedback-form__input:focus-visible {
	border-color: var(--color-primary-300);
}

.feedback-form__item.error .feedback-form__input {
	border-color: var(--color-base-error);
	color: var(--color-base-error);
}

.feedback-form__item-checkbox.error .feedback-form__item-checkbox-text,
.feedback-form__item-checkbox.error .feedback-form__item-checkbox-text a {
	color: var(--color-base-error);
}

.feedback-form__item.error .feedback-form__input::placeholder {
	color: var(--color-base-error);
}
.error-msg {
	color: var(--color-base-error);
	font-size: 12px;
	line-height: 120%;
	margin-top: 4px;
	display: block;
	width: 100%;
	text-align: left;
}

.feedback-form {
	max-width: 610px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}
.feedback-form__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}
.feedback-form__row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}
.feedback-form__item-checkbox label {
	margin-top: 12px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.feedback-form__item-checkbox-text {
	font-size: 12px;
	line-height: 120%;
	color: var(--color-neutral-500);
	max-width: 330px;
}
.feedback-form__item-checkbox-text a {
	color: var(--color-primary-500);
	text-decoration: underline;
}
.feedback-form__item-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--color-primary-500);
	border-radius: 10px;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}
.feedback-form__item-checkbox-text {
	cursor: pointer;
}
/* feedback section styles */

/* popup styles */
.section-popup {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s;
	transform: scale(1.05);
	will-change: opacity, transform;
}
.section-popup.active {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}
.section-popup__inner {
	width: 100%;
	max-width: 684px;
	background-color: var(--color-neutral-100);
	cursor: default;
}
.section-popup__body,
.section-popup__head {
	padding: 48px 37px;
}
.section-popup__head {
	background-color: var(--color-base-white);
}
.section-popup__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.section-popup__head-close {
	width: 40px;
	aspect-ratio: 1;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
	border-radius: 50%;
	background-color: var(--color-primary-500);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.4s;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}
.section-popup__head-close:hover {
	background-color: var(--color-accent-500);
}
.section-popup__head-close span {
	width: 19px;
	height: 2px;
	background-color: var(--color-base-white);
	position: absolute;
	top: 50%;
	left: 50%;
}
.section-popup__head-close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}
.section-popup__head-close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* popup styles */

/* breadcrumbs styles */
.breadcrumbs-section {
	margin-top: 152px;
	padding: 20px 0px;
	background-color: var(--color-neutral-100);
}
.breadcrumbs-self__item {
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
	color: var(--color-primary-500);
	transition: color 0.4s;
	flex-shrink: 0;
	display: inline-block;
	margin: 4px 0px;
}
.breadcrumbs-self__item a span {
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}
.breadcrumbs-self__item::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg width="7" height="13" viewBox="0 0 7 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 12.5L6.5 6.5L0.5 0.5" stroke="%230B0B0B" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-repeat: no-repeat;
	background-size: 7px 13px;
	background-position: center;
}
.breadcrumbs-self__item.active::after {
	display: none;
}
.breadcrumbs-self__item a {
	font: inherit;
	color: inherit;
}
.breadcrumbs-self__item.active {
	color: var(--color-neutral-500);
	vertical-align: middle;
}
.breadcrumbs-self__item.active:hover {
	color: var(--color-neutral-500);
}
.breadcrumbs-self__item {
	color: var(--color-primary-500);
}
.breadcrumbs-self__item:hover {
	color: var(--color-accent-500);
}
/* breadcrumbs styles */

/* new border block */
.border-separator {
	margin-top: 24px;
}
.border-separator--48 {
	margin-top: 48px;
}
.border-separator__line {
	border-top: 1px solid var(--color-primary-500);
}
/* new border block */

/* about cards styles */
.about-cards-swiper .swiper-slide {
	height: auto;
}
.mk-main-hero__card--about {
	height: 100%;
}
.mk-main-hero__card--about .mk-main-hero__card-num {
	color: var(--color-primary-500);
}
.mk-main-hero__card--about .mk-main-hero__card-text {
	color: var(--color-primary-500);
}
.mk-main-hero__card--about {
	border-color: var(--color-primary-500);
}
.mk-main-hero__card--about::before {
	background-color: var(--color-primary-500);
}
.mk-main-hero__card--about::after {
	background-color: var(--color-primary-500);
}
.mk-main-hero__card--about:hover::before {
	background-color: var(--color-base-white);
}
.mk-main-hero__card--about:hover .mk-main-hero__card-num,
.mk-main-hero__card--about:hover .mk-main-hero__card-text {
	color: var(--color-base-white);
}
.dark-pagination.square-pagination.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	background-color: var(--color-primary-500);
}
.dark-pagination {
	margin-top: 16px;
}
.dark-pagination.swiper-pagination-lock {
	margin-top: 0;
}
.about-sm__title-small {
	font-size: 24px !important;
}
.about__cards .mk-main-hero__mobile-inner {
	margin-bottom: 0;
}
/* about cards styles */

/* about video styles */
.about-video__wrap {
	aspect-ratio: 1236 / 800;
	overflow: hidden;
	filter: brightness(1);
}
.about-video__wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* about video styles */

/* about files styles */
.about-files__mobile {
	display: none;
}
.about-files__wrap {
	max-width: 820px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 48px;
}
.about-files__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.about-files__item {
	position: relative;
	padding: 24px;
	padding-top: 54px;
	background-color: var(--color-primary-300);
	gap: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	clip-path: url(#spin3d-clip-card-mirror);
	overflow: hidden;
	transition: all 0.4s;
}
.about-files__wrap > .about-files__item:nth-child(2),
.about-files__wrap > .about-files__item:nth-child(3) {
	background-color: var(--color-primary-500);
}
.about-files__item-icon {
	color: var(--color-base-white);
	width: 33px;
	height: 33px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}
.about-files__item-text {
	font-size: 16px;
	color: var(--color-base-white);
	line-height: 125%;
	margin-top: auto;
	height: fit-content;
}
.about-files__item-title {
	font-size: 26px;
	color: var(--color-primary-100);
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
}
/* about files styles */

/* policy page styles */
.policy-self__block,
.policy-block,
.policy-subtext__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.policy-text-20 {
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	color: var(--color-primary-400);
}
.policy-text-16 li,
.policy-text-16 p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--color-primary-400);
}
.policy-text-16 ul {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 8px;
}
.policy-text-16 p {
	margin-bottom: 8px;
}
.policy-self__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 24px;
	background-color: var(--color-neutral-100);
}
.policy-text-16 > :last-child {
	margin-bottom: 0 !important;
}
/* policy page styles */

/* 404 page styles */
.section-404 {
	margin-top: 152px;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 96px;
}
.section-404__logo {
	display: block;
	aspect-ratio: 465 / 256;
	overflow: hidden;
	max-width: 465px;
}
.section-404__inner {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}
.section-404__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.section-404__buttons .mk-btn {
	min-width: 190px;
}
.section-404__buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.section-404__inner .policy-text-16 p {
	margin-bottom: 0;
}
/* 404 page styles */

/* contacts page */
.contacts-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 20px;
}
.form-contacts-wrap {
	background-color: var(--color-neutral-100);
	padding: 24px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.form-contacts-wrap > div {
	width: 100%;
}
.contacts-hero__social .footer__nav-title {
	color: var(--color-primary-500);
}
.contacts-hero__social .footer__contacts-social-link {
	background-color: var(--color-primary-500);
	color: var(--color-base-white);
}
.contacts-hero__data .footer__data-phone,
.contacts-hero__data .footer__data-email {
	color: var(--color-accent-500);
}
.contacts-hero__left {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
/* contacts page */

/* files page */
.files-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.files-list__li {
	display: flex;
	align-items: center;
	gap: 12px;
}
.files-list__item-num {
	font-weight: 500;
	font-size: 24px;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-neutral-300);
}
.files-list__li {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-neutral-300);
}
.files-list__item {
	display: grid;
	grid-template-columns: 270px 1fr 24px;
	width: 100%;
	align-items: center;
	gap: 20px;
	padding: 16px;
	transition: all 0.4s;
	cursor: pointer;
}
.files-list__item-name {
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	color: var(--color-primary-500);
	transition: color 0.4s;
}
.files-list__item-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: all 0.4s;
	color: var(--color-accent-500);
}
.files-list__item.active,
.files-list__item:hover {
	background-color: var(--color-accent-500);
}
.files-list__item.active .files-list__item-name,
.files-list__item:hover .files-list__item-name {
	color: var(--color-base-white);
}
.files-list__item.active .files-list__item-icon,
.files-list__item:hover .files-list__item-icon {
	color: var(--color-base-white);
}
/* files page */

/* blog styles */
.mk-main-blog .border-separator {
	display: none;
}
.cateroies-nav {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
}
.cateroies-link a {
	border: 1px solid var(--color-neutral-500);
	color: var(--color-neutral-500);
	padding: 8px 12px;
	border-radius: 30px;
	transition: all 0.4s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 100%;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}
.cateroies-link.current a,
.cateroies-link a:hover {
	background-color: var(--color-neutral-500);
	color: var(--color-base-white);
}

.blog-pagination-ul {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 0px 20px;
}
.blog-pagination__link {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s;
}
.blog-pagination__link {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}
.blog-pagination__link.current-link {
	color: var(--color-base-white);
	background-color: var(--color-neutral-500);
}
.blog-pagination__link.link {
	color: var(--color-neutral-500);
	border: 1px solid var(--color-neutral-200);
}
.blog-pagination__link.link:hover {
	color: var(--color-base-white);
	background-color: var(--color-neutral-500);
	border-color: var(--color-neutral-500);
}
.blog-pagination__link.dots {
	font-size: 20px;
	color: var(--color-neutral-500);
}
.blog-pagination__link.arrow-link {
	gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid var(--color-accent-500);
	color: var(--color-accent-500);
}
.blog-pagination__link.arrow-link.disabled,
.blog-pagination__link.arrow-link:hover {
	color: var(--color-base-white);
	background-color: var(--color-accent-500);
	border-color: var(--color-accent-500);
}
.blog-pagination__link.arrow-link.prev-link {
	transform: rotate(-180deg);
}
.arrow-link.prev-link {
	margin-right: 40px;
}
.arrow-link.next-link {
	margin-left: 40px;
}
/* blog styles */

/* blog post styles */
.blog-post__title-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
p.img-content img {
	width: 100%;
	height: auto;
	overflow: hidden;
	aspect-ratio: 1240 / 600;
	object-fit: cover;
	object-position: center;
}
.mk-post-content__wrap .img-content {
	margin-bottom: 24px;
}
.mk-post-content__wrap .video-content {
	margin-bottom: 24px;
}
.mk-post-content__wrap p,
.mk-post-content__wrap ul {
	margin-bottom: 1rem;
}
.mk-post-content__wrap > :last-child {
	margin-bottom: 0 !important;
}
.mk-post-content__wrap p,
.mk-post-content__wrap li {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--color-primary-400);
}
.mk-post-content__wrap p strong {
	font-weight: 600;
}
.mk-post-content__wrap ul {
	list-style-position: inside;
	list-style-type: revert;
}
.mk-post-content__wrap h3 {
	margin-bottom: 1rem;
	font-size: 20px;
	color: var(--color-primary-400);
	font-weight: 600;
}
.mk-post-content__wrap a {
	color: var(--color-accent-500);
	font: inherit;
	font-weight: 600;
}
.mk-post-content__wrap img.justifyleft,
.mk-post-content__wrap img.justifyright {
	margin-right: 1rem;
	margin-bottom: 1rem;
	max-width: 420px;
}
.mk-post-content__wrap img.justifyleft {
	float: left;
}
.mk-post-content__wrap img.justifyright {
	float: right;
}
.mk-post-content {
	margin-top: 24px;
}
.mk-post__share-inner {
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 46px;
	background-color: var(--color-neutral-100);
}
.mk-post__share-text {
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	color: var(--color-primary-500);
}
.mk-post__share-link {
	color: var(--color-base-white);
	background-color: var(--color-accent-500);
	transition: all 0.4s;
}
.mk-post__share-link:hover {
	opacity: 0.9;
}
.mk-post__share {
	margin-top: 24px;
}
.mk-post__nav-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mk-post-link {
	padding: 24px;
	display: flex;
	gap: 24px;
	transition: all 0.4s;
	justify-content: space-between;
}
.mk-post-link__icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	transition: all 0.3s;
}
.mk-post-link__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.mk-prev-post .mk-post-link__content {
	align-items: flex-end;
}
.mk-post-link__info {
	font-weight: 900;
	font-size: 20px;
	line-height: 100%;
	text-transform: uppercase;
	transition: color 0.4s;
}

.mk-prev-post .mk-post-link__info {
	text-align: right;
	color: var(--color-accent-500);
}
.mk-prev-post {
	border: 1px solid var(--color-accent-500);
}
.mk-prev-post .mk-post-link__icon {
	transform: rotate(90deg);
	color: var(--color-accent-500);
}
.mk-prev-post:hover {
	background-color: var(--color-accent-500);
}
.mk-prev-post:hover .mk-post-link__icon {
	color: var(--color-base-white);
	transform: rotate(135deg);
}
.mk-prev-post:hover .mk-post-link__info {
	color: var(--color-base-white);
}
.mk-prev-post:hover .slider-block__link {
	color: var(--color-base-white);
}
.mk-prev-post:hover .slider-block__link-text,
.mk-prev-post:hover .slider-block__link-icon {
	transform: translateX(0px);
}

.mk-next-post .mk-post-link__info {
	text-align: left;
	color: var(--color-neutral-400);
}
.mk-next-post {
	border: 1px solid var(--color-neutral-400);
}
.mk-next-post .mk-post-link__icon {
	color: var(--color-neutral-400);
}
.mk-next-post .slider-block__link {
	color: var(--color-neutral-400);
}

.mk-next-post:hover {
	background-color: var(--color-neutral-400);
}
.mk-next-post:hover .mk-post-link__icon {
	color: var(--color-base-white);
	transform: rotate(-45deg);
}
.mk-next-post:hover .mk-post-link__info {
	color: var(--color-base-white);
}
.mk-next-post:hover .slider-block__link {
	color: var(--color-base-white);
}
.mk-next-post:hover .slider-block__link-text,
.mk-next-post:hover .slider-block__link-icon {
	transform: translateX(0px);
}

.mk-next-post:hover .slider-block__link {
	color: var(--color-base-white);
}

.mk-project__info .news__card-date,
.blog-post__title-inner .news__card-date {
	font-size: 14px;
	font-weight: 400;
	text-align: left;
}
.mk-post__share-nav li {
	position: relative;
}
.share-copy-toast {
	position: absolute;
	bottom: 115%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background-color: var(--color-accent-500);
	color: #ffffff;
	font-size: 10px;
	padding: 6px 12px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	z-index: 1;
}

.share-copy-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.mk-post__share .mk-container {
	overflow: visible;
}
.mk-post__share-nav ul {
	gap: 12px;
}
/* blog post styles */

/* landing hero styles */
.mk-container--left {
	padding-left: calc(50vw - 618px - 10px);
}
.landing-hero-fix {
	height: 150px;
}
.landing-hero {
	width: 100%;
	height: calc(100vh - 150px);
	overflow: hidden;
}
.landing-hero__left {
	display: flex;
	flex-direction: column;
}
.landing-hero__inner {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.landing-hero__title {
	font-weight: 900;
	font-size: 48px;
	line-height: 125%;
	text-transform: uppercase;
	color: var(--color-primary-500);
	font-style: italic;
}
.mk-landing-hero-btn {
	min-width: 197px;
}
.landing-hero__left {
	height: 100%;
	justify-content: center;
}
.landing-hero__text {
	max-width: 414px;
}
.landing-hero__right {
	overflow: hidden;
	height: 100%;
}
.landing-hero__gallery-swiper,
.landing-hero__gallery {
	height: 100%;
}
.landing-hero__gallery-swiper {
	position: relative;
}
.square-pagination.landing-hero__pagination {
	position: absolute;
	z-index: 2;
	bottom: 24px;
	left: 24px;
	width: fit-content;
}
.landig-gallery__slide {
	height: 100%;
}
.landig-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.landing-separator {
	margin: 96px 0;
}
/* landing hero styles */

/* landing texts styles */
.landing-texts__title {
	max-width: 857px;
	padding-top: 5px;
	color: var(--color-primary-500);
}
.landing-texts__middle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mk-container--right {
	padding-right: calc(50vw - 618px - 10px);
}
.landing-texts__middle-left {
	/* aspect-ratio: 710 / 624; */
	overflow: hidden;
	width: 100%;
	position: relative;
}
.landing-texts__middle-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	inset: 0;
}
.landing-texts__text li,
.landing-texts__text p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0%;
	color: var(--color-primary-400);
}
.landing-texts__text strong {
	font-weight: 600;
}
.landing-texts__text h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0%;
	color: var(--color-primary-400);
}
.landing-texts__list-block {
	background-color: var(--color-surface-100);
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 24px 16px;
}
.landing-texts__list-block ul {
	list-style-type: revert;
	list-style-position: inside;
}
.landing-texts__middle-right-top {
	padding: 0px 16px 24px;
}
.landing-texts__text {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.landing-texts {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
/* landing texts styles */

/* landing slider styles  */
.main-produts .swiper-slide,
.landing-projects .swiper-slide,
.landing-products .swiper-slide {
	height: auto;
}
.slider-card__content-top {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.slider-card__content-top-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	letter-spacing: 0%;
}
.slider-card__content-top-text:empty {
	display: none;
}
.slider-card__content-top-text {
	color: var(--color-primary-500);
}
.landing-products .slider-card__content-top-text {
	color: rgba(0, 0, 0, 0.5);
}
.slider-block__nav.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: none;
}
.slider-card__date {
	position: absolute;
	z-index: 1;
	min-width: 191px;
	background-color: var(--color-accent-500);
	color: var(--color-base-white);
	text-align: center;
	justify-content: center;
	align-items: center;
	display: flex;
	padding: 15px;
	font-weight: 400;
	font-size: 14px;
	line-height: 125%;
	letter-spacing: 0%;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: all 0.4s;
	will-change: opacity, transform;
}
.slider-card:hover .slider-card__date {
	opacity: 1;
	transform: translateY(0px);
}
.slider-card__date.landing {
	top: 16px;
	left: 16px;
}
.slider-card__date.projects {
	top: 24px;
	left: 24px;
}
/* landing slider styles  */

/* projects styles */
.mk-projects-list {
	display: grid;
	row-gap: 48px;
	column-gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}
.slider-card__img-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	transition: transform 0.4s;
}
.slider-card__img-play svg {
	width: 100%;
	height: 100%;
	display: block;
}
.video-card:hover .slider-card__img-play {
	transform: translate(-50%, -50%) scale(1.1);
}
/* projects styles */

/* project gallery styles */
.mk-project__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
}
.project-gallery__inner {
	margin-top: 24px;
	overflow: hidden;
}

.project-gallery__item {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.project-gallery__item-img {
	aspect-ratio: 610 / 300;
	overflow: hidden;
	display: block;
	transition: transform 0.4s;
	width: calc(50% - 10px);
	flex-shrink: 0;
}
.project-gallery__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.project-gallery__item > :nth-child(1) {
	width: 100%;
	max-height: 600px;
}
/* project gallery styles */

/* all products page styles */
.mk-main-product__page .breadcrumbs-section + .border-separator,
.mk-main-product__catalog .breadcrumbs-section + .border-separator,
.mk-main-products .breadcrumbs-section + .border-separator {
	display: none;
}
.products-grid__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 48px;
	column-gap: 20px;
}
.products-grid__card {
	width: calc(33.333% - (40px / 3));
	height: auto;
}
.products-grid__card .slider-card__more {
	margin-top: auto;
}
.products-grid__card .slider-card__content-top-text {
	color: var(--color-primary-300);
}
.mk-product-text__inner li,
.mk-product-text__inner p {
	color: var(--color-primary-400);
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0%;
	font-weight: 400;
}
.mk-product-text__inner ol,
.mk-product-text__inner p,
.mk-product-text__inner ul {
	margin-bottom: 1rem;
}

.mk-product-text__inner p:empty {
	line-height: 0;
	margin: 0;
	padding: 0;
}

.mk-product-text__inner li {
	display: list-item;
}

.mk-product-text__inner ol,
.mk-product-text__inner ul {
	display: block;
	margin-block-start: 1em;
	margin-block-end: 1em;
	padding-inline-start: 40px;
	unicode-bidi: isolate;
	list-style-type: auto;
}

.mk-product-text__inner ul li::marker {
	font-size: 20px;
	line-height: normal;
	vertical-align: middle;
}

.mk-product-text__inner u,
.mk-product-text__inner strong {
	font-weight: 600;
}
.mk-pp-slider {
	margin-top: 48px;
}
.mk-pp-slider .mk-project__info {
	flex-direction: column;
	gap: 0;
	align-items: flex-start;
	margin-top: 0;
}

.mk-pp-slider .project-gallery__inner {
	margin-top: 48px;
}
.mk-pp-slider .slider-block__nav {
	margin-top: 10px;
	margin-left: auto;
}
.mk-pp-slider .project-gallery__item > :nth-child(1) {
	max-height: 400px;
}
.files-section--eins .files-list > :last-child {
	border-bottom: none;
}
.mk-pp-slider__inner:not(:has(.swiper-slide)) .slider-block__nav,
.mk-pp-slider__inner :not(:has(.swiper-slide)) .project-gallery__inner {
	display: none;
}
.mk-product-seo-text .mk-product-text__inner {
	border-top: 1px solid var(--color-primary-500);
	border-bottom: 1px solid var(--color-primary-500);
	padding: 48px 0;
}
.otsup-imba-1-na-saite {
	margin-top: 72px;
}
.products-grid__card-black .slider-card__arrow {
	color: var(--color-base-white);
	background-color: var(--color-primary-500);
}
/* all products page styles */

/* product hero styles */
.product-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.product-hero__gallery {
	overflow: hidden;
	display: flex;
	gap: 20px;
	max-height: 640px;
}
.product-hero__thumbs {
	flex-shrink: 0;
	width: 178px;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.product-hero__thumbs-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.product-hero__thumbs-inner > .swiper {
	width: 100%;
	height: 100%;
}
.product-hero__main {
	width: 100%;
	overflow: hidden;
	aspect-ratio: 412 / 640;
	position: relative;
	height: 100%;
	max-height: 640px;
}
.product-hero__main-nav {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 1;
}
.product-hero__main-item {
	width: 100%;
	height: 100%;
}
.product-hero__main-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.main-swiper {
	height: 100%;
}
.product-hero__thumbs-item {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--color-surface-200);
}
.product-hero__thumbs-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.product-hero__title {
	font-weight: 900;
	font-style: italic;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: var(--color-primary-500);
}
.product-hero__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	color: var(--color-primary-500);
}
.product-hero__text-link {
	font-weight: 600;
	display: inline-block;
	margin-left: 4px;
	transition: all 0.4s;
	color: var(--color-primary-500);
}
.product-hero__text-link:hover {
	color: var(--color-accent-500);
}
.product-hero__cells {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.product-hero__cell {
	background-color: var(--color-accent-100);
	line-height: 24px;
	letter-spacing: 0%;
	color: var(--color-primary-500);
	padding: 10px 16px;
}
.product-hero__cell > span {
	font-weight: 500;
}
.product-hero__content-top {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.product-hero__btns {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product-hero__btns .mk-btn {
	width: 100%;
}
.product-hero__btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px;
	border: 1px solid var(--color-accent-500);
	font-weight: 900;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: var(--color-accent-500);
	transition: all 0.4s;
	font-style: italic;
}
.product-hero__btn:hover {
	color: var(--color-base-white);
	background-color: var(--color-accent-500);
}
.product-hero__btn svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.product-hero__btns .mk-btn,
.product-hero__btns .product-hero__btn {
	height: 56px;
}

.product-hero__content {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.product-hero__line {
	border: 1px solid var(--color-neutral-300);
}
.product-hero__text {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	color: var(--color-primary-500);
}
.product-hero__text > span {
	font-weight: 500;
}
/* product hero styles */

/* product tabs styles */
.product-tabs__nav {
	display: flex;
	gap: 0px;
}
.product-tabs__nav-btn {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	padding: 0;
	margin: 0;
	color: var(--color-primary-500);
	padding: 12px 16px;
	transition: all 0.4s;
	cursor: pointer;
	border: 1px solid var(--color-surface-100);
	background-color: transparent;
	outline: none;
}
.product-tabs__nav-btn.active {
	background-color: var(--color-surface-100);
}
.product-tabs__content {
	position: relative;
}
.product-tabs__tab.active {
	position: relative;
	opacity: 1;
	z-index: 1;
}
.product-tabs__tab {
	position: absolute;
	top: 0;
	z-index: -10;
	opacity: 0;
	transition: all 0.5s;
	width: 100%;
}
.table-tab {
	padding: 16px;
	background-color: var(--color-surface-100);
}

.table-tab > p {
	margin-top: 48px !important;
	margin-bottom: 12px !important;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0%;
	color: var(--color-primary-500) !important;
}

.table-tab > p > i {
	font: inherit;
}
.table-tab tr {
	border-bottom: 1px solid var(--color-surface-200) !important;
	padding: 8px 0px;
	display: flex;
	margin-bottom: 12px;
	gap: 30px;
}
.table-tab tr:last-child {
	margin-bottom: 0;
}
.table-tab tr td {
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: 0%;
	color: var(--color-primary-500) !important;
	height: auto !important;
}
.table-tab tr > :nth-child(2) {
	color: var(--color-primary-300) !important;
	font-weight: 400;
}
.table-tab tr td a {
	color: var(--color-primary-300) !important;
	text-decoration: underline;
}
.table-tab > table:last-child {
	margin-bottom: 0 !important;
}
.products-tab {
	padding: 16px;
	background-color: var(--color-surface-100);
}
.products-tab__card .slider-card__img-wrapper {
	aspect-ratio: 287 / 260;
	max-height: 260px;
}
.products-tab__card .slider-card__content-top-title {
	font-size: 18px;
}
.products-tab .swiper-slide {
	height: auto;
}
.products-tab .products-tab__card {
	height: 100%;
}
/* product tabs styles */

/* preloader test styles */
.preloader {
	width: 100%;
	height: 150vh;
	position: fixed;
	z-index: 30;
	overflow: hidden;
	background-color: var(--color-base-white);
	top: 0;
}
.preloader__inner {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* .preloader__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
} */
.preloader1 {
	position: relative;
	width: 100%;
	height: 100%;
}
.preloader1__part1 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 35px;
	position: relative;
}
.preloader1__part1-word {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.preloader1__word {
	max-height: 85px;
	clip-path: inset(0 100% 0 0);
}
.preloader1__part1-start {
	opacity: 0;
	flex-shrink: 0;
}
.preloader1__part1-start,
.preloader1__part1-start-fake {
	max-height: 183px;
}
.preloader1__part1-start-fake {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(calc(375px - 50%));
}

.preloader1__part2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.preloader1__part2-anchor {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}
.preloader1__part2-engi {
	position: absolute;
	top: 94%;
	transform: translate(0%, -100%);
	right: 0;
	width: 202px;
}
.preloader1__part2-engi-icon {
	opacity: 0;
	transform: translateX(150%);
	width: 99.9%;
}
.preloader1__part2-icon * {
	display: block;
}
.p1_p2-icon-1 {
	transform: translateX(-190px);
	opacity: 0;
}
.p1_p2-icon-1-circle {
	/* transform: scale(1.2); */
	/* opacity: 0; */
}
.p1_p2-icon-2 {
	transform: translateX(-55px);
	opacity: 0;
	position: relative;
}
.preloader1__part2-icon {
	position: relative;
}
.p1_p2-icon-1-circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: var(--color-primary-500);
	bottom: 0;
	right: 17px;
	position: absolute;
	opacity: 0;
	transform: scale(0.5);
}
.p1_p2-icon {
	overflow: visible;
}

.preloader.disabled {
	opacity: 0;
	pointer-events: none;
	z-index: -20;
	transition: all 0.7s;
}
.preloader-seen .preloader {
	display: none;
}
/* preloader test styles */

/* preloader normal styles */
.preloader2__content {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.preloader2__bg {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.5);
	background-color: var(--color-surface-200);
	clip-path: circle(0% at 50% 50%);
}

.p2-icon-right {
	transform: translateX(800px);
	opacity: 0;
}
.p2-icon-left {
	transform: translateX(-800px);
	opacity: 0;
}

.preloader2__center {
	position: relative;
	z-index: 2;
}
.p2-icon-self {
	overflow: visible;
}

.preloader2__num-wrap {
	font-weight: 900;
	font-style: Italic;
	font-size: 36px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary-500);
	overflow: hidden;
	position: absolute;
	bottom: 91px;
	opacity: 0;
	z-index: 2;
	transform: scale(0.5) translateY(91px);
	overflow: hidden;
	display: flex;
	gap: 0;
}
.preloader2__num {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	flex-shrink: 0;
	height: 1em;
	padding: 0.5px;
}
.preloader2__num span {
	height: 1em;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.preloader2__center-icon-m {
	display: none;
}
/* preloader normal styles */

/* new styles */
.mk-main-contacts .h1-title-wrapper {
	margin-top: 24px;
}
.mk-pp-slider__inner .title-h2,
.h1-title-wrapper .title-h2 {
	padding-top: 7px;
}
.section-margin--sm {
	margin-top: 48px;
}
.bottom-border-block {
	padding-bottom: 48px;
	border-bottom: 1px solid var(--color-primary-500);
}
.sertificates--about .sertificates__left-btn {
	display: none;
}
.sertificates--about .sertificates__inner {
	margin: 96px 0px;
}
.sertificates__left-text {
	color: var(--color-base-black);
}
.text-white {
	color: var(--color-base-white);
}
.text-neutral-500 {
	color: var(--color-neutral-500);
}
.text-primary-500 {
	color: var(--color-primary-500) !important;
}
.text-black {
	color: var(--color-base-black);
}
.files-section--blog-page {
	margin-top: 24px;
}
/* new styles */
