@font-face {
    font-family: 'HyperwaveTwo';
    src: url('/file/boxology/HyperwaveTwo.otf');
}
:root {
    --bg-main: #000;
    --bg-gold: #E3CD6D;
    --bg-white: #fff;
}

body {
    font-family: "Open Sans", serif;
    font-weight: 400;
    background: #fff;
    margin: 0 auto;
	font-size: 16px;
	line-height: 1.5;
}

hr {
    border: 0;
    height: 1px;
}


/* Typography
----------------------------------------------------------------------------------------------------*/

a {
	color: #5b5a5a;
	text-decoration: underline;
}
a:hover {
	color: var(--bg-main);
}
p {
    font-family: "Open Sans", serif;
    font-weight: 400;
	margin: 0;
	color: var(--bg-main);
	font-size: 16px;
	line-height: 1.5;
}
h1, h1 a, .title1, .title1 a {
    font-family: "HyperwaveTwo", sans-serif;
	margin: 0;
	line-height: 1;
	font-weight: normal;
	font-size: 125px;
}
h2, h2 a, .title2, .title2 a {
    font-family: "HyperwaveTwo", sans-serif;
	margin: 0;
	line-height: 1;
	font-size: 125px;
	font-weight: normal;
}
h3, h3 a, .title3, .title3 a {
    font-family: "Open Sans", serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-size: 30px;
	font-weight: 400;
}
h4, h4 a, .title4, .title4 a {
    font-family: "Open Sans", serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h5, h5 a, .title5, .title5 a {
    font-family: "Open Sans", serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h6, h6 a, .title6, .title6 a {
    font-family: "Open Sans", serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
#announcementModal h2, #announcementModal h3 {
    font-size: 24px !important;
}

/* Forms
----------------------------------------------------------------------------------------------------*/

.le_form {
    margin-top: 10px;
}
.le_form label {
    font-weight: 400;
}
.le_form_name {
	font-size: 18px;
	margin: 0 0 10px 0;
}
.form-group {
	margin-bottom: 20px;
	position: relative;
}
.seFormButton, .wrapper input[type="submit"].seFormButton {
    border: 2px solid var(--bg-gold);
    background-color: rgba(255,255,255,0);
    color: var(--bg-main);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	padding: 8px 15px;
	margin: 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
	transition: all .2s ease;
}
.wrapper input[type="submit"]:hover {
	cursor: pointer;
	text-decoration: none;
    background-color: var(--bg-gold);
    color: var(--bg-main) !important;
}
.wrapper input[type="text"],.wrapper input[type="email"],.wrapper input[type="password"], .wrapper textarea {
	padding: 18px 15px;
	background-color: #fff;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius: 0;
	border: 1px solid var(--bg-gold);
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	box-shadow: none !important;
	margin: 5px 0 0 0;
}

/* -- Search Element --*/
.wrapper input[type="text"]#search_form_value {
	padding: 5px 10px;
}
#search_form_button {
    padding: 5px 15px;
    position: relative;
}

/* -- Hide input placehoder text on focus --*/
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */

:-webkit-input-placeholder {
    font-size: 13px; 
    color: #676767;
}
:-moz-placeholder { /* older Firefox*/
     font-size: 13px; 
    color: #676767;
}
:-moz-placeholder { /* Firefox 19+ */ 
    font-size: 13px; 
    color: #676767;
} 
:-ms-input-placeholder { 
    font-size: 13px; 
    color: #676767;
}
@media all and (min-width: 768px) {
    .form-inline .form-control {
        max-width: 150px;
    }
    .form-inline label.error {
        margin-top: 15px;
    }
}

/* ---- Form Alerts --- */
.le_form_container .error {
    color: #000;
    padding: 3px 8px;
    background-color: #fdcece;
}
.form-inline .no-labels label.error,.no-labels label.error {
    display:block !important;
}
.form-inline label.error {
    display:block;
    position: absolute;
    color: red;
    background: pink;
    padding: 2px 3px;
    border-radius: 2px;
    z-index: 2;
    color: #cd1719;
    font-size: 12px;
}
.recaptcha-terms {
    padding: 0 !important;
    margin: -20px 0 !important;
}
.footer-form .recaptcha-terms, .footer-form .recaptcha-terms a {
    color: #fff;
}
.footer-form input[type="text"], .footer-form input[type="email"], .footer-form input[type="password"], .footer-form textarea {
    background: rgba(255,255,255, 0) !important;
    border: 1px solid var(--bg-white);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.footer-form input[type="submit"].seFormButton {
    color: #fff;
    padding: 6px 15px;
}
.footer-form input[type="submit"].seFormButton:hover {
    color: #000 !important;
}
.footer-form :-webkit-input-placeholder {
    color: var(--bg-white);
}
.footer-form :-moz-placeholder { /* older Firefox*/
    color: var(--bg-white);
}
.footer-form :-moz-placeholder { /* Firefox 19+ */ 
    color: var(--bg-white);
} 
.footer-form :-ms-input-placeholder { 
    color: var(--bg-white);
}

/* Buttons
----------------------------------------------------------------------------------------------------*/

.se_button a, a.se_button {
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	padding: 8px 25px;
	border: 2px solid var(--bg-gold);
	color: var(--bg-white);
	text-decoration: none;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.se_button a:hover, a:hover.se_button {
    text-decoration: none;
    background-color: var(--bg-gold);
    color: var(--bg-main) !important;
}
.se_button.button1 a, a.se_button.button1 {
    margin-top: 10px;
}
.se_button.button2 a, a.se_button.button2 {
    background-color: #fff;
    color: #000;
    margin-top: 10px;
}
.se_button.button2 a:hover, a:hover.se_button.button2 {
    background-color: var(--bg-gold);
    color: var(--bg-main) !important;
}
.se_button.fullwidthButton a, a.se_button.fullwidthButton {
    display: block;
    text-align: center;
}
.se_button.largeButton a, a.se_button.largeButton {
	padding: 20px 35px;
}

/* Gallery
----------------------------------------------------------------------------------------------------*/

#lightbox-container-image-data-box {
    max-width: 95% !important;
}
#aurora_page_wrapper {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}
#lightbox-container-image-box {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    height: auto !important;
}
#lightbox-container-image-box img {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}
#lightbox-container-image {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}
#lightbox-container-image img {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}


