.banner-top .main-banner-heading {
	margin-bottom: 24px;
}

.banner-utp__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.banner-utp__item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.banner-utp__icon svg {
	display: block;
	flex-shrink: 0;
}

.banner-utp__text {
	font-family: 'PF DinDisplay Pro Regular';
	font-weight: 400;
	font-size: 30px;
	line-height: 120%;
	letter-spacing: 0;
	color: #ffffff;
}

.main-banner-btn {
    height: 50px;
    width: 487px;
}
.running-text {
	position: fixed; /* Фиксируем относительно окна */
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: #000000;
	z-index: 9999; /* Поверх всего */
	overflow: hidden;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    align-items: center;
    text-align: center;
    justify-content: center;
}

.ticker {
	width: 100%;
	height: 60px;
	overflow: hidden;
	position: relative;
        align-items: center;
    text-align: center;
    justify-content: center;
}

.ticker__list {
	display: flex;
	align-items: center;
	white-space: nowrap;
	/* Анимация прокрутки */
	animation: ticker-scroll 50s linear infinite;

}

.ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0 0 0;
	font-family: 'PF DinDisplay Pro', sans-serif;
	font-weight: 700;
	font-size: 40px; /* Адаптивный размер ниже */
	line-height: 1;
	text-transform: uppercase;
	color: white;
        align-items: center;
    text-align: center;
    justify-content: center;
}

/* Жёлтый разделитель */
.ticker__separator {
	width: 19px;
	height: 28px;
	background: linear-gradient(90deg, #FBAB18 0%, #F0C713 31.58%);
	box-shadow: 5px 7px 10px rgba(241, 199, 19, 0.22);
	flex-shrink: 0;
	border-radius: 2px;
}

/* Анимация */
@keyframes ticker-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 1500px) {
	.banner-utp__text {
		font-size: 26px;
	}
}

@media (max-width: 992px) {
	.running-text {
		height: 31px;
	}
	.ticker__item {
		font-size: 16px;
		padding: 7px 0 0 0;
		gap: 6px;
	}
	.ticker__separator {
		width: 12px;
		height: 20px;
	}
.ticker__list {
	display: flex;
	align-items: center;
	white-space: nowrap;
	/* Анимация прокрутки */
	animation: ticker-scroll 20s linear infinite;

}
	@keyframes ticker-scroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); } /* Корректировка для мобильных */
	}
}


@media screen and (max-width: 767px) {
	.banner-top .main-banner-heading {
		margin-bottom: 10px;
        text-align: left;
	}

    .banner-utp__list {
        gap: 4px;
        margin: 0 0 10px;
        text-align: left;
    }

	.banner-utp__text {
		font-size: 20px;
	}

	.banner-utp__icon,
	.banner-utp__icon svg {
		width: 28px;
		height: 28px;
	}

	.banner-utp__item {
		gap: 8px;
	}

    .main-banner-btn {
        width: 100%;
        height: 42px;
        font-size: 14px;
    }

    .container.main-banner__container {
        padding: 0 16px;
    }
}
