/*
Styles spécifiques à la page d'accueil.
*/

.hero {
	padding: 0;
	background: linear-gradient(180deg, var(--fcspe-color-white-soft) 0%, var(--fcspe-color-blue-light) 100%);
}

.hero__panel {
	position: relative;
	overflow: hidden;
	min-height: min(78vh, 780px);
	background: var(--fcspe-color-blue-dark);
	box-shadow: var(--fcspe-shadow-soft);
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(25, 36, 78, 0.18) 0%, rgba(25, 36, 78, 0.46) 56%, rgba(25, 36, 78, 0.86) 100%),
		linear-gradient(90deg, rgba(2, 6, 23, 0.58) 0%, rgba(2, 6, 23, 0.18) 28%, rgba(2, 6, 23, 0.18) 72%, rgba(2, 6, 23, 0.58) 100%);
}

.hero__content {
	position: absolute;
	inset: 0;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem) 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
}

.hero__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
}

.hero__lead {
	flex: 1 1 auto;
	display: grid;
	justify-items: center;
	align-content: start;
	text-align: center;
	gap: 1.5rem;
	padding-top: 5.5rem;
}

.hero__header {
	max-width: 920px;
	display: grid;
	gap: 0.65rem;
}

.hero__title {
	margin: 1rem 0;
	font-size: var(--fcspe-font-size-title);
	font-weight: var(--fcspe-font-weight-black);
	letter-spacing: 0.1em;
	line-height: 1.2;
	color: var(--fcspe-color-white);
	text-wrap: balance;
	text-shadow: 0 6px 24px rgba(2, 6, 23, 0.2);
}

.hero__search {
	width: min(100%, 640px);
	margin-top: 0.15rem;
}

.hero-quick-search {
	margin: 0;
}

.hero-quick-search__row {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 0.5rem 0 0;
	border-radius: 0.75rem;
	background: rgba(248, 250, 252, 0.98);
	box-shadow: 0 16px 40px rgba(2, 6, 23, 0.2);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.35);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-quick-search__row::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: 0.75rem;
	border: 3px solid var(--fcspe-color-orange);
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	clip-path: inset(100% 0 0 0);
	transition: opacity 0.2s ease, clip-path 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-quick-search__row:hover,
.hero-quick-search__row:focus-within {
	box-shadow: 0 24px 50px rgba(2, 6, 23, 0.25);
	transform: translateY(-2px);
}

.hero-quick-search__row:hover::before,
.hero-quick-search__row:focus-within::before {
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

.hero-quick-search__input {
	min-width: 0;
	flex: 1 1 auto;
	padding: 1.1rem 1rem 1.1rem 1.5rem;
	border: 0;
	border-radius: 5%;
	background: transparent;
	font-size: 1rem;
	color: var(--fcspe-color-blue-dark);
}

.hero-quick-search__input::placeholder {
	color: rgba(0, 0, 0, 0.45);
}

.hero-quick-search__input:focus {
	outline: none;
	box-shadow: none;
}

.hero-quick-search__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 5%;
	background: transparent;
	font-weight: var(--fcspe-font-weight-bold);
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	padding: 0.2rem;
}

.hero-quick-search__button:hover {
	transform: scale(1.12);
}

.hero-quick-search__button:active {
	transform: scale(0.9);
	transition: transform 0.1s ease;
}

.hero-quick-search__button .hero-quick-search__icon svg {
	width: 31px;
	height: 31px;
	display: block;
	fill: var(--fcspe-color-orange);
	transition: fill 0.2s ease, filter 0.2s ease;
}

.hero-quick-search__button:hover .hero-quick-search__icon svg {
	fill: #ea580c;
	filter: drop-shadow(0 2px 6px rgba(249, 115, 22, 0.35));
}

.hero__stats {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 0;
	background: transparent;
	padding: 0;
	padding-bottom: 2rem;
}

.hero__stat {
	text-align: center;
	padding: 0.95rem 1rem 1.05rem;
	background: transparent;
	color: var(--fcspe-color-white);
	display: grid;
	gap: 0.35rem;
	align-content: start;
	justify-items: center;
	text-shadow: 0 2px 12px rgba(2, 6, 23, 0.35);
}

.hero__stat-value {
	margin: 0;
	font-size: var(--fcspe-font-size-stat);
	line-height: 1;
	font-weight: var(--fcspe-font-weight-black);
	letter-spacing: -0.04em;
	color: var(--fcspe-color-blue-text-dark);
}

.hero__stat-label {
	margin: 0;
	font-size: 1.02rem;
	font-weight: var(--fcspe-font-weight-regular);
	color: rgba(248, 250, 252, 0.92);
}

.hero__highlights {
	list-style: none;
	margin: 0.4rem 0 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 0 8rem;
}

