@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;600;700&display=swap");

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus, :active {
	outline: none;
}

a:focus, a:active {
	outline: none;
}

nav, footer, header, aside {
	display: block;
}

html, body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input, button, textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a, a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: 400;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

a {
	color: inherit;
}

input[type=number] {
	-moz-appearance: textfield;
}

body {
	font-family: "Inter", sans-serif;
	font-weight: 500;
	background: #ffffff;
	color: #000000;
	overflow-x: hidden;
	line-height: 1.4;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}
@media (max-width: 550px) {
	html {
		scroll-padding-top: 70px;
	}
}

[class*=__container] {
	max-width: 1372px;
	margin: 0 auto;
	padding: 0 30px;
}
@media (max-width: 650px) {
	[class*=__container] {
		padding: 0 16px;
	}
}

.wrapper {
	overflow: hidden;
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

body:after {
	content: "";
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1001;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1100px) {
	body:after {
		display: none;
	}
}
body.black:after {
	opacity: 1;
}

main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

body.lock {
	overflow: hidden;
}

.gray {
	background: #F4F4F4;
}

.block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 100px;
	padding: 100px 0;
	scroll-margin-top: -100px;

}
@media (max-width: 1100px) {
	.block {
		gap: 90px;
		padding: 90px 0;
	}
}
@media (max-width: 650px) {
	.block {
		gap: 64px;
		padding: 64px 0;
	}
}

.title {
	text-align: left;
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 60px;
	line-height: 1.2;
}
@media (max-width: 1100px) {
	.title {
		margin-bottom: 48px;
	}
}
@media (max-width: 650px) {
	.title {
		font-size: 32px;
	}
}

.header {
	color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 27px 0;
	z-index: 1010;
	-webkit-transition: background 0.3s ease 0s;
	transition: background 0.3s ease 0s;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header.show {
	background: #3F69FF;
	color: #fff;
	border-bottom: 0;
}
.header.header-white {
	background: #fff;
	color: #000;
}
.header.header-white.show {
	background: #3F69FF;
	color: #fff;
	border-bottom: 0;
}
@media (max-width: 1100px) {
	.header:after {
		content: "";
		position: absolute;
		left: -100%;
		top: 0;
		width: 100%;
		height: 100%;
		background: #fff;
		pointer-events: none;
		opacity: 0;
		z-index: 9;
		visibility: hidden;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	body.lock .header:after {
		opacity: 1;
		left: 0;
		visibility: visible;
		pointer-events: auto;
	}
}
@media (max-width: 550px) {
	.header {
		padding: 20px 0;
	}
}
.header__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header__logo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 149px;
	flex: 0 0 149px;
	margin-top: -11px;
	position: relative;
	z-index: 10;
	height: 38px;
	line-height: 1;
}
.header__logo svg {
	width: 100%;
}
.header__logo svg path.toBlack {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header.header-white .header__logo svg path.toBlack {
	fill: #000;
}
.header.header-white.show .header__logo svg path.toBlack {
	fill: #fff;
}
@media (max-width: 1100px) {
	body.lock .header__logo path.toBlack {
		fill: #000 !important;
	}
}
@media (max-width: 550px) {
	.header__logo {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 120px;
		flex: 0 0 120px;
		margin-top: -7px;
	}
}
.header__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}
@media (max-width: 550px) {
	.header__actions {
		gap: 30px;
	}
}
.header__call {
	font-size: 20px;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	white-space: nowrap;
}
@media (max-width: 1310px) {
	.header__call {
		font-size: 18px;
	}
}
@media (max-width: 1100px) {
	.header__call {
		font-size: 18px;
	}
}
.header__call svg {
	width: 26px;
	display: none;
}
.header__call svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header.header-white .header__call svg path {
	fill: #000;
}
.header.header-white.show .header__call svg path {
	fill: #fff;
}
@media (max-width: 550px) {
	.header__call {
		position: relative;
		z-index: 10;
	}
	.header__call svg {
		display: block;
	}
	body.lock .header__call svg path {
		fill: #000 !important;
	}
	.header__call span {
		display: none;
	}
}
.header__search {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 35px;
	flex: 0 0 35px;
	width: 35px;
	height: 35px;
	position: relative;
}
@media (max-width: 550px) {
	.header__search {
		display: none;
	}
}
.header__search-body {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	border: 1px solid transparent;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__search-body > svg {
	width: 19px;
}
.header__search-body > svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header.header-white .header__search-body > svg path {
	stroke: #000;
}
.header.header-white.show .header__search-body > svg path {
	stroke: #fff;
}
.header__search-body:hover {
	border: 1px solid #FFF;
}
.header.header-white .header__search-body:hover {
	border: 1px solid #000;
}
.header.header-white.show .header__search-body:hover {
	border: 1px solid #fff;
}
.header__search-wrapper {
	right: 0;
	z-index: 10;
	pointer-events: none;
	opacity: 0;
	width: 0;
	top: 0;
	height: 35px;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 6px;
	border: 1px solid #FFF;
	background: #FFF;
	padding: 4px 9.5px;
}
.header__search-wrapper svg path {
	stroke: rgb(63, 105, 255);
}
.header.header-white .header__search-wrapper {
	border-color: #000;
}
.header.header-white.show .header__search-wrapper {
	border-color: transparent;
}
.header__search-wrapper svg {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 19px;
	flex: 0 0 19px;
	width: 19px;
}
.header__search-wrapper img {
	width: 25px;
	cursor: pointer;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25px;
	flex: 0 0 25px;
}
.header__search-wrapper input {
	width: 100%;
	height: 100%;
	font-size: 17px;
	padding: 4px 10px;
	font-weight: 500;
	color: #3C3434;
}
.header__search-wrapper form{
	flex:1 1 auto;
}
.header__search-wrapper input::-webkit-input-placeholder {
	color: #3C3434;
	font-weight: 500;
}
.header__search-wrapper input::-moz-placeholder {
	color: #3C3434;
	font-weight: 500;
}
.header__search-wrapper input:-ms-input-placeholder {
	color: #3C3434;
	font-weight: 500;
}
.header__search-wrapper input::-ms-input-placeholder {
	color: #3C3434;
	font-weight: 500;
}
.header__search-wrapper input::placeholder {
	color: #3C3434;
	font-weight: 500;
}
.header__search.show .header__search-wrapper {
	width: 1113px;
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1372px) {
	.header__search.show .header__search-wrapper {
		width: calc(831px + 282 * (100vw - 1101px) / 271);
	}
}
@media (max-width: 1100px) {
	.header__search.show .header__search-wrapper {
		width: calc(335px + 466 * (100vw - 651px) / 449);
	}
}
@media (max-width: 650px) {
	.header__search.show .header__search-wrapper {
		width: calc(270px + 80 * (100vw - 551px) / 99);
	}
}
.header__burger {
	display: none;
}
@media (max-width: 1100px) {
	.header__burger {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 32px;
		flex: 0 0 32px;
		z-index: 10;
		width: 32px;
		height: 18px;
		display: block;
		cursor: pointer;
		position: relative;
	}
	.header__burger:after, .header__burger:before {
		content: "";
		position: absolute;
		left: 50%;
		width: 100%;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		height: 2px;
		background: #fff;
	}
	.header__burger span {
		position: absolute;
		left: 50%;
		width: 100%;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		height: 2px;
		background: #fff;
	}
	.header.header-white .header__burger span, .header.header-white .header__burger:after, .header.header-white .header__burger:before {
		background: #000;
	}
	.header.header-white.show .header__burger span, .header.header-white.show .header__burger:after, .header.header-white.show .header__burger:before {
		background: #fff;
	}
	.header__burger:after {
		top: 0;
	}
	.header__burger:before {
		bottom: 0;
	}
	.header__burger.active span, .header__burger.active:after, .header__burger.active:before {
		background: #000 !important;
	}
	.header__burger.active span {
		-webkit-transform: translate(-50%, -50%) scale(0);
		transform: translate(-50%, -50%) scale(0);
	}
	.header__burger.active:after {
		top: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(45deg);
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.header__burger.active:before {
		bottom: auto;
		top: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(-45deg);
		transform: translate(-50%, -50%) rotate(-45deg);
	}
}

.menu {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header.onSearch .menu {
	opacity: 0;
	pointer-events: none;
}
.menu__search {
	display: none;
}
@media (max-width: 550px) {
	.menu__search {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: auto 16px 25px;
		border-bottom: 1px solid #000;
		padding-bottom: 8px;
	}
	.menu__wrapper .menu__search{
		margin: 0;
	}
	.menu__search input {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		font-weight: 500;
		font-size: 14px;
	}
	.menu__search input::-webkit-input-placeholder {
		color: #777777;
		font-weight: 500;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__search input::-moz-placeholder {
		color: #777777;
		font-weight: 500;
		-moz-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__search input:-ms-input-placeholder {
		color: #777777;
		font-weight: 500;
		-ms-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__search input::-ms-input-placeholder {
		color: #777777;
		font-weight: 500;
		-ms-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__search input::placeholder {
		color: #777777;
		font-weight: 500;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__search input:focus::-webkit-input-placeholder {
		opacity: 0;
	}
	.menu__search input:focus::-moz-placeholder {
		opacity: 0;
	}
	.menu__search input:focus:-ms-input-placeholder {
		opacity: 0;
	}
	.menu__search input:focus::-ms-input-placeholder {
		opacity: 0;
	}
	.menu__search input:focus::placeholder {
		opacity: 0;
	}
	.menu__search svg {
		margin-right: 16px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16px;
		flex: 0 0 16px;
		height: 16px;
	}
	.menu__search svg path {
		stroke: #000;
	}
}
.menu__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.menu__wrapper {
	position: absolute;
	left: 50%;
	top: 89px;
	z-index: 1020;
	-webkit-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	background: #fff;
	color: #3C3434;
	width: 100%;
	overflow-y: auto;

	padding: 0 60px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1101px) {
	.menu__wrapper {
		max-height: calc(100vh - 89px) !important;
	}
	.header.show .menu__wrapper {
		border-bottom: 1px solid #CACACA;
	}
}
@media (max-width: 1330px) {
	.menu__wrapper {
		padding: 0 30px;
	}
}

@media (max-width: 1100px) {
	.menu__wrapper {
		border-top: none;
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
		overflow: hidden;
		display: block;
		left: 100%;
		padding: 0;
		padding-top: 7px;
		padding-bottom: 20px;
		min-height: calc(100vh - 95px);
		max-width: 100vw;
		height: 0;
		background: #fff;
		display: flex;
	}
	.menu__container{
		flex-direction: column;
		-webkit-box-align:stretch;
		width: 100%;
		-ms-flex-align:stretch;
		align-items: stretch;
		gap:30px;
		justify-content: space-between;
	}
	.menu__list{
		position: relative;
	}
	.menu{
		overflow-x:hidden;
	}
	.has-sublist a.active ~ .menu__wrapper {
		height: auto;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		left: 0;
	}
}
.menu__left {
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	padding: 50px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 311px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 24px;
	font-weight: 700;
	padding-right: 75px;
	border-right: 1px solid #CACACA;
}
@media (max-width: 1330px) {
	.menu__left {
		padding-right: 35px;
	}
}
@media (max-width: 1100px) {
	.menu__left {
		width: 100%;
		min-width: 0;
		padding-right: 0;
		font-weight: 500;
		border: none;
		padding: 0;
		font-size: 20px;
	}
	.menu__left a {
		width: 100%;
	}
}
.menu__left a {
	margin-bottom: 18px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__left a svg{
	display: none;
}
@media (min-width: 1101px) {
	.menu__left a.active {
		color: #3F69FF;
	}
	.menu__left a:hover {
		color: #3F69FF;
	}
}
.menu__left a:last-child {
	margin-bottom: 0;
}

.menu__body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 82px 0 40px;
	padding-left: 130px;
	font-size: 18px;
	-webkit-columns: 3 220px;
	-moz-columns: 3 220px;
	columns: 2 220px;
	-webkit-column-gap: 80px;
	-moz-column-gap: 80px;
	column-gap: 40px;
	display: none;
	position: relative;
}
@media(min-width: 1101px){
	.menu__body{
		max-height: 100% !important;
	}
}
.menu__body.target {
	display: block;
}
.menu__body > span {
	content: attr(data-title);
	display: block;
	color: #656565;
	position: absolute;
	top: 50px;
	left: 130px;
	font-size: 41px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 41.488px */
}
@media (max-width: 1330px) {
	.menu__body {
		padding-left: 60px;
		-webkit-column-gap: 60px;
		-moz-column-gap: 60px;
		column-gap: 60px;
	}
	.menu__body > span {
		left: 60px;
	}
}

.menu__body a {
	display: block;
	margin-bottom: 15px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__body a:last-child {
	margin-bottom: 0;
}
.menu__body a:hover {
	color: #3F69FF;
}
@media (max-width: 1100px) {
	.menu__body {
		padding: 0 0 0 16px !important;
		display: flex;
		flex-direction: column;
		font-size: 16px;
		opacity: 0;
		max-height: 0;
		pointer-events: none;
		overflow: hidden;
	}
	.menu__body.target{
		display: flex;
	}
	.menu__body.active{
		opacity: 1;
		pointer-events: auto;
	}
	.menu__left a {
		margin-bottom: 20px;
		font-size: 18px;
		display: flex;
		align-items: center;
		gap:7px;
	}
	.menu__left a svg{
		display: block;
		flex:0 0 10px;
		transition: all 0.3s ease 0s;
	}
	.menu__left a.arrow svg{
		transform:rotate(-180deg);
	}
	.menu__body a{
		font-size: 16px;
		display: block;
		margin-bottom: 16px;
	}
	.menu__body a:last-of-type{
		margin-bottom: 26px;
	}
	.menu__body > span {
		display: none;
	}
}
.menu__wrap {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 100%;
	padding: 82px 0 50px;
	padding-left: 80px;
	display: none;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 18px;
	row-gap: 14px;
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
.menu__wrap.target {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu__wrap > span {
	content: attr(data-title);
	display: block;
	color: #656565;
	position: absolute;
	top: 50px;
	left: 80px;
	font-size: 41px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 41.488px */
}
.menu__wrap a {
	min-height: 128px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(33.333% - 12px);
	flex: 0 0 calc(33.333% - 12px);
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 12px;
	border: 1px solid #DCDCDC;
}
.menu__wrap a:hover{
	border-color: #3F69FF;
}
.menu__wrap a img {
	width: 100%;
	max-width: calc(100% - 8px);
	max-height: 100%;
}
@media (max-width: 1330px) {
	.menu__wrap {
		padding-left: 30px;
	}
	.menu__wrap > span {
		left: 30px;
	}
}
.menu__wrap a b{
	display: none;
}
@media (max-width: 1250px) {
	.menu__wrap a {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 9px);
		flex: 0 0 calc(50% - 9px);
	}
}
@media (max-width: 1100px) {
	.menu__wrap {
		overflow: hidden;
		padding: 0px 0 0 16px !important;
		gap:0px;
		display: flex;
		flex-direction: column;
		opacity: 0;
		max-height: 0;
		flex-wrap:nowrap;
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
	.menu__wrap.target{
		display: flex;
	}
	.menu__wrap a{
		margin-bottom: 16px;
	}
	.menu__wrap a b{
		font-weight: 500;
		font-size: 16px;
		display: block;
	}
	.menu__wrap.active{
		opacity: 1;
		pointer-events: auto;
		margin-bottom: 26px;
	}
	.menu__wrap a{
		min-height: 0;
		flex:0 0 auto;
		display: block;
		background: none;
		border:none;
		border-radius: 0;
	}
	.menu__wrap img{
		display: none;
	}
	.menu__wrap > span {
		display: none;
	}
}
.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 35px;
	font-size: 18px;
}
@media (max-width: 1300px) {
	.menu__list {
		gap: 20px;
		font-size: 16px;
	}
}
@media (max-width: 1150px) {
	.menu__list {
		gap: 10px;
	}
}

@media (min-width: 1101px) {
	.menu__item:before {
		content: "";
		position: absolute;
		z-index: 10;
		bottom: 0;
		height: 31px;
		width: 100%;
		left: 0;
		pointer-events: none;
	}
	.menu__item:hover:before {
		pointer-events: auto;
	}
	.menu__item:hover .menu__wrapper {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}
	.menu__item:hover a svg {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
	.menu__item:hover a span:after {
		width: 100%;
		left: 0;
	}
}
@media (max-width: 1100px) {
	.menu__item {
		width: 100%;
	}
}
.menu__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
}
.menu__link svg {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10px;
	flex: 0 0 10px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.menu__link svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header.header-white .menu__link svg path {
	stroke: #000;
}
.header.header-white.show .menu__link svg path {
	stroke: #fff;
}
.menu__link > span {
	position: relative;
}
.menu__link > span:after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0;
	bottom: -4px;
	height: 3px;
	background: #3F69FF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.header.show .menu__link > span:after {
	background: #fff;
}
.menu-main__item{
	display: none;
}
@media (max-width: 1100px) {
	.menu__link svg {
		transform: rotate(-90deg) translateX(-1px);
	}
	.menu {
		position: absolute;
		left: -100%;
		top: 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		z-index: 8;
		visibility: visible;
		pointer-events: none;
		opacity: 0;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		overflow-y: auto;
	}
	.menu.active {
		visibility: visible;
		pointer-events: auto;
		left: 0;
		opacity: 1;
	}
	.menu__list {
		gap: 0;
		font-weight: 500;
		font-size: 20px;
		color: #000;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 95px 30px 30px;
	}
	.menu__list li {
		margin-bottom: 20px;
	}
	.menu__list li:last-child {
		margin-bottom: 0;
	}
	.menu__list a span:after {
		display: none;
	}
	.menu__list a svg path {
		stroke: #000 !important;
	}
	.menu-main__item{
		display: block;
		color:  #3C3434;
		font-size: 18px;
		font-weight: 700;
		line-height: 150%;
		margin-bottom: 32px !important;
		padding-bottom: 16px;
		width: 100%;
		border-bottom:1px solid rgba(119,119,119,0.5);
		display: flex;
		align-items: center;
		gap:14px;

	}
	.menu-main__item img{
		flex:0 0 30px;
		width: 30px;
	}

}
@media (max-width: 650px) {
	.menu__list {
		padding: 95px 16px 30px;
		gap: 0;
	}
}

.button {
	background: #3F69FF;
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 24px 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1.3;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.button img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16px;
	flex: 0 0 16px;
	margin-right: 8px;
}
.button:hover {
	background: #0036F8;
}

.main-portfolio {
	color: #fff;
	position: relative;
	padding: 90px 0 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.main-portfolio > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-portfolio > video {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-portfolio:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
	pointer-events: none;
}
.main-portfolio:before {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 150px;
	opacity: 0.4;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.76)), color-stop(49.44%, rgba(0, 0, 0, 0.4)), color-stop(74.06%, rgba(0, 0, 0, 0.19)), to(rgba(0, 0, 0, 0)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.4) 49.44%, rgba(0, 0, 0, 0.19) 74.06%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}
@media (max-width: 550px) {
	.main-portfolio {
		padding-top: 72px;
		padding-bottom: 40px;
	}
}
.main-portfolio__container {
	width: 100%;
	position: relative;
	z-index: 2;
}
.main-portfolio__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 155px;
}
.main-portfolio__content h1 {
	font-size: 64px;
	font-weight: 700;
	max-width: 644px;
	line-height: 110%;
	letter-spacing: -1.28px;
}
@media (max-width: 1100px) {
	.main-portfolio__content h1 {
		font-size: 58px;
	}
}
@media (max-width: 700px) {
	.main-portfolio__content h1 {
		font-size: 32px;
	}
}
@media (max-width: 1100px) {
	.main-portfolio__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-top: 145px;
	}
	.main-portfolio__content h1 {
		margin-bottom: 50px;
	}
}
@media (max-width: 700px) {
	.main-portfolio__content h1 {
		margin-bottom: 35px;
	}
	.main-portfolio__content a {
		width: 100%;
	}
}

@media (max-width: 1100px) {
	.services-block {
		background: #F4F4F4;
	}
}

.main-equipment {
	color: #fff;
	position: relative;
	padding: 90px 0 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 745px;
}
.main-equipment > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-equipment > video {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-equipment:before {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
@media (max-width: 550px) {
	.main-equipment {
		padding-bottom: 30px;
		padding-top: 72px;
	}
}
.main-equipment__container {
	width: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.main-equipment__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	padding-top: 50px;
}

@media (max-width: 650px) {
	.main-equipment__content {
		padding-top: 100px;
	}
}
.main-equipment__left {
	max-width: 570px;
}
@media (max-width: 1100px) {
	.main-equipment__content{
		min-height: 0;
	}
	.main-equipment__left {
		-ms-flex-item-align: stretch;
		-ms-grid-row-align: stretch;
		align-self: stretch;
		max-width: 750px;
	}
}
.main-equipment__title {
	font-size: 75px;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: -1.28px;
}
@media (max-width: 800px) {
	.main-equipment__title {
		font-size: 50px;
	}
}
@media (max-width: 650px) {
	.main-equipment {
		min-height: 620px;
	}
	.main-equipment__title {
		font-size: 32px;
	}
}
.main-equipment__subtitle {
	font-size: 23px;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: -0.44px;
	margin: 32px 0 64px;
}
@media (max-width: 800px) {
	.main-equipment__subtitle {
		font-size: 20px;
		margin-top: 20px;
	}
}
@media (max-width: 650px) {
	.main-equipment__subtitle {
		font-size: 16px;
		margin: 16px 0 31px;
	}
}
.main-equipment__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
}
@media (max-width: 650px) {
	.main-equipment__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}
}
.main-equipment__tocalc {
	padding: 24px 68px;
	border-radius: 8px;
	text-align: center;
	border: 2px solid #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.main-equipment__tocalc:hover {
	background: #3F69FF;
	border-color: #3F69FF;
}
@media (max-width: 650px) {
	.main-equipment__tocalc {
		padding: 13px 15px;
	}
}
@media (max-width: 650px) {
	.main-equipment__button {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}
.main-equipment__body {
	max-width: 644px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: #fff;
	gap: 16px;
}
.main-equipment__body p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	gap: 8px;
	padding: 12px;
	border-radius: 56px;
	background: #3F69FF;
}
.main-equipment__body p img {
	width: 24px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
}
.main-equipment__body p a{
	text-decoration: underline;
	text-underline-offset: 3px;
}
@media (max-width: 1290px) {
	.main-equipment__body {
		max-width: 400px;
	}
}
@media (max-width: 1100px) {
	.main-equipment__body {
		display: none;
	}
}
.services-block .main-equipment__body {
	display: none;
	max-width: 100%;
	gap: 10px;
}
.services-block .main-equipment__body p {
	font-size: 14px;
}
@media (max-width: 1100px) {
	.services-block .main-equipment__body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0 30px;
	}
	.services-block .main-equipment__body img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 22px;
		flex: 0 0 22px;
		width: 22px;
	}
}
@media (max-width: 650px) {
	.services-block .main-equipment__body {
		padding: 0 16px;
	}
}

.main-project {
	color: #fff;
	position: relative;
	padding: 90px 0 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	min-height: 520px;
}

.main-project > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-project > video {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-project:before {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 150px;
	opacity: 0.4;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.76)), color-stop(49.44%, rgba(0, 0, 0, 0.4)), color-stop(74.06%, rgba(0, 0, 0, 0.19)), to(rgba(0, 0, 0, 0)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.4) 49.44%, rgba(0, 0, 0, 0.19) 74.06%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}
@media (max-width: 1100px) {
	.main-project {
		padding-bottom: 32px;
	}
}
@media (max-width: 600px) {
	.main-project {
		padding-bottom: 20px;
	}
}
@media (max-width: 550px) {
	.main-project {
		padding-top: 72px;
	}
}
.main-project__container {
	width: 100%;
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
}

.main-project__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 60px;
}
.main-project__wrapper{
	display: flex;
	flex-direction: column;
	gap:30px;
}
.main-project__wrapper .button{
	padding-top: 22px;
	padding-bottom: 22px;
}
.main-project__content h1 {
	font-size: 64px;
	font-weight: 700;
	max-width: 700px;
	line-height: 100%;
	letter-spacing: -1.28px;
}
@media (max-width: 1100px) {
	.main-project__content h1 {
		font-size: 64px;
	}
	.main-project__wrapper .button{
		font-size: 14px;
		padding-top: 19px;
		padding-bottom: 19px;
	}
}
@media (max-width: 600px) {
	.main-project__content h1 {
		font-size: 32px;
	}
}
.main-project__content p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-size: 20px;
}
.main-project__wrapper:nth-child(2)>p{
	display: none;
}
@media (max-width: 1100px) {
	.main-project__wrapper:nth-child(1)>p{
		display: none;
	}
	.main-project__wrapper:nth-child(2)>p{
		display: flex;
	}
	.main-project__wrapper:nth-child(2){
		flex-direction: row;
		justify-content: space-between;
	}
}
.main-project__content p img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 15px;
	flex: 0 0 15px;
}
@media (max-width: 1100px) {
	.main-project__content {
		gap:22px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.main-project__content p {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.main-project__content h1 {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.main-project__content {

	}
}
@media (max-width: 600px) {
	.main-project__content p {
		display: none;
	}
	.main-project__content{
		gap:13px;
	}
	.main-project__content p {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.main-project__wrapper:nth-child(2){
		flex-direction: column;
		gap:25px;
	}
}

.portfolio__body {
	position: relative;
}
.portfolio__top {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	border-radius: 30px;
	border: 1px solid #3F69FF;
	background: #FFF;
	padding: 12px 24px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	display: none;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio__top svg {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 22px;
}
@media (max-width: 660px) {
	.portfolio__top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.portfolio__top.open {
		border-radius: 25px 25px 0 0;
		background: #3F69FF;
		color: #fff;
	}
	.portfolio__top.open svg {
		-webkit-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
}
.portfolio__filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}
.portfolio__filter p {
	cursor: pointer;
	font-size: 16px;
	line-height: 160%;
	padding: 12px 24px;
	border-radius: 100px;
	background: #FFF;
	color: #000;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio__filter p:hover {
	color: #3F69FF;
}
.portfolio__filter p.active {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 660px) {
	.portfolio__filter {
		position: absolute;
		top: 0px;
		width: 100%;
		z-index: 1;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		background: #3F69FF;
		padding: 0px 40px 24px;
		border-radius: 0 0 25px 25px;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.portfolio__top.open ~ .portfolio__filter {
		opacity: 1;
		pointer-events: auto;
		top: 48px;
		visibility: visible;
	}
	.portfolio__filter p {
		color: #FFF;
		border-radius: 0;
		padding: 5px 0;
		line-height: 120%;
		background: none;
	}
	.portfolio__filter p:hover {
		color: #fff;
	}
	.portfolio__filter p.active {
		background: #3F69FF;
		color: #fff;
	}
}
.portfolio__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
	margin: 50px 0;
}
@media (max-width: 1100px) {
	.portfolio__items {
		gap: 20px;
	}
}
@media (max-width: 660px) {
	.portfolio__items {
		gap: 15px;
		margin: 40px 0;
	}
}
.portfolio__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	background: #FFF;
	overflow: hidden;
	-webkit-box-shadow: 0px 4px 64px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 64px 0px rgba(0, 0, 0, 0.05);
	gap: 60px;
}
@media (max-width: 1100px) {
	.portfolio__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 25px;
	}
}
@media (max-width: 660px) {
	.portfolio__item {
		gap: 15px;
		border-radius: 6px;
	}
}
.portfolio__image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(51.3% - 30px);
	flex: 0 0 calc(51.3% - 30px);
	height: 460px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	overflow: hidden;
}
@media (max-width: 1100px) {
	.portfolio__image {
		width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		height: auto;
	}
}
.portfolio__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio__image:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.portfolio__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
	padding-right: 50px;
}
@media (max-width: 1100px) {
	.portfolio__content {
		padding-right: 0;
		padding: 20px;
		padding-top: 0;
	}
}
.portfolio__content a {
	border-radius: 4px;
	border: 1px solid #3F69FF;
	text-transform: uppercase;
	padding: 15px;
	color: #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	max-width: 200px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio__content a:hover {
	background: #3f69ff;
	color: #fff;
}
@media (max-width: 660px) {
	.portfolio__content {
		gap: 15px;
		padding: 15px;
		padding-top: 0;
	}
	.portfolio__content a {
		padding: 13.5px;
		font-size: 15px;
		width: 100%;
		max-width: 100%;
	}
}
.portfolio__loc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-bottom: -10px;
	font-size: 14px;
}
.portfolio__loc img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11px;
	flex: 0 0 11px;
	width: 11px;
}
.portfolio__name {
	font-size: 34px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.68px;
}
@media (max-width: 660px) {
	.portfolio__name {
		font-size: 21px;
	}
}
.portfolio__text {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
}
@media (max-width: 1100px) {
	.portfolio__text {
		-webkit-line-clamp: 5;
		font-size: 15px;
	}
}
@media (max-width: 660px) {
	.portfolio__text {
		font-size: 14px;
		-webkit-line-clamp: 11;
	}
}
.portfolio__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 660px) {
	.portfolio__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.portfolio__more {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	text-transform: uppercase;
	color: #3f69ff;
	font-size: 16px;
	font-weight: 700;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.portfolio__more img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 13px;
	flex: 0 0 13px;
	width: 13px;
}
.portfolio__more:after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0;
	bottom: -2px;
	height: 2px;
	background: #3f69ff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio__more:hover:after {
	width: 100%;
	left: 0;
}
.portfolio__pages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	font-size: 18px;
	line-height: 160%;
	gap: 10px;
}
@media (max-width: 660px) {
	.portfolio__pages {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 33px;
	}
}
.portfolio__pages a {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfolio__pages a:hover {
	color: #3F69FF;
}
.portfolio__pages a.active {
	color: #fff;
	border-radius: 4px;
	background: #3F69FF;
}

.main-aboutus {
	color: #fff;
	position: relative;
	padding: 90px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 560px;
	flex-direction: column;
	gap:22px;
}
@media(max-width: 1023px){
	.main-aboutus{
		min-height: 517px;
		gap:20px;
	}
}
.main-aboutus > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-aboutus > video {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-aboutus:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	pointer-events: none;
}
.main-project.main-aboutus:after{
	background: rgba(0, 0, 0, 0.2);
}
.main-aboutus__container {
	width: 100%;
	position: relative;
	z-index: 2;
	flex:1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.main-aboutus__content {
	margin-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px;
}
.main-project .main-aboutus__content{
	max-width: 1142px;
	margin: 0 auto;
	width: 100%;
}
.main-aboutus__content h1 {
	line-height: 1.1;
	font-weight: 700;
	font-size: 70px;
	max-width: 900px;
}
.main-aboutus__content p {
	font-size: 21px;
	font-weight: 600;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap:10px;
}
.main-aboutus__content p svg{
	flex:0 0 13px;
}
@media(max-width: 1023px){
	.main-aboutus__content h1 {
		font-size: calc(48px + (65 - 48) * ((100vw - 360px) / (1023 - 360)));
	}
}
@media (max-width: 720px) {
	.main-aboutus__content {
		gap: 24px;
	}
	.main-aboutus__content p svg{
		display: none;
	}
	.main-aboutus__content h1 {
		letter-spacing: -0.02rem;
	}
}

.main-block {
	color: #fff;
	position: relative;
	/*padding: 267px 0 80px;*/
	padding: 0 0 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 100vh;
}
@media (max-width: 1100px) {
	.main-block {
		padding: 90px 0 0;
	}
}
@media (max-width: 980px) {
	.main-block {
		padding-top: 300px;
	}
}
@media (max-width: 650px) {
	.main-block {
		padding-bottom: 36px;
	}
}
.main-block > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.main-block > video {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
/*@media (max-width: 991px) {*/
/*	.main-block > video {*/
/*		background-image: url("../img/main/poster.jpg");*/
/*	}*/
/*}*/
.main-block:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
	pointer-events: none;
}
.main-block:before {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 150px;
	opacity: 0.4;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.76)), color-stop(49.44%, rgba(0, 0, 0, 0.4)), color-stop(74.06%, rgba(0, 0, 0, 0.19)), to(rgba(0, 0, 0, 0)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.4) 49.44%, rgba(0, 0, 0, 0.19) 74.06%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}
