/*
--------------------------------------
Items
--------------------------------------
*/

.category-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 50px;
}

/*
--------------------------------------
Item
--------------------------------------
*/

.category-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 25px;
}

/*svg*/

.category-item__svg {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--e-global-color-secondary);
	width: 120px;
	height: 120px;

	img {
		max-width: 60px;
	}

}

.elementor-location-footer {

	.category-items {
		column-gap: 25px;
	}

	.category-item__svg {
		width: calc(110px + (185 - 110) * ((100vw - 320px) / (1920 - 320)));
	}

}

.category-item__bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/wp-content/uploads/2025/03/bg-category-item.png) no-repeat center center;
	background-size: contain;
}

/*name*/

.category-item__name {
	text-align: center;
}

.category-item__text {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: var(--e-global-color-text, #2D2523);
	transition: all 0.6s ease-in-out;
}

.category-item__link:hover .category-item__text {
	color: var(--e-global-color-primary);
}

@keyframes flip {
	50% {
		transform: rotate3d(0, 1, 0, 90deg);
	}
}

.category-item__link:hover svg {
	animation: flip .6s linear;
}