/* Site Branding
----------------------------------------------------------------------------------------------------*/
.se_siteBranding {
    line-height:1;
    padding: 0;
}
.se_siteBranding img {
    max-width: 60px;
    height: auto;
    padding-top: 0;
}
.se_siteBranding a {
	word-break: break-word;
	max-width: 100%;
}
.se_siteBranding a:hover {
    text-decoration: none;
}
.le_logo_text {
    line-height: 1.4;
}

/* CSS
----------------------------------------------------------------------------------------------------*/

.whitetext h1, .whitetext h2, .whitetext h3, .whitetext h4, .whitetext h5, .whitetext h6, .whitetext p, .whitetext {
    color: #ffffff;
}
.whitetext h1 a, .whitetext h2 a, .whitetext h3 a, .whitetext h4 a, .whitetext h5 a, .whitetext h6 a, .whitetext p a, .whitetext a {
    color: #ffffff;
}
.no-gutters {
    padding: 0;
}
.less-gutters {
    padding: 0;
}

.CustomColor1  {
    color: var(--bg-main);
}

.CustomColor2  {
    color: var(--bg-gold);
}

.CustomColor3  {
    color: var(--bg-white);
}

/* Word animation */
.word {
    display: inline-block;
    opacity: 0;
    text-align: center;
    padding: 0 10px;
    color: var(--bg-main);
    font-size: 175px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    font-family: "HyperwaveTwo", sans-serif;
    animation: fadeIn 1s forwards;
}
/* Keyframe for word fade-in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* Word-by-word delay */
.word:nth-child(1) {
    animation-delay: 1s;
}
.word:nth-child(2) {
    animation-delay: 2s;
}
.word:nth-child(3) {
    animation-delay: 3s;
}
.banner-photos {
    position: relative;
    /*z-index: 2;*/
}
.banner-logo {
    position: absolute;
    top: 0;
    /*left: 50%;*/
    /*right: 50%;*/
    margin: 0 auto;
    left: 0;
    right: 0;
}
.banner-logo img {
    width: auto;
    height: 100vh;
}
.black-box {
    height: 150px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    background: #000;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.black-box p:before {
    content:url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/checkmark-circle.svg);
    position: relative;
    display: block;
    width: 20px;
    height: auto;
    margin: 0 auto 5px auto;
}
.black-box p {
    color: #fff;
}
.container-section {
    padding: 0 5%;
}
.cta {
    position: relative;
    height: 100vh;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 40px;
    bottom: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.cta:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-transparent-x.svg);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-position: top center;*/
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
.cta h2 {
    position: absolute;
    bottom: 25px;
    margin: 0 auto;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 130px;
    line-height: 1;
}
.cta p {
    display: none;
    color: #fff;
}
.cta img {
    width: 125px;
    height: auto;
    display: none;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.cta:hover h2 {
    position: relative;
    bottom: 0;
    margin-bottom: -15px;
}
.cta:hover img, .cta:hover p {
    display: block;
}
.cta .se_button.button1 a, .cta a.se_button.button1 {
    margin: 0;
}
.price-title {
    margin-bottom: 50px;
}
.price-title h2 {
    color: var(--bg-gold);
    font-size: 70px;
    line-height: 1;
    margin-bottom: -25px;
}
.price-title h3 {
    font-size: 75px;
    font-weight: 700;
    margin: 0;
}
.price-title p {
    font-size: 20px;
}
.price-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-transparent-x.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--bg-main);
    height: 450px;
    position: relative;
    padding: 50px 30px 50px 30px;
    margin-bottom: 25px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.price-box h3 {
    color: var(--bg-white);
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
}
.price-box h4 {
    color: var(--bg-gold);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    display: block;
}
.price-box h4::before {
    content: '';
    position: absolute;
    top: 50%; /* Center the slash vertically */
    width: 150px;
    height: 2px; /* Thickness of the slash */
    background: var(--bg-gold); /* Slash color */
    transform: rotate(5deg); /* Diagonal rotation */
    transform-origin: center;
}
.price-box h5 {
    color: var(--bg-gold);
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    display: block;
    text-transform: uppercase;
}
.price-box ul { 
    padding-left: 20px; 
    list-style:none; 
}
.price-box ul li { 
    margin-bottom:10px; 
    color: #fff;
    font-size: 14px;
}
.price-box ul li:before {    
    content:url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/checkmark-circle.svg);
    width: 15px;
    height: auto;
    display: inline-block;
    margin:0 5px 0 -20px;
}
.price-box .se_button.button1 a, .price-box a.se_button.button1 {
    position: absolute;
    bottom: 50px;
    margin: 0 auto;
    display: block;
    text-align: center;
    left: 0;
    right: 0;
    width: 170px;
    font-size: 18px;
}
.home-p h3 {
    font-size: 50px;
    text-transform: uppercase;
}
.price-ribbon:before {    
    content:url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/yellow-ribbon_copy1.svg);
    position: absolute;
    top: -12px;
    right: -12px;
    width: 125px;
    height: auto;
    display: inline-block;
}
.staffbox {
    margin-bottom: 25px;
}
.staffbox h2 {
    font-size: 36px;
    margin-top: 10px;
}
.checklist ul { 
    list-style: none; 
    padding-left: 45px;
}
.checklist ul li { 
    margin-bottom: 20px; 
    font-size: 16px;
}
.checklist ul li:before {    
    content:url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/checkmark-circle.svg);
    width: 20px;
    height: auto;
    display: inline-block;
    margin: 2px 10px 0 -35px;
    position: absolute;
}
.check-black-box {
    background: #000;
    padding: 50px 30px;
    margin-bottom: 25px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.icon-text {
    margin-bottom: 25px;
}
.icon-text h3 {
    margin-top: 10px;
    font-size: 20px;
    text-transform: uppercase;
}
.font-change {
    font-family: "HyperwaveTwo", sans-serif !important;
    font-size: 24px;
    padding: 0 3px;
}

/* Expand
----------------------------------------------------------------------------------------------------*/
.expand {
    position: relative;
}
.expand h3 {
    position: relative; 
    font-size: 20px;
    line-height: 1.4 !important;
    margin-bottom: 15px;
	padding: 8px 25px;
	border: 2px solid var(--bg-gold);
	color: var(--bg-main);
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.expand h3:after {
    content: '+';
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    top: 10px;
    right: 10px;
    float: right;
    font-size: 25px;
    line-height: 1;
    color: var(--bg-main);
    display: inline-block;
    position: absolute;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.expand h3.active {
    border: 2px solid var(--bg-main);
}
.expand h3:hover {
    border: 2px solid var(--bg-main);
    cursor: pointer;
}
.expand h3.active:after {
    content: '-';
    font-size: 36px;
    line-height: 1;
    top: 0;
}
.expand p {
    margin-bottom: 20px;
    padding-left: 30px;
}

/* Weekly Schedule
----------------------------------------------------------------------------------------------------*/
#le_mb_list_schedule {
    position: relative !important;
    width: 100% !important;
}
.schedule_date_range, #back_sched, #forward_sched {
    font-size: 24px !important;
    font-family: "Open Sans", serif;
}
.mb_listview_date {
    font-family: "Open Sans", serif;
}
.mb_listview_date .sched_loc_name {
    display: none;
}
.schedule_filters {
    width: 100% !important;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.schedule_filters .selects {
    height: 30px !important;
}
.schedule_filters .dropdowns:first-of-type {
    display: none;
}
#date_filter {
    height: 30px !important;
}
#printview {
    background: #efefef !important;
    color: #000 !important;
    padding: 6px 10px !important;
    text-transform: uppercase;
    display: inline-block !important;
    margin-left: 10px !important;
}
#printview:hover {
    background: #000 !important;
    color: #fff !important;
    text-decoration: none;
}
.mbHeaderBar {
    background: #000 !important;
    color: #fff !important;
    padding: 5px 0 !important;
    height: 45px !important;
    border: 0 !important;
    margin-top: 10px !important;
    font-weight: 400 !important;
}
.mb_schedule tr:nth-of-type(even) {
    background-color: #ededee !important;
}
.row_class {
    padding-left: 0 !important;
    width: 20% !important;
}
.title_staff {
    padding-left: 4% !important;
}
.capacity {
    margin-top: 10px !important;
}
.mb_schedule .row_button {
    vertical-align: middle !important;
    padding: 15px 0;
}
.row_date, .row_class, .row_staff, .row_button {
    padding-top: 15px !important;
}
    