.main-block__container {
	width: 100%;
	position: relative;
	z-index: 2;
}
.main-block__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: calc(680px + 120 * (100vw - 1440px) / 1780);

	max-width: 65%;

}
@media (max-width: 1440px) {
	.main-block__content {
		max-width: 700px;
	}
}
@media(max-width: 500px) {
	.main-block__content{
		margin: 0 24px;
	}
}
.main-block__title {
	font-size: 75px;
	line-height: 1.1;
	font-weight: 700;
	font-size: calc(75px + 10 * (100vw - 1440px) / 1780);
}
@media (max-width: 1440px) {
	.main-block__title {
		font-size: 64px;
	}
}
@media (max-width: 1100px) {
	.main-block__title {
		font-size: 58px;
	}
}
@media (max-width: 650px) {
	.main-block__title {
		font-weight: 500;
		font-size: 32px;
	}
}
.main-block__subtitle {
	font-weight: 700;
	font-size: 21px;
	line-height: 1.5;
	margin: 43px 0 55px;
	font-size: calc(21px + 9 * (100vw - 1440px) / 1780);
	max-width: 26em;
}

@media (max-width: 1440px) {
	.main-block__subtitle {
		font-size: 21px;
	}
}
@media (max-width: 980px) {
	.main-block__subtitle {
		margin: 32px 0 60px;
	}
}
@media (max-width: 510px) {
	.main-block__subtitle {
		font-size: 16px;
		margin: 16px 0 40px;
		max-width: 100%;
	}

	.main-block__subtitle span{
		display: none;
	}
}
@media (max-width: 650px) {
	.main-block__subtitle {
		font-size: 16px;
		margin: 16px 0 40px;
	}
}
.main-block__button {
	padding: 26px 41px;
}
@media (max-width: 510px) {
	.main-block__button {
		width: 100%;
		padding: 14px;
	}
}
@media (max-width: 650px) {
	.main-block__button {
		padding: 14px;
	}
}


@media(min-width: 0px) and (max-width: 650px) {
	.our-solutions{
		padding-top: 56px;
	}
	.our-solutions__title{
		margin-bottom: 30px;
	}
}
@media(min-width: 651px) and (max-width: 1100px) {
	.our-solutions{
		padding: 64px 0 72px;
	}
}
@media(min-width: 1101px) {
	.our-solutions{
		padding-top: 90px;
	}
}