.hero__highlight {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.55rem;
	padding: 0.9rem 1rem;
	color: var(--fcspe-color-white);
}

.hero__highlight-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(57%) sepia(91%) saturate(1842%) hue-rotate(360deg) brightness(103%) contrast(98%);
}

.hero__highlight-text {
	font-size: 0.98rem;
	font-weight: var(--fcspe-font-weight-bold);
	color: var(--fcspe-color-white);
}

@media (max-width: 1100px) {
	.hero__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__stat:nth-child(2n) {
		border-right: 0;
	}
}

@media (max-width: 900px) {
	.hero__panel {
		min-height: auto;
	}

	.hero__content {
		position: relative;
		padding: 2rem 1rem 0;
	}

	.hero__lead {
		padding-top: 1rem;
		padding-bottom: 2rem;
	}

	.hero__title {
		font-size: clamp(2.1rem, 8vw, 3rem);
	}

	.hero__search {
		width: 100%;
	}

	.hero-quick-search__row {
		/* Garder la disposition en ligne, juste ajuster le padding si besoin */
		padding: 0 0.4rem 0 0;
	}

	.hero-quick-search__input {
		padding: 1rem 1rem 1rem 1.4rem;
	}

	.hero__stats {
		position: relative;
		grid-template-columns: repeat(2, 1fr);
		padding-inline: 0;
		padding-bottom: 2rem;
		background: transparent;
	}

	.hero__stat {
		background: rgba(25, 36, 78, 0.62);
		padding: 1.5rem 1rem;
		border: 1px solid rgba(255, 255, 255, 0.05);
	}

	.hero__stat-value {
		font-size: clamp(1.8rem, 8vw, 2.4rem);
	}

	.hero__stat-label {
		font-size: 0.95rem;
	}

	.hero__highlights {
		flex-direction: column;
		gap: 0.75rem;
		padding: 0;
	}

	.hero__highlight {
		width: 100%;
		justify-content: flex-start;
	}
}

.hero__highlights-band {
	background: var(--fcspe-color-blue-dark);
	padding: 1rem clamp(1rem, 3vw, 2rem);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__highlights {
	max-width: 1160px;
	margin: 0 auto;
	justify-content: space-between;
	width: 100%;
}

/* --- SECTION NOTRE DIFFÉRENCE --- */

/* --- SECTION GENERIQUE (Différence, Comment ça marche, etc.) --- */

.section-block {
	display: flex;
	flex-direction: column;
	background-color: var(--fcspe-color-white-soft);
	padding: 3rem 3.5rem;
}

/* -- EN-TÊTE -- */
.section-block__cat {
	color: var(--fcspe-color-blue-text-light);
	font-weight: var(--fcspe-font-weight-medium);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.section-block__header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 5rem;
}

.section-block__title {
	flex: 0 1 65%;
	/* Augmenté de 40% à 65% pour donner plus de place au titre */
	color: var(--fcspe-color-blue-dark);
	font-size: var(--fcspe-font-size-title);
	font-weight: var(--fcspe-font-weight-black);
	line-height: 1.1;
	margin: 0;
	padding: 0;
	text-wrap: balance;
	/* Permet d'équilibrer harmonieusement le texte sur 2 lignes */
}

.section-block__title span,
.section-block__title strong {
	color: var(--fcspe-color-blue-text-dark);
}

.section-block__desc {
	flex: 0 1 25%;
	text-align: right;
	color: var(--fcspe-color-blue-dark);
	line-height: var(--fcspe-line-height-body);
}

/* -- GRILLES DES CARTES -- */
.cards-grid {
	display: grid;
	padding: 0 10%;
	gap: 5%;
	/* Réduit un peu par rapport à 10% pour que 4 colonnes passent mieux */
}

.cards-grid--3cols {
	grid-template-columns: repeat(3, 1fr);
	gap: 5%;
}

.cards-grid--4cols {
	grid-template-columns: repeat(4, 1fr);
	gap: 5%;
}

#ccm-steps {
	padding: 0;
}

/* -- CARTE INDIVIDUELLE -- */
.feature-card {
	display: flex;
	flex-direction: column;
	background-color: white;
	box-shadow: var(--fcspe-shadow-soft);
	border-radius: 12px;
	/* Mieux en px qu'en % pour les border-radius de box */
	padding: 2rem 0 1.5rem;
	/* Padding global de la carte ajusté */
}

.feature-card__number {
	color: var(--fcspe-color-orange);
	font-size: 4rem;
	font-weight: var(--fcspe-font-weight-black);
	line-height: 1;
	/* Ajusté par rapport à 0.1 */
	margin: 0 0 1rem 10%;
}

