html {
	scroll-behavior: smooth;
}

body {
	font-family: "Onest", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #042A2C;
}

._container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	border-bottom: 1px solid #E0E0E0;
}

.header_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 15px;
}

.header_logo {
	display: flex;
	align-items: center;
}

.header_logo:hover img {
	transform: rotate(90deg);
	transition: all 0.3s ease;
}

.header_logo img {
	width: 46px;
	height: 46px;
	margin-right: 9px;
	transition: all 0.3s ease;
}

.header_logo p {
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	color: #042A2C;
	position: relative;
	display: inline-block;
	margin: 0;
	overflow: hidden;
	height: 27px;
}

.header_logo p span {
	display: block;
	transition: transform 0.3s ease;
}

.header_logo p::after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 100%;
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	transition: top 0.3s ease;
	white-space: nowrap;
}

.header_logo:hover p span {
	transform: translateY(-100%);
}

.header_logo:hover p::after {
	top: 0;
}



.header_menu {}

.header_menu_list {
	display: flex;
	align-items: center;
}

.header_menu_item:not(:last-child) {
	margin-right: 50px;
}

.header_menu_item a {
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #042A2C;
	position: relative;
}

.header_menu_item a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.header_menu_item a:hover::after {
	width: 100%;
}

.header_buttons {
	display: flex;
	align-items: center;
}

.header_phone {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-right: 30px;

}

.header_phone:hover a::before {
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
	top: 50%;
	left: -12px;
}

.header_phone a {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	color: #042A2C;
	margin-bottom: 2px;
	position: relative;
}

.header_phone a::before {
	content: "";
	width: 6px;
	height: 6px;
	background-color: #005DCA;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease;
	transform: translateY(-50%);
	left: -8px;
}

.header_phone_text {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #042A2CB2;
}

.header_phone_text {}

.header_button a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 23px;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #F3F4F9;
	background-color: #005DCA;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.header_button a:hover {
	background-color: #0077ff;
}

.header_button img {
	margin-right: 14px;
}


/*burger menu styles 	burger menu styles	burger menu styles	burger menu styles*/


.header_burger {
	display: none;
	width: 30px;
	height: 20px;
	position: relative;
	cursor: pointer;
	z-index: 10;
}

.header_burger span,
.header_burger::before,
.header_burger::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background: #042A2C;
	left: 0;
	transition: 0.3s;
}

.header_burger span {
	top: 9px;
}

.header_burger::before {
	top: 0;
}

.header_burger::after {
	bottom: 0;
}


.mobile_drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 99;
	transition: 0.3s;
}

.mobile_drawer.active {
	right: 0;
}

