@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

:root {
    --bg-main: #000;
    --bg-blue: #003266;
    --bg-red: #CF2537;
}


hr {
    border: 0;
    height: 1px;
    background-color: #bababa;
}


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

a {
	text-decoration: none;
	color: var(--bg-blue);
}
a:hover {
	text-decoration: none;
	color: var(--bg-red);
}
strong {
    font-weight: 600;
}
p {
    font-family: 'Montserrat', sans-serif;
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
}
h1, h1 a, .title1, .title1 a {
    font-family: 'Montserrat', sans-serif;
	margin:0 0 .2em 0;
	line-height: 1.1;
	font-weight: normal;
}
h2, h2 a, .title2, .title2 a {
    font-family: 'Montserrat', sans-serif;
	margin:0 0 .2em 0;
	line-height: 1.2;
	font-weight: 700;
	font-size: 36px;
	color: var(--bg-red);
}
h3, h3 a, .title3, .title3 a {
    font-family: 'Montserrat', sans-serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: 700;
	font-size: 24px;
}
h4, h4 a, .title4, .title4 a {
    font-family: 'Montserrat', sans-serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h5, h5 a, .title5, .title5 a {
    font-family: 'Montserrat', sans-serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h6, h6 a, .title6, .title6 a {
    font-family: 'Montserrat', sans-serif;
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-size: 16px;
}

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

.le_form {
    margin-top: 10px;
}
.le_form_name {
    font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	margin: 0 0 10px 0;
}
.form-group {
	margin-bottom: 10px;
	position: relative;
}
.seFormButton, .wrapper input[type="submit"].seFormButton {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-red);
    color: #fff;
	padding: 8px 15px;
	border: 0px solid transparent;
	margin: 0;
    -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: 'Montserrat', 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;
}
.le_form label {
    font-weight: 300 !important;
}
.recaptcha-terms {
    padding: 0 !important;
    margin: 0 !important;
}


/* Buttons
----------------------------------------------------------------------------------------------------*/
.le_metro_silver_button {
    font-family: 'Montserrat', sans-serif !important;
    background-color: var(--bg-red) !important;
    background: var(--bg-red) !important;
    color: #fff !important;
	position: relative;
	display: inline-block;
	padding: 5px 10px !important;
	border: 0 !important;
	text-shadow: 0px 0px 0 var(--bg-red) !important;
	border-radius: 0 !important;
	top: -5px !important;
}
.le_metro_silver_button:hover {
    background-color: var(--bg-blue) !important;
    background: var(--bg-blue) !important;
    color: #fff !important;
    text-decoration: none;
}
.se_button a, a.se_button {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-red);
    color: #fff;
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	padding: 10px 20px;
	border: 0px solid transparent;
}
.se_button a:hover, a:hover.se_button {
    background-color: var(--bg-blue);
    color: #fff;
    text-decoration: none;
}
.se_button.button1 a, a.se_button.button1 {
    background-color: var(--bg-red);
    color: #fff;
    margin-top: 10px;
}
.se_button.button1 a:hover, a:hover.se_button.button1 {
    background-color: var(--bg-blue);
    color: #fff;
}
.se_button.button2 a, a.se_button.button2 {
    background-color: var(--bg-blue);
    color: #fff;
    margin-top: 10px;
}
.se_button.button2 a:hover, a:hover.se_button.button2 {
    background-color: var(--bg-red);
    color: #fff;
}
.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: 250px;
    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: #bababa;
}
.whitetext h1 a:hover, .whitetext h2 a:hover, .whitetext h3 a:hover, .whitetext h4 a:hover, .whitetext h5 a:hover, .whitetext h6 a:hover, .whitetext p a:hover, .whitetext a:hover {
    color: #fff;
}
.bluetext h1, .bluetext h2, .bluetext h3, .bluetext h4, .bluetext h5, .bluetext h6, .bluetext p, .bluetext {
    color: var(--bg-blue);
}
.blacktext h1, .blacktext h2, .blacktext h3, .blacktext h4, .blacktext h5, .blacktext h6, .blacktext p, .blacktext {
    color: var(--bg-main);
}
.no-gutters {
    padding: 0;
    margin: 0;
}
.fullwidth img {
    width: 100%;
    height: auto;
}
.banner img {
    margin-top: -15px;
}
.redbox h3 a {
    background: rgba(0,50,102,.6);
    color: #fff;
    padding: 0 25px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.redbox h3 a:hover {
    background: var(--bg-red);
}
.img-blue {
    position: relative;
    padding: 0;
}
.img-blue img {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}
.img-blue:before {
    content: " ";
    position: absolute;
    top: -50px;
    left: -500px;
    right: -50px;
    bottom: 60%;
    background-color: var(--bg-blue);
    z-index: -1 !important;
}
.right-section {
    padding: 0 5% 25px 100px;
}
.right-section h1, .right-section h2 {
    color: var(--bg-red);
    font-size: 40px;
    font-weight: 700;
}
.img-red {
    position: relative;
    padding: 0;
}
.img-red img {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}
.img-red:before {
    content: " ";
    position: absolute;
    top: 60%;
    right: -500px;
    left: 100px;
    bottom: -50px;
    background-color: var(--bg-red);
    z-index: -1 !important;
}
.left-section {
    padding: 0 75px 0 5%;
}
.left-section h1, .left-section h2 {
    color: var(--bg-blue);
    font-size: 40px;
    font-weight: 700;
}
.padding-lr {
    padding: 0 50px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background-color: #fff !important;
    border: 1px solid var(--bg-red);
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: var(--bg-red) !important;
}
.red-box {
    background-color: var(--bg-red);
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
}
.red-box h3 {
    font-size: 24px;
    color: #fff;
}
.red-box p {
    color: #fff;
}
.box-red {
    background-color: var(--bg-red);
    padding: 50px 20px 40px 20px;
    margin-bottom: 25px;
}
.box-red h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}
.box-red p {
    color: #fff;
}
.red-title h2 {
    background-color: var(--bg-red);
    padding: 10px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    display: block;
    width: 100%;
}
.blue-title h2 {
    background-color: var(--bg-blue);
    padding: 10px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    display: block;
    width: 100%;
}
.dark-blue-box p a {
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 20px;
    display: block;
    padding: 30px 25px;
    margin-bottom: 25px;
}
.dark-blue-box p a:hover {
    background-color: #001a35;
}
.p-space p {
    margin-bottom: 5px;
}
.staff-box {
    border-top: 10px solid var(--bg-blue);
    margin-bottom: 25px;
    text-align: center;
    padding-top: 15px;
}
.staff-box h4 {
    font-size: 24px;
    font-weight: 500;
}

