/*
--------------------------------------
Container
--------------------------------------
*/

.section-title-container {
	display: flex;
	flex-direction: column;
}

.section-title-center {
	align-items: center;
	text-align: center;
}

/*
--------------------------------------
Item
--------------------------------------
*/

/*Subhead*/

.section-title-container .subhead-container {
	padding-bottom: 18px;
}

.section-title-container .subhead {
	font-size: 22px;
}

/*Main title*/

.section-title-container .main-title {
	display: flex;
	flex-direction: column;
	line-height: 1;
	width: fit-content;
}

.section-title-container h1.main-title {
	font-weight: 600;
}

.section-title-center .main-title--center {
	align-items: center;
}

.section-title-container .main-title--row {
	flex-direction: row;
	gap: 10px;
}

.section-title-container .main-title .title-element {
	font-family: var(--e-global-typography-primary-font-family) !important;
	line-height: 1;
}

.section-title-container h1.main-title .title-element {
	line-height: 1;
}

/*Colors*/

.section-title-container .black-element {
	color: #000 !important;
}

.section-title-container .white-element {
	color: #fff !important;
}

.section-title-container .purple-element {
	color: #606BCB !important;
}

/*Gradient*/

.section-title-container .title-element-w-gradient {
	background-image: linear-gradient(to right, #50f2dd, #549CF9, #A674FF);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	width: -webkit-fit-content;
	width: fit-content;
}