/* Mobile Schedule
----------------------------------------------------------------------------------------------------*/
@media (max-width: 992px) {
    .mb_mobilebar {
        background: #fff !important;
        padding: 10px 15px !important;
    }
    .mb_gray_box {
        width: 100% !important;
    }
    .title_date {
        background-color: #000 !important;
        color: #fff !important;
        padding: 10px !important;
        width: 100% !important;
        margin: 10px 0 !important;
    }
    .mb_mobilebar_schedulebar_time {
        width: 100% !important;
        padding: 10px 0 0 0 !important;
        font-size: 16px !important;
    }
    .mb_mobilebar_schedulebar_classname {
        width: 100% !important;
    }
    .mb_mobile_classname a, .mb_le_staff_firstname, .mb_le_staff_lastname {
        color: #000 !important;
    }
    .mb_mobilebar_schedulebar_button {
        float: left !important;
        width: 100% !important;
        padding: 10px 0 !important;
        text-align: left !important;
    }
    .mb_mobilebar_schedulebar_button .signup {
        margin-left: -7px !important;
    }
    .mb_mobilebar a {
        color: #000 !important;
    }
    #locations, #sessions, #trainers, #service_categories {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .mb_gray_box selects, .mb_gray_box .dropdowns {
        width: 100% !important;
    }
}