.our-solutions__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
	row-gap: 48px;
}
@media (max-width: 1100px) {
	.our-solutions__cards {
		gap: 20px;
		row-gap: 45px;
	}
}
@media (max-width: 750px) {
	.our-solutions__cards {
		gap: 8px;
		row-gap: 40px;
	}
}
.our-solutions__card {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(25% - 18px);
	flex: 0 0 calc(25% - 18px);
}
.our-solutions__card.large {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 12px);
	flex: 0 0 calc(50% - 12px);
}
.our-solutions__card.big {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(75% - 6px);
	flex: 0 0 calc(75% - 6px);
}
@media (max-width: 1100px) {
	.our-solutions__card {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(33.3333% - 13.3333333333px);
		flex: 0 0 calc(33.3333% - 13.3333333333px);
	}
	.our-solutions__card.large {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(66.6666% - 6.6666666667px);
		flex: 0 0 calc(66.6666% - 6.6666666667px);
	}
	.our-solutions__card.big {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
	.our-solutions__card:last-child {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
}
@media (max-width: 750px) {
	.our-solutions__card {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 4px);
		flex: 0 0 calc(50% - 4px);
	}
	.our-solutions__card.large {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
	.our-solutions__card.big, .our-solutions__card.bigmobile {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}
.our-solutions__card p,
.our-solutions__card h3 {
	word-break: break-word;
	color: #3C3434;
	margin-top: 24px;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.equipment-solutions .our-solutions__card p,
.equipment-solutions .our-solutions__card h3 {
	color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 1100px) {
	.our-solutions__card p,
	.our-solutions__card h3{
		margin-top: 20px;
	}
}
@media (max-width: 750px) {
	.our-solutions__card p,
	.our-solutions__card h3{
		margin-top: 16px;
		font-size: 20px;
	}
}
.our-solutions__card:hover p,
.our-solutions__card:hover h3 {
	color: #3F69FF;
}
.our-solutions__img {
	height: 420px;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
@media (max-width: 1370px) {
	.our-solutions__img {
		height: calc(200px + 220 * (100vw - 360px) / 1010);
	}
}
.our-solutions__img img {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	border-radius: 6px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-o-object-fit: cover;
	object-fit: cover;

	filter: grayscale(1);

}
.not-grayscale .our-solutions__img img{
	filter: grayscale(0);
}
.our-solutions__card:hover img {
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
	filter: grayscale(0);
}

.videowalls-solutions .solutions__image {
	background: #fff;
	height: auto;
	max-height: 250px;
}

.videowalls-solutions .solutions__image img {
	-o-object-fit: contain;
	object-fit: contain;
}

.our-services__items a.our-services__item + .our-services__item {
	display: none;
}
@media (max-width: 760px) {
	.our-services__items a.our-services__item {
		display: none;
	}
	.our-services__items a.our-services__item + .our-services__item {
		display: block;
	}
}
.our-services__item {
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-top: 1px solid #DCDCDC;
	padding: 32px 0;
}
.our-services__item:last-child {
	border-bottom: 1px solid #dcdcdc;
}
.our-services__item .our-services__container {
	gap: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 760px) {
	.our-services__item .our-services__container {
		display: block;
	}
}
.our-services__item p,
.our-services__item h3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(37% - 12px);
	flex: 0 0 calc(37% - 12px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	color: #525252;
	word-break: break-word;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.equipment-benefits .our-services__item p,
.equipment-benefits .our-services__item h3 {
	color: #696969;
}
@media (max-width: 500px) {
	.equipment-benefits .our-services__item p,
	.equipment-benefits .our-services__item h3 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		font-size: 22px;
	}
	.equipment-benefits .our-services__item p img,
	.equipment-benefits .our-services__item h3 img {
		margin-bottom: 24px;
		margin-right: 0;
	}
}
.our-services__item p img,
.our-services__item h3 img {
	opacity: 0.4;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 38px;
	flex: 0 0 38px;
	width: 38px;
	margin-right: 24px;
}
.equipment-benefits .our-services__item p img,
.equipment-benefits .our-services__item h3 img {
	opacity: 1;
}
.our-services__item span {
	display: block;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-size: 18px;
	font-weight: 500;
	color: #3C3434;
}
.equipment-benefits .our-services__item span {
	color: #000;
}
@media (min-width: 761px) {
	.our-services__item span {
		max-height: 100% !important;
	}
}
@media (max-width: 760px) {
	.our-services__item span {
		pointer-events: none;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		margin-top: 0;
		opacity: 0;
		max-height: 0;
	}
}
@media (min-width: 761px) {
	.our-services__item:hover {
		background: #F4F4F4;
	}
	.our-services__item:hover p {
		color: #3F69FF;
	}
	.our-services__item:hover p img {
		opacity: 1;
		-webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(77%) saturate(3565%) hue-rotate(220deg) brightness(101%) contrast(101%);
		filter: brightness(0) saturate(100%) invert(35%) sepia(77%) saturate(3565%) hue-rotate(220deg) brightness(101%) contrast(101%);
	}
	.equipment-benefits .our-services__item:hover p {
		color: #525252;
	}
	.equipment-benefits .our-services__item:hover p img {
		-webkit-filter: none;
		filter: none;
	}
}
@media (max-width: 760px) {
	.our-services__item.active {
		background: #F4F4F4;
	}
	.our-services__item.active p {
		color: #3F69FF;
	}
	.our-services__item.active p img {
		opacity: 1;
		-webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(77%) saturate(3565%) hue-rotate(220deg) brightness(101%) contrast(101%);
		filter: brightness(0) saturate(100%) invert(35%) sepia(77%) saturate(3565%) hue-rotate(220deg) brightness(101%) contrast(101%);
	}
	.equipment-benefits .our-services__item.active p {
		color: #525252;
	}
	.equipment-benefits .our-services__item.active p img {
		-webkit-filter: none;
		filter: none;
	}
	.our-services__item.active span {
		pointer-events: auto;
		opacity: 1;
		margin-top: 24px;
	}
}

.stages__count {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	width: 60px;
	font-size: 150px;
	font-weight: 200;
	line-height: 1;
	opacity: 0.1;
}
@media (max-width: 760px) {
	.stages__count {
		font-size: 90px;
		width: 0px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 0px;
		flex: 0 0 0px;
	}
}
@media (min-width: 761px) {
	.stages .swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 20px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media (min-width: 1201px) {
	.stages .swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 24px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.stages .swiper-pagination {
	display: none;
}
@media (max-width: 760px) {
	.stages .swiper {
		padding-left: 40px;
		padding-right: 40px;
		margin-left: -40px;
		width: calc(100% + 80px);
	}
	.stages .swiper-pagination {
		display: block;
		position: static;
		margin-top: 20px;
		font-size: 18px;
	}
	.stages .swiper-pagination .swiper-pagination-current {
		font-weight: 700;
	}
}
@media (max-width: 650px) {
	.stages .swiper {
		padding-left: 20px;
		padding-right: 20px;
		margin-left: -20px;
		width: calc(100% + 40px);
	}
}
.stages .swiper-slide {
	padding: 12px 24px 34px 40px;
	background: #fff;
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: auto;
}
.stages .swiper-slide span{
	font-size: 18px;
	font-weight: 500;
	color: #000;
	line-height: calc(28.8/18);
}
@media (min-width: 761px) {
	.stages .swiper-slide {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 12px);
		flex: 0 0 calc(50% - 12px);
	}
}
@media (min-width: 1201px) {
	.stages .swiper-slide {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(33.3333% - 16px);
		flex: 0 0 calc(33.3333% - 16px);
	}
}
.stages .swiper-slide p,
.stages .swiper-slide h3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 100px;
	font-size: 18px;
}
.stages .swiper-slide p{
	padding-top: 0px;
}
.stages .swiper-slide p b,
.stages .swiper-slide h3 {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}
@media (max-width: 1200px) {
	.stages .swiper-slide {
		padding: 0 20px 30px 30px;
	}
	.stages .swiper-slide p {
		padding-top: 55px;
	}
}
@media (max-width: 760px) {
	.stages .swiper-slide {
		padding: 0 8px 30px 22px;
	}
	.stages .swiper-slide h3 {
		padding-top: 65px;
	}
	.stages .swiper-slide p{
		padding-top: 0px;
	}

}


.our-partners:not(.block){
	padding: 40px 0;
}
.our-partners__title span{
	color: #A6A6A6;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	position: relative;
}
.our-partners__title span:after{
	content:'';
	height: 4px;
	left: 50%;
	width: 0%;
	position: absolute;
	bottom: -10px;
	background: #3F69FF;
	transition: all 0.3s ease 0s;
}
@media(max-width: 970px){
	.our-partners__title span:after{
		bottom: -3px;
		height: 2px;
	}
}
.our-partners__title span.active{
	color: #000000;
}
.our-partners__title span.active:after{
	left: 0;
	width: 100%;
}
@media (max-width: 1100px) {
	.our-partners:not(.block) {
		padding: 0;
	}
}
.our-partners__cards {
	display: none;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
}
.our-partners__cards.target{
	display: -webkit-box;
	display: -ms-flexbox;

	display: flex;
}
@media (max-width: 1100px) {
	.our-partners__cards {
		gap: 20px;
	}
}
@media (max-width: 700px) {
	.our-partners__cards {
		gap: 8px;
	}
}
.our-partners__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(14.2857142857% - 20.5714285714px);
	flex: 0 0 calc(14.2857142857% - 20.5714285714px);
	padding: 31px 10px;
}
.our-partners__card img {
	height: 27px;
	max-width: 100%;
}
@media (max-width: 1100px) {
	.our-partners__card {
		border-radius: 13.5px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(25% - 15px);
		flex: 0 0 calc(25% - 15px);
	}
	.our-partners__card img {
		height: 27px;
	}
}
@media (max-width: 700px) {
	.our-partners__card {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 4px);
		flex: 0 0 calc(50% - 4px);
	}
}

.footer {
	background: #3F69FF;
	color: #FFF;
	padding: 65px 0 30px;
}
@media (max-width: 760px) {
	.footer {
		padding: 48px 0 33px;
	}
}
.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.footer__menu {
	font-size: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 50px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer__menu a {
	position: relative;
}
.footer__menu a:after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0;
	background: #fff;
	bottom: 0px;
	height: 1px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.footer__menu a:hover:after {
	width: 100%;
	left: 0;
}
@media (max-width: 1100px) {
	.footer__menu {
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 16px;
	}
}
@media (max-width: 730px) {
	.footer__menu {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}
.footer__socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 30px;
}
.footer__socials a {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 32px;
	flex: 0 0 32px;
}
.footer__socials a img {
	width: 100%;
}
@media (max-width: 1100px) {
	.footer__socials {
		display: none;
	}
}
.footer__middle {
	margin: 20px 0;
	padding: 60px 0;
	border-top: 1px solid #F4F4F4;
	border-bottom: 1px solid #F4F4F4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 80px;
}
.footer__middle .footer__socials {
	display: none;
}
@media (max-width: 1100px) {
	.footer__middle .footer__socials {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: 60px;
	}
}
@media (max-width: 760px) {
	.footer__middle .footer__socials {
		margin-top: 40px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media (max-width: 1200px) {
	.footer__middle {
		gap: 30px;
	}
}
@media (max-width: 760px) {
	.footer__middle {
		display: block;
		padding: 50px 0;
		margin: 30px 0;
	}
}
.footer__content {
	max-width: 431px;
}
.footer__content p b {
	font-size: 24px;
	font-weight: 700;
}
.footer__content p a {
	font-size: 14px;
	font-weight: 500;
}
.footer__content > span {
	font-size: 20px;
	font-weight: 500;
	display: block;
	margin-top: 20px;
}
@media (max-width: 1100px) {
	.footer__content {
		max-width: 350px;
	}
	.footer__content p a {
		display: block;
		margin-top: 10px;
	}
}
@media (max-width: 760px) {
	.footer__content {
		max-width: 100%;
	}
}
.footer__right {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	max-width: 700px;
}
.footer__right > p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
@media (max-width: 1100px) {
	.footer__right {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 45px;
	}
}
@media (max-width: 760px) {
	.footer__right {
		margin-top: 40px;
	}
	.footer__right p {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
}
.footer__call {
	letter-spacing: -0.96px;
	font-size: 40px;
	line-height: 1.2;
}
@media (max-width: 1270px) {
	.footer__call {
		font-size: 36px;
	}
}
@media (max-width: 760px) {
	.footer__call {
		font-size: 30px;
		text-align: center;
	}
}
.footer__button {
	text-align: center;
	margin-top: 23px;
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%;
	text-transform: uppercase;
	padding: 13.5px 35px;
	border-radius: 4px;
	border: 1px solid #FFF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.footer__button:hover {
	background: #fff;
	color: #3F69FF;
}
@media (max-width: 760px) {
	.footer__button {
		font-size: 14px;
		padding: 17px 15px;
	}
}
.footer__mail {
	line-height: 1.2;
	display: block;
	font-size: 40px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
@media (max-width: 1270px) {
	.footer__mail {
		font-size: 36px;
	}
}
@media (max-width: 760px) {
	.footer__mail {
		font-size: 30px;
		text-align: center;
	}
}
.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 23px;
	font-size: 12px;
	font-weight: 500;
}
.footer__bottom a:hover {
	text-decoration: underline;
}
.footer__bottom br {
	display: none;
}
@media (max-width: 760px) {
	.footer__bottom br {
		display: block;
	}
	.footer__bottom a, .footer__bottom span {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 11.5px);
		flex: 0 0 calc(50% - 11.5px);
	}
	.footer__bottom a em, .footer__bottom span em {
		display: none;
	}
	.footer__bottom a:nth-child(even), .footer__bottom span:nth-child(even) {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.footer__bottom *:last-child {
		opacity: 0.6;
	}
}

.works__numbers{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 48px;
	gap: 24px;
}
.works__number{
	font-size: 16px;
	font-weight: 500;
	line-height: calc(35/22);
	color: #3C3434;
}
.works__number b{
	color: #3F69FF;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.02em;
	font-weight: 600;
}
@media(min-width: 651px) {
	.works__title {
		margin-bottom: 64px;
	}
	.works__numbers{
		margin-bottom: 64px;
	}
	.works__number{
		font-size: 22px;
	}
	.works__number b{
		font-size: 40px;
	}
}
@media(min-width: 1101px) {
	.works__title {
		margin-bottom: 33px;
	}
	.works__numbers{
		gap: 30px;
		margin-bottom: 30px;
	}
}
.works__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 64px;
}
@media(min-width: 992px) {
	.works__bottom {
		margin-top: 20px;
	}
}

@media (max-width: 650px) {
	.works__bottom {
		margin-top: 48px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
	}
}
.works__button {
	background: #fff;
	color: #3F69FF;
	border: 2px solid rgba(63, 105, 255, 0.2);
}
.works__button:hover {
	background: #3F69FF;
	color: #fff;
}
.works__slider {
	max-width: calc(100vw - 60px);
	overflow: visible;
}
@media(max-width: 650px) {
	.works__slider{
		max-width: calc(100vw - 32px);
	}
}
.works__slider .swiper-slide {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.works__slider .swiper-slide p,
.works__slider .swiper-slide h3 {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	max-width: 400px;
	margin-top: 24px;
	font-size: 24px;
	font-weight: 700;
}
@media (max-width: 650px) {
	.works__slider .swiper-slide p,
	.works__slider .swiper-slide h3 {
		font-size: 16px;
		line-height: 1.4;
		margin-top: 16px;
		max-width: 100%;
	}
}
.works__slider .swiper-slide:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.works__slider .swiper-slide:hover p,
.works__slider .swiper-slide:hover h3 {
	color: #3F69FF;
}
.works__prev {
	position: absolute;
	top: 210px;
	-webkit-transform: translate(0%, -50%) rotate(180deg);
	transform: translate(0%, -50%) rotate(180deg);
	z-index: 10;
	left: -32px;
	cursor: pointer;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px -16px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px -16px 15px 0px rgba(0, 0, 0, 0.15);
}
.works__prev svg {
	width: 24px;
	height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.works__prev svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.works__prev.swiper-button-disabled svg {
	opacity: 0.2;
}
.works__prev:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.works__prev:not(.swiper-button-disabled):hover svg path {
	stroke: #3F69FF;
}
@media (max-width: 1390px) {
	.works__prev {
		left: -21px;
	}
}
@media (max-width: 650px) {
	.works__prev {
		display: none;
	}
}
.works__next {
	position: absolute;
	top: 210px;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	z-index: 10;
	right: -32px;
	cursor: pointer;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1390px) {
	.works__next {
		right: -21px;
	}
}
@media (max-width: 650px) {
	.works__next {
		display: none;
	}
}
.works__next svg {
	width: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 24px;
}
.works__next svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.works__next:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.works__next:not(.swiper-button-disabled):hover svg path {
	stroke: #3F69FF;
}
.works__next.swiper-button-disabled svg {
	opacity: 0.2;
}
.works__image {
	height: 420px;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	border-radius: 6px;
}
@media (max-width: 650px) {
	.works__image {
		height: 280px;
	}
}
@media (max-width: 500px) {
	.works__image {
		height: 180px;
	}
}
.works__image img {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	border-radius: 6px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.breadcrumbs-white {
	padding: 16px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 6px;
}
.breadcrumbs-white span {
	color: #C5BEBE;
}
.breadcrumbs-white a {
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}
.breadcrumbs-white a img{
	flex:0 0 12px;
	width: 12px;
}
@media (max-width: 650px) {
	.breadcrumbs-white {
		font-size: 13px;
	}
}

.breadcrumbs {
	margin-top: 90px;
	padding: 16px 0;
	margin-bottom: 44px;
}
@media (max-width: 550px) {
	.breadcrumbs {
		margin-bottom: 30px;
		margin-top: 72px;
	}
}
.breadcrumbs__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: #3C3434;
	gap: 6px;
}
@media (max-width: 650px) {
	.breadcrumbs__container {
		font-size: 13px;
	}
}
.breadcrumbs__container a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}
.breadcrumbs__container img{
	flex:0 0 12px;
	width: 12px;
}
.breadcrumbs__container a b {
	font-weight: 500;
}
.breadcrumbs__container span {
	color: #777777;
}

.title-b {
	font-size: 64px;
	line-height: 1.2;
	word-break: break-word;
}
@media (max-width: 650px) {
	.title-b {
		font-size: 42px;
	}
}

@media (max-width: 650px) {
	body.certPopup {
		overflow: hidden;
	}
}
.certificates {
	margin-bottom: 100px;
	padding-bottom: 0;
}
.certificates-wrapper .certificates {
	margin-bottom: 0;
}
@media (max-width: 650px) {
	.certificates {
		margin-bottom: 0;
	}
}
.certificates__content {
	border-radius: 12px;
	border: 1px solid #DCDCDC;
	background: #FFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 57px;
}
@media (max-width: 1100px) {
	.certificates__content {
		display: block;
	}
}
@media (max-width: 650px) {
	.certificates__content {
		margin-top: 48px;
		border: 0;
		border-radius: 0;
		width: calc(100% + 32px);
		margin-left: -16px;
	}
}
.certificates__left {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 48px;
	padding-right: 30px;
	padding-bottom: 43px;
	border-right: 1px solid #DCDCDC;
	-webkit-columns: 3 180px;
	-moz-columns: 3 180px;
	columns: 3 180px;
	-webkit-column-gap: 0;
	-moz-column-gap: 0;
	column-gap: 0;
	font-size: 16px;
}
@media (max-width: 1100px) {
	.certificates__left {
		padding: 40px;
		padding-bottom: 35px;
		border-right: 0;
		border-bottom: 1px solid #DCDCDC;
	}
}
.certificates__left p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 10px 20px;
	border: 2px solid transparent;
	margin-bottom: 5px;
	-moz-column-break-inside: avoid;
	-webkit-column-break-inside: avoid;
	column-break-inside: avoid;
}
.certificates__left p.active {
	color: #3F69FF;
	border-radius: 100px;
	border: 2px solid #3F69FF;
}
.certificates__left p:hover {
	color: #3F69FF;
}
@media (max-width: 650px) {
	.certificates__left p {
		-webkit-transition: all 0s ease 0s;
		transition: all 0s ease 0s;
		border: 0;
	}
	.certificates__left p.active {
		color: #000;
		border-radius: 0;
		border: 0;
	}
}
@media (max-width: 720px) {
	.certificates__left {
		padding: 20px;
		padding-bottom: 15px;
		font-size: 14px;
		-webkit-columns: 3 136px;
		-moz-columns: 3 136px;
		columns: 3 136px;
	}
	.certificates__left p {
		padding: 7px 10px;
		border-width: 1px;
	}
	.certificates__left p.active, .certificates__left p:hover {
		border-width: 1px;
	}
}
@media (max-width: 650px) {
	.certificates__left {
		border: none;
		padding: 30px 0 42px;
	}
}
.certificates__body {
	display: none;
}
.certificates__body.target {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.certificates__body > p {
	display: none;
}
@media (max-width: 650px) {
	.certificates__body {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.7);
		width: 100%;
		padding: 20px 0;
		display: -ms-grid !important;
		display: grid !important;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		overflow-y: auto;
		height: 100%;
		z-index: 1020;
		opacity: 0;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		pointer-events: none;
	}
	.certificates__body > p {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		cursor: pointer;
		z-index: -1;
	}
	.certificates__body.show {
		opacity: 1;
		pointer-events: all;
	}
}
.certificates__wrapper {
	padding: 48px;
	max-width: 485px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 1100px) {
	.certificates__wrapper {
		max-width: 100%;
		padding: 45px 68px;
	}
}
.certificates__wrapper > img {
	display: none;
}
.certificates__wrapper p {
	font-size: 18px;
	color: #525252;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	margin: 45px 0;
}
@media (max-width: 1100px) {
	.certificates__wrapper p {
		margin: 40px 0 20px;
	}
}
.certificates__wrapper a {
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
	color: #3F69FF;
	font-weight: 700;
	border-top: 2px solid rgba(0, 0, 0, 0.4);
	padding-top: 25px;
}
.certificates__wrapper a img {
	margin-right: 10px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 34px;
	flex: 0 0 34px;
	width: 34px;
}
@media (max-width: 720px) {
	.certificates__wrapper {
		padding: 20px 30px;
	}
	.certificates__wrapper p {
		font-size: 15px;
		margin: 20px 0;
	}
}
@media (max-width: 650px) {
	.certificates__wrapper {
		padding: 16px 24px 30px;
		max-width: 328px;
		background: #fff;
		border-radius: 16px;
	}
	.certificates__wrapper p {
		margin: 30px 0 50px;
	}
	.certificates__wrapper > img {
		display: block;
		cursor: pointer;
		margin-right: -13px;
		margin-left: auto;
	}
}
.certificates__logo {
	max-width: 200px;
	height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (max-width: 1100px) {
	.certificates__logo {
		max-width: 221px;
	}
}
@media (max-width: 720px) {
	.certificates__logo {
		max-width: 180px;
	}
}
@media (max-width: 650px) {
	.certificates__logo {
		max-width: 100%;
	}
}
.certificates__logo img {
	max-height: 100%;
	max-width: 100%;
}
.certificates__logotypes {
	/*margin-bottom: 100px;*/
	display: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	background: #FFFFFF;
	--gap: 60px;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	gap: var(--gap);
	position: relative;
}
@media (max-width: 991px) {
	.certificates__logotypes {
		display: none;
	}
}
.certificates__logotypes:before {
	content: "";
	pointer-events: none;
	width: 110px;
	z-index: 1;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	position: absolute;
	background: -webkit-gradient(linear, left top, right top, from(#FFF), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
	height: 91px;
}
.certificates__logotypes:after {
	content: "";
	pointer-events: none;
	width: 110px;
	z-index: 1;
	top: 50%;
	-webkit-transform: translate(0, -50%) rotate(-180deg);
	transform: translate(0, -50%) rotate(-180deg);
	position: absolute;
	background: -webkit-gradient(linear, left top, right top, from(#FFF), to(rgba(255, 255, 255, 0)));
	background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
	right: 0;
	height: 91px;
}
.certificates__logotypes > div {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	min-width: 100%;
	gap: var(--gap);
	-webkit-animation: scroll 30s linear infinite;
	animation: scroll 30s linear infinite;
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(calc(-100% - var(--gap)));
		transform: translateX(calc(-100% - var(--gap)));
	}
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(calc(-100% - var(--gap)));
		transform: translateX(calc(-100% - var(--gap)));
	}
}
.contacts {
	margin-bottom: 78px;
}
@media (max-width: 991px) {
	.contacts {
		margin-bottom: 30px;
	}
}
@media (max-width: 600px) {
	.contacts {
		margin-bottom: 16px;
	}
}
.contacts__tabs {
	margin-top: 52px;
}
@media (max-width: 1100px) {
	.contacts__tabs {
		margin-top: 42px;
	}
}
.contacts__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
}
.contacts__top p {
	font-size: 16px;
	padding: 8px 24px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 100px;
	cursor: pointer;
	text-align: center;
}
.contacts__top p:hover {
	color: #3F69FF;
}
.contacts__top p.active {
	color: #fff;
	background: #3F69FF;
}
.contacts__body {
	overflow: hidden;
	margin-top: 30px;
	display: none;
	background: #fff;
	border-radius: 8px;
}
.contacts__body.target {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1100px) {
	.contacts__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
@media (max-width: 650px) {
	.contacts__body {
		margin-top: 23px;
		border-radius: 0;
		margin-left: -16px;
		width: calc(100% + 32px);
		background: none;
	}
}
.contacts__wrapper {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	padding: 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (max-width: 1250px) {
	.contacts__wrapper {
		padding: 40px;
	}
}
@media (max-width: 1100px) {
	.contacts__wrapper {
		padding: 50px 40px;
	}
}
@media (max-width: 700px) {
	.contacts__wrapper {
		padding: 30px;
	}
}
@media (max-width: 650px) {
	.contacts__wrapper {
		padding: 0 16px 48px;
	}
}
.contacts__rows {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	margin-bottom: 70px;
	margin-top: 35px;
}
@media (max-width: 1100px) {
	.contacts__rows {
		margin: 40px 0;
	}
}
@media (max-width: 700px) {
	.contacts__rows {
		margin: 30px 0;
	}
}
.contacts__text {
	font-size: 16px;
	line-height: 1.5;
	color: #3C3434;
}
@media (max-width: 600px) {
	.contacts__text {
		font-size: 14px;
	}
}
.contacts__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 20px;
}
@media (max-width: 600px) {
	.contacts__row {
		display: block;
	}
}
.contacts__row:last-child {
	margin-bottom: 0;
}
.contacts__row p a {
	font-size: 23px;
	display: block;
	color: #3C3434;
	line-height: 1.1;
}
.contacts__row p small {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #525252;
}
.contacts__row p small.red {
	color: #FC3838;
}
.contacts__row p span {
	color: #3C3434;
	font-size: 16px;
}
@media (max-width: 600px) {
	.contacts__row p {
		margin-top: 5px;
	}
	.contacts__row p a {
		font-size: 20px;
	}
	.contacts__row p span {
		font-size: 14px;
	}
}
.contacts__left {
	font-size: 14px;
	color: #525252;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 110px;
	flex: 0 0 110px;
	max-width: 110px;
	margin-right: 30px;
}

.contacts__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 460px;
}
.contacts__buttons a {
	color: #3F69FF;
	padding: 13.5px;
	text-align: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 10px);
	flex: 0 0 calc(50% - 10px);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	border: 1px solid #3F69FF;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.contacts__buttons a:hover {
	color: #fff;
	background: #3F69FF;
}
@media (max-width: 600px) {
	.contacts__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0 auto;
		width: 100%;
	}
	.contacts__buttons a {
		font-size: 14px;
	}
}
.contacts__cards {
	display: grid;
	gap:24px;
	grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
	margin-top: 50px;
}
.contacts__card {
	min-height: 220px;
	padding: 28px 30px;
	border-radius: 8px;
	box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	display: flex;
	flex-direction: column;
	gap:8px;
	font-size: 16px;
	color: #525252;
	font-weight: 500;
	line-height: 1.5;
}

.contacts__card-title {
	margin-bottom: 2px;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.6;
	color: #3F69FF;
}
.contacts__card-link {
	font-weight: 500;
	font-size: 22px;
	line-height: 1.6;
	color: #3C3434;
}
.contacts__card span:last-of-type{
	margin-bottom: auto;
}
.contacts__card-button {
	color: #3F69FF;
	padding: 12px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	border: 1px solid #3F69FF;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.contacts__card-button:hover {
	color: #fff;
	background: #3F69FF;
}
.contacts__map {
	height: 100%;
	flex: 1 1 auto;
}
.contacts__map-wrapper{
	height: 570px;
	display: flex;
	box-shadow: 0 16px 40px 0 rgba(18, 46, 148, 0.1);
	border-radius: 8px;
	overflow: hidden;
	margin-top: 24px;
}
.contacts__image {
	height: 100%;
	flex:0 0 32%;
	width: 32%;
}
.contacts__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.contacts__map iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
	.contacts__cards{
		gap:20px;
		margin-top: 37px;
	}
	.contacts__card-button {
		margin-top: 10px;
	}
	.contacts__map-wrapper{
		margin-top: 20px;
		height: auto;
		flex-direction: column;
	}
	.contacts__map {
		height: 378px;
		flex:0 0 auto;
	}
	.contacts__image{
		width: 100%;
		flex:0 0 auto;
		height: 454px;
	}
}
@media (max-width: 650px) {
	.contacts__cards{
		gap:12px;
	}
	.contacts__map-wrapper{
		margin-top: 16px;
	}
	.contacts__map {
		height:220px;
	}
	.contacts__image{
		height: 361px;
	}
}


.aboutus-info__container {
	width: 100%;
	gap: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media (max-width: 1100px) {
	.aboutus-info__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.aboutus-info__text {
	max-width: 755px;
	font-size: 21px;
	font-weight: 400;
}
@media (max-width: 1100px) {
	.aboutus-info__text {
		max-width: 100%;
	}
}
@media (max-width: 650px) {
	.aboutus-info__text {
		font-size: 19px;
	}
}
.aboutus-info__logo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 393px;
	flex: 0 0 393px;
	width: 393px;
}
@media (max-width: 1100px) {
	.aboutus-info__logo {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		width: 100%;
		max-width: 400px;
	}
}
.aboutus-info__logo img {
	width: 100%;
}

.aboutus {
	position: relative;
}

.aboutus-tabs {
	position: relative;
	z-index: 2;
	width: 100%;
	-webkit-transform: translate(0,50%);
	transform: translate(0, 50%);
}
.aboutus-tabs__container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.aboutus-tabs__content {
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	white-space: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	background: #fff;
	-webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	font-size: 21px;
	font-weight: 600;
	color: #777676;
	padding: 5px;
	position: relative;
}
.aboutus-tabs__content span {
	width: 200px;
	position: absolute;
	left: 5px;
	border-radius: 8px;
	top: 5px;
	display: block;
	z-index: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	height: calc(100% - 10px);
	background: #3f69ff;
}
.aboutus-tabs__content a {
	position: relative;
	z-index: 1;
	line-height: 1;
	cursor: pointer;
	padding: 14.5px 38px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 8px;
	white-space: nowrap;
}
.aboutus-tabs__content a:hover {
	color: #000;
}
.aboutus-tabs__content a.active {
	color: #fff;
}



.company .title{
	margin-bottom: -40px;
}
@media (max-width: 650px) {
	.company .title{
		margin-bottom: -16px;
	}
}
.company__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 100px;
}
@media (max-width: 1100px) {
	.company__container {
		gap: 90px;
	}
}
@media (max-width: 650px) {
	.company__container {
		gap: 64px;
	}
}
.company__stats {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #fff;
	border-radius: 16px;
	gap:28px;
	padding: 85px 75px;
}
.company__stats-card {

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 9px;
}
.company__stats-card p {
	font-size: 80px;
	font-weight: 400;
	line-height: 1;
	color: #000;
	letter-spacing: -0.02rem;
}
.company__stats-card span {
	max-width: 230px;
	color: #000;
	font-size: 18px;
	font-weight: 500;
}
@media (max-width: 1260px) {
	.company__stats{
		padding: 80px 24px;
	}
}
@media(max-width: 800px){
	.company__stats{
		display: grid;
		border-radius: 0;
		width: calc(100% + 32px);
		margin-left: -16px;
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 620px) {
	.company__stats {
		grid-template-columns: 1fr;
	}
	.company__stats-card span {
		font-weight: 400;
		line-height: 1.4;
	}
}
.company__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 69px;
}
@media (max-width: 1100px) {
	.company__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
	}
}
.company__left {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 600px;
	flex: 0 0 600px;
}

@media (max-width: 1100px) {
	.company__left {
		flex:0 0 auto;
	}
}
.company__title {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02rem;
	display: flex;
	align-items: center;
	gap:28px;
	max-width: 750px;
}
.company__title b{
	font-size: 120px;
	font-weight: 700;
	color: #3F69FF;
}
@media (max-width: 1100px) {
	.company__title {
		max-width: 100%;
		font-size: 32px;
		flex-direction: column;
		align-items: flex-start;
		gap:0;
		border-bottom:2px solid #3F69FF;
		padding-bottom: 15px;
	}
}
.company__image{
	max-width: 600px;
	min-width: 450px;
	width: 100%;
	height: auto;
}
.company__image img{
	width: 100%;
	border-radius: 16px;
}
.company__video {
	height: 325px;
	width: 100%;
	cursor: pointer;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}
.about-company .company__video {
	border-radius: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}
.company__video:after {
	content: "";
	pointer-events: none;
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.company__video img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.company__video video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.company__video video[controls] {
	position: relative;
	z-index: 1;
}
@media (max-width: 1100px) {
	.about-company .company__video {
		position: static;
		height: 325px;
		min-height: 0;
	}
}
@media (max-width: 650px) {
	.company__video {
		height: 250px;
	}
	.about-company .company__video {
		height: 220px;
	}
}
.company__controls {
	z-index: 1;
	position: absolute;
	bottom: 0;
	padding: 44px 55px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #FFF;
	font-size: 28px;
	font-weight: 700;
	line-height: 110%;
}
.company__controls-image {
	margin-right: 20px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 90px;
	flex: 0 0 90px;
	width: 90px;
	height: 90px;
	cursor: pointer;
	border-radius: 50%;
	position: relative;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.company__controls-image:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: 0;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	background-color: rgba(255, 255, 255, 0.25);
}
.company__controls-image svg {
	position: relative;
	z-index: 1;
	width: 36px;
	margin-right: -5px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.company__controls-image:hover svg {
	-webkit-transform: scale(1.15, 1.15);
	transform: scale(1.15, 1.15);
}
@media (max-width: 650px) {
	.company__controls-image {
		height: 64px;
		width: 64px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 64px;
		flex: 0 0 64px;
	}
	.company__controls-image svg {
		width: 25px;
	}
}
@media (max-width: 650px) {
	.company__controls {
		padding: 23px;
		font-size: 20px;
	}
}
.company__text-title{
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
}
.company__text {
	max-width: 580px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-size: 22px;
	font-weight: 400;
	color: #000000;
}
.company__header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 2px;
	border-bottom:2px solid #3F69FF;
	gap:25px;
}

.company__playvideo{
	display: flex;
	align-items: center;
	gap:20px;
	font-size: 20px;
	font-weight: 400;
	cursor: pointer;
}
.company__playvideo-image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 56px;
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	cursor: pointer;
	border-radius: 50%;
	position: relative;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.company__playvideo-image:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: 0;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	background-color: rgba(255, 255, 255, 0.25);
}
.company__playvideo-image svg {
	position: relative;
	z-index: 1;
	margin-right: -3px;
	width: 23px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.company__playvideo-image:hover svg {
	-webkit-transform: scale(1.15, 1.15);
	transform: scale(1.15, 1.15);
}
@media(max-width: 1100px){
	.company__header{
		flex-direction: column;
		border:none;
		padding: 0;
		align-items: stretch;
		gap:40px;
	}
	.company__image, .company__text{
		max-width: 100%;
		min-width: 0;
	}
}
.company__text b{
	font-weight: 500;
}
.company__text a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
	gap: 10px;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}



.about-company__content {
	display: grid;
	grid-template-columns: 54fr 46fr;
	gap: 80px;
}

.about-company__video {
	border-radius: 16px;
	overflow: hidden;
	height: 520px;
}

.about-company__left {
	display: flex;
	flex-direction: column;
	gap: 65px;
}

.about-company__text {
	font-size: 22px;
	line-height: 1.6;
	font-weight: 500;
	color: #525252;
}

.about-company__leader {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #3C3434;
}

.about-company__text b {
	font-weight: 700;
	color: #3C3434;
}

.about-company__video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-company__actions {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about-company__column {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.2;
	color: #3f69ff;
	cursor: pointer;
	flex: 1 1 calc(50% - 10px);
}

.about-company__icon {
	width: 84px;
	display: flex;
	justify-content: center;
}

.about-company__icon img,
.about-company__icon svg {
	height: auto;
	max-width: 100%;
	width: 100%;
}

@media(max-width: 1260px) {
	.about-company__content {
		gap: 40px;
	}

	.about-company__left {
		gap: 40px;
	}
}

@media(max-width: 1100px) {
	.about-company__video {
		height: 420px;
	}

	.about-company__column {
		font-size: 18px;
	}

	.about-company__text {
		font-size: 20px;
	}

	.about-company__icon {
		width: 50px;
	}

	.about-company__left {
		gap: 25px;
	}

	.about-company__content {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 650px) {
	.about-company__video {
		height: 320px;
	}

	.about-company__column {
		font-size: 16px;
		gap: 7px;
	}

	.about-company__icon {
		width: 40px;
	}

	.about-company__text {
		font-size: 18px;
	}
}


@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	25% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50% {
		-webkit-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	25% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50% {
		-webkit-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}
.direction__card {
	margin-bottom: 100px;
}
.direction__card:last-child {
	margin-bottom: 0;
}
@media (max-width: 650px) {
	.direction__card {
		margin-bottom: 64px;
	}
}
.direction__subtitle {
	font-size: 28px;
	font-weight: 600;
	line-height: 130%;
}
.direction__subtitle:before {
	content: "";
	display: block;
	height: 3px;
	background: #3F69FF;
	width: 100%;
	margin-bottom: 17px;
}
@media (max-width: 650px) {
	.direction__subtitle {
		font-size: 22px;
	}
	.direction__subtitle:before {
		margin-bottom: 32px;
	}
}
@media(min-width: 1101px){
	.direction__card>*{
		margin-left: 65px;
	}
}
.direction__top {
	margin-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	font-size: 37px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 40px;
}

.direction__top b {
	line-height: 1;
	font-size: 28px;
	font-weight: 700;
	color: #3F69FF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
}
.direction__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	gap: 100px;
}
.direction__text{
	max-width: 1100px;
}
.direction__content .direction__text{
	max-width: 450px;
}
@media (max-width: 1100px) {
	.direction__content .direction__text{
		max-width: 100%;
	}
	.direction__content {
		gap: 48px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
}
.direction__left {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 490px;
	flex: 0 0 490px;
}
@media (max-width: 1100px) {
	.direction__left {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}
.direction__info {
	margin-top: 30px;
	border-radius: 8px;
	padding: 50px;
	background: #fff;
	font-size: 21px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}
.direction__info p, .direction__info a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	transition: all 0.3s ease 0s;
}
.direction__info p b, .direction__info a b {
	font-weight: 500;
}
.direction__info p img, .direction__info a img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	width: 24px;
	margin-right: 12px;
}
@media (max-width: 1100px) {
	.direction__info {
		padding: 50px 24px;
		font-size: 16px;
	}
}
.direction__list {
	border-radius: 8px;
	padding: 50px;
	background: #fff;
	font-size: 21px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}
.direction__list a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.direction__list a svg {
	margin-top: 2px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	width: 24px;
	margin-right: 12px;
}
.direction__list a svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1100px) {
	.direction__top{
		padding-bottom: 32px;
		border-bottom:3px solid #3F69FF;
		margin-bottom: 32px;
	}
	.direction__list {
		padding: 50px 16px;
		font-size: 16px;
	}
	.direction__list a svg {
		margin-top: 0;
	}
}
@media (max-width: 650px) {
	.direction__top {
		font-size: 25px;
	}
}
.direction__list a:hover, .direction__info a:hover {
	color: #3F69FF;
}
.direction__list a:hover svg path:first-child {
	fill: #3F69FF;
}
.direction__list a:hover svg path:last-child {
	stroke: #FFF;
}
.direction__text {
	font-size: 24px;
	line-height: 1.6;
	color: #525252;
}
.direction__text b {
	color: #3C3434;
}
@media (max-width: 650px) {
	.direction__text {
		font-size: 16px;
	}
	.direction__info {
		margin-top: 50px;
	}
}

.certificates-wrapper .certificates__title {
	margin-bottom: 0;
}
.certificates-wrapper .certificates__content {
	margin-top: 0;
}
@media (max-width: 650px) {
	.certificates-wrapper .certificates__left {
		padding: 0;
	}
}

.certificates__subtitle {
	font-size: 21px;
	margin: 45px 0;
	font-weight: 400;
	max-width: 715px;
}
@media (max-width: 650px) {
	.certificates__subtitle {
		font-size: 16px;
		margin-top: 21px;
		margin-bottom: 44px;
	}
}

.services {
	display: block;
}
@media (min-width: 761px) {
	.services .swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: auto;
		height: auto;
		border: 1px solid transparent;
	}
}
.services .service-pagination {
	display: none;
}
.services .swiper-slide {
	padding: 0 64px;
	padding-right: 45px;
	height: 262px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 1px 0 0 0 #DCDCDC, 0 1px 0 0 #DCDCDC, 1px 1px 0 0 #DCDCDC, 1px 0 0 0 #DCDCDC inset, 0 1px 0 0 #DCDCDC inset;
	box-shadow: 1px 0 0 0 #DCDCDC, 0 1px 0 0 #DCDCDC, 1px 1px 0 0 #DCDCDC, 1px 0 0 0 #DCDCDC inset, 0 1px 0 0 #DCDCDC inset;
	display: flex;
	flex-direction: column;
}
.services .swiper-slide img {
	height: 64px;
	width: 64px;
	margin-bottom: 32px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.services .swiper-slide p {
	font-size: 24px;
	font-weight: 700;
	color: #696969;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.services .swiper-slide span {
	margin-top: 6px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 761px) {
	.services .swiper-slide {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
	}
	.services .swiper-slide span {
		height: 64px;
		opacity: 0;
		margin-bottom: -64px;
	}
	.services .swiper-slide:hover {
		background: #F4F4F4;
	}
	.services .swiper-slide:hover img {
		opacity: 0;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	.services .swiper-slide:hover span {
		height: auto;
		opacity: 0.6;
		margin-bottom: 0;
	}
	.services .swiper-slide:hover p {
		margin-top: -96px;
		font-size: 21px;
		color: #3F69FF;
	}
}
@media (min-width: 1201px) {
	.services .swiper-slide {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.3333%;
		flex: 0 0 33.3333%;
	}
}
@media (max-width: 760px) {
	.services.equipment-services .swiper-slide {
		background: #fff;
	}
}
@media (min-width: 1201px) {
	.services.equipment-services .swiper-slide {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		height: 190px;
		padding-left: 148px;
	}
	.services.equipment-services .swiper-slide img {
		position: absolute;
		top: 50%;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		left: 64px;
	}
	.services.equipment-services .swiper-slide span {
		margin-top: 0;
		width: calc(100% + 84px);
	}
	.services.equipment-services .swiper-slide:hover {
		padding-left: 64px;
		background: #F4F4F4;
	}
	.services.equipment-services .swiper-slide:hover img {
		left: 0;
	}
	.services.equipment-services .swiper-slide:hover span {
		width: 100%;
		margin-top: 6px;
	}
	.services.equipment-services .swiper-slide:hover p {
		margin-top: 0px;
	}
}
@media (max-width: 760px) {
	.services .swiper {
		padding-left: 40px;
		padding-right: 40px;
		margin-left: -40px;
		width: calc(100% + 80px);
	}
	.services .service-pagination {
		display: block;
		text-align: center;
		position: static;
		margin-top: 16px;
		font-weight: 600;
		color: #777;
		font-size: 18px;
	}
	.services .service-pagination .swiper-pagination-current {
		color: #3F69FF;
	}
	.services .swiper-slide {
		background: #F4F4F4;
		border: 1px solid #DCDCDC;
		padding: 24px 24px 48px 24px;
		height: auto;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.services .swiper-slide img {
		margin-bottom: 16px;
		-webkit-filter: brightness(0) saturate(100%) invert(35%) sepia(77%) saturate(3565%) hue-rotate(220deg) brightness(101%) contrast(101%);
		filter: brightness(0) saturate(100%) invert(35%) sepia(77%) saturate(3565%) hue-rotate(220deg) brightness(101%) contrast(101%);
	}
	.services .swiper-slide p {
		font-size: 21px;
	}
	.services .swiper-slide span {
		font-size: 16px;
		margin-top: 16px;
	}
}
@media (max-width: 650px) {
	.services .swiper {
		padding-left: 20px;
		padding-right: 20px;
		margin-left: -20px;
		width: calc(100% + 40px);
	}
}

.equipment-reviews {
	display: block;
}
.equipment-reviews .swiper-slide {
	cursor: pointer;
}
.reviewsyd{
	border-top:1px solid #A5A5A5;
	padding-top: 64px;
	margin-top: 100px;
	display: flex;
	flex-direction: column;
	gap:40px;
}
.reviewsyd review-lab .widget{
	max-width: 100% !important;
}
.reviewsyd review-lab .widget__header{
	margin: 0 !important;
}
.reviewsyd  review-lab .widget__footer{
	display: none;
}
@media (max-width: 850px) {
	.reviewsyd{
		padding-top: 40px;
		gap:32px;
		margin-top: 64px;
	}
	.reviews.reviews-other {
		display: none;
	}
	.reviews.reviews-other.equipment-reviews {
		display: block;
	}
}
.reviews__prev {
	position: absolute;
	top: calc(50% - 24px);
	-webkit-transform: translate(0%, -50%) rotate(180deg);
	transform: translate(0%, -50%) rotate(180deg);
	z-index: 10;
	left: -28px;
	cursor: pointer;
	width: 56px;
	height: 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #DCDCDC;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.reviews__prev svg {
	width: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.reviews__prev svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.reviews__prev.swiper-button-disabled svg {
	opacity: 0.2;
}
.reviews__prev:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
@media (max-width: 1023px) {
	.reviews__prev {
		left: -18px;
	}
}
@media (max-width: 750px) {
	.reviews__prev {
		display: none;
	}
}
.reviews__next {
	position: absolute;
	top: calc(50% - 24px);
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	z-index: 10;
	right: -28px;
	cursor: pointer;
	width: 56px;
	height: 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #DCDCDC;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
	.reviews__next {
		right: -18px;
	}
}
@media (max-width: 750px) {
	.reviews__next {
		display: none;
	}
}
.reviews__next svg {
	width: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.reviews__next svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.reviews__next:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.reviews__next.swiper-button-disabled svg {
	opacity: 0.2;
}
.reviews__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}
.reviews__container > a {
	display: none;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.reviews__container > a:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 950px) {
	.reviews__container > a {
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		display: inline-block;
		margin-top: 40px;
	}
}
@media (max-width: 650px) {
	.reviews__container > a {
		font-size: 15px;
		padding: 13.5px 43px;
	}
}
.reviews__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}
.reviews__top a {
	white-space: nowrap;
	text-align: center;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.reviews__top a:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 950px) {
	.reviews__top a {
		display: none;
	}
}
#equipment-reviews .reviews__title {
	margin-bottom: 0;
}
.reviews__subtitle {
	line-height: 1.2;
	font-size: 24px;
	font-weight: 700;
	margin: 60px 0 35px;
}
@media (max-width: 1100px) {
	.reviews__subtitle {
		font-size: 22px;
		margin-top: 20px;
		margin-bottom: 48px;
	}
}
@media (max-width: 650px) {
	.reviews__subtitle {
		font-size: 21px;
	}
}
.reviews__swiper {
	overflow: visible;
	max-width: 85%;
	margin:0;
}
@media (max-width: 1325px) {
	.reviews__swiper {
		max-width: 90%;
	}
}
@media (max-width: 750px) {
	.reviews__swiper {
		overflow: hidden;
		max-width: 100%;
	}
}
.reviews__swiper .swiper-slide {
	background: #FFFFFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 45px;
	padding: 40px 45px;
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	height: auto;
	/*  align-self: center;*/
}
.reviews__swiper .swiper-slide > a {
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
	color: #3f69ff;
	font-weight: 700;
}
.reviews__swiper .swiper-slide > a img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 34px;
	flex: 0 0 34px;
	width: 34px;
	margin-right: 11px;
}
@media (max-width: 1200px) {
	.reviews__swiper .swiper-slide {
		gap: 20px;
	}
}
@media (max-width: 1100px) {
	.reviews__swiper .swiper-slide {
		gap: 25px;
		padding: 30px 35px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
@media (max-width: 750px) {
	.reviews__swiper .swiper-slide {
		gap: 24px;
		padding: 16px;
		column-gap:2px;
		padding-bottom: 30px;
	}
	.reviews__swiper .swiper-slide > a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		flex:0 0 100%;
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 5;
	}
}
.reviews__swiper .reviews-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: static;
	margin-top: 40px;
}
@media (max-width: 1100px) {
	.reviews__swiper .reviews-pagination {
		margin-top: 25px;
	}
}
.reviews__swiper .reviews-pagination .swiper-pagination-bullet {
	margin: 0 8px;
	background: #DBDBDB;
	opacity: 1;
	width: 8px;
	height: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
}
.reviews__swiper .reviews-pagination .swiper-pagination-bullet-active {
	background: #3F69FF;
}
.reviews__logo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 170px;
	flex: 0 0 170px;
	width: 170px;
}
.reviews__logo img {
	width: 100%;
}
@media (max-width: 1100px) {
	.reviews__logo {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 98px;
		flex: 0 0 98px;
		width: 98px;
		-ms-flex-item-align: start;
		-ms-grid-row-align: start;
		align-self: flex-start;
	}
}
.reviews__content {
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
@media (min-width: 1101px) {
	.reviews__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 100%;
	}
}
.reviews__content p {
	font-size: 24px;
	font-weight: 600;
}
@media (max-width: 1100px) {
	.reviews__content p {
		max-width: 400px;
	}
}
.reviews__content span {
	display: block;
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	margin-top: 14px;
	margin-bottom: 11px;
}
@media (min-width: 1101px) {
	.reviews__content span {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}

.reviews__content a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
	color: #3f69ff;
	font-weight: 700;
}
.reviews__content .review-item-btns{
	display: flex;
	gap: 50px;
}
.reviews__content a img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 34px;
	flex: 0 0 34px;
	width: 34px;
	margin-right: 11px;
}
@media (max-width: 1100px) {
	.reviews__content {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.reviews__content p {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.reviews__content a {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.reviews__content span {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin-top: 0px;
		margin-bottom: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}

.reviews__user {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 210px;
	flex: 0 0 210px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media (max-width: 1100px) {
	.reviews__user {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap:16px;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		max-width: 320px;
		text-align: left;
	}
}
@media (max-width: 750px) {
	.reviews__user {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		max-width: calc(100% - 100px);
		text-align: left;
	}
	.reviews__content{
		flex:0 0 100%;
		row-gap:10px;
	}
	.reviews__content a{
		display: none;
	}
}
.reviews__image {
	width: 110px;
	height: 110px;
	border-radius: 50%;
}
.reviews__image img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 1100px) {
	.reviews__image {
		width: 158px;
		height: 158px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 158px;
		flex: 0 0 158px;
	}
}

.reviews__info {
	margin-top: 16px;
}
.reviews__info p {
	font-size: 16px;
	margin-bottom: 2px;
}
.reviews__info span {
	font-size: 12px;
}
@media (max-width: 1100px) {
	.reviews__info {
		margin-top: 0;
	}
}
@media (max-width: 750px) {
	.reviews__info p {
		font-size: 18px;
	}
	.reviews__info span {
		font-size: 13px;
	}
}
.reviews__slider {
	margin-top: 64px;
	width: 100%;
}
@media (max-width: 760px) {
	.reviews__slider {
		max-width: 100%;
		overflow: visible;
	}
}
.reviews__slider .reviews-other__pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: static;
	margin-top: 35px;
	display: none;
}

@media (max-width: 760px) {
	.equipment-reviews .reviews__slider .reviews-other__pagination {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.equipment-reviews .reviews__slider .reviews-other__pagination .swiper-pagination-bullet {
	margin: 0 8px;
	background: #DBDBDB;
	opacity: 1;
	width: 8px;
	height: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
}
.equipment-reviews .reviews__slider .reviews-other__pagination .swiper-pagination-bullet-active {
	background: #3F69FF;
}
.reviews__slider .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.reviews__slider .swiper-slide .reviews__img {
	max-width: 225px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	background: #fff;
	height: 325px;
	max-height: 325px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.reviews__slider .swiper-slide .reviews__img img {
	border-radius: 8px;
	max-height: 100%;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;

	transition: all 0.3s ease;
}
.reviews__slider .swiper-slide:hover .reviews__img img{
	transform: scale(1.05);
}
.reviews__slider .swiper-slide p {
	text-align: center;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.6);
}
.reviews__slider .swiper-slide p b {
	margin-bottom: 4px;
	margin-top: 24px;
	display: block;
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: #000;
	line-height: 1.2;
}
.reviews__slider .swiper-slide a {
	display: block;
	color: #3F69FF;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 24px;
	text-align: center;
}
.reviews__slider .swiper-slide a:hover {
	text-decoration: underline;
}
@media(max-width: 600px){
	.reviews__slider .swiper-slide a{
		margin-top: 16px;
	}
}
.reviews__slider .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	row-gap: 65px;
}
@media(max-width: 1200px){
	.reviews__slider .swiper-wrapper {
		gap: 8px;
		row-gap: 40px;
	}
}
@media(max-width: 760px){
	.equipment-reviews .reviews__slider .swiper-wrapper {
		display: flex;
		gap:0;
	}
}
.reviews__slider .swiper-pagination {
	display: none;
}
.reviews__more {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	border: none !important;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #3F69FF !important;
	gap: 12px;
	text-transform: uppercase;
	margin-top: 64px;
	font-size: 16px;
	background: none !important;
}
.reviews__more span {
	position: relative;
	display: block;
}
.reviews__more span:after {
	content: "";
	position: absolute;
	left: calc(50% + 13.5px);
	width: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	height: 2px;
	bottom: -3px;
	background: #3F69FF;
}
.reviews__more:hover span:after {
	left: 0;
	width: calc(100% + 27px);
}
@media (max-width: 760px) {
	.reviews__more {
		display: none !important;
	}
}
.reviewspage .reviews .reviews__subtitle {
	font-size: 32px;
}
@media (max-width: 1100px) {
	.reviewspage .reviews .reviews__subtitle {
		margin-top: 32px;
	}
}
@media (max-width: 650px) {
	.reviewspage .reviews .reviews__subtitle {
		font-size: 24px;
		margin-top: 32px;
	}
}
@media (max-width: 650px) {
	.reviewspage .reviews .reviews__container > a {
		display: none;
	}
}
.reviewspage .reviews.reviews-other {
	margin-top: 80px;
}
@media (max-width: 1100px) {
	.reviewspage .reviews.reviews-other {
		margin-top: 55px;
	}
}
@media (max-width: 850px) {
	.reviewspage .reviews.reviews-other {
		display: block;
	}
}
.reviews__header {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
@media (max-width: 1372px) {
	.reviews__header {
		width: calc(100% + 60px);
		margin-left: -30px;
		padding: 0 30px 20px;
	}
}
@media (max-width: 650px) {
	.reviews__header {
		width: calc(100% + 32px);
		margin-left: -16px;
		padding: 0 16px 20px;
	}
}
.reviews__header p {
	padding: 8px 24px;
	font-size: 16px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border-radius: 100px;
	cursor: pointer;
}
.reviews__header p.active {
	background: #3F69FF;
	color: #fff;
}

.reviewspage {
	padding-bottom: 90px;
}
.reviewspage .reviews__slider {
	display: none;
	margin-top: 44px;
}
.reviewspage .reviews__slider.target {
	display: block;
	margin-left: -40px;
}
@media (max-width: 760px) {
	.reviewspage .reviews__slider.target{
		margin-left: 0px;
	}
  /*.reviewspage .reviews__slider.target .swiper-slide {
    min-height: 500px;
  }*/
}
/*
@media (max-width: 760px) {
  .reviewspage .reviews__slider.target .swiper-slide {
    -webkit-animation: opacity 0.3s ease-in 0s 1;
            animation: opacity 0.3s ease-in 0s 1;
  }
}*/

/*@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}*/
.vacancy__container {
	width: 100%;
}
.vacancy__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}
.vacancy__top a {
	text-align: center;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.vacancy__top a:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 650px) {
	.vacancy__top a {
		display: none;
	}
}
.vacancy__title {
	margin-bottom: 0;
}
.vacancy__subtitle {
	line-height: 1.2;
	font-size: 21px;
	font-weight: 400;
	margin: 45px 0 60px;
	max-width: 789px;
}
@media (max-width: 1100px) {
	.vacancy__subtitle {
		margin-top: 20px;
		margin-bottom: 48px;
	}
}
@media (max-width: 650px) {
	.vacancy__subtitle {
		font-size: 16px;
	}
}

.vacancy__tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 45px;
}
@media (max-width: 1200px) {
	.vacancy__tabs {
		gap: 20px;
	}
}
@media (max-width: 1100px) {
	.vacancy__tabs {
		display: block;
	}
}
.vacancy__left {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 400px;
	flex: 0 0 400px;
}
@media (min-width: 1101px) {
	.vacancy__left.swiper {
		overflow: visible;
	}
	.vacancy__left .swiper-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		width: auto;
		gap: 8px;
	}
}
.vacancy__left .swiper-slide {
	-webkit-box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	min-height: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 24px;
	background: #fff;
	border-radius: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.vacancy:not(.gray) .vacancy__left .swiper-slide {
	-webkit-box-shadow:none;
	box-shadow: none;
	border:1px solid #BCBCBC;
}
.vacancy__left .swiper-slide.active {
	color: #fff;
	background: #3F69FF;
	border-color:#3F69FF !important;
}
.vacancy__left .swiper-slide.active .vacancy__name {
	border-color: transparent;
}
@media (max-width: 1100px) {
	.vacancy__left.swiper {
		overflow: visible;
	}
}
.vacancy__name {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-size: 22px;
	font-weight: 700;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(101, 101, 101, 0.6);
}
.vacancy__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 20px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.vacancy__bottom p {
	font-size: 16px;
	font-weight: 400;
}
.vacancy__bottom p b {
	margin-right: 11px;
	font-size: 400px;
	font-size: 32px;
}
.vacancy__bottom svg {
	width: 27px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 27px;
	flex: 0 0 27px;
}
.vacancy__bottom svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.vacancy__bottom svg:last-child {
	display: none;
}
.swiper-slide.active .vacancy__bottom svg {
	display: none;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 47px;
	flex: 0 0 47px;
	width: 48px;
}
.swiper-slide.active .vacancy__bottom svg:last-child {
	display: block;
}
@media (max-width: 1100px) {
	.vacancy__bottom svg {
		display: none !important;
	}
}
.vacancy__content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 40px;
	border-radius: 8px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #fff;
	display: none;
}
.vacancy:not(.gray) .vacancy__content{
	border:1px solid #BCBCBC;
}
.vacancy__content > p {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 20px;
}
.vacancy__content.target {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1100px) {
	.vacancy__content {
		position: relative;
		margin-top: 40px;
		padding: 40px 16px;
	}
	.vacancy__content:before{
		content:'';
		position: absolute;
		top: -10px;
		pointer-events: none;
		z-index: 0;
		left:50%; transform:translate(-50%, 0%);
		border-left:11px solid transparent;
		border-right:11px solid transparent;
		border-bottom:12px solid #fff;
	}
	.vacancy:not(.gray) .vacancy__content:before{
		display: none;
	}
	.vacancy__content > p {
		font-size: 25px;
		margin-bottom: 32px;
	}
}
.vacancy__button {
	-ms-flex-item-align: start;
	align-self: flex-start;
	padding: 16px 31px;
	margin-top: 40px;
}
@media (max-width: 1100px) {
	.vacancy__button {
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		margin-top: 30px;
	}
}
@media (max-width: 650px) {
	.vacancy__button {
		font-size: 15px;
		padding: 12.3px 31px;
	}
}
.vacancy__spoiler {
	margin-bottom: 8px;
	border-radius: 8px;
	border: 1px solid #C8C8C8;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.vacancy__spoiler:last-of-type {
	margin-bottom: 0;
}
.vacancy__spoiler.active {
	padding-bottom: 25px;
}
@media (max-width: 1100px) {
	.vacancy__spoiler.active {
		padding-bottom: 20px;
	}
}
.vacancy__spoiler:hover {
	border: 1px solid #656565;
}
.vacancy__btn {
	text-align: center;
	margin-top: 34px;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	padding: 16px 25px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	display: none;
}
@media (max-width: 650px) {
	.vacancy__btn {
		display: block;
		font-size: 15px;
		padding: 10.5px 25px;
	}
}
.vacancy__spoiler-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	padding: 25px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 1100px) {
	.vacancy__spoiler-top {
		padding: 20px;
	}
}
.vacancy__spoiler-top p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	font-size: 19px;
	color: #656565;
}
.vacancy__spoiler-top p img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	width: 24px;
}
@media (max-width: 1100px) {
	.vacancy__spoiler-top p {
		font-size: 16px;
	}
}
.vacancy__spoiler-top.active {
	margin-bottom: 25px;
	border-bottom: 1px solid #c8c8c8;
}
@media (max-width: 1100px) {
	.vacancy__spoiler-top.active {
		margin-bottom: 20px;
	}
}
.vacancy__arrow {
	background: #3F69FF;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	height: 24px;
	width: 24px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.vacancy__arrow svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.vacancy__spoiler-top.active .vacancy__arrow {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
	background: white;
}
.vacancy__spoiler-top.active .vacancy__arrow path {
	fill: #3F69FF;
}
.vacancy__spoiler-text {
	font-size: 18px;
	color: #525252;
	padding: 0 25px;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 1100px) {
	.vacancy__spoiler-text {
		padding: 0 20px;
	}
}
.vacancy__spoiler-text p {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.vacancy__spoiler-text p:before {
	margin: 0 5px;
	opacity: 0.5;
	margin-top: 8px;
	border-radius: 50%;
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 5px;
	flex: 0 0 5px;
	background: #000;
}
.vacancy__spoiler-text li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.vacancy__spoiler-text li:before{
	margin: 0 5px;
	opacity: 0.5;
	margin-top: 8px;
	border-radius: 50%;
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 5px;
	flex: 0 0 5px;
	background: #000;
}
@media(min-width: 1100.1px){
	.vacancy__spoiler-top p img {
		display: none;
	}
	.vacancy__arrow{
		display: none;
	}
	.vacancy__button{
		margin-top: 25px;
	}
	.vacancy__spoiler-text br{
		content:'';
		display: block;
		line-height: 10px;
		margin-top: 10px;
	}
	.vacancy__spoiler-text p:before {
		margin-top:12px;
		border:0;
		width: 12px;
		flex:0 0 12px;
		height: 1px;
	}
	.vacancy__spoiler-text li:before{
		margin-top:10px;
		border:0;
		width: 12px;
		flex:0 0 12px;
		height: 1px;
	}
	.vacancy__spoiler-text p{
		margin-bottom: 10px;
	}
	.vacancy__spoiler-top p{
		margin-bottom: 15px;
		font-weight: 700;
	}
	.vacancy__spoiler-text{
		padding: 0;
		/*font-size: 16px;*/
		line-height: 1.4;
		font-weight: 500;
		max-height: 100%;
	}
	.vacancy__spoiler-top.active{
		margin-bottom: 0;
		border:none;
	}
	.vacancy__content > p{
		margin-bottom: 25px;
	}
	.vacancy__spoiler{
		margin-bottom: 15px;
		border-radius: 0;
		border:none;
		padding-left: 0;
	}
	.vacancy__spoiler:hover {
		border:none;
	}
	.vacancy__spoiler.active {
		padding-bottom: 0;
	}
	.vacancy__spoiler-top{
		padding: 0;
		cursor: text;
	}
}

.our-contacts {
	position: relative;
}
.our-contacts:before {
	content: "";
	position: absolute;
	background: #CCCCCC;
	height: 1px;
	width: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	top: 0;
	max-width: 1312px;
}
.our-contacts.gray:before{
	display: none;
}
@media (max-width: 1372px) {
	.our-contacts:before {
		width: calc(100% - 60px);
	}
}
@media (max-width: 650px) {
	.our-contacts:before {
		width: calc(100% - 32px);
	}
}
@media (max-width: 991px) {
	.our-contacts {
		padding-bottom: 0;
	}
}
.our-contacts__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	gap: 40px;
}
@media (max-width: 991px) {
	.our-contacts__container {
		display: block;
	}
}
.our-contacts__body {
	max-width: 400px;
}
@media (max-width: 650px) {
	.our-contacts__body {
		max-width: 100%;
	}
}
.our-contacts__body span {
	display: block;
	font-size: 21px;
	font-weight: 400;
	margin-bottom: 7px;
}
.our-contacts__body small {
	color: #FB1515;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 23px;
	display: block;
}
@media (max-width: 650px) {
	.our-contacts__body small {
		margin-bottom: 27px;
	}
}
.our-contacts__body p {
	font-size: 16px;
	font-weight: 400;
}
.our-contacts__body p b {
	font-weight: 600;
	display: block;
}
.our-contacts__title {
	margin-bottom: 40px;
}
@media (max-width: 650px) {
	.our-contacts__title {
		margin-bottom: 12px;
	}
}
.our-contacts__phone {
	display: block;
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 5px;
}
@media (max-width: 650px) {
	.our-contacts__phone {
		font-size: 25px;
	}
}
.our-contacts__mail {
	display: block;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 23px;
}
@media (max-width: 650px) {
	.our-contacts__mail {
		margin-bottom: 27px;
		font-size: 21px;
	}
}
.our-contacts__button {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	padding: 16px 16px;
	color: #3F69FF;
	border-radius: 4px;
	margin-top: 35px;
	max-width: 276px;
	text-align: center;
	display: block;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid #3F69FF;
}
.our-contacts__button:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 650px) {
	.our-contacts__button {
		max-width: 100%;
		font-size: 15px;
		padding: 10.5px 16px;
	}
}
.our-contacts__map {
	border-radius: 12px;
	overflow: hidden;
	-webkit-box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.08);
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 100%;
}
@media (max-width: 991px) {
	.our-contacts__map {
		height: 339px;
		margin-top: 46px;
		width: calc(100% + 60px);
		margin-left: -30px;
	}
}
@media (max-width: 650px) {
	.our-contacts__map {
		height: 239px;
		width: calc(100% + 32px);
		margin-left: -16px;
	}
}
.our-contacts__map iframe {
	width: 100%;
	height: 100%;
}

.brands {
	margin-bottom: 100px;
}
@media (max-width: 1100px) {
	.brands {
		margin-bottom: 85px;
	}
}
.brands__title {
	margin-bottom: 57px;
}
@media (max-width: 1100px) {
	.brands__title {
		margin-bottom: 75px;
	}
}
@media (max-width: 760px) {
	.brands__title {
		margin-bottom: 40px;
		font-size: 48px;
	}
}
.brands__content {
	border-radius: 12px;
	border: 1px solid #DCDCDC;
	background: #F4F4F4;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 760px) {
	.brands__content {
		border-radius: 0;
		border: none;
	}
}
.brands__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 50px 45px;
	border-right: 1px solid #DCDCDC;
	font-size: 16px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 480px;
	flex: 0 0 480px;
}
.brands__left p {
	text-transform: uppercase;
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 10px 20px;
	border: 2px solid transparent;
	margin-bottom: 5px;
}
.brands__left p.active {
	color: #3F69FF;
	border-radius: 100px;
	border: 2px solid #3F69FF;
}
.brands__left p:hover {
	color: #3F69FF;
}
@media (max-width: 760px) {
	.brands__left p {
		-webkit-transition: all 0s ease 0s;
		transition: all 0s ease 0s;
		border: 0;
	}
	.brands__left p.active {
		color: #000;
		border-radius: 0;
		border: 0;
	}
}
@media (max-width: 1200px) {
	.brands__left {
		padding: 40px 20px;
	}
}
@media (max-width: 991px) {
	.brands__left {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 320px;
		flex: 0 1 320px;
	}
}
@media (max-width: 760px) {
	.brands__left {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		padding: 0;
		border: none;
		font-size: 16px;
	}
	.brands__left p {
		padding: 0;
		margin-bottom: 20px;
	}
	.brands__left p:last-child {
		margin-bottom: 0;
	}
}
.brands__name {
	display: none;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3C3434;
}
@media (max-width: 760px) {
	.brands__name {
		display: block;
		margin-bottom: 25px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}
.brands__body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: none;
	background: #fff;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.brands__body.target {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.brands__body > p {
	display: none;
}
@media (max-width: 760px) {
	.brands__body {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.7);
		width: 100%;
		padding: 20px 0;
		display: -ms-grid !important;
		display: grid !important;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		overflow-y: auto;
		height: 100%;
		z-index: 1020;
		opacity: 0;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		pointer-events: none;
	}
	.brands__body > p {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		cursor: pointer;
		z-index: -1;
	}
	.brands__body.show {
		opacity: 1;
		pointer-events: all;
	}
}
.brands__wrapper {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 18px;
	row-gap: 14px;
	padding: 50px 60px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.brands__wrapper > img {
	display: none;
}
.brands__wrapper a {
	height: 128px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	border: 1px solid #DCDCDC;
	background: #FFF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(33.3333% - 12px);
	flex: 0 0 calc(33.3333% - 12px);

	position: relative;
}
.brands__wrapper a .brands-inside-name{
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	color: white;
	text-align: center;
	justify-content: center;
}
.brands__wrapper a img {
	max-width: calc(100% - 8px);
	width: 100%;
	max-height: 100%;
}
.brands__wrapper a:hover {
	border-color: #3F69FF;
}
@media (max-width: 1200px) {
	.brands__wrapper {
		padding: 40px;
	}
}
@media (max-width: 1100px) {
	.brands__wrapper {
		row-gap: 0;
		gap: 10px;
	}
	.brands__wrapper a {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 5px);
		flex: 0 0 calc(50% - 5px);
	}
}
@media (max-width: 760px) {
	.brands__wrapper {
		padding: 30px 20px 40px;
		width: calc(100% - 32px);
		margin-left: 16px;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		background: #fff;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		border-radius: 16px;
		position: relative;
		gap: 8px;
	}
	.brands__wrapper a {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 4px);
		flex: 0 0 calc(50% - 4px);
		height: 100px;
	}
	.brands__wrapper > img {
		position: absolute;
		right: 7px;
		top: 7px;
		display: block;
		cursor: pointer;
	}
}
@media (max-width: 500px) {
	.brands__wrapper a {
		height: 82px;
	}
}

