/*
--------------------------------------
Tabs financement
--------------------------------------
*/

.financing {
	background: linear-gradient(135deg, #e9f3ff 0%, #f5f8ff 100%);
	padding: calc(32px + (62 - 32) * ((100vw - 320px) / (1920 - 320))) 0;
}

.financing-wrapper {
	max-width: 75%;
	margin: 0 auto;
}

/*card*/

.financing-card {
	display: grid;
	grid-template-columns: repeat(2, 50%);
	gap: 40px;
	align-items: stretch;
}

/*img*/

.financing-left {
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.financing-image-container {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #dfe7ff;
}

.financing-main-image {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	opacity: 0;
	object-fit: cover;
	transform: scale(1.03) translateY(10px);
	filter: blur(6px);
	transition:
			opacity 0.45s ease-out,
			transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
			filter 0.45s ease-out;
	width: 100%;
	height: 100% !important;
	will-change: opacity, transform, filter;
}

.financing-main-image--is-active {
	position: relative;
	opacity: 1;
	transform: scale(1) translateY(0);
	filter: blur(0);
	pointer-events: auto;
}

/*content*/

.financing-right {
	display: flex;
	flex-direction: column;
}

.financing-title {
	font-size: calc(30px + (48 - 30) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 700;
	color: var(--e-global-color-primary);
	line-height: 120%;
	letter-spacing: -1.44px;
}

.financing-tablist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.financing-tab {
	position: relative;
	overflow: hidden;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: var(--e-global-color-primary);
	border-radius: 999px;
	border: none;
	line-height: 95%;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 10px 20px;
}

.financing-tab:hover {
	background: transparent;
	color: var(--e-global-color-primary);
}

.financing-tab.element-w-border-gradient:before {
	border-radius: 999px;
}

.financing-tab > * {
	position: relative;
	z-index: 1;
}

.financing-tab--is-active {
	font-weight: 400;
	background: linear-gradient(132deg, #F43AE3 7.74%, #6A25F9 53.48%, #57DEE7 99.21%);
	color: #fff;
	box-shadow: 0 8px 20px rgba(123, 92, 255, 0.4);
}

.financing-tab--is-active:before {
	opacity: 1;
}

.financing-panels-container {
	position: relative;
	min-height: 300px;
}

.financing-panel {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	pointer-events: none;
}

.financing-panel--is-active {
	opacity: 1;
	transform: translateY(0);
	position: relative;
	pointer-events: auto;
	height: 100%;
	object-fit: cover;
}

.financing-panel-inner {
	font-size: 15px;
	line-height: 1.7;
}

.financing-panel-inner ul li {
	font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.financing-panel-inner h3,
.financing-panel-inner h4 {
	color: #7b5cff;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
	font-weight: 600;
}

.financing-panel-inner p {
	margin-bottom: 1em;
}

.financing-panel-inner ul {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(132deg, #F43AE3 7.74%, #6A25F9 53.48%, #57DEE7 99.21%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 150%;
	letter-spacing: 0.2px;
	margin: 0.5em 0;
}

.financing-panel-inner ol {
	padding-top: 1em;
	list-style-type: disc;
}