/* Responsive Schedule
----------------------------------------------------------------------------------------------------*/
.week-view-ns .ns-calendar .cal-block-date {
    position: relative !important;
    background-color: #bcbcba;
    color: #ffffff !important;
    padding: 10px !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.week-view-ns .ns-calendar .cal-block  {
    background: #fff !important;
}
.events .event-time {
    display: none !important;
}
.today {
    background-color: #fff !important;
}
.today .cal-block-date {
    background-color: #000!important;
    padding-top: 30px !important;
}
.event-title:hover {
    color: #000 !important;
    cursor: auto;
}
.today {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(173,171,173,1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(173,171,173,1);
    box-shadow: 0px 0px 15px 0px rgba(173,171,173,1);
    background-color: #ffffff;
}
.week-view-ns .ns-calendar .cal-block-date .cal-block-day, .week-view-ns .ns-calendar .cal-block-date .day-number, .date_range_title {
    font-weight: 300 !important;
}
.week-view-ns .ns-calendar .event-title {
    width: 100% !important;
}
.week-view-ns .ns-calendar .events {
    text-align: center !important;
}
.week-view-ns .ns-calendar .events li:nth-of-type(even) {
    background-color: #efeeee !important;
}
.detail-col-left:hover, .capacity-info:hover, .cal_class_name:hover, .detail-row:hover {
    cursor: auto;
}
@media (max-width: 768px) {
    .week-view-ns .ns-calendar .full-event-details .detail-row .detail-col-right {
        text-align: center !important;
    }
}

/* MB Enrollments
----------------------------------------------------------------------------------------------------*/

.mb_enrollment_dates {
    background-color: #efefef;
    color: #000;
    padding: 12px 20px 0 20px;
    font-size: 25px !important;
}
.enrollment_box, .course_information, .enrollment_in_course {
    border: 2px solid #efefef !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
}
.enrollments_date_range {
    padding-top: 10px;
}
.signup_class {
    margin-left: 0 !important;
    margin-top: 20px !important;
}
.prev_date_arrows a {
    color: #000 !important;
}
.next_date_arrows a {
    color: #000 !important;
}
.right.bold_date {
    float: left !important;
    width: 100% !important;
}

/* Staff Page
----------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) { 
    .staff_style .staff_side {
        display: grid;
        grid-template-columns: 32% 32% 32%;
        grid-gap: 15px;
    }
}
@media (min-width: 992px) { 
    .staff_style .staff_side {
        display: grid;
        grid-template-columns: 24% 24% 24% 24%;
        grid-gap: 15px;
    }
}
.staff_style .staff_side .clear {
    display: none !important;
}
.staff_style .page_stuff, .staff_bio {
    display: none !important;
}
.staff_style .staff_img {
    display: block;
    position: relative;
    padding-top: 100%;
    background-color: #efefef;
    margin-bottom: 40px;
}
.staff_style .staff_img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left;
    border: 0 !important;
}
.staff_style .staff_img img:hover {
    opacity: .5;
}
.staff_style .staff_img em {
    display: none;
}
.staff_style .staff_info {
    position: relative;
}
.staff_style .staff_name {
    text-align: center !important;
    padding: 20px 10px 5px 10px;
    color: #000;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}
.staff_style .staff_name a {
    color: #000;
    font-size: 20px;
}
@media (max-width: 768px) { 
    .staff_style .staff_img {
        margin-bottom: 70px;
    }
    .staff_style .staff_name {
        bottom: -45px;
    }
}

/* Blog
----------------------------------------------------------------------------------------------------*/
.blog_post_listing {
    padding: 0 !important;
    border: 1px solid #dddddd;
    justify-content: start !important;
}
.blog_post_listing_title_link {
    font-size: 24px;
}
.blog_post_listing .box-top {
    padding: 20px;
}
.blog_post_listing .title-flex, .blog_post_listing .title-flex h3 {
    margin-bottom: 0 !important;
}
.blog_post_listing .blog_post_listing_footer_section {
    display: none;
}
.feature_blog_text {
    height: 57px;
    overflow: hidden;
}
#blog_post_listing .feature_blog_text {
    float: none;
}
a.read_more_link {
    display: inline-block !important;
    text-transform: uppercase;
    width: 130px;
}
.le-logged-in #blog_post:before {
    content: 'Click on dashboard icon in top black bar to edit this page';
    border-radius: 2px;
    background: rgba(199,232,42,.2);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    display: block;
}
.le-logged-in #blog_post_listing:before {
    content: 'Click on dashboard icon in top black bar to edit this page';
    border-radius: 2px;
    background: rgba(199,232,42,.2);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    display: block;
}

/* Recipe
----------------------------------------------------------------------------------------------------*/
.le-logged-in .le-recipe-app-title:before {
    content: 'Click on dashboard icon in top black bar to edit this page';
    border-radius: 2px;
    background: rgba(199,232,42,.2);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    display: block;
}
/*Hide Recipe Categories on mobile */
.le-recipe-categories-wrap {
    display: none;
}
@media (min-width: 768px) {
    .le-recipe-categories-wrap {
        display: block;
    }
}

/* Wrapper
----------------------------------------------------------------------------------------------------*/

.wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.le-logged-in .page-wrapper {
    position: relative;
    top: 40px;
}
.se_WrapperContent {
    padding-top: 40px;
}

/* Header
----------------------------------------------------------------------------------------------------*/
.header {
	padding: 10px 30px;
	background: rgba(0,0,0,.7);
	display: none;
}
.header a {
    color: var(--bg-white);
    text-transform: uppercase;
    text-decoration: none;
}
.header a:hover {
    color: var(--bg-gold);
}
.header-right {
    text-align: right;
}
.header-right .se_button.button1 a, .header-right a.se_button.button1 {
    margin: 0 0 0 15px;
    padding: 5px 15px;
}
.headertop {
    position: fixed;
    top: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    z-index: 3;
}
.header-right-text {
    padding-right: 40px;
}

