body {
    font-family: "Open Sans", sans-serif;
    margin: 0 auto;
	font-size: 16px;
	line-height: 1.4;
	color: var(--bg-main);
}

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

:root {
    --bg-yellow: #ffcd00;
    --bg-dark-blue: #1f3d7b;
    --bg-red: #f15e4c;
    --bg-green: #009f57;
    --bg-orange: #f7933b;
    --bg-light-blue: #71c4ee;
    --bg-main: #000;
}


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

a {
	text-decoration: none;
	color: var(--bg-dark-blue);
}
a:hover {
	text-decoration: none;
	color: var(--bg-light-blue);
}
p {
    font-family: "Open Sans", sans-serif;
	margin: 0;
	color: var(--bg-main);
	font-size: 16px;
	line-height: 1.4;
}
h1, h1 a, .title1, .title1 a {
    font-family: "Merriweather", serif;
    color: var(--bg-dark-blue);
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: normal;
	font-size: 36px;
}
h2, h2 a, .title2, .title2 a {
    font-family: "Merriweather", serif;
    color: var(--bg-dark-blue);
    font-size: 30px;
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: normal;
}
h3, h3 a, .title3, .title3 a {
    font-family: "Merriweather", serif;
    color: var(--bg-dark-blue);
    font-size: 24px;
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h4, h4 a, .title4, .title4 a {
    font-family: "Merriweather", serif;
    color: var(--bg-dark-blue);
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h5, h5 a, .title5, .title5 a {
    font-family: "Merriweather", serif;
    color: var(--bg-dark-blue);
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h6, h6 a, .title6, .title6 a {
    font-family: "Merriweather", serif;
    color: var(--bg-dark-blue);
	margin:0 0 .2em 0;
	line-height: 1.4;
}

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

.le_form {
    margin-top: 10px;
}
.le_form_name {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
	font-size: 18px;
	margin: 0 0 10px 0;
}
.le_form label {
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
}
.form-group {
	margin-bottom: 10px;
	position: relative;
}
.seFormButton, .wrapper input[type="submit"].seFormButton {
    font-family: "Open Sans", sans-serif;
    background-color: var(--bg-yellow);
    color: var(--bg-black);
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
	padding: 10px 20px;
	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: "Open Sans", sans-serif;
	padding: 10px;
	background-color: #fff;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius: 0;
	border:1px solid rgb(210,210,210);
	box-shadow: none !important;
	margin: 0;
}

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

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

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

/* ---- Form Alerts --- */
.le_form_container .error {
    color: #000;
    padding: 3px 8px;
    background-color: #fdcece;
}
.form-inline .no-labels label.error,.no-labels label.error {
    display:block !important;
}
.form-inline label.error {
    display:block;
    position: absolute;
    color: red;
    background: pink;
    padding: 2px 3px;
    border-radius: 2px;
    z-index: 2;
    color: #cd1719;
    font-size: 12px;
}
.recaptcha-terms {
    padding: 0 !important;
    margin: 0 !important;
}


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

.se_button a, a.se_button {
    font-family: "Open Sans", sans-serif;
    background-color: var(--bg-yellow);
    color: var(--bg-black);
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
	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-light-blue);
    color: var(--bg-black);
    text-decoration: none;
}
.se_button.button1 a, a.se_button.button1 {
    margin-top: 10px;
}
.se_button.button2 a, a.se_button.button2 {
    background-color: #fff;
    color: #000;
    margin-top: 10px;
}
.se_button.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: 100%;
    height: auto;
}
.se_siteBranding a {
	word-break: break-word;
	max-width: 100%;
}
.se_siteBranding a:hover {
    text-decoration: none;
}
.le_logo_text {
    line-height: 1.4;
}

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

.whitetext h1, .whitetext h2, .whitetext h3, .whitetext h4, .whitetext h5, .whitetext h6, .whitetext p, .whitetext {
    color: #ffffff;
}
.whitetext h1 a, .whitetext h2 a, .whitetext h3 a, .whitetext h4 a, .whitetext h5 a, .whitetext h6 a, .whitetext p a, .whitetext a {
    color: #ffffff;
}
.whitetext h1 a:hover {
    color: #cccece;
}
.curve-img {
    position: relative;
    margin-bottom: -5px;
}
.icon {
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 25px;
    margin-bottom: 25px;
}
.icon h6 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: var(--bg-main);
    font-weight: 400;
}
.icon img {
    margin-bottom: 20px;
    width: auto;
    height: 100px;
}
.bigtext h2 {
    font-size: 36px;
}
.video-section {
    padding-top: 75px;
}
.bluebox {
    background-color: var(--bg-dark-blue);
    border: 1px solid #eaeaea;
    padding: 30px 25px 50px 25px;
    margin: 100px 0 50px 0;
    text-align: center;
}
.bluebox h2 {
    color: var(--bg-yellow);
    margin-bottom: 15px;
}
.bluebox p {
    color: #fff;
}
.bluebox a {
    color: #cecece;
}
.bluebox hr {
    background-color: var(--bg-yellow);
    margin: 15px 20px;
}
.bluebox img {
    width: 200px;
    height: auto;
    position: relative;
    display: block;
    margin: -125px auto 25px auto;
}
.testimonials {
    position: relative;
}
.testimonials .swiper-slide {
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 30px 25px;
    text-align: center;
    margin-bottom: 50px !important;
}
.testimonials .swiper-slide:before {
    position: relative;
    content: '\f10d';
    font-family: 'FontAwesome';
    color: var(--bg-yellow);
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 30px;
}
.testimonials .swiper-pagination-bullet {
    background: var(--bg-dark-blue);
}
.testimonials h6 {
    font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin-top: 10px;
}
.top-bknd-animal {
    position: relative;
    display: block;
    top: -75px;
    margin-bottom: -400px;
    left: -150px;
    z-index: 1;
}
.bottom-bknd-animal {
    position: relative;
    display: block;
    bottom: -50px;
    margin-top: -150px;
    padding-right: 50px;
}
.top-bknd-animal2 {
    position: relative;
    display: block;
    top: -125px;
    margin-bottom: -400px;
    left: -125px;
    z-index: 1;
}
.bottom-bknd-animal2 {
    position: relative;
    display: block;
    margin-bottom: -400px;
    top: -150px;
    right: -125px;
}
#le_section-two {
    position: relative;
}
.top-bknd-animal3 {
    position: absolute;
    display: inline-block;
    bottom: -350px;
    float: right;
    right: 0;
}
.top-bknd-animal4 {
    position: absolute;
    display: inline-block;
    bottom: -300px;
    float: right;
    right: 0;
}
.top-bknd-animal5 {
    position: absolute;
    display: inline-block;
    bottom: -325px;
    left: 0;
    float: left;
}
.right-curve {
    position: relative;
    margin-bottom: -5px;
}
.right-curve img {
    border-top-right-radius: 50%;
    width: 100%;
    height: auto;
}
.yellow-box {
    background-color: var(--bg-yellow);
    padding: 30px 25px;
    margin-bottom: 25px;
}
.white-box {
    position: relative;
}
.white-box .swiper-slide {
    border: 2px solid var(--bg-yellow);
    background-color: #fff;
    padding: 0;
    margin-bottom: 60px !important;
}
.white-box .swiper-pagination-bullet {
    background: var(--bg-dark-blue);
}
.white-box h3 {
    padding: 0 20px;
    font-size: 22px;
}
.white-box ul { 
    padding: 0 20px 0 55px !important; 
    list-style:none; 
}
.white-box img {
    margin-bottom: 20px;
}
.text-box h3 {
    font-size: 30px;
    margin: 0;
    font-weight: normal;
}
.text-box h6 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: var(--bg-main);
    font-weight: 400;
}
.number-icon {
    position: relative;
    padding: 40px 20px 25px 20px;
    margin: 25px 0;
    text-align: center;
    border: 2px solid var(--bg-yellow);
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}
.number-icon:before {
    position: absolute;
    font-size: 20px;
    background-color: var(--bg-dark-blue);
    color: #fff;
    border-radius: 50%;
    padding: 6px 13px;
    width: 60px;
    height: 60px;
    top: -30px;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    font-size: 30px;
}
.icon1:before {
    content:'1';
}
.icon2:before {
    content:'2';
}
.icon3:before {
    content:'3';
}
.icon4:before {
    content:'4';
}
.icon5:before {
    content:'5';
}
.download-icon .se_button.button1 a, .download-icon a.se_button.button1 {
    background: rgba(255,255,255,0);
    position: relative;
    padding: 0;
    margin: 0;
}
.download-icon .se_button.button1 a:hover, .download-icon a.se_button.button1:hover {
    color: #c9c9c9;
}
.download-icon .se_button.button1 a:before, .download-icon a.se_button.button1:before {
    position: relative;
    content: '\e09a';
    font-family: 'FontAwesome';
    color: #fff;
    top: 0;
    right: 0;
    font-size: 12px;
    padding-right: 5px;
    top: -2px;
}
.list-box {
    border: 1px solid #eaeaea;
    background-color: #fff;
    margin-bottom: 25px;
}
.list-box h2, .list-box h3 {
    background-color: var(--bg-dark-blue);
    color: #fff;
    padding: 15px 20px;
    margin: 30px 0 20px 0;
}
.list-box p {
    padding: 15px 25px 15px 50px;
    border-bottom: 1px solid #eaeaea;
}
.list-box p:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 10px 0 -33px;
    color: var(--bg-dark-blue);
    border: 1px solid var(--bg-dark-blue);
    border-radius: 50%;
    padding: 4px 5px;
    font-size: 12px;
    width: 25px;
}
.list-box p:last-of-type {
    padding-bottom: 40px;
}
.whitebox {
    position: relative;
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 30px 25px;
    margin: -5px 0 25px 0;
}
.box-icon {
    position: relative;
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 30px 25px;
    margin: -5px 0 25px 0;
}
.box-icon img {
    height: 125px;
    width: auto;
    margin: 0 auto 30px auto;
    text-align: center;
    display: block;
}
.icon-box {
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 35px 25px;
    margin-bottom: 25px;
}
.icon-box h6 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: var(--bg-main);
    font-weight: 400;
    margin-bottom: 20px;
}
.icon-box img {
    margin-bottom: 20px;
    width: auto;
    height: 100px;
}

