@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: var(--bg-black);
    margin: 0 auto;
	font-size: 16px;
	line-height: 1.4;
}

:root {
    --bg-black: #000000;
    --bg-blue: #278AE1;
    --bg-white: #ffffff;
    --bg-dark-gray: #374047;
}

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

.mt10 {
    margin-top:10px;
}

.mt20 {
    margin-top:20px;
}
.mt30 {
    margin-top:30px;
}
.mt40 {
    margin-top:40px;
}
.mb10 {
    margin-bottom:10px;
}

.mb20 {
    margin-bottom:20px;
}
.mb30 {
    margin-bottom:30px;
}
.mb40 {
    margin-bottom:40px;
}



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

a {
	text-decoration: none;
	color: var(--bg-blue);
}
a:hover {
	text-decoration: none;
	color: var(--bg-dark-gray);
}
p {
    font-family: 'Lato', sans-serif;
	margin: 0;
	color: var(--bg-black);
	font-size: 16px;
	line-height: 1.4;
}
h1, h1 a, .title1, .title1 a {
    font-family: 'Lato', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: 700;
}
h2, h2 a, .title2, .title2 a {
    font-family: 'Lato', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: 700;
	font-size: 30px;
}
h3, h3 a, .title3, .title3 a {
    font-family: 'Lato', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.2;
	font-size: 26px;
}
h4, h4 a, .title4, .title4 a {
    font-family: 'Lato', sans-serif;
    color: #278AE1;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h5, h5 a, .title5, .title5 a {
    font-family: 'Lato', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h6, h6 a, .title6, .title6 a {
    font-family: 'Lato', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: 700;
}

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

.le_form {
    margin-top: 10px;
}
.le_form_name {
	font-size: 18px;
	margin: 0 0 10px 0;
}
.form-group {
	margin-bottom: 10px;
	position: relative;
}
.seFormButton, .wrapper input[type="submit"].seFormButton {
    font-family: 'Lato', sans-serif;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    background-color: var(--bg-blue);
    color: var(--bg-black);
	padding: 8px 25px;
	border: 0px solid transparent;
	margin: 0;
	text-transform: uppercase;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
	transition: all .2s ease;
}
.wrapper input[type="submit"]:hover {
	cursor: pointer;
}
.wrapper input[type="text"],.wrapper input[type="email"],.wrapper input[type="password"], .wrapper textarea {
    font-family: 'Lato', sans-serif;
	padding: 10px;
	background-color: #fff;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius: 0;
	border:1px solid rgb(210,210,210);
	box-shadow: none !important;
	margin: 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: 0 !important;
}


/* Buttons
----------------------------------------------------------------------------------------------------*/
.le_mb_button {
    font-family: 'Lato', sans-serif;
	position: relative;
	display: inline-block;
	padding: 7px 20px;
	border: 0px solid transparent;
	-webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    background-color: var(--bg-blue);
    color: var(--bg-black);
    margin-bottom: 15px;
}
.le_mb_button:hover {
    text-decoration: none;
    background-color: var(--bg-dark-gray);
    color: var(--bg-white);
}
.se_button a, a.se_button {
    font-family: 'Lato', sans-serif;
	position: relative;
	display: inline-block;
	margin-top: 15px;
	padding: 7px 20px;
	border: 0px solid transparent;
	-webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    background-color: var(--bg-blue);
    color: var(--bg-black);
}
.se_button a:hover, a:hover.se_button {
    text-decoration: none;
    background-color: var(--bg-dark-gray);
    color: var(--bg-white);
}
.se_button.button1 a, a.se_button.button1 {
    margin-top: 20px;
}
.se_button.button2 a, a.se_button.button2 {
    background-color: #fff;
    color: var(--bg-black);
    border: 3px solid var(--bg-blue);
    margin-top: 10px;
}
.se_button.button2 a:hover, a:hover.se_button.button2 {
    background-color: var(--bg-blue);
}
.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: 75px;
    height: auto;
}
.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;
}
.br-radius p img {
    border-radius: 20px;
}
.blue-line h3 {
    position: relative;
    display: block;
    font-size: 20px;
    color: #fff;
    padding-bottom: 20px;
    font-weight: 400;
}
.blue-line h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    background: var(--bg-blue);
    height: 3px;
    width: 50%;
    left: 25%;
    right: 25%;
    margin: 0 auto;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    animation: 2s linear 0s 1 animate;
}
@keyframes animate {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
.bottom-line {
    position: relative;
    display: block;
    font-size: 20px;
    color: #fff;
    padding-bottom: 20px;
    font-weight: 400;
}
.bottom-line:after {
    content: "";
    position: absolute;
    bottom: 0;
    background: var(--bg-blue);
    height: 3px;
    width: 100%;
    left: 0;
    margin: 0 auto;
    /*-webkit-transition-property: left, right;*/
    /*transition-property: left, right;*/
    /*-webkit-transition-duration: 0.3s;*/
    /*transition-duration: 0.3s;*/
    /*-webkit-transition-timing-function: ease-out;*/
    /*transition-timing-function: ease-out;*/
    animation: 2s linear 0s 1 animate2;
}
@keyframes animate2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.short-line h2 {
    position: relative;
    display: block;
    font-size: 18px;
    color: #73787C;
    text-transform: uppercase;
    padding-bottom: 10px;
    /*margin-bottom: 20px;*/
    font-weight: 700;
}
.short-line h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    background: var(--bg-blue);
    height: 3px;
    left: 0;
    width: 100px;
    margin: 0 auto;
    /*-webkit-transition-property: left, right;*/
    /*transition-property: left, right;*/
    /*-webkit-transition-duration: 0.3s;*/
    /*transition-duration: 0.3s;*/
    /*-webkit-transition-timing-function: ease-out;*/
    /*transition-timing-function: ease-out;*/
}
.short-line h2.active:after {
    opacity: 1;
    animation: 1s linear 0s 1 animate3;
}
@keyframes animate3 {
  0% {
    width: 0;
  }
  100% {
    width: 100px;
  }
}
.short-paragraph p {
    width: 65%;
}
.top-reveal {
    position: relative;
    opacity: 0;
}
.top-reveal.active {
    opacity: 1;
    animation: 1s ease 1 fade-top;
}
@keyframes fade-top {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.bottom-reveal {
    position: relative;
    opacity: 0;
}
.bottom-reveal.active {
    opacity: 1;
    animation: 1s ease 1 fade-bottom;
}


.banner h2, .topbanner h2 {
    font-size: 40px;
    margin: 25px 0 0 0;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.banner h1, .topbanner h1 {
    font-size: 65px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.round-corners img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    margin-top: 0px;
}
.round-corners .bx-pager.bx-default-pager a {
    background-color: #fff !important;
    border: 2px solid var(--bg-black);
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
}
.round-corners .bx-pager.bx-default-pager a:hover, .round-corners .bx-pager.bx-default-pager a.active {
    background-color: var(--bg-blue) !important;
    border: 2px solid var(--bg-blue);
}
.big-title h3 {
    font-size: 40px;
    margin-bottom: 15px;
}
.checklist ul { 
    padding-left: 40px; 
    list-style:none; 
}
.checklist ul li { 
    margin-bottom:10px;
    text-indent: -0.7em;
}
.checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin:0 10px 0 -15px;
    font-size: 18px;
    color: var(--bg-blue);
}
.checklist a {
    color: var(--bg-dark-gray);
    border-bottom: 1px solid var(--bg-dark-gray);
}

.cta h3 a, .cta-half h3 a {
    color: var(--bg-white);
    /*font-size: 40px;*/
    text-align: center;
    display: block;
    padding: 120px 10px;
    background: rgba(0,0,0,0.5);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 20px;
}
.cta-half h3 a  {
    padding: 75px 5px;
}
.cta h3 a:hover, .cta-half h3 a:hover {
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
}
.staff {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}
.staff img {
    width: 100%;
    height: auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.staff:hover img {
    opacity: .7;
}
.staff:hover:before {
    content: '\f002';
    font-family: 'FontAwesome';
    color: var(--bg-white);
    font-size: 24px;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}
.staff h3 {
    border-top: 3px solid var(--bg-blue);
    font-size: 22px;
    padding-top: 15px;
    margin: 10px 0 0 0;
}
.staff:hover h3 {
    border-top: 3px solid var(--bg-black);
}
.staff p {
    font-size: 14px;
}
.staff:hover p {
    color: var(--bg-blue);
}
.staff a {
    opacity: 0;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    right: 0;
    position: absolute;
}
.price-box h2 {
    background-color: var(--bg-black);
    color: #fff;
    display: block;
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
}
.price-title {
    margin-bottom: 25px;
}
.price-title h2 {
    color: var(--bg-blue);
    font-size: 36px;
}
.price-table .se_button.button1 a, .price-table a.se_button.button1 {
    margin: 10px 0 !important;
}
.price-table tr {
    border-bottom: 1px solid #e6e7e8;
}

/* Card
----------------------------------------------------------------------------------------------------*/

.sq-card  {
    background-color: var(--bg-white);
    padding: 40px 30px;
    margin-bottom: 25px;
    box-shadow: 0px 0px 20px #E6E6E6;
    border-radius: 25px;
    min-height: 250px;
    text-align: center;
    font-size: 18px;
}
.sq-card ul  {
    margin: 0px;
    padding: 0px;
}
.sq-card ul li  {
    list-style-type: none;
}
.sq-card .card-number  {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 15px;
}
.sq-card .card-title  {
    font-weight: 600;
    font-size: 1.15em;
    margin-bottom: 10px;
}



/* Home Appointments
----------------------------------------------------------------------------------------------------*/

.home-appointments {
    padding-top: 25px;
}
.home-appointments .appt_left_side {
    width: 100%;
}
.home-appointments h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
}
.home-appointments .choose_dates {
    color: var(--bg-black) !important;
    width: 100% !important;
}
.home-appointments #appts_v2_datepicker {
    width: 100% !important;
}
#results .bookit {
    background-color: var(--bg-blue) !important;
    color: var(--bg-black) !important;
    border-radius: 500px !important;
    border: 0 !important;
}