.mobile_drawer_content {
	padding: 100px 20px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.mobile_menu li {
	margin-bottom: 25px;
}

.mobile_menu a {
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #042A2C;
}

.mobile_phone a {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	color: #042A2C;
}

.mobile_phone p {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #042A2CB2;
	margin-bottom: 10px;
}

.header_burger.active span {
	transform: scale(0);
}

.header_burger.active::before {
	top: 9px;
	transform: rotate(45deg);
}

.header_burger.active::after {
	bottom: 9px;
	transform: rotate(-45deg);
}

body.lock {
	overflow: hidden;
}

@media (max-width: 1380px) {

	.header_burger {
		display: block;
		margin-left: 30px;
	}


	.header_menu,
	.header_phone {
		display: none;
	}


	.header_buttons {
		margin-left: auto;
	}
}

@media (max-width: 570px) {
	.header_logo p {
		display: none;
	}

	.header_button a {
		padding: 6px 12px;
	}

	.header_button img {
		display: none;
	}

	.header_container {
		padding: 10px 15px;
	}
}






/*hero-----------hero-----------hero-----------hero-----------hero-----------hero-----------hero-----------hero-----------hero-----------hero-----------hero-----------hero*/

.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.hero_slider {
	position: relative;
	height: 100%;
}

.hero_slide {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.hero_slide.active {
	opacity: 1;
	z-index: 1;
}

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

/* затемнение как в макете */
.hero_slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.hero_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	color: #fff;
	z-index: 2;
}

.hero_content h2 {
	font-family: "Stolzl";
	font-size: 76px;
	font-weight: 700;
	line-height: 100%;
	margin-bottom: 30px;
	max-width: 650px;
}

.hero_content p {
	font-size: 24px;
	font-weight: 400;
	line-height: 129%;
	color: #FFFFFFCC;
}

/* стрелки */
.hero_arrow {
	position: absolute;
	width: 70px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	transform: translateY(-50%);
	background: #005DCA;
	border: none;
	cursor: pointer;
	z-index: 3;
	transition: all 0.3s ease;
}

.hero_arrow:hover {
	background-color: #0077ff;
	transition: all 0.3s ease;
}

.hero_arrow.disabled {
	background-color: #E4E4E466;
	pointer-events: none;
	cursor: default;
}

.hero_arrow.prev {
	left: 20px;
}

.hero_arrow img {
	width: 30px;
	height: 30px;
}

.hero_arrow.next {
	right: 20px;
}

.hero_arrow.next img {
	transform: rotate(180deg);
}

.hero_pagination {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}

.hero_dot {
	width: 50px;
	height: 2px;
	background-color: #FFFFFF99;
	cursor: pointer;
	transition: 0.3s;
}

.hero_dot.active {
	background: #005DCA;
	width: 100px;
}

@media(max-width: 1560px) {
	.hero_arrow {
		top: 80%;
		transform: translateY(0%);
	}

	.hero_arrow.prev {
		left: 40%;
	}

	.hero_arrow.next {
		right: 40%;
	}
}

@media(max-width: 920px) {
	.hero_content h2 {
		font-size: 48px;
	}

	.hero_content p {
		font-size: 18px;
	}

	.hero_arrow {
		width: 50px;
		height: 40px;
		top: 70%;
	}

	.hero_arrow.prev {
		left: 20px;
	}

	.hero_arrow.next {
		right: 20px;
	}
}

@media(max-width: 520px) {
	.hero_content h2 {
		font-size: 32px;
	}

	.hero_content p {
		font-size: 16px;
	}
}






/*about-----------about-----------about-----------about-----------about-----------about-----------about-----------about-----------about-----------about-----------about-----------about*/

.about {
	background-color: #E4F0FF;
	margin: 30px 20px;
	border-radius: 20px;
}

.about_container {
	display: grid;
	grid-template-columns: 775px 1px 1fr;
	gap: 60px;
	align-items: center;
}

.about_text {}

.about_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 30px;
	color: #042A2C;
}

.about_subtitle p {
	font-size: 20px;
	line-height: 129%;
	font-weight: 400;
	color: #042A2CCC;
}

.about_subtitle span {
	font-weight: 600;
}

.about_line {
	height: 418px;
	width: 1px;
	background-color: #042A2C1A;
}

.about_nums {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.about_nums_items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 84px;
}

.about_nums_item {}

.about_nums_item_num {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 60px;
	line-height: 100%;
	color: #042A2C;
	margin-bottom: 15px;
}

.about_nums_item_num span {
	color: #005DCA;
}

.about_nums_item_text {
	max-width: 131px;
	font-weight: 400;
	font-size: 20px;
	color: #042A2CCC;
}

.about_nums_item_text span {
	font-weight: 600;
}

@media(max-width: 1430px) {
	.about_container {
		grid-template-columns: 1fr 1px 300px;
		gap: 30px;
	}

	.about_nums_items {
		grid-template-columns: 1fr;
		gap: 40px;
	}


	.about_line {
		height: 100%;
	}

	.about_nums {
		padding: 50px 0px;
	}

	.about_nums_item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}


@media(max-width: 920px) {
	.about_container {
		grid-template-columns: 1fr 1px 200px;
		gap: 30px;
	}

	.about_title {
		font-size: 48px;
	}

	.about_subtitle p {
		font-size: 18px;
	}

	.about_nums_item_num {
		font-size: 40px;
	}

	.about_nums_item_text {
		font-size: 18px;
	}
}

@media(max-width: 650px) {
	.about_container {
		grid-template-columns: 1fr 1px 150px;
		gap: 10px;
	}

	.about_title {
		font-size: 32px;
	}

	.about_nums_item_num {
		font-size: 32px;
	}

	.about_subtitle p {
		font-size: 16px;
	}

	.about_nums_item_text {
		font-size: 16px;
	}

	.about_nums {
		padding: 30px 0px;
	}
}