.projector {
	padding-bottom: 90px;
}
@media (max-width: 1100px) {
	.projector {
		padding-bottom: 80px;
	}
}
@media (max-width: 660px) {
	.projector {
		padding-bottom: 64px;
	}
}
.projector__container {
	max-width: 1092px;
}
.projector__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 60px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
}
.projector__content img {
	width: 100%;
}
@media (max-width: 660px) {
	.projector__content {
		gap: 40px;
		font-size: 18px;
	}
}
.projector__text:last-child {
	font-size: 18px;
	color: #3D3D3D;
}
.projector__title {
	margin-bottom: 40px;
	font-weight: 500;
}

.projector-series__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 100px;
}
@media (max-width: 1100px) {
	.projector-series__cards {
		gap: 50px;
	}
}
@media (max-width: 660px) {
	.projector-series__cards {
		gap: 30px;
	}
}
.projector-series__card {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 90px;
}
.projector-series__card:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
@media (max-width: 1100px) {
	.projector-series__card {
		gap: 50px;
	}
}
@media (max-width: 991px) {
	.projector-series__card {
		display: block;
	}
}
.projector-series__image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 45px);
	flex: 0 0 calc(50% - 45px);
	height: 380px;
}
.projector-series__image img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	max-height: 100%;
}
@media (max-width: 1100px) {
	.projector-series__image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 25px);
		flex: 0 0 calc(50% - 25px);
	}
}
@media (max-width: 991px) {
	.projector-series__image {
		max-width: 500px;
		height: auto;
		margin: 0 auto 15px;
	}
}
.projector-series__text {
	font-size: 18px;
	color: #525252;
	line-height: 1.6;
}
.projector-series__text p,
.projector-series__text h3 {
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 24px;
	color: #3c3434;
	font-weight: 700;
}
@media (max-width: 660px) {
	.projector-series__text {
		font-size: 16px;
	}
	.projector-series__text p,
	.projector-series__text h3 {
		font-size: 24px;
		margin-bottom: 16px;
	}
}

@media (min-width: 1101px) {
	.other-brand {
		padding-bottom: 150px;
	}
}
.other-brand__title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 56px;
}
@media (max-width: 1100px) {
	.other-brand__title {
		margin-bottom: 45px;
	}
}
.other-brand__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 24px;
	row-gap: 20px;
}
@media (max-width: 1100px) {
	.other-brand__cards {
		gap: 20px;
	}
}
@media (max-width: 530px) {
	.other-brand__cards {
		gap: 10px;
	}
}
.other-brand__card {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(25% - 18px);
	flex: 0 0 calc(25% - 18px);
	border-radius: 12px;
	border: 1px solid #DCDCDC;
	background: #fff;
	height: 180px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.other-brand__card:hover {
	border-color: #3F69FF;
}
.other-brand__card img {
	width: 100%;
	max-height: 100%;
	max-width: calc(100% - 8px);
}
@media (max-width: 1100px) {
	.other-brand__card {
		height: 142px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(33.3333% - 13.3333333333px);
		flex: 0 0 calc(33.3333% - 13.3333333333px);
	}
}
@media (max-width: 715px) {
	.other-brand__card {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 10px);
		flex: 0 0 calc(50% - 10px);
	}
}
@media (max-width: 530px) {
	.other-brand__card {
		height: 120px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 5px);
		flex: 0 0 calc(50% - 5px);
	}
}

.project__container {
	width: 100%;
}
.project__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 2px solid #A5A5A5;
}
@media (max-width: 1100px) {
	.project__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 50px;
		border: none;
	}
}
@media (max-width: 720px) {
	.project__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
	}
}
.project__title {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
}
.project__overtitle{
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;

}
.project__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
@media (max-width: 1100px) {
	.project__nav {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		position: relative;
	}
	.project__nav:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #a5a5a5;
	}
}
@media (max-width: 720px) {
	.project__nav {
		gap: 25px;
	}
}
.project__nav p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	gap: 8px;
	font-weight: 500;
	opacity: 0.5;
	font-size: 18px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	position: relative;
	padding-bottom: 25px;
}
.project__nav p b {
	font-weight: 500;
}
.project__nav p span {
	height: 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.project__nav p span svg {
	max-height: 100%;
}
@media (max-width: 760px) {
	.project__nav p {
		font-size: 16px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 4px;
		padding-bottom: 20px;
	}
	.project__nav p b {
		display: none;
	}
}
.project__nav p:after {
	content: "";
	position: absolute;
	bottom: -2px;
	width: 0;
	left: 50%;
	z-index: 1;
	background: #3F69FF;
	height: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1100px) {
	.project__nav p:after {
		bottom: 0;
	}
}
.project__nav p svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.project__nav p:hover {
	opacity: 1;
}
.project__nav p:hover path {
	fill: #3F69FF;
}
.project__nav p.active {
	opacity: 1;
}
.project__nav p.active:after {
	width: 100%;
	left: 0;
}
.project__nav p.active path {
	fill: #3F69FF;
}
.project__body {
	display: none;
}

.project__body.target {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.project__img {
	width: 100%;
}
.project__img img {
	width: 100%;
}

.project__content {
	width: 100%;
	max-width: 867px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap:70px;
}
.project__subtitle {
	font-size: 20px;
	line-height: 1.6;
	max-width: 1090px;
	font-weight: 500;

	margin-bottom: 40px;
}
.project__subtitle p {
	font-size: 18px;
}
.project__subtitle:last-child {
	margin-bottom: 0;
}
.project__wrapper{
	display: flex;
	flex-direction: column;
	gap:24px;
}
@media (max-width: 1100px) {
	.project__content {
		gap: 60px;
	}
}
@media (max-width: 660px) {
	.project__content {
		gap: 50px;
	}
	.project__subtitle{
		font-size: 16px;
		font-weight: 500;
		color: #525252;
	}
}
.project__list {
	margin: 0px 0 90px;
	padding: 50px;
	border: 4px solid #3F69FF;
	border-radius: 12px;
	width: 100%;
	padding-bottom: 30px;
}
@media (max-width: 1100px) {
	.project__list {
		margin: 0px 0 60px;
		padding: 50px 40px;
	}
}
.project__list-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
}
.project__list ul {
	font-size: 16px;
	font-weight: 500;
	-webkit-columns: 3 300px;
	-moz-columns: 3 300px;
	columns: 3 300px;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}
.project__wrapper ul{
	font-size: 18px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap:15px;
}
.project__wrapper ul li:before {
	background: #3F69FF;
	height: 8px;
	margin-top: 7px;
	width: 8px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	border-radius: 50%;
	display: block;
	content: "";
}
.project__wrapper ul li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.4;
}
.project__list ul li {
	-moz-column-break-inside: avoid;
	-webkit-column-break-inside: avoid;
	column-break-inside: avoid;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 12px;
	line-height: 1.4;
	margin-bottom: 25px;
}
.project__list ul li:before {
	background: #3F69FF;
	height: 8px;
	margin-top: 7px;
	width: 8px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	border-radius: 50%;
	display: block;
	content: "";
}
@media (max-width: 660px) {
	.project__list {
		padding: 24px;
		margin: 0px 0 40px;
	}
	.project__list ul {
		font-size: 14px;
	}
	.project__list li:before {
		margin-top: 10px;
	}
	.project__list-title {
		font-size: 22px;
	}
}
.project__mark {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	padding-left: 55px;
	position: relative;
}
.project__mark:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 4px;
	height: 90%;
	background: #3F69FF;
}
@media (max-width: 660px) {
	.project__mark {
		padding-left: 30px;
	}
}


.project__result > p {
	font-size: 18px;
	font-weight: 500;
	max-width: 1090px;
	margin-bottom: 40px;
}
.project__result > p:last-child {
	margin-bottom: 0;
}
.project__result > p span {
	color: #3d3d3d;
}
.project__result > p b {
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
}
@media (max-width: 1100px) {
	.project__result {
		padding-bottom: 60px;
	}
}
@media (max-width: 660px) {
	.project__result > p {
		font-size: 16px;
	}
}

.project__gallery {
	padding: 0px 0 0;
	margin-top: 100px;
}
@media (max-width: 1100px) {
	.project__gallery {
		padding: 0px 0 0;
		margin-top: 55px;
	}
}
.project__gallery .swiper {
	margin: 0;
}
.gallery-swiper.onlymobile{
	display: none;
}

.gallery-swiper__image{
	height: 248px;
	border-radius: 16px;
}
.gallery-swiper__image:first-child{
	grid-column: span 2;
	height: 520px;
	grid-row:span 2;
}
.gallery-swiper__image img{
	width:100%;height:100%;object-fit:cover;
}
@media(max-width: 1100px){
	.gallery-swiper.onlymobile{
		display: block;
	}
	.gallery-swiper.onlydesk{
		display: none;
	}
}
.project-table {
	border:1px solid #A5A5A5;
	display: grid;
	grid-template-columns:290fr 262fr 314fr;
}

.project-table__column {
	display: flex;
	flex-direction: column;
	border-right:1px solid #A5A5A5;
}
.project-table__column:last-child{
	border:none;
}

.project-table__column small{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.02rem;
}
.project-table__row {
	border-bottom:1px solid #A5A5A5;
}

.project-table__row:last-child{
	border:none;
}
.project-table__location {
	padding: 21px 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap:6px;
}

.project-table__location span{
	display: flex;
	font-size: 22px;
	gap:8px;
	font-weight: 600;
}

.project-table__location span svg{
	flex:0 0 18px;
	width: 18px;
}
.project-table__days {
	padding: 17.5px 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap:6px;
}
.project-table__days span{
	font-size: 16px;
	font-weight:600;
}
.project-table__days span b{
	font-size: 40px;
	line-height: 1;
	color: #3F69FF;
}
.project-table__cost {
	padding: 18px;
	padding-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap:23px;
	height: 100%;
	justify-content: flex-end;
	text-align: center;
}
.project-table__cost span{
	color: #3F69FF;
	font-size: 25px;
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.project-table__cost span b{
	font-size: 60px;
}
.project-table__want {
	height: 100%;
	padding: 18px 22px;
	display: flex;
	text-align: center;
	flex-direction: column;
	gap:23px;
	justify-content: flex-end;
}
.project-table__want span{
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.02rem;
	max-width: 245px;
	margin: 0 auto;
}
.project-table__want a{
	background: #3F69FF;
	border-radius: 4px;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	width: 100%;
	padding: 16px 5px;
	text-transform: uppercase;
	transition: all 0.3s ease 0s;
}
.project-table__want a:hover {
	background: #0036F8;
}
@media(max-width: 900px){
	.project-table__want{
		padding-top: 45px;
	}
	.project-table{
		display: block;
	}
	.project-table__cost{
		padding: 30px;
		gap:11px;
		text-align: left;
	}
	.project-table__location{
		padding-top: 25px;
	}
	.project-table__column{
		border-right:0;
		border-bottom:1px solid #A5A5A5;
	}
	.project-table__column:last-child{
		border:none;
	}
}
.project__gallery .swiper .swiper-slide {
	max-height: 650px;
	border-radius: 8px;
	overflow: hidden;
	height: auto;
}
.project__gallery .swiper .swiper-slide.gallery-swiper__grid{
	display: grid;
	border-radius: 0;
	gap:24px;
	max-height: 100% !important;
	grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1100px) {
	.project__gallery .swiper .swiper-slide {
		max-height: 450px;
	}
}
@media (max-width: 740px) {
	.project__gallery .swiper .swiper-slide {
		max-height: calc(240px + 210 * (100vw - 375px) / 365);
	}
}
.project__gallery .swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1100px) {
	.project__gallery .swiper .swiper-slide:hover img {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.project .gallery-pagination {
	display: none;
}
@media (max-width: 660px) {
	.project .gallery-pagination {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 24px;
	}
	.project .gallery-pagination .swiper-pagination-bullet {
		margin: 0 8px;
		background: #DBDBDB;
		opacity: 1;
		width: 8px;
		height: 8px;
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8px;
		flex: 0 0 8px;
	}
	.project .gallery-pagination .swiper-pagination-bullet-active {
		background: #3F69FF;
	}
}
.project__gallery-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 35px;
}
@media (max-width: 660px) {
	.project__gallery-top {
		margin-bottom: 24px;
	}
}
.project__arrows {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
@media (max-width: 660px) {
	.project__arrows {
		display: none;
	}
}
.project__prev {
	cursor: pointer;
	background: #fff;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 64px;
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
}
.project__prev svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.project__prev svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.project__prev:hover path {
	stroke: #3F69FF;
}
.project__next {
	cursor: pointer;
	background: #fff;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 64px;
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
}
.project__next svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.project__next:hover path {
	stroke: #3F69FF;
}

.project__review-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 50px;
}
.project__review-top p {
	text-align: right;
	color: #525252;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	max-width: 533px;
	display: none;
}
.project__review-top p:first-child {
	text-align: left;
}
.project__review-other .project__review-top {
	margin-bottom: 0px;
}
@media (max-width: 1100px) {
	.project__review-top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 25px;
	}
	.project__review-top p {
		text-align: left;
	}
}
@media (max-width: 1100px) and (max-width: 720px) {
	.project__review-top {
		gap: 20px;
		margin-bottom: 50px;
	}
	.project__review-other .project__review-top {
		margin-bottom: 0px;
	}
	.project__review-top p {
		font-size: 16px;
	}
}
.project__review-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
.project__review-other .project__review-body {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (max-width: 1100px) {
	.project__review-body {
		gap: 40px;
	}
}
@media (max-width: 720px) {
	.project__review-body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 60px;
		border: none;
		padding: 0;
	}
}
.project__review-text{
	display: none;
}
.project__review-newimg{
	width: 100%;
	max-width: 481px;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.08);
	cursor: pointer;
}
@media(max-width: 1023px){
	.project__review-newimg{
		margin: 0 auto;
		width: 82%;
	}
	.project__review-text{
		display: block;
		text-transform: uppercase;
		font-size: 16px;
		line-height: 1.4;
		font-weight: 700;
		color: #525252;
	}
}
.project__review-newimg img{
	width: 100%;
}
.project__review-image {
	cursor: pointer;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(33.333% - 33.3333333333px);
	flex: 0 0 calc(33.333% - 33.3333333333px);
}
@media (max-width: 1100px) {
	.project__review-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 20px);
		flex: 0 0 calc(50% - 20px);
	}
}
@media (max-width: 720px) {
	.project__review-image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}