/* Menu
----------------------------------------------------------------------------------------------------*/
.navicon {
    color: var(--bg-gold);
    position: absolute;
    top: -2px;
    right: 10px;
    line-height: 45px;
    height: 45px;
    text-transform: uppercase;
    background: transparent !important;
}
.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    top: 0;
    right: 0;
    font-size: 30px;
}
.OpenMobileMenu .navicon:after {
    content: '\f00d';
}
.navicon:hover {
    cursor: pointer;
}
.se_menu {
    background-color: rgba(0, 0, 0, 1);
    position: fixed;
    height: 100vh;
    width: 100%;
    padding: 30px 0 0 20px;
    top: -150%;
    left: 0;
    right: 0;
    text-align: center;
    transition: top .3s ease;
    z-index: -1;
}
.MainMenu {
    padding-top: 100px;
}
.OpenMobileMenu .se_menu {
    top: 0;
}
.le_menu_level_container {
	position: relative;
}
.MainMenu li {
    display: block;
    text-align: center;
    width: 100%;
}
.MainMenu li.le_menuitem_level_0 {
    padding: 0;
    list-style: none !important;
    list-style-type: none !important;
}
.MainMenu li.le_menuitem_level_0 a {
    font-family: "Open Sans", serif;
    display: block;
    color: #fff;
    padding-bottom: 20px;
    font-size: 24px;
}
.MainMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-gold);
}
.MainMenu ul.le_menu_level_1 {
    padding: 0;
}
.MainMenu li.le_menuitem_level_0.hasChild > a:after, .MainMenu li.le_menuitem_level_1.hasChild > a:after {
    display:inline-block;
    position: relative;
    left: 5px;
    content: "+";
    color: #999;
	height: 0;
	width: 0;
}
.MainMenu li.hasChild > a.active-mobile-parent:after {
    content:"-";
}
.MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1, .MainMenu li.le_menuitem_level_1.hasChild ul.le_menu_level_2 {
    height: 0;
    visibility: hidden;
    /*opacity:0;*/
    transition: all .3s ease;
}
.MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1.open-mobile-sub, .MainMenu li.le_menuitem_level_1.hasChild ul.le_menu_level_2.open-mobile-sub {
    height: auto;
    visibility: visible;
    /*opacity: 1;*/
}
.MainMenu .le_menu_level_1_container {
    position: relative;
}
.MainMenu .le_menu_level_2_container {
	left: 0;
	margin-top: 0;
}
.MainMenu ul.le_menu_level_2 {
	position: relative;
	left: 0;
}

/* FooterMenu
----------------------------------------------------------------------------------------------------*/
.FooterMenu {
    display: inline-block;
    text-align: right;
    padding-top: 25px;
}
.FooterMenu ul {
    margin: 0;
    padding: 0;
}
.FooterMenu li {
	list-style: none;
	list-style-type: none;
	position: relative;
}
.FooterMenu li.le_menuitem_level_0 {
	display: inline-block;
}
.FooterMenu li.le_menuitem_level_0 a {
    color: var(--bg-white);
    display: block;
    position: relative;
    padding: 0 20px;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.FooterMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-gold);
}

/* Main Content
----------------------------------------------------------------------------------------------------*/
.content {
	padding: 0;
}
.htmlSlide {
    width: 100%!important;
    max-width: 100%!important;
}
.bx-viewport {
    padding-bottom: 125px !important;
}

/* Footer
----------------------------------------------------------------------------------------------------*/

