.ir-card-container-b08763e7 {
	display: flex;
	justify-content: center;
	width: 100%;
}

.ir-card-b08763e7 {
	width: 100%;
	max-width: 1000px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.ir-header-b08763e7 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}

.ir-top-icon-wrapper-b08763e7 {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-bottom: 20px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}

.ir-top-icon-wrapper-b08763e7:hover {
	box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.ir-top-icon-b08763e7 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ir-title-b08763e7 {
	margin: 0 0 15px 0;
}

.ir-description-b08763e7 {
	margin: 0;
	max-width: 700px;
}

.ir-buttons-row-b08763e7 {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	width: 100%;
}

.ir-btn-b08763e7 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	flex: 1 1 calc(25% - 15px);
	min-width: 180px;
	box-sizing: border-box;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ir-btn-b08763e7:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.ir-btn-icon-b08763e7 {
	margin-right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ir-btn-icon-b08763e7 svg {
	width: 1em;
	height: 1em;
}

/* Responsive Button Layout */
@media (max-width: 1024px) {
	.ir-btn-b08763e7 {
		flex: 1 1 calc(50% - 15px);
	}
}

@media (max-width: 767px) {
	.ir-btn-b08763e7 {
		flex: 1 1 100%;
	}
}

/* Animations */
@keyframes float-b08763e7 {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-8px); }
	100% { transform: translateY(0px); }
}

.elementor-animation-float {
	animation: float-b08763e7 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.elementor-animation-float {
		animation: none;
	}
	.ir-btn-b08763e7:hover {
		transform: none;
	}
}

.e-animation-fade-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp-b08763e7 0.6s ease forwards;
}

.e-animation-fade-up-stagger {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp-b08763e7 0.6s ease forwards;
	animation-delay: calc(var(--animation-order) * 0.1s + 0.3s);
}

@keyframes fadeUp-b08763e7 {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}