.project__review-other .project__review-image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	width: 100%;
	max-width: 644px;
}
.project__review-image img {
	-webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.08);
	width: 100%;
}
.project__review-user {
	width: 72px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 72px;
	flex: 0 0 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
}
.project__review-user img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.project__review-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 42px 0;
	border-top: 1px solid #A6A6A6;
	border-bottom: 1px solid #A6A6A6;
	display: none;
}
.project__review-other .project__review-content {
	border-bottom: 0;
}
@media (max-width: 1100px) {
	.project__review-content {
		padding: 0;
		border: 0;
	}
}
.project__review-content > p {
	color: #3C3434;
	font-size: 22px;
	font-weight: 600;
}
.project__review-content > span {
	font-size: 20px;
	color: #525252;
	display: block;
	margin: 12px 0 32px;
}
@media (max-width: 720px) {
	.project__review-content {
		padding: 52px 0;
		border-top: 1px solid #A6A6A6;
		border-bottom: 1px solid #A6A6A6 !important;
	}
	.project__review-content > p {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		margin: 25px 0;
	}
	.project__review-content span {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		margin: 0;
		font-size: 16px;
	}
}
.project__review-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	color: #525252;
	font-size: 14px;
}
.project__review-bottom p {
	max-width: 335px;
}
@media (max-width: 720px) {
	.project__review-bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.project__review-other .project__review-bottom {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 15px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (min-width: 1101px) {
	.equipment {
		padding-top: 96px;
		scroll-margin-top: -96px;
	}
	.equipment.videowalls-equipment {
		padding-bottom: 40px;
		padding-top: 0;
	}
	.equipment.mod_top {
		padding: 0px;
		scroll-margin-top: -96px;
	}
}
.equipment__title {
	margin-bottom: 64px;
}
.equipment__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 100px;
}
@media (max-width: 767px) {
	.equipment__cards {
		gap: 64px;
	}
}
.equipment__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 90px;
}
@media (max-width: 1100px) {
	.equipment__card {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		gap: 48px;
	}
}
@media (max-width: 767px) {
	.equipment__card {
		gap: 32px;
	}
}
.equipment__card.hidden {
	display: none;
}
.equipment__card.hidden.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.equipment__card:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.equipment__card p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	color: #525252;
	font-size: 18px;
	font-weight: 500;
}
.equipment__card p b,
.equipment__card h3 {
	color: #3C3434;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
}
.equipment__card h3{
	margin-bottom: 24px;
}
@media (max-width: 1100px) {
	.equipment__card p {
		font-size: 16px;
	}
	.equipment__card p b,
	.equipment__card h3 {
		font-size: 24px;
	}
}
.equipment__bottom {
	margin: 100px auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (max-width: 650px) {
	.equipment__bottom {
		margin-top: 64px;
	}
}
.equipment__more {
	white-space: nowrap;
	text-align: center;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	}
.equipment__more:hover {
	background: #3F69FF;
	color: #fff;
}
.equipment__more img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 13px;
	flex: 0 0 13px;
	width: 13px;
}
.equipment__more:after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0;
	bottom: -2px;
	height: 2px;
	background: #3f69ff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.equipment__more:hover:after {
	background: #3F69FF;
	color: #fff;
}
.equipment__image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 45px);
	flex: 0 0 calc(50% - 45px);
	height: 400px;
	overflow: hidden;
	border-radius: 8px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
@media (max-width: 1100px) {
	.equipment__image {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		height: auto;
		width: 100%;
	}
}
.equipment__image img {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.equipment__image:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.solutions__container {
	width: 100%;
}
.solutions__body {
	position: relative;
}
.solutions__slider {
	border-radius: 8px;
	overflow: hidden;
}
.solutions__slider .swiper-slide {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 8px;
	overflow: hidden;
}
.solutions__prev {
	position: absolute;
	top: 250px;
	-webkit-transform: translate(0%, -50%) rotate(180deg);
	transform: translate(0%, -50%) rotate(180deg);
	z-index: 10;
	left: -32px;
	cursor: pointer;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px -16px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px -16px 15px 0px rgba(0, 0, 0, 0.15);
}
.solutions__prev.swiper-button-lock{
	opacity: 0;
	pointer-events: none;
}
.solutions__prev svg {
	width: 24px;
	height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.solutions__prev svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.solutions__prev.swiper-button-disabled svg {
	opacity: 0.2;
}
.solutions__prev:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.solutions__prev:not(.swiper-button-disabled):hover svg path {
	stroke: #3F69FF;
}
@media (max-width: 1390px) {
	.solutions__prev {
		left: -21px;
	}
}
@media (max-width: 720px) {
	.solutions__prev {
		display: none;
	}
}
.solutions__next {
	position: absolute;
	top: 250px;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	z-index: 10;
	right: -32px;
	cursor: pointer;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.solutions__next.swiper-button-lock{
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 1390px) {
	.solutions__next {
		right: -21px;
	}
}
@media (max-width: 720px) {
	.solutions__next {
		display: none;
	}
}
.solutions__next svg {
	width: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 24px;
}
.solutions__next svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.solutions__next:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.solutions__next:not(.swiper-button-disabled):hover svg path {
	stroke: #3F69FF;
}
.solutions__next.swiper-button-disabled svg {
	opacity: 0.2;
}
.solutions__pagination {
	display: none;
}
.solutions__pagination .swiper-pagination-bullet {
	margin: 0 8px;
	background: #DBDBDB;
	opacity: 1;
	width: 8px;
	height: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
}
.solutions__pagination .swiper-pagination-bullet-active {
	background: #3F69FF;
}
@media (max-width: 720px) {
	.solutions__pagination {
		margin-top: 32px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.solutions__image {
	height: 250px;
	width: 100%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	overflow: hidden;
}
.solutions__image img {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.solutions__image:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.solutions__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 24px;
	background: #fff;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.solutions__content span {
	margin-top: 12px;
	margin-bottom: 24px;
	font-size: 16px;
	opacity: 0.6;
	color: #000;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: block;
}
.solutions__content p,
.solutions__content h3 {
	font-size: 24px;
	font-weight: 700;
}
.solutions__content a {
	color: rgba(63, 105, 255, 0.4);
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	padding: 24px 12px;
	border-radius: 8px;
	border: 2px solid rgba(63, 105, 255, 0.2);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.solutions__content a b {
	color: #3F69FF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.solutions__content a:hover {
	background: #3F69FF;
	border-color: #3F69FF;
	color: rgba(255, 255, 255, 0.6);
}
.solutions__content a:hover b {
	color: #fff;
}

.rooms__container {
	width: 100%;
}
.rooms__container > a {
	display: none;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	margin-top: 32px;
	font-weight: 700;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__container > a:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 1000px) {
	.rooms__container > a {
		display: block;
	}
}
@media (max-width: 650px) {
	.rooms__container > a {
		font-size: 15px;
		padding: 13.5px 43px;
	}
}
.rooms__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 55px;
}
@media (max-width: 800px) {
	.rooms__top {
		margin-bottom: 32px;
	}
}
.rooms__top a {
	white-space: nowrap;
	text-align: center;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__top a:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 1000px) {
	.rooms__top a {
		display: none;
	}
}
.rooms__title {
	max-width: 705px;
	margin-bottom: 0;
}
.rooms__body {
	position: relative;
}
.rooms__slider {
	overflow: visible;
}
.rooms__image {
	position: relative;
	height: 420px;
	padding: 40px;
	padding-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media (max-width: 800px) {
	.rooms__image {
		height: 214px;
	}
}
.rooms__image > * {
	position: relative;
	z-index: 2;
	color: #fff;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__image small {
	margin-bottom: 12px;
	display: block;
	font-size: 18px;
	font-weight: 600;
}
@media (max-width: 800px) {
	.rooms__image small {
		display: none;
	}
}
.rooms__image p {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	max-width: 450px;
	text-wrap: balance;
}
@media (max-width: 800px) {
	.rooms__image p {
		display: none;
	}
}
.rooms__image span {
	font-size: 18px;
	font-weight: 600;
}
@media (max-width: 800px) {
	.rooms__image span {
		display: none;
	}
}
.rooms__image:after {
	content: "";
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 800px) {
	.rooms__image:after {
		display: none;
	}
}
.rooms__image img {
	z-index: 0;
	opacity: 1;
	pointer-events: all;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 800px) {
	.rooms__image img {
		display: block;
	}
}
.rooms__slider .swiper-slide:hover .rooms__image > * {
	opacity: 1;
	pointer-events: all;
}
.rooms__slider .swiper-slide:hover .rooms__image:after {
	opacity: 0.5;
}
.rooms__name {
	color: #696969;
	font-size: 24px;
	font-weight: 700;
	margin-top: 24px;
	max-width: 500px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__slider .swiper-slide:hover .rooms__name {
	color: #3F69FF;
}
@media (max-width: 800px) {
	.rooms__name {
		font-size: 22px;
	}
}
.rooms__costs {
	margin-top: 55px;
	border-top: 1px solid #A5A5A5;
	padding-top: 55px;
}
.rooms__costs p {
	line-height: 1.2;
	font-size: 32px;
	margin-bottom: 55px;
	font-weight: 700;
}
.rooms__costs p.personal{
	font-size: 14px;
	line-height: 24px;
	text-align: left;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 0px;
}
@media (max-width: 800px) {
	.rooms__costs {
		margin-top: 32px;
		padding-top: 32px;
	}
	.rooms__costs p {
		margin-bottom: 32px;
	}

	.rooms__costs p.personal{
		font-size: 12px;
		text-align: left;
	}
}
.rooms__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
}
@media (max-width: 1100px) {
	.rooms__form {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.rooms__form button {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}
@media (max-width: 650px) {
	.rooms__form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.rooms__form input {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 0;
	border-radius: 8px;
	background: #F4F4F4;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	color: #000;
	padding: 24px 30px;
}
.rooms__form input::-webkit-input-placeholder {
	color: #000;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__form input::-moz-placeholder {
	color: #000;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__form input:-ms-input-placeholder {
	color: #000;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__form input::-ms-input-placeholder {
	color: #000;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__form input::placeholder {
	color: #000;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__form input:focus::-webkit-input-placeholder {
	opacity: 0;
}
.rooms__form input:focus::-moz-placeholder {
	opacity: 0;
}
.rooms__form input:focus:-ms-input-placeholder {
	opacity: 0;
}
.rooms__form input:focus::-ms-input-placeholder {
	opacity: 0;
}
.rooms__form input:focus::placeholder {
	opacity: 0;
}
.rooms__prev {
	position: absolute;
	top: 210px;
	-webkit-transform: translate(0%, -50%) rotate(180deg);
	transform: translate(0%, -50%) rotate(180deg);
	z-index: 10;
	left: -32px;
	cursor: pointer;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px -16px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px -16px 15px 0px rgba(0, 0, 0, 0.15);
}
.rooms__prev svg {
	width: 24px;
	height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.rooms__prev svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__prev.swiper-button-disabled svg {
	opacity: 0.2;
}
.rooms__prev:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.rooms__prev:not(.swiper-button-disabled):hover svg path {
	stroke: #3F69FF;
}
@media (max-width: 1390px) {
	.rooms__prev {
		left: -21px;
	}
}
@media (max-width: 800px) {
	.rooms__prev {
		display: none;
	}
}
.rooms__next {
	position: absolute;
	top: 210px;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	z-index: 10;
	right: -32px;
	cursor: pointer;
	width: 64px;
	height: 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 16px 15px 0px rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1390px) {
	.rooms__next {
		right: -21px;
	}
}
@media (max-width: 800px) {
	.rooms__next {
		display: none;
	}
}
.rooms__next svg {
	width: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 24px;
}
.rooms__next svg path {
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.rooms__next:not(.swiper-button-disabled):hover {
	border-color: #3F69FF;
}
.rooms__next:not(.swiper-button-disabled):hover svg path {
	stroke: #3F69FF;
}
.rooms__next.swiper-button-disabled svg {
	opacity: 0.2;
}
.rooms__pagination {
	display: none;
}
.rooms__pagination .swiper-pagination-bullet {
	margin: 0 8px;
	background: #DBDBDB;
	opacity: 1;
	width: 8px;
	height: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
}
.rooms__pagination .swiper-pagination-bullet-active {
	background: #3F69FF;
}
@media (max-width: 800px) {
	.rooms__pagination {
		margin-top: 32px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.steps__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 64px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media (max-width: 1100px) {
	.steps__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
	}
}
.steps__aside {
	padding: 24px;
	border-radius: 8px;
	background: #3F69FF;
	color: #fff;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 421px;
	flex: 0 0 421px;
}
.steps__aside p {
	font-size: 24px;
	font-weight: 700;
}
.steps__aside span {
	display: block;
	font-size: 16px;
	opacity: 0.6;
	margin: 12px 0 24px;
}
.steps__aside a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 8px;
	padding: 24px 10px;
	text-transform: uppercase;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.2);
	gap: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.steps__aside a:hover {
	background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1100px) {
	.steps__aside {
		padding: 24px 16px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}
.steps__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}
.steps__count {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 28px;
	flex: 0 0 28px;
	position: relative;
}
.steps__count > span {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 28px;
	flex: 0 0 28px;
	position: relative;
	z-index: 1;
	background: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.2);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.steps__count:after {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	top: 32px;
	height: calc(100% - 32px + 20px);
	background: rgb(204, 204, 204);
	width: 1px;
}
.steps__p b,
.steps__p h3 {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
	color: #696969;
}
@media (max-width: 1100px) {
	.steps__p b,
	.steps__p h3{
		font-size: 22px;
	}
}
.steps__span {
	max-height: 0;
	display: block;
	margin-top: 0px;
	opacity: 0;
	font-size: 16px;
	position: relative;
	pointer-events: none;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.steps__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	cursor: pointer;
	position: relative;
}
@media (max-width: 1100px) {
	.steps__row {
		gap: 20px;
	}
}
.steps__row.active .steps__count > span, .steps__row.blue .steps__count > span {
	background: #3F69FF;
	border-color: #3F69FF;
	color: #fff;
}
.steps__row.blue b {
	color: #3F69FF;
}
.steps__row.blue .steps__count:after {
	display: none;
}
.steps__row.active b,
.steps__row.active h3 {
	color: #3C3434;
}
.steps__row.active .steps__p .steps__span {
	pointer-events: auto;
	opacity: 0.6;
	margin-top: 12px;
}

.departure__table {
	margin-top: 35px;
	border: 1px solid #A5A5A5;
	border-radius: 8px;
	overflow: hidden;
}
.departure__table.hidden {
	display: none;
}
.departure__table-title {
	margin-top: 75px;
	margin-bottom: 35px;
	color: #3C3434;
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
}
@media (max-width: 991px) {
	.departure__table-title {
		margin-top: 60px;
		margin-bottom: 30px;
	}
}
.departure__table-title a {
	color: #3F69FF;
	border-bottom: 1px dashed #3F69FF;
}
.departure__table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 21px;
	line-height: 1.2;
	background: #FFF;
}
@media (max-width: 1100px) {
	.departure__table table {
		font-size: 18px;
	}
}
.departure__table table thead {
	font-weight: 700;
	background: #F4F4F4;
	text-align: left;
}
.departure__table table thead th {
	padding: 25px 50px;
	border-right: 1px solid #A5A5A5;
}
.departure__table table thead th:last-child {
	width: 360px;
	text-align: center;
	border-right: none;
}
@media (max-width: 1100px) {
	.departure__table table thead th {
		padding: 16px 20px;
	}
	.departure__table table thead th:last-child {
		width: 30%;
	}
}
.departure__table table tbody {
	color: #525252;
}
.departure__table table tbody td {
	-webkit-columns: 3 200px;
	-moz-columns: 3 200px;
	columns: 3 200px;
	padding: 35px 50px 20px;
	-webkit-column-gap: 50px;
	-moz-column-gap: 50px;
	column-gap: 50px;
	border-top: 1px solid #A5A5A5;
	border-bottom: 1px solid #A5A5A5;
	border-right: 1px solid #A5A5A5;
}
.departure__table table tbody td:last-child {
	border-right: 0;
	text-align: center;
}
.departure__table table tbody td p {
	margin-bottom: 15px;
}
.departure__table table tbody tr:last-child td {
	border-bottom: 0;
}
@media (max-width: 1100px) {
	.departure__table table tbody {
		font-size: 16px;
	}
	.departure__table table tbody td {
		padding: 16px;
		-webkit-column-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
	}
}
.departure__table table tfoot {
	display: none;
	text-align: center;
}
.departure__table table tfoot td {
	padding: 30px;
}
@media (max-width: 1100px) {
	.departure__table table tfoot td {
		padding: 20px;
	}
}
.departure__table table tfoot td p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%; /* 16px */
	text-transform: uppercase;
}
.departure__table table tfoot td p span {
	color: #3F69FF;
	display: block;
	padding-bottom: 2px;
	border-bottom: 1px dashed rgba(63, 105, 255, 0.5);
}
.departure__container:before {
	content: "";
	height: 1px;
	width: 100%;
	background: #a5a5a5;
	display: block;
	margin-bottom: 55px;
}
.departure__container p.personal{
	margin-top: 10px;
	margin-bottom: 0px;
}
@media (max-width: 650px) {
	.departure__container:before {
		margin-bottom: 40px;
	}
}
.departure__container:after {
	content: "";
	height: 0px;
	width: 100%;
	background: #a5a5a5;
	display: block;
	margin-top: 55px;
}
@media (max-width: 650px) {
	.departure__container:after {
		margin-top: 40px;
	}
}
.departure__title {
	max-width: 754px;
}

@media (max-width: 1100px) {
	.services-content {
		display: none;
	}
}
.services-content__title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
}
.services-content__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 16px;
}
.services-content__links a {
	padding: 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	border-radius: 8px;
	background: #E7E7E7;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.services-content__links a:hover {
	background: #3F69FF;
	color: #fff;
}

body.popuplock {
	width: unset;
	margin-right: unset;
	overflow: unset!important;
	overscroll-behavior-y: unset;
	/*overflow: hidden;*/
}

.popup::-webkit-scrollbar {
	width: 0px;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100020;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow-y: auto;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.popup.open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
.popup__close {
	cursor: pointer;
	position: absolute;
	right: 30px;
	top: 30px;
}
.popup__close img {
	width: 32px;
}
@media (max-width: 767px) {
	.popup__close {
		right: 10px;
		top: 10px;
	}
}
.popup__bottom {
	position: fixed;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 822px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #fff;
	background: #3F69FF;
	padding: 23px 64px;
}
.popup__bottom:after {
	content: "";
	position: absolute;
	left: calc((822px - 100vw) / 2);
	width: 100vw;
	z-index: 0;
	height: 100%;
	background: #3F69FF;
}
.popup__bottom button {
	position: relative;
	z-index: 1;
	border-radius: 8px;
	background: #FFF;
	padding: 16px 40px;
	text-align: center;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.popup__bottom {
		padding: 20px 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}
}
@media (max-width: 650px) {
	.popup__bottom {
		padding: 16px;
	}
}
.popup__bottom p {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	font-size: 16px;
}
@media (max-width: 650px) {
	.popup__bottom p {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.popup__bottom p span {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}
.popup__content {
	position: relative;
	background: #fff;
	max-width: 822px;
	width: 100%;
	padding: 64px;
	padding-bottom: 165px;
}
@media (max-width: 767px) {
	.popup__content {
		padding: 40px 30px;
		padding-bottom: 130px;
	}
}
@media (max-width: 650px) {
	.popup__content {
		padding: 40px 16px;
		padding-bottom: 170px;
	}
}
.popup__title {
	max-width: 570px;
	font-size: 48px;
	line-height: 120%; /* 57.6px */
	letter-spacing: -0.96px;
}
@media (max-width: 767px) {
	.popup__title {
		font-size: 36px;
	}
}
.popup__subtitle {
	color: #3C3434;
	font-size: 14px;
	margin-top: 21px;
}
.popup__wrapper {
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
}
.popup__row.active svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.popup__row.active svg path {
	stroke: #3F69FF;
}
.popup__row.active .popup__body {
	opacity: 1 !important;
}
.popup__top {
	cursor: pointer;
	padding-bottom: 16px;
	border-bottom: 1px solid #BCBCBC;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.popup__top svg {
	width: 24px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.popup__left {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}
.popup__left p {
	color: #3C3434;
	font-size: 22px;
}
.popup__left p small {
	font-size: 14px;
	color: #3f69ff;
}
.popup__left b {
	background: #3F69FF;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 32px;
	flex: 0 0 32px;
	height: 32px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
}
.popup__body {
	opacity: 0;
	max-height: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	pointer-events: none;
	margin-left: 40px;
	margin-right: 40px;
}
@media (max-width: 767px) {
	.popup__body {
		margin-left: 0px;
		margin-right: 0px;
	}
}
.popup__row.active .popup__body {
	margin-top: 24px;
	pointer-events: auto;
}
.popup__radios {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.popup__checkboxes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.popup__radio label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 14px;
	font-size: 16px;
	line-height: 1.3;
	cursor: pointer;
	color: #3c3434;
}
.popup__radio label span {
	margin-top: 1px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20px;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #b4b4b4;
	background: #f2f2f8;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 660px) {
	.popup__radio label span {
		margin-top: 2px;
	}
}
.popup__radio label span:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.popup__radio input {
	display: none;
}
.popup__radio input:checked ~ label span {
	border-color: #3F69FF;
}
.popup__radio input:checked ~ label span:after {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}
.popup__checkbox label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 14px;
	font-size: 16px;
	line-height: 1.3;
	cursor: pointer;
	color: #3c3434;
}
.popup__checkbox label span {
	margin-top: 2px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16px;
	flex: 0 0 16px;
	width: 16px;
	border-radius: 2px;
	height: 16px;
	border: 1px solid #b4b4b4;
	background: #fff;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.popup__checkbox label span:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	width: 11px;
	height: 8px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: url("../img/equipment/checkbox.svg") center/11px 8px no-repeat;
}
.popup__checkbox input {
	display: none;
}
.popup__checkbox input:checked ~ label span {
	border-color: #3F69FF;
}
.popup__checkbox input:checked ~ label span:after {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.formPopup {
	background: rgba(0, 0, 0, 0.8);
	padding: 30px 0;
}
.formPopup > span {
	position: fixed;
	top: 0;
	cursor: pointer;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.formPopup__content {
	position: relative;
	z-index: 1;
	border-radius: 8px;
	position: relative;
	position: relative;
	background: #fff;
	max-width: 572px;
	width: calc(100vw - 60px);
	padding: 40px 64px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
}
@media (max-width: 650px) {
	.formPopup__content {
		padding: 32px 24px;
		width: calc(100vw - 32px);
	}
}
.formPopup__content button {
	margin-top: 20px;
	border-radius: 8px;
	background: #3F69FF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	color: #fff;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
	padding: 14px 16px;
	margin-bottom: -6px;
}
@media (max-width: 650px) {
	.formPopup__content button {
		margin-top: 15px;
	}
}
.formPopup__content button:hover {
	background: #0036F8;
}
.formPopup__content .popup__close {
	right: 16px;
	top: 16px;
}
.formPopup__inputs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 650px) {
	.formPopup__inputs {
		gap: 18px;
	}
}
.formPopup__title {
	color: #3C3434;
	font-family: Inter;
	font-size: 24px;
	font-weight: 700;
	line-height: 160%; /* 38.4px */
}
.formPopup__subtitle {
	color: #3C3434;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
.formPopup__input span {
	display: block;
	color: #3C3434;
	font-family: Inter;
	font-size: 12px;
	font-weight: 500;
	line-height: 160%;
	margin-bottom: 5px;
}
.formPopup__input input {
	width: 100%;
	border-radius: 6px;
	border: 1px solid #D5DBE9;
	background: #FFF;
	padding: 13px 17px;
	color: #242424;
	font-family: Inter;
	font-size: 14px;
	background: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
.formPopup__input input:focus {
	background: #F0F3FC;
}
.formPopup__bottom {
	color: #3C3434;
	font-family: Inter;
	opacity: 0.4;
	font-size: 11px;
	max-width: 280px;
	font-weight: 500;
	line-height: 160%; /* 17.6px */
}

.knowledge {
	color: #3C3434;
}
.knowledge__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.knowledge__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 40px;
	padding-top: 50px;
}
.knowledge__title h3{
	font-weight: 700;
}
@media (max-width: 800px) {
	.knowledge__title {
		font-size: 30px;
		padding-top: 30px;
		margin-bottom: 25px;
	}
	.knowledge__title h3{

	}
}
.knowledge__text {
	font-size: 20px;
	margin-bottom: 30px;
}
@media (max-width: 1100px) {
	.knowledge__text {
		margin-bottom: 25px;
	}
}
@media (max-width: 800px) {
	.knowledge__text {
		font-size: 16px;
	}
}
.knowledge__more {
	/*
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	gap: 8px;
	text-transform: uppercase;
	*/
}
.button-item.knowledge__more{
	display: inline-block;
	color: #3F69FF;
	height: 66px;
	/*max-width: 350px;*/
	background: none;
	font-size: 14px;
	border: 2px solid #3F69FF;

	display: flex;

	align-items: center;
	gap: 10px;
	font-weight: 700;
	text-transform: uppercase;
	border: 2px solid #3F69FF;
	color: #3F69FF;
	border-radius: 8px;
	padding: 21px 20px;
	box-sizing: border-box;
	transition: all 300ms;

	display: inline-block;

}
.button-item.knowledge__more:hover{
	background: #3F69FF;
	color: white;
}
.knowledge__more span {
	padding-bottom: 3px;
	border-bottom: 1px dashed rgba(63, 105, 255, 0.5);
}
.button-item.knowledge__more span{
	border-bottom: 0px;
	padding-bottom: 0px;
	margin-right: 5px;
}
.knowledge__body {
	display: none;
}
.knowledge__body.open {
	display: block;
}
.knowledge__blockquote {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 50px 0 80px;
	gap: 60px;
}
@media (max-width: 930px) {
	.knowledge__blockquote {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
		padding: 50px 0;
	}
}
.knowledge__person {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 130px;
	flex: 0 0 130px;
	height: 130px;
	border-radius: 50%;
	overflow: hidden;
}
.knowledge__person img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.knowledge__quote {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
	font-size: 18px;
	color: #000;
	font-weight: 700;
}
.knowledge__quote p {
	max-width: 675px;
}
@media (max-width: 930px) {
	.knowledge__quote {
		gap: 20px;
		font-size: 16px;
	}
}
.knowledge__format {
	padding: 60px;
	border-radius: 12px;
	border: 4px solid #3F69FF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
.knowledge__left .knowledge__title, .knowledge__format .knowledge__title, .knowledge__format .knowledge__text {
	margin-bottom: 0;
	padding-top: 0;
}
@media (max-width: 1100px) {
	.knowledge__format {
		padding: 30px;
	}
}
@media (max-width: 660px) {
	.knowledge__format {
		padding: 25px 16px;
	}
}
.knowledge__subtitle {
	line-height: 1.5;
	color: #525252;
	font-size: 18px;
}
@media (max-width: 800px) {
	.knowledge__subtitle {
		font-size: 16px;
	}
}
.knowledge__block {
	border-top: 1px solid #525252;
	padding: 60px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.knowledge__block > p {
	max-width: 634px;
	font-size: 18px;
	color: #525252;
}
.knowledge__block > p b {
	font-weight: 700;
}
@media (max-width: 1100px) {
	.knowledge__block {
		padding: 40px 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.knowledge__block > p {
		max-width: 100%;
	}
}
@media (max-width: 800px) {
	.knowledge__block > p {
		font-size: 16px;
	}
}
.knowledge__left {
	min-width: 450px;
	max-width: 515px;
}
.knowledge__left p {
	font-size: 25px;
	margin-top: 32px;
}
@media (max-width: 1100px) {
	.knowledge__left {
		max-width: 100%;
		min-width: 0;
	}
	.knowledge__left p {
		margin-top: 25px;
		font-size: 18px;
	}
}
@media (max-width: 800px) {
	.knowledge__left p {
		font-size: 16px;
	}
}
.knowledge__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 60px;
	margin-top: 90px;
}
@media (max-width: 825px) {
	.knowledge__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
		margin-top: 40px;
	}
}
.knowledge__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	min-width: 320px;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 calc(33.333% - 40px);
	flex: 1 0 calc(33.333% - 40px);
}
.knowledge__item p {
	color: #3C3434;
	font-size: 22px;
	font-weight: 700;
	line-height: 130%; /* 28.6px */
	letter-spacing: -0.44px;
}
.knowledge__item span {
	color: #525252;
	font-size: 16px;
}
@media (max-width: 825px) {
	.knowledge__item {
		min-width: 0;
		gap: 16px;
	}
	.knowledge__item p {
		font-size: 20px;
	}
}

.video-popup {
	background: rgba(0, 0, 0, 0.7);
}
.video-popup > p {
	position: absolute;
	left: 0 !important;
	top: 0 !important;
	width: 100%;
	height: 100%;
	cursor: pointer;
	right: auto !important;
}
.video-popup .popup__close {
	-webkit-filter: invert(1);
	filter: invert(1);
	top: -38px;
	right: 0;
}
@media (max-width: 650px) {
	.video-popup .popup__close {
		right: 12px;
	}
}

.video-popup__container {
	position: relative;
}
.video-popup__container video {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: calc(100vh - 80px);
	-o-object-fit: cover;
	object-fit: cover;
}

.costvideowalls__container {
	width: 100%;
}
.costvideowalls__table {
	border-radius: 8px;
	border: 1px solid #A5A5A5;
	overflow: hidden;
}
.costvideowalls__table table{
	border-collapse: collapse;
	width: 100%;
	line-height: 1.2;
	font-size: 21px;
	font-weight: 700;
}
.costvideowalls__table table thead{
	background: #ECECEC;
	width: 100%;
	border-bottom: 1px solid #a5a5a5;
}
.costvideowalls__table table thead th{
	padding: 25px 5px;
}
.costvideowalls__table table thead th:first-child{
	text-align: left;
	padding-left: 50px;
}
.costvideowalls__table table thead th:last-child{
	width: 280px;
	text-align: left;
	border-left: 1px solid #a5a5a5;
	padding-left: 50px;
}

.costvideowalls__table table tbody tr{
	border-bottom: 1px solid #a5a5a5;
}
.costvideowalls__table table tbody tr:last-child{
	border:none;
}
.costvideowalls__table table tbody tr td{
	padding: 15px;
	color: #525252;
	font-weight: 500;
}
.costvideowalls__table table tbody tr td:first-child{
	padding-left: 50px;
}
.costvideowalls__table table tbody tr td:nth-child(2){
	border-left: 1px solid #a5a5a5;
	padding-left: 50px;
}

.costvideowalls__table table tbody tr.costvideowalls__table-top td{
	padding-left: 50px;
	font-weight: 700;
}
@media (max-width: 767px) {
	.costvideowalls__table table thead {
		padding-left: 20px;
	}
	.costvideowalls__table table thead th:first-child{
		padding-left: 20px;
	}
	.costvideowalls__table table tbody tr td:first-child{
		padding-left: 20px;
	}
	.costvideowalls__table table tbody tr.costvideowalls__table-top td{
		padding-left: 20px;
	}
	.costvideowalls__table table thead th:last-child{
		opacity: 0;
		width: 210px;
		border:none;
	}
	.costvideowalls__table table tbody tr td:nth-child(2){
		border:none;
		text-align: right;
		padding-left: 15px;
	}
}
@media (max-width: 600px) {
	.costvideowalls__table table tbody tr {
		display: flex;
		gap:10px;
		flex-direction: column;
		padding: 15px 20px;
	}
	.costvideowalls__table table tbody tr td:nth-child(2){
		text-align: left;
	}
	.costvideowalls__table table thead th:last-child{
		display: none;
	}
	.costvideowalls__table table tbody tr td{
		padding: 0px !important;
	}
}

.configurator__container {
	width: 100%;
}
.configurator__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #fff;
	background: #3F69FF;
	padding: 24px 30px;
	border-radius: 8px;
	max-width: 864px;
	margin: 0 auto;
	margin-top: 44px;
}
.configurator__bottom-text {
	color: #696969;
	text-align: center;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 20.8px */
	max-width: 660px;
	margin: 0 auto;
	margin-top: 44px;
}
.configurator__bottom button {
	border-radius: 8px;
	background: #FFF;
	padding: 15px 39px;
	text-align: center;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid #fff;
}
.configurator__bottom button:hover {
	background: #3F69FF;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
	.configurator__bottom {
		padding: 20px 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}
}
@media (max-width: 650px) {
	.configurator__bottom {
		padding: 16px;
		margin-top: 35px;
	}
	.configurator__bottom-text {
		margin-top: 35px;
	}
}
.configurator__bottom p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	font-size: 16px;
}
@media (max-width: 650px) {
	.configurator__bottom p {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.configurator__bottom p span {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}

.fancybox__container {
	max-width: 100%;
}

.fancybox__backdrop {
	background: rgba(0, 0, 0, 0.8);
}

.projector__text ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
}

.projector__text ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
}

.projector__text ul li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 12px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.projector__text ul li {
		gap: 10px;
	}
	.projector__text ul li:before {
		margin-top: 10.4px;
	}
}
.project__content>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
}

.project__content>ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	line-height: 28.8px;
}

.project__content>ul li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 10.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.project__content>ul li {
		gap: 10px;
	}
}

.project__result ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
}

.project__result ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	line-height: 28.8px;
}
.project__subtitle ul li{
	font-size: 18px;
}
.project__result ul li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 10.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.project__result ul li {
		gap: 10px;
	}
}

.portfolio__content ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
}

.portfolio__content ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	line-height: 28.8px;
}

.portfolio__content ul li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 10.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.portfolio__content ul li {
		gap: 10px;
	}
}
.knowledge__text ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
}