.blue-box {
    background-color: var(--bg-blue);
    padding: 25px;
    color: #fff;
}
.padding-15 {
    padding: 15px;
}
.gray-border {
    border: 1px solid #ededed;
}
.red-block {
    background-color: var(--bg-red);
    padding: 50px 40px;
    margin-bottom: 25px;
}
.red-block h3 {
    color: #fff;
    font-size: 24px;
}
.red-block h4 {
    color: #fff;
    font-size: 20px;
}
.red-block p {
    color: #fff;
}
.graybox {
    background-color: #EFEDED;
    padding: 50px 40px;
    margin-bottom: 25px;
}
.graybox h3 {
    font-size: 24px;
}
.graybox h4 {
    font-size: 20px;
}
.gray-box {
    background-color: #EFEDED;
    padding: 30px 25px;
    margin-bottom: 25px;
}
.gray-box2 {
    background-color: #EFEDED;
    padding: 30px 25px;
    margin-bottom: 25px;
}
.gray-box3 {
    background-color: #f2efef;
    padding: 50px 25px;
    margin-bottom: 25px;
}
.gray-box3 td:first-of-type {
    border-right: 1px solid #a3a3a3;
}
.gray-box3 td:last-of-type {
    padding-left: 35px;
}
.gray-box3 img {
    min-width: 250px;
    width: 250px;
    height: auto;
    display: block;
    padding-right: 35px;
}
.staff {
    position: relative;
    margin-bottom: 25px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    background-color: var(--bg-blue);
}
.staff img {
    width: 100%;
    height: auto;
}
.staff h4 {
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    bottom: 25px;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
}
.staff a {
    position: absolute;
    z-index: 1;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.staff:hover img {
    opacity: .2;
}
.price-box {
    border: 1px solid #e0dede;
    padding: 25px 30px;
    margin-bottom: 25px;
}
.price-box img {
    margin-bottom: 20px;
}
.location-box {
    border: 2px solid #fff;
    padding: 30px 25px;
    margin-bottom: 25px;
}
.line-box {
    border: 1px solid #d6d5d4;
    padding: 20px;
    margin-bottom: 25px;
}
.small-title h2 {
    font-size: 24px;
}
.smaller-title h2 {
    font-size: 32px;
}
.icons {
    margin-bottom: 20px;
}
.icons img {
    margin-right: 10px;
    width: 20px;
    height: auto;
    position: relative;
    margin-bottom: -2px;
}
.icons p {
    padding-left: 10px;
    font-size: 18px;
} 
.menu-lines {
    padding-top: 10px;
}
.menu-lines p {
    padding: 0 10px;
}

/* Pricebox
----------------------------------------------------------------------------------------------------*/
.pricebox {
    background-color: #efeded;
    padding: 30px 25px 20px 25px;
    margin-bottom: 30px;
    text-align: center;
}
.pricebox h2 {
    background-color: var(--bg-blue);
    display: inline-block;
    padding: 8px 30px;
    color: #ffffff;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
}
.pricebox h3 {
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
}
.pricebox h4 {
    font-weight: 500;
    color: var(--bg-main);
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}
.pricebox p {
    color: var(--bg-main);
    font-size: 14px;
}
.pricebox .se_button.button1 {
    margin-top: 20px;
    padding: 10px 15px !important;
    font-size: 16px !important;
}

/* Appointments
----------------------------------------------------------------------------------------------------*/
.appt_left_side {
    width: 100% !important;
}
.appt_left_side h3 {
    font-weight: 400 !important;
    font-size: 20px !important;
}

/* Expand
----------------------------------------------------------------------------------------------------*/
.expand {
    position: relative;
}
.expand h3 {
    position: relative; 
    font-size: 16px;
    margin: 8px 0 0 0;
    background-color: #efeded;
    color: var(--bg-main);
    padding: 5px 45px 5px 20px;
    line-height: 30px !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-weight: 400;
}
.expand h3:after {
    content: '+';
    top: 12px;
    right: 15px;
    float: right;
    font-size: 18px !important;
    line-height: 15px;
    color: var(--bg-main);
    display: inline-block;
    position: absolute;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.expand h3:hover:after {
    content: '-';
    color: #fff;
}
.expand h3.active:after {
    content: '-';
    color: #fff;
    padding-left: 4px;
}
.expand h3.active {
    cursor: active;
    background-color: var(--bg-blue);
    color: #fff;
}
.expand h3:hover {
    cursor: pointer;
    background-color: var(--bg-blue);
    color: #fff;
}
.expand p {
    padding: 10px 20px;
}
/* Tabbed Content
----------------------------------------------------------------------------------------------------*/
.tabs-btn ul {
    padding: 0;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #aaabac;
}
.tabs-btn li{
    display: inline-block;
}
.tabs-btn ul li a {
    display: inline-block;
    padding: 10px 15px 10px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    border-top: 1px solid #aaabac;
    border-left: 1px solid #aaabac;
    border-right: 1px solid #aaabac;
    color: #000000;
    background: #f3f3f3;
    text-decoration: none;
    font-weight: 700;
    margin: 10px 7px 0 7px;
    text-transform: uppercase;
}
.tabs-btn ul li a:hover {
    text-decoration: none;
    color: #ffffff;
    background: var(--bg-color);
}
.tabs-btn li a.active {
    color: #ffffff;
    background: var(--bg-color);
}
.tabs > div {
    display: none;
    padding-top: 10px;
    padding-bottom: 20px;
}
.le-edit-open .tabs > div {
    display: block !important;
}

.tabs > div:after {
    clear: both;
    content:' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}
.tabs > div.expanded {
    display: block !important;
}
.tabs > div > img {
    max-width: 100%;
}
.tabs > div > a {
    display: inline-block;
    padding: 10px 20px 10px 25px;

    font-size: 25px;
    font-weight: 700;
    border-radius: 5px;
    background-color: #3bc0ee;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    color: #fff;
}
.tabs > div > a:hover {
    text-decoration: none;
    background-color: #494949;
}
.tabs {
}

/* Home Testimonial Slider
----------------------------------------------------------------------------------------------------*/
.bx-wrapper img {
    display: inline-block !important;
}
.home-slider {
    margin: 0 auto 0 auto;
    width: 95%;
}
/*.home-slider .swiper-wrapper {*/
/*    overflow: hidden;*/
/*}*/
/*.home-slider .le_plugin_slider_container {*/
/*    padding: 0 50px;*/
/*}*/
.home-slider img {
    border-radius: 50%;
    text-align: center;
    margin: auto;
    width: 175px !important;
    height: 175px !important;
    display: inline-block !important;
}
.home-slider .swiper-slide img {
    /*width: auto !important;*/
    /*height: auto !important;*/
    /*display: inline-block !important;*/
    /*object-fit: none !important;*/
}
.home-slider img:first-child {
    position: absolute;
    margin-top: 75px;
    margin-left: -90px;
    width: 100px !important;
    height: 100px !important;
}
.home-slider img:nth-child(3) {
    position: absolute;
    margin-top: 75px;
    margin-right: -80px;
    width: 100px !important;
    height: 100px !important;
}
.home-slider p {
    font-size: 20px;
    line-height: 30px;
    color: var(--bg-main);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.home-slider h6 {
    margin-top: 10px;
    font-size: 18px;
    color: #000000 !important;
}
.home-slider h6 {
    margin-top: 10px;
    font-size: 18px;
    color: #000000 !important;
}
.home-slider title6 {
    line-height: 12px;
}
.home-slider .bx-wrapper .bx-controls-direction a {
    width: 35px;
    height: 66px;
}
.home-slider .bx-wrapper .bx-controls-direction a {
    top: 60% !important;
}
.home-slider .bx-wrapper .bx-next {
    right: 30px;
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcamp/slider-arrows-blue.png') no-repeat -27px 0px;
}
.home-slider .bx-wrapper .bx-prev:hover {
    background-position:6px 0px;
    transform: scale(1.2);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.home-slider .bx-wrapper .bx-next:hover {
    background-position:-27px 0px;
    transform: scale(1.2);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.home-slider .bx-wrapper .bx-next:hover:after, .home-slider .bx-wrapper .bx-next:hover:after {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.home-slider .bx-wrapper .bx-prev {
    left: 30px;
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcamp/slider-arrows-blue.png') no-repeat 6px 0;
}
.home-slider .bx-pager.bx-default-pager a {
    border: 3px solid #003267 !important;
    background: rgba(255,255,255,0) !important;
    width: 25px !important;
    height: 25px !important;
    border-radius: 50% !important;
}
.home-slider .bx-pager.bx-default-pager a:hover, .home-slider .bx-pager.bx-default-pager a.active {
    background: #003267 !important;
}
.box-testimonial {
    padding: 0 50px;
}

/* 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 .selects {
    height: 30px !important;
}
#date_filter {
    height: 30px !important;
}
#printview {
    background: #efefef !important;
    color: #000 !important;
    padding: 6px 10px !important;
    text-transform: uppercase;
    display: inline-block !important;
    margin-left: 10px !important;
}
#printview:hover {
    background: #000 !important;
    color: #fff !important;
    text-decoration: none;
}
.mbHeaderBar {
    background-color: var(--bg-blue) !important;
    color: #fff !important;
    padding: 7px 0 !important;
    height: 40px !important;
    border: 0 !important;
    margin-top: 10px !important;
    font-weight: 400 !important;
    font-size: 18px !important;
}
.mb_schedule tr:nth-of-type(even) {
    background-color: #ededee !important;
}
.title_class {
    padding-left: 0 !important;
}
.row_class {
    padding-left: 0 !important;
    width: 20% !important;
}
.title_staff {
    padding-left: 3% !important;
    width: 15% !important;
}
.row_staff {
    padding-left: 5% !important;
    width: 15% !important;
}
.row_location_name {
    padding-left: 5% !important;
}
.title_location {
    padding-left: 5% !important;
}
.row_date {
    width: 17% !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;
}
.mb_schedule {
    font-size: 14px !important;
}
/* Staff Page
----------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) { 
    .staff_style .staff_side {
        display: grid;
        grid-template-columns: 32% 32% 32%;
        grid-gap: 15px;
    }
    .staff_style .staff_img {
        height: 220px;
    }
}
@media (min-width: 992px) { 
    .staff_style .staff_side {
        display: grid;
        grid-template-columns: 24% 24% 24% 24%;
        grid-gap: 15px;
    }
    .staff_style .staff_img {
        height: 215px;
    }
}
@media (min-width: 1200px) { 
    .staff_style .staff_img {
        height: 265px;
    }
}
.staff_style .staff_side .clear {
    display: none !important;
}
.staff_style .page_stuff {
    display: none !important;
}
.staff_style .staff_bio {
    display: none !important;
}
.staff_style .staff_img, .staff_img img {
    width: 100% !important;
}
.staff_style .staff_img {
    overflow: hidden !important;
    background-color: #929393;
}
.staff_style .staff_img em {
    display: none !important;
}
.staff_style .staff_info {
    position: relative;
}
.staff_style .staff_name {
    text-align: center !important;
    padding: 20px 10px 5px 10px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 15px;
}
.staff_style .staff_name a {
    text-shadow: 0px 1px 1px rgba(0,0,0,.75);
    color: #ffffff;
    text-transform: uppercase;
}
.staff_style .staff_name .lastname {
    display: none !important;
}
    
/* Mobile Schedule
----------------------------------------------------------------------------------------------------*/
@media (max-width: 992px) {
    .mb_mobilebar {
        background: #fff !important;
        padding: 10px 15px !important;
    }
    .mb_gray_box {
        width: 100% !important;
    }
    .title_date {
        background-color: var(--bg-blue) !important;
        color: #fff !important;
        padding: 10px !important;
        width: 100% !important;
        margin: 10px 0 !important;
    }
    .mb_mobilebar_schedulebar_time {
        width: 100% !important;
        padding: 10px 0 0 0 !important;
        font-size: 16px !important;
    }
    .mb_mobilebar_schedulebar_classname {
        width: 100% !important;
    }
    .mb_mobile_classname a, .mb_le_staff_firstname, .mb_le_staff_lastname {
        color: #000 !important;
    }
    .mb_mobilebar_schedulebar_button {
        float: left !important;
        width: 100% !important;
        padding: 10px 0 !important;
        text-align: left !important;
    }
    .mb_mobilebar_schedulebar_button .signup {
        margin-left: -7px !important;
    }
    .mb_mobilebar a {
        color: #000 !important;
    }
    .mb_mobilebar_schedulebar_button a {
        color: #fff !important;
    }
    #locations, #sessions, #trainers, #service_categories {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .mb_gray_box selects, .mb_gray_box .dropdowns {
        width: 100% !important;
    }
    .schedule_date_range {
        font-size: 20px !important;
    }
}

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

.no-title .mb_enrollment_dates {
    display: none;
}
.mb_enrollment_dates {
    background-color: var(--bg-red);
    color: #fff;
    padding: 12px 20px 0 20px;
    font-size: 25px !important;
}
.enrollment_box, .course_information, .enrollment_in_course {
    border: 2px solid #efefef !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
}
.enrollments_date_range {
    padding-top: 10px;
}
.signup_class {
    margin-left: 0 !important;
    margin-top: 20px !important;
}
.prev_date_arrows a {
    color: #fff !important;
}
.next_date_arrows a {
    color: #fff !important;
}
.right.bold_date {
    float: left !important;
    width: 100% !important;
}
#date_filter {
    padding: 5px 0 !important;
}
.enrollment_filters .selects {
    height: 30px !important;
}
.le_mb_button {
    background-color: var(--bg-red);
    color: #fff;
    border: 0;
    text-transform: uppercase;
    padding: 10px 20px;
}
.le_mb_button:hover {
    background-color: var(--bg-blue);
    color: #fff;
}
@media (max-width: 767px) {
    .enrollment_filters .dropdowns, .enrollment_filters .selects {
        width: 100% !important;
        margin-bottom: 3px !important;
    }
    .mb_enrollment_dates {
        padding: 12px 20px 10px 20px !important;
        font-size: 16px !important;
    }
    .prev_date_arrows a, .next_date_arrows a {
        font-size: 16px !important;
    }
}

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

#results .bookit {
    font-family: 'Montserrat', sans-serif !important;
    background-color: var(--bg-red) !important;
    background: var(--bg-red) !important;
    color: #fff !important;
	position: relative;
	display: inline-block;
	padding: 5px 10px !important;
	border: 0 !important;
	text-shadow: 0px 0px 0 var(--bg-red) !important;
	border-radius: 0 !important;
}
#results .bookit:hover {
    background-color: var(--bg-blue) !important;
    background: var(--bg-blue) !important;
    color: #fff !important;
    text-decoration: none;
}

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

/* 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-blue);
	padding: 10px 25px;
}
.header-right {
    text-align: right;
}
.header .button1 {
    padding: 7px 15px !important;
    margin-bottom: 0 !important;
}
.header .button2 {
    padding: 5px 15px !important;
    margin-bottom: 0 !important;
    background: rgba(255,255,255,0);
    border: 1px solid #fff;
    color: #fff;
    margin-top: 10px;
}
.header .button2:hover {
    background: rgba(255,255,255,1) !important;
    color: #000 !important;
}
.header .se_button.button1 a:hover {
    background-color: #fff !important;
    color: #000 !important;
}

/* Menu
----------------------------------------------------------------------------------------------------*/
.navicon {
    position: relative;
    line-height: 22px;
    height: 22px;
    padding: 0;
    text-transform: uppercase;
    background: transparent !important;
    z-index: 1000 !important;
    color: #ffffff;
}
.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    top: 0;
    left: 0px;
    font-size: 30px;
    color: #fff;
    margin-top: 15px;
}
.OpenMobileMenu .navicon:after {
    color: #fff;
    position: fixed;
    top: 10px;
    content: '\f00d';
    font-size: 35px;
    font-family: 'FontAwesome';
    margin-left: 250px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.navicon:hover {
    cursor: pointer;
    color: #fff;
}
.aurora_style-menu {
    z-index: 10000 !important;
}
.MainMenu {
    position: absolute;
    z-index: 900;
    left: -350px;
    top: 0;
    height: 100%;
    width: 300px;
    float: left;
    overflow-x: visible;
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}

.OpenMobileMenu .MainMenu {
    height: 100%;
    top:0px;
    width: 100%;
    left:0;
    opacity: 1;
    transition: left .3s ease;
    z-index:500;
}
.OpenMobileMenu .MainMenu .MainMenu-wrapper {
    background-color: var(--bg-red);
    position: relative;
    padding: 0 0 0 20px !important;
    width: 300px;
    height: 100%;
    z-index: 501;
}

.le-logged-in.OpenMobileMenu .MainMenu-wrapper {
    top: 40px !important;
}

.MainMenu ul.le_menu_level_0 {
    margin: 0;
	padding: 50px 0 10px 0;
}
.MainMenu li {
	list-style-type: none;
	text-decoration: none;
}
.MainMenu .le_menu_level_container {
	position: relative;
}
.MainMenu li.le_menuitem_level_0 a {
	display: block;
	padding: 15px 10px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid #a31d2a;
	font-size: 18px !important;
	line-height: 1em;
	text-decoration: none;
    word-break:break-word;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    color: #ffffff;
}
.MainMenu li.le_menuitem_level_0 a:hover {
    color: #d1cfd0;
    margin-left: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.Menu1 a {
    border: 1px solid #fff !important;
    display: inline-block !important;
    padding: 10px 20px !important;
    margin: 20px 0 0 10px;
}
.Menu1 a:hover {
    background-color: #fff;
    color: var(--bg-main);
}
.Menu2 a {
    background-color: #fff;
    color: var(--bg-main) !important;
    display: inline-block !important;
    padding: 10px 20px !important;
    margin: 20px 0 0 10px;
}
.Menu2 a:hover {
    background-color: var(--bg-blue);
    color: #fff !important;
}
.MainMenu ul.le_menu_level_1 {
    margin: 0;
	padding: 10px 0 0 0;
	height: auto;
}
.MainMenu li.le_menuitem_level_1 a {
	display: block;
	padding: 3px 10px !important;
	margin-left:12px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid var(--bg-red) !important;
	font-size: 14px !important;
	line-height: 25px;
	text-decoration: none;
    text-transform: none;
	background-image: none;
	color: #ffffff;
}
.MainMenu li.le_menuitem_level_1 a:hover {
    color: #d1cfd0;
    margin-left: 15px;
}
.MainMenu ul.le_menu_level_2 {
    margin: 0;
	padding: 0;
	height: auto;
}
.MainMenu li.le_menuitem_level_2 a {
	display: block;
	padding: 5px;
	margin-left:20px;
    font-family: 'Montserrat', sans-serif;
	font-size: 12px !important;
	line-height: 1em;
	text-decoration: none;
    text-transform: none;
	background-image: none;
	color: #ffffff;
	text-transform: uppercase;
}
.MainMenu li.le_menuitem_level_2 a:hover {
    color: #d1cfd0;
}
.MainMenu li.le_menuitem_level_1.hasChild > a {
    text-transform: uppercase;
}
.MainMenu li.le_menuitem_level_0.hasChild > a:after {
    display:inline-block;
    position: relative;
    left: 6px;
    top: -2px;
    content: "+";
    color: #ffffff;
	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 {
    height: 0;
    visibility: hidden;
    opacity:0;
    transition: all .3s ease;
}
.MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1.open-mobile-sub {
    height: auto;
    visibility: visible;
    opacity: 1;
}
@media (max-width: 767px) {
    .MainMenu {
        /*margin-top: 50px;*/
        background: var(--bg-red) !important;
    }
    .OpenMobileMenu .MainMenu {
        width: 100%;
        padding: 0;
        margin-top: 65px;
        overflow:auto;
        overflow:visible;
        position: fixed !important;
        transition: left .3s ease;
    }
    .OpenMobileMenu .navicon:after {
        margin-left: 0 !important;
        left: 85%;
    }
    .OpenMobileMenu .MainMenu .MainMenu-wrapper {
        width: 100%;
        padding: 0 20px !important;
    }
    .MainMenu ul.le_menu_level_0 {
        padding-top: 25px;
    }
    .MainMenu .se_button.button1 a, .MainMenu a.se_button.button1 {
        padding: 12px 15px !important;
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    .MainMenu .se_button.button2 a, .MainMenu a.se_button.button2 {
        padding: 10px 15px !important;
    }
    .OpenMobileMenu .navicon:after {
        top: 5px;
        margin-left: 275px;
    }
}
@media (min-width: 768px) {
    .MainMenu {
        width: 325px;
    }
    .OpenMobileMenu .MainMenu {
        overflow: auto;
        overflow: visible;
        position: fixed !important;
        transition: left .3s ease;
    }
}

/* 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-blue);
    clear: both;
	padding: 50px 0;
}
.footer h6 {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
}
.footer p, .footer p a {
    color: #fff;
}
.footer p a:hover {
    color: #c9c9c9;
}
.se_social {
    margin-top: 10px;
}
.se_social a {
    margin: 0 3px;
    font-size: 24px;
    color: #fff;
}
.twitter {
    margin-top: 3px !important;
    display: inline-flex;
}
.footer-left {
    padding-top: 25px;
}
.footer-left h2 {
    font-size: 30px;
    font-weight: 700;
}
.footer-bottom {
    background-color: #012953;
    padding: 20px 0;
}
.footer-bottom p, .footer-bottom p a {
    font-size: 14px;
    color: #ffffff;
}
.footer-bottom p a:hover {
    color: #c9c9c9;
}

/* FooterMenu
----------------------------------------------------------------------------------------------------*/

.FooterMenu {
    display: block;
    border-bottom: 1px solid #fff;
    margin-bottom: 40px;
    padding-bottom: 40px;
    text-align: center;
}
.FooterMenu ul {
    margin: 0;
    padding: 0;
}
.FooterMenu li {
	list-style: none;
	list-style-type: none;
	position: relative;
}
.FooterMenu li.le_menuitem_level_0 {
	display: inline-block;
}
.FooterMenu li.le_menuitem_level_0 a {
    display: block;
    position: relative;
    padding: 10px 20px;
    color: #fff;
    line-height: 15px;
    font-size: 16px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
}
.FooterMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-red);
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .header {
        padding: 10px 20px;
    }
    .desktop-only {
        display: none;
    }
    .feature_blog_image {
        width: 100% !important;
        height: auto;
        float: none;
    }
    .feature_blog_image img {
        width: 100% !important;
        height: auto;
    }
    .blog_post_listing_title_section {
        text-align: center;
    }
    #blog_post_listing .feature_blog_image {
        float:none;
        text-align: center;
        margin-bottom: 20px;
    }
    #blog_post_listing .feature_blog_text {
        text-align: center;
        float: none;
    }
    #blog_post_listing a.read_more_link {
        display: table !important;
        margin: 15px auto 15px auto;
    }
    #blog_sidebar {
        float: left !important;
        width: 100% !important;
    }
    .blog_post_listing_sidebar {
        width: 100% !important;
    }
    .footer {
        text-align: center;
    }
    .uppertext {
        text-align: center;
        padding: 50px 0;
    }
    .redbox h3 a {
        padding: 25px;
    }
    .right-section, .left-section {
        padding: 40px 30px 60px 30px;
    }
    .right-section h2, .left-section h2 {
        font-size: 30px;
    }
    .home-slider .bx-wrapper .bx-controls-direction a {
        display: none;
    }
    .home-slider p {
        padding: 0 25px;
    }
    .footer-right {
        text-align: center;
        padding: 15px 0 60px 0;
    }
    .footer-left h2 {
        font-size: 24px;
    }
    .footer-bottom {
        text-align: center;
    }
    .container {
        padding: 0 30px;
    }
    h2 {
        font-size: 30px !important;
    }
    td, th {
        display: block;
        clear: both;
    }
    td[data-th]:before {
        content: attr(data-th);
        float: left;
    }
    .gray-box3 td:first-of-type {
        border-right: 0 solid #a3a3a3;
        border-bottom: 1px solid #a3a3a3;
        padding-bottom: 25px;
    }
    .gray-box3 td:last-of-type {
        padding-left: 0;
        padding-top: 25px;
    }
    .gray-box3 img {
        min-width: 250px;
        width: 250px;
        padding-right: 0;
    }
    .home-slider img {
        width: 125px !important;
        height: 125px !important;
    }
    .home-slider img:first-child {
        width: 70px !important;
        height: 70px !important;
        margin-top: 60px;
        margin-left: -70px;
    }
    .home-slider img:nth-child(3) {
        width: 70px !important;
        height: 70px !important;
        margin-top: 60px;
    }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .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;
    }
    .header .button1, .header .button2 {
        margin-top: 6px !important;
    }
    .video {
        position: relative;
        max-height: 400px;
        overflow: hidden;
    }
    .uppertext {
        position: absolute;
        left: 0;
        right: 0;
        top: 15%;
        text-align: center;
    }
    .uppertext h1, .uppertext h2 {
        font-size: 70px;
        font-weight: 700;
        color: #fff;
        margin: 0;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
    }
    .uppertext .button1 {
        padding: 10px 25px;
        font-size: 18px;
    }
    .ctas {
        position: relative;
        margin-top: -80px;
    }
    .footer-right {
        text-align: right;
        padding-top: 60px;
    }
    .home-slider .bx-default-pager {
        display: none;
    }
    .home-slider {
        padding: 0;
    }
    .home-slider p {
        padding: 0 100px;
    }
    .big-p p {
        font-size: 24px;
    }
    .mb_appt_wrapper #results {
        width: 100% !important;
    }
    .gray-box2 {
        min-height: 900px;
    }
    .slider-left img {
        padding-left: 45px;
    }
    .menu-lines {
        padding-right: 25%;
    }
    .button-right {
        text-align: right;
    }
}
@media (max-width: 991px) {
    .right-section, .left-section {
        padding: 5px 30px 10px 30px;
    }
    .img-blue, .img-red {
        padding: 0 30px;
    }
    .img-blue:before {
        top: -25px;
        left: 100px;
        right: -50px;
        bottom: 60%;
    }
    .img-red:before {
        top: -25px;
        right: 100px;
        left: -500px;
        bottom: 60%;
    }
}
/*@media (min-width: 768px) and (max-width: 991px) {*/
/*    .right-section, .left-section {*/
/*        padding: 40px 30px 0 30px;*/
/*    }*/
/*}*/
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .row-same-height {
        display:table;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"]{
        display: table-cell;
        float: none;
        vertical-align: middle;
    }
    .tx-right {
        text-align: right;
    }
    .se_siteBranding {
        text-align: center;
    }
    .uppertext {
        top: 25%;
    }
    .home-slider {
        padding: 0 10%;
    }
    .video {
        max-height: 500px;
    }
    .right-section {
        padding: 0 5% 25px 50px;
    }
    .left-section {
        padding: 0 0 0 5%;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .uppertext {
        top: 35%;
    }
    .video {
        max-height: 600px;
    }
    .right-section {
        padding: 0 5% 25px 100px;
    }
    .left-section {
        padding: 0 75px 0 5%;
    }
}


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

