/*
--------------------------------------
Container
--------------------------------------
*/

.section-text__container:has(.section-text__title) {
	margin-bottom: 20px;
}

/*
--------------------------------------
Item
--------------------------------------
*/

/*Subhead*/

.section-text__container--center .section-text__subhead-container {
	display: flex;
	justify-content: center;
	padding-bottom: 15px;
}

.section-text__container .section-text__subhead {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--e-global-typography-primary-font-family);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	line-height: 200%;
	font-style: normal;
}

.section-text__subhead--primary {
	color: var(--e-global-color-primary);
}

.section-text__subhead--secondary {
	color: var(--e-global-color-secondary);
}

.section-text__subhead--tertiary {
	color: var(--e-global-color-aca2b90);
}

.section-text__subhead--quaternary {
	color: #fff;
}

/*Title*/

.section-text__title {
	display: flex;
	flex-direction: column;
	font-family: var(--e-global-typography-primary-font-family);
	font-size: calc(36px + (80 - 36) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 600;
	text-align: center;
	line-height: 1.25;
	line-height: 2rem;
	text-transform: uppercase;
}

.section-text__title--uppercase {
	text-transform: uppercase;
}

.section-text__title-first-line--primary {
	color: var(--e-global-color-primary);
}

.section-text__title-first-line--secondary {
	color: var(--e-global-color-secondary);
}

.section-text__title-first-line--tertiary {
	color: var(--e-global-color-text);
}

.section-text__title-first-line--quaternary {
	color: #fff;
}

.section-text__title-second-line--primary {
	color: var(--e-global-color-primary);
}

.section-text__title-second-line--secondary {
	color: var(--e-global-color-secondary);
}

.section-text__title-second-line--tertiary {
	color: var(--e-global-color-text);
}

.section-text__title-second-line--quaternary {
	color: #fff;
}

.section-text__title-third-line--primary {
	color: var(--e-global-color-primary);
}

.section-text__title-third-line--secondary {
	color: var(--e-global-color-secondary);
}

.section-text__title-third-line--tertiary {
	color: var(--e-global-color-text);
}

.section-text__title-third-line--quaternary {
	color: #fff;
}

.section-text__container--center * {
	text-align: center;
}

.section-text__container--left * {
	text-align: left;
}

.section-text__container .section-text__title--medium {
	font-size: calc(20px + (25 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.section-text__container .section-text__title--small {
	font-size: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.section-text__container .section-text__title--none {
	text-transform: none;
}

.section-text__title:has(.section-text__title-first-line--highlighted) {
	display: inline-flex;
}

.section-text__title-first-line--highlighted {
	background: var(--e-global-color-secondary);
	color: #fff;
	padding: 5px;
}

/*Description*/

.section-text__description-container p {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 180%;
}

.section-text__description--primary p {
	color: var(--e-global-color-primary);
}

.section-text__description--secondary p {
	color: var(--e-global-color-text);
}

.section-text__description--tertiary p {
	color: var(--e-global-color-text);
}

.section-text__description--quaternary p {
	color: #fff;
}

.section-text__description--type-secondary p {
	font-size: 25px;
	font-weight: 700;
	line-height: 30px;
}

.section-text__description--border {
	border-left: 7px solid var(--e-global-color-primary);

	p {
		margin-left: 2em;
	}

}

/*Btn*/

.section-text__container .section-text__link-container {
	display: flex;
	gap: calc(5px + (20 - 5) * ((100vw - 320px) / (1920 - 320)));
	padding-top: calc(25px + (45 - 25) * ((100vw - 320px) / (1920 - 320)));
}

.section-text__container .section-text__link-container.section-text__link-container--center {
	justify-content: center;
}

.section-text__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--e-global-typography-text-font-family);
	font-size: 18px;
	font-weight: 400;
	padding: 9px 28px;
	height: 100%;
}

/*Btn 1 / Primary*/

.section-text__link-one.section-text__link--btn-primary {
	background: transparent;
	color: var(--e-global-color-primary);
	border: 1px solid var(--e-global-color-primary);
}

.section-text__link-one.section-text__link--btn-primary:hover,
.section-text__link-one.section-text__link--btn-primary:focus {
	background: var(--e-global-color-primary);
	color: #fff;
}

/*Btn 1 / Secondary*/

.section-text__link-one.section-text__link--secondary {
	background: var(--e-global-color-secondary);
	color: #fff;
	border: 1px solid var(--e-global-color-secondary);
	border-radius: 50px;
	transition: padding 0.3s ease;
	position: relative;
	overflow: hidden;
}

.section-text__link-one.section-text__link--secondary .btn-label {
	display: inline-block;
	transition: transform 0.3s ease;
}

.section-text__link .btn-icon {
	opacity: 0;
	transform: translateX(0.5rem);
	transition: opacity 0.3s ease, transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid white;
	border-radius: 50%;
}

.section-text__link:hover .btn-label {
	transform: translateX(-0.4rem);
}

.section-text__link:hover .btn-icon {
	opacity: 1;
	transform: translateX(0);
}

/*Btn 2 / Primary*/

.section-text__link-two.section-text__link--btn-primary {
	background: #fff;
	color: var(--e-global-color-primary);
	border: 1px solid #fff;
}

.section-text__link-two.section-text__link--btn-primary:hover,
.section-text__link-two.section-text__link--btn-primary:focus {
	background: var(--e-global-color-text);
	color: #fff;
	border: 1px solid var(--e-global-color-text);
}

/*Btn 2 / Secondary*/

.section-text__link-two.section-text__link--btn-secondary {
	background: var(--e-global-color-text);
	color: #fff;
	border: 1px solid var(--e-global-color-text);
}

.section-text__link-two.section-text__link--btn-secondary:hover,
.section-text__link-two.section-text__link--btn-secondary:focus {
	background: #fff;
	color: var(--e-global-color-text);
}

/*
--------------------------------------
USP (facultatif)
--------------------------------------
*/

.section-text__container {

	.usp__container {
		display: flex;
		gap: 20px;
	}

	.usp-item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-family: var(--e-global-typography-secondary-font-family);
		background: rgba(255, 255, 255, 0.15);
		backdrop-filter: blur(18px);
		border-radius: 4px;
		min-width: 180px;
		padding: 16px 32px;
	}

	.usp-item__content-container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.usp-item .usp-item__title-text {
		font-size: 14px;
		font-weight: 600;
		color: var(--e-global-color-secondary);
		text-transform: uppercase;
	}

	.usp-item .usp-item__subtitle-text {
		font-size: 14px;
		font-weight: 400;
		color: #fff;
		line-height: 24px;
		letter-spacing: 0.28px;
	}

}