.knowledge__text ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	line-height: 28.8px;
}

.knowledge__text ul li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 10.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.knowledge__text ul li {
		gap: 10px;
	}
}

.steps__body ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
}

.steps__body ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	line-height: 28.8px;
}

.steps__body ul li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 10.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.steps__body ul li {
		gap: 10px;
	}
}

ol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
	list-style: none;
}

ol li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	line-height: 28.8px;
}

ol li:before {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8px;
	flex: 0 0 8px;
	margin-top: 10.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	ol li {
		gap: 10px;
	}
}
.calcForm {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1020;
	display: -ms-grid;
	display: grid;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow-y: auto;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.calcForm.open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
.calcForm__back {
	cursor: pointer;
	position: absolute;
	left: 30px;
	top: 30px;
}
.calcForm__back img {
	width: 30px;
}
@media (max-width: 767px) {
	.calcForm__back {
		left: 16px;
		top: 16px;
	}
}
.calcForm__content {
	height: 100%;
	padding-top: 72px;
	padding-bottom: 64px;
}
@media (max-width: 767px) {
	.calcForm__content {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}
.calcForm__content button {
	border-radius: 8px;
	background: #3F69FF;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	color: #fff;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
	padding: 14px 16px;
	margin-bottom: -6px;
}
@media (min-width: 768px) {
	.calcForm__content button {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
}
@media (max-width: 767px) {
	.calcForm__content button {
		margin-top: 15px;
	}
}
.calcForm__content button:hover {
	background: #0036F8;
}
.calcForm__grid {
	display: -ms-grid;
	display: grid;
	gap: 30px;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: 1fr 1fr;
}
.calcForm__grid .formPopup__inputs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-grid-column-span: 2;
	grid-column: span 2;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 30px;
}
.calcForm__grid .formPopup__inputs .formPopup__input {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 15px);
	flex: 0 0 calc(50% - 15px);
}
@media (max-width: 767px) {
	.calcForm__grid {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}
	.calcForm__grid .formPopup__inputs {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}
	.calcForm__grid .formPopup__inputs .formPopup__input {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}
.calcForm__title {
	color: #3C3434;
	font-family: Inter;
	font-size: 48px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -0.96px;
}
@media (max-width: 767px) {
	.calcForm__title {
		font-size: 24px;
	}
}
.calcForm__subtitle {
	margin-top: 20px;
	margin-bottom: 40px;
	color: var(--Brown, #3C3434);
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%;
}
@media (max-width: 767px) {
	.calcForm__subtitle {
		margin-top: 8px;
		margin-bottom: 22px;
	}
}


.blog {
	padding-bottom: 120px;
}
.blog__container {
	display: flex;
	flex-direction: column;
	gap:40px;
}
.blog__title {
	line-height: 110%;
	letter-spacing: -1.28px;
}
.blog__subtitle {
	margin-bottom: 8px;
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.64px;
}
.blog__otherblogs{
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 120%; /* 38.4px */
	letter-spacing: -0.64px;
	margin-bottom: 5px;
}
.blog__cards {
	display: grid;
	gap:24px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.blog__card {
	display: flex;
	flex-direction: column;
	padding: 4px;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 4px 64px 0px rgba(0, 0, 0, 0.05);
}
.blog__image {
	height: 240px;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	transform:translateZ(0);
}
.blog__image img{
	width:100%;height:100%;object-fit:cover;
	transition: all 0.3s ease 0s;
	transform:translateZ(0);
}

.blog__wrapper {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap:16px;
	flex:1 1 auto;
}
.blog__wrapper a, .blog__wrapper>span{
	width: 100%;
	text-align: center;
	display: block;
	color: #3F69FF;
	font-size: 14px;
	font-weight: 500;
	line-height: 100%;
	transition: all 0.3s ease 0s;
	padding: 11px;
	border-radius: 4px;
	border: 1px solid #3F69FF;
}
.blog__wrapper a:hover, .blog__wrapper>span:hover{
	background: #3F69FF;
	color: #fff;
}
.blog__name {
	min-height: 78px;
	flex:1 1 auto;
	color: #000;
	font-size: 22px;
	font-weight: 700;
	line-height: 120%; /* 26.4px */
	letter-spacing: -0.44px;
	transition: all 0.3s ease 0s;
}
.blog__card:hover .blog__name{
	color: #3F69FF;
}
.blog__card:hover .blog__image img{
	transform:scale(1.1);
}
@media (max-width: 1100px) {
	.blog{
		padding-bottom: 90px;
	}
	.blog__cards{
		gap:16px;
	}
	.blog__container{
		gap:30px;
	}
}
@media(max-width: 650px){
	.blog__subtitle{
		font-size: 24px;
	}
	.blog__image{
		height: 220px;
	}
	.blog__wrapper{
		gap:20px;
	}
	.blog__name{
		font-size: 20px;
		min-height: 0;
	}
}



.post ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 7px;
	list-style: none;
}

.post ul li {
	font-size: 20px;
	font-weight: 500;
	list-style: none;
	padding-left: 23px;
	position: relative;
	line-height: 32px;
}

.post ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 11.4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3F69FF;
	display: block;
}

@media (max-width: 660px) {
	.post ul li {
		padding-left: 18px;
	}
}


.post {
	margin-bottom: 88px;
}
.post__container {
	display: flex;
	flex-direction: column;
	gap:48px;
	position: relative;
	padding-bottom: 90px;
}

.post__container>*{
	max-width: 870px;
	align-self: center;
	width: 100%;
}

.knowledge .post{
	margin-bottom: 0px;
}
.knowledge .post__container{
	padding: 0px;
}
.knowledge .post__container:after{
	display: none;
}
.knowledge .post__container>*{
	max-width: unset;
}
.knowledge .post__container .knowledge__text{
	margin-top: -24px;
	padding-right: 25%;
}
.knowledge .post__card{
	padding-right: 25%;
}
.knowledge .post__text,
.knowledge .post__image,
.knowledge .post__quote{
	padding-right: 25%;
}
.knowledge h2{
	color: black;
}

.knowledge_mod .departure__table-title{
	margin-bottom: 0px;
}
.knowledge_mod .departure__container:after{
	display: none;
}


.post__container:after{
	content:'';
	height: 1px;
	display: block;
	width: calc(100% - 60px);
	position: absolute;
	background: #A5A5A5;
	left:50%; transform:translate(-50%, 0%);
	bottom: 0;
}
.post__cart-subtitle{
	line-height: 1.2;
	letter-spacing: -0.96px;
	font-size: 24px;
	font-weight: 700;
}
@media(max-width: 1100px){
	.post__cart-subtitle{
		font-size: 20px;
	}

	.knowledge .post__container .knowledge__text{
		padding-right: 0%;
	}
	.knowledge .post__text,
	.knowledge .post__image,
	.knowledge .post__quote{
		padding-right: 0%;
	}
	.knowledge .post__card{
		padding-right: 0px;
	}


}
@media (max-width: 650px) {
	.post__container:after{
		width: calc(100% - 32px);
	}
}
.post__title {
	margin-bottom: 0;
	line-height: 110%; /* 52.8px */
	letter-spacing: -0.96px;

	font-weight: 500;
}
.post__bigimage-wrapper{
	max-width: 1090px;
	display: flex;
	flex-direction: column;
	gap:16px;
}
.post__author {
	display: flex;
	gap:15px;
	align-items: center;
	color: #696969;
	font-size: 16px;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
}
.post__author-content{
	display: flex;
	flex-wrap:wrap;
	gap:15px;
	row-gap:8px;
}
.post__author span{
	display: flex;
	align-items: center;
	gap:9px;
}
.post__author span img{
	flex:0 0 18px;
	width: 18px;
}
.post__author-image {
	flex:0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}
.post__author-image img{
	width:100%;height:100%;object-fit:cover;
}


.post__scroll {
	display: flex;
	flex-direction: column;
	margin-bottom: 22px;
	background: #FFF;
	padding: 40px;
	padding-top: 30px;
	gap:21px;
	max-width: 644px;
	border-radius: 8px;
}
.post__scroll b{
	color: #000;
	font-size: 22px;
	font-weight: 700;
	line-height: 160%; /* 35.2px */
}
.post__scroll-content{
	display: flex;
	flex-direction: column;
	gap:12px;
}
.post__scroll-content a{
	position: relative;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	padding-left: 20px;
	line-height: 28.8px; /* 28.8px */
	transition: all 0.3s ease 0s;
}
.post__scroll-content a:hover{
	color: #3F69FF;
}
.post__scroll-content a:before{
	content:"";
	position: absolute;
	top:13.4px;
	left: 0;
	width: 12px;
	height: 2px;
	background: #3F69FF;
}



.post__bigimage img{
	width: 100%;
	object-fit: cover;
	min-height: 500px;
}
.post__info {
	display: flex;
	flex-direction: column;
	gap:15px;
}
.post__text {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
}
.post__text b{
	font-weight: 700;
}
.post__quote{
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 28.8px */
	letter-spacing: -0.36px;
	padding-left: 39px;
	position: relative;
}
.post__card ~ .post__quote{
	margin-top: -24px;
}
.post__card ~ .post__cart-subtitle{
	margin-bottom: -8px;
	margin-top: 16px;
}
.post__card ~ .post__text{
	margin-top: -24px;
}
.post__card ~ .post__image{
	margin-top: -24px;
}
@media(max-width: 1100px){
	.post__card ~ .post__quote{
		margin-top: -20px;
	}
	.post__card ~ .post__cart-subtitle{
		margin-bottom: -4px;
		margin-top: 12px;
	}
	.post__card ~ .post__text{
		margin-top: -20px;
	}
	.post__card ~ .post__image{
		margin-top: -20px;
	}
}
.post__quote:before{
	content:'';
	display: block;
	position: absolute;
	left: 0;
	top:50%; transform:translate(0, -50%);
	background: #3F69FF;
	width: 4px;
	height: 85%;
}
.post__cards {
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	gap:96px;
}
.post__card {
	display: flex;
	flex-direction: column;
	gap:24px;
}
.post__item{
	display: flex;
	flex-direction: column;
	gap:24px;
}
.post__card-top {
	border-bottom:1px solid #BBB;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:20px;
	padding-bottom: 16px;
}
.post__card-name {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.64px;
	color: #000;
}
.post__card-link {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 160%; /* 22.4px */
	transition: all 0.3s ease 0s;
	position: relative;
	display: flex;
	align-items: center;
	gap:11px;
}
.post__card-link svg{
	flex:0 0 28px;
	width: 28px;
	border-radius: 50%;
}
.post__card-link svg rect, .post__card-link svg path{
	transition: all 0.3s ease 0s;
}
@media(min-width: 769px){
	.post__card-link:hover{
		color: #3F69FF;
	}
	.post__card-link:hover svg{
		box-shadow: 0px 3.2px 12.8px 0px rgba(0, 0, 0, 0.05);
	}
	.post__card-link:hover svg rect{
		fill:white;
	}
	.post__card-link:hover svg path{
		stroke:#3F69FF;
	}
}

.post__card .post__quote{
	margin-top: 28px;
}

.post__image {
	margin-top: 11px;
}
.post__image img{
	width: 100%;
	object-fit: cover;
}
.post__image:has(img[src=""]) {
	display: none;
}
.post__image img[src=""]{
	display: none;
}
.post__iframe{
	position: relative;
	padding-bottom: 55%;
}
.post__iframe iframe{
	width: 100%;
	position: absolute; left: 0; top: 0; width: 100%;height: 100%;
}
.post__card > .post__card-link{
	display: none;
}
@media (max-width: 1100px) {
	.post__scroll{
		margin-bottom: 15px;
	}
	.post__bigimage img{
		min-height: 250px;
	}
	.post__card{
		gap:20px;
	}
	.post__item{
		gap:20px;
	}
	.post__card .post__quote{
		margin-top: 20px;
	}
	.post__card-name {
		font-size: 24px;
	}
	.post__container{
		gap:40px;
		padding-bottom: 60px;
	}
	.post__quote{
		padding-left: 25px;
		font-size: 16px;
	}
	.post__text{
		font-size: 18px;
	}
	.post{
		margin-bottom: 60px;
	}
	.post__cards{
		margin-top: 15px;
		gap:60px;
	}
}

@media(max-width: 768px){
	.post__container{
		gap:35px;
	}
	.post__card .post__quote{
		margin-top: 11px;
	}
	.post__card-link{
		display: none;
	}
	.post__card > .post__card-link{
		width: 100%;
		margin-top: 10px;
		gap:15px;
		text-align: center;
		display: flex;
		justify-content: center;
		color: #3F69FF;
		line-height: 100%;
		transition: all 0.3s ease 0s;
		padding: 11px;
		border-radius: 4px;
		border: 1px solid #3F69FF;
	}

}

@media(max-width: 550px){
	.post__scroll b{
		font-size: 20px;
	}

	.post__scroll-content a{
		font-size: 16px;
		padding-left: 15px;
		line-height: 1.4;
	}
	.post__scroll-content a:before{
		width: 7px;
		top: 10.2px;
	}
	.post__scroll{
		margin-bottom: 0;
		padding: 20px;
	}

	.post__author{
		font-size: 15px;
		gap:10px;
	}
	.post__author-content{
		gap:10px;
		row-gap:3px;
	}
	.post__title {
		font-size: 28px;
	}
}


.policy {
	padding-bottom: 155px;
}
.policy__container {}
.policy__title {
	margin-bottom: 62px;
	line-height: 110%; /* 70.4px */
	letter-spacing: -1.28px;
	max-width: 891px;
}
@media(max-width: 1023px){
	.policy__title{
		margin-bottom: 40px;
		font-size: 48px;
	}
	.policy{
		padding-bottom: 80px;
	}
}

.policy__content {
	font-size: 14px;
	max-width: 891px;
	font-weight: 500;
	line-height: 1.6;
}
.policy__content a{
	text-decoration: underline;
	text-underline-position: under;
}
.policy__content a[href^="mailto"]{
	text-decoration: none;
}


.policy ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.policy ul li {
	position: relative;
	padding-left: 22px;
}

.policy ul li:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 8.5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
}

.policy__content b,
.policy__content h2{
	margin-bottom: 8px;
	margin-top: 40px;
	display: block;
	color: #000;
	font-size: 22px;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: -0.44px;
}

@media(max-width: 650px){
	.policy__title{
		font-size: 34px;
	}
	.policy__content b,
	.policy__content h2{
		margin-top: 30px;
		margin-bottom: 6px;
		font-size: 20px;
	}
}

.sitemap{
	padding-bottom: 115px;
}
.sitemap__container{
	display: flex;
	flex-direction: column;
	gap:60px;
}
.sitemap__title {
	line-height: 110%;
	letter-spacing: -1.28px;
}
.sitemap__wrapper {}
.sitemap__top {
	padding-bottom: 16px;
	border-bottom:1px solid #C0C0C0;
	font-size: 32px;
	letter-spacing: -2%;
	line-height: 1.2;
	font-weight: 700;
}
.sitemap__body {
	margin-top: 45px;
	display: grid;
	gap:110px;
	row-gap:35px;
	grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
}
.sitemap__column {
	display: flex;
	gap:35px;
	flex-direction: column;
}
.sitemap__list {
	display: flex;
	flex-direction: column;
	gap:12px;
}
.sitemap__name {
	font-size: 16px;
	line-height: 1.5;
	text-transform: uppercase;
	font-weight: 700;
}
.sitemap__links {
	display: flex;
	flex-direction: column;
	gap:12px;
}
.sitemap__links a{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	text-underline-position: under;
}
.sitemap__links a:hover{
	text-decoration: underline;
}
@media(max-width: 1200px){
	.sitemap__body{
		gap:35px;
	}
}
@media(max-width: 1023px){
	.sitemap__column{
		gap:25px;
	}
	.sitemap__body{
		gap:25px;
	}
	.sitemap__list{
		gap:10px;
	}
	.sitemap__links{
		gap:10px;
	}
	.sitemap{
		padding-bottom: 90px;
	}
	.sitemap__top{
		font-size: 28px;
		padding-bottom: 12px;
	}
	.sitemap__body{
		margin-top: 25px;
	}
	.sitemap__container{
		gap:40px;
	}
}


.toup{
	position: fixed;
	bottom: 24px;
	right: 8px;
	width: 54px;
	height: 54px;
	z-index: 100;
	transition: all 0.3s ease 0s;
	pointer-events:none; opacity:0; visibility:hidden;
	transform:scale(0);
}
.toup.active{
	transition:transform  0.3s ease 0s;
	pointer-events:auto; opacity:1; visibility:visible;
	transform:scale(1);
}
.toup svg circle, .toup svg path{
	transition: all 0.3s ease 0s;
}
.toup:hover svg circle{
	fill:white;
}
.toup:hover svg path{
	fill:#3F69FF;
}
.toup svg{
	width: 100%;
	height: 100%;
}
@media(max-width: 970px){
	.toup{
		display: none;
	}
}


.config__container {
	width: 100%;
}
.config__wrapper {
	display: flex;
	flex-direction: column;
	gap:65px;
}
.config__top {
	display: flex;
	flex-direction: column;
	gap:25px;
}
.config__top-title {
	font-size: 25px;
	line-height: 1.6;
	font-weight: 500;
	color: #3C3434;
}
.config__top-cards {
	display: grid;
	gap:8px;
	grid-template-columns: repeat(3, 1fr);
}

.config__top-card {
	display: block;
}
.config__top-card input{
	display: none;
}
.config__top-card label{
	height: 100%;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap:30px;
	cursor: pointer;
	background: #E8EBF3;
	border:2px solid #E8EBF3;
	padding: 30px;
	padding-top: 55px;
	transition: all 0.3s ease 0s;
}
@media(max-width: 991px){
	.config__top-card label{
		padding: 30px;
		gap:15px;
		flex-direction: column-reverse;
	}
	.config__top-text b{
		display: none;
	}
}

.config__top-card input:checked ~ label{
	background: #fff;
	border-color:#3F69FF;
}
.config__top-image {
	width: 68.5%;
	max-width: 150px;
	max-height: 85px;
	display: flex; justify-content: center; align-items: center;
}
.config__top-image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.config__top-text {
	display: flex;
	gap:15px;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	color: #3C3434;
	line-height: 1.6;
}
.config__top-text span{
	border:1px solid #C0C0C0;
	flex:0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 2px;
	background: #fff;
	display: flex; justify-content: center; align-items: center;
	transition: all 0.3s ease 0s;
}
.config__top-card input:checked ~ label .config__top-text span{
	background: #3F69FF;
	border-color: #3F69FF;
}
.config__top-text img{
	width: 85%;
}
@media(max-width: 500px){
	.config__top-cards{
		gap:3px;
	}
	.config__top-text span{
		flex:0 0 16px;
		width: 16px;
		height: 16px;
	}
	.config__top-card label{
		padding: 10px;
		padding-bottom: 20px;
		gap:8px;
	}
}
.config__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #fff;
	background: #3F69FF;
	padding: 24px 30px;
	border-radius: 8px;
	margin-top: 70px;
}
.config__bottom button {
	border-radius: 8px;
	background: #FFF;
	padding: 13px 34px;
	text-align: center;
	color: #3F69FF;
	font-size: 16px;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 1px solid #fff;
}
.config__bottom button:hover {
	background: #3F69FF;
	color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.config__bottom p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	font-weight: 500;
}
@media (max-width: 1100px) {
	.config__bottom p {
		gap:4px;
	}
}
@media (max-width: 767px) {
	.config__wrapper{
		gap:50px;
	}
	.config__top{
		gap:15px;
	}
	.config__bottom {
		padding: 24px;
		margin-top: 45px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;

		gap:32px;
	}
	.config__bottom p {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;

	}
}
.config__bottom p span {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}

.config__body {
	display: grid;
	gap:85px;
	row-gap:40px;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.config__column {
	display: flex;
	flex-direction: column;
	gap:32px;
}

.config__item {
	border-bottom:1px solid #CFCFCF;
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	gap:15px;
	justify-content: space-between;
}

.config__item-left {
	display: flex;
	word-break: break-word;
	align-items: center;
	gap:15px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	color: #3C3434;
}
.config__item-left img{
	flex:0 0 40px;
	width: 40px;
}

.config__item-right {
	display: flex;
	gap:18px;
	align-items: center;
}
.config__item-descr {
	flex:0 0 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: relative;
}
.config__item-descr>svg{
	width: 100%;
	cursor: pointer;
	height: 100%;
}
.config__item-descr>svg circle, .config__item-descr>svg path{
	transition: all 0.3s ease 0s;
}
.config__item-descr.active>svg circle{
	fill:#3F69FF;
	stroke:#3F69FF;
}
.config__item-descr.active>svg path{
	fill:#fff;
}
.config__item-descr p{
	position: absolute;
	top: calc(100% + 11px);
	right: -20px;
	background: #E8EBF3;
	border-radius: 8px;
	width: 300px;
	padding: 16px 24px;
	font-size: 14px;
	z-index: 2;
	line-height: 1.5;
	font-weight: 400;
	color: #000;
	pointer-events:none; opacity:0; visibility:hidden;
	transition: all 0.3s ease 0s;
}
.config__item-descr.active p{
	pointer-events:auto; opacity:1; visibility:visible;
}
.config__item-checkbox {
	height: 27px;
	flex:0 0 48px;
	width: 48px;
}
.config__item-checkbox input{
	display: none;
}
.config__item-checkbox label{
	display: block;
	cursor: pointer;
	background: #D4DAEB;
	width: 100%;
	height: 100%;
	border-radius: 1000px;
	position: relative;
	transition: all 0.3s ease 0s;
}
.config__item-checkbox label span{
	background: #fff;
	position: absolute;
	top:3px;
	left: 3px;
	width: 21px;
	height: 21px;
	transition: all 0.3s ease 0s;
	border-radius: 50%;
}
.config__item-checkbox input:checked ~ label{
	background: #3F69FF;
}
.config__item-checkbox input:checked ~ label span{
	left: 24px;
}
.quantity {
	display: flex;
	padding: 3px;
	flex:0 0 110px;
	background: #3F69FF;
	border-radius: 6px;
	width: 110px;
	height: 46px;
	transition: all 0.3s ease 0s;
}
.quantity.disabled{
	background: #D4DAEB;
}
.quantity button{
	height: 100%;
	flex:0 0 32px;
	user-select: none;
	width: 32px;
	background: #fff;
	border-radius: 4px;
	cursor: pointer;
	display: flex; justify-content: center; align-items: center;
}
.quantity input{
	flex:1 1 auto;
	width: 100%;
	background: none;
	height: 100%;
	min-width: 0;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 1.5;
}
.quantity.disabled input{
	color: #000;
}
@media(max-width: 1300px){
	.config__body{
		gap:40px;
		row-gap:32px;
	}
	.config__item-descr p{
		right: -30px;
	}
}
@media (max-width: 600px) {
	.config__item-descr p{
		width: 250px;
		padding: 12px;
	}
	.config__title {
		margin-bottom: 30px;
	}
	.config__body{
		grid-template-columns: 1fr;
		row-gap:0px;
		gap:32px;
	}
	.config__item-left{
		font-size: 16px;
	}
	.config__column{
		gap:32px;
	}
}
.solutionspage {
	padding-bottom: 95px;
}

.solutionspage__container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:40px;
}
@media (max-width: 1100px) {
	.solutionspage{
		padding-bottom: 90px;
	}
	.solutionspage__container{
		gap:30px;
	}
}
.solutionspage__body {
	display: none;
	gap:24px;
	grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
}
.solutionspage__body.target {
	display: grid;
}
.solutionspage__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}
@media(max-width: 650px){
	.solutionspage__nav{
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		white-space: nowrap;
		overflow-y:auto;
		margin-left: -16px;
		padding: 0 16px 5px;
		width: calc(100% + 32px);
	}
	.solutionspage__container{
		gap:25px;
	}
}
.solutionspage__el {
	cursor: pointer;
	font-size: 14px;
	line-height: 160%;
	padding: 12px 24px;
	border-radius: 100px;
	background: #FFF;
	color: #000;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.solutionspage__el:hover {
	color: #3F69FF;
}
.solutionspage__el.active {
	background: #3F69FF;
	color: #fff;
}
.solutionspage__card {
	min-height: 250px;
	padding: 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 6px;
	overflow: hidden;
}
.solutionspage__card:after{
	content:'';
	position: absolute; left: 0; top: 0; width: 100%;height: 100%;
	z-index: 1;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
	pointer-events: none;
}
.solutionspage__card:before{
	content:'';
	position: absolute; left: 0; top: 0; width: 100%;height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.3);
	transition: all 0.3s ease 0s;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease 0s;
}
.solutionspage__card:hover:before{
	opacity: 1;
}
.solutionspage__card span{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #fff;
	margin-top: auto;
	position: relative;
	z-index: 3;
}
.solutionspage__card img{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width:100%;height:100%;object-fit:cover;
}