/* - List Classes - */

.checklist ul { 
    padding-left: 35px; 
    list-style: none; 
}
.checklist ul li { 
    margin-bottom: 5px; 
}
.checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 10px 0 -25px;
}
.checklist p {
    font-size: 16px;
}
.white-checklist ul { 
    padding-left:20px; 
    list-style:none; 
}
.white-checklist ul li { 
    margin-bottom:10px; 
    color: #fff;
}
.white-checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 10px 0 -25px;
    color: #fff;
}
.white-checklist p {
    font-size: 16px;
}

/* ------ Edit Region ------- */

.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;
}
/* ------ Edit Region ------- */
.le_region_overlay_container_inside {
    position: relative;
    height: 28px;
    line-height: 28px;
    padding: 0 0 0 5px;
}
.edit-region-icon {
    color: white;
    background: #537fbc;
    font-size: 16px;
    margin: 0;
    right: 0;
    height: 28px;
    padding-left: 3px;
    line-height: 29px;
    width: 30px;
    text-align: center;
    top: 0;
    position: absolute;
    cursor: pointer; 
}

.le_region_image {
    position: relative;
    top: -2px;
}

/*---------------Hiding Style Editor (for use with Premium sites with Regions) START-----------*/
.aurora_sidebar_menu_item aurora_panel-group-divider{
    display: none !important;
}
.style-settings-label{
    display: none !important;
}
#aurora_background-options, #aurora_color-options, #aurora_typography-options{
    display: none !important;
}
.aurora_preset-wrapper{
    display: none !important;
}
.aurora_side_bar_label{
    display: none !important;
}
.aurora_side_bar_label:first-of-type{
    display: block !important;
}