/* Animations
----------------------------------------------------------------------------------------------------*/
.left-reveal {
    position: relative;
    opacity: 0;
}
.left-reveal.active {
    opacity: 1;
    animation: 1s ease 1 fade-left;
}
@keyframes fade-left {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.right-reveal {
    position: relative;
    opacity: 0;
}
.right-reveal.active {
    opacity: 1;
    animation: 1s ease 1 fade-right;
}
@keyframes fade-right {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.top-reveal {
    position: relative;
    opacity: 0;
}
.top-reveal.active {
    opacity: 1;
    animation: 1s ease 1 fade-top;
}
@keyframes fade-top {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 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: 67px;
    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 {
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
}
.header-top {
    background-color: var(--bg-dark-blue);
    padding: 10px;
}
.header-banner a:hover {
    color: #c2c4c4;
}
.right-header .se_button.button1 a, .right-header a.se_button.button1 {
    background-color: var(--bg-dark-blue);
    color: #fff;
    margin: 0 !important;
    padding: 5px 20px !important;
}
.right-header .se_button.button1 a:hover, .right-header a.se_button.button1:hover {
    background-color: var(--bg-yellow);
    color: var(--bg-black);
}

/* Menu
----------------------------------------------------------------------------------------------------*/
.MainMenu {
    display: block;
    padding-top: 5px;
}
.MainMenu ul {
    margin: 0;
    padding: 0;
}
.MainMenu li {
	list-style: none;
	list-style-type: none;
	position: relative;
}
.MainMenu li.le_menuitem_level_0 {
	display: inline-block;
    padding: 5px 0;
}
.MainMenu li.le_menuitem_level_0 a {
    font-family: "Open Sans", sans-serif;
    color: var(--bg-main);
    display: block;
    position: relative;
    padding: 10px 0;
    margin-left: 20px;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.MainMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-dark-blue);
}
li.le_menuitem_level_0.hasChild > a::after {
    display: inline-block;
    position: relative;
    left: 6px;
    font-family: FontAwesome;
    content: "\f107";
    height: 0;
    width: 0;
    margin-right: 20px;
}
.Menu1 {
    background-color: var(--bg-yellow);
    color: var(--bg-main) !important;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    display: inline-block;
    padding: 0 20px !important;
    margin-left: 20px !important;
}
.Menu1:hover {
    background-color: var(--bg-dark-blue);
}
.Menu1 a {
    margin: 0 !important;
}
.Menu1:hover a {
    color: #fff !important;
}
.MainMenu .le_menu_level_1_container {
    position: absolute;
    left: 0;
}
.MainMenu ul.le_menu_level_1 {
    background-color: #fff;
    position: relative;
    left: 15px;
    z-index: 10;
    display: none;
    margin: 0;
    padding: 13px 0 0 0;
    text-align: left;
    height: auto;
    margin-top: 4px;
}
.MainMenu li.le_menuitem_level_0:hover ul.le_menu_level_1 {
	display: block;
}
.MainMenu li.le_menuitem_level_1 a {
    font-family: "Open Sans", sans-serif;
    color: var(--bg-main);
	display: block;
	padding: 7px 10px !important;
	margin: 0 !important;
	text-decoration: none;
	text-transform: uppercase;
	min-width: 160px;
	line-height: 1em;
}
.MainMenu li.le_menuitem_level_1 a:hover {
    background-color: var(--bg-dark-blue);
    color: #fff;
}
.MainMenu .le_menu_level_2_container {
    float: right;
	left: 100%;
	margin-top: -35px;
	padding: 0;
}
.MainMenu ul.le_menu_level_2 {
	position: absolute;
	right:0;
	left: 160px;
	z-index: 10;
	display: none;
	margin: 0;
	padding: 0;
	text-align: left;
}
.MainMenu li.le_menuitem_level_1:hover ul.le_menu_level_2 {
	display: block;
}
.navicon {
    position: relative;
    line-height: 45px;
    height: 45px;
    padding: 0 20px 0 0;
    text-transform: uppercase;
    background: transparent !important;
}
.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    color: var(--bg-dark-blue);
    top: 0;
    right: 0;
    font-size: 30px;
}
.OpenMobileMenu .navicon:after {
    content: '\f00d';
}
.navicon:hover {
    cursor: pointer;
}
@media (max-width: 767px) { 
    .OpenMobileMenu .wrapper {
        right:240px;
    }
    .se_menu {
        position: fixed;
        height: 100vh;
        width: 240px;
        padding: 30px 0 0 20px;
        top: 0;
        right:-240px;
        border-left: 1px solid #eaeaea;
        transition: right .3s ease;
    }
    .MainMenu {
        padding: 0;
    }
    .OpenMobileMenu .se_menu {
        right:0;
    }
    .le_menu_level_container {
    	position: relative;
    }
    .MainMenu li {
        display: block;
        text-align: left;
    }
    .MainMenu li.le_menuitem_level_0 {
        padding: 0;
        list-style: none !important;
	    list-style-type: none !important;
    }
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 10px;
        overflow: visible !important;
    }
    .MainMenu ul.le_menu_level_1 {
        padding: 0;
    }
    .MainMenu li.le_menuitem_level_0.hasChild > a:after, .MainMenu li.le_menuitem_level_1.hasChild > a:after {
        display:inline-block;
        position: relative;
        left: 5px;
        content: "+";
        font-size: 12px;
        top: -2px;
        color: #999;
    	height: 0;
    	width: 0;
    }
    .MainMenu li.hasChild > a.active-mobile-parent:after {
        content:"-";
    }
    .MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1, .MainMenu li.le_menuitem_level_1.hasChild ul.le_menu_level_2 {
        height: 0;
        visibility: hidden;
        display: none;
        transition: all .3s ease;
    }
    .MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1.open-mobile-sub, .MainMenu li.le_menuitem_level_1.hasChild ul.le_menu_level_2.open-mobile-sub {
        height: auto;
        visibility: visible;
        display: block;
    }
    .MainMenu .le_menu_level_1_container {
        position: relative;
    }
    .MainMenu .le_menuitem_level_1 a {
        font-size: 14px !important;
    }
    .MainMenu .le_menu_level_2_container {
    	left: 0;
    	margin-top: 0;
    }
    .MainMenu ul.le_menu_level_2 {
    	position: relative;
    	left: 0;
    }
    .Menu1 {
        margin-left: 10px !important;
        margin-top: 10px !important;
    }
}

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

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

