<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/* Start:/bitrix/templates/landing/css/apps/mobile_app.css?17216521586955*/
:root {
	--color-black: #000000;
	--color-white: #ffffff;
	--color-blue: #409EEF;
	--color-gray: #F8F8F8;
}



.page-title {
	font-weight: 400;
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 20px;
}

.page-subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 29px;
}

.page-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 23px;
}

.page-img {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media (max-width: 767.98px) {
	.page-title {
		font-size: 26px;
		line-height: 30px;
	}

	.page-subtitle {
		font-size: 22px;
		line-height: 26px;
	}

	.page-text {
		font-size: 16px;
		line-height: 22px;
	}
}


/* teamwork block-1 */
.teamwork {
	margin-top: 100px;
	display: grid;
	column-gap: 0px;
	row-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: 50% 1fr;
	grid-template-areas:
		"teamwork-title teamwork-img"
		"teamwork-content teamwork-img";
}

.teamwork__title {
	grid-area: teamwork-title;
}

.teamwork__content-wrapper {
	grid-area: teamwork-content;
}

.teamwork__text&gt;span {
	color: var(--color-blue);
}

.teamwork__flex-wrapper {
	margin-top: 30px;
	display: flex;
}

.teamwork__icons-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	margin-bottom: 15px;
}

.teamwork__icons-wrapper:dir(ltr) {
	margin-right: 40px;
}

.teamwork__icons-wrapper:dir(rtl) {
	margin-left: 40px;
}

.teamwork__icon {
	display: inline-block;
	max-width: 130px;
}

.teamwork__qr {
	max-width: 173px;
}

.teamwork__img {
	grid-area: teamwork-img;
	align-self: center;
}


@media (max-width: 991.98px) {
	.teamwork {
		margin-top: 50px;
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		grid-template-areas:
			"teamwork-title"
			"teamwork-img"
			"teamwork-content";
	}

	.teamwork__img {
		margin-bottom: 30px;
	}

	.teamwork__flex-wrapper {
		justify-content: center;
	}
}

@media (max-width: 767.98px) {
	.teamwork__flex-wrapper {
		flex-direction: column;
		align-items: center;
	}

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

	.teamwork__icons-wrapper:dir(ltr) {
		margin-right: 0;
	}

	.teamwork__icons-wrapper:dir(rtl) {
		margin-left: 0;
	}

	.teamwork__icon + .teamwork__icon {
		margin-top: 10px;
	}
}


/* block-gray */
.block-gray {
	background-color: var(--color-gray);
	border-radius: 20px;
	padding: 50px 20px;
	text-align: center;
	margin-top: 80px;
	margin-bottom: 80px;
}

.block-gray__title {
	color: var(--color-blue);
}

.block-gray__flex-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.block-gray__box {
	max-width: 250px;
	width: 100%;
}

.block-gray__box-num {
	display: inline-block;
	font-weight: 700;
	font-size: 70px;
	line-height: 74px;
	background: linear-gradient(180deg, #2FC6F7 0%, #409EEF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
}

.block-gray__box-text {

}

@media (max-width: 767.98px) {
	.block-gray__flex-wrapper {
		flex-direction: column;
		align-items: center;
	}
}

/* stay */
.stay__title {
	text-align: center;
	margin-bottom: 30px;
}

@media (max-width: 991.98px) {
	.block-gray {
		border-radius: 10px;
		padding: 20px;
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.stay__img {
		margin-bottom: 30px;
	}
}


/* communication */
.communication__title {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 80px;
}

.communication__img {
	display: block;
	max-width: 795px;
	margin: 0 auto 80px;
}

.communication__flex-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 60px;
}

.communication__box {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 282px;
	width: 100%;
	min-height: 131px;
	text-align: center;
}

.communication__box-text {
	margin-bottom: 0px;
}

.communication__box-icon {
	height: 43px;
	width: auto;
	margin-bottom: 30px;
}

@media (max-width: 991.98px) {
	.communication__title {
		margin-top: 40px;
	}

	.communication__img {
		margin-bottom: 40px;
	}

	.communication__flex-wrapper {
		flex-direction: column;
		justify-content: center;
		margin-bottom: 30px;
	}

	.communication__box {
		max-width:100%;
		min-height: auto;
	}

	.communication__box + .communication__box {
		margin-top: 20px;
	}

	.communication__box-icon {
		height: 30px;
		width: auto;
		margin-bottom: 10px;
	}
}


/* block-boxes */
/*********************/
.block-boxes {
	background-color: transparent;
}

.boxes-wrapper {}

/* dynamic-box */
/* grid-block */
.dynamic-box {
	padding: 20px 0;
	display: grid;
	column-gap: 30px;
	row-gap: 0px;
	grid-template-rows: auto auto;
	grid-template-columns: 50% 1fr;
	grid-template-areas:
		"box-title box-img"
		"box-text box-img";
}

.dynamic-box:nth-child(even) {
	grid-template-columns: 1fr 50%;
	grid-template-areas:
		"box-img box-title"
		"box-img box-text";
}

.dynamic-box__img {
	grid-area: box-img;
	align-self: center;
}

.dynamic-box__text-wrapper {
	grid-area: box-text;
}

.dynamic-box__title {
	grid-area: box-title;
	margin-top: auto;
	margin-bottom: 10px;
}

.dynamic-box__text {
	margin-bottom: 20px;
}

@media (max-width: 767.98px) {
	.dynamic-box,
	.dynamic-box:nth-child(even) {
		grid-template-rows: 1fr auto auto auto;
		grid-template-columns: 1fr;
		grid-template-areas:
			"box-title"
			"box-img"
			"box-text";
	}

	.dynamic-box__img {
		justify-self: center;
		margin-bottom: 20px;
	}

	/* .dynamic-box__title,
	.dynamic-box__text {
		text-align: left;
	} */
}


/* crm */
.crm__title,
.crm__text {
	max-width: 808px;
	margin: 0 auto;
}

.crm__title {
	margin-bottom: 20px;
}

.crm__text {
	margin-bottom:  50px;
}

.crm__box {
	max-width: 463px;
	width: 100%;
	margin: 0 auto 40px;
	position: relative;
}

.crm__box-img {
	position: absolute;
	left: -45px;
	top: 0;
}

@media (max-width: 1199.98px) {
	.crm__box {
		max-width: calc(100% - 50px);
		margin-left: 50px;
	}
}

@media (max-width: 991.98px) { 
	.crm__box {
		margin-bottom: 20px;
	}
}

/* last-block */
.last-block__title {
	margin-bottom: 20px;
}

.last-block__text {
	margin-bottom: 50px;
}

.last-block__flex-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 120px;
}

.last-block__icons-wrapper {
	display: flex;
	flex-direction: row;
	max-width: 366px;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 30px;
}

.last-block__icon {
	max-width: 130px;
}

@media (max-width: 991.98px) {  
	.last-block__text {
		margin-bottom: 30px;
	}

	.last-block__flex-wrapper {
		margin-bottom: 50px;
	}
	
}
/* End */
/* /bitrix/templates/landing/css/apps/mobile_app.css?17216521586955 */
</pre></body></html>