.inpro-hero {
	--inpro-hero-width: 100%;
	--inpro-hero-height: 800px;
	--inpro-hero-height-tablet: 640px;
	--inpro-hero-height-mobile: auto;
	--inpro-hero-box: #171fac;
	--inpro-hero-accent: #34a1fe;
	--inpro-hero-button: #34a1fe;
	--inpro-hero-dark: #101276;
	--inpro-hero-heading: "Lora", Georgia, "Times New Roman", serif;
	--inpro-hero-body: "Barlow", Arial, sans-serif;
	--inpro-hero-script: "Alex Brush", cursive;
	position: relative;
	width: var(--inpro-hero-width);
	max-width: 100%;
	margin: 0 auto;
	z-index: 2;
}

.inpro-hero--full {
	width: 100%;
	max-width: none;
}

.inpro-hero--bleed {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

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

.inpro-hero__stage {
	position: relative;
	padding-right: 142px;
}

.inpro-hero__track {
	position: relative;
}

.inpro-hero__slide {
	position: absolute;
	top: 36px;
	left: 0;
	width: 100%;
	min-height: var(--inpro-hero-height);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.inpro-hero__slide.is-active {
	position: relative;
	top: auto;
	margin-top: 36px;
	margin-bottom: 36px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.inpro-hero__slide.is-leaving {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.inpro-hero__media {
	position: relative;
	display: block;
	width: 74%;
	margin-left: auto;
	min-height: var(--inpro-hero-height);
	overflow: visible;
	z-index: 1;
	color: inherit;
	text-decoration: none;
}

a.inpro-hero__media {
	cursor: pointer;
}

a.inpro-hero__media:hover,
a.inpro-hero__media:focus {
	color: inherit;
	text-decoration: none;
}

.inpro-hero__media-inner {
	position: relative;
	height: 100%;
	min-height: var(--inpro-hero-height);
	overflow: hidden;
	background: var(--inpro-hero-dark);
}

.inpro-hero__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	width: 42px;
	height: 42px;
	margin: -21px 0 0 -21px;
	border: 3px solid rgba(255, 255, 255, 0.22);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease;
	animation: inpro-hero-spin 0.7s linear infinite;
}

.inpro-hero.is-loading .inpro-hero__slide.is-active .inpro-hero__spinner,
.inpro-hero__slide.is-media-loading .inpro-hero__spinner {
	opacity: 1;
	visibility: visible;
}

.inpro-hero__media::before,
.inpro-hero__media::after {
	content: "";
	position: absolute;
	width: 192px;
	height: 192px;
	background: var(--inpro-hero-dark);
	z-index: -1;
}

.inpro-hero__media::before {
	top: -36px;
	left: -36px;
}

.inpro-hero__media::after {
	right: -36px;
	bottom: -36px;
}

.inpro-hero__photo {
	position: absolute;
	inset: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1.12);
	opacity: 1;
	transition: opacity 0.45s ease;
}

.inpro-hero.is-loading .inpro-hero__slide.is-active .inpro-hero__photo:not(.is-ready) {
	opacity: 0;
}

.inpro-hero__slide.is-active .inpro-hero__photo.is-ready {
	animation: inpro-hero-zoom 9.2s ease-out forwards;
}

.inpro-hero__photo--mobile {
	display: none;
}

.inpro-hero__card {
	position: absolute;
	top: 50%;
	left: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	z-index: 5;
	width: 100%;
	max-width: 765px;
	aspect-ratio: 817 / 647;
	transform: translateY(-50%);
	padding: 72px 90px;
	overflow: hidden;
	color: #fff;
	text-align: left;
	background-color: transparent;
	background-image: url("../img/bg-testimonials.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.inpro-hero__card-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	text-align: left;
}

.inpro-hero__title {
	margin: 0 0 27px;
	color: var(--inpro-hero-title-color, #fff);
	font-family: var(--inpro-hero-heading);
	font-size: var(--inpro-hero-title-size, 72px);
	font-weight: var(--inpro-hero-title-weight, 700);
	line-height: 1;
	letter-spacing: 0;
}

.inpro-hero__title cite {
	color: var(--inpro-hero-cite-color, var(--inpro-hero-accent));
	font-family: var(--inpro-hero-cite-font, inherit);
	font-size: var(--inpro-hero-cite-size, inherit);
	font-style: normal;
	font-weight: inherit;
}

.inpro-hero__desc {
	margin: 0 0 40px;
	max-width: 440px;
	color: var(--inpro-hero-desc-color, #fff);
	font-family: var(--inpro-hero-body);
	font-size: var(--inpro-hero-desc-size, 18px);
	font-weight: var(--inpro-hero-desc-weight, 400);
	line-height: 1.55555;
}

.inpro-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 34px;
	border-radius: 5px;
	background: var(--inpro-hero-button);
	box-shadow: none;
	color: var(--inpro-hero-btn-text, #fff) !important;
	font-family: var(--inpro-hero-btn-font, var(--inpro-hero-body));
	font-size: var(--inpro-hero-btn-size, 15px);
	font-weight: var(--inpro-hero-btn-weight, 700);
	letter-spacing: 0;
	line-height: 55px;
	text-decoration: none !important;
	text-transform: none;
	overflow: hidden;
	position: relative;
	transition: filter 0.2s ease;
}

.inpro-hero__btn::after {
	content: "";
	position: absolute;
	top: -10%;
	left: -35%;
	width: 15px;
	height: 120%;
	background: #fff;
	opacity: 0.2;
	transform: rotate(15deg);
	transition: left 0.8s ease;
	pointer-events: none;
}

.inpro-hero__btn:hover,
.inpro-hero__btn:focus {
	filter: brightness(1.05);
	color: var(--inpro-hero-btn-text, #fff) !important;
}

.inpro-hero__btn:hover::after,
.inpro-hero__btn:focus::after {
	left: 130%;
}

.inpro-hero__outline {
	position: absolute;
	right: 72px;
	bottom: 56px;
	left: auto;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.22em;
	max-width: calc(100% - 100px);
	color: var(--inpro-hero-outline-color, #8b92e0);
	font-family: var(--inpro-hero-script);
	font-size: var(--inpro-hero-outline-size, 54px);
	font-weight: var(--inpro-hero-outline-weight, 400);
	line-height: 0.95;
	text-align: right;
	white-space: normal;
	overflow-wrap: break-word;
	pointer-events: none;
}

.inpro-hero__outline-icon {
	display: block;
	flex: 0 0 1em;
	width: 1em;
	height: 1em;
}

.inpro-hero__outline-icon-bg {
	fill: #2ea0ff;
}

.inpro-hero__outline-icon-mark {
	fill: #ffffff;
}

.inpro-hero__outline-text {
	min-width: 0;
}

.inpro-hero__rail {
	position: absolute;
	top: 50%;
	right: 48px;
	z-index: 8;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translateY(-50%);
}

.inpro-hero__arrows {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-bottom: 36px;
}

.inpro-hero button.inpro-hero__arrow,
.elementor-widget-inpro_hero_slider button.inpro-hero__arrow {
	all: unset;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	min-width: 32px;
	height: 32px;
	min-height: 32px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none !important;
	background-image: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #0e0e0e;
	line-height: 1;
	cursor: pointer;
}

.inpro-hero button.inpro-hero__arrow::before,
.inpro-hero button.inpro-hero__arrow::after,
.elementor-widget-inpro_hero_slider button.inpro-hero__arrow::before,
.elementor-widget-inpro_hero_slider button.inpro-hero__arrow::after {
	content: none !important;
	display: none !important;
}

.inpro-hero button.inpro-hero__arrow svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.inpro-hero button.inpro-hero__arrow--prev svg {
	transform: rotate(180deg);
}

.inpro-hero button.inpro-hero__arrow:hover,
.inpro-hero button.inpro-hero__arrow:focus,
.elementor-widget-inpro_hero_slider button.inpro-hero__arrow:hover,
.elementor-widget-inpro_hero_slider button.inpro-hero__arrow:focus {
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: var(--inpro-hero-accent);
}

.inpro-hero button.inpro-hero__arrow:focus-visible {
	outline: 2px solid var(--inpro-hero-accent);
	outline-offset: 3px;
}

.inpro-hero__counter {
	position: relative;
	width: 40px;
	height: 166px;
	font-family: Barlow, Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0e0e0e;
	text-align: center;
}

.inpro-hero__counter::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 70px;
	background: #000;
	transform: translate(-50%, -50%);
}

.inpro-hero__counter-current,
.inpro-hero__counter-total {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
}

.inpro-hero__counter-current {
	top: 0;
}

.inpro-hero__counter-total {
	bottom: 0;
}

.inpro-hero__dots {
	position: absolute;
	right: 72px;
	bottom: -70px;
	z-index: 0;
	width: 212px;
	height: 211px;
	pointer-events: none;
	background-image: radial-gradient(circle, #fff 1.6px, transparent 1.7px);
	background-size: 18px 18px;
	opacity: 0.95;
}

.inpro-hero__slide.is-active .inpro-hero__card-inner {
	animation: inpro-hero-up 0.9s ease both;
}

@keyframes inpro-hero-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes inpro-hero-zoom {
	from {
		transform: scale(1.18);
	}
	to {
		transform: scale(1);
	}
}

@keyframes inpro-hero-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width: 1400px) {
	.inpro-hero__stage {
		padding-right: 80px;
	}

	.inpro-hero__card {
		max-width: 640px;
		padding: 64px 50px;
	}

	.inpro-hero__title {
		font-size: calc(var(--inpro-hero-title-size, 72px) * 0.94);
	}

	.inpro-hero__title cite {
		font-size: calc(var(--inpro-hero-cite-size, var(--inpro-hero-title-size, 72px)) * 0.94);
	}

	.inpro-hero__outline {
		font-size: calc(var(--inpro-hero-outline-size, 54px) * 0.78);
		right: 52px;
		bottom: 44px;
		left: auto;
		max-width: calc(100% - 76px);
	}

	.inpro-hero__media {
		width: 70%;
	}

	.inpro-hero__rail {
		right: 18px;
	}

	.inpro-hero__slide,
	.inpro-hero__media,
	.inpro-hero__media-inner {
		min-height: var(--inpro-hero-height-tablet);
	}
}

@media screen and (max-width: 1199px) {
	.inpro-hero__card {
		max-width: 480px;
		padding: 40px 28px;
	}

	.inpro-hero__title {
		font-size: calc(var(--inpro-hero-title-size, 72px) * 0.67);
	}

	.inpro-hero__title cite {
		font-size: calc(var(--inpro-hero-cite-size, var(--inpro-hero-title-size, 72px)) * 0.67);
	}

	.inpro-hero__media {
		width: 68%;
	}

	.inpro-hero__media::before,
	.inpro-hero__media::after {
		width: 120px;
		height: 120px;
	}

	.inpro-hero__media::before {
		top: -20px;
		left: -20px;
	}

	.inpro-hero__media::after {
		right: -20px;
		bottom: -20px;
	}
}

@media screen and (max-width: 767px) {
	.inpro-hero__stage {
		padding-right: 0;
	}

	.inpro-hero__slide {
		display: flex;
		flex-direction: column;
		top: 0;
		margin-top: 0;
		margin-bottom: 0;
		min-height: var(--inpro-hero-height-mobile);
	}

	.inpro-hero__slide.is-active {
		margin-top: 0;
		margin-bottom: 0;
	}

	.inpro-hero__slide.is-leaving {
		top: 0;
	}

	.inpro-hero__media {
		order: 1;
		width: 100%;
		margin-left: 0;
		min-height: clamp(260px, 75vw, 400px);
	}

	.inpro-hero__media-inner {
		min-height: clamp(260px, 75vw, 400px);
	}

	.inpro-hero__media::before,
	.inpro-hero__media::after {
		display: none;
	}

	.inpro-hero__photo--desktop {
		display: none;
	}

	.inpro-hero__photo--mobile {
		display: block;
	}

	.inpro-hero__card {
		order: 2;
		position: relative;
		top: auto;
		left: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: none;
		aspect-ratio: auto;
		transform: none;
		padding: 54px 30px 48px;
		background-size: 100% 100%;
	}

	.inpro-hero__title {
		margin-bottom: 20px;
		font-size: clamp(30px, 9vw, 38px);
		line-height: 1.05;
	}

	.inpro-hero__title cite {
		font-size: inherit;
	}

	.inpro-hero__desc {
		margin-bottom: 24px;
		font-size: 15px;
		line-height: 1.5;
	}

	.inpro-hero__btn {
		padding: 0 26px;
		font-size: 14px;
		line-height: 48px;
	}

	.inpro-hero__outline {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		align-self: flex-end;
		max-width: 100%;
		margin-top: 28px;
		font-size: 25px;
	}

	.inpro-hero__rail {
		top: calc(clamp(260px, 75vw, 400px) - 48px);
		right: 12px;
		bottom: auto;
		transform: none;
	}

	.inpro-hero__arrows {
		gap: 24px;
		margin: 0;
	}

	.inpro-hero button.inpro-hero__arrow,
	.elementor-widget-inpro_hero_slider button.inpro-hero__arrow {
		width: 32px;
		min-width: 32px;
		height: 32px;
		min-height: 32px;
		background: none !important;
		background-color: transparent !important;
		box-shadow: none !important;
		color: #0e0e0e;
	}

	.inpro-hero__counter,
	.inpro-hero__dots {
		display: none;
	}
}

.inpro-hero--layout-2 {
	overflow: visible;
}

.inpro-hero--layout-2 .inpro-hero__stage {
	padding-right: 0;
	overflow: visible;
}

.inpro-hero--layout-2 .inpro-hero__slide,
.inpro-hero--layout-2 .inpro-hero__slide.is-active {
	top: 0;
	margin-top: 0;
	margin-bottom: 0;
	overflow: visible;
}

.inpro-hero--layout-2 .inpro-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	margin-left: 0;
	min-height: var(--inpro-hero-height);
	z-index: 1;
}

.inpro-hero--layout-2 .inpro-hero__media-inner {
	min-height: var(--inpro-hero-height);
}

.inpro-hero--layout-2 .inpro-hero__media::before,
.inpro-hero--layout-2 .inpro-hero__media::after,
.inpro-hero--layout-2 .inpro-hero__dots,
.inpro-hero--layout-2 .inpro-hero__counter {
	display: none;
}

.inpro-hero--layout-2.inpro-hero--images-only .inpro-hero__media {
	position: relative;
}

.inpro-hero--layout-2.inpro-hero--images-only .inpro-hero__card {
	display: none;
}

.inpro-hero--layout-2 .inpro-hero__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	aspect-ratio: auto;
	left: 10%;
	width: calc(100% - 180px);
	max-width: 460px;
	padding: 36px 36px 24px 40px;
	overflow: visible;
	border-radius: 0;
	background-color: var(--inpro-hero-box);
	background-image: none;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.inpro-hero--layout-2.inpro-hero--side-right .inpro-hero__card {
	left: auto;
	right: 10%;
}

.inpro-hero--layout-2 .inpro-hero__card::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 5px;
	background: #2ea0ff;
	z-index: 3;
}

.inpro-hero--layout-2 .inpro-hero__card-inner {
	width: 100%;
	max-width: none;
	margin: 0;
}

.inpro-hero--layout-2 .inpro-hero__outline {
	position: relative;
	order: -1;
	right: auto;
	bottom: auto;
	left: auto;
	max-width: 100%;
	margin: 0 0 10px;
	justify-content: flex-start;
	text-align: left;
	font-size: calc(var(--inpro-hero-outline-size, 54px) * 0.62);
	letter-spacing: 0.08em;
	line-height: 1.25;
}

.inpro-hero--layout-2 .inpro-hero__outline-icon {
	display: none;
}

.inpro-hero--layout-2 .inpro-hero__title {
	margin: 0 0 12px;
	font-size: calc(var(--inpro-hero-title-size, 72px) * 0.62);
	line-height: 1.12;
}

.inpro-hero--layout-2 .inpro-hero__title cite {
	font-size: calc(var(--inpro-hero-cite-size, var(--inpro-hero-title-size, 72px)) * 0.62);
}

.inpro-hero--layout-2 .inpro-hero__desc {
	margin: 0 0 6px;
	max-width: 100%;
	font-size: calc(var(--inpro-hero-desc-size, 18px) * 0.92);
}

.inpro-hero--layout-2 .inpro-hero__btn {
	margin-top: 20px;
	margin-bottom: -22px;
	padding: 0 26px;
	border-radius: 3px;
	font-size: calc(var(--inpro-hero-btn-size, 15px) * 0.93);
	line-height: 44px;
}

.inpro-hero--layout-2 .inpro-hero__pager {
	position: absolute;
	left: 50%;
	bottom: 32px;
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transform: translateX(-50%);
}

.inpro-hero--layout-2 button.inpro-hero__pager-dot,
.elementor-widget-inpro_hero_slider .inpro-hero--layout-2 button.inpro-hero__pager-dot {
	all: unset;
	box-sizing: border-box;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: width 0.28s ease, background 0.28s ease;
}

.inpro-hero--layout-2 button.inpro-hero__pager-dot.is-active,
.elementor-widget-inpro_hero_slider .inpro-hero--layout-2 button.inpro-hero__pager-dot.is-active {
	width: 34px;
	background: #fff;
}

.inpro-hero--layout-2 button.inpro-hero__pager-dot:hover,
.inpro-hero--layout-2 button.inpro-hero__pager-dot:focus {
	background: rgba(255, 255, 255, 0.85);
}

.inpro-hero--layout-2 button.inpro-hero__pager-dot.is-active:hover,
.inpro-hero--layout-2 button.inpro-hero__pager-dot.is-active:focus {
	background: #fff;
}

.inpro-hero--layout-2 button.inpro-hero__pager-dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

@media screen and (max-width: 1400px) {
	.inpro-hero--layout-2 .inpro-hero__card {
		left: 7%;
		max-width: 400px;
		padding: 32px 28px 22px 34px;
	}

	.inpro-hero--layout-2.inpro-hero--side-right .inpro-hero__card {
		left: auto;
		right: 7%;
	}

	.inpro-hero--layout-2 .inpro-hero__media,
	.inpro-hero--layout-2 .inpro-hero__media-inner {
		min-height: var(--inpro-hero-height-tablet);
	}
}

@media screen and (max-width: 1199px) {
	.inpro-hero--layout-2 .inpro-hero__card {
		left: 5%;
		max-width: 340px;
		padding: 28px 22px 20px 28px;
	}

	.inpro-hero--layout-2.inpro-hero--side-right .inpro-hero__card {
		left: auto;
		right: 5%;
	}
}

@media screen and (max-width: 767px) {
	.inpro-hero--layout-2 .inpro-hero__slide {
		display: flex;
		flex-direction: column;
	}

	.inpro-hero--layout-2 .inpro-hero__media {
		position: relative;
		order: -1;
		width: 100%;
		min-height: 320px;
	}

	.inpro-hero--layout-2 .inpro-hero__media-inner {
		min-height: 320px;
	}

	.inpro-hero--layout-2 .inpro-hero__card {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		width: calc(100% - 32px);
		max-width: none;
		margin: -48px 16px 28px;
		transform: none;
		padding: 28px 20px 20px 24px;
	}

	.inpro-hero--layout-2 .inpro-hero__btn {
		margin-bottom: -20px;
	}

	.inpro-hero--layout-2 .inpro-hero__pager {
		bottom: 16px;
	}

	.inpro-hero--layout-2.inpro-hero--images-only .inpro-hero__media,
	.inpro-hero--layout-2.inpro-hero--images-only .inpro-hero__media-inner {
		min-height: 400px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.inpro-hero__slide.is-active .inpro-hero__photo,
	.inpro-hero__slide.is-active .inpro-hero__card-inner {
		animation: none;
	}

	.inpro-hero__photo {
		transform: none;
	}
}

.elementor-widget-inpro_hero_slider,
.elementor-widget-inpro_hero_slider > .elementor-widget-container {
	width: 100%;
}