.footer {
    background: var(--bg-dark-blue);
    clear: both;
	padding: 60px 0;
}
.footer p {
    font-size: 14px;
    color: #fff;
}
.footer p a {
    font-size: 14px;
    color: #dddddd;
}
.footer p a:hover {
    color: var(--bg-yellow);
}
.se_social a {
    color: #fff;
    font-size: 24px;
    margin: 0 .15em;
}
.se_social a:hover {
    color: var(--bg-yellow);
}
.FooterMenu {
    padding-top: 15px;
}
.FooterMenu ul {
    padding: 0;
	margin: 0;
}
.FooterMenu li {
    display: inline-block;
	list-style: none;
	list-style-type: none;
	position: relative;
	padding: 0;
	margin: 0;
}
.FooterMenu a {
    color: #fff;
    padding: 0 10px;
}
.FooterMenu a:hover {
    color: #c4c6c6;
}
.footer-bottom {
    background-color: #162c59;
    padding: 15px 0;
}
.footer-bottom p {
    color: #fff;
}
.footer-title p {
    font-family: "Merriweather", serif;
    color: var(--bg-yellow);
    font-size: 24px;
}
.fa-facebook {
    font-size: 20px !important;
    top: -2px !important;
    position: relative;
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
    .header {
        padding: 10px 0;
    }
    .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;
    }
    .se_siteBranding img {
        max-width: 170px;
    }
    .desktop-only {
        display: none;
    }
    .top-bknd-animal {
        display: none;
    }
    .video-section {
        padding-top: 50px;
    }
    .bottom-bknd-animal img {
        width: 150px;
        height: auto;
    }
    .bottom-bknd-animal {
        margin-bottom: -100px;
        top: -50px;
        margin-top: 0;
        bottom: 0;
    }
    .bluebox {
        margin-bottom: 25px;
    }
    .footer {
        text-align: center;
    }
    .FooterMenu {
        padding: 20px 0;
    }
    .FooterMenu li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }
    .left-banner {
        padding: 50px 40px !important;
    }
    .desktop-break {
        display: none;
    }
    .footer-bottom {
        text-align: center;
    }
    .se_social {
        margin-top: 15px;
    }
    .top-bknd-animal4, .top-bknd-animal3 {
        display: none;
    }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .navicon {
        display: none;
    }
    .MainMenu {
        text-align: right;
    }
    .MainMenu li.le_menuitem_level_0 a {
        font-size: 14px;
    }
    .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-banner {
        text-align: right;
    }
    .top-bknd-animal {
        left: -250px;
    }
    .FooterMenu {
        text-align: right;
    }
    .se_social {
        text-align: right;
    }
    .left-banner {
        padding: 75px 50px !important;
    }
    .right-header {
        text-align: right;
    }
    .se_siteBranding {
        padding-top: 5px;
    }
    .mobile-menu {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }
    .mobile-center {
        text-align: center;
    }
    .top-bknd-animal2, .bottom-bknd-animal2, .top-bknd-animal3, .top-bknd-animal5 {
        display: none;
    }
    .aurora_subsidy #le_section-two, .aurora_subsidy #le_section-four {
        background-image: none !important;
    }
    .white-box .swiper-slide {
        padding-bottom: 30px;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .MainMenu li.le_menuitem_level_0 a {
        margin-right: 20px;
        font-size: 16px;
    }
    .row-same-height {
        display:table;
        width: 100%;
        margin: 0;
    }
    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"]{
        display: table-cell;
        float: none;
        vertical-align: middle;
        padding: 0;
        margin: 0;
    }
    .mobile-only {
        display: none !important;
    }
    .top-bknd-animal {
        left: -150px;
    }
    .testimonials .swiper-slide {
        margin: 50px 0 !important;
        height: 350px;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-direction: column;
    }
    .testimonials .swiper-slide:before {
        position: relative;
        content: '\f10d';
        font-family: 'FontAwesome';
        color: var(--bg-yellow);
        top: -10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        font-size: 30px;
    }
    .testimonials .swiper-slide-next {
        padding: 50px 25px;
        margin-top: 0 !important;
        height: 450px;
    }
    .white-box .swiper-slide {
        margin: 30px 4px !important;
        height: 525px;
        display: flex;
        /*justify-content: center;*/
        align-content: center;
        flex-direction: column;
    }
    .white-box .swiper-slide-next {
        padding: 0;
        margin-top: 0 !important;
        height: 590px;
    }
    .col-md-15 {
        float: left;
        width: 20%;
    }
    h1, h1 a, .title1, .title1 a {
        font-size: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .tablet-pd {
        padding: 75px 0;
        text-align: center;
    }
    .aurora_home #le_section-six {
        background-image: none !important;
    }
    .bottom-bknd-animal2 {
        top: -175px;
    }
    .bottom-bknd-animal {
        margin-top: -100px;
    }
}
@media (max-width: 1199px) {
    .aurora_subsidy #le_section-three, .aurora_benefits #le_section-three {
        background-image: none !important;
    }
    .top-bknd-animal3 {
        right: -100px;
    }
    .top-bknd-animal4 {
        display: none;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .MainMenu li.le_menuitem_level_0 a {
        margin-right: 20px;
    }
    .row-same-height2 {
        display:table;
        width: 100%;
        margin: 0;
    }
    .row-same-height2 [class^="col-"],
    .row-same-height2 [class*="col-"]{
        display: table-cell;
        float: none;
        vertical-align: middle;
        padding: 0;
        margin: 0;
    }
    .left-banner {
        padding: 0 25px !important;
    }
    .left-banner p, .left-banner {
        font-size: 14px;
    }
    h1, h1 a, .title1, .title1 a {
        font-size: 36px;
    }
    .aurora_subsidy #le_section-three {
        position: relative;
    }
}
@media (min-width: 1300px) {
    .left-banner {
        padding: 0 25px !important;
    }
    .left-banner p, .left-banner {
        font-size: 16px;
    }
}
@media (min-width: 1400px) {
    .left-banner {
        padding: 0 75px !important;
    }
}