@media(max-width: 500px) {
	.about_title {
		text-align: center;
	}

	.about_subtitle p {
		text-align: center;
	}

	.about_container {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 30px 20px;
	}

	.about_nums {
		padding: 0px 0px;
	}

}



/*tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks-----------tasks*/


.tasks {
	background-color: #005DCACC;
	margin: 0px 20px 30px 20px;
	border-radius: 20px;
	color: #fff;
}

.tasks_container {
	padding: 70px 15px 60px 15px;
}


.tasks_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 30px;
}

.tasks_subtitle {
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	color: #FFFFFFCC;
	margin-bottom: 70px;
	max-width: 397px;
}

.tasks_subtitle span {
	font-weight: 600;
}

.tasks_items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

.task_item {
	background-image: url('../img/tasks/box_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 -150px;
	padding: 20px 30px;
	min-height: 228px;
	position: relative;
}

.task_item:hover .task_item_mask {
	background-color: #042a2c63;
	transition: all 0.3s ease;
}

.task_item_mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #042A2CB2;
	transition: all 0.3s ease;
}

.task_item:nth-child(2) {
	color: #042A2C;
	background-image: url('../img/tasks/timer_bg.jpg');
	background-position: 0 0;
}

.task_item:nth-child(2) .task_item_subtitle {
	color: #042A2CCC;
}

.task_item:nth-child(2) .task_item_mask {
	background-color: #F2F2F2B2;
}

.task_item:nth-child(2):hover .task_item_mask {
	background-color: #f2f2f254;
}

.task_item:nth-child(3) {
	background-image: url('../img/tasks/math_bg.jpg');
	background-position: 0 -30px;
}

.task_item:nth-child(3) .task_item_mask {
	background-color: #2175D8B2;
}

.task_item:nth-child(3):hover .task_item_mask {
	background-color: #2176d83c;
}

.task_item:nth-child(4) {
	background-image: url('../img/tasks/graph_bg.jpg');
	background-position: 0 -30px;
}

.task_item:nth-child(4) .task_item_mask {
	background-color: #2175D8B2;
}

.task_item:nth-child(4):hover .task_item_mask {
	background-color: #2176d83c;
}

.task_item:nth-child(5) {
	background-image: url('../img/tasks/person_bg.jpg');
	background-position: 0 -50px;
}

.task_item:nth-child(5) .task_item_mask {
	background-color: #042A2CB2;
}

.task_item:nth-child(5):hover .task_item_mask {
	background-color: #042a2c61;
}

.task_item:nth-child(6) {
	color: #042A2C;
	background-image: url('../img/tasks/global_bg.jpg');
	background-position: 0 -30px;
}

.task_item:nth-child(6) .task_item_subtitle {
	color: #042A2CCC;
}

.task_item:nth-child(6) .task_item_mask {
	background-color: #F2F2F2B2;
}

.task_item:nth-child(6):hover .task_item_mask {
	background-color: #f2f2f254;
}

.task_item_title {
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
	margin-top: 90px;
}

.task_item_subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	position: relative;
	z-index: 2;
	max-width: 320px;
}

.task_item_icon {
	position: absolute;
	top: 0px;
	right: 0px;

}

@media(max-width: 1450px) {
	.tasks_items {
		grid-template-columns: repeat(2, 1fr);
	}
}


@media(max-width: 920px) {
	.tasks_title {
		font-size: 48px;
	}

	.tasks_subtitle {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.tasks_container {
		padding: 30px 20px;
	}

}

@media(max-width: 870px) {
	.tasks_items {
		grid-template-columns: repeat(1, 1fr);
	}

	.task_item_icon {
		width: 90px;
		height: 90px;
	}

	.task_item {
		background-size: 120%;
	}

}

@media(max-width: 520px) {
	.tasks_title {
		font-size: 32px;
	}

	.tasks_subtitle {
		font-size: 16px;
	}

	.task_item_title {
		font-size: 20px;
		margin-top: 100px;
	}

	.task_item_subtitle {
		font-size: 14px;
	}

	.task_item {
		background-size: 140%;
	}
}



/*solution--------solution------------solution------------solution*/

.solution {
	background-color: #E4F0FF;
	margin: 0px 20px 30px 20px;
	border-radius: 20px;
	color: #042A2C;
}

.solution_container {
	padding: 70px 15px 60px 15px;
}


.solution_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 30px;
}