.footer {
    background-color: var(--bg-main);
    clear: both;
	padding: 50px 0 75px 0;
}
.footer p {
    color: #fff;
    font-size: 14px;
}
.footer a {
    color: #ccc9c9;
    text-decoration: none;
}
.footer a:hover {
    color: var(--bg-gold);
}
.se_social {
    text-align: right;
    display: inline-block;
    padding-left: 25px;
}
.se_social a {
    font-size: 18px;
    margin: 0 .15em;
    color: var(--bg-gold);
}
.se_social a:hover {
    color: var(--bg-white);
}
.footer-line {
    border-top: 1px solid var(--bg-white);
    margin-top: 50px;
    padding-top: 25px;
}
.footer-line {
    font-size: 12px;
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .header {
        padding: 10px 15px;
    }
    .se_siteBranding img {
        padding-top: 0;
        width: 50px;
    }
    .desktop-only {
        display: none;
    }
    .feature_blog_image {
        width: 100% !important;
        height: auto;
        float: none;
    }
    .feature_blog_image img {
        width: 100% !important;
        height: auto;
    }
    .blog_post_listing_title_section {
        text-align: center;
    }
    #blog_post_listing .feature_blog_image {
        float:none;
        text-align: center;
        margin-bottom: 20px;
    }
    #blog_post_listing .feature_blog_text {
        text-align: center;
        float: none;
    }
    #blog_post_listing a.read_more_link {
        display: table !important;
        margin: 15px auto 15px auto;
    }
    #blog_sidebar {
        float: left !important;
        width: 100% !important;
    }
    .blog_post_listing_sidebar {
        width: 100% !important;
    }
    .footer {
        text-align: center;
    }
    .header a {
        font-size: 12px;
    }
    .header-right .se_button.button1 a, .header-right a.se_button.button1 {
        margin: 0 0 0 5px;
        padding: 5px 10px;
    }
    .word {
        font-size: 55px;
        padding: 0 5px;
        margin-bottom: 10px;
    }
    .price-title h3 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    .cta {
        height: 700px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-transparent-x.svg);
        background-repeat: no-repeat;
        background-size: cover;
        border-bottom: 4px solid #fff;
    }
    .cta h2 {
        position: relative;
        bottom: 0;
    }
    .cta p, .cta img {
        display: block;
    }
    .black-box {
        margin-bottom: 10px;
    }
    .footer, .FooterMenu, .text-right {
        text-align: center;
    }
    .FooterMenu li.le_menuitem_level_0 a {
        text-align: center;
        font-size: 12px;
        padding: 0 10px;
    }
    .se_social {
        padding: 10px 0 0 0;
    }
    .footer-form input[type="submit"].seFormButton {
        width: 100%;
        position: relative;
        margin-top: -20px;
    }
    .footer-form .recaptcha-terms {
        margin-top: -10px !important;
    }
    .home-p h3 {
        font-size: 24px;
    }
    h1, h1 a, .title1, .title1 a {
        font-size: 60px !important;
    }
    h2, h2 a, .title2, .title2 a {
        font-size: 50px !important;
    }
    .price-title h2 {
        font-size: 30px !important;
        margin-bottom: -5px;
    }
    .git-form h2 {
        font-size: 30px !important;
        margin: 0 !important;
    }
    .navicon {
        top: -8px;
    }
    .navicon:after {
        font-size: 26px;
    }
    .header-right-text {
        padding-right: 30px;
    }
    .banner-logo img {
        height: 250px !important;
        width: auto !important;
    }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .form-inline {
        padding: 0;
    }
    .form-inline .form-control {
        min-width: 250px;
        max-width: 250px;
        width: 250px;
    }
    .form-inline input[type="text"], .form-inline input[type="email"], .form-inline input[type="password"], .form-inline textarea {
        margin-bottom: -18px;
    }
    .footer-form {
        padding: 0;
    }
    .cta {
        height: 600px;
    }
    .big-p p {
        font-size: 24px;
    }
    .bigger-p p {
        font-size: 20px;
    }
    .mobile-break {
        display: none;
    }
    .price-box {
        height: 550px;
    }
    .price-box h4 {
        font-size: 20px !important;
    }
    .price-box h4::before {
        width: 130px;
    }
    .price-box h5 {
        font-size: 24px !important;
    }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .black-box {
        height: 175px;
    }
    .cta {
        height: 100vh;
        padding: 0 20px;
    }
    .footer-form {
        padding: 0 10%;
    }
    .row-icons {
        padding: 0 15%;
    }
    .row-same-height {
       display: flex;
       align-items:center;
    }
    .price-box {
        height: 450px;
    }
    .price-box h4 {
        font-size: 24px !important;
    }
    .price-box h4::before {
        width: 150px;
    }
    .price-box h5 {
        font-size: 32px !important;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .black-box {
        height: 160px;
    }
    .cta {
        padding: 0 40px;
    }
    .footer-form {
        padding: 0 15%;
    }
    .home-p p {
        font-size: 18px;
        line-height: 1.7;
    }
}


/* Resets
----------------------------------------------------------------------------------------------------*/

a#forgot_password_link {
    background: none !important;
    padding: 0 !important;
    line-height: 30px;
}

button::-moz-focus-inner,
	input[type="button"]::-moz-focus-inner,
	input[type="submit"]::-moz-focus-inner,
	input[type="reset"]::-moz-focus-inner {
	padding: 0 !important;
	border: 0 none !important;
}
img {
    max-width: 100%;
    height: auto;
}

/* ========================================== Theme Speficic UI Styles ========================================== */
.expander {
    visibility: hidden;
    position: fixed;
    z-index: 1001;
    top:40px;
    left:0;
    width: 0;
    height: 0;
    overflow: hidden;
    line-height: 26px;
    text-align: center;
    background: #537fbc;
    color: white;
    cursor: pointer;
    border-radius: 0 0 2px 0;
    transition: left .2s ease;
}
.expander:hover {
    background: #3e63b8;
}

.le-edit-open .expander,
.le-design-open .expander{
    left: 200px;
    visibility: visible;
    width: 26px;
    height: 26px;
}

.expander:before {
    display: block;
    font-family: "FontAwesome";
    content: '\f065';
    transform: rotate(90deg);
}
.expanded-view .expander {
    left:0;
}
.expanded-view .expander:before {
    content: '\f066';
}

/* --- Expanded View Toggles --- */
.aurora_side_bar_title {
    transition: left .2s ease;
}

.le-edit-open.expanded-view .aurora_side_bar_title,
.le-design-open.expanded-view .aurora_side_bar_title {
    position: relative;
    opacity:0;
    left: -200px;
}

.le-edit-open.expanded-view .showSB,
.le-design-open.expanded-view .showSB {
    opacity:0;
    left: -200px !important;
}

.le-edit-open.expanded-view #auroraContentContainer,
.le-design-open.expanded-view #auroraContentContainer{
    left: 0;
}

/* --- Helper Instructions when in edit mode --- */
.edit-instructions {
    display: none;
}
.le-edit-open .edit-instructions {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 2px;
    background: rgba(199,232,42,.2);
}
.le-edit-open .edit-instructions a{ 
    text-decoration: underline;
}
.le_draft_content, .le_hide_content {
    display: none;
}

