.cryptocurrencies {
	padding: 139px 0 0 0;
	overflow: hidden
}

.cryptocurrencies .global__container {
	max-width: 2000px;
	padding: 0
}

.cryptocurrencies__title {
	font-weight: 700;
	font-size: 56px;
	line-height: 89px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 24px;
	margin-bottom: 10px;
	text-align: center
}

.cryptocurrencies__description {
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: #868494;
	margin-bottom: 76px;
	padding: 0 24px
}

.cryptocurrencies__coins {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 47px;
	width: 100%;
	overflow: hidden
}

.cryptocurrencies .cryptocurrencies__coins-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 45px;
	-moz-column-gap: 45px;
	column-gap: 45px
}

.cryptocurrencies__coin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	padding: 8px 30px;
	background-color: #172137;
	border-radius: 60px;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	min-height: 70px;
	max-height: 70px
}

.cryptocurrencies__coin-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.cryptocurrencies__coin-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.cryptocurrencies__coin-name {
	font-weight: 400;
	font-size: 28px;
	line-height: 38px;
	color: #ffffff
}

#track-one {
	-webkit-animation: scrollCoins 40s linear infinite;
	animation: scrollCoins 40s linear infinite
}

#track-two {
	-webkit-animation: scrollCoins 30s linear infinite;
	animation: scrollCoins 30s linear infinite
}

#track-three {
	-webkit-animation: scrollCoins 36s linear infinite;
	animation: scrollCoins 36s linear infinite
}

#track-four {
	-webkit-animation: scrollCoins 28s linear infinite;
	animation: scrollCoins 28s linear infinite
}

@-webkit-keyframes scrollCoins {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(var(--x));
		transform: translateX(var(--x))
	}
}

@keyframes scrollCoins {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		-webkit-transform: translateX(var(--x));
		transform: translateX(var(--x))
	}
}

@media (max-width:850px) {
	.cryptocurrencies__title {
		font-size: 37px;
		line-height: 43px
	}

	.cryptocurrencies__description {
		margin-bottom: 40px
	}

	.cryptocurrencies__coins {
		row-gap: 30px
	}
}

@media (max-width:600px) {
	.cryptocurrencies {
		padding: 80px 0 0 0
	}

	.cryptocurrencies .cryptocurrencies__coins-track {
		-webkit-column-gap: 30px;
		-moz-column-gap: 30px;
		column-gap: 30px
	}

	.cryptocurrencies__coin {
		padding: 8px 20px;
		min-height: 60px;
		max-height: 60px
	}

	.cryptocurrencies__coin-name {
		font-size: 20px
	}

	.cryptocurrencies__coin-icon svg {
		width: 35px;
		height: 35px
	}
}