.solution_subtitle {
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	color: #042A2CCC;
	margin-bottom: 70px;
	max-width: 397px;
}

.solution_subtitle span {
	font-weight: 600;
}

.solution_items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	color: #FFFFFF;
}

.solution_item {
	background-image: url('../img/solution/chart_bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 -120px;
	padding: 20px 30px;
	min-height: 228px;
	position: relative;
}

.solution_item:hover .solution_item_mask {
	background-color: #042a2c63;
	transition: all 0.3s ease;
}

.solution_item_mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #042A2CB2;
	transition: all 0.3s ease;
}

.solution_item:nth-child(2) {
	background-image: url('../img/solution/people_bg.jpg');
	background-position: 0 -70px;
}


.solution_item:nth-child(2) .solution_item_mask {
	background-color: #042A2C80;
}

.solution_item:nth-child(2):hover .solution_item_mask {
	background-color: #042a2c4e;
}

.solution_item:nth-child(3) {
	background-image: url('../img/solution/search_bg.jpg');
	background-position: 0 -150px;
}

.solution_item:nth-child(3) .solution_item_mask {
	background-color: #2175D8B2;
}

.solution_item:nth-child(3):hover .solution_item_mask {
	background-color: #2176d836;
}

.solution_item:nth-child(4) {
	background-image: url('../img/solution/ranking_bg.jpg');
	background-position: 0 -30px;
}

.solution_item:nth-child(4) .solution_item_mask {
	background-color: #2175D8B2;
}

.solution_item:nth-child(4):hover .solution_item_mask {
	background-color: #2176d83c;
}

.solution_item:nth-child(5) {
	background-image: url('../img/solution/coin_bg.jpg');
	background-position: 0 0px;
}

.solution_item:nth-child(5) .solution_item_mask {
	background-color: #042A2C80;
}

.solution_item:nth-child(5):hover .solution_item_mask {
	background-color: #042a2c3b;
}

.solution_item:nth-child(6) {
	background-image: url('../img/solution/setting_bg.jpg');
	background-position: 0 -30px;
}


.solution_item:nth-child(6) .solution_item_mask {
	background-color: #042A2C80;
}

.solution_item:nth-child(6):hover .solution_item_mask {
	background-color: #042a2c44;
}

.solution_item_title {
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
	margin-top: 90px;
	position: relative;
	z-index: 2;
}

.solution_item_subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	position: relative;
	z-index: 2;
	max-width: 320px;
	margin-top: 15px;
}

.solution_item_icon {
	position: absolute;
	top: 30px;
	right: 30px;

}

@media(max-width: 1450px) {
	.solution_items {
		grid-template-columns: repeat(2, 1fr);
	}
}


@media(max-width: 920px) {
	.solution_title {
		font-size: 48px;
	}

	.solution_subtitle {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.solution_container {
		padding: 30px 20px;
	}

}

@media(max-width: 870px) {
	.solution_items {
		grid-template-columns: repeat(1, 1fr);
	}

	.solution_item_icon {}

	.solution_item {
		background-size: 120%;
	}

}

@media(max-width: 520px) {
	.solution_title {
		font-size: 32px;
	}

	.solution_subtitle {
		font-size: 16px;
	}

	.solution_item_title {
		font-size: 20px;
		margin-top: 100px;
	}

	.solution_item_subtitle {
		font-size: 14px;
	}

	.solution_item {
		background-size: 140%;
	}
}


/*steps-----------steps-------------steps--------------steps*/

.steps {
	background-color: #005DCACC;
	margin: 0px 20px 30px 20px;
	border-radius: 20px;
	color: #fff;
}

.steps_container {
	padding: 70px 15px 60px 15px;
}

.steps_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 30px;
}

.steps_items {}

.spteps_item {
	display: grid;
	grid-template-columns: 70px 350px 650px;
	justify-content: space-between;
	align-items: center;
	padding: 40px 15px;
	gap: 30px;
	transition: all 0.3s ease;
}

