:root {
	--size: calc(100vw / 14);
	--zoom: calc(100vw / 1920);
}
@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/HelveticaNeueCyr-Lig.woff') format('woff');
	font-weight: 300;
	font-style: normal
}

@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/HelveticaNeueCyr-Rom.woff') format('woff');
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/HelveticaNeueCyr-Med.woff') format('woff');
	font-weight: 500;
	font-style: normal
}

@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/HelveticaNeueCyr-Bol.woff') format('woff');
	font-weight: 600;
	font-style: normal
}

@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/HelveticaNeueCyr-Bla.woff') format('woff');
	font-weight: 700;
	font-style: normal
}

html, body {
	margin: 0;
	padding: 0;
}

a {
	transition: 0.2s;
	cursor: pointer;
}

.wrapper * {
	box-sizing: border-box;
}
.wrapper {
	box-sizing: border-box;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
	backdrop-filter: blur(15px);
	z-index: 1000;
}
.header__left {
	display: flex;
}
.header__home {
	margin-right: 60px;
	opacity: 0.5;
}
.header__home:hover {
	opacity: 1;
}
.header ul {
	list-style: none;
}
.header__menu  ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	grid-gap: 40px;
	margin: 0;
	padding: 0;
}

.header__menu ul li a {
	color: #FFFFFF;
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.4;
	text-decoration: none;
}
.header__menu ul li a:hover {
	color: #0762B1;
}
.header__menu ul li a:first-child:not(:last-child)::after {
	content: '';
	position: relative;
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	margin-left: 8px;
	border-style: solid;
	border-width: 5.2px 4px 0 4px;
	border-color: #fff transparent transparent transparent;
	transform: translateY(-50%);
}
.header__menu ul li {
	position: relative;
	z-index: 10;
}

.header__menu ul li ul {
	position: absolute;
	top: 100%;
	left: 100%;
	display: flex;
	flex-direction: column;
	grid-gap: 0;
	width: 240px;
	padding: 38px 0 14px;
	transform: scale(1, 0.8) translateX(-80px);
	transform-origin: 0 0;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s;
}
.header__menu ul li:hover ul {
	transform: scale(1) translateX(-80px);
	opacity: 1;
	pointer-events: all;
}
.header__menu ul li ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 64px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 12px 20.8px 12px;
	border-color: transparent transparent #333333 transparent;
}
.header__menu ul li ul::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0%;
	width: 100%;
	height: calc(100% - 20px);
	background: #333333;
}
.header__menu ul li ul li a {
	display: block;
	width: 100%;
	padding: 4px 20px;
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #fff;
	transition: background 0.2s, color 0.2s, font-weight 0.2s, padding 1s;
}
.header__menu ul li ul li:not(:last-child) a {
	border-bottom: 1px solid #4B4B4B;
}
.header__menu ul li ul li a:hover {
	background: #0762B1;
	color: #fff;
	font-weight: 600;
	padding-right: 10px;
	transition: background 0.2s, color 0.2s, font-weight 0.2s, padding 0.1s;
}

.lang {
	display: flex;
	grid-gap: 20px;
	margin: 0;
}
.lang a {
	color: #FFFFFF;
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.4;
	text-decoration: none;
	text-transform: uppercase;
}
.lang a:hover {
	color: #0762B1;
}

.header__burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 21px;
	margin: 0;
	border: none;
	padding: 0;
	background-color: transparent;
}
.header__burger span {
	width: 100%;
	height: 3px;
	background-color: #fff;
}

body .list-disc {
	position: relative;
	padding-left: 0 !important;
	list-style: none;
}
.list-disc li {
	position: relative;
}
.list-disc li::before {
	content: '';
	position: absolute;
	top: 6px;
	left: -14px;
	width: 5px;
	height: 5px;
	margin-right: 10px;
	border-radius: 50%;
	background-color: #ffffff;
	opacity: 0.7;
}

#allrecords {
	padding-top: 60px;
}

.popover {
	position: relative;
	display: inline-block;
	margin-left: 0.6em;
	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	background-color: #fff;
	color: #333;
}

.popover .tn-atom__tip {
	background: #fff;
	border-radius: 8px;
	top: auto;
	bottom: 100%;
	left: 50%;
	width: 80vw;
	transform: translateX(-36%);
	pointer-events: none;
}
.popover:hover .tn-atom__tip {
	display: block;
	pointer-events: all;
}

