/*--------------------------------------------------------------
# MarocOffers
# Store Hero
# Version 0.5.0
--------------------------------------------------------------*/

.mo-store-hero{

position:relative;

overflow:hidden;

width:100%;

margin:0 0 60px;

padding:0;

border-radius:0;

overflow:hidden;

background:#0F9D58;

background-size:cover;

background-position:center;
}

.mo-store-overlay{

background:linear-gradient(
90deg,
rgba(0,0,0,.70),
rgba(0,0,0,.45)
);

padding:90px 0;

min-height:360px;

display:flex;

align-items:center;

}

.mo-store-head{

display:flex;

align-items:center;

gap:40px;

color:#fff;

}

.mo-store-logo{

width:150px;

height:150px;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 15px 40px rgba(0,0,0,.30);

flex-shrink:0;

overflow:hidden;

}

.mo-store-logo img{

width:80%;

height:80%;

object-fit:contain;

}

.mo-store-info{

flex:1;

}

.mo-store-info h1{

font-size:48px;

font-weight:700;

margin:0 0 18px;

color:#fff;

}

.mo-store-info p{

font-size:18px;

line-height:1.7;

opacity:.95;

max-width:700px;

margin-bottom:30px;

}

.mo-store-stats{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.mo-store-stats span{

background:rgba(255,255,255,.18);

backdrop-filter:blur(8px);

padding:14px 22px;

border-radius:12px;

font-weight:600;

font-size:16px;

}

@media(max-width:992px){

.mo-store-head{

flex-direction:column;

text-align:center;

}

.mo-store-info{

display:flex;

flex-direction:column;

align-items:center;

}

.mo-store-info h1{

font-size:38px;

}

}

@media(max-width:768px){

.mo-store-overlay{

padding:60px 20px;

min-height:auto;

}

.mo-store-logo{

width:120px;

height:120px;

}

.mo-store-info h1{

font-size:30px;

}

.mo-store-info p{

font-size:16px;

}

.mo-store-stats{

justify-content:center;

}

.mo-store-stats span{

width:100%;

max-width:260px;

text-align:center;

}

.mo-store-button{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 26px;

margin-bottom:28px;

background:#0F9D58;

color:#fff;

text-decoration:none;

border-radius:12px;

font-weight:700;

transition:.30s;

}

.mo-store-button:hover{

background:#087a43;

transform:translateY(-2px);

}

}

/*--------------------------------------------------------------
# Store Actions
--------------------------------------------------------------*/

.mo-store-actions{

	display:flex;

	gap:16px;

	flex-wrap:wrap;

	margin:28px 0;

}

.mo-store-button{

	display:inline-flex;

	align-items:center;

	justify-content:center;

	padding:14px 26px;

	background:#0F9D58;

	color:#fff;

	border-radius:12px;

	font-weight:700;

	text-decoration:none;

	transition:.30s;

}

.mo-store-button:hover{

	background:#087a43;

	color:#fff;

}

.mo-store-button-light{

	background:#fff;

	color:#222;

}

.mo-store-button-light:hover{

	background:#f3f3f3;

	color:#222;

}

@media (max-width:768px){

	.mo-store-actions{

		justify-content:center;

	}

}

/*--------------------------------------------------------------
# Hero Features
# Version 0.6.3
--------------------------------------------------------------*/

.mo-store-features{

	display:flex;
	flex-wrap:wrap;
	gap:14px;
	margin-top:28px;

}

.mo-store-features span{

	display:flex;
	align-items:center;

	padding:10px 18px;

	background:rgba(255,255,255,.12);

	backdrop-filter:blur(8px);

	border:1px solid rgba(255,255,255,.18);

	border-radius:999px;

	color:#fff;

	font-size:14px;

	font-weight:600;

	transition:.25s;

}

.mo-store-features span:hover{

	background:rgba(255,255,255,.22);

	transform:translateY(-2px);

}