.spteps_item:hover {
	transform: translateX(20px);
	transition: all 0.3s ease;
}

.steps_items_line {
	width: 100%;
	height: 1px;
	background-color: #FFFFFF1A;
}

.steps_item_num {
	font-family: "Stolzl";
	font-weight: 700;
	font-size: 40px;
	line-height: 100%;
}

.steps_item_title {
	font-weight: 600;
	font-size: 24px;
	line-height: 100%;
}

.spteps_item_text {
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	max-width: 650px;
}

.spteps_item_text span {
	font-weight: 600;
}

@media(max-width: 1200px) {
	.steps_title {
		text-align: center;
	}

	.spteps_item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
}

@media(max-width: 920px) {
	.steps_container {
		padding: 30px 20px;
	}

	.steps_title {
		font-size: 48px;
	}

	.spteps_item {
		padding: 30px 15px;
	}

	.steps_item_num {
		font-size: 24px;
	}

	.steps_item_title {
		font-size: 18px;
	}

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

@media(max-width: 520px) {
	.steps_title {
		font-size: 32px;
	}

	.spteps_item {
		padding: 20px 15px;
		gap: 15px;
	}

	.steps_item_num {
		font-size: 20px;
	}

	.steps_item_title {
		font-size: 16px;
	}

	.spteps_item_text {
		font-size: 14px;
	}

}



/*cases--------cases------------------cases----------------cases------------cases*/


.cases {
	background-color: #E4F0FF;
	margin: 0px 20px 30px 20px;
	border-radius: 20px;
	color: #042A2C;
}

.cases_container {
	padding: 70px 15px 60px 15px;
}

.cases_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 30px;
}

.cases_subtitle {
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	color: #042A2CCC;
	margin-bottom: 70px;
	max-width: 828px;
}

.cases_subtitle span {
	font-weight: 600;
}

.cases_slider {
	position: relative;
	height: 636px;
}

.cases_slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.cases_slide.active {
	opacity: 1;
	z-index: 1;
}

.cases_slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.case_arrow.prev {
	left: -90px;
}

.case_arrow.next {
	right: -90px;
}

.case_arrow.disabled {
	background-color: #E4E4E4;
}

.cases_slide img {
	cursor: zoom-in;
}


.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 999999;
	padding: 40px;
	overflow: auto;
	backdrop-filter: blur(5px);
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox_img {
	max-width: none;
	max-height: 100vh;
	width: auto;
	height: auto;
	min-width: 300px;
	border-radius: 8px;
	position: relative;
	z-index: 99999;
}

.lightbox_close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
	z-index: 1000000;
}

.cases_text {
	font-weight: 400;
	font-size: 18px;
	line-height: 129%;
	color: #042A2CCC;
	margin-top: 50px;

}

.cases_text span {
	font-weight: 700;
}

.cases_text::before {
	content: "//";
	font-weight: 600;
	font-size: 32px;
	color: #005DCA;
	line-height: 100%;
}

@media(max-width: 1700px) {
	.case_arrow.prev {
		left: 50px;
		top: 100%;
	}

	.case_arrow.next {
		right: 50px;
		top: 100%;
	}
}

@media(max-width: 920px) {
	.cases_title h2 {
		font-size: 48px;
	}

	.cases_subtitle p {
		font-size: 18px;
	}

	.cases_container {
		padding: 30px 20px;
	}

	.cases_slider {
		height: 400px;
	}

	.case_arrow.prev {
		left: 50px;
		top: -40px;
	}

	.case_arrow.next {
		right: 50px;
		top: -40px;
	}

	.cases_text {
		font-size: 14px;
		margin-top: 0px;
	}

	.cases_text::before {
		font-size: 24px;
	}
}

@media(max-width: 520px) {
	.cases_title {
		margin-bottom: 10px;
	}

	.cases_title h2 {
		font-size: 32px;
	}

	.cases_subtitle p {
		font-size: 16px;
	}

	.cases_slider {
		height: 200px;
	}
}


/*trust-------trust-------------trust------------trust--------trust*/

.trust {
	padding: 70px 0px;
}

.trust_container {}

.trust_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 30px;
}