/* Home Menu
----------------------------------------------------------------------------------------------------*/

.HomeMenu {
    display: block;
    text-align: center;
}
.HomeMenu ul {
    margin: 0;
    padding: 0;
}
.HomeMenu li {
	list-style: none;
	list-style-type: none;
	position: relative;
	display: inline-block;
	border-right: 1px solid var(--bg-blue);
	margin-bottom: 15px;
}
.HomeMenu a {
    font-size: 18px;
    padding: 0 35px;
    text-transform: uppercase;
    color: var(--bg-black);
}
.HomeMenu a:hover {
    color: var(--bg-blue);
}
.HomeMenu li:last-of-type {
    padding-right: 0;
    border-right: 0 solid var(--bg-blue);
    
}

/* Expand
----------------------------------------------------------------------------------------------------*/
.expand {
    position: relative;
    margin-bottom: 30px;
}
.expand h6 {
    position: relative; 
    font-size: 18px;
    color: var(--bg-black);
    border-bottom: 2px solid var(--bg-blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 400;
}
.expand h6:after {
    content: '\f078';
    font-family: 'FontAwesome';
    top: 2px;
    right: 10px;
    float: right;
    font-size: 12px !important;
    line-height: 15px;
    color: var(--bg-black);
    display: inline-block;
    font-size: 12px !important;
    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 h6.active {
    color: var(--bg-blue);
    margin-bottom: 10px !important;
}
.expand h6.active:after {
    transform: rotate(-90deg);
}
.expand h6:hover {
    cursor: pointer;
    color: var(--bg-blue);
}
.expand p {
    padding: 0 10px;
}
.expand p:last-of-type {
    padding-bottom: 25px;
}

/* Weekly Schedule
----------------------------------------------------------------------------------------------------*/
#le_mb_list_schedule {
    position: relative !important;
    width: 100% !important;
}
.schedule_date_range, #back_sched, #forward_sched {
    font-size: 24px !important;
}
.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 .dropdowns:first-of-type {
    display: none !important;
}
.schedule_filters .selects {
    height: 40px !important;
}
#date_filter {
    height: 40px !important;
}
#printview {
    background-color: var(--bg-blue);
    color: var(--bg-black);
    padding: 8px 10px !important;
    text-transform: uppercase;
    display: inline-block !important;
    margin-left: 10px !important;
}
#printview:hover {
    background-color: var(--bg-dark-gray);
    color: var(--bg-white);
    text-decoration: none !important;
}
.mbHeaderBar {
    background-color: var(--bg-blue);
    color: var(--bg-black);
    padding: 8px 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;
}
.title_class {
    padding-left: 9% !important;
}
.row_class {
    padding-left: 4% !important;
    width: 20% !important;
}
.row_staff {
    padding-left: 9% !important;
}
.title_staff {
    padding-left: 14% !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;
}
.row_class a, .trainer_name a {
    color: var(--bg-black);
}
.row_class a:hover, .trainer_name a:hover {
    color: var(--bg-blue);
}
    
/* Mobile Schedule
----------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .le_mb_wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }
    .mb_mobilebar {
        background: #fff !important;
        padding: 10px 15px !important;
    }
    .mb_gray_box {
        width: 100% !important;
    }
    .title_date {
        background-color: var(--bg-blue);
        color: var(--bg-black) !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: var(--bg-blue);
    color: var(--bg-black);
    padding: 10px 20px 2px 20px;
    font-size: 25px !important;
    margin-bottom: 10px;
}
.enrollment_box, .enrollments_in_course_group {
    background-color: #fff;
    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;
}
.enrollment_box_text .signup {
    padding: 7px 20px;
	border: 0px solid transparent;
	-webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    background-color: var(--bg-blue);
    color: var(--bg-black);
}
.enrollment_box_text .signup:hover {
    background-color: var(--bg-dark-gray);
    color: var(--bg-white);
}
.enrollment_box .desc_text {
    clear: both;
    display: block;
    margin-bottom: 10px;
}
.main_course_image {
    width: 0 !important;
}
.course_information {
    border: 0 !important;
}
.course_title {
    margin-bottom: 20px;
    font-size: 25px;
}

/* 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;
}
.feature_blog_image {
    width: 100% !important;
}
.feature_blog_image img {
    width: 100% !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: 65px;
    overflow: hidden;
}
#blog_post_listing .feature_blog_text {
    float: none;
}
a.read_more_link {
    display: inline-block !important;
    text-transform: uppercase;
    width: 140px;
    margin: 5px 0 0 0 !important;
}
.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;
}
.box-top {
    padding: 30px;
}

.mb_loginelement_existingaccount {
    display: inline-flex !important;
    padding-top: 20px;
}
.mb_loginelement_existing_input input[type="text"], .mb_loginelement_existing_input input[type="email"], .mb_loginelement_existing_input input[type="password"], .mb_loginelement_existing_input textarea {
    padding: 6px 10px !important;
}
.mb_loginelement_existingaccount .mb_loginelement_existing_label {
    padding: 6px 5px 0 0;
}
.reset_label {
    margin-bottom: 20px !important;
    text-align: left !important;
}
.passwordreset submit {
    background-color: #000 !important;
    color: #fff !important;
}

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

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

/* Header
----------------------------------------------------------------------------------------------------*/
.header {
    background-color: var(--bg-black);
}

/* Top Menu
----------------------------------------------------------------------------------------------------*/
.TopMenu {
    padding-top: 5px;
}
.TopMenu ul {
	list-style: none;
    padding: 0;
    z-index: 1;
    float: right;
}
.TopMenu li {
	text-align: right;
    display: inline-block;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
  
.TopMenu li a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: var(--bg-white);
    font-weight: 400;
}
.TopMenu li a:hover {
    color: var(--bg-blue);
}
.TopMenu li:hover,
.TopMenu li:focus-within {
	color: var(--bg-blue);
	/*cursor: pointer;*/
}
.br-right  {
    border-right: 1px solid var(--bg-white);
}

/*.TopMenu li:focus-within a {*/
/*  outline: none;*/
/*}*/

.TopMenu ul li ul {
    min-width: 120%;
    width: 120%;
	background: var(--bg-blue);
	visibility: hidden;
    opacity: 0;
	position: absolute;
    transition: all 0.5s ease;
    margin-top: 40px;
	left: -15%;
	right: 0;
	padding: 40px 5% 40px 5%;
    display: block;
}
.TopMenu .dropdown li {
    text-align: center;
    /*font-size: 16px;*/
    /*line-height: 25px;*/
    color: var(--bg-white);
    padding: 5px;
}
.TopMenu .dropdown li a {
    font-size: 16px;
    line-height: 30px;
    padding: 0 !important;
    margin: 0 !important;
}
.TopMenu .dropdown li a:hover {
    color: var(--bg-black);
}
.TopMenu ul li:hover > ul,
.TopMenu ul li:focus-within > ul,
.TopMenu ul li ul:hover,
.TopMenu ul li ul:focus {
   visibility: visible;
   opacity: 1;
   display: block;
}
.TopMenu ul li ul li {
	clear: both;
    width: 100%;
}
.dropdown-icon:after {
    display: inline-block;
    position: relative;
    left: 6px;
    top: 0;
    content: '\f107';
    font-family: 'FontAwesome';
    color: var(--bg-white);
    font-size: 16px;
}

