/* =====================================================
   BRAND PAGE HERO
===================================================== */

.oreli-page-hero{
padding:60px 20px 40px;
background:#faf7fb;
text-align:center;
width:100vw;
margin-left:calc(50% - 50vw);
}

.oreli-page-hero .container{
max-width:1200px;
margin:auto;
text-align:center;
}

.oreli-page-hero .eyebrow{
color:#9b2c7a;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;
font-size:14px;
margin-bottom:10px;
}

.oreli-page-hero h1{
font-size:32px;
margin-bottom:10px;
}

.oreli-page-hero .sub{
max-width:700px;
margin:auto;
color:#666;
}

@media(max-width:768px){

.oreli-page-hero{
padding:40px 20px 30px;
}

.oreli-page-hero h1{
font-size:26px;
}

}


/* =====================================================
   CTA BUTTONS
===================================================== */

.oreli-btn-wrap{
margin-top:36px;
display:flex;
gap:14px;
justify-content:center;
flex-wrap:wrap;
}

.oreli-btn{
display:inline-flex;
align-items:center;
justify-content:center;

padding:14px 34px;
border-radius:999px;

font-size:14px;
font-weight:600;
line-height:1;

color:#fff;
text-decoration:none;

background:linear-gradient(90deg,#d0009e,#880063);

gap:10px;
position:relative;

transition:.25s ease;
}

.oreli-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(194,24,91,.25);
color:#fff;
}


/* OUTLINE BUTTON */

.oreli-btn-outline{
background:#fff;
color:#c2185b;
border:1px solid #c2185b;
}

.oreli-btn-outline:hover{
background:#c2185b;
color:#fff;
}


/* =====================================================
   BUTTON ARROW EFFECT
===================================================== */

/* arrow right */
.oreli-btn::after{
content:"→";
display:inline-block;
transition:.25s;
}

/* arrow left */
.oreli-btn::before{
content:"→";
display:inline-block;
opacity:0;
width:0;
transition:.25s;
}

/* hover swap arrows */

.oreli-btn:hover::before{
opacity:1;
width:auto;
}

.oreli-btn:hover::after{
opacity:0;
width:0;
}

.oreli-lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.85);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
pointer-events:none;
transition:.25s;
z-index:9999;
}

.oreli-lightbox.active{
opacity:1;
pointer-events:auto;
}

.oreli-lightbox img{
max-width:90%;
max-height:90%;
border-radius:12px;
}