.trust_subtitle {
	font-size: 20px;
	line-height: 120%;
	font-weight: 400;
	color: #042A2CCC;
	margin-bottom: 70px;
}

.trust_subtitle span {
	font-weight: 600;
}

.trust_slider {
	overflow: hidden;
	position: relative;
}

.trust_track {
	display: flex;
	align-items: center;
	gap: 80px;
}

.trust_item {
	min-width: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.trust_item p {
	text-align: center;
	margin-top: 20px;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
}

.trust_item img {
	max-width: 100%;
}



@media(max-width: 920px) {
	.trust_item {
		max-width: 70px;
	}

	.trust_item img {
		width: 70px;
	}

	.trust_item p {
		font-size: 16px;
	}

	.trust_title {
		margin-bottom: 0px;
	}

	.trust_title h2 {
		font-size: 48px;

	}

	.trust_subtitle p {
		font-size: 18px;
	}

	.trust_track {
		gap: 30px;
	}

}

@media(max-width: 520px) {

	.trust_title h2 {
		font-size: 32px;
	}

	.trust_subtitle p {
		font-size: 16px;
	}

}


/*review--------review---------review----------review----------review*/

.review {
	background-color: #005DCACC;
	margin: 0px 20px 30px 20px;
	border-radius: 20px;
	color: #fff;
}

.review_container {
	padding: 70px 15px 60px 15px;
}

.review_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 80px;

}

.review_title h2 {
	color: #fff;
}

.review_slider {
	position: relative;
}

.review_main {
	position: relative;
	padding: 0 90px;
}

.review_inner {
	position: relative;
	overflow: hidden;
}

.review_track {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
}

.review_slide {
	flex: 0 0 calc((100% - 90px) / 4);
	position: relative;
	z-index: 1;
	/* 4 карточки + 3 gap по 30px */
}



.review_slide img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	cursor: zoom-in;
}

/* стрелки */
.review_arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 70px;
	height: 54px;
	background: #FFFFFF;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.review_arrow img {
	width: 30px;
	height: 30px;
	display: block;
}


.review_arrow.prev {
	left: 60px;
}

.review_arrow.next {
	right: 60px;
}

.review_arrow.prev img {
	transform: rotate(180deg);
}

.review_arrow.disabled {
	background-color: #E4E4E466;
	pointer-events: none;
}

/* точки */
.review_dots {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	gap: 15px;
}

.review_dot {
	width: 50px;
	height: 2px;
	background-color: #FFFFFF4D;
	cursor: pointer;
	transition: 0.3s;
}

.review_dot.active {
	background: #FFFFFF;
	width: 100px;
}


@media(max-width:1650px) {
	.review_slide {
		flex: 0 0 calc((100% - 60px) / 3);
	}

	.review_arrow.prev {
		left: 20px;
	}

	.review_arrow.next {
		right: 20px;
	}
}

@media(max-width:1350px) {
	.review_slide {
		flex: 0 0 calc((100% - 30px) / 2);
	}
}

@media(max-width: 920px) {
	.review_title {
		font-size: 48px;
		margin-bottom: 40px;
	}

	.review_container {
		padding: 30px 20px;
	}
}

@media(max-width:800px) {
	.review_slide {
		flex: 0 0 100%;
	}

	.review_arrow {
		width: 50px;
		height: 40px;
	}

	.review_arrow.prev {
		left: 0px;
	}

	.review_arrow.next {
		right: 0px;
	}

	.review_main {
		padding: 0px 40px;
	}
}

