/*
|--------------------------------------------------------------------------
| HERO SECTION
|--------------------------------------------------------------------------
*/

.umbu-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

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

/*
|--------------------------------------------------------------------------
| WRAPPER
|--------------------------------------------------------------------------
*/

.umbu-hero__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(40px, 6vw, 120px);

	width: 100%;
	max-width: 1440px;

	margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| CONTENT
|--------------------------------------------------------------------------
*/

.umbu-hero__content {
	flex: 1 1 920px;
	max-width: 920px;
}

/*
|--------------------------------------------------------------------------
| EYEBROW
|--------------------------------------------------------------------------
*/

.umbu-hero__eyebrow {
	display: inline-block;

	margin-bottom: 20px;

	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;

	letter-spacing: 0.08em;
	text-transform: uppercase;

	color: #6B7280;
}

/*
|--------------------------------------------------------------------------
| TITLE
|--------------------------------------------------------------------------
*/

.umbu-hero__title {
	margin: 0;

	font-size: clamp(42px, 5vw, 78px);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;

	color: #243CCF;

	text-wrap: balance;
}

/*
|--------------------------------------------------------------------------
| DESCRIPTION
|--------------------------------------------------------------------------
*/

.umbu-hero__description {
	margin-top: 32px;
	max-width: 750px;
	font-size: clamp(15px, 1vw, 18px);
	line-height: 1.7;
	color: #1A1A1A;
}

.umbu-hero__description p {
	margin: 0;
}

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.umbu-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin-top: 36px;
	padding: 16px 28px;

	font-size: 14px;
	font-weight: 600;
	line-height: 1;

	text-decoration: none;

	border-radius: 0;

	background-color: #243CCF;
	color: #FFFFFF;

	transition:
	transform 0.25s ease,
	opacity 0.25s ease,
	background-color 0.25s ease;
}

.umbu-hero__button:hover {
	transform: translateY(-2px);
	opacity: 0.92;
}

.umbu-hero__button:focus-visible {
	outline: 2px solid #243CCF;
	outline-offset: 4px;
}

/*
|--------------------------------------------------------------------------
| SHAPE
|--------------------------------------------------------------------------
*/

.umbu-hero__shape {
	position: relative;
	flex-shrink: 0;
	/* width: clamp(120px, 6vw, 178px); */
	/* height: clamp(99px, 8vw, 160px); */
	background-color: #243CCF;
	transform: skew(-35deg);
	will-change: transform;
	width: 110px;
	height: 150px;
	left: -60px;
}

.umbu-hero__media{
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
min-width:180px;
}

.umbu-hero__media img{
display:block;
width:100%;
max-width:320px;
height:auto;
object-fit:contain;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 1024px) {

	.umbu-hero__wrapper {
		gap: 60px;
	}

	.umbu-hero__title {
		font-size: clamp(40px, 7vw, 62px);
	}

}

@media (max-width: 767px) {

	.umbu-hero__wrapper {
		flex-direction: column !important;
		align-items: flex-start;

		gap: 48px;
	}

	.umbu-hero__content {
		flex: 1 1 300px;
		max-width: 100%;
	}

	.umbu-hero__title {
		font-size: clamp(36px, 10vw, 52px);
		line-height: 1;
	}

	.umbu-hero__description {
		max-width: 100%;
		margin-top: 24px;
	}

	.umbu-hero__button {
		margin-top: 28px;
	}

	.umbu-hero__shape {
		width: 140px;
		height: 90px;
		left: 27%;
		top: 70px;
	}
}

/*
|--------------------------------------------------------------------------
| REDUCED MOTION
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {

	.umbu-hero__button {
		transition: none;
	}

}

/*
|--------------------------------------------------------------------------
| RTL SUPPORT
|--------------------------------------------------------------------------
*/

.rtl .umbu-hero__shape {
	transform: skew(35deg);
}