.feature-card__icon {
	background-color: var(--fcspe-color-orange);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem auto;
	/* Centré horizontalement */
	display: block;
}

.feature-card__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 0 1.5rem;
}

.feature-card__title {
	font-weight: var(--fcspe-font-weight-bold);
	font-size: var(--fcspe-font-size-emphasis);
	margin-bottom: 0.5rem;
}

.feature-card__desc {
	color: var(--fcspe-color-blue-dark);
	line-height: var(--fcspe-line-height-body);
	margin: 0;
	font-size: 0.95rem;
	/* Légèrement plus petit pour faire rentrer le texte */
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
	.section-block__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.section-block__title,
	.section-block__desc {
		flex: 1 1 auto;
		text-align: left;
		width: 100%;
	}

	.cards-grid--3cols,
	.cards-grid--4cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {

	.cards-grid--3cols,
	.cards-grid--4cols {
		grid-template-columns: 1fr;
	}

	.section-block {
		padding: 0 1.5rem;
	}
}

/* --- SECTION MINI CATALOGUE --- */

.mini-catalog-categories-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.bg-light-blue {
	background-color: var(--fcspe-color-blue-light);
}

.mini-catalog-tabs {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.mini-catalog-tab {
	background: white;
	border: 1px solid var(--fcspe-color-blue-dark);
	color: var(--fcspe-color-blue-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.95rem;
	font-weight: var(--fcspe-font-weight-medium);
	cursor: pointer;
}

.mini-catalog-tab.active {
	background-color: var(--fcspe-color-blue-text-light);
	border: 1px solid var(--fcspe-color-blue-text-light);
	border: none;
	color: var(--fcspe-color-white);
	font-weight: var(--fcspe-font-weight-bold);
}

.mini-catalog-categories-box .btn-primary {
	border-radius: 9999px;
	padding: 0.75rem 1.75rem;
	background-color: var(--fcspe-color-blue-text-light);
	color: var(--fcspe-color-white);
	text-decoration: none;
	font-weight: var(--fcspe-font-weight-bold);
}

.mini-catalog-results-subtitle {
	font-size: 0.95rem;
	color: var(--fcspe-color-blue-dark);
	margin-bottom: 1.5rem;
	font-weight: var(--fcspe-font-weight-medium, 500);
}

.formation-bubble {
	display: flex;
	flex-direction: column;
	background-color: var(--fcspe-color-white, #ffffff);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--fcspe-shadow-soft, 0 4px 12px rgba(0, 0, 0, 0.05));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.formation-bubble:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.formation-bubble__image-box {
	position: relative;
	height: 180px;
	width: 100%;
}

.formation-bubble__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.formation-bubble__badges {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	max-width: calc(100% - 2rem);
}

.formation-badge {
	background: var(--fcspe-color-white);
	color: var(--fcspe-color-blue-text-light);
	font-size: 0.75rem;
	font-weight: var(--fcspe-font-weight-bold);
	padding: 0.35rem 0.6rem;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	box-shadow: var(--fcspe-shadow-soft);
}

.formation-badge__icon {
	width: 14px;
	height: 14px;
	background-color: var(--fcspe-color-blue-text-light);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.formation-badge img {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.formation-bubble__content-box {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.formation-bubble__text-box {
	flex-grow: 1;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 1.5rem;
	margin-bottom: 1.25rem;
}

.formation-bubble__iut {
	font-size: 0.75rem;
	color: var(--fcspe-color-blue-dark);
	margin: 0 0 0.4rem 0;
}

.formation-bubble__title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: var(--fcspe-font-weight-black);
	color: var(--fcspe-color-blue-dark);
	line-height: 1.3;
	text-wrap: balance;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.formation-bubble__cta-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.formation-bubble__link {
	color: var(--fcspe-color-blue-text-light);
	text-decoration: none;
	font-weight: var(--fcspe-font-weight-medium);
	font-size: 0.95rem;
}

.formation-bubble__link:hover {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.formation-bubble__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--fcspe-color-blue-light);
	transition: background-color 0.2s ease-in-out;
}

.formation-bubble__arrow-icon {
	width: 18px;
	height: 18px;
	background-color: var(--fcspe-color-blue-text-light);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: background-color 0.2s ease;
}

.formation-bubble__arrow:hover {
	background-color: var(--fcspe-color-blue-text-light);
}

.formation-bubble__arrow:hover .formation-bubble__arrow-icon {
	background-color: var(--fcspe-color-white);
}

.mini-catalog-footer {
	text-align: center;
	margin-top: 3.5rem;
}

.btn-orange {
	background-color: var(--fcspe-color-orange, #ff7f00);
	color: var(--fcspe-color-white, #fff);
	padding: 1rem 2.5rem;
	border-radius: 9999px;
	text-decoration: none;
	font-weight: var(--fcspe-font-weight-bold, 700);
	font-size: 1.1rem;
	display: inline-block;
	border: none;
}

@media (max-width: 1024px) {
	.mini-catalog-categories-box {
		flex-direction: column;
	}
}

/* ==========================================================================
   SECTION TÉMOIGNAGES
   ========================================================================== */

#section-testimonies {
	background-color: var(--fcspe-color-blue-dark);
}

#section-testimonies .testimonies-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

#container_testimonies_title {
	margin-bottom: 3rem;
}

#section-testimonies .testimonies-content {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
}

#section-testimonies #testimonies-cat {
	color: var(--fcspe-color-white-soft);
	opacity: 0.8;
}

#section-testimonies #testimonies-title {
	color: var(--fcspe-color-white);
	flex: 0 1 100%;
}

#section-testimonies #testimonies-title span {
	color: var(--fcspe-color-orange);
}

/* Cartes témoignages */
#section-testimonies .testimonies-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

#section-testimonies .testimony-card {
	background-color: var(--fcspe-color-white);
	border-radius: 12px;
	padding: 0.7rem 1.2rem;
	box-shadow: var(--fcspe-shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#section-testimonies .testimony-card__text {
	color: var(--fcspe-color-blue-dark);
	font-weight: var(--fcspe-font-weight-bold);
	line-height: 1.5;
	font-size: 1.1rem;
	margin: 0;
}

#section-testimonies .testimony-card__author {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

#section-testimonies .testimony-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

#section-testimonies .testimony-card__initials {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--fcspe-color-orange);
	color: var(--fcspe-color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: var(--fcspe-font-weight-bold);
	font-size: 1.1rem;
}

#section-testimonies .testimony-card__author-info p {
	margin: 0;
}

#section-testimonies .testimony-card__name {
	color: var(--fcspe-color-blue-dark);
	font-weight: var(--fcspe-font-weight-bold);
	font-size: 0.89rem;
}

