@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);
/* @charset "UTF-8"; */
@font-face {
	font-family: Circe;
	font-display: swap;
	src: url('../fonts/Circe-Bold.woff2') format('woff2'),
		url('../fonts/Circe-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: Circe;
	font-display: swap;
	src: url('../fonts/Circe-ExtraBold.woff2') format('woff2'),
		url('../fonts/Circe-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: Circe;
	font-display: swap;
	src: url('../fonts/Circe-Light.woff2') format('woff2'),
		url('../fonts/Circe-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: Circe;
	font-display: swap;
	src: url('../fonts/Circe-Regular.woff2') format('woff2'),
		url('../fonts/Circe-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: Circe;
	font-display: swap;
	src: url('../fonts/Circe-Thin.woff2') format('woff2'),
		url('../fonts/Circe-Thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}
* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

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

html,
body {
	height: 100%;
	min-width: 320px;
}

body {
	color: #000;
	line-height: 1;
	font-family: 'Circe';
	font-size: 1.125rem;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

button {
	cursor: pointer;
	color: inherit;
	background-color: inherit;
}

a {
	color: inherit;
}

a:link,
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-weight: inherit;
	font-size: inherit;
}

.lock body {
	overflow: hidden;
	touch-action: none;
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.wrapper > main {
	flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*='__container'] {
	max-width: 89.125rem;
	box-sizing: content-box;
	margin: 0 auto;
	padding: 0 0.9375rem;
}

[class*='-ibg'] {
	position: relative;
}
[class*='-ibg'] img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

[class*='-ibg_contain'] img {
	object-fit: contain;
}

.title {
	position: relative;
	color: #5a6775;
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: 127.523%;
	display: flex;
	align-items: center;
}
.title span {
	display: block;
	width: 78px;
	height: 4px;
	flex-shrink: 0;
	background: #ec6a1f;
	position: absolute;
	left: -100px;
}
@media (max-width: 97.5em) {
	.title span {
		position: static;
		width: 30px;
		margin-top: 12px;
		margin-right: 10px;
	}
}
@media (max-width: 97.5em) {
	.title {
		align-items: flex-start;
	}
}
@media (max-width: 90em) {
	.title {
		font-size: 28px;
	}
}
@media (max-width: 22.5em) {
	.title {
		font-size: 24px;
	}
}

.btn {
	padding: 15px 28px;
	font-size: 16px;
	font-family: Inter;
	position: relative;
	font-style: normal;
	font-weight: 500;
	transition: all 0.3s ease 0s;
	flex-shrink: 0;
	line-height: 140.523%;
}
@media (max-width: 62.5em) {
	.btn {
		background: #ec6a1f;
		color: #fff;
		padding: 10px 15px;
		width: auto;
	}
}
.btn:active {
	transform: scale(0.8);
}

.map {
	position: relative;
}
@media (min-width: 86em) {
	.map {
		padding-bottom: 6.875rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.map {
		padding-bottom: calc(-1.875rem + 8.75 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.map {
		padding-bottom: -1.875rem;
	}
}
.map__container {
	max-width: 1640px;
}
@media (max-width: 37.5em) {
	.map__container {
		padding: 0;
	}
}
.map__title {
	padding: 20px 50px;
	color: #fff;
	background: #ec6a1f;
	width: fit-content;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: 127.523%;
	display: block;
	margin-left: 180px;
}
@media (max-width: 90em) {
	.map__title {
		margin-left: 50px;
	}
}
@media (max-width: 62.5em) {
	.map__title {
		font-size: 28px;
		margin-left: 0;
		padding: 20px;
	}
}
@media (max-width: 37.5em) {
	.map__title {
		width: 100%;
		font-size: 20px;
		padding: 5px 10px;
	}
}
.map__map {
	width: 100%;
}
@media (min-width: 86em) {
	.map__map {
		height: 36.0625rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.map__map {
		height: calc(11.25rem + 24.8125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.map__map {
		height: 11.25rem;
	}
}

.bg3 {
	position: absolute;
	bottom: 0;
	right: 0;
}
@media (max-width: 62.5em) {
	.bg3 {
		display: none;
	}
}

li {
	list-style: none;
}

.icon-menu {
	display: none;
}
@media (max-width: 940px) {
	.icon-menu {
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
	}
	.icon-menu span,
	.icon-menu::before,
	.icon-menu::after {
		content: '';
		transition: all 0.3s ease 0s;
		left: 0px;
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #ffffff;
	}
	.dark .icon-menu span,
	.dark .icon-menu::before,
	.dark .icon-menu::after {
		background: #292929 !important;
	}
	.icon-menu::before {
		top: 0px;
	}
	.icon-menu::after {
		bottom: 0px;
	}
	.icon-menu span {
		top: calc(50% - 1px);
	}
	.menu-open .icon-menu span {
		transform: scale(0);
	}
	.menu-open .icon-menu::before {
		transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.menu-open .icon-menu::after {
		transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}

.header {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 100;
	color: #fff;
}
.dark .header {
	color: #6d6d6d;
}
.header__body {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}
@media (max-width: 58.75em) {
	.header__body {
		align-items: center;
		gap: 0px;
	}
}
@media (max-width: 83.75em) {
	.header__logo img {
		max-width: 150px;
	}
}
@media (max-width: 37.5em) {
	.header__logo img {
		max-width: 100px;
	}
}
.header__actions {
	text-align: right;
	padding-top: 31px;
}
@media (max-width: 58.75em) {
	.header__actions {
		padding-top: 0;
		margin-left: auto;
		margin-right: 22px;
	}
}
.header__actions a {
	transition: all 0.3s ease 0s;
}
.header__actions a:hover {
	text-decoration: underline;
}
.header__actions a:active {
	transform: scale(0.9);
}
.header__phone {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 25px;
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 1px;
}
@media (max-width: 83.75em) {
	.header__phone {
		font-size: 12px;
		gap: 4px;
		margin-bottom: 0;
	}
}
@media (max-width: 58.75em) {
	.header__phone {
		padding: 0;
		margin-bottom: -5px;
	}
}
.header__popup {
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 83.75em) {
	.header__popup {
		font-size: 8px;
	}
}

.menu {
	padding-top: 43px;
}
@media (max-width: 83.75em) {
	.menu {
		padding-top: 30px;
	}
}
@media (max-width: 58.75em) {
	.menu {
		padding: 0;
	}
}
.menu__list {
	display: flex;
	gap: 34px;
	align-items: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.menu__list .header__logo {
	transition: all 0.3s ease 0s;
	display: none;
}
@media (max-width: 58.75em) {
	.menu__list .header__logo {
		display: block;
		margin-bottom: 20px;
	}
}
.menu__list .header__logo:hover {
	transform: scale(1.1);
}
.menu__list .header__logo img {
	width: 150px;
	margin-left: 0;
	margin-right: 0;
	max-width: 150px;
}
@media (max-width: 83.75em) {
	.menu__list {
		gap: 20px;
		font-size: 16px;
	}
}
@media (max-width: 58.75em) {
	.menu__list {
		position: absolute;
		transition: all 0.3s ease 0s;
		right: -200%;
		top: 0;
		height: 100vh;
		width: 100%;
		flex-direction: column;
		background: #ec6a1f;
		font-size: 20px;
		font-weight: bold;
		justify-content: center;
	}
	.menu-open .menu__list {
		right: 0;
	}
}
.menu__item:hover {
	text-decoration: underline;
}
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	min-height: 550px;
	padding: 130px 0;
	padding-bottom: 85px;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 58.75em) {
	.hero {
		display: block;
		height: auto;
		min-height: 10px;
	}
}
@media (max-width: 43.75em) {
	.hero {
		padding: 120px 0;
		padding-bottom: 100px;
		padding-bottom: 73px;
	}
}
.hero__container {
	width: 100%;
}
@media (max-width: 43.75em) {
	.hero__container {
		width: auto;
	}
}
.hero__title {
	margin-bottom: 40px;
	color: #fff;
	font-size: 70px;
	font-style: normal;
	max-width: 830px;
	font-weight: 800;
	line-height: 102.5%;
}
.hero__title span {
	position: relative;
	position: relative;
}
.hero__title span::before {
	content: '';
	background: #ec6a1f;
	position: absolute;
	left: -18px;
	top: -10px;
	z-index: -1;
	width: 117px;
	height: 117px;
}
@media (max-width: 90.625em) {
	.hero__title span::before {
		width: 80px;
		height: 80px;
		left: -10px;
	}
}
@media (max-width: 50em) {
	.hero__title span::before {
		height: 61px;
		width: 61px;
	}
}
@media (max-width: 31.25em) {
	.hero__title span::before {
		height: 48px;
		width: 48px;
		left: -8px;
	}
}
@media (max-width: 23.125em) {
	.hero__title span::before {
		height: 41px !important;
		width: 41px !important;
		top: -12px;
		left: -10px;
	}
}
@media (max-width: 62.5em) {
	.hero__title span {
		padding-bottom: 0;
	}
}
@media (min-width: 162.5em) {
	.hero__title {
		font-size: 100px;
		max-width: 2000px;
	}
}
@media (max-width: 90em) {
	.hero__title {
		font-size: 55px;
		margin-bottom: 45px;
	}
}
@media (max-width: 50em) {
	.hero__title {
		color: #fff;
		font-size: 36px;
		max-width: 499px;
		font-style: normal;
		font-weight: 800;
		line-height: 102.5%;
		margin-bottom: 31px;
	}
}
@media (max-width: 31.25em) {
	.hero__title {
		font-size: 28px;
	}
}
@media (max-width: 23.125em) {
	.hero__title {
		font-size: 22px !important;
		max-width: 260px;
	}
}
.hero__items {
	display: flex;
	gap: 89px;
}
@media (max-width: 43.75em) {
	.hero__items {
		gap: 15px;
	}
}
.hero__item {
	color: #fff;
	font-size: 22px;
	font-style: normal;
	font-weight: 350;
	line-height: normal;
}
.hero__item-line {
	width: 86px;
	height: 3px;
	background: #ec6a1f;
	margin-bottom: 15px;
}
.hero__item-text {
	max-width: 300px;
}
@media (min-width: 162.5em) {
	.hero__item-text {
		max-width: 640px;
	}
}
@media (max-width: 50em) {
	.hero__item-text {
		font-size: 12px;
		max-width: 150px;
	}
}

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

.mask {
	background: rgba(96, 112, 128, 0.8509803922);
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.BorderTopBottom:before {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	top: 0px;
	left: 0px;
	background: #eb691f;
	transition: all 0.5s ease;
}

.BorderTopBottom:after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	bottom: 0px;
	right: 0px;
	background: #eb691f;
	transition: all 0.5s ease;
}

.BorderLeftRight:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 3px;
	height: 25px;
	background: #eb691f;
	transition: all 0.5s ease;
}

.BorderLeftRight:after {
	content: '';
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 3px;
	height: 25px;
	background: #eb691f;
	transition: all 0.5s ease;
}

.btn:hover .BorderTopBottom:before,
.btn:hover .BorderTopBottom:after {
	width: 100%;
	transition: all 0.5s ease;
}

.btn:hover .BorderLeftRight:before,
.btn:hover .BorderLeftRight:after {
	height: 100%;
	transition: all 0.5s ease;
}

.form1 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 31px;
	margin-bottom: 68px;
	background: #fcfefe;
	box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.07);
}
@media (max-width: 62.5em) {
	.form1 {
		margin-bottom: 40px;
	}
}
@media (max-width: 52.5em) {
	.form1 {
		padding-top: 40px;
	}
}
@media (max-width: 37.5em) {
	.form1 {
		padding-top: 25px;
	}
}
.form1__container {
	position: relative;
}
.form1__body {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}
.form1__body .input {
	padding: 17px 22px;
	width: 100%;
	display: block;
	color: #b5b5b5;
	font-size: 16px;
	font-style: normal;
	font-weight: 350;
	border: 1px solid #8f92a9;
	line-height: 100%;
}
@media (max-width: 81.25em) {
	.form1__body .input {
		font-size: 14px;
		padding: 12px 15px;
		gap: 20px;
	}
}
@media (max-width: 25em) {
	.form1__body .input {
		font-size: 14px;
		padding: 9px 12px;
	}
}
@media (max-width: 52.5em) {
	.form1__body {
		flex-direction: column;
	}
}
.form1 .concept {
	padding: 24px 33px;
	display: flex;
	gap: 20px;
	color: #000;
	font-size: 20px;
	cursor: pointer;
	max-width: 330px;
	font-style: normal;
	position: absolute;
	background: #fff;
	align-items: center;
	right: 20px;
	top: -165px;
	font-weight: 400;
	line-height: 100%;
}
@media (max-width: 81.25em) {
	.form1 .concept {
		padding: 15px;
		font-size: 16px;
		gap: 10px;
		top: -130px;
	}
	.form1 .concept img {
		max-width: 40px;
	}
}
@media (max-width: 43.75em) {
	.form1 .concept {
		display: none;
	}
}
.form1__left {
	max-width: 340px;
	padding-left: 20px;
	color: #484848;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	border-left: 9px solid #ec6a1f;
}
.form1__left span {
	font-weight: bold;
}
@media (max-width: 62.5em) {
	.form1__left {
		font-size: 18px;
		max-width: 250px;
	}
}
@media (max-width: 52.5em) {
	.form1__left {
		max-width: 100%;
	}
}
.form1 .line {
	width: 100%;
	position: relative;
}
.form1 .line p {
	color: #272727;
	font-size: 15px;
	font-style: normal;
	font-weight: 350;
	line-height: 100%;
	display: block;
	padding: 5px;
	position: absolute;
	background: #fff;
	margin-left: 10px;
	width: auto;
	top: -10px;
	z-index: 2;
	width: fit-content;
}
@media (max-width: 37.5em) {
	.form1 .line p {
		font-size: 12px;
	}
}
.form1__right {
	display: flex;
	gap: 53px;
	width: 100%;
	align-items: flex-start;
}
@media (max-width: 62.5em) {
	.form1__right {
		gap: 20px;
	}
}
@media (max-width: 33.75em) {
	.form1__right {
		flex-direction: column;
		align-items: center;
	}
}
.form1__box {
	width: 100%;
	max-width: 648px;
}
.form1__box-input {
	display: flex;
	gap: 25px;
	margin-bottom: 14px;
	align-items: center;
}
@media (max-width: 62.5em) {
	.form1__box-input {
		gap: 20px;
	}
}
.form1__text {
	display: flex;
	gap: 18px;
	color: #818181;
	font-size: 12px;
	font-style: normal;
	font-weight: 350;
	align-items: center;
	line-height: 130%;
	max-width: 490px;
}
@media (max-width: 62.5em) {
	.form1__text {
		gap: 10px;
	}
}
.form1__btn {
	padding: 15px 28px;
	color: #444;
	font-size: 16px;
	font-family: Inter;
	position: relative;
	font-style: normal;
	font-weight: 500;
	flex-shrink: 0;
	line-height: 140.523%;
}
@media (max-width: 62.5em) {
	.form1__btn {
		background: #ec6a1f;
		color: #fff;
		padding: 10px 15px;
	}
}

.bg2 {
	position: absolute;
	left: -150px;
	bottom: 50px;
}
@media (max-width: 106.25em) {
	.bg2 {
		max-width: 20px;
	}
}

.decision {
	position: relative;
}
@media (min-width: 86em) {
	.decision {
		margin-bottom: 5.375rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.decision {
		margin-bottom: calc(1.875rem + 3.5 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.decision {
		margin-bottom: 1.875rem;
	}
}
.decision__container {
	position: relative;
}
.decision__title {
	margin-bottom: 39px;
}
@media (max-width: 75em) {
	.decision__title {
		margin-bottom: 30px;
	}
}
.decision .link {
	display: none;
}
.decision .bg3 {
	position: absolute;
	right: 0;
	top: 50px;
}
@media (max-width: 106.25em) {
	.decision .bg3 {
		max-width: 20px;
	}
}
.decision__big-item {
	min-height: 420px;
	display: flex;
	height: 100%;
	max-height: 420px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
@media (max-width: 93.75em) {
	.decision__big-item {
		min-height: 300px;
		max-height: auto;
	}
}
@media (max-width: 75em) {
	.decision__big-item .decision__item-title {
		margin-bottom: 0;
	}
}
@media (max-width: 43.75em) {
	.decision__big-item .decision__item-title {
		margin-left: -25px;
	}
}
@media (max-width: 43.75em) {
	.decision__big-item {
		padding-left: 0;
	}
}
.decision__big-item:hover .decision__item-title {
	margin-bottom: 30px;
}
@media (max-width: 43.75em) {
	.decision__big-item:hover .decision__item-title {
		margin-bottom: 0;
	}
}
.decision__item-item {
	position: relative;
	color: #fff;
	overflow: hidden;
	width: 100%;
	transition: all 0.3s ease 0s;
	cursor: pointer;
	text-align: center;
}
.decision__item-item:hover {
	width: 100%;
	align-items: flex-start;
	display: block;
}
.decision__item-item:hover .decision__item-body {
	display: block;
	text-align: left;
}
.decision__item-item:hover .decision__item-top {
	display: flex;
	padding-right: 85px;
	text-align: left;
}
@media (min-width: 86em) {
	.decision__item-item:hover .decision__item-top {
		margin-bottom: 3.125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.decision__item-item:hover .decision__item-top {
		margin-bottom: calc(1.25rem + 1.875 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.decision__item-item:hover .decision__item-top {
		margin-bottom: 1.25rem;
	}
}
@media (max-width: 68.75em) {
	.decision__item-item:hover .decision__item-top {
		padding-right: 15px;
	}
}
.decision__item-item:hover .decision__item-top img {
	display: block;
}
.decision__item-item:hover .decision__item-list {
	display: flex;
}
.decision__item-item::before {
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	transition: all 0.3s ease 0s;
	left: 0;
	border-radius: 15px;
	top: 0;
	background: rgba(96, 112, 128, 0.8);
}
@media (max-width: 43.75em) {
	.decision__item-item::before {
		opacity: 0.9;
		fill: linear-gradient(
				0deg,
				rgba(124, 138, 152, 0.7) 0%,
				rgba(124, 138, 152, 0.7) 100%
			),
			lightgray 50% / cover no-repeat;
	}
}
.decision__item-item:hover .decision__item-title {
	background: #ec6a1f;
}
.decision__item-item:hover:before {
	opacity: 0;
	visibility: hidden;
}
.decision__item-item:hover .link {
	display: none;
}
.decision__item-item:hover .air {
	display: none;
}
@media (max-width: 93.75em) {
	.decision__item-item {
		max-height: auto;
	}
}
@media (max-width: 75em) {
	.decision__item-item {
		height: 100%;
	}
}
@media (max-width: 43.75em) {
	.decision__item-item {
		padding: 25px 17px !important;
		max-height: 100% !important;
		min-height: 10px !important;
	}
}
@media (max-width: 31.25em) {
	.decision__item-item {
		padding: 25px 15px;
	}
}
.decision__item-item .fibo li {
	line-height: 120%;
	text-align: left;
	max-width: 100%;
	width: 100%;
}
.decision__item-item .fibo li:not(:last-child) {
	margin-bottom: 20px;
}
.decision__item3 {
	min-height: 405px;
	max-height: 420px;
}
.decision__item3 .decision__item-title {
	padding: 0;
	background: transparent !important;
}
@media (max-width: 43.75em) {
	.decision__item3 .decision__item-title {
		background: #ec6a1f !important;
		padding: 5px 15px;
		width: 100%;
		max-width: 150px !important;
	}
}
.decision__item3:hover {
	padding: 30px;
}
.decision__item3:hover .decision__item-list {
	text-align: left;
	display: block !important;
}
@media (max-width: 43.75em) {
	.decision__item3 {
		width: 100%;
	}
}
.decision__item-bg {
	border-radius: 15px;
}
.decision__item-top {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	display: block;
}
.decision__item-top img {
	transition: all 0.3s ease 0s;
	display: none;
}
.decision__item-top img:hover {
	transform: scale(1.1);
}
@media (max-width: 62.5em) {
	.decision__item-top img {
		max-width: 50px;
	}
}
@media (max-width: 43.75em) {
	.decision__item-top img {
		display: none !important;
	}
}
@media (max-width: 43.75em) {
	.decision__item-top {
		display: block !important;
		margin-bottom: 15px !important;
	}
}
.decision__item-title {
	padding: 23px 65px;
	color: #fff;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 140.523%;
	position: relative;
}
@media (max-width: 87.5em) {
	.decision__item-title {
		font-size: 30px;
		padding: 15px 40px;
	}
}
@media (max-width: 62.5em) {
	.decision__item-title {
		font-size: 24px;
		padding: 10px 15px;
	}
}
@media (max-width: 43.75em) {
	.decision__item-title {
		padding: 5px 15px;
		margin: 0 !important;
		width: fit-content !important;
		background: #ec6a1f !important;
		width: 100%;
		font-size: 18px !important;
		max-width: 150px;
	}
}
.decision__item-body {
	padding-bottom: 55px;
	padding-left: 122px;
	padding-right: 122px;
	display: none;
}
@media (max-width: 62.5em) {
	.decision__item-body {
		padding: 30px 50px;
	}
}
@media (max-width: 43.75em) {
	.decision__item-body {
		padding: 0;
		display: block !important;
		width: 100%;
		max-width: 100%;
	}
}
.decision__item-list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
	color: #fff;
	color: #fff;
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	line-height: 140.523%;
	display: none;
}
.decision__item-list li {
	width: 45%;
	list-style: none;
	max-width: 465px;
}
.decision__item-list li:hover {
	font-weight: bold;
}
@media (max-width: 62.5em) {
	.decision__item-list li {
		width: 49%;
	}
}
@media (max-width: 43.75em) {
	.decision__item-list li {
		width: 100%;
		text-align: left;
		margin-bottom: 11px !important;
	}
}
@media (max-width: 81.25em) {
	.decision__item-list {
		font-size: 18px;
		line-height: 130%;
	}
}
@media (max-width: 31.25em) {
	.decision__item-list {
		font-size: 14px;
	}
}
@media (max-width: 43.75em) {
	.decision__item-list {
		display: flex !important;
		display: block !important;
		width: 100%;
		max-width: 100%;
	}
}
.decision__box {
	display: flex;
	gap: 18px;
	width: 100%;
}
@media (max-width: 43.75em) {
	.decision__box {
		flex-direction: column;
	}
}
.decision__item2 {
	width: 100%;
	padding: 50px 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (max-width: 75em) {
	.decision__item2 {
		padding: 20px 50px;
	}
}
@media (max-width: 43.75em) {
	.decision__item2 .decision__item-title {
		max-width: 240px;
		width: 100% !important;
		margin: 0 auto;
	}
}
@media (max-width: 43.75em) {
	.decision__item2 {
		display: flex !important;
		justify-content: center;
		align-items: center !important;
	}
}
.decision__item3 {
	width: 100%;
	max-width: 40%;
	padding: 50px 100px;
}
@media (max-width: 93.75em) {
	.decision__item3 {
		min-height: 300px;
	}
}
@media (max-width: 62.5em) {
	.decision__item3 {
		width: 100%;
	}
}
@media (max-width: 43.75em) {
	.decision__item3 {
		max-width: 100%;
	}
}
.decision__box2 {
	width: 100%;
	display: flex;
	max-width: 70%;
	flex-direction: column;
	gap: 18px;
	text-align: center;
}
@media (max-width: 62.5em) {
	.decision__box2 {
		width: 100%;
		max-width: 100%;
	}
}

.btn-up_hide {
	display: none;
}

.air {
	position: absolute;
	bottom: 0px;
	left: 0px;
}
@media (max-width: 43.75em) {
	.air {
		display: none;
	}
}

.vas .BorderTopBottom:before {
	background: white !important;
}
.vas .BorderTopBottom:after {
	background: white !important;
}
.vas .BorderLeftRight:before {
	background: white !important;
}
.vas .BorderLeftRight:after {
	background: white !important;
}
.vas .BorderTopBottom:before {
	background: white;
}
@media (max-width: 62.5em) {
	.vas .BorderTopBottom:before {
		background: #fff !important;
	}
}
.vas .BorderTopBottom:after {
	background: white;
}
@media (max-width: 62.5em) {
	.vas .BorderTopBottom:after {
		background: #fff !important;
	}
}
.vas .BorderLeftRight:before {
	background: white;
}
@media (max-width: 62.5em) {
	.vas .BorderLeftRight:before {
		background: #fff !important;
	}
}
.vas .BorderLeftRight:after {
	background: white;
}
@media (max-width: 62.5em) {
	.vas .BorderLeftRight:after {
		background: #fff !important;
	}
}
@media (min-width: 86em) {
	.vas {
		margin-bottom: 9.375rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.vas {
		margin-bottom: calc(1.875rem + 7.5 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.vas {
		margin-bottom: 1.875rem;
	}
}
.vas__body {
	display: flex;
	position: relative;
	gap: 60px;
	padding: 42px;
	align-items: center;
}
@media (max-width: 62.5em) {
	.vas__body {
		gap: 25px;
	}
}
@media (max-width: 37.5em) {
	.vas__body {
		padding: 25px;
	}
}
@media (max-width: 21.25em) {
	.vas__body {
		gap: 10px;
	}
}
@media (max-width: 56.25em) {
	.vas__image {
		max-width: 80px;
	}
}
@media (max-width: 37.5em) {
	.vas__image {
		max-width: 50px;
	}
}
.vas .bg {
	border-radius: 16px;
}
.vas__box {
	display: flex;
	align-items: center;
	gap: 140px;
	width: 100%;
}
@media (max-width: 81.25em) {
	.vas__box {
		gap: 80px;
	}
}
@media (max-width: 71.25em) {
	.vas__box {
		gap: 30px;
	}
}
@media (max-width: 65.625em) {
	.vas__box {
		gap: 20px;
	}
}
@media (max-width: 37.5em) {
	.vas__box {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
}
.vas__cont {
	max-width: 460px;
}
.vas__title {
	color: #fff;
	font-size: 35px;
	font-style: normal;
	font-weight: 800;
	line-height: 127.523%;
	margin-bottom: 12px;
}
@media (max-width: 56.25em) {
	.vas__title {
		color: #fff;
		font-size: 20px;
		font-style: normal;
		font-weight: 800;
		line-height: 127.523%;
		margin-bottom: 5px;
	}
}
.vas__text {
	color: #f2f2f2;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 127.523%;
}
@media (max-width: 56.25em) {
	.vas__text {
		color: #f2f2f2;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 127.523%;
	}
}
.vas__btn {
	color: #fff;
	position: relative;
}
@media (max-width: 62.5em) {
	.vas__btn {
		background: transparent;
	}
}

.project {
	position: relative;
}
@media (min-width: 86em) {
	.project {
		margin-bottom: 5.5rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.project {
		margin-bottom: calc(2.5rem + 3 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.project {
		margin-bottom: 2.5rem;
	}
}
.project .bg2 {
	left: 0 !important;
}
@media (max-width: 75em) {
	.project .bg2 {
		display: none;
	}
}
.project__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 30px;
}
@media (max-width: 37.5em) {
	.project__top a {
		display: none;
	}
}
@media (max-width: 31.25em) {
	.project__top {
		margin-bottom: 0;
	}
}
.project__body {
	display: flex;
	gap: 50px;
	align-items: flex-start;
	justify-content: space-between;
}
@media (max-width: 93.75em) {
	.project__body {
		gap: 30px;
	}
}
@media (max-width: 75em) {
	.project__body {
		align-items: center;
	}
}
@media (max-width: 62.5em) {
	.project__body {
		flex-direction: column-reverse;
	}
}
.project .box {
	max-width: 460px;
	width: 100%;
	display: block;
	overflow: hidden;
}
@media (max-width: 75em) {
	.project .box {
		max-width: 380px;
	}
}
@media (max-width: 62.5em) {
	.project .box {
		max-width: 100%;
		width: 100%;
	}
}
.project .box2 {
	width: 100%;
	max-width: 840px;
	display: block;
	overflow: hidden;
}
@media (max-width: 62.5em) {
	.project .box2 {
		max-width: 100%;
		width: 100%;
	}
}
.project__slider {
	width: 100%;
}
.project__name {
	margin-bottom: 15px;
	color: #4a4a4a;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
@media (max-width: 37.5em) {
	.project__name {
		color: #4a4a4a;
		font-size: 18px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
	}
}
.project__text {
	color: #4a4a4a;
	text-align: justify;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
@media (max-width: 37.5em) {
	.project__text {
		color: #4a4a4a;
		text-align: justify;
		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: 108%;
	}
}
.project__images {
	width: 100%;
	padding-top: 50px;
	display: inline-flex;
	gap: 12px;
	justify-content: space-between;
}
@media (max-width: 75em) {
	.project__images {
		padding-top: 0;
	}
}
.project__images-item {
	display: inline-flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}
.project__images-item img {
	height: 305px;
	display: block;
	object-fit: cover;
	width: 100%;
	border-radius: 5px;
	cursor: zoom-in;
}
@media (max-width: 90em) {
	.project__images-item img {
		height: 250px;
	}
}
@media (max-width: 56.25em) {
	.project__images-item img {
		height: 130px;
	}
}
@media (max-width: 56.25em) {
	.project__images-item {
		font-size: 12px;
		gap: 10px;
	}
}
.project__bottom {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 40px;
	padding-top: 50px;
	align-items: center;
}
.project__bottom .button {
	display: flex;
	transition: all 0.3s ease 0s;
}
.project__bottom .button:active {
	transform: scale(0.7);
}

.thumbs__slider {
	width: 100%;
}
.pagination {
	width: auto !important;
	display: flex;
	transform: none !important;
}

.pagination span {
	background: #eb691f;
}

@media (min-width: 86em) {
	.form2 {
		margin-bottom: 5.9375rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.form2 {
		margin-bottom: calc(2.5rem + 3.4375 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.form2 {
		margin-bottom: 2.5rem;
	}
}
.form2__body {
	position: relative;
	padding: 70px 0;
	margin-top: 30px;
}
@media (max-width: 75em) {
	.form2__body {
		padding: 50px 0;
	}
}
@media (max-width: 56.25em) {
	.form2__body {
		padding: 25px 0;
	}
}
.form2__body2 {
	display: flex;
	position: relative;
	gap: 53px;
	align-items: center;
}
@media (max-width: 75em) {
	.form2__body2 {
		gap: 25px;
	}
}
@media (max-width: 56.25em) {
	.form2__body2 {
		flex-direction: column;
		gap: 20px;
		background: transparent;
		align-items: flex-start;
	}
}
.form2__name {
	padding: 25px 42px;
	max-width: 478px;
	color: #fff;
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	background: rgba(0, 0, 0, 0.2);
	border-left: 8px solid #eb691f;
}
@media (max-width: 64em) {
	.form2__name {
		font-size: 28px;
		padding: 15px 30px;
		max-width: 360px;
	}
}
@media (max-width: 56.25em) {
	.form2__name {
		border-left: 4px solid #eb691f;
		max-width: 100%;
		padding: 0;
		padding-left: 10px;
		background: transparent;
	}
}
@media (max-width: 43.75em) {
	.form2__name {
		font-size: 14px;
	}
}
@media (max-width: 75em) {
	.form2__image {
		max-width: 100px;
	}
}
@media (max-width: 56.25em) {
	.form2__image {
		display: none;
	}
}
.form2 .form1__body {
	margin-top: -100px;
	margin-bottom: -100px;
	border-bottom: 15px solid rgba(235, 105, 31, 0.8);
	border-top: 15px solid rgba(235, 105, 31, 0.8);
	max-width: 440px;
	flex-direction: column;
	background: #607080;
	color: #fff;
	padding: 55px 65px;
}
.form2 .form1__body .line {
	width: 100%;
	max-width: 100%;
	position: relative;
}
.form2 .form1__body .line p {
	color: #d0d0d0;
	font-size: 12px;
	font-style: normal;
	font-weight: 350;
	line-height: 100%;
	background: #607080;
	width: auto;
	display: block;
	position: absolute;
	top: -5px;
	left: 15px;
}
@media (max-width: 56.25em) {
	.form2 .form1__body .line p {
		color: #afafaf;
		background: #fff;
		border-radius: 4px;
		padding: 3px 5px;
		top: -9px;
	}
}
.form2 .form1__body .input {
	background: transparent;
	border: 1px solid #8f92a9;
	color: #d6d6d6;
	outline: none;
	border-radius: 5px;
}
.form2 .form1__body .input::-webkit-input-placeholder {
	color: #838383;
}
@media (max-width: 56.25em) {
	.form2 .form1__body .input {
		border-color: #fff !important;
		color: #fff;
	}
}
@media (max-width: 68.75em) {
	.form2 .form1__body {
		padding: 45px;
		margin: -80px 0;
	}
}
@media (max-width: 56.25em) {
	.form2 .form1__body {
		margin: 0;
		background: transparent;
		padding: 0;
		width: 100%;
		max-width: 100%;
		border: none !important;
	}
}
.form2 .form1__left {
	color: white;
	border: none;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
}
@media (max-width: 56.25em) {
	.form2 .form1__left {
		display: none;
	}
}
.form2 .form1__right {
	flex-direction: column;
	gap: 20px !important;
}
.form2 .form1__box-input {
	flex-direction: column;
}
@media (max-width: 56.25em) {
	.form2 .form1__box-input {
		flex-direction: row;
	}
}
.form2 .form1__text {
	color: #d0d0d0;
}
@media (max-width: 56.25em) {
	.form2 .form1__text {
		color: #fff;
	}
}
.form2 .form1__btn {
	color: #fff;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
@media (max-width: 50em) {
	.form2 .form1__btn {
		background: transparent;
	}
}

.footer {
	color: #fff;
	background: #35404b;
	padding: 45px 0;
}
.footer__container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 55px;
}
@media (max-width: 93.75em) {
	.footer__container {
		gap: 25px;
	}
}
@media (max-width: 56.25em) {
	.footer__container {
		flex-wrap: wrap;
		row-gap: 50px;
	}
}
@media (max-width: 41.25em) {
	.footer__container {
		gap: 20px;
	}
}
.footer__logo {
	margin-bottom: 30px;
	display: block;
}
/* @media (max-width: 93.75em) { */
.footer__logo img {
	/* max-width: 100px; */
	max-width: 300px;
	width: 100%;
}
/* } */
@media (max-width: 93.75em) {
	.footer__col {
		max-width: 25%;
	}
}
@media (max-width: 56.25em) {
	.footer__col {
		width: 30%;
	}
}
@media (max-width: 41.25em) {
	.footer__col {
		width: 45%;
		max-width: 100%;
	}
}
@media (max-width: 34.375em) {
	.footer__col:first-child {
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}
	.footer__col:last-child {
		width: 100%;
		justify-content: center;
		align-items: center;
	}
}
.footer__s43 {
	padding-bottom: 40px;
}
.footer__text {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 350;
	line-height: 100%;
	margin-bottom: 20px;

	max-width: 300px;
}
@media (max-width: 93.75em) {
	.footer__text {
		/* font-size: 14px;  */
	}
}
.footer__link {
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	display: block;
	line-height: normal;
}
.footer__link:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 93.75em) {
	.footer__link:not(:last-child) {
		margin-bottom: 10px;
	}
}
.footer__link:hover {
	text-decoration: underline;
}
@media (max-width: 93.75em) {
	.footer__link {
		font-size: 16px;
	}
}
.footer__line {
	display: flex;
	/* align-items: flex-start; */
	align-items: center;
	gap: 20px;
}
.footer__line img {
	margin-top: 10px;
}
@media (max-width: 37.5em) {
	.footer__line img {
		margin-top: 0;
	}
}
.footer__line:not(:last-child) {
	margin-bottom: 30px;
}
@media (max-width: 93.75em) {
	.footer__line {
		gap: 10px;
	}
}
@media (max-width: 56.25em) {
	.footer__line {
		max-width: 230px;
	}
}
@media (max-width: 41.25em) {
	.footer__line {
		max-width: 100%;
		margin-bottom: 10px !important;
		align-items: center;
	}
}
@media (max-width: 56.25em) {
	.footer .scol {
		flex-direction: row;
		display: flex;
		gap: 20px;
		max-width: 100%;
		justify-content: space-between;
		width: fit-content;
		width: 71%;
	}
}
@media (max-width: 41.25em) {
	.footer .scol {
		width: 100%;
		flex-direction: column;
		width: 45%;
	}
}
@media (max-width: 34.375em) {
	.footer .scol {
		width: 100%;
		padding-top: 20px;
	}
}
.footer__text3 {
	color: #fff;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
.footer__box .header__phone span {
	flex-shrink: 0;
}
.footer__box .header__phone {
	flex-shrink: 0;
}
@media (max-width: 62.5em) {
	.footer__box .header__phone {
		font-size: 18px;
		margin-bottom: 10px;
	}
}
.footer__modal {
	color: #a8a8a8;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: block;
	text-decoration: underline;
	transition: all 0.3s ease 0s;
}
.footer__modal:hover {
	transform: scale(1.1);
}
@media (max-width: 93.75em) {
	.footer__modal {
		font-size: 12px;
	}
}
.footer__text2 {
	color: #fff;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 93.75em) {
	.footer__text2 {
		font-size: 16px;
	}
}
.footer__c2 {
	display: flex;
	padding-top: 25px;
	text-align: center;
	border-top: 1px solid #424e5a;
	justify-content: center;
	width: 100%;
}
@media (max-width: 50em) {
	.footer__c2 {
		color: #8a8a8a;
		font-size: 14px;
		font-style: normal;
		padding-left: 0;
		font-weight: 350;
		line-height: 67.023%;
	}
}

.soc {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}
.soc a {
	display: block;
	padding: 2px;
	border-radius: 5px;
	border: 1px solid #fff;
	transition: all 0.3s ease 0s;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 26.104px;
	flex-shrink: 0;
}
.soc a:hover {
	transform: scale(1.1);
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.main {
	position: relative;
}
@media (min-width: 86em) {
	.main {
		padding-top: 14.375rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.main {
		padding-top: calc(6.25rem + 8.125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.main {
		padding-top: 6.25rem;
	}
}
@media (min-width: 86em) {
	.main {
		padding-bottom: 7.375rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.main {
		padding-bottom: calc(2.5rem + 4.875 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.main {
		padding-bottom: 2.5rem;
	}
}
@media (min-width: 86em) {
	.main {
		margin-bottom: 4.8125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.main {
		margin-bottom: calc(1.875rem + 2.9375 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.main {
		margin-bottom: 1.875rem;
	}
}
@media (max-width: 57.5em) {
	.main__image {
		max-width: 100px;
	}
}
@media (max-width: 50em) {
	.main__image {
		max-width: 80px;
	}
}
@media (max-width: 43.75em) {
	.main__image {
		max-width: 50px;
	}
}
@media (max-width: 31.25em) {
	.main__image {
		display: none;
	}
}
.main__top {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	color: #fff;
}
@media (max-width: 57.5em) {
	.main__top {
		flex-wrap: wrap;
		gap: 40px;
	}
}
@media (max-width: 50em) {
	.main__top {
		gap: 30px;
	}
}
.main__title-box {
	flex-shrink: 1;
}
@media (max-width: 57.5em) {
	.main__title-box {
		margin-right: auto;
	}
}
@media (max-width: 31.25em) {
	.main__title-box {
		max-width: 72%;
	}
}
.main__title {
	margin-bottom: 29px;
	font-size: 50px;
	position: relative;
	z-index: 2;
}
@media (max-width: 50em) {
	.main__title {
		margin-bottom: 15px;
	}
}
@media (max-width: 37.5em) {
	.main__title {
		font-size: 30px !important;
	}
}
@media (max-width: 31.25em) {
	.main__title {
		font-size: 28px !important;
	}
}
.main__title span {
	position: relative;
}
.main__title span::before {
	content: '';
	background: #ec6a1f;
	position: absolute;
	left: -28px;
	top: -14px;
	z-index: -1;
	width: 93px;
	height: 93px;
	border-radius:10px;
}
@media (max-width: 90.625em) {
	.main__title span::before {
		width: 80px;
		height: 80px;
		left: -10px;
	}
}
@media (max-width: 50em) {
	.main__title span::before {
		height: 61px;
		width: 61px;
		left: -5px;
		top: 5px;
	}
}
@media (max-width: 37.5em) {
	.main__title span::before {
		height: 48px;
		width: 48px;
		left: -8px;
		top: -5px;
	}
}
@media (max-width: 23.125em) {
	.main__title span::before {
		height: 41px !important;
		width: 45px !important;
		top: 0px;
		left: -10px;
	}
}
@media (max-width: 62.5em) {
	.main__title span {
		padding-bottom: 0;
	}
}
@media (max-width: 31.25em) {
	.main__title {
		margin-bottom: 35px !important;
	}
}
.main__escription {
	max-width: 530px;
	color: #fff;
	text-align: justify;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-right: 100px;
}
@media (max-width: 93.75em) {
	.main__escription {
		margin-right: 50px;
	}
}
@media (max-width: 81.25em) {
	.main__escription {
		margin-right: 0;
	}
}
@media (max-width: 50em) {
	.main__escription {
		font-size: 18px;
	}
}
@media (max-width: 31.25em) {
	.main__escription {
		font-size: 16px;
	}
}
.breadcrumbs {
	gap: 15px;
	color: #d1d1d1;
	font-size: 20px;
	font-style: normal;
	flex-wrap: wrap;
	font-weight: 350;
	line-height: normal;
	display: flex;
}
@media (max-width: 50em) {
	.breadcrumbs {
		font-size: 14px;
		gap: 10px;
		flex-wrap: wrap;
	}
}
.breadcrumbs a:hover {
	text-decoration: underline;
}

.contacts {
	margin-bottom: 10px;
}
.contacts__container {
	display: flex;
	gap: 100px;
	align-items: flex-start;
}
@media (max-width: 81.25em) {
	.contacts__container {
		gap: 40px;
	}
}
@media (max-width: 56.25em) {
	.contacts__container {
		gap: 20px;
		flex-direction: column;
	}
}
.contacts__title-b {
	color: #fff;
	font-size: 35px;
	font-family: Inter;
	font-style: normal;
	font-weight: 900;
	line-height: 127.523%;
	margin-bottom: 15px;
}
@media (max-width: 56.25em) {
	.contacts__title-b {
		font-size: 28px;
		margin-bottom: 0;
	}
}
.contacts__title-sub-b {
	color: #ececec;
	font-size: 20px;
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 15px;
}
@media (max-width: 56.25em) {
	.contacts__title-sub-b {
		font-size: 16px;
	}
}
@media (min-width: 86em) {
	.contacts__item {
		margin-bottom: 3.125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.contacts__item {
		margin-bottom: calc(1.5625rem + 1.5625 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.contacts__item {
		margin-bottom: 1.5625rem;
	}
}
.contacts__iten-top {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 23px;
}
@media (max-width: 75em) {
	.contacts__iten-top {
		gap: 10px;
		margin-bottom: 20px;
	}
}
.contacts__item-title {
	color: #5a6775;
	font-size: 30px;
	font-family: Inter;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
@media (max-width: 75em) {
	.contacts__item-title {
		font-size: 20px;
	}
}
.contacts__item-body {
	padding-left: 50px;
}
.contacts__item-line {
	align-items: center;
	display: flex;
	gap: 18px;
	color: #3c3c3c;
	font-size: 22px;
	font-family: Inter;
	position: relative;
	z-index: 32;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contacts__item-line:not(:last-child) {
	margin-bottom: 30px;
}
@media (max-width: 81.25em) {
	.contacts__item-line:not(:last-child) {
		margin-bottom: 20px;
	}
}
.contacts__imp .contacts__item-line {
	gap: 120px;
}
@media (max-width: 81.25em) {
	.contacts__imp .contacts__item-line {
		gap: 50px;
	}
}
@media (max-width: 43.75em) {
	.contacts__imp .contacts__item-line {
		gap: 20px;
	}
}
.contacts__item-line p {
	width: 45%;
}
@media (max-width: 43.75em) {
	.contacts__item-line p {
		width: 50%;
	}
}
@media (max-width: 81.25em) {
	.contacts__item-line {
		font-size: 18px;
	}
}
@media (max-width: 56.25em) {
	.contacts__item-line {
		font-size: 16px;
	}
}
.contacts__link:hover {
	text-decoration: underline;
}
.contacts__item-soc {
	display: flex;
	gap: 15px;
}
.contacts__item-soc a {
	border-radius: 44px;
	border: 1px solid #ec6a1f;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	transition: all 0.3s ease 0s;
}
.contacts__item-soc a:hover {
	transform: scale(1.1);
}
.contacts__item-soc img {
	filter: brightness(0);
}
.contacts .form1__right {
	max-width: 640px;
	flex-direction: column;
	gap: 20px !important;
	display: flex;
	align-items: center;
	padding: 95px 125px;
	position: relative;
}
.contacts .form1__right .line {
	width: 100%;
	max-width: 100%;
	position: relative;
}
.contacts .form1__right .line p {
	color: #fff;
	font-size: 12px;
	font-style: normal;
	font-weight: 350;
	line-height: 100%;
	background: #eb691f;
	width: auto;
	display: block;
	position: absolute;
	top: -5px;
	left: 15px;
}
@media (max-width: 56.25em) {
	.contacts .form1__right .line p {
		color: #fff;
		border-radius: 4px;
		padding: 2px 4px;
		top: -7px;
	}
}
.contacts .form1__right .input {
	background: transparent;
	border: 1px solid #fff;
	color: #d6d6d6;
	width: 100%;
	outline: none;
	padding: 20px 30px;
	border-radius: 5px;
}
.contacts .form1__right .input::-webkit-input-placeholder {
	color: #fff;
}
@media (max-width: 56.25em) {
	.contacts .form1__right .input::-webkit-input-placeholder {
		color: #fff;
	}
}
@media (max-width: 56.25em) {
	.contacts .form1__right .input {
		border-color: #fff !important;
		color: #fff;
		padding: 15px;
		font-size: 12px;
	}
}
.contacts .form1__right .bg {
	border-radius: 15px;
}
@media (max-width: 81.25em) {
	.contacts .form1__right {
		padding: 50px;
	}
}
@media (max-width: 68.75em) {
	.contacts .form1__right {
		padding: 45px;
	}
}
@media (max-width: 56.25em) {
	.contacts .form1__right {
		margin: 0;
		background: transparent;
		padding: 20px;
		width: 100%;
		max-width: 100%;
		border: none !important;
	}
}
.contacts .form1__box-input {
	flex-direction: column;
}
@media (max-width: 56.25em) {
	.contacts .form1__box-input {
		flex-direction: row;
	}
}
.contacts .form1__text {
	color: #ffffff;
}
@media (max-width: 56.25em) {
	.contacts .form1__text {
		color: #fff;
	}
}
.contacts .form1__text img {
	filter: brightness(0) invert(1);
}
.contacts .form1__btn {
	color: #fff;
	width: 100%;
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}
.contacts .form1__btn .BorderTopBottom:before {
	background: white !important;
}
.contacts .form1__btn .BorderTopBottom:after {
	background: white !important;
}
.contacts .form1__btn .BorderLeftRight:before {
	background: white !important;
}
.contacts .form1__btn .BorderLeftRight:after {
	background: white !important;
}
.contacts .form1__btn .BorderTopBottom:before {
	background: white;
}

.klaus {
	position: absolute;
	left: -120px;
	top: 30px;
}
@media (max-width: 81.25em) {
	.klaus {
		display: none;
	}
}

.serv .BorderTopBottom:before {
	background: white !important;
}
@media (max-width: 62.5em) {
	.serv .BorderTopBottom:before {
		background: #ed6b20 !important;
	}
}
.serv .BorderTopBottom:after {
	background: white !important;
}
@media (max-width: 62.5em) {
	.serv .BorderTopBottom:after {
		background: #ed6b20 !important;
	}
}
.serv .BorderLeftRight:before {
	background: white !important;
}
@media (max-width: 62.5em) {
	.serv .BorderLeftRight:before {
		background: #ed6b20 !important;
	}
}
.serv .BorderLeftRight:after {
	background: white !important;
}
@media (max-width: 62.5em) {
	.serv .BorderLeftRight:after {
		background: #ed6b20 !important;
	}
}
.serv .BorderTopBottom:before {
	background: white !important;
}
@media (max-width: 62.5em) {
	.serv .BorderTopBottom:before {
		background: #ed6b20 !important;
	}
}
@media (min-width: 86em) {
	.serv {
		margin-bottom: 8.75rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.serv {
		margin-bottom: calc(2.5rem + 6.25 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.serv {
		margin-bottom: 2.5rem;
	}
}
.serv__body {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.serv__item {
	overflow: hidden;
	border-radius: 15px;
	text-align: center;
	display: flex;
	min-height: 460px;
	width: 48%;
	justify-content: center;
	align-items: center;
	padding: 52px 84px;
	position: relative;
}
.serv__item::before {
	content: '';
	position: absolute;
	left: 0;
	transition: all 0.3s ease 0s;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(96, 112, 128, 0.8);
}
@media (max-width: 62.5em) {
	.serv__item::before {
		display: none;
	}
}
.serv__item:hover {
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}
.serv__item:hover::before {
	content: '';
	opacity: 0;
	visibility: hidden;
}
.serv__item:hover .serv__i-title::before {
	content: '';
	width: 115%;
	height: 100%;
	z-index: -1;
	position: absolute;
	left: -84px;
	border-radius: 0px 15px 15px 0px;
	background: rgba(236, 106, 31, 0.8);
}
@media (max-width: 78.125em) {
	.serv__item:hover .serv__i-title::before {
		left: -25px;
		width: 100%;
	}
}
.serv__item:hover .serv__i-text {
	display: block;
}
.serv__item:hover .serv__btn {
	display: block;
}
@media (max-width: 78.125em) {
	.serv__item {
		padding: 25px;
	}
}
@media (max-width: 62.5em) {
	.serv__item {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}
@media (max-width: 43.75em) {
	.serv__item {
		width: 100%;
	}
}
.serv__i-title {
	color: #fff;
	font-size: 35px;
	font-style: normal;
	font-weight: 500;
	padding: 21px 34px;
	padding-left: 0;
	position: relative;
	line-height: 100%;
	display: flex;
	align-items: center;
}
@media (max-width: 62.5em) {
	.serv__i-title::before {
		content: '';
		width: 90%;
		height: 100%;
		z-index: -1;
		position: absolute;
		left: -84px;
		border-radius: 0px 15px 15px 0px;
		background: rgba(236, 106, 31, 0.8);
	}
}
@media (max-width: 62.5em) and (max-width: 78.125em) {
	.serv__i-title::before {
		left: -25px;
		width: 100%;
	}
}
@media (max-width: 37.5em) {
	.serv__i-title {
		font-size: 28px;
		padding: 15px 20px;
	}
}
.serv__i-text {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	max-width: 463px;
	margin: 24px 0;
	line-height: normal;
	display: none;
}
@media (max-width: 62.5em) {
	.serv__i-text {
		display: block;
	}
}
.serv__btn {
	color: #fff;
	width: 100%;
	max-width: 230px;
	text-align: center;
	display: none;
}
.serv__btn:hover {
	background: #ec6a1f;
}
@media (max-width: 62.5em) {
	.serv__btn {
		display: block;
	}
}

@media (min-width: 86em) {
	.news {
		margin-bottom: 6.3125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.news {
		margin-bottom: calc(2.5rem + 3.8125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.news {
		margin-bottom: 2.5rem;
	}
}
.news__container {
	max-width: 1200px;
}
.news__item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	position: relative;
	/* gap: 35px; */
}
.news__item:first-child .news__i-image {
	/* border-radius: 20px 0 0 0;
	border: 1px solid #dbdbdb;
	border-bottom: none;
	border-right: none;
	margin-bottom: auto;
	padding-bottom: 0; */
}
@media (max-width: 75em) {
	.news__item:first-child .news__i-image {
		padding-bottom: 20px;
	}
}
/* .news__item:first-child .news__i-image::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -200px;
	height: 1px;
	width: 100%;
	background: #dbdbdb; */
/* } */
/* @media (max-width: 90em) {
	.news__item:first-child .news__i-image::before {
		height: 0.5px;
		top: -0.5px;
	}
}
@media (max-width: 81.25em) {
	.news__item:first-child .news__i-image::before {
		display: none;
	}
} */
.news__item .news__elips {
	position: absolute;
	left: -5.5px;
	width: 10px;
	display: block;
	height: auto;
	bottom: 17.5%;
	z-index: 1;
}
.news__item:last-child .news__i-image {
	/* border-radius: 0 0 20px 0;
	border: 1px solid #dbdbdb;
	border-top: none;
	border-left: none;
	padding-bottom: 30px;
	margin-top: auto;
	padding-top: 0; */
}
@media (max-width: 75em) {
	.news__item:last-child .news__i-image {
		padding-bottom: 20px;
	}
}
/* .news__item:last-child .news__i-image::before {
	content: '';
	position: absolute;
	bottom: -0.5px;
	left: -200px;
	height: 1px;
	width: 100%;
	background: #dbdbdb;
} */
@media (max-width: 90em) {
	.news__item:last-child .news__i-image::before {
		height: 0.5px;
	}
}
@media (max-width: 81.25em) {
	.news__item:last-child .news__i-image::before {
		display: none;
	}
}
.news__item:last-child .news__elips {
	position: absolute;
	right: -6px;
	width: 10px;
	display: block;
	height: 10px;
	top: -10px;
}
.news__item:not(:last-child) {
	margin-bottom: 25px;
}
.news__item:nth-child(even) {
	flex-direction: row-reverse;
}
.news__item:nth-child(even) .news__item__left-block__before {
	left: unset;
	right: -1;
}

/* .news__item:nth-child(even) .news__item-body {
	color: #5a6775 !important;
	background-image: url('../img/nbg2.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
.news__item:nth-child(even) .news__item-body:hover {
	color: #fff !important;
	background-image: url('../img/nbg4.png') !important;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff; */
/* } */
/* @media (max-width: 75em) {
	.news__item {
		gap: 20px;
	}
} */
/* .news__elips {
	display: none;
} */
@media (max-width: 56.25em) {
	.news__elips {
		display: none !important;
	}
}
.news__i-image {
	display: block;
	position: relative;
	width: 100%;
	max-width: 255px;
	padding: 30px;
}
.news__i-image .image {
	width: 100%;
	border-radius: 16px;
}
@media (max-width: 56.25em) {
	.news__i-image .image {
		height: 200px;
		object-fit: cover;
	}
}
@media (max-width: 75em) {
	.news__i-image {
		max-width: 180px;
		padding: 20px;
	}
}
@media (max-width: 56.25em) {
	.news__i-image {
		max-width: 500px;
		border: none !important;
		padding: 0px !important;
		margin-bottom: 15px !important;
	}
}
@media (max-width: 56.25em) {
	.news__date {
		display: flex;
		align-items: center;
		gap: 12px;
	}
}
.news__yar {
	color: #797979;
	font-size: 40px;
	font-style: normal;
	font-weight: 350;
	line-height: normal;
}
@media (max-width: 75em) {
	.news__yar {
		font-size: 28px;
	}
}
.news__time {
	color: #eb691f;
	font-size: 20px;
	font-style: normal;
	font-weight: 350;
	line-height: normal;
}
@media (max-width: 75em) {
	.news__time {
		flex-shrink: 0;
		font-size: 16px;
	}
}
.news__item-body {
	color: #797979;
	width: 100%;
	max-width: 783px;
	padding: 50px 56px;
	/* background-image: url('../img/nbg3.svg'); */
	/* background-size: cover; */
	/* background-repeat: no-repeat; */
	min-height: 293px;

	position: relative;
	z-index: 1;

	margin-left: -20px;
}
.news__item-body__plain-img {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 1px;

	z-index: -1;

	transition: filter 0.3s ease-in-out;
	filter: opacity(1);

	width: 100%;
	height: 100%;
}

.news__item-body__colorful-img {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 1px;

	z-index: -1;

	transition: filter 0.3s ease-in-out;
	filter: opacity(0);

	width: 100%;
	height: 100%;
}

.news__item-body--resetTop .news__item-body__plain-img,
.news__item-body--resetTop .news__item-body__colorful-img {
	top: 0;
}

.news__item:hover .news__item-body__plain-img {
	filter: opacity(0);
}
.news__item:hover .news__item-body__colorful-img {
	/* z-index: 1; */
	filter: opacity(1);
}
.news__item:hover .news__i-text,
.news__item:hover .news__i-title {
	color: #fff;
}
.news__item-body:hover {
	/* background-image: url('../img/nbg1.png') !important;
	background-size: cover;
	background-repeat: no-repeat; */
	/* color: #fff !important; */
}
.news__item__left-block {
	display: flex;
	width: 70%;
	gap: 11%;
	border-radius: 20px 0 0 0;
	border: 1px solid #dbdbdb;
	border-bottom: none;
	border-right: none;
	margin-bottom: auto;
	margin-right: -17px;
	margin-top: 1px;
	align-items: center;

	position: relative;
}
.news__item__left-block__before {
	position: absolute;
	left: -1;
	bottom: 0;

	z-index: 1;

	background-color: #fff;

	width: 20px;
	height: 20%;
}

.news__item:nth-child(even) {
	/* flex-direction: row-reverse; */
}
.news__item:nth-child(even) .news__item__left-block {
	flex-direction: row-reverse;
	border-radius: 0 20px 0 0;
	border-right: 1px solid #dbdbdb;
	border-left: none;
	margin-right: 0;
	margin-left: -16px;
	margin-bottom: auto;
}
@media (max-width: 75em) {
	.news__item-body {
		/* padding: 30px 25px; */
		max-width: 100%;
		/* min-height: 225px; */
	}
	.news__item__left-block {
		width: 45%;
	}
}
@media (max-width: 1140px) {
	.news__item-body {
		/* padding: 30px 25px; */
		max-width: 65%;
		/* min-height: 225px; */
	}
}
@media (max-width: 1010px) {
	.news__item-body {
		/* padding: 30px 25px; */
		max-width: 60%;
		/* min-height: 225px; */
	}
}
@media (max-width: 56.25em) {
	.news__item-body {
		margin-top: 20px;
		min-height: 1px;
		background: transparent !important;
		border: 1px solid rgba(39, 39, 39, 0.6509803922);
		border-radius: 16px;
		text-align: center;
	}
}
.news__i-title {
	display: block;
	margin-bottom: 17px;
	font-size: 30px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;

	transition: all 0.3s ease-in;
}
@media (max-width: 75em) {
	.news__i-title {
		font-size: 28px;
		margin-bottom: 15px;
	}
}
.news__i-text {
	display: block;
	text-align: justify;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;

	transition: all 0.3s ease-in;
}
@media (max-width: 75em) {
	.news__i-text {
		font-size: 14px;
	}
}
.news__btn {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	max-width: 310px;
}
.news__btn p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
@media (max-width: 62.5em) {
	.news__btn p svg {
		filter: brightness(0) invert(1);
	}
}

.project__title {
	color: #5a6775;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: flex;
	justify-content: center;
	gap: 17px;
	align-items: center;
}
@media (min-width: 86em) {
	.project__title {
		margin-bottom: 5.75rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.project__title {
		margin-bottom: calc(1.875rem + 3.875 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.project__title {
		margin-bottom: 1.875rem;
	}
}
@media (max-width: 43.75em) {
	.project__title {
		font-size: 28px;
	}
}
@media (max-width: 43.75em) {
	.project__title {
		font-size: 24px;
		gap: 10px;
	}
}
.project__pbody {
	display: block;
}
.project__item {
	display: flex;
	position: relative;
}
@media (min-width: 86em) {
	.project__item:not(:last-child) {
		margin-bottom: 5.25rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.project__item:not(:last-child) {
		margin-bottom: calc(2.1875rem + 3.0625 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.project__item:not(:last-child) {
		margin-bottom: 2.1875rem;
	}
}
.project__item:nth-child(even) {
	flex-direction: row-reverse;
}
.project__item:nth-child(even) .left {
	display: block;
}
.project__item:nth-child(even) .right {
	display: none;
}
.project__item:nth-child(odd) .right {
	display: block;
}
.project__item:nth-child(odd) .left {
	display: none;
}
@media (max-width: 43.75em) {
	.project__item {
		display: block;
	}
}
.project__image {
	display: block;
	width: 100%;
	pointer-events: none;
	/* max-width: 460px; */
	height: 100%;
}
.project__image img {
	border-radius: 15px;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
@media (max-width: 43.75em) {
	.project__image {
		width: 100%;
		max-width: 100%;
		height: 250px;
	}
}
.project__box {
	border-radius: 0px 15px 15px 0px;
	background: #fbfdff;
	max-width: 695px;
}
@media (min-width: 86em) {
	.project__box {
		padding: 3.625rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.project__box {
		padding: calc(0.625rem + 3 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.project__box {
		padding: 0.625rem;
	}
}
.project__i-title {
	margin-bottom: 20px;
	color: #000;
	text-align: justify;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 56.25em) {
	.project__i-title {
		font-size: 20px;
		margin-bottom: 10px;
	}
}
.project__i-text {
	margin-bottom: 30px;
	color: #575757;
	text-align: justify;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 75em) {
	.project__i-text {
		margin-bottom: 15px;
		font-size: 15px;
	}
}
.project__list {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 350;
	/*line-height: 60%;*/
}
.project__list li {
	display: flex;
	align-items: center;
	gap: 18px;
}
.project__list li:not(:last-child) {
	margin-bottom: 15px;
}
@media (max-width: 50em) {
	.project__list li:not(:last-child) {
		margin-bottom: 10px;
	}
}
@media (max-width: 50em) {
	.project__list li {
		gap: 10px;
	}
}
@media (max-width: 50em) {
	.project__list {
		font-size: 15px;
	}
}
.project__number {
	margin: auto;
	margin-left: 0;
	margin-right: 0;
}
@media (max-width: 75em) {
	.project__number span img {
		max-width: 70px;
	}
}
@media (max-width: 43.75em) {
	.project__number {
		position: absolute;
		right: 0;
		top: 0;
		padding: 5px;
		border-radius: 5px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
		background: #fff;
	}
}
.project .right {
	display: none;
}
@media (max-width: 75em) {
	.project .right {
		max-width: 80px;
	}
}
.project .left {
	display: none;
}
@media (max-width: 75em) {
	.project .left {
		max-width: 80px;
	}
}

@media (min-width: 86em) {
	.equipment {
		margin-bottom: 5.5625rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.equipment {
		margin-bottom: calc(1.875rem + 3.6875 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.equipment {
		margin-bottom: 1.875rem;
	}
}
.equipment__box {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
@media (max-width: 75em) {
	.equipment__box {
		gap: 15px;
	}
}
@media (max-width: 43.75em) {
	.equipment__box {
		gap: 10px;
	}
}
.equipment__item {
	width: 30%;
	position: relative;
	min-height: 352px;
	overflow: hidden;
	padding: 10px 24px;
	color: #fff;
	font-size: 25px;
	font-family: Circe;
	font-style: normal;
	transition: all 0.3s ease 0s;
	font-weight: 350;
	line-height: normal;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: 15px;
}
.equipment__item:hover .bg {
	transition: all 0.3s ease 0s;
	transform: scale(1.2);
	border-radius: 15px;
	border-radius: 15px;
}
@media (max-width: 43.75em) {
	.equipment__item:hover .bg {
		transform: none;
	}
}
.equipment__item:hover .equipment__i-body {
	left: 0;
	transition: all 0.3s ease 0s;
}
.equipment__item:hover .equipment__i-name {
	opacity: 0;
	transition: all 0.3s ease 0s;
}
@media (max-width: 75em) {
	.equipment__item {
		width: 31.5%;
		min-height: 300px;
	}
}
@media (max-width: 62.5em) {
	.equipment__item {
		padding: 0;
		display: block;
		padding: 20px 19px;
		border-radius: 15px;
		background: rgba(182, 182, 182, 0.9);
		min-height: 1px;
	}
}
@media (max-width: 43.75em) {
	.equipment__item {
		width: 48%;
		padding: 15px;
	}
}
@media (max-width: 28.125em) {
	.equipment__item {
		width: 100%;
	}
}
.equipment__i-name {
	position: relative;
	margin-top: auto;
}
@media (max-width: 62.5em) {
	.equipment__i-name {
		margin-top: 0;
	}
}
@media (max-width: 62.5em) {
	.equipment__i-name {
		font-size: 18px;
		margin-bottom: 12px;
	}
}
.equipment__i-body {
	position: absolute;
	height: 100%;
	width: 75%;
	left: -100%;
	top: 0;
	padding: 20px 19px;
	border-radius: 15px 0px 0px 15px;
	background: rgba(236, 106, 31, 0.9);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	overflow-x: hidden;
	overflow-y: auto;
}
.equipment__i-body::-webkit-scrollbar {
	width: 4px; /* ширина scrollbar */
}
.equipment__i-body::-webkit-scrollbar-track {
	background: rgb(255, 255, 255); /* цвет дорожки */
}
.equipment__i-body::-webkit-scrollbar-thumb {
	border-radius: 20px; /* закругления плашки */
	border: 3px solid orange; /* padding вокруг плашки */
}
.equipment__i-body img {
	max-width: 112px;
}
@media (max-width: 62.5em) {
	.equipment__i-body img {
		display: none;
	}
}
.equipment__i-body p {
	color: #fff;
	font-size: 20px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 100%;
}
@media (max-width: 62.5em) {
	.equipment__i-body p {
		font-size: 14px;
	}
}
@media (max-width: 62.5em) {
	.equipment__i-body {
		width: 100%;
		position: static;
		width: 100%;
		display: block;
		height: 100%;
		padding: 0;
		overflow: hidden !important;
		border-radius: 0;
		background: transparent;
	}
}
.equipment__fon {
	background: #f9fafc;
	padding: 55px 0;
}
@media (min-width: 86em) {
	.equipment__fon {
		margin-bottom: 2.625rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.equipment__fon {
		margin-bottom: calc(1.25rem + 1.375 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.equipment__fon {
		margin-bottom: 1.25rem;
	}
}
@media (max-width: 75em) {
	.equipment__fon {
		padding: 20px 0;
	}
}
.equipment .tabs__navigation {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}
@media (max-width: 37.5em) {
	.equipment .tabs__navigation {
		justify-content: space-around;
	}
}
.equipment .tabs__title {
	padding: 14px 40px;
	border-radius: 5px;
	border: 1px solid #e4e4e4;
	background: #fff;
	text-align: center;
	font-size: 16px;
	max-width: 260px;
	font-family: Circe;
	font-style: normal;
	width: 100%;
	font-weight: 400;
	line-height: 100%;
	transition: all 0.3s ease 0s;
}
.equipment .tabs__title:hover {
	border-radius: 5px;
	border: 1px solid #ec6a1f;
	background: #ec6a1f;
	color: #fff;
}
.equipment .tabs__title._tab-active {
	border-radius: 5px;
	border: 1px solid #ec6a1f;
	background: #ec6a1f;
	color: #fff;
}
.equipment .tabs__title:active {
	transform: scale(0.9);
}
@media (max-width: 75em) {
	.equipment .tabs__title {
		padding: 10px 25px;
		font-size: 14px;
		max-width: 220px;
	}
}
@media (max-width: 62.5em) {
	.equipment .tabs__title {
		max-width: 32%;
	}
}
@media (max-width: 37.5em) {
	.equipment .tabs__title {
		width: 48%;
		max-width: 100%;
	}
}
.equipment .bg {
	border-radius: 15px;
}
@media (max-width: 62.5em) {
	.equipment .bg {
		position: static;
		height: auto;
		margin-bottom: 10px;
	}
}

[data-fancybox] {
	cursor: zoom-in;
}

.air2 {
	position: fixed;
	right: 30px;
	bottom: 30px;
}
@media (max-width: 37.5em) {
	.air2 img {
		max-width: 30px;
	}
}

@media (min-width: 86em) {
	.about {
		padding-top: 13.5625rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.about {
		padding-top: calc(5rem + 8.5625 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.about {
		padding-top: 5rem;
	}
}
@media (min-width: 86em) {
	.about {
		margin-bottom: 4.125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.about {
		margin-bottom: calc(1.875rem + 2.25 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.about {
		margin-bottom: 1.875rem;
	}
}
.about__body {
	display: flex;
	gap: 42px;
	align-items: flex-start;
}
@media (min-width: 86em) {
	.about__body {
		margin-bottom: 2.375rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.about__body {
		margin-bottom: calc(1.5625rem + 0.8125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.about__body {
		margin-bottom: 1.5625rem;
	}
}
@media (max-width: 68.75em) {
	.about__body {
		gap: 18px;
	}
}
@media (max-width: 61.25em) {
	.about__body {
		flex-direction: column;
		align-items: center;
	}
	/* .about__body__left {
		display: flex;
		flex-direction: column;
		align-items: center;
	} */
}
.about__text {
	color: #595959;
	font-size: 22px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 10px;
}
@media (max-width: 75em) {
	.about__text {
		font-size: 18px;
	}
}
.about .image {
	max-width: 500px;
}
@media (max-width: 68.75em) {
	.about .image {
		max-width: 350px;
	}
}
@media (max-width: 61.25em) {
	.about .image {
		width: 100%;
		max-width: 800px;
		margin: 0 auto;
		display: block;
	}
}
.about__bottom {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	gap: 10px;
}
.about__bottom p {
	color: #363636;
	font-size: 25px;
	font-family: Circe;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
@media (max-width: 75em) {
	.about__bottom p {
		font-size: 18px;
	}
}
@media (max-width: 37.5em) {
	.about__bottom p {
		font-size: 14px;
	}
}
@media (max-width: 43.75em) {
	.about__bottom img {
		max-width: 100px;
	}
}
.about .btn {
	margin-left: 80px;
}
@media (max-width: 68.75em) {
	.about .btn {
		margin-left: 50px;
	}
}
@media (max-width: 61.25em) {
	.about .btn {
		/* margin: 0 auto; */
		display: block;
	}
}

.story {
	background: #fbfdff;
	box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.08);
	padding: 72px 0;
}
@media (max-width: 75em) {
	.story {
		padding: 45px 0;
	}
}
.story .project__title {
	justify-content: flex-start;
	margin-bottom: 55px !important;
}
@media (max-width: 75em) {
	.story .project__title {
		margin-bottom: 35px !important;
	}
}

@media (min-width: 86em) {
	.prem {
		margin-bottom: 6rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.prem {
		margin-bottom: calc(1.875rem + 4.125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.prem {
		margin-bottom: 1.875rem;
	}
}
.prem__top {
	display: flex;
	justify-content: space-between;
	gap: 45px;
}
@media (min-width: 86em) {
	.prem__top {
		margin-bottom: 6rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.prem__top {
		margin-bottom: calc(1.875rem + 4.125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.prem__top {
		margin-bottom: 1.875rem;
	}
}
@media (max-width: 82.5em) {
	.prem__top {
		gap: 22px;
	}
}
@media (max-width: 56.25em) {
	.prem__top {
		flex-wrap: wrap;
	}
}
.prem__item {
	max-width: 32%;
	display: flex;
	gap: 14px;
	align-items: center;
}

@media (max-width: 82.5em) {
	/* .prem__item img {
		max-width: 80px;
	} */
}
.prem__item p {
	color: #363636;
	font-size: 25px;
	font-family: Circe;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
@media (max-width: 82.5em) {
	.prem__item p {
		font-size: 18px;
	}
}
.prem__item span {
	color: #363636;
	font-size: 18px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
@media (max-width: 82.5em) {
	.prem__item span {
		font-size: 14px;
	}
}
@media (max-width: 56.25em) {
	.prem__item {
		width: 45%;
		max-width: 100%;
	}
}
@media (max-width: 37.5em) {
	.prem__item {
		width: 100%;
	}
}
.hero__t2 {
	margin-top: 18px;
	color: #fff;
	text-align: justify;
	font-size: 20px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	max-width: 655px;
}
@media (min-width: 86em) {
	.hero__t2 {
		margin-bottom: 3.125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.hero__t2 {
		margin-bottom: calc(0.9375rem + 2.1875 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.hero__t2 {
		margin-bottom: 0.9375rem;
	}
}
@media (max-width: 75em) {
	.hero__t2 {
		font-size: 15px;
	}
}

@media (min-width: 86em) {
	.quiz {
		padding-top: 3.75rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.quiz {
		padding-top: calc(1.25rem + 2.5 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.quiz {
		padding-top: 1.25rem;
	}
}
@media (min-width: 86em) {
	.quiz {
		margin-bottom: 7.5rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.quiz {
		margin-bottom: calc(3.125rem + 4.375 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.quiz {
		margin-bottom: 3.125rem;
	}
}
.quiz__container {
	position: relative;
}
.quiz__bbottom {
	background: #f0f7fe;
	height: 144px;
}
.quiz__title {
	color: #5a6775 !important;
	font-size: 40px;
	font-family: Circe;
	font-style: normal;
	font-weight: 700;
	line-height: 127.523%;
	letter-spacing: 1px;
	max-width: 100%;
	margin-bottom: 40px;
}
.quiz__title span {
	color: #fff;
}
@media (max-width: 62.5em) {
	.quiz__title {
		font-size: 30px;
	}
}
@media (max-width: 50em) {
	.quiz__title {
		font-size: 28px;
		margin-bottom: 30px;
	}
}
.quiz__wrap {
	display: flex;
	position: relative;
	margin-bottom: -50px;
	margin-left: 50px;
}
@media (max-width: 81.25em) {
	.quiz__wrap {
		margin-left: 0;
	}
}
.quiz__body {
	border-radius: 15px;
	background: #fff;
	box-shadow: 1px 4px 13px 3px rgba(0, 0, 0, 0.16);
	position: relative;
	display: flex;
	width: 100%;
	position: relative;
	max-width: 1200px;
}
@media (max-width: 40em) {
	.quiz__body {
		flex-direction: column-reverse;
	}
}
.quiz__left {
	width: 70%;
	padding: 40px 46px;
	position: relative;
	padding-bottom: 53px;
}
@media (max-width: 62.5em) {
	.quiz__left {
		padding: 25px 30px;
	}
}
@media (max-width: 40em) {
	.quiz__left {
		width: 100%;
	}
}
@media (max-width: 31.25em) {
	.quiz__left {
		padding: 15px;
	}
}
.quiz__l-title {
	margin-bottom: 16px;
	color: #5a6775;
	font-size: 25px;
	font-family: Circe;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	max-width: 610px;
}
@media (max-width: 62.5em) {
	.quiz__l-title {
		font-size: 18px;
	}
}
.quiz__l-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	min-height: 380px;
	padding: 47px 54px;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
}
@media (max-width: 62.5em) {
	.quiz__l-body {
		padding: 25px 20px;
	}
}
@media (max-width: 31.25em) {
	.quiz__l-body {
		padding: 15px;
		position: relative;
	}
}
.quiz__l-body-title {
	color: #5a6775;
	font-size: 20px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
@media (min-width: 86em) {
	.quiz__l-body-title {
		margin-bottom: 2.3125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.quiz__l-body-title {
		margin-bottom: calc(1.25rem + 1.0625 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.quiz__l-body-title {
		margin-bottom: 1.25rem;
	}
}
@media (max-width: 62.5em) {
	.quiz__l-body-title {
		font-size: 18px;
	}
}
.quiz__inputs {
	/* display: flex;
  gap: 30px;
  flex-wrap: wrap; */

	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 188px));
	grid-gap: 30px;
}
@media (max-width: 62.5em) {
	.quiz__inputs {
		/* gap: 15px; */
	}
}
@media (max-width: 43.75em) {
	.quiz__inputs {
		/* gap: 10px; */
	}
}
.quiz__l-bottom {
	display: flex;
	align-items: center;
	gap: 24px;
}
@media (min-width: 86em) {
	.quiz__l-bottom {
		padding-top: 2.5rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.quiz__l-bottom {
		padding-top: calc(1.25rem + 1.25 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.quiz__l-bottom {
		padding-top: 1.25rem;
	}
}
.quiz__l-bottom button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 10px;
	width: 100%;
	max-width: 216px;
	padding: 17px;
	font-size: 16px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 0%;
	transition: all 0.3s ease 0s;
}
.quiz__l-bottom button:hover {
	transform: scale(1.1);
}
.quiz__l-bottom button:active {
	transform: scale(0.8);
}
@media (max-width: 62.5em) {
	.quiz__l-bottom button {
		padding: 12px;
		font-size: 14px;
		max-width: 150px;
	}
}
.quiz__l-bottom .prev {
	background: #35404b;
	color: #fff;
}
.quiz__l-bottom .next {
	border-radius: 10px;
	background: #ed6b20;
	color: #fff;
}
@media (max-width: 62.5em) {
	.quiz__l-bottom {
		gap: 15px;
	}
}
.quiz__right {
	width: 30%;
	position: relative;
	padding: 28px;
}
@media (max-width: 62.5em) {
	.quiz__right {
		padding: 20px;
	}
}
@media (max-width: 50em) {
	.quiz__right {
		padding: 0;
		border-radius: 10px;
	}
}
@media (max-width: 40em) {
	.quiz__right {
		width: 100%;
	}
}
.quiz__r-wrap {
	border-radius: 0px 20px 20px 0px;
	background: rgba(53, 64, 75, 0.7);
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 3;
	color: #fff;
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

@media (max-width: 60em) {
	.quiz__r-wrap {
		padding: 20px;
	}
}
@media (max-width: 50em) {
	.quiz__r-wrap {
		/* border-radius: 0px 10px 10px 0px; */
		justify-content: center;
	}
}
.quiz__r-top {
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
}
@media (min-width: 86em) {
	.quiz__r-top {
		margin-bottom: 4.6875rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.quiz__r-top {
		margin-bottom: calc(1.25rem + 3.4375 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.quiz__r-top {
		margin-bottom: 1.25rem;
	}
}
@media (max-width: 62.5em) {
	.quiz__r-top {
		font-size: 17px;
	}
}
@media (min-width: 86em) {
	.quiz__r-image {
		margin-bottom: 3.5625rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.quiz__r-image {
		margin-bottom: calc(0.9375rem + 2.625 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.quiz__r-image {
		margin-bottom: 0.9375rem;
	}
}
@media (max-width: 62.5em) {
	.quiz__r-image img {
		max-width: 50px;
	}
}

@keyframes upAndDown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-25px);
	}
	100% {
		transform: translateY(15px);
	}
}

.quiz__r-image img {
	/* animation: 3s upAndDown 0.6s ease-in 0 infinite normal both; */
	animation: 3s linear 1s infinite alternate upAndDown;
}

.quiz__r-bottom {
	color: #fff;
	/* font-size: 18px; */
	font-size: 0px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 73.023%;
	text-align: center;
}
.quiz__image {
	position: absolute;
	right: -250px;
	bottom: 50px;
}
@media (max-width: 115em) {
	.quiz__image {
		display: none;
	}
}
.quiz .bg {
	border-radius: 10px;
	z-index: 1;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.quiz .bg1 {
	position: absolute;
	left: 0;
	top: 0;
}
.quiz .bg2 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

@media (max-width: 43.75em) {
	/* .form_radio {
		width: 48%;
		max-width: 100%;
	} */
}

.form_radio {
	/* grid-template- rows: repeat(auto-fill, minmax(40px, auto)); */
	grid-template-rows: minmax(min-content, auto);
	display: grid;
}

.form_radio input[type='radio'] {
	display: none;
}

.form_radio label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	margin-right: 0;
	line-height: 18px;
	user-select: none;
	border-radius: 10px;
	padding: 0 0 0 40px;
	display: flex;
	align-items: center;
	gap: 19px;
	/* background: #f9fafc; */
	color: #5a6775;
	font-size: 14px;
	font-family: Circe;
	/* padding-left: 61px; */
	font-style: normal;
	/* max-width: 216px; */
	font-weight: 350;
}
@media (max-width: 62.5em) {
	.form_radio label {
		/* padding: 10px; */
		font-size: 12px;
		gap: 10px;
		/* padding-left: 30px; */
		/* padding: 0 0 0 25px; */
		line-height: 120%;
		/* max-width: 150px; */
	}
}
@media (max-width: 43.75em) {
	.form_radio label {
		width: 100%;
		/* max-width: 100%; */
		height: 100%;
	}
}

.form_radio label:before {
	content: '';
	display: inline-block;
	border-radius: 26px;
	border: 1px solid #c2c2c2;
	position: absolute;
	left: 0;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	background: url(/../img/radio-1.png) 0 0 no-repeat;
}
/* @media (max-width: 62.5em) {
	.form_radio label:before {
		width: 12px;
		height: 12px;
		/* left: 10px; */
/* } */
/* }  */

.form_radio label:after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 5px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	border-radius: 16px;
	background: #ec6a1f;
	display: none;
}
/* @media (max-width: 62.5em) {
	.form_radio label:after {
		width: 8px;
		height: 8px;
		left: 2px;
	}
} */
@media (max-width: 62.5em) {
	.quiz__l-body {
		min-height: 302px;
	}
	.quiz__inputs {
		grid-template-columns: repeat(auto-fill, minmax(100px, 147px));
	}
}
@media (max-width: 910px) {
	.quiz__inputs {
		grid-template-columns: repeat(auto-fill, minmax(100px, 155px));
	}
}

@media (max-width: 780px) {
	.quiz__l-body {
		min-height: 330px;
	}
}

@media (max-width: 450px) {
	.quiz__inputs {
		grid-template-columns: repeat(auto-fill, minmax(100px, 239px));
	}
}

/* Checked */
.form_radio input[type='radio']:checked + label:after {
	display: block;
}

/* Hover */
.form_radio label:hover:before {
	filter: brightness(120%);
}

/* Disabled */
.form_radio input[type='radio']:disabled + label:before {
	filter: grayscale(100%);
}

@media (min-width: 86em) {
	.variants {
		margin-bottom: 7.25rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.variants {
		margin-bottom: calc(3.125rem + 4.125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.variants {
		margin-bottom: 3.125rem;
	}
}
.variants__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
@media (min-width: 86em) {
	.variants__top {
		margin-bottom: 2.3125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.variants__top {
		margin-bottom: calc(1.25rem + 1.0625 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.variants__top {
		margin-bottom: 1.25rem;
	}
}
@media (max-width: 31.25em) {
	.variants__top {
		flex-direction: column;
	}
}
.variants .pagination {
	margin-bottom: 0;
	width: fit-content;
	justify-content: flex-start;
	margin-top: 0;
	padding-top: 0;
	flex-shrink: 0;
}
.variants .project__title {
	max-width: 100%;
	justify-content: flex-start;
	margin-bottom: 0 !important;
}
.variants .project__bottom {
	width: fit-content;
	padding-top: 0;
}
.variants .equipment__item {
	cursor: pointer;
	width: 100%;
	max-width: 100%;
}
.variants .equipment__item img {
	border-radius: 15px;
}
.fifa {
	margin: 0;
	margin-left: auto;
	max-width: 607px;
	border-radius: 15px;
	position: absolute;
	bottom: -70px;
	right: 0;
	background: #f9fafc;
}
.fifa .btn {
	color: #35404b;
}
@media (max-width: 80em) {
	.fifa {
		position: static;
	}
}

.fifa2 {
	min-height: 340px;
}

.fifnn .project__title {
	justify-content: flex-start;
	margin-bottom: 30px !important;
}

@media (max-width: 80em) {
	.fifnn .form2__body {
		flex-direction: column;
		padding-top: 0 !important;
	}
	.fifnn .bg {
		position: static;
		min-height: 250px;
	}
	.fifnn .fifa {
		margin: 0 auto;
		margin-top: 20px;
	}
}

.materials {
	margin-bottom: 40px;
}
.materials__body {
	display: flex;
	gap: 117px;
	padding-bottom: 40px;
}
@media (max-width: 81.25em) {
	.materials__body {
		gap: 20px;
		justify-content: space-around;
	}
}
@media (max-width: 43.75em) {
	.materials__body {
		flex-direction: column;
	}
}
.materials__cont {
	max-width: 860px;
	width: 100%;
}
.materials__cont p {
	color: #3a3a3a;
	text-align: justify;
	font-size: 20px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: 168.523%;
}
@media (max-width: 81.25em) {
	.materials__cont p {
		font-size: 14px;
	}
}
@media (max-width: 43.75em) {
	.materials__cont {
		max-width: 100%;
	}
}
.materials__sliderr {
	max-width: 257px;
	width: 100%;
	max-height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (max-width: 61.25em) {
	.materials__sliderr {
		max-width: 200px;
	}
}
@media (max-width: 43.75em) {
	.materials__sliderr {
		max-width: 100%;
		width: 100%;
		display: block;
		padding: 20px 0 !important;
		margin-bottom: 20px;
	}
	.materials__sliderr .button-next {
		position: absolute;
		bottom: 0;
	}
}
@media (max-width: 43.75em) and (max-width: 43.75em) {
	.materials__sliderr .button-next {
		bottom: -60px;
		left: calc(40% - 40px);
		transform: rotate(90deg);
	}
}
@media (max-width: 43.75em) {
	.materials__sliderr .button-prev {
		position: absolute;
		top: 0;
	}
}
@media (max-width: 43.75em) and (max-width: 43.75em) {
	.materials__sliderr .button-prev {
		top: auto;
		bottom: -60px;
		left: calc(60% - 40px);
		transform: rotate(90deg);
	}
}
.materials__slider {
	height: 100% !important;
}
.materials__slide img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	border-radius: 10px;
}
.materials .project__title {
	max-width: 100%;
	justify-content: flex-start;
	margin-bottom: 30px !important;
}
@media (max-width: 61.25em) {
	.materials .project__title {
		font-size: 20px;
	}
}

.mis {
	color: #5a6775 !important;
	font-size: 40px;
	font-family: Circe;
	font-style: normal;
	font-weight: 700;
	max-width: 100%;
	line-height: 102.5%;
}
.mis span {
	color: #fff !important;
}

.stage {
	padding: 45px 0;
	background: #f9fafc;
}
.stage .bg {
	z-index: 1;
}
.stage .equipment__i-name {
	z-index: 3;
	position: relative;
}
.stage .equipment__i-body {
	z-index: 5;
}

.stage__slider .equipment__item {
	width: 100%;
	max-width: 416px;
	flex-shrink: 0;
}
@media (max-width: 62.5em) {
	.stage__slider .equipment__item {
		padding: 0 !important;
	}
}
.stage__slider .equipment__i-name {
	text-decoration: underline;
	opacity: 1 !important;
}
.stage__slider .equipment__i-body {
	display: none;
}
.stage__slider .equipment__i-body {
	position: static;
	border-radius: 0px 15px 15px 0px;
	width: 100%;
	max-width: 467px;
	margin: 0;
	display: block !important;
	font-size: 18px;
	height: auto;
	background: #ec6a1f !important;
}
@media (max-width: 62.5em) {
	.stage__slider .equipment__i-body {
		max-width: 416px;
		padding-top: 15px;
	}
}
.stage__slider .bg {
	border-radius: 15px 0px 0px 15px !important;
}
@media (max-width: 79.25em) {
	.stage__slider .bg {
		border-radius: 15px !important;
	}
}

.stage__item {
	flex-shrink: 0;
	display: flex;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
}
@media (max-width: 79.25em) {
	.stage__item {
		border-radius: 15px;
		padding: 15px;
		background: #ec6a1f;
	}
}
@media (max-width: 62.5em) {
	.stage__item {
		align-items: center;
		flex-direction: column;
		padding: 25px 15px;
	}
}

.air2 {
	z-index: 100;
}

.pr {
	background: #f9fafc;
	padding: 65px 0;
	margin-top: -65px;
}
@media (min-width: 86em) {
	.pr {
		margin-bottom: 4.1875rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.pr {
		margin-bottom: calc(1.875rem + 2.3125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.pr {
		margin-bottom: 1.875rem;
	}
}
@media (max-width: 68.75em) {
	.pr {
		padding: 30px 0;
		margin-top: -50px;
	}
}
.pr__body {
	display: flex;
	gap: 15px;
	justify-content: space-between;
}
@media (max-width: 45.625em) {
	.pr__body {
		flex-direction: column;
	}
}
.pr__item {
	border-radius: 20px;
	background: #fff;
	box-shadow: 0px 0px 16px 1px #eff0f1;
	width: 32%;
	padding: 30px 30px;
}
@media (max-width: 68.75em) {
	.pr__item img {
		max-width: 60px;
	}
}
@media (max-width: 68.75em) {
	.pr__item {
		padding: 15px;
	}
}
@media (max-width: 45.625em) {
	.pr__item {
		width: 100%;
	}
}
.pr__i-top {
	display: flex;
	gap: 14px;
	align-items: center;
	color: #000;
	font-size: 25px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 20px;
}
@media (max-width: 68.75em) {
	.pr__i-top {
		font-size: 20px;
	}
}
@media (max-width: 56.25em) {
	.pr__i-top {
		font-size: 18px;
	}
}
.pr__text {
	color: #5c5c5c;
	font-size: 20px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 120%;
}
@media (max-width: 68.75em) {
	.pr__text {
		font-size: 16px;
	}
}

.long__body {
	display: flex;
	/*justify-content: space-between;*/
	align-items: center;
}
@media (min-width: 86em) {
	.long__body {
		margin-bottom: 5rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.long__body {
		margin-bottom: calc(1.875rem + 3.125 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.long__body {
		margin-bottom: 1.875rem;
	}
}
@media (max-width: 56.25em) {
	.long__body {
		gap: 20px;
		align-items: flex-start;
	}
}
@media (max-width: 43.75em) {
	.long__body {
		display: block;
	}
}
.long__item {
	max-width: 633px;
	position: relative;
	display: flex;
	border-radius: 15px;
}
.cl2 .long__item {
	flex-direction: row-reverse;
}
.cl2 .long__item .long__i-body {
	border-radius: 0 15px 15px 0;
}
.cl2 .long__item .long__arrow {
	transform: rotate(180deg);
}
.cl2 .long__item .bg {
	border-radius: 16px 0 0 16px;
}
.cl2 .long__item .long__lite {
	transform: rotate(180deg);
	left: -47px;
}
@media (min-width: 86em) {
	.long__item:not(:last-child) {
		margin-bottom: 6.8125rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.long__item:not(:last-child) {
		margin-bottom: calc(1.5625rem + 5.25 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.long__item:not(:last-child) {
		margin-bottom: 1.5625rem;
	}
}
.long__item:hover .long__arrow {
	opacity: 1;
}
.long__item:hover .long__i-body {
	border: 2px solid #ed6b20;
	background: #ed6b20;
	color: #fff;
}
@media (max-width: 56.25em) {
	.long__item {
		flex-direction: column-reverse !important;
	}
}
.long .long__lite {
	position: absolute;
	right: -47px;
	z-index: -1;
	top: 48%;
}
@media (max-width: 86.25em) {
	.long .long__lite {
		right: -43px;
	}
	.cl2 .long__item .long__lite {
		left: -43px;
	}
}
@media (max-width: 56.25em) {
	.long .long__lite {
		display: none;
	}
	.long__col {
		margin-top: 0;
	}
}
.long__i-body {
	padding: 38px 18px;
	border-radius: 15px 0px 0px 15px;
	border: 2px solid #ebebeb;
	background: #f9f9f9;
	max-width: 70%;
	color: #4f4f4f;
}
@media (max-width: 86.25em) {
	.long__i-body {
		padding: 20px 14px;
	}
}
@media (max-width: 56.25em) {
	.long__i-body {
		max-width: 100%;
		border-radius: 16px !important;
	}
}
.long__i-ttl {
	font-size: 22px;
	font-family: Circe;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 5px;
}
.long__i-txt {
	font-size: 16px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 133.4%;
}
@media (max-width: 86.25em) {
	.long__i-txt {
		font-size: 14px;
	}
}
.long__right {
	width: 100%;
	max-width: 220px;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
@media (max-width: 56.25em) {
	.long__right {
		max-width: 100%;
	}
}
.long__arrow {
	opacity: 0;
	position: absolute;
	z-index: 23;
}
@media (max-width: 56.25em) {
	.long__center {
		display: none;
	}
}
.long .bg {
	position: static;
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 0 16px 16px 0;
}
@media (max-width: 56.25em) {
	.long .bg {
		border-radius: 16px !important;
		height: 250px;
	}
}

.cl2 {
	padding-top: 345px;
}
@media (max-width: 86.25em) {
	.cl2 {
		padding-top: 200px;
	}
}
@media (max-width: 56.25em) {
	.cl2 {
		padding-top: 0;
	}
}

.bu2 {
	position: relative;
	padding: 47px 0;
}
.bu2 .quiz {
	margin: 0 !important;
	padding: 0;
}
.bu2 .quiz__wrap {
	margin: 0;
}
.bu2 .quiz__title {
	color: #fff;
}

@media (max-width: 31.25em) {
	.ytre {
		text-align: center;
	}
}
@keyframes abv {
	from {
		opacity: 0;
	}
	to {
		opacity: 0;
	}
}
.modal-open {
	overflow: hidden;
}

.popup {
	animation: abv 0.1s;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.781);
	opacity: 0;
	pointer-events: none;
	transition: all 1s ease;
	z-index: 100;
	overflow: hidden;
}

.popup.active {
	opacity: 1;
	pointer-events: all;
	transition: 0.1s all;
	display: flex !important;
}

.popup__body {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: 0.3s all;
	opacity: 0;
}

.popup__body.active {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	transition: 0.3s all;
}

.open-popup {
	margin-top: 150px;
	text-align: center;
	font-weight: 700;
	text-decoration: none;
	font-size: 30px;
	background-color: transparent;
	border: none;
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.close-popup {
	z-index: 2;
	cursor: pointer;
	text-decoration: none;
	background-color: transparent;
	border: transparent;
	color: #000;
	font-size: 25px;
	position: absolute;
	right: -30px;
	top: -30px;
}
@media (max-width: 50em) {
	.close-popup {
		right: 0;
	}
}

.popup .form3__form::before {
	display: none;
}

.popup .form3__form {
	width: 100%;
	border-radius: 30px;
	background: #fafafa;
	max-width: 100%;
	margin: 0 !important;
}

.modal__body {
	max-width: 400px;
	width: 100%;
	border-radius: 30px;
	background: #fafafa;
}
.modal__body .btn {
	margin: 0 auto;
	display: block;
	margin-top: 20px;
}

.popup .form3 {
	margin-bottom: 0 !important;
}

.form1__body {
	transition: all 1s ease 0s;
}

.slideUp {
	transform: translateY(-120%);
	background: #fff;
	border-radius: 5px;
	padding: 40px 20px;
	margin-bottom: -200px;
	position: relative;
}
.slideUp::before {
	content: '';
	position: absolute;
	left: -50%;
	width: 200%;
	top: 0;
	z-index: -1;
	height: 100%;
	display: block;
	background: #fff;
}
@media (max-width: 81.25em) {
	.slideUp {
		transform: none;
		background: transparent;
		margin-bottom: 0;
		padding: 0;
	}
}

.fancybox__container {
	max-width: 100%;
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-duration: 5.5s;
	animation-duration: 5.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
}

@media (min-width: 86em) {
	.form3 {
		margin-bottom: 9.25rem;
	}
}
@media (min-width: 20em) and (max-width: 86em) {
	.form3 {
		margin-bottom: calc(1.875rem + 7.375 * (((100vw - 20rem)) / ((66))));
	}
}
@media (max-width: 20em) {
	.form3 {
		margin-bottom: 1.875rem;
	}
}
.form3 .form3__form .form1__box {
	flex-direction: column;
	max-width: 100%;
	width: 100%;
}
.form3 .form3__form .form1__body {
	background: transparent;
	color: #8f92a9;
	padding: 0 !important;
	margin: 0 !important;
	border: none;
}
.form3 .form3__form .form1__body .line {
	max-width: 100%;
	width: 100%;
}
.form3 .form3__form .form1__body .line p {
	background: #fafafa !important;
	padding: 5px 8px;
	top: -8px;
	color: #3c3c3c !important;
}
@media (max-width: 23.4375em) {
	.form3 .form3__form .form1__body .line p {
		padding: 3px 5px;
	}
}
.form3 .form3__form .form1__body .input {
	width: 100%;
	max-width: 100%;
	border-color: #8f92a9 !important;
	color: #3c3c3c;
	color: #535353 !important;
	font-size: 12px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 100%;
	padding: 16px 20px;
}
@media (max-width: 23.4375em) {
	.form3 .form3__form .form1__body .input {
		padding: 12px 15px;
	}
}
.form3 .form3__form .form1__box-input {
	flex-direction: column;
	max-width: 100%;
	width: 100%;
}
.form3 .form3__form .form1__text {
	color: #8f8f8f;
	color: #8f8f8f;
	font-size: 10px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 130%;
}
.form3 .form3__form .form1__btn {
	margin-top: 30px;
	color: #575757;
	font-size: 16px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: 140.523%;
}
@media (max-width: 31.25em) {
	.form3 .form3__form .form1__btn {
		margin-top: 15px;
	}
}
.form3__body {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 100px;
	padding-left: 85px;
	padding-right: 137px;
	padding-bottom: 82px;
	margin-bottom: 27px;
}
@media (max-width: 82.5em) {
	.form3__body {
		padding: 50px;
		gap: 15px;
	}
}
@media (max-width: 62.5em) {
	.form3__body {
		flex-wrap: wrap;
		justify-content: space-around;
	}
}
@media (max-width: 37.5em) {
	.form3__body {
		padding: 20px;
	}
}
.form3__cont {
	max-width: 400px;
}
@media (max-width: 77.5em) {
	.form3__cont {
		max-width: 300px;
	}
}
.form3__title {
	margin-bottom: 8px;
	color: #fff;
	font-size: 45px;
	font-style: normal;
	font-weight: 800;
	line-height: 127.523%;
}
@media (max-width: 77.5em) {
	.form3__title {
		font-size: 30px;
	}
}
@media (max-width: 22.5em) {
	.form3__title {
		font-size: 24px;
	}
}
.form3__sub {
	color: #f2f2f2;
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
}
@media (max-width: 77.5em) {
	.form3__sub {
		font-size: 18px;
	}
}
@media (max-width: 22.5em) {
	.form3__sub {
		font-size: 16px;
	}
}
@media (max-width: 39.375em) {
	.form3__image img {
		max-width: 50px;
	}
}
@media (max-width: 31.25em) {
	.form3__image {
		display: none;
	}
}
.form3__form {
	position: relative;
	max-width: 406px;
	padding: 27px 55px;
	border-radius: 10px;
	position: relative;
	background: #fafafa;
	box-shadow: 0px 0px 19px 1px rgba(0, 0, 0, 0.2);
	margin: -100px 0;
	margin-bottom: -220px;
}
.form3__form::before {
	content: '';
	border-radius: 10px 10px 0px 10px;
	background: #ec6a1f;
	height: 75%;
	width: 100%;
	right: -20px;
	top: -19.5px;
	position: absolute;
	z-index: -1;
}
@media (max-width: 62.5em) {
	.form3__form::before {
		height: 100%;
		border-radius: 10px;
	}
}
@media (max-width: 31.25em) {
	.form3__form::before {
		display: none;
	}
}
@media (max-width: 77.5em) {
	.form3__form {
		padding: 20px 30px;
		max-width: 380px;
	}
}
@media (max-width: 62.5em) {
	.form3__form {
		margin-top: 35px;
		max-width: 500px;
		margin-bottom: 0;
	}
}
@media (max-width: 37.5em) {
	.form3__form {
		padding: 20px 15px;
	}
}
@media (max-width: 31.25em) {
	.form3__form {
		margin-top: 0 !important;
	}
}
.form3__f-title {
	margin-bottom: 22px;
	color: #575757;
	font-size: 23px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
}
@media (max-width: 31.25em) {
	.form3__f-title {
		font-size: 20px;
	}
}
@media (max-width: 21.875em) {
	.form3__f-title {
		font-size: 16px;
	}
}
.form3__bottom {
	display: flex;
	align-items: center;
	gap: 55px;
}
@media (max-width: 77.5em) {
	.form3__bottom {
		gap: 20px;
		flex-wrap: wrap;
		max-width: 50%;
	}
}
@media (max-width: 62.5em) {
	.form3__bottom {
		justify-content: center;
		margin-top: 50px;
		max-width: 100%;
	}
}
@media (max-width: 31.25em) {
	.form3__bottom {
		margin-top: 20px;
	}
}
.form3__item {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #363636;
	font-size: 18px;
	font-family: Circe;
	font-style: normal;
	font-weight: 350;
	line-height: normal;
}
@media (max-width: 31.25em) {
	.form3__item {
		font-size: 15px;
		gap: 7px;
	}
	.form3__item img {
		max-width: 20px;
	}
}
.form3 .bg {
	border-radius: 10px;
}
@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-transition-timing-function: cubic-bezier(
			0.755,
			0.05,
			0.855,
			0.06
		);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	70% {
		-webkit-transition-timing-function: cubic-bezier(
			0.755,
			0.05,
			0.855,
			0.06
		);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-transition-timing-function: cubic-bezier(
			0.755,
			0.05,
			0.855,
			0.06
		);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	70% {
		-webkit-transition-timing-function: cubic-bezier(
			0.755,
			0.05,
			0.855,
			0.06
		);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
@media (max-width: 43.75em) {
	.zaeb {
		margin-left: -18px !important;
		text-align: left;
		padding-left: 20px !important;
	}
}

.place .input {
	background: transparent;
	border: 1px solid #8f92a9;
	color: #d6d6d6;
	outline: none;
	border-radius: 5px;
}
.place .input::-webkit-input-placeholder {
	color: #fff !important;
}
@media (max-width: 56.25em) {
	.place .input {
		border-color: #fff !important;
		color: #fff;
	}
}

.slnm {
	margin-bottom: 25px !important;
}

.hero__title {
	z-index: 2;
	position: relative;
}

.hero__title.mini span {
	position: relative;
}
.hero__title.mini span::before {
	content: '';
	background: #ec6a1f;
	position: absolute;
	left: -50%;
	top: -20px;
	z-index: -1;
	width: 150%;
	height: 80px;
}
@media (max-width: 90.625em) {
	.hero__title.mini span::before {
		width: 160%;
		height: 80px;
		left: -55%;
		top: -20px;
	}
}
@media (max-width: 43.75em) {
	.hero__title.mini span::before {
		height: 120%;
		width: 140%;
		left: -40%;
		top: -20%;
	}
}
@media (max-width: 23.125em) {
	.hero__title.mini span::before {
		height: 120% !important;
		width: 140% !important;
		left: -40% !important;
		top: -10% !important;
	}
}
@media (max-width: 62.5em) {
	.hero__title.mini span {
		padding-bottom: 0;
	}
}

.equipment.stage.variants .equipment__item {
	border-radius: 0;
	background: transparent;
}

@media (max-width: 31.25em) {
	.contacts__title-b {
		font-weight: 500;
	}
}

@media (max-width: 62.5em) {
	.popup .btn {
		background: transparent;
	}
}

.popup .popup__body .form3__form .input {
	background: transparent;
	border: 1px solid #8f92a9;
	color: #d6d6d6;
	outline: none;
	border-radius: 5px;
}
.popup .popup__body .form3__form .input::-webkit-input-placeholder {
	color: #838383;
}
@media (max-width: 56.25em) {
	.popup .popup__body .form3__form .input {
		border-color: #838383 !important;
		color: #838383 !important;
		border-color: #8f92a9 !important;
	}
}
.popup .popup__body .form3__form .form1__text {
	color: #8f8f8f !important;
}

.sini {
	color: white !important;
}
.swiper {
	overflow: hidden;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	box-sizing: content-box;
	display: flex;
	position: relative;
}

.swiper-vertical .swiper-wrapper {
	flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
}

.swiper-initialized .swiper-slide {
	flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
	display: none !important;
}
/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
	font-weight: 400;
	font-style: normal;
}
:root {
	--swiper-theme-color: #007aff;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}

.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
	height: 1px;
	width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
	width: 1px;
	height: var(--swiper-virtual-size);
}

:root {
	--swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: 0.3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(0.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(0.33);
}

.swiper-pagination-bullet {
	width: var(
		--swiper-pagination-bullet-width,
		var(--swiper-pagination-bullet-size, 8px)
	);
	height: var(
		--swiper-pagination-bullet-height,
		var(--swiper-pagination-bullet-size, 8px)
	);
	display: inline-block;
	border-radius: 50%;
	background: var(--swiper-pagination-bullet-inactive-color, #000);
	opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet:only-child {
	display: none !important;
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
	display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-vertical
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	display: inline-block;
	transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
	.swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-horizontal
	> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl
	> .swiper-pagination-bullets-dynamic
	.swiper-pagination-bullet {
	transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-horizontal
	> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-lock {
	display: none;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s infinite linear;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}
.swiper .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-cube {
	overflow: visible;
}

.swiper-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
	transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px);
}

.swiper-flip {
	overflow: visible;
}

.swiper-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	transition-property: transform, opacity, height;
}

.swiper-cards {
	overflow: visible;
}

.swiper-cards .swiper-slide {
	transform-origin: center bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
}
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */
@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
	font-weight: 400;
	font-style: normal;
}
:root {
	--swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block;
}

.swiper-vertical > .swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(
		--swiper-wrapper-transition-timing-function,
		initial
	);
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
	touch-action: pan-y;
}

.swiper-vertical {
	touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
	display: block;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-3d {
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
	content: '';
	flex-shrink: 0;
	order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
	animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 60em) {
	.quiz__r-wrap,
	.quiz__right {
		border-radius: 15px 15px 15px 0px;
	}
	.quiz__right .bg {
		border-top-left-radius: unset;
		border-bottom-left-radius: unset;
		border-radius: 15px;
	}
}

.about__text span {
	font-weight: 700;
}
.prem__boxTitle {
	color: #363636;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;

	margin-bottom: 5px;
}
.map__map canvas {
	filter: grayscale(100%);
}

/*  */
.fancybox__container img {
	pointer-events: none;
}

.long__col {
	margin-top: -160px;
}

.long__center {
	padding: 0 30px;
}

@media (max-width: 86.25em) {
	.long__center img {
		height: 1005px;
	}
}

@media (max-width: 56.25em) {
	.long__col {
		margin-top: 0;
	}
}

/*  */
.prem__itemImages {
	position: relative;
	max-width: 90px;
	width: 100%;
}

@media (max-width: 900px) {
	.prem__itemImages {
		max-width: 85px;
	}
}

@media (max-width: 420px) {
	.prem__itemImages {
		max-width: 60px;
	}
}

.prem__itemImageCircle img {
	width: 100%;
}

.prem__itemImageUCircle img {
	width: 100%;
}

.prem__itemImageUCircle {
	position: absolute;
	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);
}

.news.story .news__item {
	gap: 20px;
}

.news.story .news__yar {
	font-size: 25px;
}

.news__item:nth-child(even) .news__elips {
	left: unset;
	right: -5px;
	top: unset;
	bottom: 17%;
	z-index: 1;

	position: absolute;
}

@media (max-width: 56.25em) {
	.news__body {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.news__item {
		max-width: 625px;
		flex-direction: column;
		align-items: center;
		gap: 0;
		margin-bottom: 30px !important;
	}
	.news__item__left-block {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		border: 0;
	}
	.news__item-body {
		border: none;
		max-width: 100%;
	}
	.news__item__left-block {
		width: 100%;
	}

	.news__item:nth-child(even) {
		flex-direction: column;
		align-items: center;
		gap: 0;
		margin-bottom: 30px !important;
		max-width: 560px;
	}
	.news__item:nth-child(even) .news__item__left-block {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		border: 0;
	}
}

.hero__video {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	opacity: 0.3;
}

.about__body .btn.form1__btn {
	margin-left: 0;
}

.about__body__left {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about__body__left .image {
	margin-bottom: 30px;
}


.project a{text-decoration: underline dotted;}

.quiz__image{display:none;}

img[src$="/img/lc.svg"] { width: 45px; height: auto;}