/* 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:10px; 
}
.checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 10px 0 -33px;
    color: var(--bg-main);
    border: 1px solid var(--bg-main);
    border-radius: 50%;
    padding: 4px 5px;
    font-size: 12px;
    width: 25px;
}
.white-checklist ul { 
    padding-left: 35px; 
    list-style:none; 
}
.white-checklist ul li { 
    margin-bottom:10px; 
}
.white-checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 10px 0 -33px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px 5px;
    font-size: 12px;
    width: 25px;
}

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

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

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

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

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

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

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

/* --- Helper Instructions when in edit mode --- */
.edit-instructions {
    display: none;
}
.le-edit-open .edit-instructions {
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 2px;
    background: rgba(199,232,42,.2);
}
.le-edit-open .edit-instructions a{ 
    text-decoration: underline;
}
.le-edit-open .top-bknd-animal, .le-edit-open .top-bknd-animal2, .le-edit-open .bottom-bknd-animal, .le-edit-open .bottom-bknd-animal2 {
    margin: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.le-edit-open .mobile-only {
    display: block !important;
}
.le-logged-in .footer-bottom {
    margin-bottom: 40px;
}
/* -- Hide Options in Color in Design Tab -- */
.aurora_color-options .aurora_style-menu-inner h4.aurora_style-section-title:nth-of-type(4) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner h4.aurora_style-section-title:nth-of-type(9) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(18) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(19) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(20) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(21) {
    display: none !important;
}
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(35) {*/
/*    display: none !important;*/
/*}*/
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(36) {*/
/*    display: none !important;*/
/*}*/
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(37) {*/
/*    display: none !important;*/
/*}*/
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(40) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(41) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(42) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(43) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(44) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(45) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(46) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(47) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(48) {
    display: none !important;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
    min-height: 0px !important;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
.aurora_benefits #le_section-eight {
    padding-bottom: 75px;
}
.aurora_benefits #le_section-eight-area12 {
    padding-right: 50px;
}
.aurora_benefits #le_section-eight-area2 {
}
.aurora_benefits #le_section-five {
    padding-bottom: 100px;
}
.aurora_benefits #le_section-five-area3 {
    padding-right: 50px;
    padding-left: 50px;
}
.aurora_benefits #le_section-four {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_benefits #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_benefits #le_section-one-content2 {
}
.aurora_benefits #le_section-seven {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_benefits #le_section-seven-area10 {
    padding-top: 100px;
}
.aurora_benefits #le_section-seven-area11 {
    padding-right: 50px;
}
.aurora_benefits #le_section-seven-area13 {
    padding-top: 100px;
}
.aurora_benefits #le_section-seven-area15 {
    padding-left: 50px;
}
.aurora_benefits #le_section-seven-area9 {
    padding-left: 50px;
}
.aurora_benefits #le_section-six {
    background-color: rgb(31, 61, 123);
}
.aurora_benefits #le_section-three {
    background-color: rgb(240, 240, 240);
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_benefits #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_daycare-jobs #le_section-five {
    padding-bottom: 100px;
}
.aurora_daycare-jobs #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_daycare-jobs #le_section-four {
}
.aurora_daycare-jobs #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_daycare-jobs #le_section-one-content2 {
}
.aurora_daycare-jobs #le_section-three {
}
.aurora_daycare-jobs #le_section-two {
    padding-top: 100px;
}
.aurora_daycare-jobs #le_section-two-area3 {
}
.aurora_daycare-jobs #le_section-two-area4 {
}
.aurora_daycare-jobs #le_section-two-area5 {
}
.aurora_home #le_section-eight {
    background-color: rgb(240, 240, 240);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_home #le_section-five {
    padding-top: 100px;
    padding-bottom: 0px;
}
.aurora_home #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_home #le_section-five-area4 {
    padding-right: 50px;
}
.aurora_home #le_section-five-area7 {
    padding-left: 50px;
}
.aurora_home #le_section-four {
}
.aurora_home #le_section-nine {
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_home #le_section-nine-area2 {
}
.aurora_home #le_section-nine-area3 {
    padding-right: 50px;
    padding-left: 50px;
}
.aurora_home #le_section-one {
    padding-top: 50px;
    padding-bottom: 75px;
}
.aurora_home #le_section-one-content1 {
    padding-right: 50px;
}
.aurora_home #le_section-seven {
    padding-top: 100px;
    padding-bottom: 150px;
}
.aurora_home #le_section-seven-area10 {
    padding-top: 1px;
}
.aurora_home #le_section-six {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/littlelukes/bknd-img.png);
    background-color: rgb(31, 61, 123);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_home #le_section-three {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_home #le_section-two {
    background-color: rgb(31, 61, 123);
}
.aurora_home #le_section-two-area1 {
}
.aurora_home #le_section-two-area2 {
    padding-right: 15%;
    padding-left: 10%;
}
.aurora_occupational-therapists #le_section-five {
    padding-bottom: 100px;
}
.aurora_occupational-therapists #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_occupational-therapists #le_section-four {
}
.aurora_occupational-therapists #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_occupational-therapists #le_section-one-content2 {
}
.aurora_occupational-therapists #le_section-three {
}
.aurora_occupational-therapists #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_occupational-therapists #le_section-two-area3 {
}
.aurora_occupational-therapists #le_section-two-area4 {
}
.aurora_occupational-therapists #le_section-two-area5 {
}
.aurora_physical-therapists #le_section-five {
    padding-bottom: 100px;
}
.aurora_physical-therapists #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_physical-therapists #le_section-four {
}
.aurora_physical-therapists #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_physical-therapists #le_section-one-content2 {
}
.aurora_physical-therapists #le_section-three {
}
.aurora_physical-therapists #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_physical-therapists #le_section-two-area3 {
}
.aurora_physical-therapists #le_section-two-area4 {
}
.aurora_physical-therapists #le_section-two-area5 {
}
.aurora_schedule-a-tour #le_section-five {
    padding-bottom: 100px;
}
.aurora_schedule-a-tour #le_section-five-area3 {
    padding-right: 50px;
    padding-left: 50px;
}
.aurora_schedule-a-tour #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_schedule-a-tour #le_section-one-content2 {
}
.aurora_schedule-a-tour #le_section-two {
    padding-top: 75px;
    padding-bottom: 125px;
}
.aurora_schedule-a-tour #le_section-two-area1 {
}
.aurora_school-psychologists #le_section-five {
    padding-bottom: 100px;
}
.aurora_school-psychologists #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_school-psychologists #le_section-four {
}
.aurora_school-psychologists #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_school-psychologists #le_section-one-content2 {
}
.aurora_school-psychologists #le_section-three {
}
.aurora_school-psychologists #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_school-psychologists #le_section-two-area3 {
}
.aurora_school-psychologists #le_section-two-area4 {
}
.aurora_school-psychologists #le_section-two-area5 {
}
.aurora_special-education-teachers #le_section-five {
    padding-bottom: 100px;
}
.aurora_special-education-teachers #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_special-education-teachers #le_section-four {
}
.aurora_special-education-teachers #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_special-education-teachers #le_section-one-content2 {
}
.aurora_special-education-teachers #le_section-three {
}
.aurora_special-education-teachers #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_special-education-teachers #le_section-two-area3 {
}
.aurora_special-education-teachers #le_section-two-area4 {
}
.aurora_special-education-teachers #le_section-two-area5 {
}
.aurora_special-needs #le_section-five {
    padding-bottom: 75px;
}
.aurora_special-needs #le_section-five-area1 {
}
.aurora_special-needs #le_section-five-area10 {
}
.aurora_special-needs #le_section-five-area11 {
}
.aurora_special-needs #le_section-five-area13 {
}
.aurora_special-needs #le_section-five-area15 {
    padding-left: 50px;
}
.aurora_special-needs #le_section-five-area3 {
    padding-right: 50px;
    padding-left: 50px;
}
.aurora_special-needs #le_section-five-area4 {
}
.aurora_special-needs #le_section-five-area5 {
}
.aurora_special-needs #le_section-five-area7 {
}
.aurora_special-needs #le_section-five-area9 {
}
.aurora_special-needs #le_section-four {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_special-needs #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_special-needs #le_section-one-content2 {
}
.aurora_special-needs #le_section-three {
    background-color: rgb(240, 240, 240);
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_special-needs #le_section-three-area1 {
}
.aurora_special-needs #le_section-three-area10 {
}
.aurora_special-needs #le_section-three-area11 {
}
.aurora_special-needs #le_section-three-area9 {
}
.aurora_special-needs #le_section-two {
    background-repeat: no-repeat;
    background-size: length;
    background-position: top right;
    margin-top: 25px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_special-needs #le_section-two-area1 {
    padding-bottom: 50px;
}
.aurora_special-needs #le_section-two-area9 {
}
.aurora_speech-language-pathologists #le_section-five {
    padding-bottom: 100px;
}
.aurora_speech-language-pathologists #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_speech-language-pathologists #le_section-four {
}
.aurora_speech-language-pathologists #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_speech-language-pathologists #le_section-one-content2 {
}
.aurora_speech-language-pathologists #le_section-three {
}
.aurora_speech-language-pathologists #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_speech-language-pathologists #le_section-two-area3 {
}
.aurora_speech-language-pathologists #le_section-two-area4 {
}
.aurora_speech-language-pathologists #le_section-two-area5 {
}
.aurora_subsidy #le_section-five {
    padding-bottom: 75px;
}
.aurora_subsidy #le_section-five-area3 {
    padding-right: 50px;
    padding-left: 50px;
}
.aurora_subsidy #le_section-four {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_subsidy #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_subsidy #le_section-one-content2 {
}
.aurora_subsidy #le_section-three {
    background-color: rgb(240, 240, 240);
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_subsidy #le_section-two {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/littlelukes/Green-Frog/Green-Frog_200x224.png);
    background-repeat: no-repeat;
    background-size: length;
    background-position: top right;
    margin-top: 25px;
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_teachers #le_section-five {
    padding-bottom: 100px;
}
.aurora_teachers #le_section-five-area3 {
    padding-left: 50px;
}
.aurora_teachers #le_section-four {
}
.aurora_teachers #le_section-one {
    background-color: rgb(31, 61, 123);
}
.aurora_teachers #le_section-one-content2 {
}
.aurora_teachers #le_section-three {
}
.aurora_teachers #le_section-two {
    padding-top: 100px;
}
.aurora_teachers #le_section-two-area3 {
}
.aurora_teachers #le_section-two-area4 {
}
.aurora_teachers #le_section-two-area5 {
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-eight-area12 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-eight-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-seven-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-seven-area11 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-seven-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-seven-area15 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-seven-area9 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-six {
    padding-top: 50px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_benefits #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_daycare-jobs #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area3 {
    padding-top: 25px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area4 {
    padding-top: 25px;
    padding-right: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area7 {
    padding-top: 25px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-nine-area3 {
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-content1 {
    padding-right: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six {
    background-image: linear-gradient(rgb(31, 61, 123), rgb(31, 61, 123)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/littlelukes/bknd-img.png);
    padding-top: 100px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area2 {
    padding-top: 75px;
    padding-right: 25px;
    padding-bottom: 75px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_occupational-therapists #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_physical-therapists #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule-a-tour #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule-a-tour #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule-a-tour #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule-a-tour #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule-a-tour #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_schedule-a-tour #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_school-psychologists #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-education-teachers #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-five-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-three-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-three-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-three-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_special-needs #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_speech-language-pathologists #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_subsidy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_teachers #le_section-two-area5 {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-eight-area12 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-eight-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-five {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-four {
    padding-top: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-seven {
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-seven-area10 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-seven-area11 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-seven-area13 {
    padding-top: 70px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-seven-area15 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-seven-area9 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-six {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-three {
    padding-top: 75px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_benefits #le_section-two {
    padding-top: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_daycare-jobs #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight {
    padding-top: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area3 {
    padding-top: 25px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area4 {
    padding-top: 25px;
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area7 {
    padding-top: 25px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine {
    padding-top: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-nine-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-content1 {
    padding-right: 0px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six {
    background-image: linear-gradient(rgb(31, 61, 123), rgb(31, 61, 123)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/littlelukes/bknd-img.png);
    padding-top: 90px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two {
    }
}
@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 {
    padding-top: 50px;
    padding-right: 25px;
    padding-bottom: 50px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_occupational-therapists #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_physical-therapists #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule-a-tour #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule-a-tour #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule-a-tour #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule-a-tour #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule-a-tour #le_section-two {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/littlelukes/yellow-elephant/yellow-elephant_200x225.png);
    background-repeat: no-repeat;
    background-size: length;
    background-position: bottom right;
    padding-top: 60px;
    padding-bottom: 90px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_schedule-a-tour #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_school-psychologists #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-education-teachers #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-five-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-four {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-three {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-three-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-three-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-three-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-two {
    margin-top: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_special-needs #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_speech-language-pathologists #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_subsidy #le_section-two {
    margin-top: 0px;
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-five {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-five-area3 {
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-two {
    padding-top: 60px;
    padding-bottom: 60px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_teachers #le_section-two-area5 {
    }
}

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