/**
 * ----------------------------------------------------------------------------------------
 * CUSTOM STYLING FOR HERO COMPONENT
 * ----------------------------------------------------------------------------------------
 */

.hero .mbr-overlay {
	backdrop-filter: blur(3.5px);
	opacity: 0.3; 
	background-color: rgb(255, 255, 255);
}
.hero .card-wrapper {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
	backdrop-filter: blur(3.5px);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	border-radius: 30px;
	padding: 6rem 3rem;
	margin: 0;
	overflow: visible;
	position: relative;
	justify-content: center;
}
@media (max-width: 767px) {
	.hero .card-wrapper {
		padding: 2rem 1rem;
	}
}
.hero .card-wrapper:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0.3;
	height: 100%;
	width: 100%;
	pointer-events: none;
	border: 2px solid white;
	border-radius: 30px;
}
.hero .col-12 {
	position: relative;
}
.hero .round {
	position: absolute;
	top: -60px;
	right: -150px;
	width: 280px;
	height: 280px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
	backdrop-filter: blur(3.5px);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: 0;
	display:none!important;
}
@media (max-width: 767px) {
	.hero .round {
		top: -30px;
		right: -110px;
		width: 180px;
		height: 180px;
	}
}
.hero .round:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0.3;
	height: 100%;
	width: 100%;
	pointer-events: none;
	border: 2px solid white;
	border-radius: 50%;
}
.hero .round2 {
	top: auto;
	right: auto;
	bottom: -30px;
	left: -30px;
	width: 120px;
	height: 120px;
	z-index: 0;
}
.hero .mbr-section-title {
	color: var(--primary);
}
.hero .mbr-text,
.hero .mbr-section-btn {
	color: #263d5a;
}
