JSFiddle - React, Tailwind, and code Playground

HTML

<h2>Наши гарантии</h2>
				<ul class="list-garants">
					<li>
						<h3>1 день</h3>
						<p>Гарантия минимальных сроков поставки от 1 дня с момента заказа благодаря собственной системе логистики</p>
					</li>
					<li>
						<h3>0,1 %</h3>
						<p>Гарантия соблюдения сроков поставки. Мы вернем Вам 0,1 % от стоимсоти заказа за каждый день просрочки</p>
					</li>
					<li>
						<h3>80 лет</h3>
						<p>Заводская гарантия на всю продукцию</p>
					</li>
				</ul>

CSS

list-garants {
	word-spacing: 45px;
	text-align: center;
}
.list-garants li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	word-spacing: 0;
	width: 300px;
	height: 202px;
	background: #ffeba5;
	text-align: left;
    margin-bottom: 10px;
}

.list-garants li:after {
	position: absolute;
	content: "";
	display: block;
	bottom: 0;
	z-index: -1;	
	left: 10%;
	width: 80%;
	height: 20px;
	border-radius: 25%;
	box-shadow: 0 0 10px hsla(0, 0%, 0%, .6);
}
.list-garants li h3 {
	color: #f78c02;
	font-size: 40px;
	margin-left: 44px;
	line-height: 1;
	margin-top: 20px;
	font-weight: bold;
}
.list-garants li p {
	width: 215px;
	margin: 0 auto;
	font: normal 12px Arial;
}