.articles__container {
	width: 100%;
}
.articles__more{
	display: none;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	margin-top: 32px;
	font-weight: 700;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.articles__more:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 1000px) {
	.articles__more {
		display: block;
	}
}
@media (max-width: 650px) {
	.articles__more {
		font-size: 15px;
		padding: 13.5px 43px;
	}
}
.articles__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 55px;
}
@media (max-width: 800px) {
	.articles__top {
		margin-bottom: 32px;
	}
}
.articles__top a {
	white-space: nowrap;
	text-align: center;
	color: #3F69FF;
	padding: 16.5px 43px;
	text-transform: uppercase;
	border-radius: 4px;
	border: 1px solid #3F69FF;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.articles__top a:hover {
	background: #3F69FF;
	color: #fff;
}
@media (max-width: 1000px) {
	.articles__top a {
		display: none;
	}
}
.articles__title {
	max-width: 705px;
	margin-bottom: 0;
}

.articles__body {
	display: grid;
	gap:24px;
	grid-template-columns: 1fr 1fr 1fr;
}

.articles__card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap:14px;
	padding: 32px;
	background: #F4F4F4;
}
.articles__card>*{
	position: relative;
	z-index: 2;
}
.article__bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	pointer-events:none; opacity:0; visibility:hidden;
	transition: all 0.3s ease 0s;
}
.article__bg:after{
	content:'';
	position: absolute; left: 0; top: 0; width: 100%;height: 100%;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.article__bg img{
	width:100%;height:100%;object-fit:cover;
}
.articles__name {
	font-size: 23px;
	line-height: 1.3;
	letter-spacing: normal;
	letter-spacing: -0.44px;
	color: #000;
	transition: all 0.3s ease 0s;
}
.articles__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	transition: all 0.3s ease 0s;
	color: #000;
}
.articles__button {
	margin-top: 10px;
	color: #3F69FF;
	max-width: 270px;
	font-size: 14px;font-weight: 500;
	line-height: 1;
	padding: 12px;
	text-align: center;
	border:1px solid #3F69FF;
	border-radius: 4px;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1023px) {
	.articles__body{
		grid-template-columns: repeat(auto-fill,minmax(400px, 1fr));
	}
	.articles__text{
		margin-bottom: auto;
	}
	.article__bg {
		display: none;
	}

}
@media(max-width: 800px){
	.articles__body{
		gap:16px;
		grid-template-columns: repeat(auto-fill,minmax(288px, 1fr));
	}
	.articles__name{
		font-size: 20px;
	}
	.articles__text{
		font-size: 14px;
	}
	.articles__button{
		max-width: 400px;
	}
	.articles__card{
		padding: 24px;
	}
}
@media(min-width: 1023.1px){
	.articles__card{
		justify-content: flex-end;
	}

	.articles__card:first-child .articles__name{
		color: #fff !important;
		font-size: 42px;
		line-height: 1.2;
		letter-spacing: -0.64px;
	}
	.articles__card:first-child .articles__text{
		color: #fff;
		font-size: 18px;
	}
	.articles__card:first-child .article__bg{
		opacity: 1;
		visibility: visible;
	}
	.articles__card:first-child .articles__button {
		color: #fff;
		border-color: #fff;
		font-size: 18px;
		padding: 16px;
	}
	.articles__card:hover .articles__button{
		background: #3F69FF;
		color: #fff;
		border-color:#3F69FF !important;
	}
	.articles__card:hover  .articles__name{
		color: #3F69FF;
	}
	.articles__card:first-child{
		grid-column: span 2;
		grid-row:span 2;
		gap:20px;
		padding: 40px;
	}
}
.faq__container {
	width: 100%;
}
.faq__title {
	text-align: left;
}
.faq__cards {
	display: grid;
	gap:8px;
}
.faq__card {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
	background: #fff;
	border-radius: 8px;
	transition: all 0.3s ease 0s;
}
.faq__top {
	cursor: pointer;
	padding: 24px;
	padding-left: 40px;
	display: flex;
	align-items: center;
	gap:10px;
	justify-content: space-between;
}
.faq__name {
	font-size: 25px;
	line-height: 1.6;
	color: #000;
	font-weight: 500;
}
.faq__button {
	display: flex; justify-content: center; align-items: center;
	flex:0 0 56px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	transition: all 0.3s ease 0s;
}
.faq__button span{
	height: 30px;
	width: 30px;
	flex:0 0 30px;
	position: relative;
	transition: all 0.3s ease 0s;
}
.faq__button span:after{
	content:"";
	width: 100%;
	top:50%; transform:translate(0, -50%);
	height: 2px;
	background: #3F69FF;
	position: absolute;
	transition: all 0.3s ease 0s;
}
.faq__button span:before{
	content:"";
	height: 100%;
	left:50%; transform:translate(-50%, 0%);
	width: 2px;
	background: #3F69FF;
	position: absolute;
	transition: all 0.3s ease 0s;
}
.faq__card.active .faq__button{
	background: #3F69FF;
}
.faq__card.active .faq__button span{
	transform:rotate(-45deg);
}
.faq__card.active .faq__button span:after, .faq__card.active .faq__button span:before{
	background: #fff;
}
.faq__button:hover{
	background: #F4F4F4;
}
.faq__body {
	max-width: 1000px;
	max-height: 0;
	font-size: 20px;
	font-weight: 500;
	color: #000;
	padding-left: 40px;
	padding-right: 24px;
	overflow: hidden;
	transition: all 0.3s ease 0s;
}
.faq__body ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap:4px;
}

.faq__body ul li {
	position: relative;
	padding-left: 22px;
}

.faq__body ul li:before {
	content: "";
	position: absolute;
	top: 10.5px;
	left: 8.5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #3F69FF;
}
.faq__card.active {
	padding-bottom: 40px;
}
@media(max-width: 1100px){
	.faq__body ul li:before{
		top: 9px;
	}
	.faq__button{
		flex:0 0 36px;
		width: 36px;
		height: 36px;
	}
	.faq__button span{
		flex:0 0 22px;
		height: 22px;
		width: 22px;
	}
	.faq__top{
		padding: 20px;
		cursor: default;
	}
	.faq__name{
		line-height: 1.4;
		font-size: 22px;
	}
	.faq__body{
		font-size: 18px;
		padding-left: 20px;
		padding-right: 20px;
		max-width: 100%;
	}
	.faq__card.active {
		padding-bottom: 20px;
	}
}
@media(max-width: 600px){
	.faq__body ul li{
		padding-left: 15px;
	}
	.faq__body ul li:before{
		top: 8px;
		left: 4px;
	}
	.faq__name{
		font-size: 18px;
	}
	.faq__top{
		padding: 12px;
	}
	.faq__card.active {
		padding-bottom: 12px;
	}
	.faq__body{
		padding-left: 12px;
		padding-right: 12px;
		font-size: 16px;
	}
}

.formPopup__number{
	font-size: 18px;
}

.form-project {
	color: #fff;
	background: #3F69FF;
	padding: 90px 0 45px;
}

.form-project__container {
	display: flex;
	flex-direction: column;
	gap:45px;
}
.form-project__title {
	text-transform: uppercase;
	font-size: 55px;
	letter-spacing: -0.02rem;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	text-wrap:balance;
}
.form-project__content {
	display: grid;
	border:4px solid #ffffff;
	border-radius: 16px;
	padding: 62px 105px 86px;
	gap:8px;
	grid-template-columns: repeat(auto-fill,minmax(300px, 1fr));
}
@media(max-width: 1200px){
	.form-project__content{
		padding: 65px;
	}
}
.form-project__input {
	display: flex;
	flex-direction: column;
	gap:10px;
}
.form-project__input input{
	flex:1 1 auto;
	border-radius: 8px;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	background: #fff;
	min-width: 0;
	width: 100%;
	padding: 21px 15px;
}
.form-project__input input::placeholder{
	color: #000;
}
.form-project__input button{
	flex:1 1 auto;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.02rem;
	text-align: center;
	padding: 20px 10px;
	border:4px solid #fff;
	background: none;
	color: #fff;
	border-radius: 8px;
	transition: all 0.3s ease 0s;
}
@media(any-hover:hover){
	.form-project__input button:hover{
		background: #fff;
		color: #3F69FF;
	}
}
.form-project__input span{
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.02rem;
	font-weight: 500;
}
.form-project__input span.hidden{
	pointer-events:none; opacity:0; visibility:hidden;
}
@media(max-width: 1023px){
	.form-project__input span.hidden{
		display: none;
	}
	.form-project__input input{
		font-size: 28px;
		padding: 15px;
	}
	.form-project__input button{
		border-width: 3px;
	}
	.form-project__content{
		padding: 45px 16px 75px;
		gap:24px;
	}
	.form-project__content{
		border-width: 3px;
	}
	.form-project__title{
		text-align: left;
		font-size: 48px;
	}
	.form-project{
		padding-top: 45px;
	}
}
@media(max-width: 767px){
	.form-project__content{
		grid-template-columns: 1fr;
	}
	.form-project__input button{
		border-width: 2px;
	}
	.form-project__content{
		border-width: 2px;
	}
	.form-project__title{
		font-size: 40px;
	}
	.form-project{
		padding-top: 30px;
	}
	.form-project__container{
		gap:30px;
	}
}


#projectlink3 .project__title{
	margin-bottom: 20px;
}
.project__mark{
	margin: 40px 0;
}









.search-page{
	margin-top: 40px;
}
.search-page form{
	position: relative;
	margin-bottom: 5px;
}
.search-page form input{
	border-color: #000;

	width: 100%;

	border-radius: 8px;
	background: white;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
	color: #000;
	padding: 24px 30px;
}
.search-page form button{
	position: absolute;
	right: 20px;
	top: 24px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: none;
}
.search-page form button svg{
	display: inline-block;
	width: 20px;
	height: 20px;
}
.search-page form button svg path {
	stroke: #000;
}

.search-page-result{
	margin-top: 20px;
}

.one-search-item{
	padding: 24px;
	background: #fff;
	margin-bottom: 12px;
	border-radius: 8px;
}
.one-search-item-header{
	font-size: 24px;
	font-weight: 700;
}
.one-search-item-header a{

}
.one-search-item-body{
	margin-top: 12px;
	margin-bottom: 24px;
	font-size: 16px;
	opacity: 0.6;
	color: #000;
}
.one-search-item-body p{

}
.one-search-item-links{

}
.one-search-item-links a{

}





.about-company__actions .about-company__column:hover p{
	text-decoration: underline;
}







.reviewspage .reviews .reviews__subtitle{
	font-size: 39px;
	margin-top: 54px;
}
.reviews__header{
	margin-top: 3px;
}
.reviewspage .reviews__slider{
	margin-top: 65px;
}
/*
.reviews__slider .swiper-slide a{
	font-size: 14px;
	margin-top: 18px;
}
*/
.reviews__slider .swiper-slide p{
	font-size: 17px;
}
.reviews__slider .swiper-slide p b{
	margin-bottom: 6px;
	margin-top: 20px;
}

.reviews-list-hide-container.hidden {
	display: none;
}
.reviews-list-hide-container.hidden.show {
	display: block;
}
.reviews-list-hide-container-container{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	row-gap: 65px;
	margin-top: 65px;
}

.reviews__bottom{
	margin-top: 58px;
	width: 100%;
	text-align: center;
}
.reviews__bottom a{
	justify-content: center;
}
.reviews__more{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	text-transform: uppercase;
	color: #3f69ff;
	font-size: 16px;
	font-weight: 700;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.reviewspage .reviews.reviews-other {
	margin-top: 70px;
}
.reviewspage .reviews.reviews-other .reviews__swiper{
	max-width: 91.45%;
}
.reviewspage .reviews.reviews-other .reviews__swiper .swiper-slide{
	gap: 40px;
	padding: 77px 45px;
}
.reviewspage .reviews.reviews-other .reviews__content span{
	font-size: 18px;
	line-height: 29px;
	margin-top: 23px;
	margin-bottom: 15px;
}
.reviewspage .reviews.reviews-other .reviews__logo{
	-ms-flex: 0 0 206px;
	flex: 0 0 206px;
	width: 206px;
}
.reviewspage .reviews.reviews-other .reviews__user{
	-ms-flex: 0 0 240px;
	flex: 0 0 240px;
}
.reviewspage .reviews.reviews-other .reviews__image{
	width: 160px;
	height: 160px;
}
.reviewspage .reviews.reviews-other .reviews__info{
	padding: 0 15px;
	margin-top: 16px;
}
.reviewspage .reviews.reviews-other .reviews__info p {
	font-size: 18px;
}
.reviewspage .reviews.reviews-other .reviews__info span{
	font-size: 13px;
}


@media(max-width: 1023px){
	.reviewspage .reviews .reviews__subtitle {
		font-size: 32px;
		margin-top: 45px;
		margin-bottom: 30px;
	}
	.reviews__slider .swiper-wrapper,
	.reviews-list-hide-container-container{
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}
	.reviewspage .reviews__slider {
		margin-top: 45px;
	}
	.reviews__slider .swiper-slide .reviews__img{
		height: 285px;
		max-height: 285px;
	}
	.reviews__slider .swiper-slide p b{
		margin-top: 23px;
	}
	.reviews__content{
		order: 1;
	}
	.reviews__content .review-item-btns{
		/*
		position: absolute;
		right: 63px;
		flex-direction: column;
		gap: 10px;
		top: 61px;
		*/
	}
	.reviewspage .reviews.reviews-other .reviews__swiper .swiper-slide {
		gap: 0px;
		padding: 60px 58px;
	}
	.reviews__content a{
		justify-content: end;
	}
	.reviewspage .reviews.reviews-other .reviews__content span{
		margin-top: 13px;
	}
	.reviewspage .reviews.reviews-other .reviews__user{
		-ms-flex: 0 0 330px;
		flex: 0 0 330px;
		max-width: 330px;
		order: 3;
	}
	.reviewspage .reviews.reviews-other .reviews__logo {
		-ms-flex: 0 0 120px;
		flex: 0 0 120px;
		width: 120px;
	}
	.reviewspage .reviews.reviews-other .reviews__image{
		order: 2;
	}
	.reviewspage .reviews.reviews-other .reviews__image {
		width: 100px;
		height: 100px;
		order: 2;
		flex: 0 0 100px;
	}
	.reviewspage .reviews.reviews-other .reviews__info{
		padding: 0 10px;
		text-align: right;
	}
}
@media(max-width: 767px){

	.reviewspage .reviews .reviews__subtitle {
		font-size: 24px;
		margin-top: 33px;
		margin-bottom: 34px;
		line-height: 38px;
	}
	.reviewspage .reviews__slider {
		margin-top: 28px;
	}





	.reviews__swiper .swiper-slide{
		justify-content: center;
	}
	.reviewspage .reviews.reviews-other .reviews__swiper{
		width: 100%;
		max-width: 100%;
	}
	.reviewspage .reviews.reviews-other .reviews__logo{
		order: 1;
	}
	.reviewspage .reviews.reviews-other .reviews__user{
		order: 3;
		width: 100%;
		max-width: 100%;
		flex-direction: row;
		margin-bottom: 37px;
	}
	.reviews__content span{
		font-size: 14px;
		line-height: 22px;
	}
	.reviews__info{
		order: 1;
	}
	.reviews__image{
		order: 2;
	}
	.reviewspage .reviews.reviews-other .reviews__swiper .swiper-slide {
		gap: 0px;
		padding: 24px 15px;
	}
	.reviews__content{
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.reviewspage .reviews.reviews-other .reviews__content span {
		margin-top: 0px;
		font-size: 14px;
		line-height: 22px;
	}
	.reviewspage .reviews.reviews-other .reviews__image {
		width: 80px;
		height: 80px;
		order: 2;
		flex: 0 0 80px;
	}
	.reviews__swiper .swiper-slide > a{
		margin-top: 10px;
	}

	/*
	.reviewspage .reviews__slider .swiper-wrapper{
		display: flex;
	}
*/


}

@media (max-width: 326px) {
	.main-block {
		padding-top: 130px;
	}
}
@media (max-width: 275px) {
	.main-block {
		padding-top: 110px;
	}
}


.whowe{
	padding: 80px 0 90px;
}
.whowe__container{
	display: flex;
	flex-direction: column;
	gap: 85px;
}
.whowe__top{
	display: flex;
	align-items: flex-start;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.whowe__top .title-b{
	letter-spacing: -0.02em;
	max-width: 530px;
	font-weight: 700;
}
.whowe__top .title{
	margin-bottom: 0;
	letter-spacing: -0.02em;
	max-width: 500px;
}
.whowe__text{
	color: rgba(60, 52, 52, 0.7);
	font-size: 38px;
	font-weight: 400;
	line-height: calc(45/38);
}
.whowe__text b, .whowe__text a{
	font-weight: 700;
	color: #3f69ff;
}
.whowe__text a:hover{
	text-decoration: underline;
}
.whowe__text a img{
	width: 1em;
}
@media(max-width: 1100px) {
	.whowe{
		padding: 70px 0;
	}
	.whowe__container{
		gap: 50px;
	}
	.whowe__text{
		font-size: 32px;
	}
}
@media(max-width: 980px) {
	.whowe__top {
		display: block;
	}
	.whowe__top .title-b{
		display: none;
	}
	.whowe__text{
		font-size: 28px;
	}
}
@media(max-width: 800px) {
	.whowe__text a img{
		display: none;
	}
	.whowe{
		padding: 54px 0;
	}
	.whowe__container{
		gap: 30px;
	}
	.whowe__text{
		font-size: 24px;
	}
}

@media(max-width: 550px) {
	.whowe{
		padding: 48px 0 38px;
	}
	.whowe__text{
		font-size: 18px;
	}
	.whowe__container{
		gap: 16px;
	}
}
.main-block {
	align-items: center;
	padding-top: 90px;
	padding-bottom: 0;
}
@media (max-width: 650px) {
	.main-block {
		padding-bottom: 36px;
		padding-top: 0;
	}
	.main-block {
		align-items: center;
	}
}
.container {
	max-width: 1309px;
	width: 100%;
	margin: 0 auto;
}
.certificate__links {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	margin-bottom: 51px;
}
.certificatte__blocks .swiper-slide  {
	width: 100%;
	height: 430px;
}
.certificate__links a {
	padding: 16px 24px;
	border-radius: 1000px;
	background: #FFF;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 16px */
	transition: 0.3s linear ;
	border: 1px solid transparent;
}
.certificate__links a:hover {
	border: 1px solid #3F69FF;
}
.certificate__links a.active {
	background-color: #3F69FF;
	border: 1px solid transparent;
	color: #FFF;
}
.certificatte__block {
	display: none;
}

.certificatte__block.active {
	display: block;
}
.swiper-cert {
	width: 50%;
	margin: 0;
}
.certificate__info {
	display: flex;
	align-items: center;
	justify-content:space-between;
	width: 100%;
	border-radius: 12px;
	background: #ECECEC;
	padding: 20px 20px 20px 49px;
	position: relative;
	box-sizing: border-box;
}
.certificate__info P {
	max-width: 417PX;
	color: #525252;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%; /* 32px */
}
.certificatte__blocks {
	border-radius: 12px;
	background: #FFF;
	padding: 78px 64px 67px;
	width: 100%;
	box-sizing: border-box;
}
.certificate__title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 52px;
	align-items: center;

}
.certificate__title h2 {
	margin: 0;
	color: #000;
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 57.6px */
	letter-spacing: -0.96px;
}
.swiper-button {

	background: #3F69FF;
	width: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	transition: 0.3s linear;

}
.prev {
	border-radius: 8px 0 0 8px;
}
.next {
	border-radius: 0px 8px 8px 0px;
}
.swiper__navigation {
	display: flex;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}
.certificatte__blocks .swiper-button:hover {
	background: #597EFF !important;
	cursor: pointer;
}
.certificatte__blocks .swiper-button-disabled {
	background: #597EFF !important; /* Переопределяем */
}
@media (max-width:1400px) {
	.container {
		width: 100%;
		max-width: 100%;
		padding: 0 32px;
		box-sizing: border-box;
	}
}
@media (max-width:1000px) {
	.certificate__info {
		flex-direction: column;
	}
	.swiper-cert  {
		width: 100%;
	}
	.certificate__info P {
		max-width: 100%;
		margin-bottom: 42px;
	}
	.certificate__title h2 {
		font-size: 40px;
	}
}
@media (max-width:767px) {
	.certificate__title {
		display: flex;
		flex-direction: column-reverse;
	}
	.certificatte__blocks {
		padding: 30px 16px 33px;
	}
	.certificate__title h2 {
		font-size: 32px;
		text-align: center;
		margin-top: 30px;
	}
	.certificate__info {
		padding: 40px 16px 16px;
	}
	.certificate__info P {
		font-size: 13px;
		margin-bottom: 31px;
	}
	.certificatte__blocks .swiper-slide img {
		width: 100%;
	}
	.certificate__title {
		margin-bottom: 16px;
	}
	.certificate__title img {
		max-width: 100%;
	}
	.container {
		padding: 0 15px;
	}
	.certificate__links a {
		padding: 12px 16px;
		font-size: 12px;
	}
}
.certificate__title img {
	object-fit: contain;
}
.swiper-cert img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*!*****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/sass/certificates.scss ***!
  \*****************************************************************************************************************************************************************************/
.certificates-page {
	display: inline-block;
	width: 100%;
}
.certificates-page .certificates-page-holder {
	display: inline-block;
	width: 100%;
}

.swiper-slider {
	position: relative;
}
.swiper-slider .swiper-button-prev,
.swiper-slider .swiper-button-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-top: 0px;
	color: black;
	background-color: #E7E7E7;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	transition: all 300ms;
	border-radius: 50%;
	text-align: center;
}
@media (hover: hover) {
	.swiper-slider .swiper-button-prev:hover,
	.swiper-slider .swiper-button-next:hover {
		color: white;
		background-color: #3F69FF;
		transition: all 300ms;
	}
}
.swiper-slider .swiper-button-prev.swiper-button-disabled,
.swiper-slider .swiper-button-next.swiper-button-disabled {
	opacity: 0;
	pointer-events: none;
	touch-action: none;
	transition: all 300ms;
}
.swiper-slider .swiper-button-prev::after,
.swiper-slider .swiper-button-next::after {
	display: none;
}
.swiper-slider .swiper-button-prev svg,
.swiper-slider .swiper-button-next svg {
	width: 7px;
	height: 12px;
	vertical-align: middle;
}
.swiper-slider .swiper-button-next,
.swiper-slider .swiper-rtl .swiper-button-prev {
	left: auto;
	display: none;
}
@media only screen and (max-width: 766px) {
	.swiper-slider .swiper-button-next,
	.swiper-slider .swiper-rtl .swiper-button-prev {
		right: 0;
		display: unset;
	}
}
.swiper-slider .swiper-button-prev,
.swiper-slider .swiper-rtl .swiper-button-next {
	display: none;
	right: auto;
}
@media only screen and (max-width: 766px) {
	.swiper-slider .swiper-button-prev,
	.swiper-slider .swiper-rtl .swiper-button-next {
		left: 0;
		display: unset;
	}
}
.swiper-slider .swiper-button-next svg {
	transform: rotate(180deg);
}
.swiper-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	transition: all 300ms;
	border-radius: 50px;
	opacity: 1;
	background-color: #E8EAF0;
}
.swiper-slider .swiper-pagination-bullet-active {
	background-color: #3F69FF;
	width: 30px;
	transition: all 300ms;
}
.swiper-slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.swiper-overflow {
	overflow: hidden;
}