#section-testimonies .testimony-card__role {
	color: var(--fcspe-color-blue-dark);
	opacity: 0.7;
	font-size: 0.8rem;
}

/* Grille de droite (Stats) */
#section-testimonies .testimonies-stats {
	flex: 1 1 45%;
	display: flex;
	align-items: center;
}

#section-testimonies .stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	width: 85%;
	margin: auto auto;
}

#section-testimonies .stat-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-shadow: var(--fcspe-shadow-soft);
}

#section-testimonies .stat-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

#section-testimonies .stat-card__overlay {
	position: absolute;
	inset: 0;
	background-color: var(--fcspe-color-blue-dark-57);
	z-index: 1;
}

#section-testimonies .stat-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

#section-testimonies .stat-card__number {
	font-size: var(--fcspe-font-size-stat);
	font-weight: var(--fcspe-font-weight-black);
	line-height: 1;
	margin: 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

#section-testimonies .stat-card__label {
	color: var(--fcspe-color-white-soft);
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0;
}

/* Couleurs des chiffres (utilisées dans les span) */
#section-testimonies .color-blue-light {
	color: var(--fcspe-color-blue-text-dark);
	/* Sur fond foncé, ce bleu clair ressort bien (ou --fcspe-color-blue-text-dark) */
}

#section-testimonies .color-white {
	color: var(--fcspe-color-white);
}

/* Responsiveness */
@media (max-width: 1024px) {
	#section-testimonies .testimonies-grid {
		flex-direction: column;
	}

	#section-testimonies .testimonies-content,
	#section-testimonies .testimonies-stats {
		flex: 1 1 100%;
	}
}

@media (max-width: 640px) {
	#section-testimonies .stats-grid {
		grid-template-columns: 1fr;
	}

	#section-testimonies .stat-card {
		aspect-ratio: auto;
		padding: 3rem 1.5rem;
	}
}

/* ==========================================================================
   SECTION PARTENAIRES
   ========================================================================== */

#section-partners {
	background-color: var(--fcspe-color-white-soft);
	padding: 4rem 0;
	overflow: hidden;
	width: 100%;
}

#section-partners .partners-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	position: relative;
}

/* Effet de fondu sur les bords */
#section-partners .partners-container::before,
#section-partners .partners-container::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}

#section-partners .partners-list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 3.4rem;
	width: max-content;
	animation: scrollPartners 35s linear infinite;
}

#section-partners .partners-list:hover {
	animation-play-state: paused;
}

#section-partners .partner-logo-wrapper {
	flex: 0 0 auto;
	width: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#section-partners .partner-logo {
	max-width: 100%;
	height: auto;
	max-height: 150px;
	object-fit: contain;
}

@keyframes scrollPartners {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-50% - 2rem));
	}
}