.umbu-cards {
	--umbu-columns: 4;
	--umbu-gap: 12px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.umbu-cards *,
.umbu-cards *::before,
.umbu-cards *::after {
	box-sizing: border-box;
}

.umbu-cards__viewport {
	width: 100%;
	overflow: hidden;
}

.umbu-cards__track {
	display: grid;
	grid-template-columns: repeat(var(--umbu-columns), minmax(0, 1fr));
	gap: var(--umbu-gap);
	width: 100%;
	align-items: stretch;
}

.umbu-cards__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	min-height: 560px;
	padding: 78px 45px 55px;
	background: #fff;
	border-radius: 14px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
	overflow: hidden;
}

.umbu-cards__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.umbu-cards__icon-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 35px;
}

.umbu-cards__icon {
	width: 118px;
	height: 118px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	background: #193B72;
	color: #fff;
	border-radius: 50%;
	font-size: 49px;
	line-height: 1;
}

.umbu-cards__icon svg {
	width: 50px;
	height: 50px;
	display: block;
	fill: currentColor;
}

.umbu-cards__title {
	width: 100%;
	margin: 0 0 25px;
	color: #111;
	font-size: 28px;
	line-height: 1.22;
	font-weight: 400;
}

.umbu-cards__description {
	width: 100%;
	margin: 0;
	color: #555;
	font-size: 16px;
	line-height: 1.55;
}

.umbu-cards__button-wrap {
	margin-top: 25px;
}

.umbu-cards__button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: opacity .2s ease, transform .2s ease;
}

.umbu-cards__button:hover {
	color: #111;
	text-decoration: none;
	opacity: .72;
}

.umbu-cards__button-arrow {
	font-size: 23px;
	line-height: .7;
	transform: translateY(-1px);
}

.umbu-cards__arrow {
	position: absolute;
	z-index: 4;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0,0,0,.35);
	color: #fff;
	font-size: 42px;
	font-family: Arial, sans-serif;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: opacity .2s ease, background .2s ease;
}

.umbu-cards__arrow:hover {
	background: rgba(0,0,0,.6);
}

.umbu-cards__arrow--prev {
	left: -60px;
}

.umbu-cards__arrow--next {
	right: -60px;
}

.umbu-cards__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 28px;
}

.umbu-cards__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	opacity: .85;
	cursor: pointer;
	box-shadow: 0 0 0 1px rgba(0,0,0,.12);
	transition: transform .2s ease, opacity .2s ease;
}

.umbu-cards__dot.is-active {
	background: #f4c400;
	opacity: 1;
	transform: scale(1.08);
}

.umbu-cards[data-carousel="false"] .umbu-cards__arrow,
.umbu-cards[data-carousel="false"] .umbu-cards__pagination {
	display: none;
}

.umbu-cards.is-carousel .umbu-cards__track {
	display: flex;
	gap: var(--umbu-gap);
	transition: transform .45s ease;
}

.umbu-cards.is-carousel .umbu-cards__card {
	flex: 0 0 calc((100% - (var(--umbu-gap) * (var(--umbu-columns) - 1))) / var(--umbu-columns));
}

.umbu-cards.is-carousel .umbu-cards__viewport {
	overflow: hidden;
}

.umbu-cards.is-dragging .umbu-cards__track {
	transition: none;
	cursor: grabbing;
}

@media (max-width: 1024px) {
	.umbu-cards__card {
		min-height: 500px;
		padding: 55px 28px 40px;
	}

	.umbu-cards__title {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.umbu-cards {
		--umbu-columns: 1;
	}

	.umbu-cards__track {
		grid-template-columns: 1fr;
	}

	.umbu-cards__card {
		min-height: 430px;
		padding: 45px 25px 35px;
	}

	.umbu-cards__title {
		font-size: 22px;
	}

	.umbu-cards__arrow--prev {
		left: 8px;
	}

	.umbu-cards__arrow--next {
		right: 8px;
	}
}