/* Menu
----------------------------------------------------------------------------------------------------*/
.MainMenu {
    display: block;
}
.MainMenu ul {
    margin: 0;
    padding: 0;
}
.MainMenu li {
	list-style: none;
	list-style-type: none;
	position: relative;
}
.MainMenu li.le_menuitem_level_0 {
	display: inline-block;
    padding: 8px 0 0 0;
}
.MainMenu li.le_menuitem_level_0 a {
    font-family: 'Lato', sans-serif;
    display: block;
    position: relative;
    margin: 10px 10px;
    line-height: 15px;
    color: var(--bg-white);
    font-size: 16px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.MainMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-blue);
}
.MainMenu li.le_menuitem_level_0 a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -10px;
    background: var(--bg-blue);
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.MainMenu li.le_menuitem_level_0 a:hover:before, .MainMenu li.le_menuitem_level_0 a:focus:before, .MainMenu li.le_menuitem_level_0 a:active:before {
    right: 0;
}
.Menu1 {
    border: 3px solid var(--bg-blue);
    padding: 8px 25px 10px 25px !important;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu1:before {
    height: 0 !important;
}
.Menu1:hover {
    background-color: var(--bg-blue);
    color: var(--bg-white) !important;
}
.Menu2 {
    border: 3px solid var(--bg-blue);
    background-color: var(--bg-blue);
    color: var(--bg-black) !important;
    padding: 8px 25px 10px 25px !important;
    margin-left: 15px !important;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu2:before {
    height: 0 !important;
}
.Menu2:hover {
    background-color: var(--bg-dark-gray);
    color: var(--bg-white) !important;
    border: 3px solid var(--bg-dark-gray);
}
.MainMenu .le_menu_level_1_container {
    position: absolute;
    left: 0;
    padding-top: 40px;
}
.MainMenu ul.le_menu_level_1 {
    background-color: var(--bg-black);
    position: relative;
    left: 0;
    z-index: 10;
    display: none;
    margin-left: 30px;
    padding: 10px;
    text-align: left;
    height: auto;
}
.MainMenu li.le_menuitem_level_0:hover ul.le_menu_level_1 {
	display: block;
}
.MainMenu li.le_menuitem_level_1 a {
    font-family: 'Lato', sans-serif;
    color: var(--bg-white);
	display: block;
	padding: 7px 10px;
	font-size: 14px;
	margin: 0 !important;
	text-decoration: none;
	text-transform: uppercase;
	min-width: 160px;
	line-height: 1em;
}
.MainMenu li.le_menuitem_level_1 a:hover {
    background-color: var(--bg-blue);
    color: var(--bg-white);
}
.MainMenu li.le_menuitem_level_1 a:before {
    height: 0 !important;
}
.MainMenu .le_menu_level_2_container {
    float: right;
	left: 100%;
	margin-top: -35px;
	padding: 0;
}
.MainMenu ul.le_menu_level_2 {
	position: absolute;
	right:0;
	left: 160px;
	z-index: 10;
	display: none;
	margin: 0;
	padding: 0;
	text-align: left;
}
.MainMenu li.le_menuitem_level_1:hover ul.le_menu_level_2 {
	display: block;
}
.navicon {
    position: relative;
    line-height: 45px;
    height: 45px;
    padding: 0 20px 0 0;
    text-transform: uppercase;
    background: transparent !important;
}
.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    color: var(--bg-white);
    top: 0;
    right: 0;
    font-size: 30px;
}
.OpenMobileMenu .navicon:after {
    content: '\f00d';
}
.navicon:hover {
    cursor: pointer;
}
@media (max-width: 991px) { 
    .OpenMobileMenu .wrapper {
        right:240px;
    }
    .se_menu {
        background-color: var(--bg-black);
        position: fixed;
        height: 100vh;
        width: 240px;
        padding: 30px 0 0 20px;
        top: 0;
        right:-240px;
        transition: right .3s ease;
    }
    .MainMenu {
        padding: 0;
    }
    .OpenMobileMenu .se_menu {
        right:0;
    }
    .le_menu_level_container {
    	position: relative;
    }
    .MainMenu li {
        display: block;
        text-align: left;
        width: 100%;
    }
    .MainMenu li.le_menuitem_level_0 {
        padding: 0;
        list-style: none !important;
	    list-style-type: none !important;
    }
    .MainMenu ul.le_menu_level_1 {
        padding: 0;
        margin-left: 10px;
    }
    .MainMenu .le_menu_level_1_container {
        padding-top: 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;
        display: none;
        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;
        display: block;
        padding: 0px 0px 10px 0px;
    }
    .MainMenu .le_menu_level_1_container {
        position: relative;
    }
    .MainMenu .le_menu_level_2_container {
    	left: 0;
    	margin-top: 0;
    	width: 100%;
    }
    .MainMenu ul.le_menu_level_2 {
    	position: relative;
    	left: 0;
    }
    .Menu1, .Menu2 {
        padding: 5px 25px 5px 25px !important;
        margin: 15px 0 0 0 !important;
        width: auto !important;
    }
}

/* 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-black);
    clear: both;
	padding: 50px 5% 50px 5%;
}
.footer p, .footer p a {
    color: var(--bg-white);
    font-size: 16px;
}
.footer h6 {
    color: var(--bg-white);
    margin-bottom: 10px;
    font-size: 18px;
}
.footer p a:hover {
    color: var(--bg-blue);
}
.footer-line {
    height: 3px;
    background-color: var(--bg-blue);
    margin: 20px 0 40px 0;
}
.se_social {
    text-align: right;
}
.se_social a {
    margin: 0 .15em;
    color: var(--bg-white);
}
.se_social a:hover {
    color: var(--bg-blue);
}
.FooterMenu a {
    display: block;
    margin-bottom: 10px;
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .header {
        padding: 10px 25px;
    }
    .desktop-only {
        display: none;
    }
    .feature_blog_image {
        height: auto;
        float: none;
    }
    .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;
    }
    .short-paragraph p {
        width: 100%;
    }
    .banner h2 {
        font-size: 30px;
        line-height: 1.3;
    }
    .banner h1 {
        font-size: 35px;
    }
    .HomeMenu li {
        border-right: 0 solid var(--bg-blue);
        border-bottom: 1px solid var(--bg-blue);
        padding-bottom: 10px;
        margin-bottom: 10px;
        display: block;
    }
    .HomeMenu li:last-of-type {
        border-bottom: 0 solid var(--bg-blue);
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .clear-block {
        clear: both;
    }
    .footer-right {
        margin: 0;
        padding: 30px 0 0 0;
    }
    .price-table td, .price-table th {
        display: block;
        clear: both;
        width: 100%;
    }
    .price-table td[data-th]:before {
        content: attr(data-th);
        float: left;
    }
    .price-table td:first-of-type {
        width: 50%;
        padding-top: 20px;
    }
    .price-table td:nth-child(3) {
        padding-bottom: 20px;
    }
    .mb_loginelement_existingaccount {
        display: block !important;
    }
    .mb_loginelement_existing_input, .mb_loginelement_existing_row {
        width: 100% !important;
    }
    #mb_loginelement_loginsignup input[type="text"], #mb_loginelement_loginsignup input[type="email"], #mb_loginelement_loginsignup input[type="password"], #mb_loginelement_loginsignup textarea {
        display: block;
        width: 100% !important;
    }
    .mb_loginelement_existing_row input[type="submit"].seFormButton {
        margin-top: 15px !important;
    }
    .enrollments_date_range {
        font-size: 18px !important;
    }
    .staff h3 {
        font-size: 16px;
    }
    .enrollment_filters .dropdowns, .enrollment_filters .selects {
        width: 100% !important;
        margin-bottom: 3px !important;
    }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .header {
        padding: 20px 25px;
    }
    .form-inline {
        padding: 0 10%;
    }
    .form-inline input[type="text"], .form-inline input[type="email"], .form-inline input[type="password"], .form-inline textarea {
        margin-bottom: -17px;
    }
    .HomeMenu a {
        font-size: 16px;
        padding: 0 20px;
    }
    .TopMenu li a {
        font-size: 16px;
    }
    .price-table td:first-of-type {
        width: 50%;
    }
    .price-table td:nth-child(3) {
        text-align: right;
    }
    .mb_loginelement_existingaccount .mb_loginelement_existing_label {
        margin-left: 10px !important;
    }
    .home-blog .blog_post_listing {
        flex-basis: calc(100% - 16px) !important;
    }
    .mb_loginelement_existing_input input[type="text"], .mb_loginelement_existing_input input[type="email"], .mb_loginelement_existing_input input[type="password"], .mb_loginelement_existing_input textarea {
        width: 170px !important;
    }
    .mbHeaderBar {
        font-size: 15px !important;
        height: 40px !important;
    }
}
@media (max-width: 992px) {
    .TopMenu {
        display: none;
    }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .se_menu {
        display: none;
    }
    .header {
    	padding: 20px 25px;
    }
    .navicon {
        display: none;
    }
    .MainMenu {
        text-align: right;
    }
    .MainMenu li.le_menuitem_level_0.hasChild > a:after {
        display:inline-block;
        position: relative;
        left: 6px;
        margin-right: 15px;
        top: -2px;
        font-family: "FontAwesome";
        content: '\f13a';
        font-size: 12px;
        color: var(--bg-white);
    	height: 0;
    	width: 0;
    }
    .MainMenu {
        margin-top: -10px;
    }
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 0 0 23px;
        font-size: 14px;
    }
    .TopMenu li a {
        margin: 0 0 0 25px;
        font-size: 14px;
    }
    .HomeMenu a {
        font-size: 16px;
        padding: 0 15px;
    }
    .row-same-height {
        display:table;
        width: 100%;
        margin: 0;
    }
    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"]{
        display: table-cell;
        float: none;
        vertical-align: middle;
        padding: 0;
        margin: 0;
    }
    .left-section {
        padding: 0 25px !important;
    }
    .home-blog .blog_post_listing {
        flex-basis: calc(33.3% - 16px) !important;
    }
    .TopMenu ul li ul {
        margin-top: 35px;
    }
    .dropdown-icon:after {
        font-size: 12px;
    }
    .clear-tablet {
        display: none;
    }
    .mbHeaderBar {
        font-size: 20px !important;
        height: 45px !important;
    }
}
@media (max-width: 1200px) {
    .desktop-break {
        display: none;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .header {
    	padding: 20px 5%;
    }
    .MainMenu {
        margin-top: 0;
    }
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 0 0 30px;
        font-size: 16px;
    }
    .TopMenu li a {
        margin: 0 0 0 35px;
        font-size: 16px;
    }
    .HomeMenu a {
        font-size: 16px;
        padding: 0 35px;
    }
    .left-section {
        padding: 0 100px !important;
    }
    .TopMenu ul li ul {
        margin-top: 40px;
    }
    .dropdown-icon:after {
        font-size: 16px;
    }
}
@media (min-width: 1400px) {
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 0 0 40px;
    }
    .TopMenu li a {
        margin: 0 0 0 40px;
    }
}


/* 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;
}

/* -- 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;
}
#book_modal .modal-body, #login_modal .modal-body {
    color: #000;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
.aurora_athletic-therapy #le_section-five {
}
.aurora_athletic-therapy #le_section-five-area1 {
}
.aurora_athletic-therapy #le_section-five-area2 {
}
.aurora_athletic-therapy #le_section-four {
}
.aurora_athletic-therapy #le_section-nine {
    background-color: rgba(0, 0, 0, 0.1);
    padding-bottom: 75px;
}
.aurora_athletic-therapy #le_section-nine-area1 {
    margin-top: 50px;
    margin-bottom: 25px;
}
.aurora_athletic-therapy #le_section-nine-area2 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_athletic-therapy #le_section-nine-area3 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_athletic-therapy #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_4518.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_athletic-therapy #le_section-one-content1 {
    background-size: cover;
    background-position: center center;
}
.aurora_athletic-therapy #le_section-three {
}
.aurora_athletic-therapy #le_section-three-area5 {
    padding-right: 0px;
}
.aurora_athletic-therapy #le_section-three-area6 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_athletic-therapy #le_section-three-area7 {
}
.aurora_athletic-therapy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_athletic-therapy #le_section-two-area6 {
}
.aurora_book-in-online #le_section-three {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_book-in-online #le_section-three-area1 {
    padding-bottom: 50px;
}
.aurora_book-in-online #le_section-two {
    margin-top: 100px;
    margin-bottom: 100px;
}
.aurora_book-in-online #le_section-two-area1 {
    background-color: rgb(55, 64, 71);
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 40px;
    padding-left: 50px;
}
.aurora_chiropractic #le_section-five {
}
.aurora_chiropractic #le_section-five-area1 {
}
.aurora_chiropractic #le_section-four {
    background-color: rgba(0, 0, 0, 0.1);
    padding-bottom: 50px;
}
.aurora_chiropractic #le_section-four-area1 {
    margin-top: 50px;
    margin-bottom: 25px;
}
.aurora_chiropractic #le_section-four-area2 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_chiropractic #le_section-four-area3 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_chiropractic #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-CHIROPRACTIC.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_chiropractic #le_section-three {
    margin-bottom: 75px;
}
.aurora_chiropractic #le_section-three-area6 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_chiropractic #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_contact-us #le_section-eight {
    margin-top: 50px;
    margin-bottom: 50px;
}
.aurora_contact-us #le_section-five {
}
.aurora_contact-us #le_section-four {
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_contact-us #le_section-four-area3 {
}
.aurora_contact-us #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/gym.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_contact-us #le_section-three {
    background-color: rgb(55, 64, 71);
    margin-top: 75px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_contact-us #le_section-three-area6 {
    margin-left: 100px;
}
.aurora_contact-us #le_section-two-area1 {
    margin-bottom: 75px;
    padding-top: 50px;
}
.aurora_contact-us #le_section-two-area2 {
    padding-bottom: 50px;
}
.aurora_contact-us #le_section-two-area3 {
    padding-bottom: 50px;
}
.aurora_cscs #le_section-five {
    margin-bottom: 75px;
}
.aurora_cscs #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_0981.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_cscs #le_section-five-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_cscs #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/20220430_Level103847.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_cscs #le_section-one-content1 {
    background-size: auto;
}
.aurora_cscs #le_section-seven {
    margin-bottom: 125px;
}
.aurora_cscs #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/20220430_Level103885.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 600px;
}
.aurora_cscs #le_section-seven-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_cscs #le_section-six {
    margin-bottom: 125px;
}
.aurora_cscs #le_section-six-area1 {
}
.aurora_cscs #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/20220430_Level104220.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_cscs #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_cscs #le_section-tweleve-area1 {
    margin-bottom: 75px;
}
.aurora_cscs #le_section-tweleve-area11 {
    margin-bottom: 75px;
}
.aurora_cscs #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_cscs #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_cscs-south-campus1 #le_section-five {
    margin-bottom: 75px;
}
.aurora_cscs-south-campus1 #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_5989.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_cscs-south-campus1 #le_section-five-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_cscs-south-campus1 #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_5881.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_cscs-south-campus1 #le_section-one-content1 {
    background-size: auto;
}
.aurora_cscs-south-campus1 #le_section-seven {
    margin-bottom: 125px;
}
.aurora_cscs-south-campus1 #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/13362_20241005_173412_411413382_original.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 600px;
}
.aurora_cscs-south-campus1 #le_section-seven-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_cscs-south-campus1 #le_section-six {
    margin-bottom: 125px;
}
.aurora_cscs-south-campus1 #le_section-six-area1 {
}
.aurora_cscs-south-campus1 #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_5891.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_cscs-south-campus1 #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_cscs-south-campus1 #le_section-tweleve-area1 {
    margin-bottom: 75px;
}
.aurora_cscs-south-campus1 #le_section-tweleve-area11 {
    margin-bottom: 75px;
}
.aurora_cscs-south-campus1 #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_cscs-south-campus1 #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_exercise-rehabilitation #le_section-five {
    padding-bottom: 150px;
}
.aurora_exercise-rehabilitation #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_4518.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_exercise-rehabilitation #le_section-five-area2 {
}
.aurora_exercise-rehabilitation #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Excerise-Rehabilitation.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_exercise-rehabilitation #le_section-seven {
    background-color: rgb(55, 64, 71);
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 75px;
    padding-right: 50px;
    padding-bottom: 75px;
    padding-left: 50px;
}
.aurora_exercise-rehabilitation #le_section-seven-area1 {
}
.aurora_exercise-rehabilitation #le_section-seven-area2 {
}
.aurora_exercise-rehabilitation #le_section-six {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-bottom: 125px;
}
.aurora_exercise-rehabilitation #le_section-six-area1 {
}
.aurora_exercise-rehabilitation #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Active-Rehab.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_exercise-rehabilitation #le_section-three {
    margin-bottom: 75px;
}
.aurora_exercise-rehabilitation #le_section-two {
    margin-top: 75px;
    margin-bottom: 75px;
}
.aurora_existing-client-waiver #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/gym.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_existing-client-waiver #le_section-two {
    margin-top: 50px;
}
.aurora_existing-client-waiver #le_section-two-area1 {
    margin-bottom: 50px;
}
.aurora_existing-client-waiver #le_section-two-area11 {
    margin-right: 200px;
    margin-bottom: 50px;
    margin-left: 200px;
}
.aurora_get-started #le_section-four {
    padding-top: 75px;
    padding-bottom: 125px;
}
.aurora_get-started #le_section-four-area1 {
    margin-bottom: 50px;
}
.aurora_get-started #le_section-four-area3 {
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 40px;
    padding-left: 50px;
}
.aurora_get-started #le_section-nine {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_get-started #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/background/level-10-fitness-get-started.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_get-started #le_section-six {
    background-color: rgb(250, 251, 252);
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_get-started #le_section-six-area1 {
}
.aurora_get-started #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-free-orientation-full.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_get-started #le_section-three {
}
.aurora_get-started #le_section-three-area1 {
    margin-right: 125px;
    margin-left: 125px;
}
.aurora_get-started #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_get-started #le_section-two-area2 {
}
.aurora_get-started #le_section-two-area6 {
    margin-top: 5px;
    margin-bottom: 75px;
}
.aurora_get-started #le_section-two-area7 {
}
.aurora_holiday-promo #le_section-three {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_holiday-promo #le_section-three-area1 {
    padding-bottom: 50px;
}
.aurora_holiday-promo #le_section-two {
    margin-top: 100px;
    margin-bottom: 100px;
}
.aurora_holiday-promo #le_section-two-area1 {
    background-color: rgb(55, 64, 71);
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 40px;
    padding-left: 50px;
}
.aurora_home #le_headerRegion {
}
.aurora_home #le_section-eight {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_home #le_section-eight-area1 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 40px;
    padding-left: 50px;
}
.aurora_home #le_section-eight-area2 {
    padding-left: 75px;
}
.aurora_home #le_section-five {
    background-color: rgb(250, 251, 252);
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_home #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/trx/trx_1000x665.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_home #le_section-five-area2 {
}
.aurora_home #le_section-four {
    background-color: rgb(55, 64, 71);
    padding-top: 70px;
    padding-bottom: 50px;
}
.aurora_home #le_section-four-area1 {
}
.aurora_home #le_section-four-area2 {
    margin-top: 50px;
}
.aurora_home #le_section-four-area4 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Fitness-Box.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 25px;
}
.aurora_home #le_section-four-area5 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-gym-kids.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 25px;
}
.aurora_home #le_section-four-area6 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-PHYSIOTHERAPY.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 25px;
}
.aurora_home #le_section-four-area7 {
}
.aurora_home #le_section-nine {
    margin-top: 75px;
    margin-bottom: 75px;
}
.aurora_home #le_section-nine-area9 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-top: 100px;
    margin-bottom: 50px;
    padding-top: 35px;
    padding-right: 25px;
    padding-bottom: 40px;
    padding-left: 25px;
}
.aurora_home #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/gym.jpg);
    background-size: cover;
    background-position: bottom center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_home #le_section-seven {
    background-color: rgb(250, 251, 252);
    padding-top: 125px;
    padding-bottom: 75px;
}
.aurora_home #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-PHYSIOTHERAPY.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_home #le_section-seven-area2 {
}
.aurora_home #le_section-six {
    background-color: rgb(250, 251, 252);
}
.aurora_home #le_section-six-area1 {
}
.aurora_home #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-gym-kids.jpeg);
    background-size: cover;
    background-position: center left;
    padding-top: 600px;
}
.aurora_home #le_section-three {
}
.aurora_home #le_section-three-area5 {
}
.aurora_home #le_section-two {
    background-color: rgb(250, 251, 252);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_hyrox #le_section-five {
    margin-bottom: 75px;
}
.aurora_hyrox #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_6007.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_hyrox #le_section-five-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_hyrox #le_section-nine {
    background-color: rgb(0, 0, 0);
}
.aurora_hyrox #le_section-nine-area1 {
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 150px;
}
.aurora_hyrox #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/411339117.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_hyrox #le_section-one-content1 {
    background-size: auto;
}
.aurora_hyrox #le_section-seven {
    margin-bottom: 125px;
}
.aurora_hyrox #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/13362_20241005_173412_411413382_original.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 600px;
}
.aurora_hyrox #le_section-seven-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_hyrox #le_section-six {
    margin-bottom: 125px;
}
.aurora_hyrox #le_section-six-area1 {
}
.aurora_hyrox #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_5891.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_hyrox #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_hyrox #le_section-tweleve-area1 {
    margin-bottom: 75px;
}
.aurora_hyrox #le_section-tweleve-area11 {
    margin-bottom: 75px;
}
.aurora_hyrox #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_hyrox #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_jak-basketball #le_section-five {
    margin-bottom: 125px;
}
.aurora_jak-basketball #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-JAK-basketball.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_jak-basketball #le_section-five-area2 {
}
.aurora_jak-basketball #le_section-nine {
    background-color: rgba(0, 0, 0, 0.1);
}
.aurora_jak-basketball #le_section-nine-area1 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_jak-basketball #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-JAK-basketball.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_jak-basketball #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_jak-basketball #le_section-two-area5 {
    padding-top: 60px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}
.aurora_jak-basketball #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_l10-lightning-club #le_section-eight {
}
.aurora_l10-lightning-club #le_section-eight-area1 {
}
.aurora_l10-lightning-club #le_section-eight-area2 {
}
.aurora_l10-lightning-club #le_section-fifteen {
    margin-bottom: 125px;
}
.aurora_l10-lightning-club #le_section-fifteen-area1 {
}
.aurora_l10-lightning-club #le_section-fifteen-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_8039.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-five {
    margin-bottom: 125px;
}
.aurora_l10-lightning-club #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/Swim_Bike_Run.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-five-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_l10-lightning-club #le_section-fourteen {
    margin-bottom: 125px;
}
.aurora_l10-lightning-club #le_section-fourteen-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/IMG_8037.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-fourteen-area2 {
}
.aurora_l10-lightning-club #le_section-nine-area10 {
}
.aurora_l10-lightning-club #le_section-nine-area12 {
}
.aurora_l10-lightning-club #le_section-nine-area13 {
}
.aurora_l10-lightning-club #le_section-nine-area2 {
}
.aurora_l10-lightning-club #le_section-nine-area3 {
}
.aurora_l10-lightning-club #le_section-nine-area9 {
}
.aurora_l10-lightning-club #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-L10-lighting-club.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_l10-lightning-club #le_section-seven {
    margin-bottom: 125px;
}
.aurora_l10-lightning-club #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/Lightning.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-seven-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_l10-lightning-club #le_section-seventeen-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/U18_Lightning.png);
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-six {
    margin-bottom: 125px;
}
.aurora_l10-lightning-club #le_section-six-area1 {
}
.aurora_l10-lightning-club #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/Swimming.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-bottom: 125px;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-thirteen {
    margin-bottom: 125px;
}
.aurora_l10-lightning-club #le_section-thirteen-area1 {
}
.aurora_l10-lightning-club #le_section-thirteen-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/level-10-lightning.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_l10-lightning-club #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_l10-lightning-club #le_section-tweleve-area1 {
    margin-bottom: 75px;
}
.aurora_l10-lightning-club #le_section-tweleve-area11 {
    margin-bottom: 75px;
}
.aurora_l10-lightning-club #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_l10-lightning-club #le_section-two-area5 {
}
.aurora_l10-lightning-club #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_massage-therapy #le_section-four {
    background-color: rgb(55, 64, 71);
    margin-top: 75px;
    margin-bottom: 75px;
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_massage-therapy #le_section-four-area1 {
    padding-bottom: 50px;
}
.aurora_massage-therapy #le_section-four-area4 {
}
.aurora_massage-therapy #le_section-four-area5 {
}
.aurora_massage-therapy #le_section-four-area6 {
}
.aurora_massage-therapy #le_section-nine {
    margin-top: 25px;
    margin-bottom: 75px;
}
.aurora_massage-therapy #le_section-nine-area1 {
    margin-bottom: 25px;
}
.aurora_massage-therapy #le_section-nine-area2 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_massage-therapy #le_section-nine-area3 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_massage-therapy #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-MASSAGE-THERAPY.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_massage-therapy #le_section-three {
    padding-bottom: 75px;
}
.aurora_massage-therapy #le_section-three-area6 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-top: 50px;
    margin-right: 50px;
    margin-left: 50px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_massage-therapy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_meet-the-staff #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/background/level-10-fitness-get-started.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_meet-the-staff #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_mental-performance-consulting #le_section-eleven {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 75px;
    padding-bottom: 75px;
}
.aurora_mental-performance-consulting #le_section-eleven-area1 {
    margin-top: 50px;
    margin-bottom: 25px;
}
.aurora_mental-performance-consulting #le_section-eleven-area11 {
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-color: rgb(38, 138, 225);
    border-width: 1px;
    border-radius: 1px;
    margin-top: 25px;
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}
.aurora_mental-performance-consulting #le_section-eleven-area12 {
}
.aurora_mental-performance-consulting #le_section-eleven-area2 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_mental-performance-consulting #le_section-eleven-area3 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_mental-performance-consulting #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/level-10-fitness-MENTAL-PERFORMNCE-CONSULTING.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_mental-performance-consulting #le_section-five-area2 {
}
.aurora_mental-performance-consulting #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitnessMENTAL-PERFORMANCE-CONSULTING.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_mental-performance-consulting #le_section-six {
    margin-top: 125px;
}
.aurora_mental-performance-consulting #le_section-six-area1 {
}
.aurora_mental-performance-consulting #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MentalPerf.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_mental-performance-consulting #le_section-tweleve {
    margin-top: 75px;
    margin-bottom: 75px;
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_mental-performance-consulting #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_mission #le_section-two {
    margin-top: 100px;
    margin-bottom: 100px;
}
.aurora_mission #le_section-two-area11 {
    margin-top: 100px;
    text-align: center;
}
.aurora_mission #le_section-two-area3 {
}
.aurora_mom-baby-training #le_section-eight {
    margin-top: 100px;
}
.aurora_mom-baby-training #le_section-eleven-area1 {
}
.aurora_mom-baby-training #le_section-eleven-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MB.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_mom-baby-training #le_section-eleven-area3 {
}
.aurora_mom-baby-training #le_section-five {
    padding-bottom: 125px;
}
.aurora_mom-baby-training #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MSbasics.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_mom-baby-training #le_section-five-area2 {
}
.aurora_mom-baby-training #le_section-nine {
    background-color: rgb(55, 64, 71);
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 75px;
    padding-right: 50px;
    padding-bottom: 75px;
    padding-left: 50px;
}
.aurora_mom-baby-training #le_section-nine-area2 {
}
.aurora_mom-baby-training #le_section-nine-area3 {
    padding-top: 7px;
}
.aurora_mom-baby-training #le_section-nine-area7 {
}
.aurora_mom-baby-training #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-mom-and-baby-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_mom-baby-training #le_section-seven {
    margin-top: 125px;
}
.aurora_mom-baby-training #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MSadvjpg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_mom-baby-training #le_section-seven-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_mom-baby-training #le_section-six-area1 {
}
.aurora_mom-baby-training #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MSbuild.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_mom-baby-training #le_section-ten-area11 {
    margin-top: 50px;
    margin-bottom: 100px;
}
.aurora_mom-baby-training #le_section-ten-area2 {
}
.aurora_mom-baby-training #le_section-three {
    margin-bottom: 50px;
}
.aurora_mom-baby-training #le_section-three-area1 {
}
.aurora_mom-baby-training #le_section-three-area5 {
}
.aurora_mom-baby-training #le_section-three-area7 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.aurora_mom-baby-training #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 150px;
}
.aurora_mom-baby-training #le_section-tweleve-area1 {
    margin-top: 75px;
    margin-bottom: 50px;
}
.aurora_mom-baby-training #le_section-tweleve-area11 {
    padding-bottom: 75px;
}
.aurora_mom-baby-training #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_mom-baby-training #le_section-two-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MSbasics.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_mom-baby-training #le_section-two-area13 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MSbuild.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_mom-baby-training #le_section-two-area14 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MSadvjpg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_mom-baby-training #le_section-two-area15 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-MB.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_mom-baby-training #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_new-client-waiver #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/gym.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_new-client-waiver #le_section-two {
    margin-top: 50px;
}
.aurora_new-client-waiver #le_section-two-area1 {
    margin-bottom: 50px;
}
.aurora_new-client-waiver #le_section-two-area11 {
    margin-right: 200px;
    margin-bottom: 50px;
    margin-left: 200px;
}
.aurora_nutrition-counseling #le_section-five {
    margin-top: 75px;
    margin-bottom: 75px;
}
.aurora_nutrition-counseling #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/_ART3818.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_nutrition-counseling #le_section-five-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
}
.aurora_nutrition-counseling #le_section-nine {
    background-color: rgb(55, 64, 71);
    margin-top: 75px;
    margin-bottom: 75px;
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_nutrition-counseling #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-NUTRITION-COUNSELLING.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_nutrition-counseling #le_section-ten {
    margin-bottom: 50px;
}
.aurora_nutrition-counseling #le_section-ten-area1 {
    padding-bottom: 75px;
}
.aurora_nutrition-counseling #le_section-ten-area11 {
    margin-top: 75px;
    margin-bottom: 75px;
}
.aurora_nutrition-counseling #le_section-ten-area2 {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}
.aurora_nutrition-counseling #le_section-ten-area3 {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}
.aurora_nutrition-counseling #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_online-training #le_section-eleven {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 75px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_online-training #le_section-eleven-area1 {
    margin-bottom: 75px;
}
.aurora_online-training #le_section-five {
    margin-bottom: 75px;
}
.aurora_online-training #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Body-Online1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_online-training #le_section-five-area2 {
}
.aurora_online-training #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-online-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_online-training #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/20220430_Level103847.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_online-training #le_section-six {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_online-training #le_section-six-area1 {
}
.aurora_online-training #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Body-Online2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_online-training #le_section-tweleve {
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_online-training #le_section-tweleve-area1 {
    margin-bottom: 75px;
}
.aurora_online-training #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_online-training #le_section-two-area1 {
}
.aurora_online-training #le_section-two-area6 {
    padding-bottom: 75px;
}
.aurora_other-sports #le_section-five {
    padding-bottom: 100px;
}
.aurora_other-sports #le_section-five-area1 {
}
.aurora_other-sports #le_section-five-area2 {
}
.aurora_other-sports #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-other-sports.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_other-sports #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_other-sports #le_section-tweleve-area1 {
    margin-bottom: 50px;
}
.aurora_other-sports #le_section-tweleve-area11 {
    margin-bottom: 75px;
}
.aurora_other-sports #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_other-sports #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_personal-training #le_section-eleven {
    margin-bottom: 100px;
}
.aurora_personal-training #le_section-eleven-area1 {
    margin-bottom: 75px;
}
.aurora_personal-training #le_section-eleven-area11 {
    margin-top: 150px;
}
.aurora_personal-training #le_section-eleven-area12 {
}
.aurora_personal-training #le_section-eleven-area13 {
    padding-left: 50px;
}
.aurora_personal-training #le_section-eleven-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/gym.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 600px;
}
.aurora_personal-training #le_section-eleven-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Body-Composition.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 600px;
}
.aurora_personal-training #le_section-eleven-area7 {
}
.aurora_personal-training #le_section-five {
    background-color: rgb(250, 251, 252);
    padding-bottom: 125px;
}
.aurora_personal-training #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-personal-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_personal-training #le_section-five-area2 {
}
.aurora_personal-training #le_section-four {
    background-color: rgb(250, 251, 252);
    padding-top: 100px;
    padding-bottom: 125px;
}
.aurora_personal-training #le_section-nine {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_personal-training #le_section-nine-area1 {
    margin-bottom: 75px;
}
.aurora_personal-training #le_section-nine-area10 {
}
.aurora_personal-training #le_section-nine-area11 {
}
.aurora_personal-training #le_section-nine-area12 {
}
.aurora_personal-training #le_section-nine-area13 {
    padding-left: 50px;
}
.aurora_personal-training #le_section-nine-area2 {
}
.aurora_personal-training #le_section-nine-area3 {
}
.aurora_personal-training #le_section-nine-area7 {
}
.aurora_personal-training #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Private-Sessions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_personal-training #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Assessment.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_personal-training #le_section-seven-area2 {
}
.aurora_personal-training #le_section-six {
    background-color: rgb(250, 251, 252);
    padding-top: 50px;
    padding-bottom: 125px;
}
.aurora_personal-training #le_section-six-area1 {
}
.aurora_personal-training #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Semi-Private-Sessions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_personal-training #le_section-ten {
    margin-bottom: 125px;
}
.aurora_personal-training #le_section-ten-area11 {
}
.aurora_personal-training #le_section-ten-area2 {
}
.aurora_personal-training #le_section-ten-area3 {
    padding-left: 50px;
}
.aurora_personal-training #le_section-three {
    background-color: rgb(55, 64, 71);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_personal-training #le_section-tweleve {
    margin-bottom: 100px;
}
.aurora_personal-training #le_section-tweleve-area2 {
}
.aurora_personal-training #le_section-tweleve-area3 {
    padding-left: 50px;
}
.aurora_personal-training #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_personal-training #le_section-two-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-personal-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_personal-training #le_section-two-area13 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Semi-Private-Sessions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_personal-training #le_section-two-area14 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Assessment.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_personal-training #le_section-two-area15 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/trx.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_personal-training #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_physiotherapy #le_section-five {
    margin-bottom: 75px;
}
.aurora_physiotherapy #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Active-Rehab.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_physiotherapy #le_section-five-area2 {
}
.aurora_physiotherapy #le_section-nine {
    background-color: rgba(0, 0, 0, 0.1);
    padding-bottom: 75px;
}
.aurora_physiotherapy #le_section-nine-area1 {
    margin-top: 50px;
    margin-bottom: 25px;
}
.aurora_physiotherapy #le_section-nine-area2 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_physiotherapy #le_section-nine-area3 {
    margin-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
}
.aurora_physiotherapy #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-PHYSIOTHERAPY.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_physiotherapy #le_section-three {
    margin-bottom: 75px;
}
.aurora_physiotherapy #le_section-three-area5 {
    padding-right: 0px;
}
.aurora_physiotherapy #le_section-three-area6 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_physiotherapy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_physiotherapy #le_section-two-area6 {
}
.aurora_pricing #le_section-four {
    padding-bottom: 75px;
}
.aurora_pricing #le_section-four-area2 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-bottom: 25px;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
}
.aurora_pricing #le_section-four-area3 {
    background-color: rgb(55, 64, 71);
    border-radius: 20px;
    margin-bottom: 25px;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
}
.aurora_pricing #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Pricing.png);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_pricing #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_pricing #le_section-two-area12 {
}
.aurora_programs-events #le_section-four {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_programs-events #le_section-four-area1 {
    margin-bottom: 75px;
}
.aurora_programs-events #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Prograsms_Events.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_programs-events #le_section-three {
    background-color: rgb(250, 251, 252);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_programs-events #le_section-three-area1 {
    margin-bottom: 75px;
}
.aurora_site-features #le_section-eleven {
    padding-bottom: 75px;
}
.aurora_site-features #le_section-four {
    background-color: rgb(241, 240, 240);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_site-features #le_section-nine {
    background-color: rgb(0, 0, 0);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_site-features #le_section-ten {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_site-features #le_section-ten-area5 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Fitness-Box.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 20px;
}
.aurora_site-features #le_section-three {
}
.aurora_site-features #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_small-group-training #le_section-five {
    padding-bottom: 125px;
}
.aurora_small-group-training #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-gym-women-class-half-balls.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_small-group-training #le_section-five-area2 {
}
.aurora_small-group-training #le_section-four {
    padding-top: 100px;
    padding-bottom: 125px;
}
.aurora_small-group-training #le_section-nine {
}
.aurora_small-group-training #le_section-nine-area1 {
    margin-top: 50px;
    margin-bottom: 75px;
}
.aurora_small-group-training #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-small-group-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_small-group-training #le_section-six {
    padding-top: 50px;
    padding-bottom: 75px;
}
.aurora_small-group-training #le_section-six-area1 {
}
.aurora_small-group-training #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-free-orientation-full.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_small-group-training #le_section-three {
    background-color: rgb(55, 64, 71);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_small-group-training #le_section-three-area5 {
    margin-right: 25px;
}
.aurora_small-group-training #le_section-three-area6 {
    margin-left: 25px;
}
.aurora_small-group-training #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_small-group-training #le_section-tweleve-area1 {
    margin-bottom: 50px;
}
.aurora_small-group-training #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_small-group-training #le_section-two-area6 {
    padding-bottom: 25px;
}
.aurora_sport-academy #le_section-five {
    margin-top: 50px;
    margin-bottom: 125px;
}
.aurora_sport-academy #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Senior-Sports-Academy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_sport-academy #le_section-five-area2 {
}
.aurora_sport-academy #le_section-nine {
    margin-top: 75px;
    margin-bottom: 75px;
}
.aurora_sport-academy #le_section-nine-area1 {
    padding-bottom: 50px;
}
.aurora_sport-academy #le_section-nine-area2 {
}
.aurora_sport-academy #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-sports-academy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_sport-academy #le_section-seven {
    background-color: rgb(55, 64, 71);
    padding-top: 25px;
}
.aurora_sport-academy #le_section-seven-area1 {
}
.aurora_sport-academy #le_section-six {
    margin-bottom: 125px;
}
.aurora_sport-academy #le_section-six-area1 {
}
.aurora_sport-academy #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Junior-Sport-Academy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_sport-academy #le_section-tweleve {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_sport-academy #le_section-tweleve-area1 {
    margin-bottom: 50px;
}
.aurora_sport-academy #le_section-tweleve-area11 {
    padding-bottom: 75px;
}
.aurora_sport-academy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_sport-academy #le_section-two-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/level-10-fitness-TENNIS.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_sport-academy #le_section-two-area13 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/kids-push-sleds.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_sport-academy #le_section-two-area14 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-birthday-parties-wind-ups.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_sport-academy #le_section-two-area15 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/20220430_Level103371.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_sport-academy #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_test2 #le_section-eleven {
    margin-bottom: 100px;
}
.aurora_test2 #le_section-eleven-area1 {
    margin-bottom: 75px;
}
.aurora_test2 #le_section-eleven-area11 {
    margin-top: 150px;
}
.aurora_test2 #le_section-eleven-area12 {
}
.aurora_test2 #le_section-eleven-area13 {
    padding-left: 50px;
}
.aurora_test2 #le_section-eleven-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Body-Composition.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 600px;
}
.aurora_test2 #le_section-eleven-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Body-Composition.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 600px;
}
.aurora_test2 #le_section-eleven-area7 {
}
.aurora_test2 #le_section-five {
    background-color: rgb(250, 251, 252);
    padding-bottom: 125px;
}
.aurora_test2 #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-personal-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_test2 #le_section-five-area2 {
}
.aurora_test2 #le_section-four {
    background-color: rgb(250, 251, 252);
    padding-top: 100px;
    padding-bottom: 125px;
}
.aurora_test2 #le_section-nine {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_test2 #le_section-nine-area1 {
    margin-bottom: 75px;
}
.aurora_test2 #le_section-nine-area10 {
}
.aurora_test2 #le_section-nine-area11 {
}
.aurora_test2 #le_section-nine-area12 {
}
.aurora_test2 #le_section-nine-area13 {
    padding-left: 50px;
}
.aurora_test2 #le_section-nine-area2 {
}
.aurora_test2 #le_section-nine-area3 {
}
.aurora_test2 #le_section-nine-area7 {
}
.aurora_test2 #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Private-Sessions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_test2 #le_section-seven-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Assessment.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_test2 #le_section-six {
    background-color: rgb(250, 251, 252);
    padding-top: 50px;
    padding-bottom: 125px;
}
.aurora_test2 #le_section-six-area1 {
}
.aurora_test2 #le_section-six-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/Level-10-Fitness-Semi-Private-Sessions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 600px;
}
.aurora_test2 #le_section-ten {
    margin-bottom: 125px;
}
.aurora_test2 #le_section-ten-area11 {
}
.aurora_test2 #le_section-ten-area2 {
}
.aurora_test2 #le_section-ten-area3 {
    padding-left: 50px;
}
.aurora_test2 #le_section-three {
    background-color: rgb(55, 64, 71);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_test2 #le_section-tweleve {
    margin-bottom: 100px;
}
.aurora_test2 #le_section-tweleve-area2 {
}
.aurora_test2 #le_section-tweleve-area3 {
    padding-left: 50px;
}
.aurora_test2 #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_test2 #le_section-two-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-personal-training.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_test2 #le_section-two-area13 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/background/level-10-fitness-get-started.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_test2 #le_section-two-area14 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-free-orientation-full.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_test2 #le_section-two-area15 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/trx.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.aurora_test2 #le_section-two-area6 {
    margin-bottom: 75px;
}
.aurora_wind-ups #le_section-five-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/kids-push-sleds.jpg);
    padding-top: 600px;
}
.aurora_wind-ups #le_section-five-area2 {
}
.aurora_wind-ups #le_section-nine {
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 125px;
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_wind-ups #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/level10fitness3/training-services/level-10-fitness-birthday-parties-wind-ups.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 250px;
}
.aurora_wind-ups #le_section-seven {
}
.aurora_wind-ups #le_section-six {
}
.aurora_wind-ups #le_section-six-area1 {
}
.aurora_wind-ups #le_section-six-area2 {
}
.aurora_wind-ups #le_section-ten {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_wind-ups #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_wind-ups #le_section-two-area1 {
    margin-bottom: 25px;
}
.aurora_wind-ups #le_section-two-area6 {
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-three-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-three-area6 {
    margin-right: 0px;
    margin-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-three-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_athletic-therapy #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-in-online #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-in-online #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-in-online #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-in-online #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-three-area6 {
    margin-right: 0px;
    margin-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_chiropractic #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-three-area6 {
    margin-top: 50px;
    margin-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-us #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-seven-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-seven-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cscs-south-campus1 #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-seven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exercise-rehabilitation #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_existing-client-waiver #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_existing-client-waiver #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_existing-client-waiver #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_existing-client-waiver #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-four-area3 {
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_get-started #le_section-two-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_holiday-promo #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_holiday-promo #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_holiday-promo #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_holiday-promo #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_headerRegion {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight-area2 {
    padding-top: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area1 {
    margin-right: 25px;
    padding-top: 400px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area2 {
    padding-top: 50px;
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven-area1 {
    margin-right: 25px;
    padding-top: 400px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven-area2 {
    padding-top: 50px;
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six-area1 {
    padding-top: 50px;
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six-area2 {
    margin-left: 25px;
    padding-top: 400px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-seven-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hyrox #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jak-basketball #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-eight-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-eight-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-fifteen {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-fifteen-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-fifteen-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-fourteen {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-fourteen-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-fourteen-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-nine-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-nine-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-nine-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-nine-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-seven-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-seventeen-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-thirteen {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-thirteen-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-thirteen-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_l10-lightning-club #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-four-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-three-area6 {
    margin-right: 0px;
    margin-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_massage-therapy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_meet-the-staff #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_meet-the-staff #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-eleven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-five-area1 {
    margin-right: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mental-performance-consulting #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mission #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mission #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mission #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-eleven-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-eleven-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-nine-area7 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-seven-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-ten-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-ten-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-three-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-three-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-two-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-two-area14 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-two-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_mom-baby-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-client-waiver #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-client-waiver #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-client-waiver #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_new-client-waiver #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-ten-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-ten-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-ten-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-ten-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nutrition-counseling #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-eleven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-eleven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_online-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-five {
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-five-area2 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_other-sports #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-eleven-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area13 {
    padding-top: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-nine-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-seven-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-ten-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-ten-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-ten-area3 {
    padding-top: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-tweleve-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-tweleve-area3 {
    padding-top: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-two-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-two-area14 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-two-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_personal-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-three-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-three-area6 {
    margin-right: 0px;
    margin-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physiotherapy #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_pricing #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_pricing #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_pricing #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_pricing #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_pricing #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_pricing #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_programs-events #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_programs-events #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_programs-events #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_programs-events #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_programs-events #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-eleven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-ten-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_site-features #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-three-area5 {
    margin-right: 0px;
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-three-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_small-group-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-six-area2 {
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-two-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-two-area14 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-two-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sport-academy #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-eleven-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-five-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-nine-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-six-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-ten-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-ten-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-ten-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-tweleve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-tweleve-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-tweleve-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-two-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-two-area14 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-two-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test2 #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-five-area1 {
    margin-right: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-five-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-six-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_wind-ups #le_section-two-area6 {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-three-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-three-area6 {
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-three-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_athletic-therapy #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-in-online #le_section-three {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-in-online #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-in-online #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-in-online #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-four-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-three-area6 {
    margin-right: 10px;
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_chiropractic #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-four-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-three-area6 {
    margin-top: 20px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-two-area1 {
    margin-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-two-area2 {
    padding-right: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-us #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-seven-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-tweleve {
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-two {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-seven-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-tweleve {
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-two {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cscs-south-campus1 #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-five {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-bottom: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-seven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-six {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-bottom: 25px;
    margin-left: 25px;
    padding-right: 10px;
    padding-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-six-area2 {
    margin-left: 25px;
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-three {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exercise-rehabilitation #le_section-two {
    margin-top: 75px;
    margin-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_existing-client-waiver #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_existing-client-waiver #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_existing-client-waiver #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_existing-client-waiver #le_section-two-area11 {
    margin-right: 5px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-four {
    padding-top: 0px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-four-area3 {
    padding-bottom: 5px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-six {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-three-area1 {
    margin-right: 5px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_get-started #le_section-two-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_holiday-promo #le_section-three {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_holiday-promo #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_holiday-promo #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_holiday-promo #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_headerRegion {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight-area1 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four {
    margin-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area5 {
    margin-top: 25px;
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area6 {
    margin-top: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine {
    margin-top: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two {
    padding-top: 50px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-seven-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-tweleve {
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-two {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hyrox #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jak-basketball #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-eight-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-eight-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-fifteen {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-fifteen-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-fifteen-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-fourteen {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-fourteen-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-fourteen-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-nine-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-nine-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-nine-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-nine-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-seven-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-seventeen-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-thirteen {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-thirteen-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-thirteen-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-tweleve {
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-two {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-two-area5 {
    margin-top: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_l10-lightning-club #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-four-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-four-area5 {
    margin-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-four-area6 {
    margin-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-three-area6 {
    margin-right: 10px;
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_massage-therapy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_meet-the-staff #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_meet-the-staff #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-eleven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-five-area1 {
    background-position: center right;
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-tweleve {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mental-performance-consulting #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mission #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mission #le_section-two-area11 {
    margin-top: 25px;
    text-align: left;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mission #le_section-two-area3 {
    margin-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-eleven-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-eleven-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-nine {
    padding-right: 10px;
    padding-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-nine-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-seven-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-ten-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-ten-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-three-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-three-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-tweleve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-two-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-two-area14 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-two-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_mom-baby-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-client-waiver #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-client-waiver #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-client-waiver #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_new-client-waiver #le_section-two-area11 {
    margin-right: 5px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-five {
    margin-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-ten-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-ten-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-ten-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-ten-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nutrition-counseling #le_section-two {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-eleven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-eleven-area1 {
    margin-bottom: 0px;
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-six {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-tweleve {
    padding-top: 75px;
    padding-right: 25px;
    padding-bottom: 75px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_online-training #le_section-two-area6 {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-five {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-five-area2 {
    margin-top: 25px;
    margin-right: 10px;
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-tweleve {
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-two {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_other-sports #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area12 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-eleven-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-five {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine {
    padding-top: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area1 {
    margin-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area12 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-nine-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-seven-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-seven-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-ten-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-ten-area2 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-ten-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-tweleve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-tweleve-area2 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-tweleve-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-two-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-two-area14 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-two-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_personal-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-three-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-three-area6 {
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physiotherapy #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_pricing #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_pricing #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_pricing #le_section-four-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_pricing #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_pricing #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_pricing #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_programs-events #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_programs-events #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_programs-events #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_programs-events #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_programs-events #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-eleven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-ten-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_site-features #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-nine-area1 {
    margin-top: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-six {
    padding-top: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-three-area5 {
    margin-right: 0px;
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-three-area6 {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-tweleve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_small-group-training #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-five-area2 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-nine-area2 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-six-area1 {
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-six-area2 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-tweleve {
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-tweleve-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-tweleve-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-two-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-two-area14 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-two-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sport-academy #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area12 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-eleven-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-five-area2 {
    margin-top: 25px;
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine {
    padding-top: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area1 {
    margin-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area12 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-nine-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-six-area1 {
    margin-top: 25px;
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-ten-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-ten-area2 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-ten-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-tweleve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-tweleve-area2 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-tweleve-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-two-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-two-area14 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-two-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test2 #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-five-area1 {
    padding-top: 450px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-nine {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-six-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_wind-ups #le_section-two-area6 {
    }
}

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