/*----------Hiding Style Editor  (for use with Premium sites with Regions) END-------*/
.le-logged-in .footer-bottom {
    margin-bottom: 30px !important;
}
.le-edit-open .textbox {
    height: auto !important;
}
.le-edit-open .ctas {
    margin-top: 0;
}
.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;
}
/* mindbody staff page */
#le_mb_staff_page .no_classes {
    display: none;
}
/*#le_mb_staff_page .no_classes,*/
/*#le_mb_staff_page .instructs_list,*/
/*#le_mb_staff_page .class_list {*/
/*    display: none;*/
/*}*/

.instructs_list {
    display:none;
}
.class_list {
    display:none;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
#le_footer-area1 {
    margin-bottom: 30px;
}
#le_footer-area2 {
}
#le_footer-area3 {
}
#le_section-nine-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/etc-app-phone-tilt.png);
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: -20px;
    padding-top: 100px;
    padding-bottom: 100px;
}
#le_section-nine-area2 {
    padding-top: 20px;
}
.aurora_about-us #le_section-eight {
    padding-bottom: 50px;
}
.aurora_about-us #le_section-eight-area27 {
    padding-top: 1px;
}
.aurora_about-us #le_section-five {
}
.aurora_about-us #le_section-four {
    padding-bottom: 100px;
}
.aurora_about-us #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/elkhorn-building.jpg);
    background-position: bottom center;
}
.aurora_about-us #le_section-seven {
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_about-us #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_about-us #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_adult-edge #le_section-eight {
    padding-top: 75px;
    padding-bottom: 50px;
}
.aurora_adult-edge #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/weight-rack.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_adult-edge #le_section-one-area1 {
}
.aurora_adult-edge #le_section-seven {
    background-color: rgba(0, 0, 0, 0.03);
    margin-top: 75px;
    margin-bottom: 50px;
    padding-top: 60px;
    padding-bottom: 40px;
}
.aurora_adult-edge #le_section-two {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_baseball-and-softball-camps #le_section-eight {
    padding-top: 60px;
    padding-bottom: 75px;
}
.aurora_baseball-and-softball-camps #le_section-five {
    padding-top: 50px;
    padding-bottom: 125px;
}
.aurora_baseball-and-softball-camps #le_section-four {
    padding-bottom: 0px;
}
.aurora_baseball-and-softball-camps #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Softball_Stonegate-14.jpg);
    background-position: center center;
}
.aurora_baseball-and-softball-camps #le_section-one-area10 {
}
.aurora_baseball-and-softball-camps #le_section-one-area4 {
}
.aurora_baseball-and-softball-camps #le_section-one-area5 {
}
.aurora_baseball-and-softball-camps #le_section-one-area9 {
}
.aurora_baseball-and-softball-camps #le_section-six {
    padding-top: 50px;
}
.aurora_baseball-and-softball-camps #le_section-six-area2 {
    padding-bottom: 60px;
}
.aurora_baseball-and-softball-camps #le_section-three {
    padding-top: 125px;
    padding-bottom: 50px;
}
.aurora_baseball-and-softball-camps #le_section-two {
}
.aurora_baseball-classes #le_section-five {
    padding-top: 50px;
    padding-bottom: 125px;
}
.aurora_baseball-classes #le_section-four {
    padding-bottom: 0px;
}
.aurora_baseball-classes #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/girls-baseball-catcher-instruction/girls-baseball-catcher-instruction_1000x563.jpg);
    background-position: center center;
}
.aurora_baseball-classes #le_section-one-area10 {
}
.aurora_baseball-classes #le_section-one-area4 {
}
.aurora_baseball-classes #le_section-one-area5 {
}
.aurora_baseball-classes #le_section-one-area9 {
}
.aurora_baseball-classes #le_section-six {
    padding-top: 50px;
}
.aurora_baseball-classes #le_section-six-area2 {
    padding-bottom: 60px;
}
.aurora_baseball-classes #le_section-three {
    padding-top: 125px;
    padding-bottom: 50px;
}
.aurora_baseball-classes #le_section-two {
}
.aurora_battin4batten-charity-event #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_battin4batten-charity-event #le_section-four {
}
.aurora_battin4batten-charity-event #le_section-nine-area1 {
}
.aurora_battin4batten-charity-event #le_section-nine-area2 {
}
.aurora_battin4batten-charity-event #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screen_Shot_2024-12-16_at_3_42_48_PM.png);
    background-size: contain;
    background-position: center center;
}
.aurora_battin4batten-charity-event #le_section-one-area1 {
    padding-top: 20px;
}
.aurora_battin4batten-charity-event #le_section-one-area3 {
    padding-top: 40px;
}
.aurora_battin4batten-charity-event #le_section-seven {
}
.aurora_battin4batten-charity-event #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_battin4batten-charity-event #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_battin4batten-charity-event #le_section-three-area2 {
}
.aurora_battin4batten-charity-event #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_birthday-parties #le_section-eight {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_birthday-parties #le_section-four {
}
.aurora_birthday-parties #le_section-nine-area1 {
}
.aurora_birthday-parties #le_section-nine-area2 {
}
.aurora_birthday-parties #le_section-one {
    background-position: center center;
}
.aurora_birthday-parties #le_section-one-area1 {
}
.aurora_birthday-parties #le_section-one-area10 {
    padding-top: 0px;
}
.aurora_birthday-parties #le_section-one-area2 {
    padding-top: 140px;
    padding-left: 80px;
}
.aurora_birthday-parties #le_section-one-area3 {
    padding-top: -40px;
}
.aurora_birthday-parties #le_section-seven {
}
.aurora_birthday-parties #le_section-seven-area18 {
    padding-bottom: 10px;
}
.aurora_birthday-parties #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_birthday-parties #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_birthday-parties #le_section-three-area2 {
    padding-left: 100px;
}
.aurora_birthday-parties #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_birthday-party #le_section-boxes {
    padding-bottom: 75px;
}
.aurora_birthday-party #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_blast-motion-baseball #le_section-four {
}
.aurora_blast-motion-baseball #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/baseball-bat-ball.jpg);
}
.aurora_blast-motion-baseball #le_section-seven {
    padding-bottom: 75px;
}
.aurora_blast-motion-baseball #le_section-seven-area4 {
    padding-top: 1px;
}
.aurora_blast-motion-baseball #le_section-three {
    padding-top: 75px;
    padding-bottom: 50px;
}
.aurora_blast-motion-baseball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_blast-motion-softball #le_section-four {
}
.aurora_blast-motion-softball #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/woman-batting.jpg);
    background-position: center center;
}
.aurora_blast-motion-softball #le_section-seven {
    padding-bottom: 75px;
}
.aurora_blast-motion-softball #le_section-seven-area4 {
    padding-top: 1px;
}
.aurora_blast-motion-softball #le_section-three {
    padding-top: 75px;
    padding-bottom: 50px;
}
.aurora_blast-motion-softball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_book-a-cage #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/batting-cage-nets.jpeg);
    background-size: cover;
    background-position: bottom center;
}
.aurora_book-a-cage #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_book-a-football-private-lesson #le_section-eight {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_book-a-football-private-lesson #le_section-four {
}
.aurora_book-a-football-private-lesson #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/IMG_8464.jpg);
    background-position: top center;
}
.aurora_book-a-football-private-lesson #le_section-seven {
    padding-bottom: 75px;
}
.aurora_book-a-football-private-lesson #le_section-seven-area18-2 {
    padding-top: 0px;
}
.aurora_book-a-football-private-lesson #le_section-seven-area18-3 {
    padding-top: 0px;
}
.aurora_book-a-football-private-lesson #le_section-seven-area18-4 {
    padding-top: 0px;
}
.aurora_book-a-football-private-lesson #le_section-ten {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_book-a-football-private-lesson #le_section-three {
}
.aurora_book-a-football-private-lesson #le_section-twelve {
    padding-top: 15px;
}
.aurora_book-a-football-private-lesson #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_book-private-lesson #le_section-eight {
    background-color: rgb(0, 50, 102);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_book-private-lesson #le_section-four {
}
.aurora_book-private-lesson #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/batting-cage.jpg);
    background-position: top center;
}
.aurora_book-private-lesson #le_section-seven {
    padding-bottom: 75px;
}
.aurora_book-private-lesson #le_section-ten {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_book-private-lesson #le_section-three {
}
.aurora_book-private-lesson #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_developing-edge #le_section-four {
    padding-bottom: 100px;
}
.aurora_developing-edge #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boys-squats.jpg);
    background-position: top center;
}
.aurora_developing-edge #le_section-seven {
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_developing-edge #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_developing-edge #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_dynamic-football #le_box1 {
    padding-top: 0px;
}
.aurora_dynamic-football #le_section-boxes {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-football #le_section-four-area1 {
}
.aurora_dynamic-football #le_section-three {
    padding-top: 20px;
    padding-bottom: 0px;
}
.aurora_dynamic-football #le_section-three-area1 {
}
.aurora_dynamic-football #le_section-three-area2 {
}
.aurora_dynamic-football #le_section-three-area3 {
    background-color: rgba(0, 0, 0, 0);
}
.aurora_dynamic-football #le_section-three-area4 {
}
.aurora_dynamic-football #le_section-three-content1 {
    padding-bottom: 30px;
}
.aurora_dynamic-football #le_section-two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screenshot_2024-01-17_at_12_48_05_PM.png);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_dynamic-infield-baseball #le_section-eight {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_dynamic-infield-baseball #le_section-four {
}
.aurora_dynamic-infield-baseball #le_section-nine-area1 {
}
.aurora_dynamic-infield-baseball #le_section-nine-area2 {
}
.aurora_dynamic-infield-baseball #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/img_0301.jpg);
    background-position: center center;
}
.aurora_dynamic-infield-baseball #le_section-one-area10 {
    padding-top: 0px;
}
.aurora_dynamic-infield-baseball #le_section-one-area2 {
    padding-top: 140px;
    padding-left: 80px;
}
.aurora_dynamic-infield-baseball #le_section-one-area3 {
    padding-top: -40px;
}
.aurora_dynamic-infield-baseball #le_section-seven {
}
.aurora_dynamic-infield-baseball #le_section-seven-area18 {
    padding-bottom: 10px;
}
.aurora_dynamic-infield-baseball #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-infield-baseball #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_dynamic-infield-baseball #le_section-three-area2 {
    padding-left: 100px;
}
.aurora_dynamic-infield-baseball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_dynamic-softball-defense-camp #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_dynamic-softball-defense-camp #le_section-four {
}
.aurora_dynamic-softball-defense-camp #le_section-nine-area1 {
}
.aurora_dynamic-softball-defense-camp #le_section-nine-area2 {
}
.aurora_dynamic-softball-defense-camp #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/img_0287_2.jpg);
    background-position: bottom center;
}
.aurora_dynamic-softball-defense-camp #le_section-seven {
}
.aurora_dynamic-softball-defense-camp #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-softball-defense-camp #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-softball-defense-camp #le_section-three-area2 {
}
.aurora_dynamic-softball-defense-camp #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_dynamic-softball-infield #le_section-eight {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_dynamic-softball-infield #le_section-four {
}
.aurora_dynamic-softball-infield #le_section-nine-area1 {
}
.aurora_dynamic-softball-infield #le_section-nine-area2 {
}
.aurora_dynamic-softball-infield #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/img_0287.jpg);
    background-position: center center;
}
.aurora_dynamic-softball-infield #le_section-one-area10 {
    padding-top: 0px;
}
.aurora_dynamic-softball-infield #le_section-one-area2 {
    padding-top: 140px;
    padding-left: 80px;
}
.aurora_dynamic-softball-infield #le_section-one-area3 {
    padding-top: -40px;
}
.aurora_dynamic-softball-infield #le_section-seven {
}
.aurora_dynamic-softball-infield #le_section-seven-area18 {
    padding-bottom: 10px;
}
.aurora_dynamic-softball-infield #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-softball-infield #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_dynamic-softball-infield #le_section-three-area2 {
    padding-left: 100px;
}
.aurora_dynamic-softball-infield #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_dynamic-velocity #le_section-eight {
    background-color: rgb(0, 50, 102);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity #le_section-four {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_dynamic-velocity #le_section-nine-area1 {
}
.aurora_dynamic-velocity #le_section-nine-area2 {
}
.aurora_dynamic-velocity #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/baseball-pitching.jpg);
    background-position: top center;
}
.aurora_dynamic-velocity #le_section-one-area2 {
    padding-bottom: 25px;
    padding-left: 40px;
}
.aurora_dynamic-velocity #le_section-one-area9 {
    padding-left: 70px;
}
.aurora_dynamic-velocity #le_section-seven {
    background-color: rgba(255, 255, 255, 0.66);
    padding-top: 25px;
    padding-bottom: 0px;
}
.aurora_dynamic-velocity #le_section-seven-area18 {
}
.aurora_dynamic-velocity #le_section-seven-area18-4 {
    padding-top: 0px;
}
.aurora_dynamic-velocity #le_section-seven-area25-4 {
}
.aurora_dynamic-velocity #le_section-seven-area3 {
}
.aurora_dynamic-velocity #le_section-ten {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_dynamic-velocity #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-eight {
    background-color: rgb(237, 236, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-eight-area12 {
    padding-top: 1px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-five {
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-four {
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/baseball-pitching.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-seven {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area1 {
    margin-bottom: 40px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area40 {
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area41 {
    padding-top: 10px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-six {
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-ten {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Pitching-Joey-gray.jpeg);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-twelve {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity-baseball-lincoln #le_section-two {
}
.aurora_dynamic-velocity-baseball-omaha #le_section-eight {
    background-color: rgb(237, 236, 236);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_dynamic-velocity-baseball-omaha #le_section-five {
}
.aurora_dynamic-velocity-baseball-omaha #le_section-four {
}
.aurora_dynamic-velocity-baseball-omaha #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/baseball-pitching.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_dynamic-velocity-baseball-omaha #le_section-seven {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity-baseball-omaha #le_section-seven-area1 {
}
.aurora_dynamic-velocity-baseball-omaha #le_section-six {
}
.aurora_dynamic-velocity-baseball-omaha #le_section-ten {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Pitching-Joey-gray.jpeg);
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_dynamic-velocity-baseball-omaha #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dynamic-velocity-baseball-omaha #le_section-twelve {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_dynamic-velocity-baseball-omaha #le_section-two {
}
.aurora_dynamic-velocity-schedule #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_Dynamicinfieldsoftball #le_section-eight {
}
.aurora_Dynamicinfieldsoftball #le_section-four {
}
.aurora_Dynamicinfieldsoftball #le_section-nine-area1 {
}
.aurora_Dynamicinfieldsoftball #le_section-nine-area2 {
}
.aurora_Dynamicinfieldsoftball #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/img_0287.jpg);
    background-position: bottom center;
}
.aurora_Dynamicinfieldsoftball #le_section-seven {
    padding-bottom: 75px;
}
.aurora_Dynamicinfieldsoftball #le_section-ten {
}
.aurora_Dynamicinfieldsoftball #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_Dynamicinfieldsoftball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_eaa-soccer-d-edge-signup #le_section-one {
}
.aurora_eaa-soccer-d-edge-signup #le_section-one-area2 {
    padding-top: 0px;
}
.aurora_eaa-soccer-d-edge-signup #le_section-one-area3 {
    padding-top: 35px;
}
.aurora_eaa-soccer-d-edge-signup #le_section-two {
    padding-top: 50px;
}
.aurora_eaa-soccer-prep-edge-signup #le_section-one {
}
.aurora_eaa-soccer-prep-edge-signup #le_section-two {
    padding-top: 50px;
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area10 {
    background-color: rgba(0, 0, 0, 0.3);
    padding-right: 50px;
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area2 {
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area3 {
    padding-top: 75px;
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area4 {
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area5 {
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area6 {
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area8 {
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-one-area9 {
    background-color: rgba(0, 0, 0, 0.3);
    padding-right: 25px;
    padding-left: 50px;
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-three-area1 {
    padding-right: 75px;
    padding-left: 75px;
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-three-area2 {
    padding-right: 75px;
    padding-left: 75px;
}
.aurora_eaa-soccer-strength-and-conditioning #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_eaa-soccer-xplosive-edge #le_section-five {
    padding-top: 50px;
    padding-bottom: 125px;
}
.aurora_eaa-soccer-xplosive-edge #le_section-four {
    padding-bottom: 0px;
}
.aurora_eaa-soccer-xplosive-edge #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/girls-baseball-catcher-instruction/girls-baseball-catcher-instruction_1000x563.jpg);
    background-position: center center;
}
.aurora_eaa-soccer-xplosive-edge #le_section-one-area10 {
}
.aurora_eaa-soccer-xplosive-edge #le_section-one-area4 {
}
.aurora_eaa-soccer-xplosive-edge #le_section-one-area5 {
}
.aurora_eaa-soccer-xplosive-edge #le_section-one-area9 {
}
.aurora_eaa-soccer-xplosive-edge #le_section-six {
    padding-top: 50px;
}
.aurora_eaa-soccer-xplosive-edge #le_section-six-area2 {
    padding-bottom: 60px;
}
.aurora_eaa-soccer-xplosive-edge #le_section-three {
    padding-top: 125px;
    padding-bottom: 50px;
}
.aurora_eaa-soccer-xplosive-edge #le_section-two {
}
.aurora_elite-air-academy #le_box1 {
    padding-top: 0px;
}
.aurora_elite-air-academy #le_box3 {
    padding-right: 0px;
}
.aurora_elite-air-academy #le_section-boxes {
    padding-top: 50px;
    padding-bottom: 75px;
}
.aurora_elite-air-academy #le_section-four-area1 {
}
.aurora_elite-air-academy #le_section-one {
    padding-top: 25px;
}
.aurora_elite-air-academy #le_section-three {
    padding-top: 30px;
    padding-bottom: 0px;
}
.aurora_elite-air-academy #le_section-three-area1 {
}
.aurora_elite-air-academy #le_section-three-area2 {
}
.aurora_elite-air-academy #le_section-three-area3 {
    background-color: rgba(0, 0, 0, 0);
}
.aurora_elite-air-academy #le_section-three-area4 {
}
.aurora_elite-air-academy #le_section-three-content1 {
    padding-bottom: 30px;
}
.aurora_elite-air-academy #le_section-two {
}
.aurora_elkhorn-futures-hitting #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_enrollments #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_etc-fall-baseball #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_etc-fall-baseball #le_section-four {
    padding-top: 0px;
    padding-bottom: 25px;
}
.aurora_etc-fall-baseball #le_section-four-area1 {
    padding-right: 50px;
    padding-left: 0px;
}
.aurora_etc-fall-baseball #le_section-nine-area1 {
}
.aurora_etc-fall-baseball #le_section-nine-area2 {
}
.aurora_etc-fall-baseball #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/DSC04443.jpg);
    background-position: center center;
}
.aurora_etc-fall-baseball #le_section-one-area1 {
}
.aurora_etc-fall-baseball #le_section-one-area2 {
    padding-top: 25px;
}
.aurora_etc-fall-baseball #le_section-one-area3 {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_etc-fall-baseball #le_section-one-area4 {
    padding-top: 0px;
}
.aurora_etc-fall-baseball #le_section-one-area5 {
    padding-bottom: -75px;
    padding-left: 50px;
}
.aurora_etc-fall-baseball #le_section-one-area9 {
    padding-left: 0px;
}
.aurora_etc-fall-baseball #le_section-one-content1 {
}
.aurora_etc-fall-baseball #le_section-seven {
}
.aurora_etc-fall-baseball #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_etc-fall-baseball #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_etc-fall-baseball #le_section-three-area2 {
    padding-left: 60px;
}
.aurora_etc-fall-baseball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_exit-velocity #le_section-five {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_exit-velocity #le_section-four {
    background-color: rgb(237, 236, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_exit-velocity #le_section-four-area5 {
    padding-top: 1px;
}
.aurora_exit-velocity #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_exit-velocity #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_facilities #le_section-eight {
}
.aurora_facilities #le_section-five {
    padding-top: 150px;
    padding-bottom: 75px;
}
.aurora_facilities #le_section-four {
}
.aurora_facilities #le_section-nine-area1 {
}
.aurora_facilities #le_section-nine-area2 {
}
.aurora_facilities #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/pitching-mount.jpg);
    background-position: bottom center;
}
.aurora_facilities #le_section-seven {
}
.aurora_facilities #le_section-ten {
}
.aurora_facilities #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_facilities #le_section-two {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_fall-ball-all-stars #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_fall-ball-all-stars #le_section-three {
    padding-top: 50px;
    padding-bottom: 75px;
}
.aurora_fall-ball-all-stars #le_section-two {
}
.aurora_fall-baseball-copy #le_section-eight {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_fall-baseball-copy #le_section-four {
}
.aurora_fall-baseball-copy #le_section-nine-area1 {
}
.aurora_fall-baseball-copy #le_section-nine-area2 {
}
.aurora_fall-baseball-copy #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/DSC04443_copy.jpg);
    background-position: center center;
}
.aurora_fall-baseball-copy #le_section-one-area10 {
    padding-top: 0px;
}
.aurora_fall-baseball-copy #le_section-one-area2 {
    padding-top: 140px;
    padding-left: 80px;
}
.aurora_fall-baseball-copy #le_section-one-area3 {
    padding-top: -40px;
}
.aurora_fall-baseball-copy #le_section-seven {
}
.aurora_fall-baseball-copy #le_section-seven-area18 {
    padding-bottom: 10px;
}
.aurora_fall-baseball-copy #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_fall-baseball-copy #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_fall-baseball-copy #le_section-three-area2 {
    padding-left: 100px;
}
.aurora_fall-baseball-copy #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_fall-hittrax-baseball #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_fall-hittrax-baseball #le_section-four {
    padding-top: 25px;
    padding-bottom: 100px;
}
.aurora_fall-hittrax-baseball #le_section-nine-area1 {
}
.aurora_fall-hittrax-baseball #le_section-nine-area2 {
}
.aurora_fall-hittrax-baseball #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boy-baseball-batting.jpg);
    background-position: top center;
}
.aurora_fall-hittrax-baseball #le_section-seven {
}
.aurora_fall-hittrax-baseball #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_fall-hittrax-baseball #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_fall-hittrax-baseball #le_section-three-area2 {
}
.aurora_fall-hittrax-baseball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_field-general-catching #le_section-one {
    padding-top: 0px;
    padding-bottom: 100px;
}
.aurora_field-general-catching #le_section-one-area1 {
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
}
.aurora_field-general-catching #le_section-one-area2 {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
}
.aurora_field-general-catching #le_section-two {
    padding-bottom: 50px;
}
.aurora_flag-football #le_box1 {
    padding-top: 0px;
}
.aurora_flag-football #le_section-boxes {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_flag-football #le_section-five-area1 {
    background-color: rgb(0, 50, 102);
    padding-right: 10px;
    padding-left: 10px;
}
.aurora_flag-football #le_section-five-area4 {
    background-color: rgb(0, 50, 102);
    padding-right: 10px;
    padding-left: 10px;
}
.aurora_flag-football #le_section-four-area1 {
}
.aurora_flag-football #le_section-four-area2 {
    padding-bottom: 25px;
}
.aurora_flag-football #le_section-four-area3 {
    padding-top: 50px;
    padding-right: 0px;
    padding-left: 50px;
}
.aurora_flag-football #le_section-four-area4 {
    padding-top: 30px;
    padding-bottom: 15px;
}
.aurora_flag-football #le_section-three {
    padding-top: 20px;
    padding-bottom: 0px;
}
.aurora_flag-football #le_section-three-area1 {
}
.aurora_flag-football #le_section-three-area2 {
}
.aurora_flag-football #le_section-three-area3 {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 75px;
    padding-bottom: 35px;
    padding-left: 50px;
}
.aurora_flag-football #le_section-three-area4 {
}
.aurora_flag-football #le_section-three-area6 {
    padding-top: 0px;
    padding-left: 0px;
}
.aurora_flag-football #le_section-three-content1 {
    padding-bottom: 30px;
}
.aurora_flag-football #le_section-two {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
    padding-top: 25px;
}
.aurora_flex-4 #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_flex1 #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_flex2 #le_section-boxes {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_flex2 #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_flex2 #le_section-two {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/turf-grass-equipment.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_flex3-copy #le_section-boxes {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_flex3-copy #le_section-one {
}
.aurora_flex3-copy #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_flex3-copy #le_section-two {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/StonegateSlider1.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 150px;
}
.aurora_flex4 #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_flex4 #le_section-two {
}
.aurora_flex5 #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_fountain--delaet-all-skills-camp #le_section-eight {
}
.aurora_fountain--delaet-all-skills-camp #le_section-four {
}
.aurora_fountain--delaet-all-skills-camp #le_section-nine-area1 {
}
.aurora_fountain--delaet-all-skills-camp #le_section-nine-area2 {
}
.aurora_fountain--delaet-all-skills-camp #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/img_4656_2.jpg);
}
.aurora_fountain--delaet-all-skills-camp #le_section-seven {
    padding-bottom: 75px;
}
.aurora_fountain--delaet-all-skills-camp #le_section-ten {
}
.aurora_fountain--delaet-all-skills-camp #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_fountain--delaet-all-skills-camp #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_fundamental-edge #le_section-four {
}
.aurora_fundamental-edge #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.57)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screenshot_2024-10-03_at_1_03_55_PM.png);
    background-position: center center;
}
.aurora_fundamental-edge #le_section-one-area2 {
    padding-top: 20px;
}
.aurora_fundamental-edge #le_section-one-area3 {
    padding-top: 65px;
}
.aurora_fundamental-edge #le_section-one-area5 {
    padding-right: 15px;
    padding-left: 15px;
}
.aurora_fundamental-edge #le_section-seven {
    padding-top: 40px;
    padding-bottom: 75px;
}
.aurora_fundamental-edge #le_section-seven-area10 {
    padding-bottom: 0px;
}
.aurora_fundamental-edge #le_section-seven-area11 {
}
.aurora_fundamental-edge #le_section-three {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}
.aurora_fundamental-edge #le_section-three-area1 {
    padding-right: 0px;
    padding-left: 0px;
}
.aurora_fundamental-edge #le_section-three-area2 {
    padding-right: 0px;
}
.aurora_fundamental-edge #le_section-two {
    padding-top: 100px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.aurora_futures-all-skills-winter-break #le_section-boxes {
}
.aurora_futures-all-skills-winter-break #le_section-two {
}
.aurora_futures-hitting-and-fielding-camp #le_section-eight {
}
.aurora_futures-hitting-and-fielding-camp #le_section-four {
}
.aurora_futures-hitting-and-fielding-camp #le_section-nine-area1 {
}
.aurora_futures-hitting-and-fielding-camp #le_section-nine-area2 {
}
.aurora_futures-hitting-and-fielding-camp #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Header.png);
    background-size: cover;
    background-position: center center;
}
.aurora_futures-hitting-and-fielding-camp #le_section-one-area1 {
    padding-top: 0px;
}
.aurora_futures-hitting-and-fielding-camp #le_section-one-area10 {
    background-color: rgb(5, 26, 101);
    margin-top: 100px;
    margin-right: 100px;
    margin-bottom: 100px;
    margin-left: 25px;
    padding-top: 50px;
    padding-right: 75px;
    padding-bottom: 75px;
    padding-left: 50px;
}
.aurora_futures-hitting-and-fielding-camp #le_section-one-area9 {
    background-color: rgb(5, 26, 101);
    margin-top: 100px;
    margin-right: 25px;
    margin-bottom: 100px;
    margin-left: 100px;
    padding-top: 50px;
    padding-right: 75px;
    padding-bottom: 75px;
    padding-left: 50px;
}
.aurora_futures-hitting-and-fielding-camp #le_section-seven {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_futures-hitting-and-fielding-camp #le_section-seven-area1 {
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
}
.aurora_futures-hitting-and-fielding-camp #le_section-ten {
}
.aurora_futures-hitting-and-fielding-camp #le_section-three {
}
.aurora_futures-hitting-and-fielding-camp #le_section-three-area1 {
}
.aurora_futures-hitting-and-fielding-camp #le_section-three-area2 {
    padding-right: 50px;
    padding-left: 70px;
}
.aurora_futures-hitting-and-fielding-camp #le_section-two {
    padding-top: 100px;
    padding-bottom: 0px;
}
.aurora_futures-hitting-fielding #le_section-one {
    padding-top: 0px;
    padding-bottom: 100px;
}
.aurora_futures-hitting-fielding #le_section-one-area1 {
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 80px;
}
.aurora_futures-hitting-fielding #le_section-one-area2 {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-eight {
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-four {
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-nine-area1 {
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-nine-area2 {
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/img_0287.jpg);
    background-size: cover;
    background-position: bottom center;
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-one-area1 {
    padding-top: 0px;
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-seven {
    padding-top: 30px;
    padding-bottom: 75px;
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-ten {
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-three-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/youth_pitcher_26.jpg);
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-three-area2 {
    padding-right: 50px;
    padding-left: 70px;
}
.aurora_futures-softball-hitting-and-fielding-camp #le_section-two {
    padding-top: 100px;
    padding-bottom: 0px;
}
.aurora_gift-cards #le_section-one {
    background-image: linear-gradient(rgba(23, 50, 103, 0.61), rgba(23, 50, 103, 0.61)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screenshot_2024-07-03_at_2_17_49_PM.png);
}
.aurora_gift-cards #le_section-two {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_ground-up-infield-camp #le_section-one {
    padding-top: 0px;
    padding-bottom: 100px;
}
.aurora_ground-up-infield-camp #le_section-one-area1 {
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 80px;
}
.aurora_ground-up-infield-camp #le_section-one-area2 {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
}
.aurora_High-School-Live-Hitting #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screen_Shot_2025-08-19_at_10_55_47_AM.png);
}
.aurora_High-School-Live-Hitting #le_section-one-area1 {
}
.aurora_High-School-Live-Hitting #le_section-two {
    padding-top: 50px;
}
.aurora_highschool-tryout-camp #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_highschool-tryout-camp #le_section-eight-area1 {
    padding-top: 0px;
}
.aurora_highschool-tryout-camp #le_section-four {
}
.aurora_highschool-tryout-camp #le_section-nine-area1 {
}
.aurora_highschool-tryout-camp #le_section-nine-area2 {
}
.aurora_highschool-tryout-camp #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/September_28_ETC-14_copy.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_highschool-tryout-camp #le_section-one-area10 {
    padding-left: 100px;
}
.aurora_highschool-tryout-camp #le_section-one-area2 {
    padding-top: 0px;
    padding-left: 60px;
}
.aurora_highschool-tryout-camp #le_section-one-area3 {
    padding-top: 0px;
    padding-left: -30px;
}
.aurora_highschool-tryout-camp #le_section-one-area4 {
    padding-top: 0px;
    padding-right: 90px;
    padding-bottom: 100px;
}
.aurora_highschool-tryout-camp #le_section-one-area5 {
}
.aurora_highschool-tryout-camp #le_section-seven {
}
.aurora_highschool-tryout-camp #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_highschool-tryout-camp #le_section-three {
    padding-right: 70px;
    padding-bottom: 75px;
}
.aurora_highschool-tryout-camp #le_section-three-area1 {
}
.aurora_highschool-tryout-camp #le_section-three-area2 {
}
.aurora_highschool-tryout-camp #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_hittrax-baseball #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_hittrax-baseball #le_section-four {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_hittrax-baseball #le_section-nine-area1 {
}
.aurora_hittrax-baseball #le_section-nine-area2 {
}
.aurora_hittrax-baseball #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screenshot_2024-10-01_at_3_21_29_PM.png);
    background-position: top center;
}
.aurora_hittrax-baseball #le_section-seven {
}
.aurora_hittrax-baseball #le_section-seven-area1 {
    background-color: rgba(0, 0, 0, 0);
}
.aurora_hittrax-baseball #le_section-seven-area18 {
    background-color: rgb(0, 50, 102);
}
.aurora_hittrax-baseball #le_section-seven-area18-2 {
    background-color: rgb(0, 50, 102);
}
.aurora_hittrax-baseball #le_section-seven-area18-4 {
}
.aurora_hittrax-baseball #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_hittrax-baseball #le_section-three {
    padding-top: 75px;
    padding-bottom: 90px;
}
.aurora_hittrax-baseball #le_section-three-area2 {
    padding-bottom: 0px;
}
.aurora_hittrax-baseball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_home #le_left-content {
}
.aurora_home #le_right-content {
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
    border-width: 0px;
    padding-right: 10px;
    padding-left: 10px;
}
.aurora_home #le_section-eight-area1 {
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 30px;
    padding-left: 50px;
}
.aurora_home #le_section-eight-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/baseball-boys-watching-tv-screen.jpg);
    background-size: cover;
    background-position: center right;
    padding-top: 500px;
}
.aurora_home #le_section-five {
    padding-bottom: 0px;
}
.aurora_home #le_section-four {
    padding-top: 0px;
    padding-bottom: 30px;
}
.aurora_home #le_section-four-area1 {
    padding-top: 0px;
    padding-left: 25px;
}
.aurora_home #le_section-nine {
    background-color: rgb(219, 26, 56);
}
.aurora_home #le_section-nine-area1 {
    margin-top: -40px;
}
.aurora_home #le_section-nine-area2 {
}
.aurora_home #le_section-seven {
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/xplosive-edge.jpeg);
    background-size: cover;
    background-position: center center;
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_home #le_section-six {
    padding-bottom: 0px;
}
.aurora_home #le_section-three {
    padding-top: 100px;
}
.aurora_home #le_section-two-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/cta-hitting-memberships.jpg);
    background-size: cover;
    background-position: center center;
}
.aurora_home #le_section-two-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/cta-batting-cage.jpg);
    background-size: cover;
    background-position: center center;
}
.aurora_home #le_section-two-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/cta-Xplosive-Edge-back-tshirt.jpg);
    background-size: cover;
    background-position: center center;
}
.aurora_home #le_section-two-area4 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/DSC04443_copy3.jpg);
    background-size: cover;
    background-position: center center;
}
.aurora_home #le_section-two-area5 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/baseball-pitching.jpg);
    background-size: contain;
    background-position: center center;
}
.aurora_home #le_section-two-area6 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screen_Shot_2025-04-30_at_12_01_51_PM.png);
    background-size: cover;
    background-position: top center;
}
.aurora_instructors #le_section-eight {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_instructors #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boy-wind-up-pitch.jpg);
    background-position: center center;
}
.aurora_instructors #le_section-thirteen {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_instructors #le_section-three {
}
.aurora_instructors #le_section-twelve {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_instructors #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_memberships #le_section-eleven {
    padding-bottom: 125px;
}
.aurora_memberships #le_section-eleven-area1 {
    padding-right: 75px;
    padding-left: 5%;
}
.aurora_memberships #le_section-four {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_memberships #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/batting-cages.jpg);
    background-position: center center;
}
.aurora_memberships #le_section-seven {
    padding-bottom: 75px;
}
.aurora_memberships #le_section-ten {
}
.aurora_memberships #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_midwest-indoor-hitting-league #le_section-eight {
    padding-top: 25px;
    padding-bottom: 75px;
}
.aurora_midwest-indoor-hitting-league #le_section-four {
}
.aurora_midwest-indoor-hitting-league #le_section-nine-area1 {
}
.aurora_midwest-indoor-hitting-league #le_section-nine-area2 {
}
.aurora_midwest-indoor-hitting-league #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boy-batting-position.jpg);
    background-position: top center;
}
.aurora_midwest-indoor-hitting-league #le_section-seven {
}
.aurora_midwest-indoor-hitting-league #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_midwest-indoor-hitting-league #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_midwest-indoor-hitting-league #le_section-three-area2 {
}
.aurora_midwest-indoor-hitting-league #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_prep-edge #le_section-four {
}
.aurora_prep-edge #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boys-deadlift.jpg);
    background-position: center center;
}
.aurora_prep-edge #le_section-seven {
    padding-bottom: 75px;
}
.aurora_prep-edge #le_section-ten-area11 {
    margin-top: 75px;
    margin-bottom: 75px;
}
.aurora_prep-edge #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_prep-edge #le_section-three-area2 {
    padding-right: 5%;
    padding-bottom: 25px;
    padding-left: 100px;
}
.aurora_prep-edge #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_QB-Boot-Camp #le_box2 {
    background-position: center center;
}
.aurora_QB-Boot-Camp #le_section-boxes {
    padding-top: 80px;
}
.aurora_QB-Boot-Camp #le_section-one {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_QB-Boot-Camp #le_section-title {
}
.aurora_QB-Boot-Camp #le_section-two-content1 {
    background-size: auto;
    background-position: center center;
}
.aurora_rec-futures-softball-sign-up #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Header_copy.png);
}
.aurora_rec-futures-softball-sign-up #le_section-two {
    padding-top: 50px;
}
.aurora_softball-classes #le_section-five {
    padding-top: -30px;
    padding-bottom: 0px;
}
.aurora_softball-classes #le_section-five-area2 {
    padding-bottom: 70px;
}
.aurora_softball-classes #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/girl-softball-bat.jpg);
    background-position: top center;
}
.aurora_softball-classes #le_section-one-area10 {
}
.aurora_softball-classes #le_section-one-area4 {
}
.aurora_softball-classes #le_section-one-area5 {
}
.aurora_softball-classes #le_section-one-area9 {
}
.aurora_softball-classes #le_section-six-area1 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.aurora_softball-classes #le_section-three {
    padding-top: 0px;
}
.aurora_softball-classes #le_section-two {
}
.aurora_softball-coaches-clinic #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_softball-dynamic-infield-training #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_softball-dynamic-velocity #le_section-one {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/girl-softball-helemet.jpg);
    background-position: center center;
}
.aurora_softball-dynamic-velocity #le_section-seven {
    background-color: rgb(237, 236, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_softball-dynamic-velocity #le_section-seven-area1 {
}
.aurora_softball-dynamic-velocity #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_softball-exit-velocity #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_softball-exit-velocity #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_softball-exit-velocity #le_section-three-area6 {
    padding-left: 25px;
}
.aurora_softball-high-school-tryout-camp #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_speed-camp #le_section-four {
}
.aurora_speed-camp #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/ladder-ropes.jpg);
    background-position: center center;
}
.aurora_speed-camp #le_section-seven {
    padding-bottom: 75px;
}
.aurora_speed-camp #le_section-seven-area11 {
}
.aurora_speed-camp #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_speed-camp #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_swing-club #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_swing-club #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_swing-club-baseball #le_section-eight {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_swing-club-baseball #le_section-four {
}
.aurora_swing-club-baseball #le_section-nine-area1 {
}
.aurora_swing-club-baseball #le_section-nine-area2 {
}
.aurora_swing-club-baseball #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.73), rgba(255, 255, 255, 0.73)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/ht6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: top center;
}
.aurora_swing-club-baseball #le_section-one-area1 {
}
.aurora_swing-club-baseball #le_section-one-area10 {
    padding-top: 0px;
}
.aurora_swing-club-baseball #le_section-one-area2 {
    padding-top: 0px;
    padding-bottom: 80px;
    padding-left: 80px;
}
.aurora_swing-club-baseball #le_section-one-area3 {
    padding-top: -40px;
}
.aurora_swing-club-baseball #le_section-one-area5 {
    padding-left: 30px;
}
.aurora_swing-club-baseball #le_section-one-content1 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_swing-club-baseball #le_section-seven {
    padding-top: 25px;
}
.aurora_swing-club-baseball #le_section-seven-area1 {
    background-color: rgba(0, 0, 0, 0);
}
.aurora_swing-club-baseball #le_section-seven-area18 {
    padding-bottom: 10px;
}
.aurora_swing-club-baseball #le_section-seven-area2 {
    background-color: rgba(0, 0, 0, 0.14);
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}
.aurora_swing-club-baseball #le_section-seven-area3 {
    background-color: rgba(0, 0, 0, 0.14);
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}
.aurora_swing-club-baseball #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_swing-club-baseball #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_swing-club-baseball #le_section-three-area2 {
    padding-left: 100px;
}
.aurora_swing-club-baseball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_swing-club-bsb-sb #le_section-eight {
    padding-top: 60px;
    padding-bottom: 75px;
}
.aurora_swing-club-bsb-sb #le_section-eight-area2 {
}
.aurora_swing-club-bsb-sb #le_section-five {
    padding-top: 50px;
    padding-bottom: 20px;
}
.aurora_swing-club-bsb-sb #le_section-four {
    padding-bottom: 0px;
}
.aurora_swing-club-bsb-sb #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.73), rgba(255, 255, 255, 0.73)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screenshot_2024-04-09_at_2_17_30_PM.png);
    background-size: length;
    background-attachment: fixed;
    background-position: center center;
}
.aurora_swing-club-bsb-sb #le_section-one-area10 {
}
.aurora_swing-club-bsb-sb #le_section-one-area4 {
}
.aurora_swing-club-bsb-sb #le_section-one-area5 {
}
.aurora_swing-club-bsb-sb #le_section-one-area9 {
}
.aurora_swing-club-bsb-sb #le_section-six {
    padding-top: 50px;
}
.aurora_swing-club-bsb-sb #le_section-six-area2 {
    padding-bottom: 60px;
}
.aurora_swing-club-bsb-sb #le_section-three {
    padding-top: 125px;
    padding-bottom: 50px;
}
.aurora_swing-club-bsb-sb #le_section-two {
}
.aurora_swing-club-softball #le_section-eight {
    padding-top: 0px;
    padding-bottom: 75px;
}
.aurora_swing-club-softball #le_section-four {
}
.aurora_swing-club-softball #le_section-nine-area1 {
}
.aurora_swing-club-softball #le_section-nine-area2 {
}
.aurora_swing-club-softball #le_section-one {
    background-image: linear-gradient(rgba(255, 255, 255, 0.73), rgba(255, 255, 255, 0.73)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Screenshot_2024-03-13_at_10_54_41_AM_copy.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: top center;
}
.aurora_swing-club-softball #le_section-one-area1 {
}
.aurora_swing-club-softball #le_section-one-area10 {
    padding-top: 0px;
}
.aurora_swing-club-softball #le_section-one-area2 {
    padding-top: 140px;
    padding-left: 80px;
}
.aurora_swing-club-softball #le_section-one-area3 {
    padding-top: -40px;
}
.aurora_swing-club-softball #le_section-one-content1 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_swing-club-softball #le_section-seven {
}
.aurora_swing-club-softball #le_section-seven-area18 {
    padding-bottom: 10px;
}
.aurora_swing-club-softball #le_section-ten {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_swing-club-softball #le_section-three {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_swing-club-softball #le_section-three-area2 {
    padding-left: 100px;
}
.aurora_swing-club-softball #le_section-two {
    padding-top: 100px;
    padding-bottom: 50px;
}
.aurora_team-rentals #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_team-rentals #le_section-one-area1 {
    padding-right: 75px;
    padding-left: 5%;
}
.aurora_team-rentals #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_terms-and-privacy-policy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_test #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_test1 #le_section-five {
    background-color: rgb(207, 37, 55);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_test1 #le_section-four {
    background-color: rgb(237, 236, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_test1 #le_section-four-area5 {
    padding-top: 1px;
}
.aurora_test1 #le_section-one {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_test1 #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_the-xplosive-edge #le_section-eight {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_the-xplosive-edge #le_section-eight-area31 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/teenage-boys-deadlift-weights.jpg);
    background-size: cover;
    background-position: top center;
    margin-bottom: 10px;
    padding-top: 378px;
}
.aurora_the-xplosive-edge #le_section-eight-area32 {
    background-color: rgb(0, 50, 102);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 45px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-eight-area33 {
    background-color: rgb(207, 37, 55);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-fourteen {
    background-color: rgb(247, 247, 247);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_the-xplosive-edge #le_section-fourteen-area21 {
    background-color: rgb(0, 50, 102);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-fourteen-area22 {
    background-color: rgb(207, 37, 55);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/Xplosive-Edge-back-tshirt.jpg);
    background-position: center center;
}
.aurora_the-xplosive-edge #le_section-seven {
    background-color: rgb(247, 247, 247);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_the-xplosive-edge #le_section-seven-area32 {
}
.aurora_the-xplosive-edge #le_section-seven-area35 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boys-weights-squats.jpg);
    background-size: cover;
    background-position: center center;
    margin-bottom: 10px;
    padding-top: 363px;
}
.aurora_the-xplosive-edge #le_section-seven-area36 {
    background-color: rgb(0, 50, 102);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-seven-area37 {
    background-color: rgb(207, 37, 55);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 105px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-ten {
    background-color: rgb(247, 247, 247);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_the-xplosive-edge #le_section-ten-area20 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/boy-sprinting_copy/boy-sprinting_copy_1000x563.jpg);
    background-size: cover;
    background-position: bottom center;
    padding-top: 340px;
}
.aurora_the-xplosive-edge #le_section-ten-area21 {
    background-color: rgb(0, 50, 102);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-ten-area22 {
    background-color: rgb(207, 37, 55);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 83px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-twelve {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_the-xplosive-edge #le_section-twelve-area20 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/elkhorntrainingcampnew/weight-rack/weight-rack_1000x667.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 355px;
}
.aurora_the-xplosive-edge #le_section-twelve-area21 {
    background-color: rgb(0, 50, 102);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-twelve-area22 {
    background-color: rgb(207, 37, 55);
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 30px;
    padding-left: 25px;
}
.aurora_the-xplosive-edge #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_xplosive-edge-eaa-soccer #le_section-one {
    padding-top: 0px;
    padding-bottom: 100px;
}
.aurora_xplosive-edge-eaa-soccer #le_section-one-area1 {
    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 140px;
    padding-left: 40px;
}
.aurora_xplosive-edge-eaa-soccer #le_section-one-area2 {
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    #le_footer-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    #le_footer-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    #le_footer-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-eight-area27 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-four {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-three {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about-us #le_section-two {
    padding-top: 75px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adult-edge #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adult-edge #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adult-edge #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adult-edge #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adult-edge #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-and-softball-camps #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_baseball-classes #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_battin4batten-charity-event #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-parties #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-party #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_birthday-party #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-baseball #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-baseball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-baseball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-baseball #le_section-seven-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-baseball #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-baseball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-softball #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-softball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-softball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-softball #le_section-seven-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-softball #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blast-motion-softball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-cage #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-cage #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven-area18-2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven-area18-3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven-area18-4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-twelve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-a-football-private-lesson #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-private-lesson #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_developing-edge #le_section-four {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_developing-edge #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_developing-edge #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_developing-edge #le_section-three {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_developing-edge #le_section-two {
    padding-top: 75px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_box1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-three-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-three-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-three-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-football #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-infield-baseball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-softball-infield #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-four {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-seven {
    padding-top: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-seven-area18-4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-seven-area25-4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-seven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity #le_section-two {
    padding-top: 75px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-eight-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area40 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area41 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-twelve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-twelve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dynamic-velocity-schedule #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-three {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-prep-edge-signup #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-prep-edge-signup #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_box1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_box3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-three-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-three-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-three-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elite-air-academy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elkhorn-futures-hitting #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_enrollments #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-four {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_etc-fall-baseball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exit-velocity #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exit-velocity #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exit-velocity #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exit-velocity #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_exit-velocity #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-five {
    padding-top: 50px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-three {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_facilities #le_section-two {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-ball-all-stars #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-ball-all-stars #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-ball-all-stars #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-baseball-copy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-four {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fall-hittrax-baseball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_field-general-catching #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_field-general-catching #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_field-general-catching #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_field-general-catching #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_box1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-five-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-three-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flag-football #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex-4 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex1 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex2 #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex2 #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex2 #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex3-copy #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex3-copy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex3-copy #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex3-copy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex4 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex4 #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_flex5 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-three {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-seven-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-seven-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_fundamental-edge #le_section-two {
    padding-top: 75px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-all-skills-winter-break #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-all-skills-winter-break #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-fielding #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-fielding #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-hitting-fielding #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-three {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_gift-cards #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_gift-cards #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_ground-up-infield-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_ground-up-infield-camp #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_ground-up-infield-camp #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_High-School-Live-Hitting #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_High-School-Live-Hitting #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_High-School-Live-Hitting #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-eight-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_highschool-tryout-camp #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-four {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-seven-area18-2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-seven-area18-4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hittrax-baseball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_left-content {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_right-content {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight-area1 {
    padding-top: 100px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight-area2 {
    padding-top: 300px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four {
    padding-top: 100px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine-area2 {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven {
    padding-top: 50px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three {
    padding-top: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_instructors #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_instructors #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_instructors #le_section-thirteen {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_instructors #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_instructors #le_section-twelve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_instructors #le_section-two {
    padding-top: 75px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-eleven {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-eleven-area1 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-four {
    padding-top: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_memberships #le_section-two {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-ten-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-three-area2 {
    padding-top: 75px;
    padding-right: 35px;
    padding-left: 35px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prep-edge #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_QB-Boot-Camp #le_box2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_QB-Boot-Camp #le_section-boxes {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_QB-Boot-Camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_QB-Boot-Camp #le_section-title {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_QB-Boot-Camp #le_section-two-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_rec-futures-softball-sign-up #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_rec-futures-softball-sign-up #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-five-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-six-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-classes #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-coaches-clinic #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-dynamic-infield-training #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-dynamic-velocity #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-dynamic-velocity #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-dynamic-velocity #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-dynamic-velocity #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-exit-velocity #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-exit-velocity #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-exit-velocity #le_section-three-area6 {
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_softball-high-school-tryout-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speed-camp #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speed-camp #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speed-camp #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speed-camp #le_section-seven-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speed-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speed-camp #le_section-two {
    padding-top: 75px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-seven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-seven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-baseball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-eight-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-bsb-sb #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-one-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_swing-club-softball #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_team-rentals #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_team-rentals #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_team-rentals #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_terms-and-privacy-policy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test1 #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test1 #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test1 #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test1 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_test1 #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-eight-area31 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-eight-area32 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-eight-area33 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-fourteen {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-fourteen-area21 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-fourteen-area22 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area32 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area35 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area36 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area37 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-ten-area20 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-ten-area21 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-ten-area22 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-twelve {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-twelve-area20 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-twelve-area21 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-twelve-area22 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-xplosive-edge #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_xplosive-edge-eaa-soccer #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_xplosive-edge-eaa-soccer #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_xplosive-edge-eaa-soccer #le_section-one-area2 {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    #le_footer-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    #le_footer-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    #le_footer-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-eight-area27 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-four {
    padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-seven {
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-three {
    padding-top: 50px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about-us #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adult-edge #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adult-edge #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adult-edge #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adult-edge #le_section-seven {
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adult-edge #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-three {
    padding-top: 100px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-and-softball-camps #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-three {
    padding-top: 100px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_baseball-classes #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_battin4batten-charity-event #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-parties #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-party #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_birthday-party #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-baseball #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-baseball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-baseball #le_section-seven {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-baseball #le_section-seven-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-baseball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-softball #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-softball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-softball #le_section-seven {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-softball #le_section-seven-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-softball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blast-motion-softball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-cage #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-cage #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-eight {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven-area18-2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven-area18-3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-seven-area18-4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-ten {
    padding-top: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-twelve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-a-football-private-lesson #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-eight {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-ten {
    padding-top: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-private-lesson #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_developing-edge #le_section-four {
    padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_developing-edge #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_developing-edge #le_section-seven {
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_developing-edge #le_section-three {
    padding-top: 25px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_developing-edge #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_box1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-three-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-three-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-three-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-football #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-infield-baseball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-defense-camp #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-softball-infield #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-four {
    padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-seven {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-seven-area18-4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-seven-area25-4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-seven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-ten {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-eight-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area40 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-seven-area41 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-twelve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-lincoln #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-twelve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-baseball-omaha #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dynamic-velocity-schedule #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-seven {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_Dynamicinfieldsoftball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-one-area2 {
    padding-top: 0px;
    padding-right: 30px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-d-edge-signup #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-prep-edge-signup #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-prep-edge-signup #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area2 {
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area6 {
    padding-bottom: 35px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area8 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-strength-and-conditioning #le_section-two {
    padding-top: 35px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-three {
    padding-top: 100px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_eaa-soccer-xplosive-edge #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_box1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_box3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-three-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-three-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-three-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elite-air-academy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elkhorn-futures-hitting #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_enrollments #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-four {
    padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-area3 {
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-area4 {
    padding-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-area5 {
    padding-right: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_etc-fall-baseball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exit-velocity #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exit-velocity #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exit-velocity #le_section-four-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exit-velocity #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_exit-velocity #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-five {
    padding-top: 25px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-four {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-three {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_facilities #le_section-two {
    padding-top: 60px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-ball-all-stars #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-ball-all-stars #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-ball-all-stars #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-baseball-copy #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-four {
    padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fall-hittrax-baseball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_field-general-catching #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_field-general-catching #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_field-general-catching #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_field-general-catching #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_box1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-five-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-four-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-four-area3 {
    padding-top: -20px;
    padding-right: 50px;
    padding-left: -75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-four-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-three-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flag-football #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex-4 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex1 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex2 #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex2 #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex2 #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex3-copy #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex3-copy #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex3-copy #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex3-copy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex4 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex4 #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_flex5 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-seven {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fountain--delaet-all-skills-camp #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-seven-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-seven-area11 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_fundamental-edge #le_section-two {
    padding-top: 60px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-all-skills-winter-break #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-all-skills-winter-break #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one-area10 {
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-one-area9 {
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-seven {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-and-fielding-camp #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-fielding #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-fielding #le_section-one-area1 {
    padding-top: 60px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-hitting-fielding #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-seven {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_futures-softball-hitting-and-fielding-camp #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_gift-cards #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_gift-cards #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_ground-up-infield-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_ground-up-infield-camp #le_section-one-area1 {
    padding-top: 60px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_ground-up-infield-camp #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_High-School-Live-Hitting #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_High-School-Live-Hitting #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_High-School-Live-Hitting #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-eight-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_highschool-tryout-camp #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-four {
    padding-bottom: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-seven-area18 {
    padding-right: 10px;
    padding-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-seven-area18-2 {
    padding-right: 10px;
    padding-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-seven-area18-4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hittrax-baseball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_left-content {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_right-content {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight-area1 {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight-area2 {
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four {
    padding-top: 100px;
    padding-bottom: 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-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_instructors #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_instructors #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_instructors #le_section-thirteen {
    padding-top: 25px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_instructors #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_instructors #le_section-twelve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_instructors #le_section-two {
    padding-top: 60px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-eleven {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-eleven-area1 {
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 60px;
    padding-left: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-four {
    padding-top: 0px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-seven {
    padding-top: 75px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_memberships #le_section-two {
    padding-top: 75px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_midwest-indoor-hitting-league #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-seven {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-ten-area11 {
    margin-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-three-area2 {
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 60px;
    padding-left: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prep-edge #le_section-two {
    padding-top: 60px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_QB-Boot-Camp #le_box2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_QB-Boot-Camp #le_section-boxes {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_QB-Boot-Camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_QB-Boot-Camp #le_section-title {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_QB-Boot-Camp #le_section-two-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_rec-futures-softball-sign-up #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_rec-futures-softball-sign-up #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-six-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-three {
    padding-top: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-classes #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-coaches-clinic #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-dynamic-infield-training #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-dynamic-velocity #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-dynamic-velocity #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-dynamic-velocity #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-dynamic-velocity #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-exit-velocity #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-exit-velocity #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-exit-velocity #le_section-three-area6 {
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_softball-high-school-tryout-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speed-camp #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speed-camp #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speed-camp #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speed-camp #le_section-seven-area11 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speed-camp #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speed-camp #le_section-two {
    padding-top: 60px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one-area2 {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-seven {
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-seven-area2 {
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-seven-area3 {
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-baseball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-eight-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-one-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-three {
    padding-top: 100px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-bsb-sb #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-nine-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-one-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-seven-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-three {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_swing-club-softball #le_section-two {
    padding-top: 60px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_team-rentals #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_team-rentals #le_section-one-area1 {
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 60px;
    padding-left: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_team-rentals #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_terms-and-privacy-policy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test1 #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test1 #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test1 #le_section-four-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test1 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_test1 #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-eight-area31 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-eight-area32 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-eight-area33 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-fourteen {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-fourteen-area21 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-fourteen-area22 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area32 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area35 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area36 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-seven-area37 {
    padding-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-ten-area20 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-ten-area21 {
    padding-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-ten-area22 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-twelve {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-twelve-area20 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-twelve-area21 {
    padding-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-twelve-area22 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-xplosive-edge #le_section-two {
    padding-top: 60px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_xplosive-edge-eaa-soccer #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_xplosive-edge-eaa-soccer #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_xplosive-edge-eaa-soccer #le_section-one-area2 {
    }
}

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