.services {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}
.service {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	min-height: 200px;
	border: 1px solid #fff;
	padding: 48px;
}
.service__number {
	position: absolute;
	top: 10px;
	left: 10px;
	color: #FFFFFF;
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	z-index: 10;
}
.service__title {
	position: relative;
	margin-bottom: 10px;
	color: #FFFFFF;
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 600;
	font-size: 30px;
	line-height: 1.4;
	text-transform: uppercase;
	z-index: 10;
}
.service__desc {
	position: relative;
	color: #FFFFFF;
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
	z-index: 10;
	margin-bottom: 30px;
}
.service__tags {
	position: relative;
	color: #FFFFFF;
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	z-index: 10;
}
.service__icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 22px;
	height: 28px;
	transform: rotate(-45deg);
	z-index: 10;
}
.service__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	z-index: 1;
	transition: 0.2s;
}
.service:hover .service__img {
	opacity: 0.4;
}

.title-lg {
	margin-bottom: 60px;
	color: #ffffff;
	font-size: 180px;
	font-family: 'Helvetica';
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
}

.wpcf7-form {
	width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}
.wpcf7-form .wpcf7-form-control {
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	margin: 0;
	border: none;
	border-bottom: 1px solid #fff;
	padding: 0;
	color: #fff;
	font-size: 16px;
	font-family: Helvetica;
	line-height: 1.33;
	background: none;
	outline: 0;
	border-radius: 0;
}
.wpcf7-form .wpcf7-form-control.wpcf7-not-valid {
	border-bottom: 1px solid #f73838;
}

.wpcf7-form .wpcf7-textarea {
	height: 100px;
	resize: none;
	color: #fff;
	font-size: 16px;
	font-family: Helvetica;
	line-height: 1.33;
}
.wpcf7-form select option {
	color: #333;
	background-color: #f6f6f6;
}
.wpcf7-form label {
	color: #ffffff;
	font-family: Helvetica;
	font-size: 14px;
	font-weight: 500;
	opacity: .7;
}
.btn-submit {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	border: none;
	background-color: #0762b1;
	color: #ffffff;
	font-family: Helvetica;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
}

.combine-text {
	position: relative;
	top: 50%;
	padding: 1.4rem;
	color: #222222;
	font-size: calc(30 * var(--zoom));
	font-family: "Helvetica", Arial, sans-serif;
	line-height: 1;
	font-weight: 400;
	background-position: center center;
	border-color: transparent;
	border-style: solid;
	transform: translateY(-50%);
}
.combine-text .big {
	margin-right: 30px;
    font-size:  calc(210 * var(--zoom));
    line-height: 0.8;
    font-weight: 600;
    text-transform: uppercase;
}
.combine-text .small {
	color: #222222;
	font-size: calc(30 * var(--zoom));
	font-family: "Helvetica", Arial, sans-serif;
	line-height: 1;
	text-transform: none;
    font-weight: 400;
    vertical-align: top;
}

.form__row-number {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 16px;
}

.form__row-number br {
	display: none;
}

.grecaptcha-badge {
	opacity: 0;
}


@media (max-width: 1200px) {
	.title-lg {
		margin-bottom: 40px;
		font-size: 100px;
	}
	.services {
		grid-template-columns: repeat(2, 1fr);
	}
	.service {
		padding: 30px;
	}
	.service__title {
		font-size: 24px;
	}
}
@media (max-width: 560px) {
	.header {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	.header__burger {
		display: flex;
	}
	.header__menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		height: calc(100vh - 50px);
		padding: 0 0 3rem 0;
		background-color: #333333;
	}
	.header__menu ul {
		flex-direction: column;
		grid-gap: 0;
	}
	.header__menu ul li {
		display: block;
	}
	.header__menu ul li:not(:last-child) {
		border-bottom: 1px solid #4B4B4B;
	}
	.header__menu ul li a {
		display: flex;
		align-items: center;
		padding: 2px 1rem;
		font-size: 2rem;
	}
	.header__menu ul li a:hover {
		background-color: #0762B1;
		color: #fff;
	}
	.header__menu ul li a:first-child:not(:last-child)::after {
		top: 0;
		transform: none;
	}
	.header__menu ul li ul {
		display: none;
	}
	.header__menu ul li:hover ul,
	.header__menu ul li ul {
		display: none;
		position: static;
		width: 100%;
		padding: 0;
		transform: none;
		opacity: 1;
		pointer-events: all;
	}
	.header__menu ul li ul::before,
	.header__menu ul li ul::after {
		display: none;
	}

	.title-lg {
		margin-bottom: 20px;
		font-size: 60px;
	}
	.services {
		grid-template-columns: repeat(1, 1fr);
	}
	.service__img {
		opacity: 0.4;
	}
	.combine-text {
		padding: 0.4em;
	}
	.combine-text .big {
		margin: 0;
		line-height: 1;
	}
	.combine-text .small {
		display: inline-block;
		margin-bottom: 10px;
		font-size: 12px;
		max-width: 40vw;
	}
	.combine-text .big .small {
		padding-left: 10px;
		vertical-align: bottom;
	}
}