/* -- Hide Options in Color in Design Tab -- */
.aurora_color-options .aurora_style-menu-inner h4.aurora_style-section-title:nth-of-type(4) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner h4.aurora_style-section-title:nth-of-type(9) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(18) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(19) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(20) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(21) {
    display: none !important;
}
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(35) {*/
/*    display: none !important;*/
/*}*/
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(36) {*/
/*    display: none !important;*/
/*}*/
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(37) {*/
/*    display: none !important;*/
/*}*/
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(40) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(41) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(42) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(43) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(44) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(45) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(46) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(47) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(48) {
    display: none !important;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
    min-height: 0px !important;
}
.le-edit-open .x-bknd {
    z-index: 1;
}
.le-edit-open .header {
    display: block;
}
.le-edit-open .x-bknd2 {
    z-index: -1;
}
.le-edit-open .headertop {
    position: relative !important;
}
.le-edit-open .banner-logo {
    top: 30px !important;
}
.le-edit-open .banner-logo img {
    position: relative !important;
}
.row_button a {
    color: #000 !important;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
.aurora_about #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 75px;
}
.aurora_about #le_section-one-area1 {
    padding-right: 10%;
    padding-left: 10%;
}
.aurora_contact #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 75px;
}
.aurora_contact #le_section-one-area1 {
    padding-right: 10%;
    padding-left: 10%;
}
.aurora_early-interest-list #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_early-interest-list #le_section-two-area1 {
    padding-right: 15%;
    padding-left: 15%;
}
.aurora_first-timers #le_section-five {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_first-timers #le_section-five-area6 {
    padding-right: 20%;
    padding-left: 20%;
}
.aurora_first-timers #le_section-four {
    background-color: rgb(0, 0, 0);
}
.aurora_first-timers #le_section-four-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 750px;
}
.aurora_first-timers #le_section-four-area2 {
    padding-right: 50px;
    padding-left: 25px;
}
.aurora_first-timers #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_first-timers #le_section-one-area1 {
    padding-right: 5%;
    padding-bottom: 50px;
    padding-left: 5%;
}
.aurora_first-timers #le_section-two {
}
.aurora_first-timers #le_section-two-area9 {
}
.aurora_first-timers-copy #le_section-five {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_first-timers-copy #le_section-five-area6 {
    padding-right: 20%;
    padding-left: 20%;
}
.aurora_first-timers-copy #le_section-four {
    background-color: rgb(0, 0, 0);
}
.aurora_first-timers-copy #le_section-four-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 750px;
}
.aurora_first-timers-copy #le_section-four-area2 {
    padding-right: 50px;
    padding-left: 25px;
}
.aurora_first-timers-copy #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_first-timers-copy #le_section-one-area1 {
    padding-right: 5%;
    padding-bottom: 50px;
    padding-left: 5%;
}
.aurora_first-timers-copy #le_section-two {
}
.aurora_first-timers-copy #le_section-two-area9 {
}
.aurora_founding-members #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_founding-members #le_section-two-area1 {
    padding-right: 15%;
    padding-left: 15%;
}
.aurora_free-consult #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_free-consult #le_section-two-area1 {
    padding-right: 15%;
    padding-left: 15%;
}
.aurora_free-consult #le_section-two-area2 {
    background-position: center center;
}
.aurora_free-consult #le_section-two-area3 {
    background-position: center center;
}
.aurora_free-consult #le_section-two-area4 {
    background-position: center center;
}
.aurora_free-consult #le_section-two-area5 {
    background-position: center center;
}
.aurora_home #le_section-five {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/yellow-boxing-hand-wrap.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_home #le_section-four {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_home #le_section-four-area5 {
    padding-top: 75px;
}
.aurora_home #le_section-one {
}
.aurora_home #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_home #le_section-one-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-center.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_home #le_section-one-content3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-right.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_home #le_section-three-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-three-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-center.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-three-content3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-right.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-two {
    padding-top: 100px;
    padding-bottom: 25px;
}
.aurora_home #le_section-two-area1 {
}
.aurora_home #le_section-two-area20 {
    padding-top: 60px;
}
.aurora_home-copy #le_section-five {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/yellow-boxing-hand-wrap.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_home-copy #le_section-four {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_home-copy #le_section-four-area5 {
    padding-top: 75px;
}
.aurora_home-copy #le_section-one {
}
.aurora_home-copy #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_home-copy #le_section-one-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-center.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_home-copy #le_section-one-content3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-right.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_home-copy #le_section-three-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home-copy #le_section-three-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-center.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home-copy #le_section-three-content3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-right.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home-copy #le_section-two {
    padding-top: 100px;
    padding-bottom: 25px;
}
.aurora_home-copy #le_section-two-area1 {
}
.aurora_home-copy #le_section-two-area20 {
    padding-top: 60px;
}
.aurora_landing #le_pop-up-button {
    background-color: rgb(255, 128, 0);
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
    background-position: center center;
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    font-family: 'Josefin Sans';
    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: rgb(255, 255, 255);
}
.aurora_landing #le_section-five {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/yellow-boxing-hand-wrap.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_landing #le_section-form-area1 {
}
.aurora_landing #le_section-four {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_landing #le_section-four-area1 {
}
.aurora_landing #le_section-four-area2 {
}
.aurora_landing #le_section-one {
}
.aurora_landing #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_landing #le_section-one-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-center.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_landing #le_section-one-content3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-right.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 100vh;
}
.aurora_landing #le_section-one-content4 {
    background-size: auto;
    padding-bottom: 0px;
}
.aurora_landing #le_section-three {
}
.aurora_landing #le_section-three-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_landing #le_section-three-content2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-center.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_landing #le_section-three-content3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-right.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_landing #le_section-two {
    padding-top: 25px;
    padding-bottom: 10px;
}
.aurora_landing #le_section-two-area1 {
    border-style: none;
    border-width: 0px;
    border-radius: 0px;
    margin-top: 0px;
    margin-bottom: 11px;
    padding-top: 0px;
    padding-right: 5px;
    padding-bottom: 0px;
    padding-left: 5px;
}
.aurora_landing #le_section-two-area20 {
    border-width: 0px;
    border-radius: 0px;
    margin-top: -58px;
    padding-top: 2px;
    padding-left: 0px;
}
.aurora_memberships #le_section-two {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 25px;
    padding-bottom: 100px;
}
.aurora_new-to-studio #le_section-five {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_new-to-studio #le_section-five-area6 {
    padding-right: 20%;
    padding-left: 20%;
}
.aurora_new-to-studio #le_section-four {
    background-color: rgb(0, 0, 0);
}
.aurora_new-to-studio #le_section-four-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/banner-img-left.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 750px;
}
.aurora_new-to-studio #le_section-four-area2 {
    padding-right: 50px;
    padding-left: 25px;
}
.aurora_new-to-studio #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_new-to-studio #le_section-one-area1 {
    padding-right: 5%;
    padding-bottom: 50px;
    padding-left: 5%;
}
.aurora_new-to-studio #le_section-two {
}
.aurora_new-to-studio #le_section-two-area9 {
}
.aurora_schedule #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 75px;
}
.aurora_schedule #le_section-one-area1 {
}
.aurora_terms-of-use #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/boxology/gold-x.svg);
    background-size: cover;
    background-position: top right;
    padding-top: 125px;
    padding-bottom: 75px;
}
.seFormButton {
}
.se_body,.se_bgColor_thumb,.se_bgImg_thumb {
}
.se_button a, a.se_button {
}
.se_button a:hover, a.se_button:hover {
}
.se_cta {
}
.se_cta .le_content a {
}
.se_cta .le_content a:hover {
}
.se_cta .le_content, .se_cta .le_content a {
}
.se_cta:hover {
}
.se_footer {
}
.se_footer a {
}
.se_footer a:hover {
}
.se_footer p, .se_footer h1, .se_footer h2, .se_footer h3, .se_footer h4, .se_footer h5, .se_footer  {
}
.se_header {
}
.se_header a {
}
.se_header a:hover {
}
.se_header p, .se_header h1, .se_header h2, .se_header h3, .se_header h4, .se_header h5, .se_header  {
}
.se_mainContent {
}
.se_menu {
}
.se_menu .le_menu_level_1_container, .se_menu ul.le_menu_level_2 {
}
.se_menu li.le_menuitem_level_0 a,.navicon {
    font-size: -10px;
}
.se_menu li.le_menuitem_level_0 a:hover {
}
.se_menu li.le_menuitem_level_1 a {
}
.se_menu li.le_menuitem_level_1 a:hover {
}
.se_siteBranding a {
    font-family: 'Josefin Sans';
    font-weight: bold;
}
.se_siteBranding:hover, .se_siteBranding a:hover {
}
.se_social a {
}
.se_social a:hover {
}
.se_tagline {
    font-family: 'Josefin Sans';
}
.se_wrapperContent a, .se_WrapperContent a, .se_mainContent a {
}
.se_wrapperContent a:hover, .se_WrapperContent a:hover,.se_mainContent a:hover {
}
.se_wrapperContent, .se_WrapperContent, .se_mainContent .le_content, .se_mainContent p, .se_mainCont {
}
a {
}
a:hover {
}
blockquote {
}
body .navicon {
}
h1, h1 a, .title1, .title1 a {
}
h2, h2 a, .title2, .title2 a {
}
h3, h3 a, .title3, .title3 a {
}
h4, h4 a, .title4, .title4 a {
}
h5, h5 a, .title5, .title5 a {
}
h6, h6 a, .title6, .title6 a {
}
hr {
}
p, ul, ol, dl {
    font-family: 'Montserrat';
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_early-interest-list #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_early-interest-list #le_section-two-area1 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-five-area6 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-five-area6 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_first-timers-copy #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_founding-members #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_founding-members #le_section-two-area1 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-consult #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-consult #le_section-two-area1 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-consult #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-consult #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-consult #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-consult #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area20 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-three-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-three-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-three-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-copy #le_section-two-area20 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_pop-up-button {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-form-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-one-content4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-three-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-three-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-three-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing #le_section-two-area20 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-five-area6 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-to-studio #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_terms-of-use #le_section-one {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_early-interest-list #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_early-interest-list #le_section-two-area1 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-five-area6 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-five-area6 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_first-timers-copy #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_founding-members #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_founding-members #le_section-two-area1 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-consult #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-consult #le_section-two-area1 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-consult #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-consult #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-consult #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-consult #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area5 {
    padding-top: 125px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-content1 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-content2 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-content3 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area20 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-five {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-four-area5 {
    padding-top: 125px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-one-content1 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-one-content2 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-one-content3 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-three-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-three-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-three-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-copy #le_section-two-area20 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_pop-up-button {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-five {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-form-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-four {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-one-content1 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-one-content2 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-one-content3 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-one-content4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-three {
    margin-top: 0px;
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-three-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-three-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-three-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-two-area1 {
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing #le_section-two-area20 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-five-area6 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-to-studio #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_terms-of-use #le_section-one {
    }
}

/*-------------- Account Preset [Mobile] End----------------- */
/*-------------- Account Preset End ----------------- */