.tags-list-block {
	margin-top: 40px;
	display: inline-block;
	width: 100%;
	margin-bottom: 47px;
}
@media only screen and (max-width: 766px) {
	.tags-list-block {
		margin-bottom: 55px;
		margin-top: 10px;
	}
}
.tags-list-block .tags-list-block-holder {
	display: inline-block;
	width: 100%;
}
.tags-list-block .tags-list-block-holder .tags-list {
	display: inline-block;
	width: 100%;
}
.tags-list-block .tags-list-block-holder .tags-list .tags-list-holder {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.tags-list-block .tags-list-block-holder .tags-list .tags-list-holder .tag .tag-holder a {
	display: inline-block;
	background-color: white;
	padding: 16px 24.5px;
	border-radius: 100px;
	color: black;
	font-size: 16px;
	line-height: 100%;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 300ms;
}
@media only screen and (max-width: 1279px) {
	.tags-list-block .tags-list-block-holder .tags-list .tags-list-holder .tag .tag-holder a {
		padding: 12px 23px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 766px) {
	.tags-list-block .tags-list-block-holder .tags-list .tags-list-holder .tag .tag-holder a {
		padding: 12px 16px;
		font-size: 12px;
	}
}
.tags-list-block .tags-list-block-holder .tags-list .tags-list-holder .tag .tag-holder a.active {
	background: #3F69FF;
	color: white;
}
@media (hover: hover) {
	.tags-list-block .tags-list-block-holder .tags-list .tags-list-holder .tag .tag-holder a:hover {
		background: #3F69FF;
		color: white;
		transition: all 300ms;
	}
}

.certificates-list-block {
	display: inline-block;
	width: 100%;
}
.certificates-list-block .certificates-list-block-holder {
	display: inline-block;
	width: 100%;
}

.certificates-group {
	display: inline-block;
	width: 100%;
	margin: 0 0 56px;
}
@media only screen and (max-width: 766px) {
	.certificates-group {
		margin: 0 0 74px;
	}
}
.certificates-group .certificates-group-holder {
	display: inline-block;
	width: 100%;
}
.certificates-group .certificates-group-holder .heading {
	display: inline-block;
	width: 100%;
	margin: 0 0 19px;
}
@media only screen and (max-width: 766px) {
	.certificates-group .certificates-group-holder .heading {
		margin: 0 0 25px;
	}
}
.certificates-group .certificates-group-holder .heading .heading-holder {
	display: inline-block;
	width: 100%;
	border-top: 1px solid rgb(0 0 0 / 30%);
	box-sizing: border-box;
	padding-top: 40px;
	position: relative;
}
@media only screen and (max-width: 766px) {
	.certificates-group .certificates-group-holder .heading .heading-holder {
		padding-top: 26px;
	}
}
.certificates-group .certificates-group-holder .heading .heading-holder .name {
	width: calc(100% - 188px);
}
@media only screen and (max-width: 1279px) {
	.certificates-group .certificates-group-holder .heading .heading-holder .name {
		width: calc(100% - 126px);
	}
}
.certificates-group .certificates-group-holder .heading .heading-holder .name .name-holder h2, .certificates-group .certificates-group-holder .heading .heading-holder .name .name-holder .h2 {
	font-size: 48px;
	line-height: 120%;
	letter-spacing: 0.02em;
	font-weight: 500;
	margin: 0;
}
@media only screen and (max-width: 1279px) {
	.certificates-group .certificates-group-holder .heading .heading-holder .name .name-holder h2, .certificates-group .certificates-group-holder .heading .heading-holder .name .name-holder .h2 {
		font-size: 32px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-group .certificates-group-holder .heading .heading-holder .name .name-holder h2, .certificates-group .certificates-group-holder .heading .heading-holder .name .name-holder .h2 {
		font-size: 25px;
	}
}
.certificates-group .certificates-group-holder .heading .heading-holder .logo {
	display: inline-block;
	width: 188px;
	height: 72px;
	position: absolute;
	top: 16px;
	right: 0;
}
@media only screen and (max-width: 1279px) {
	.certificates-group .certificates-group-holder .heading .heading-holder .logo {
		width: 126px;
		height: 49px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-group .certificates-group-holder .heading .heading-holder .logo {
		width: 140px;
		height: 50px;
	}
}
.certificates-group .certificates-group-holder .heading .heading-holder .logo .logo-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.certificates-group .certificates-group-holder .heading .heading-holder .logo .logo-holder a {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
}
@media (hover: hover) {
	.certificates-group .certificates-group-holder .heading .heading-holder .logo .logo-holder a:hover img {
		opacity: 0.8;
		transition: all 300ms;
	}
}
.certificates-group .certificates-group-holder .heading .heading-holder .logo .logo-holder a img {
	margin: auto;
	display: block;
	width: 90%;
	height: 90%;
	object-fit: contain;
	transition: all 300ms;
}

.certificates-list {
	display: inline-block;
	width: 100%;
}
@media only screen and (max-width: 766px) {
	.certificates-list .prev, .certificates-list .next {
		top: auto;
		bottom: -28px;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate {
	display: inline-block;
	width: 310px;
	background-color: transparent;
}
@media only screen and (max-width: 1279px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate {
		width: 180px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate {
		width: 100%;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate.long {
	width: 644px;
}
@media only screen and (max-width: 1279px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate.long {
		width: 374px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate.long {
		width: 100%;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate.long .certificate-holder .image {
	height: 471px;
}
@media only screen and (max-width: 1279px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate.long .certificate-holder .image {
		height: 273px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate.long .certificate-holder .image {
		height: 67.222vw;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder {
	display: inline-block;
	width: 100%;
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image {
	display: inline-block;
	width: 100%;
	height: 420px;
}
@media only screen and (max-width: 1279px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image {
		height: 244px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image {
		height: 123.33vw;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image .image-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image .image-holder a {
	display: inline-block;
	width: 100%;
	height: 100%;
}
@media (hover: hover) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image .image-holder a:hover img {
		opacity: 0.8;
		transition: all 300ms;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .image .image-holder a img {
	border-radius: 15px;
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: fill;
	transition: all 300ms;
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .name {
	display: inline-block;
	width: 100%;
	margin: 17px 0 0 2px;
}
@media only screen and (max-width: 1279px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .name {
		margin: 10px 0 0;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .name {
		margin: 33px 0 0;
	}
}
.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .name .name-holder {
	display: inline-block;
	width: 100%;
	text-align: left;
	font-weight: 500;
	font-size: 24px;
	line-height: 100%;
}
@media only screen and (max-width: 1279px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .name .name-holder {
		font-size: 21px;
	}
}
@media only screen and (max-width: 766px) {
	.certificates-list .certificates-list-holder .certificates-list-container .certificate .certificate-holder .name .name-holder {
		font-size: 20px;
		text-align: center;
		box-sizing: border-box;
		padding: 0 60px;
	}
}













/*# sourceMappingURL=calculator.css.map*/
/*!*********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/sass/note.scss ***!
  \*********************************************************************************************************************************************************************/
.calculator-note-block {
	display: inline-block;
	width: 100%;
	transition: all 600ms;
}
@media only screen and (max-width: 1279px) {
	.calculator-note-block {
		display: none;
	}
}
.calculator-note-block.inactive {
	opacity: 0;
	pointer-events: none;
	touch-action: none;
	transition: all 600ms;
}
.calculator-note-block.float-note {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1001;
}
.calculator-note-block .calculator-note-block-holder {
	display: inline-block;
	width: 100%;
}
.calculator-note-block .calculator-note-block-holder .calculator-note {
	display: inline-block;
	width: 100%;
	background-color: #CFCFCF;
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note {
	max-width: 1372px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	padding: 13px 30px 14px 30px;
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .desc {
	width: 45%;
}
@media only screen and (max-width: 1599px) {
	.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .desc {
		width: 55%;
	}
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .desc .desc-holder {
	font-size: 16px;
	line-height: 21px;
	font-weight: 500;
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions {
	width: 55%;
}
@media only screen and (max-width: 1599px) {
	.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions {
		width: 45%;
	}
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions .actions-holder {
	display: flex;
	gap: 17px;
	justify-content: end;
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions .actions-holder .action a {
	display: flex;
	height: 48px;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;
	border: 2px solid #3F69FF;
	color: #3F69FF;
	border-radius: 8px;
	padding: 24px 38px;
	box-sizing: border-box;
	transition: all 300ms;
}
@media (hover: hover) {
	.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions .actions-holder .action a:hover {
		background-color: #3F69FF;
		color: white;
		transition: all 300ms;
	}
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions .actions-holder .action a .icon {
	line-height: 0;
}
.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions .actions-holder .action .order-project {
	color: white;
	background-color: #3F69FF;
	transition: all 300ms;
}
@media (hover: hover) {
	.calculator-note-block .calculator-note-block-holder .calculator-note .calculator-note .actions .actions-holder .action .order-project:hover {
		background-color: transparent;
		color: #3F69FF;
		transition: all 300ms;
	}
}
@media (min-width: 1024px) { /* скрываем на экранах меньше 1024px */
	.invisibleonpc {
		display: none;
	}
}

/*# sourceMappingURL=note.css.map*/



















/*!***************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/sass/calculator.scss ***!
  \***************************************************************************************************************************************************************************/
.fancybox-container.custom-fancybox .fancybox-content {
	padding: 0;
	overflow: initial;
}
.fancybox-container.custom-fancybox button.fancybox-button.fancybox-close-small {
	display: none;
}

.custom-popup {
	position: relative;
}
.custom-popup .custom-close {
	position: absolute;
	right: 0;
	top: 0;
}
.custom-popup .custom-close a {
	display: inline-block;
	text-decoration: none;
}
.custom-popup .custom-close a svg {
	width: 18px;
	height: 18px;
	color: #BBB;
	transition: all 300ms;
}
.custom-popup .custom-close a:hover svg {
	color: #777;
	transition: all 300ms;
}

.ps.custom-scroll {
	position: relative;
}
.ps.custom-scroll .ps__rail-y {
	position: absolute;
	opacity: 1;
	width: 3px;
	background-color: #F4F4F4;
	border-radius: 3px;
	margin-right: 3px;
}
.ps.custom-scroll .ps__rail-y .ps__thumb-y {
	border-radius: 3px;
	width: 7px;
	right: -2px;
	background: #3F69FF;
}
.ps.custom-scroll .ps__rail-y .ps__thumb-y:hover {
	cursor: pointer;
}
.ps.custom-scroll .ps__rail-y .ps__thumb-y:focus {
	outline: none;
}
.ps.custom-scroll .ps__rail-y.ps--clicking {
	background-color: rgb(165, 184.6875, 255);
}
.ps.custom-scroll .ps__rail-y.ps--clicking .ps__thumb-y {
	width: 7px;
	right: -2px;
	background: #3F69FF;
}
.ps.custom-scroll .ps__rail-y.ps--clicking .ps__thumb-y:hover {
	cursor: pointer;
}
.ps.custom-scroll .ps__rail-y:hover .ps__thumb-y {
	width: 7px;
	background: #3F69FF;
}
.ps.custom-scroll:hover .ps__rail-y {
	opacity: 1;
	width: 3px;
	background-color: #F4F4F4;
	border-radius: 3px;
}

.led-screen-calculator-block {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator-block .led-screen-calculator-block-holder {
	display: inline-block;
	width: 100%;
	display: none;
}
.led-screen-calculator-block .touch-device-action {
	width: 100%;
}
.led-screen-calculator-block .touch-device-action .touch-device-action-holder {
	display: inline-block;
	width: 100%;
	padding: 30px 0 30px;
	text-align: center;
}
.led-screen-calculator-block .touch-device-action .touch-device-action-holder a {
	display: inline-block;
	box-sizing: border-box;
	width: 400px;
	padding: 20px 10px;
	text-align: center;
	background-color: #3F69FF;
	color: white;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 150%;
	font-weight: bold;
	border-radius: 8px;
}
@media (hover: hover) {
	.led-screen-calculator-block .touch-device-action .touch-device-action-holder a:hover {
		background-color: #E8EBF3;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator-block .touch-device-action .touch-device-action-holder a {
		width: 100%;
	}
}

.led-screen-calculator {
	display: inline-block;
	width: 100%;
	color: #3C3434;
}
.led-screen-calculator.fancybox__content {
	padding: 16px;
	width: 1348px;
	border-radius: 16px;
	margin: 30px 0;
	background-color: #F4F4F4;

	max-height: 860px;
}
@media only screen and (max-width: 1599px) {
	.led-screen-calculator.fancybox__content {
		width: 1200px;
	}
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator.fancybox__content {
		width: 568px;
		background-color: white;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator.fancybox__content {
		width: 93%;
	}
}
.led-screen-calculator .led-screen-calculator-holder {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder > .heading {
	display: inline-block;
	width: 100%;
	margin: 0 0 10px;
	padding: 10px 15px;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder > .heading {
		margin: 0 0 30px;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder > .heading {
		margin: 9px 0 23px;
	}
}
.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder h2, .led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder .h2 {
	font-size: 24px;
	line-height: 100%;
	font-weight: 600;
	margin: 0;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder h2, .led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder .h2 {
		font-size: 38px;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder h2, .led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder .h2 {
		font-size: 24px;
		font-weight: 500;
		letter-spacing: -0.02px;
	}
}
.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder .note {
	display: inline-block;
	width: 69%;
	font-size: 14px;
	line-height: 160%;
	margin: 18px 0 0;
	font-weight: 500;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder .note {
		width: 100%;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder > .heading .heading-holder .note {
		display: none;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder {
	display: flex;
	gap: 8px;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder {
		flex-direction: column;
		flex-direction: column-reverse;
		position: relative;
		padding-bottom: 110px;
		overflow: hidden;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder {
		gap: 17px;
		padding-bottom: 84px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-column {
	width: 328px;
	height: auto;
}
@media only screen and (max-width: 1599px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-column {
		height: auto;
	}
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-column {
		width: 100%;
		height: auto;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-column .calculator-column-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 16px;
	box-sizing: border-box;
	padding: 17px 16px 10px;

	max-height: 760px;

}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-column .calculator-column-holder .button{
	font-size: 12px;
	padding: 16px;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-column .calculator-column-holder {
		padding: 0;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-contains {
	width: calc(100% - 328px - 8px);
	height: auto;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-contains {
		width: 100%;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-contains .calculator-contains-holder {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder .calculator-column-block .calculator-column-block-holder .calculator-contains .calculator-contains-holder {
		gap: 0;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups {
	display: inline-block;
	width: 100%;
	height: calc(100% - 50px);
	/*
	overflow-x: hidden;
	overflow-y: auto;
	*/
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups {
		width: 100%;
		overflow: hidden;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups {
		width: 95%;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder {
	display: inline-block;
	width: 100%;
	margin: 0 0 -16px;
	max-height: 550px;
	overflow-x: hidden;
	box-sizing: border-box;
	position: relative;
	/*padding-right: 15px;*/
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder {
		padding-right: 0;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group {
	display: inline-block;
	width: 100%;
	margin: 0 0 5px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group:last-of-type{
	margin-bottom: 0px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group.collapsabale-group-js.open .heading .open {
	transform: rotate(180deg);
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group.collapsabale-group-js .heading {
	cursor: pointer;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group.collapsabale-group-js .calc-form-group-holder .field-group {
	max-height: 0;
	transition: all 300ms;
	overflow: hidden;
	/*opacity: 0;
	visibility: hidden;*/
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group.collapsabale-group-js.open .calc-form-group-holder .field-group {
	max-height: 500px;
	transition: all 900ms;
	overflow: visible;
	/*visibility: visible;
	opacity: 1;*/
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .heading {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2823529412);
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .heading h2, .led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .heading .h2 {
	font-size: 16px;
	line-height: 150%;
	font-weight: 500;
	margin: 7px 0 3px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .heading .open {
	position: absolute;
	right: 0px;
	top: 7px;
	display: inline-block;
	width: 24px;
	height: 24px;
	/*background-color: #F4F4F4;*/
	line-height: 19px;
	border-radius: 50%;
	text-align: center;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .heading .open::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border: solid black;
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .field-group {
	float: left;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .field-group .field-group-holder {
	float: left;
	width: 100%;
	margin: 4px 0 0px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .field-group .field-group-holder .col {
	float: left;
	width: 100%;
	margin: 0 0 0px;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calc-form-groups .calc-form-groups-holder .calc-form-group .calc-form-group-holder .field-group .field-group-holder .col {
		margin: 0 0 8px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block {
	display: inline-block;
	width: 100%;
	margin: 5px 0 0px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder {
	display: inline-block;
	width: 100%;
	background-color: #F1F1F1;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 7px 18px 8px 16px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution {
	display: inline-block;
	width: 100%;
	margin: 0 0 1px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution .resolution-holder {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution .resolution-holder .name {
	font-size: 13px;
	line-height: 17px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution .resolution-holder .value {
	display: flex;
	text-align: right;
	justify-content: end;
	font-size: 15px;
	line-height: 19px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution .resolution-holder .value .pixels-width {
	display: inline;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution .resolution-holder .value .separator {
	display: inline;
	margin: 0 2px 0 1px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .resolution .resolution-holder .value .pixels-height {
	display: inline;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .screen-brighness {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .screen-brighness .screen-brighness-holder {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .screen-brighness .screen-brighness-holder .name {
	font-size: 13px;
	line-height: 17px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .resolution-details-block .resolution-details-block-holder .screen-brighness .screen-brighness-holder .value {
	display: flex;
	text-align: right;
	justify-content: end;
	font-size: 15px;
	line-height: 19px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .checkset {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 11px;
	margin-bottom: 12px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .checkset:last-of-type{
	margin-bottom: 0px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label .name {
	display: inline-block;
	width: 100%;
	font-size: 13px;
	line-height: 130%;
	font-weight: 500;
	margin: 0 0 7px;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label .name {
		font-size: 12px;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label .name {
		font-size: 13px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input.error .input-container input {
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input.error .input-container input:focus ~ .border {
	opacity: 1;
	border-color: red;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input.error .input-container .border {
	opacity: 1;
	border-color: red;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input .name {
	width: calc(100% - 78px - 10px);
	margin: 0;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input .input-container {
	width: 78px;
	margin: 4px 0;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input .input-container .border {
	content: "";
	display: inline-block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	border: 2px solid #3F69FF;
	border-radius: 6px;
	position: absolute;
	left: -1px;
	top: -1px;
	z-index: 1;
	pointer-events: none;
	touch-action: none;
	opacity: 0;
	box-sizing: border-box;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input .input-container input:focus ~ .border {
	opacity: 1;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input {
	width: 100%;
	height: 32px;
	background-color: white;
	border: 1px solid #BFC4D4;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	font-weight: 500;
	color: #3C3434;
	border-radius: 6px;
	padding: 0 5px;
	box-sizing: border-box;
	outline: none;
	transition: all 300ms;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input:focus, .led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input:focus-visible {
	outline: none;
	border-color: #BFC4D4;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input::-webkit-input-placeholder {
	color: #777;
}

.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input:-moz-placeholder {
	color: #777;
}

.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input::-moz-placeholder {
	color: #777;
}

.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.input input:-ms-input-placeholder {
	color: #777;
}

.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.variant-connected-select.long .name {
	width: calc(100% - 142px - 10px);
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.variant-connected-select.long .select-variants {
	width: 142px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.variant-connected-select .select-variants {
	width: 78px;
	height: 40px;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.variant-connected-select .select-variants .select-variant {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 300ms;
	transition-delay: 300ms;
	width: 100%;
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.variant-connected-select .select-variants .select-variant.inactive {
	opacity: 0;
	pointer-events: none;
	touch-action: none;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select.long .name,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select.long .name
{
	width: calc(100% - 142px - 10px);
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select.long .selectric-selectric-select,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select.long .selectric-selectric-select
{
	width: 142px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .name,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .name
{
	width: calc(100% - 78px - 10px);
	margin: 0;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select
{
	width: 78px;
	margin: 4px 0;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select.selectric-open .selectric,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select.selectric-open .selectric
{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select.selectric-open .selectric .button:after,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select.selectric-open .selectric .button:after
{
	transform: rotate(180deg);
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric
{
	background: #FFFFFF;
	border: 1px solid #BFC4D4;
	box-sizing: border-box;
	border-radius: 6px;
	height: 32px;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric .label,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric .label
{
	font-family: "Inter", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 29px;
	color: #111111;
	display: block;
	margin: 0 28px 0 7px;
	height: 100%;
	width: calc(100% - 20px);
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric .button,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric .button
{
	height: 31px;
	width: 28px;
	box-sizing: border-box;
	transition: all 300ms;
	background-color: transparent;
	padding: 0;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric .button:after,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric .button:after
{
	border: none;
	background-image: url(../img/select-shevron.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	background-clip: border-box;
	width: 100%;
	height: 100%;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric-items,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric-items
{
	background: #FFFFFF;
	border: 1px solid #CED2D5;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric-items .selectric-scroll ul,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric-items .selectric-scroll ul{
	position: relative;
	width: 100%;
	max-height: 282px;
	overflow: hidden;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric-items .selectric-scroll ul li,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric-items .selectric-scroll ul li{
	display: flex;
	align-items: center;
	font-family: "Inter", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	line-height: 28px;
	min-height: 32px;
	padding: 3px 3px 3px 5px;
	box-sizing: border-box;
}
@media (hover: hover) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric-items .selectric-scroll ul li:hover,
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric-items .selectric-scroll ul li:hover	{
		background: #dddddd;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.select .selectric-selectric-select .selectric-items .selectric-scroll ul li.selected,
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field span.select .selectric-selectric-select .selectric-items .selectric-scroll ul li.selected{
	background: #3F69FF;
	color: white;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer {
	width: 101%;
	display: flex;
	gap: 16px;
	align-items: center;
	position: relative;
	cursor: pointer;
	font-style: normal;
	font-weight: normal;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-bottom: 0px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer input:checked ~ .checkmark {
	background-color: #3F69FF;
	border-color: #3F69FF;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer input:checked ~ .checkmark::after {
	opacity: 1;
	transition: all 300ms ease;
}
@media (hover: hover) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer:hover input ~ .checkmark {
		border-color: #3F69FF;
		transition: all 300ms;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer .checkmark {
	float: left;
	left: 0px;
	top: 0px;
	height: 16px;
	width: 16px;
	box-sizing: border-box;
	background-color: white;
	border: none;
	border-radius: 2px;
	border: 1px solid #C0C0C0;
	position: relative;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer .checkmark::after {
	content: "";
	position: absolute;
	display: inline-block;
	opacity: 0;
	left: calc(50% + 0px);
	top: calc(50% - 1px);
	width: 4px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 300ms ease;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.checkcontainer .name {
	width: calc(100% - 16px - 16px);
	margin: 0;
	float: left;
	font-size: 14px;
	line-height: 120%;
	font-weight: 500;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter {
	display: flex;
	gap: 16px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .name {
	width: calc(100% - 16px - 78px);
	margin: 0;
	display: flex;
	align-items: center;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element {
	display: inline-block;
	width: 78px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 29px;
	border-radius: 8px;
	box-sizing: border-box;
	padding: 4px;
	background-color: #E6E6E6;
	color: #3C3434;
	margin: 5px 0;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .decrease, .led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .increase {
	width: 23px;
	height: 23px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .decrease a, .led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .increase a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 4px;
	color: #3C3434;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .decrease a.disabled, .led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .increase a.disabled {
	pointer-events: none;
	touch-action: none;
	background-color: #D6D6D6;
	color: gray;
}
@media (hover: hover) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .decrease a:hover, .led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .increase a:hover {
		background-color: #3F69FF;
		color: white;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .number .value {
	display: flex;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .number .value .num {
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .field label.counter .counter-element .counter-element-holder .number .value .dimmension {
	margin: 5px 0 0 2px;
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results {
	display: inline-block;
	width: 100%;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results {
		position: absolute;
		left: 0;
		bottom: 0;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	padding: 13px 15px;
	background-color: white;
	color: #3F69FF;
	border-radius: 16px;
	border: 2px solid #3F69FF;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder {
		padding: 0;
		border: none;
		gap: 0;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results {
		width: calc(100% - 164px);
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0 0 0 6px;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder {
		flex-direction: column;
		gap: 8px;
		margin: 0;
		align-items: start;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder {
		gap: 2px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .text {
	font-size: 16px;
	line-height: 22px;
	font-weight: 500;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .text {
		font-size: 11px;
		line-height: 13px;
		color: #3C3434;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .price {
	font-size: 22px;
	line-height: 22px;
	letter-spacing: -0.02px;
	font-weight: bold;
	white-space: nowrap;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .price {
		font-size: 14px;
		line-height: 22px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .action {
	width: 223px;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .action {
		width: 164px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .action .action-holder {
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .action .action-holder a {
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	padding: 20px 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 150%;
	font-weight: bold;
	border-radius: 8px;
}
@media (hover: hover) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .action .action-holder a:hover {

	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .action .action-holder a {
		font-size: 12px;
		padding: 15px 10px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper-block {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	background-color: white;
	border-radius: 16px;
}
@media only screen and (max-width: 1279px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper-block {
		padding: 0;
		margin: 0;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper-block .screen-visual-helper-block-holder {
	display: inline-block;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper {
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	padding: 41px 40px 0 0;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper {
		padding: 30px 24px 0 0;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder {
	display: inline-block;
	width: 100%;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes {
	width: 100%;
	position: absolute;
	left: 0;
	top: -18px;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes {
		top: -8px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side {
	height: 100%;
	width: 1px;
	top: 0;
	left: auto;
	right: -18px;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side {
		right: -9px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder {
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size {
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder {
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .line {
	width: 1px;
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .line .wall-value {
	top: -30px;
	width: 1px;
	height: 41%;
	min-width: 1px;
	min-height: 45px;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .line .wall-value .value .inner-value {
	transform: rotate(-90deg);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .screen-size {
	width: 1px;
	height: 18%;
	left: 0;
	top: 50%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder {
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value {
	height: 100%;
	left: auto;
	right: -14px;
	top: 0;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value {
		right: -9px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes.side .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value .value .inner-value {
	transform: rotate(-90deg);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder {
	width: 100%;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size {
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder {
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .arrow {
	position: absolute;
	z-index: 1;
	top: -2px;
	width: 4px;
	height: 4px;
	border: solid #939393;
	border-width: 0 1px 1px 0;
	transform: rotate(135deg);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .arrow.left {
	left: -1px;
	right: auto;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .arrow.right {
	right: -1px;
	left: auto;
	transform: rotate(-45deg);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .arrow.top {
	left: -2px;
	top: -1px;
	transform: rotate(-135deg);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .arrow.bottom {
	left: -2px;
	top: auto;
	bottom: -1px;
	transform: rotate(45deg);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line {
	width: 100%;
	height: 1px;
	background-color: #939393;
	position: relative;
	z-index: 1;
	transition: all 600ms;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value {
	position: absolute;
	top: -25px;
	width: 39.5%;
	min-width: 45px;
	transition: all 600ms;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value {
		top: -16px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value.left {
	left: 0;
	right: auto;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value.right {
	right: 0;
	left: auto;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value.top {
	right: -14px;
	top: 0;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value.top {
		right: -9px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value.bottom {
	right: -14px;
	top: auto;
	bottom: 0;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value.bottom {
		right: -9px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value .value {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	font-size: 14px;
	line-height: 160%;
	font-weight: 500;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .line .wall-value .value {
		font-size: 10px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 21%;
	height: 1px;
	background-color: #3F69FF;
	transition: all 600ms;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder {
	position: relative;
	width: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value {
	position: absolute;
	left: 0;
	top: -25px;
	width: 100%;
	transition: all 600ms;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value {
		top: -16px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value .value {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	white-space: nowrap;
	color: #3F69FF;
	font-size: 14px;
	line-height: 160%;
	font-weight: 500;
	transition: all 600ms;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .screen-value .value {
		font-size: 10px;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #3F69FF;
	position: absolute;
	top: -2.5px;
	transition: all 600ms;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .dot.left {
	left: -2.5px;
	right: auto;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .dot.right {
	right: -2.5px;
	left: auto;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .dot.top {
	left: -1.5px;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .sizes .sizes-holder .wall-size .wall-size-holdder .screen-size .screen-size-holder .dot.bottom {
	left: -1.5px;
	top: auto;
	bottom: -2.5px;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation {
	display: inline-block;
	width: 100%;
	border-radius: 8px;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder {
	display: inline-block;
	width: 100%;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .proportional-dummy {
	display: inline-block;
	width: 100%;
	margin-bottom: 63%;
}
@media only screen and (max-width: 1599px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .proportional-dummy {
		margin-bottom: 67%;
	}
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .proportional-dummy {
		margin-bottom: 62.5%;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .wall {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .wall .wall-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .wall .wall-holder img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .size-shadow {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed #3F69FF;
	box-sizing: border-box;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .size-shadow.shadow-width {
	width: 21%;
	height: calc(50% + 17px);
	transition: all 600ms;
	transform: translate(-50%, -100%);
	border-top: none;
	border-bottom: none;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .size-shadow.shadow-width {
		height: calc(50% + 7px);
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .size-shadow.shadow-height {
	height: 18%;
	width: calc(50% + 17px);
	transition: all 600ms;
	transform: translate(0%, -50%);
	border-left: none;
	border-right: none;
}
@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .size-shadow.shadow-height {
		width: calc(50% + 7px);
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen {
	width: 21%;
	height: 18%;
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 600ms;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 3;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action.top {
	left: 50%;
	top: -20px;
	transform: translateX(-50%);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action.bottom {
	left: 50%;
	top: auto;
	bottom: -20px;
	transform: translateX(-50%);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action.right {
	left: auto;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action.left {
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: white;
	color: #3F69FF;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action a.disabled {
	pointer-events: none;
	touch-action: none;
	background-color: #D6D6D6;
	color: gray;
}
@media (hover: hover) {
	.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screen-add-controls .screen-add-controls-holder .action a:hover {
		background-color: #3F69FF;
		color: white;
	}
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screens-table {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screens-table table {
	border-collapse: collapse;
	width: 100%;
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screens-table table tbody {
	width: 100%;
	height: 100%;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .screens-table table tbody tr td {
	border-width: 1px;
	border-color: black;
	border-style: solid;
	transition: all 300ms;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .inner-screen-holder {
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 2px;
	border: 1px solid black;
	box-sizing: border-box;
	overflow: hidden;
	background-color: white;
	position: relative;
	z-index: 1;
}
.led-screen-calculator .led-screen-calculator-holder .screen-visual-helper .screen-visual-helper-holder .wall-screen-presentation .wall-screen-presentation-holder .screen .screen-holder .inner-screen .inner-screen-holder img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*!***********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/perfect-scrollbar/css/perfect-scrollbar.css ***!
  \***********************************************************************************************************************************************************************************************************/
/*
 * Container style
 */
.ps {
	overflow: hidden !important;
	overflow-anchor: none;
	-ms-overflow-style: none;
	touch-action: auto;
	-ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	height: 15px;
	/* there must be 'bottom' or 'top' for ps__rail-x */
	bottom: 0px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-y {
	display: none;
	opacity: 0;
	transition: background-color 0.2s linear, opacity 0.2s linear;
	-webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
	width: 15px;
	/* there must be 'right' or 'left' for ps__rail-y */
	right: 0;
	/* please don't change 'position' */
	position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
	display: block;
	background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
	opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
	background-color: #eee;
	opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, height 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
	height: 6px;
	/* there must be 'bottom' for ps__thumb-x */
	bottom: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__thumb-y {
	background-color: #aaa;
	border-radius: 6px;
	transition: background-color 0.2s linear, width 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
	width: 6px;
	/* there must be 'right' for ps__thumb-y */
	right: 2px;
	/* please don't change 'position' */
	position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
	background-color: #999;
	height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
	background-color: #999;
	width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
	.ps {
		overflow: auto !important;
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.ps {
		overflow: auto !important;
	}
}



.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .note{
	opacity: 50%;
	color: #3C3434;
	text-align: left;
	display: inline-block;
	margin-top: 10px;
	font-size: 11px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .text {
	text-align: left;
	font-size: 19px;
}
.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .price {
	font-size: 25px;
}

.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results{
	max-width: 70%;
}


@media only screen and (max-width: 766px) {
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results {
		width: 100%;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder-container{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .note{
		display: none;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .text {
		font-size: 11px;
		line-height: 13px;
		color: #3C3434;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results{
		max-width: unset;
		width: 44%;
	}
	.led-screen-calculator.fancybox__content {
		width: 100%;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder .price{
		font-size: 14px;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder-container{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.led-screen-calculator .led-screen-calculator-holder .calculator-form .calculator-form-holder form .calculated-results .calculated-results-holder .results .results-holder {
		gap: 4px;
	}
}
/*# sourceMappingURL=calculator.css.map*/


.my-custom-fancybox .fancybox__slide{
	margin-right: 0;
	padding: 0;
}
html.with-fancybox body.hide-scrollbar{
	overflow: visible !important;
	margin-right: 0px;
}
html.with-fancybox{
	--fancybox-scrollbar-compensate: 15px !important;
}
.toup.slideTop{
	transform: translateY(-70px);
}

#equipment + #rooms{
	padding-top: 0px;
}

html.with-fancybox{
	overflow-y: hidden;
	scrollbar-gutter: stable;
}



.cookies-banner{
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 400px;
	background: #3F69FF;
	border-radius: 6px;
	box-sizing: border-box;
	padding: 15px;
	z-index: 100;
	transition: all 0.3s ease;
}
.cookies-banner.close{
	transform: translateY(100%);
	opacity: 0;
}
.cookie-text{
	font-size: 11px;
	line-height: 140%;
	color: white;
	margin-bottom: 15px;
}
.cookie-btns{
	display: flex;
	gap: 8px;
	justify-content: space-between;
}
.cookie-btns .button{
	font-size: 13px;
	padding: 11px 30px 12px;
	text-transform: none;
	font-weight: 400;
	box-sizing: border-box;
}

.cookie-btns .button.close-site{
	color: #93ABFF;
	border: 1px solid #93ABFF;
}
.cookie-btns .button.close-site:hover{
	background: #93ABFF;
	color: white;
}
.cookie-btns .button.cookie-close-element{
	background: #1A48EC;
}
.cookie-btns .button.cookie-close-element:hover{
	background: #93ABFF;
}

@media only screen and (max-width: 766px) {
	.cookies-banner{
		width: 100%;
		bottom: 0px;
		right: 0px;
	}
}
