/* CSS Style */
.card-casa-soporte {
	display: flex;
	flex-wrap: wrap;
	margin-top: 16px !important;
	margin-bottom: 16px !important;
}

.card-casa-soporte h3 {

	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 0;
	gap: 8px;
	color: var(--sc-color-dark-mode-80);
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 100%;
	font-family: var(--sc-font-family-header);
	text-transform: uppercase;
}

.card-casa-soporte h3 .fitIcon {
	width: 32px;
	height: 32px;
	opacity: 0.5;
}

.card-casa-soporte .card-casa-soporte-item {
	position: relative;
	width: fit-content;
	padding: 16px;
	background-color: var(--sc-colorbg-dark-mode-alt-1);
}

.card-casa-soporte .card-casa-soporte-item::before {
	position: absolute;
	top: 10px;
	right: 0;
	width: 1px;
	height: 80%;
	background-color: var(--sc-color-dark-mode-50);
	content: "";
}

.card-casa-soporte .card-casa-soporte-item:first-of-type {
	border-radius: 8px 0 0 8px;
}

.card-casa-soporte .card-casa-soporte-item:last-of-type {
	flex-grow: 1;
	margin-right: auto;
	border: none;
	border-radius: 0 8px 8px 0;
}

.card-casa-soporte .card-casa-soporte-item:last-of-type::before {
	content: none;
}

.card-casa-soporte .card-casa-soporte-item p {
	font-weight: var(--sc-font-weight-regular);
	font-size: 20px;
	font-family: var(--sc-font-family-header);
}

.card-casa-soporte .card-casa-soporte-item p:first-of-type {
	margin-bottom: 8px;
	font-weight: var(--sc-font-weight-extralight);
	font-size: 80%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Media Query for Tablets Ipads portrait mode */
@media (max-width: 1024px) {
}

/* Media Query for low resolution  Tablets, Ipads */
@media (max-width: 768px) {

	.card-casa-soporte .card-casa-soporte-item {
		width: 33%;
	}

	.card-casa-soporte .card-casa-soporte-item p {
		font-size: 16px;
	}

	.card-casa-soporte h3 {
		font-size: 18px;
	}

	.card-casa-soporte h3 .fitIcon {
		width: 24px;
		height: 24px;
	}
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
	.card-casa-soporte {
		flex-direction: column;
		width: calc(100% + 32px);
		margin-left: -16px;
	}

	.card-casa-soporte h3 {
		margin-left: 16px;
		font-size: 18px;
	}

	.card-casa-soporte .card-casa-soporte-item {
		width: 100%;
	}

	.card-casa-soporte .card-casa-soporte-item::before {
		content: none;
	}
}
