/* HEADER */
.sePage .sePageMain {
 margin-top: 0px;
}
/* FOOTER */
.sePageFooter {
margin-top: 0px;
}


/* HERO */
.sePage .sePageLayout .sePageMain .se-hp-hero .content-block-column {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 position: relative;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 z-index: 1;
 padding: 14% 10%;
}

.sePage .sePageLayout .sePageMain .se-hp-hero::after {
 display: block;
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 z-index: 0;
 background-color: rgba(0, 0, 0, 0.25);
 padding: 0;
 width: 100%;
 content: '';
}

.sePage .sePageLayout .sePageMain .se-hp-hero {
 position: relative;
 overflow: hidden;
}

.sePage .sePageLayout .se-hp-hero h1,
.sePage .sePageLayout .se-hp-hero h2 {
 margin: 22px auto 7px;
}

.sePage .sePageLayout .se-hp-hero p {
 margin: 0px auto 18px;
 font-size: 20px;
}


/* BUTTONS */
.sePage .sePageLayout .sePageMain .btn:not(.btn-link),
.sePage .sePageLayout .sePageMain .btn-primary,
.sePage .sePageLayout .sePageMain a.btn.btn-primary,
.sePage .sePageLayout .sePageMain button.btn.btn-primary {
 margin-top: 11px;
 margin-bottom: 22px;
 border: 2px solid #f4a50b;
 border-radius: 4px;
 background-color: #f4a50b;
 padding: 12px 24px;
 color: #fff;
 font-family: proxima-nova, sans-serif;
 font-size: 14px;
 font-style: normal;
 font-weight: 700;
 letter-spacing: 0.75px;
 text-transform: uppercase;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
 transition: all 0.3s ease;
}

/* Hover and Active States */
.sePage .sePageLayout .sePageMain .btn:not(.btn-link):hover,
.sePage .sePageLayout .sePageMain .btn-primary:hover,
.sePage .sePageLayout .sePageMain a.btn.btn-primary:hover,
.sePage .sePageLayout .sePageMain button.btn.btn-primary:hover,
.sePage .sePageLayout .sePageMain .btn:not(.btn-link):active,
.sePage .sePageLayout .sePageMain .btn-primary:active,
.sePage .sePageLayout .sePageMain a.btn.btn-primary:active,
.sePage .sePageLayout .sePageMain button.btn.btn-primary:active {
 border: 2px solid #d16709;
 background-color: #d16709;
 color: #ffffff;
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
 text-decoration: none;
 transform: translateY(-2px);
}