@media(max-width: 520px) {
	.review_title {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.review_arrow {
		width: 50px;
		height: 40px;
	}
}


/*contacts------------contacts------------------contacts--------contacts*/


.contacts {
	background-color: #E4F0FF;
	margin: 0px 20px 30px 20px;
	border-radius: 20px;
	color: #042A2C;
}

.contacts_container {
	padding: 70px 15px 60px 15px;
}

.contacts_title {
	font-weight: 700;
	font-family: "Stolzl";
	font-size: 76px;
	line-height: 100%;
	margin-bottom: 80px;
}

.contacts_content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.contacts_map {
	height: 336px;
	overflow: hidden;
}

.contacts_map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.contacts_info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contacts_item {
	display: flex;
}

.contacts_icon img {
	transition: all 0.3s ease;
}

.contacts_item:hover .contacts_icon img {
	transform: scale(125%);
	transition: all 0.3s ease;
}

.contacts_icon {
	margin-right: 10px;
}

.contacts_item_info {
	max-width: 425px;
}

.contacts_item_info_title {
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: #042A2C99;
	margin-bottom: 5px;
}

.contacts_item_info_subtitle {
	font-weight: 600;
	font-size: 24px;
	line-height: 110%;
	color: #042A2CCC;
}

.contacts_icon img {
	min-width: 22px;
	min-height: 22px;
}

@media(max-width: 920px) {
	.contacts_title {
		font-size: 48px;
	}

	.contacts_item_info_title {
		font-size: 16px;
	}

	.contacts_item_info_subtitle {
		font-size: 20px;
	}

	.contacts_container {
		padding: 30px 20px;
	}
}

@media(max-width: 760px) {
	.contacts_content {
		grid-template-columns: 1fr;
	}

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

@media(max-width: 520px) {
	.contacts_title {
		font-size: 32px;
	}

	.contacts_item_info_title {
		font-size: 14px;
	}

	.contacts_item_info_subtitle {
		font-size: 18px;
	}
}


/*foooter-----------footer-----------footer---------foter*/

footer {
	padding: 60px 0px 30px 0px;
	background-color: #042A2C;
	color: #fff;
}

.footer_container {}

.footer_content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer_item:nth-child(1) {
	max-width: 218px;
}

.footer_item:nth-child(2) {
	max-width: 130px;
}

.footer_item:nth-child(3) {
	max-width: 380px;
}

.footer_logo {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer_logo_icon {
	margin-right: 10px;
}

.footer_logo_icon img {
	width: 46px;
	height: 46px;
	transition: all 0.3s ease;
}

.footer_logo:hover img {
	transform: rotate(90deg);
	transition: all 0.3s ease;
}

.footer_logo_text {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	position: relative;
	display: inline-block;
}

.footer_logo_text::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.footer_logo:hover .footer_logo_text::after {
	width: 100%;
}

.footer_item_text {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #FFFFFFCC;
	margin-bottom: 40px;
}

.footer_item_data {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
}

.footer_item_navigation {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	margin-bottom: 15px;
}

.footer_item_list li {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer_item_menu {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: #FFFFFFCC;
	transition: all 0.3s ease;
}

.footer_item_menu:hover {
	color: #fff;
	transition: all 0.3s ease;
}

.footer_contacts {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	margin-bottom: 20px;
}

.footer_contacts_items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.footer_contacts_item {
	display: flex;
}

.footer_contacts_icon img {
	transition: all 0.3s ease;
}

.footer_contacts_item:hover .footer_contacts_icon img {
	transform: scale(125%);
	transition: all 0.3s ease;
}

.footer_contacts_item:nth-child(3) {
	grid-column: 1 / -1;
}

.footer_contacts_icon {
	min-width: 19px;
	min-height: 19px;
}

.footer_contacts_icon {
	margin-right: 10px;
}

.footer_contacts_info {}

.footer_contacts_info_title {
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #FFFFFF99;
	margin-bottom: 9px;
}

.footer_contacts_info_subtitle {
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	color: #fff;
}

.footer_line {
	width: 100%;
	height: 1px;
	background-color: #FFFFFF33;
	margin-bottom: 30px;
}

.footer_privacy {
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFFCC;
}


@media(max-width: 920px) {
	.footer_logo_text {
		font-size: 18px;
	}

	.footer_item_navigation {
		font-size: 18px;
	}

	.footer_contacts {
		font-size: 18px;
	}
}

@media(max-width: 800px) {
	.footer_content {
		display: grid;
		grid-template-columns: 1fr;
	}

	.footer_item_text {
		margin-bottom: 15px;
	}

	.footer_item:nth-child(1) {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer_item:nth-child(2) {
		width: 100%;
		margin-bottom: 30px;
	}

}

@media(max-width: 450px) {
	.footer_contacts_items {
		grid-template-columns: 1fr;
	}
}

.section-animate {
	opacity: 0;
	transform: translateY(80px);
	transition: all 0.6s ease;
}

.section-animate.show {
	opacity: 1;
	transform: translateY(0);
}