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

:root {
    --bg-black: #191919;
    --bg-light-blue: #7598af;
    --bg-white: #ffffff;
    --bg-blue: #082A5A;
    --bg-brown: #A38B68;
}

body {
    font-family: 'Rubik', sans-serif !important;
    background: #fff;
    color: var(--bg-black);
    margin: 0 auto;
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 300 !important;
}

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


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

a {
	text-decoration: none;
	color: var(--bg-blue);
}
a, td a {
    font-size: 16px;
}
a:hover {
	text-decoration: none;
	color: var(--bg-brown);
}
p {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
    font-weight: 300;
    font-size: 16px;
	line-height: 1.5;
	margin: 0;
}
h1, h1 a, .title1, .title1 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-blue);
	margin:0 0 .2em 0;
	line-height: 1.3;
	font-weight: 500;
}
h2, h2 a, .title2, .title2 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
    font-size: 36px;
	margin:0 0 20px 0;
	line-height: 1.2;
	font-weight: 500;
}
h3, h3 a, .title3, .title3 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
}
h4, h4 a, .title4, .title4 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.3;
	font-weight: 500;
}
h5, h5 a, .title5, .title5 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.4;
}
h6, h6 a, .title6, .title6 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
	margin:0 0 .2em 0;
	line-height: 1.4;
	font-weight: 500;
	font-size: 16px;
}

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

.le_form {
    margin-top: 10px;
}
.le_form_name {
	font-size: 18px;
	margin: 0 0 10px 0;
}
.form-group {
	margin-bottom: 10px;
	position: relative;
}
.seFormButton, .wrapper input[type="submit"].seFormButton {
    background-color: var(--bg-brown);
    color: var(--bg-black);
    font-family: 'Rubik', sans-serif;
	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 {
    background-color: var(--bg-blue);
    color: var(--bg-white);
	cursor: pointer;
}
.wrapper input[type="text"],.wrapper input[type="email"],.wrapper input[type="password"], .wrapper textarea {
    font-family: 'Rubik', 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;
    }
}

iframe, object, embed {
    max-width: 100%;
}

/* ---- 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: -10px 0 !important;
}

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

.se_button a, a.se_button {
    font-family: 'Rubik', sans-serif;
    background-color: var(--bg-brown);
    color: var(--bg-black);
    padding: 12px 25px 10px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	position: relative;
	display: inline-block;
	margin-top: 10px;
	border: 0px solid transparent;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button a:hover, a:hover.se_button {
    background-color: var(--bg-blue);
    color: var(--bg-white) !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.button1 a, a.se_button.button1 {
    /*border: 2px solid var(--bg-blue);*/
    background-color: var(--bg-blue);
    color: var(--bg-white);
    padding: 14px 25px 14px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    margin-top: 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.button1 a:after, a.se_button.button1:after {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--bg-white);
    left: 8px;
    font-size: 10px;
    top: -1px;
    position: relative;
    display: inline-block;
}
.se_button.button1 a:hover:after, a.se_button.button1:hover:after {
    left: 12px;
    color: var(--bg-blue);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.button1 a:hover, a.se_button.button1:hover {
    border: 2px solid var(--bg-blue);
    background-color: var(--bg-white);
    color: var(--bg-blue) !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.button2 a, a.se_button.button2 {
    background-color: var(--bg-white);
    border: 2px solid var(--bg-blue);
    color: var(--bg-blue);
    padding: 14px 25px 14px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    margin: 0 !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.button2 a:after, a.se_button.button2:after {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--bg-blue);
    left: 8px;
    font-size: 10px;
    top: -1px;
    position: relative;
    display: inline-block;
}
.se_button.button2 a:hover:after, a.se_button.button2:hover:after {
    left: 12px;
    color: var(--bg-white);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.button2 a:hover, 
a.se_button.button2:hover {
    background-color: var(--bg-blue);
    color: var(--bg-white) !important;
    border: 1px solid white; /* <- add this */
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.se_button.fullwidthButton a, a.se_button.fullwidthButton {
    display: block;
    text-align: center;
}
.se_button.largeButton a, a.se_button.largeButton {
	padding: 20px 35px;
}
.brown-button .se_button.button1 a, .brown-button a.se_button.button1 {
    background-color: var(--bg-brown);
    color: var(--bg-black);
}
.brown-button .se_button.button1 a:after, .brown-button a.se_button.button1:after {
    color: var(--bg-black);
}
.brown-button .se_button.button1 a:hover:after, .brown-button a.se_button.button1:hover:after {
    left: 12px;
    color: var(--bg-white);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.brown-button .se_button.button1 a:hover, .brown-button a.se_button.button1:hover {
    background-color: var(--bg-blue);
    color: var(--bg-white) !important;
    border: 0 !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}

/* 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: 175px;
    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;
}
.fullwidth img {
    width: 100%;
    height: auto;
}
.banner {
    position: relative;
}
.banner h1 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.banner h2 {
    font-size: 55px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
}
.banner h3 {
    font-size: 55px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f4f85;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #7598af; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
    typing 2.5s steps(40, end),
    blink-caret .75s step-end infinite;
}
.banner .se_button.button1 a, .banner a.se_button.button1 {
    border: 2px solid var(--bg-blue);
}

/* The typing effect */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #7598af; }
}
.word  {
    font-size: 55px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f4f85;
}
/*.banner:after {*/
/*    position: absolute;*/
/*    background-color: var(--bg-brown);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 120%;*/
/*    left: 0;*/
/*    bottom: -50px;*/
/*    z-index: 1;*/
/*}*/
/*.banner:before {*/
/*    position: absolute;*/
/*    background-color: var(--bg-brown);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 120%;*/
/*    left: 0;*/
/*    bottom: -65px;*/
/*    z-index: 1;*/
/*}*/
.small-title h3 {
    font-size: 18px;
    font-weight: 500;
}
.check-list ul { 
    padding: 15px 0 5px 50px; 
    list-style:none;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
}
.check-list ul li { 
    margin-bottom:10px; 
}
.check-list ul li:before {
    color: var(--bg-brown);
    font-family: 'FontAwesome';
    content: '\f00c';
    font-size: 12px;
    margin: 1px 15px 0 -25px;
    position: absolute;
    display: inline-block;
}
.blue-lines {
    position: relative;
    display: block;
    top: -70px;
}
/*.blue-lines:after {*/
/*    position: relative;*/
/*    display: block;*/
/*    background-color: var(--bg-blue);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 104%;*/
/*    left: -2%;*/
/*    bottom: -10px;*/
/*    z-index: 1;*/
/*}*/
/*.blue-lines:before {*/
/*    position: relative;*/
/*    display: block;*/
/*    background-color: var(--bg-blue);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 104%;*/
/*    left: -2%;*/
/*    top: 0;*/
/*    z-index: 1;*/
/*}*/
.whitebox {
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 50px 50px 125px 50px;
    position: relative;
    z-index: 1;
    left: -5%;
}
.whitebox h1 {
    margin-bottom: 25px;
}
.whitebox2 {
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 50px 100px 50px 50px;
    position: relative;
    z-index: 1;
    left: 25px;
}
.whitebox2 h1 {
    margin-bottom: 25px;
}
/*.whitebox:after {*/
/*    position: absolute;*/
/*    background-color: var(--bg-brown);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 100%;*/
/*    left: -10%;*/
/*    bottom: 50px;*/
/*    z-index: 1;*/
/*}*/
/*.whitebox:before {*/
/*    position: absolute;*/
/*    background-color: var(--bg-brown);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 100%;*/
/*    left: -10%;*/
/*    bottom: 65px;*/
/*    z-index: 1;*/
/*}*/
.bigger-text p {
    font-size: 20px;
}
.white-box {
    background-color: #fff;
    -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.15);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.15);
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.15);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 50px 25px;
    margin-bottom: 25px;
    text-align: center;
}
.white-box img {
    width: auto;
    height: 100px;
    margin-bottom: 20px;
}
.banner-box {
    /*background-color: #fff;*/
    /*-webkit-border-radius: 10px;*/
    /*-moz-border-radius: 10px;*/
    /*border-radius: 10px;*/
    /*padding: 50px 50px 125px 50px;*/
    position: relative;
    z-index: 1;
    /*padding-right: 15%;*/
    /*left: -5%;*/
}
.banner-box h1 {
    margin-bottom: 25px;
}
/*.banner-box:after {*/
/*    position: absolute;*/
/*    background-color: var(--bg-brown);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 100%;*/
/*    left: -15%;*/
/*    bottom: -40px;*/
/*    z-index: 1;*/
/*}*/
/*.banner-box:before {*/
/*    position: absolute;*/
/*    background-color: var(--bg-brown);*/
/*    content: '';*/
/*    height: 5px;*/
/*    width: 100%;*/
/*    left: -15%;*/
/*    bottom: -55px;*/
/*    z-index: 1;*/
/*}*/
.video  {
    border: 2px solid var(--bg-blue);
    border-radius: 5px;
}
.footer-button a {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: var(--bg-brown);
    color: var(--bg-black);
    padding: 12px 30px 10px 20px !important;
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 1;
}
.footer-button a:after {
    display:inline-block;
    position: relative;
    left: 7px;
    content: "+";
    color: var(--bg-black);
}
.footer-button a:hover {
    background-color: var(--bg-blue);
    color: var(--bg-white) !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.footer-button:hover a:after {
    color: var(--bg-white) !important;
}
#vidBig {
    margin-bottom: -7px;
}
.banner-video {
    position: relative;
}
.bknd-video-color {
    background: rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.diagram-left {
    margin-bottom: 50px;
}

/* Diagram
----------------------------------------------------------------------------------------------------*/
.circle-diagram {
    position: relative;
    margin-top: 50px;
}
.circle-diagram h3 {
    font-size: 20px;
}
.circle-diagram p {
    font-size: 12px;
}
.circle1 {
    position: relative;
    background-color: rgba(234,234,234,.6);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle1:hover {
    background-color: rgba(234,234,234,1);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 7;
}
/*.circle1:hover .circle1-arrow { */
/*    opacity: 0;*/
/*}*/
.circle1-text {
    position: absolute;
    top: 25%;
    width: 125px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.circle1-img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: -50px;
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle1:hover .circle1-img {
    width: 110px;
    height: 110px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle1 a {
    position: absolute;
    display: block;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.circle1-arrow {
    width: 30px;
    height: auto;
    position: absolute;
    bottom: 60px;
    left: 50px;
    display: block;
    z-index: 6;
}

.circle2 {
    position: relative;
    display: inline-block;
    background-color: rgba(164,184,200,.6);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    top: -150px;
    z-index: 1;
    left: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle2:hover {
    background-color: rgba(164,184,200,1);
    z-index: 7;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
/*.circle2:hover .circle2-arrow { */
/*    opacity: 0;*/
/*}*/
.circle2-text {
    position: absolute;
    top: 45%;
    width: 125px;
    left: 60px;
    text-align: center;
}
.circle2-img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    left: -50px;
    top: 35%;
    margin: 0 auto;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle2:hover .circle2-img {
    width: 110px;
    height: 110px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle2 a {
    position: absolute;
    display: block;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.circle2-arrow {
    transform: rotate(-120deg);
    width: 30px;
    height: auto;
    position: absolute;
    bottom: 70px;
    right: 35px;
    display: block;
    z-index: 6;
}
.circle3 {
    position: relative;
    display: inline-block;
    background-color: rgba(229,223,214,.6);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    top: -150px;
    right: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle3:hover {
    background-color: rgba(229,223,214,1);
    z-index: 7;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
/*.circle3:hover .circle3-arrow { */
/*    opacity: 0;*/
/*}*/
.circle3-text {
    position: absolute;
    top: 45%;
    width: 125px;
    right: 60px;
    text-align: center;
}
.circle3-img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -50px;
    top: 35%;
    margin: 0 auto;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle3:hover .circle3-img {
    width: 110px;
    height: 110px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.circle3 a {
    position: absolute;
    display: block;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.circle3-arrow {
    width: 30px;
    height: auto;
    position: absolute;
    top: 50px;
    left: 125px;
    display: block;
    z-index: 6;
    transform: rotate(-250deg);
}
.circle4 {
    background-color: #082a5a;
    border-radius: 50%;
    width: 125px;
    height: 125px;
    position: absolute;
    display: block;
    top: 35%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 7;
}
.circle4 h3 {
    font-size: 16px;
    color: #fff;
    line-height: 1;
    text-align: center;
    padding-top: 40px;
}
.circle4 a {
    position: absolute;
    display: block;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.circle4:hover {
    background-color: #000;
}

/* Home Blog
----------------------------------------------------------------------------------------------------*/

.home-blog {
    overflow-x: scroll !important;
    padding-bottom: 30px;
}
.home-blog::-webkit-scrollbar {
    height: 10px !important;
    content: 'xxx';
}
.home-blog::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff; 
    border-radius: 10px;
}
.home-blog::-webkit-scrollbar-thumb {
    background: #fff; 
    border-radius: 10px;
}
.home-blog .blog_post_listing {
    background-color: #333333;
    color: #fff !important;
    border: 0 solid #333333;
    border-radius: 0px;
}
.home-blog .box-top {
    position: relative;
}
.home-blog .read_more_link {
    opacity: 0;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute !important;
    width: 100%;
    height: 100%;
}
.home-blog .blog_post_listing_publishdatetime {
    padding: 125px 0 10px 0 !important;
    font-size: 20px;
}
.home-blog .blog_post_listing_publishtime {
    display: none;
}
.home-blog h3 a {
    color: #fff !important;
    font-size: 14px !important;
    margin: 0 0 -5px 0 !important;
    display: block !important;
    text-transform: uppercase;
}
.home-blog .feature_blog_text {
    font-size: 24px;
    height: 130px;
    line-height: 1.4;
}
.home-blog .blog_post_listing:hover {
    background-color: #F5F3EF !important;
}
.home-blog .blog_post_listing:hover h3 a {
    color: #191919 !important;
}
.home-blog .blog_post_listing:hover .feature_blog_text {
    color: #191919 !important;
}
.home-blog .blog_post_listing:hover .blog_post_listing_publishdatetime {
    color: #191919 !important;
}
.home-blog .blog_post_listing_permalink {
    display: none !important;
}

/* Podcast Blog
----------------------------------------------------------------------------------------------------*/
.podcast-block .feature_blog_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 50%;
}
.podcast-block .feature_blog_text {
    font-family: 'Rubik', sans-serif !important;
    background: #fff;
    color: var(--bg-black);
    margin: 0 auto;
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 300;
    height: 63px;
    overflow: hidden;
}
.podcast-block .blog_post_listing_permalink {
    display: none;
}

/* Single Post Blog
----------------------------------------------------------------------------------------------------*/
#blog_post  {
    width: 50%;
    margin: 0 auto;
}
#blog_post_title  {
    margin-bottom: 20px;
}
#blog_post_content p  {
    margin-bottom: 20px;
}




/* Pop Up
----------------------------------------------------------------------------------------------------*/
.close-git-form a {
    background: var(--bg-white);
    font-size: 50px;
    line-height: 25px;
    content: '-';
    width: 40px;
    height: auto;
    display: block important;
    right: -50px;
    top: -30px;
    padding: 5px 13px 10px 13px;
    z-index: 200;
    position: absolute;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.close-git-form a:hover {
    background: var(--bg-blue);
    color: var(--bg-white);
    /*content: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/white-arrows.svg);*/
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.git-form {
    padding-bottom: 80px;
    position: fixed !important;
    z-index: 1001;
    bottom: 0;
    padding: 50px 50px 40px 50px;
    right: 0;
    width: 400px;
    background-color: #DAD0C2;
    opacity: 0;
    transform: translateX(100%);
    transition: all .2s ease;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    transition: box-shadow .3s ease;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.git-form input[type="submit"] {
    margin: -10px 0 0px 0 !important;
    position: relative;
}
.open-git-form a {
    background-color: var(--bg-brown);
    color: var(--bg-black);
    /*width: 50px;*/
    /*height: 50px;*/
    bottom: 0;
    padding: 10px 28px 10px 20px;
    right: 10px;
    z-index: 200;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: fixed;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    display: none;
}
.open-git-form a:after {
    content: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/black-arrows.svg);
    display: inline-block;
    width: 12px;
    height: auto;
    left: 7px;
    top: 1px;
    position: relative;
}
.open-git-form a:hover {
    /*content: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/white-arrows.svg);*/
    background-color: var(--bg-blue);
    color: #fff;
    cursor: pointer;
    /*padding: 12px;*/
    /*-webkit-transition: all .3s ease;*/
    /*-moz-transition: all .3s ease;*/
    /*transition: all .3s ease;*/
}
.open-git-form a:hover:after {
    content: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/white-arrows.svg);
}
.open-git-form a {
    opacity: 1 !important;
}
.git-form.gitFormOpen {
    opacity: 1;
    transform: translateX(0);
}
.git-form h6 {
    padding: 15px 40px 15px 20px;
    background-color: var(--bg-brown);
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 35px;
    font-weight: bold;
    margin-top: -25px !important;
}
.git-form h6:hover {
    background-color: var(--bg-brown);
}
.git-form .le_form_name {
    margin-bottom: -60px;
}
.le_form_name {
    font-family: 'Rubik', sans-serif;
    margin-bottom: -10px;
    font-size: 22px;
    font-weight: 500;
}
.git-form .recaptcha-terms {
    margin: -10px 0 !important;
}
@media (max-width: 768px) {
}
@media (max-width: 991px) {
    .close-git-form {
        margin: -52px 0 30px 0px;
    }
    .git-form.gitFormOpen {
        position: fixed;
        z-index: 1001;
        width: 100%;
        height: auto;
        bottom: 0px;
        left: 0;
        right: 0;
        margin: auto;
        margin-top: 40px;
        
    }
    .git-form div{
        width: 100% !important;
    }
    .git-form:before {
        display: none;
    }
    .le-logged-in .git-form.gitFormOpen {
        top: 40px;
    }
}
.le-edit-open .git-form {
    position: relative !important;
    opacity: 1 !important;
}

/* Tabs
----------------------------------------------------------------------------------------------------*/
.tabs-btn li {
    list-style: none;
	list-style-type: none;
	position: relative;
	right: -5px;
    /*display: inline-block;*/
}
.tabs-btn ul {
    border-right: 5px solid var(--bg-blue);
    padding: 50px 0;
    margin: 0;
}
.tabs-btn ul li a {
    display: block;
    color: var(--bg-main);
    width: 100%;
    font-size: 18px;
    padding: 30px 0 30px 50px;
    list-style: none;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.tabs-btn ul li a:hover {
    text-decoration: none;
    background-color: #F5F3EF;
    border-right: 5px solid #DAD0C2;
    position: relative;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.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;
}
.tabContent {
    display: none;
    padding: 30px 0 30px 50px;
}
.tabContent.expanded {
    display: block !important;
}
.tabContent h4 {
    margin-top: 10px;
}
.tabContent h6 {
    positin: relative;
    margin-top: 20px;
    padding-left: 10px;
}
.tabContent h6 a {
    font-weight: 400;
}
.tabContent h6 a:before {
    content: '\f061';
    font-family: 'FontAwesome';
    color: var(--bg-main);
    border: 2px solid #000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    right: 8px;
    padding: 0 2px;
    font-size: 8px;
    top: -3px;
    position: relative;
    display: inline-block;
}
.tabContent p a {
    background-color: var(--bg-white);
    border: 2px solid var(--bg-brown);
    color: var(--bg-black);
    padding: 10px 25px 10px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    margin: 10px 0 0 0 !important;
    display: inline-block;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.tabContent p a:after {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--bg-black);
    left: 8px;
    font-size: 10px;
    top: -1px;
    position: relative;
    display: inline-block;
}
.tabContent p a:hover:after {
    left: 12px;
    color: var(--bg-white);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.tabContent p a:hover {
    background-color: var(--bg-brown);
    color: var(--bg-white) !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.le-edit-open .tabContent {
    display: block !important;
}
.tabs-btn ul li a.active {
    background-color: #F5F3EF;
    border-right: 5px solid #DAD0C2;
    position: relative;
}

/* CTAS
----------------------------------------------------------------------------------------------------*/
.cta {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}
.cta img {
    width: 100%;
    height: auto;
    margin-bottom: -7px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.ctaoverlay {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
    width: 100%;
    height: 52px;
    padding: 0 5px;
    background-color: rgba(255,255,255,.85);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -moz-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -o-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); /* easeInQuad */
}
.ctaoverlay:hover, .ctaoverlay:active, .ctaoverlay:focus {
    -webkit-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -moz-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -o-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); /* easeInQuad */
}
.cta:hover .ctaoverlay {
    height: 90%;
}
.cta h3 {
    margin: 8px 10px 25px 10px !important;
    display: inline-block;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
}
.cta1 h3 {
    margin-top: 15px !important;
}
.cta h3:after {
    content: '\f078';
    font-family: 'FontAwesome';
    color: var(--bg-black);
    left: 15px;
    top: -1px;
    font-size: 10px;
    position: relative;
    display: inline-block;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.cta:hover h3:after {
    left: 17px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.ctaoverlay p {
    margin: 0 10px !important;
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
}
.cta .se_button.button1 a, .cta a.se_button.button1 {
    padding: 5px 15px !important;
}
.cta a {
    /*opacity: 0;*/
    /*position: absolute;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*width: 100%;*/
    /*height: 100%;*/
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
    font-size: 14px;
}
.cta a:after {
    content: '\f105';
    font-family: 'FontAwesome';
    color: var(--bg-black);
    left: 5px;
    top: -1px;
    font-size: 10px;
    position: relative;
    display: inline-block;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.cta a:hover:after {
    left: 8px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.ctaoverlay2 {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	right: 0;
    width: 100%;
    height: 40px;
    padding: 0 5px;
    background-color: rgba(255,255,255,.85);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -moz-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -o-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); /* easeInQuad */
}
.ctaoverlay2:hover, .ctaoverlay2:active, .ctaoverlay2:focus {
    -webkit-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -moz-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    -o-transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); 
    transition: all 400ms cubic-bezier(0.550, 0.085, 0.680, 0.530); /* easeInQuad */
}
.cta:hover .ctaoverlay2 {
    height: 90%;
}
.ctaoverlay2 p {
    margin: 0 10px !important;
    display: inline-block;
    font-size: 14px;
    line-height: 1.5;
}

/* Testimonials
----------------------------------------------------------------------------------------------------*/

.testimonials .bx-viewport .htmlSlide {
    display: flex;
    justify-content: flex-end;
    align-content: flex-end;
    flex-direction: column;
    background-color: #333333;
    padding: 60px 30px 40px 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 350px;
}
.testimonials .bx-wrapper {
    /*float: left;*/
    width: 95% !important;
    margin-left: 0 !important;
}
.testimonials .bx-wrapper .bx-pager {
    height: 30px !important;
    text-align: left;
    margin-top: 15px;
    margin-left: 35px;
}
.testimonials .bx-pager.bx-default-pager a {
    background: rgba(255,255,255,.0) !important;
    border: 2px solid var(--bg-white);
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
}
.testimonials .bx-pager.bx-default-pager a:hover, .testimonials .bx-pager.bx-default-pager a.active {
    background: rgba(255,255,255,1) !important;
}
.testimonials h4 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}
.testimonials h3 {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}
.testimonials p {
    font-size: 30px;
    color: #fff;
}

/* Testimonial Box
----------------------------------------------------------------------------------------------------*/
.testimonial-box {
    padding-right: 200px;
    position: relative;
}
.testimonial-box:after {
    content: '\f10e';
    font-family: 'FontAwesome';
    color: var(--bg-brown);
    right: 8px;
    top: 0;
    font-size: 100px;
    position: absolute;
}
.testimonial-box h6 {
    font-size: 14px;
    margin-top: 15px;
    font-weight: 400;
}

/* Contact box
----------------------------------------------------------------------------------------------------*/

.contact-box {
    background-color: var(--bg-brown);
    width: 100%;
    height: auto;
    padding-top: 91%;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-content: center;*/
    /*flex-direction: column;*/
}
.contact-box:hover {
    background-color: var(--bg-blue);
}
.contact-box:hover h6 {
    color: #fff;
}
.contact-box h6 {
    position: absolute;
    top: 30%;
    padding: 0 30px;
    font-weight: 400;
}
.contact-box a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    display: block;
    opacity: 0;
    z-index: 100;
}

/* Blog
----------------------------------------------------------------------------------------------------*/
.blog_post_listing {
    padding: 0 !important;
    border: 1px solid #dddddd;
    justify-content: start !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.feature_blog_image {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.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: 2px !important;
}
.feature_blog_text {
    height: 57px;
    overflow: hidden;
}
#blog_post_listing .feature_blog_text {
    float: none;
}
a.read_more_link {
    display: inline-block !important;
    text-transform: uppercase;
    width: 135px;
    border: 0 !important;
    font-size: 14px;
}
a:hover.read_more_link {
    background-color: var(--bg-brown) !important;
}
.le-logged-in #blog_post:before {
    content: 'Click on dashboard icon in top black bar to edit this page';
    border-radius: 2px;
    background: rgba(199,232,42,.2);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    display: block;
}
.le-logged-in #blog_post_listing:before {
    content: 'Click on dashboard icon in top black bar to edit this page';
    border-radius: 2px;
    background: rgba(199,232,42,.2);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    display: block;
}

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

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

/* Header
----------------------------------------------------------------------------------------------------*/
.header {
	padding: 10px 5%;
}

/* Menu
----------------------------------------------------------------------------------------------------*/
.MainMenu {
    display: block;
    margin-top: 5px;
}
.MainMenu ul {
    margin: 0;
    padding: 0;
    font-weight: 400;
}
.MainMenu li {
	list-style: none;
	list-style-type: none;
	position: relative;
}
.MainMenu li.le_menuitem_level_0 {
	display: inline-block;
    padding: 0;
}
.MainMenu li.le_menuitem_level_0 a {
    font-family: 'Rubik', sans-serif;
    color: var(--bg-black);
    font-size: 16px;
    display: block;
    position: relative;
    margin: 0 10px;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.MainMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-brown);
}
.Menu1 a {
    background-color: var(--bg-brown);
    padding: 12px 25px 10px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    margin: 0 10px 0 20px !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu1 a:after {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--bg-black);
    left: 8px;
    font-size: 10px;
    top: -1px;
    position: relative;
    display: inline-block;
}
.Menu1 a:hover:after {
    left: 12px;
    color: var(--bg-white);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu1 a:hover {
    background-color: var(--bg-blue);
    color: var(--bg-white) !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu2 a {
    background-color: var(--bg-brown);
    border: 2px solid var(--bg-brown);
    color: var(--bg-white) !important;
    padding: 11px 25px 9px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    margin: 0 !important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu2 a:after {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--bg-white);
    left: 8px;
    font-size: 10px;
    top: -1px;
    position: relative;
    display: inline-block;
}
.Menu2 a:hover:after {
    left: 12px;
    color: var(--bg-white);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.Menu2 a:hover {
    border: 2px solid var(--bg-blue);
    background-color: var(--bg-blue);
    color: var(--bg-white)!important;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.MainMenu .le_menu_level_1_container {
    position: absolute;
    left: 0;
}
.MainMenu ul.le_menu_level_1 {
    position: relative;
    left: 0;
    z-index: 10;
    display: none;
    margin: 0;
    padding: 13px 0 0 0;
    text-align: left;
    height: auto;
}
.MainMenu li.le_menuitem_level_0:hover ul.le_menu_level_1 {
	display: block;
}
.MainMenu li.le_menuitem_level_1 a {
    font-family: 'Rubik', sans-serif;
	display: block;
	padding: 3px 10px;
	text-decoration: none;
	text-transform: uppercase;
	min-width: 160px;
	line-height: 1em;
}
.MainMenu li.le_menuitem_level_1 a:hover {
    background-image: none;
}
.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';
    top: 0;
    right: 0;
    font-size: 30px;
}
.OpenMobileMenu .navicon:after {
    content: '\f00d';
}
.navicon:hover {
    cursor: pointer;
}
@media (max-width: 991px) { 
    .OpenMobileMenu .wrapper {
        right:240px;
    }
    .se_menu {
        position: fixed;
        height: 100vh;
        width: 240px;
        padding: 30px 0 0 20px;
        top: 0;
        right:-240px;
        transition: right .3s ease;
    }
    .MainMenu {
        padding: 0;
    }
    .OpenMobileMenu .se_menu {
        right:0;
    }
    .le_menu_level_container {
    	position: relative;
    }
    .MainMenu li {
        display: block;
        text-align: left;
        width: 100%;
    }
    .MainMenu li.le_menuitem_level_0 {
        padding: 0;
        list-style: none !important;
	    list-style-type: none !important;
    }
    .MainMenu li.le_menuitem_level_0 a {
        margin: 10px 0;
    }
    .Menu1 a {
        margin: 10px 10px 10px 0 !important;
    }
    .Menu2 a {
        margin: 0 10px 0 0 !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: "+";
        color: #999;
    	height: 0;
    	width: 0;
    }
    .MainMenu li.hasChild > a.active-mobile-parent:after {
        content:"-";
    }
    .MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1, .MainMenu li.le_menuitem_level_1.hasChild ul.le_menu_level_2 {
        height: 0;
        visibility: hidden;
        /*opacity:0;*/
        transition: all .3s ease;
    }
    .MainMenu li.le_menuitem_level_0.hasChild ul.le_menu_level_1.open-mobile-sub, .MainMenu li.le_menuitem_level_1.hasChild ul.le_menu_level_2.open-mobile-sub {
        height: auto;
        visibility: visible;
        /*opacity: 1;*/
    }
    .MainMenu .le_menu_level_1_container {
        position: relative;
    }
    .MainMenu .le_menu_level_2_container {
    	left: 0;
    	margin-top: 0;
    }
    .MainMenu ul.le_menu_level_2 {
    	position: relative;
    	left: 0;
    }
}

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

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

.footer {
    clear: both;
	padding: 60px 0;
}
.footer-title p {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}
.se_social {
    margin: 20px 0;
}
.se_social a {
    color: var(--bg-black);
    margin: 0 .15em;
    font-size: 28px;
}
.fa-facebook {
    font-size: 24px !important;
    top: -2px;
    position: relative;
}
.se_social a:hover {
    color: var(--bg-blue);
}
.footerRight h6 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}
.footerRight a {
    color: var(--bg-black);
    display: block;
    margin-bottom: 5px;
}
.footerRight a:hover {
    color: var(--bg-light-blue);
}
.FooterMenu {
    margin-bottom: 25px;
}
.footer-bottom p {
    font-size: 14px;
}
/* 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;
    }
    .left-section {
        padding: 0 0 50px 0;
    }
    .left-section1 {
        padding: 0 0 50px 0;
    }
    .banner h2, .banner h3 {
        font-size: 24px;
    }
    .tabs-btn ul {
        border-right: 0 solid var(--bg-blue);
        border-top: 7px solid var(--bg-blue);
        border-bottom: 7px solid var(--bg-blue);
        padding: 25px 0;
        text-align: center;
    }
    .tabs-btn ul li a {
        padding: 10px 0;
        border-bottom: 1px solid #d3d3d3;
    }
    .tabs-btn ul li a:hover {
        border-left: 5px solid #DAD0C2;
    }
    .tabs-btn ul li:last-of-type a {
        border-bottom: 0 solid #d3d3d3;
    }
    .tabContent {
        padding: 50px 0 0 0;
    }
    .testimonial-box {
        padding: 0;
    }
    .testimonial-box:after {
        top: -20px;
    }
    .testimonial-box h2 {
        padding-right: 100px;
    }
    .whitebox {
       top: -75px;
        left: 25px;
        margin-right: 15px;
        padding: 50px 30px;
    }
    .whitebox:before, .whitebox:after {
        left: -15%;
    }
    .home-blog .gridWrapper {
        width: 1925px;
    }
    .home-blog .blog_post_listing {
        flex-basis: 250px !important;
    }
    .circle1, .circle2, .circle3 {
        width: 200px;
        height: 200px;
    }
    .circle1-img {
        top: -25px;
    }
    .circle2-img {
        left: -20px;
    }
    .circle3-img {
        right: -20px;
    }
    .circle1-img, .circle2-img, .circle3-img {
        width: 50px;
        height: 50px;
    }
    .circle2, .circle3 {
        top: -75px;
    }
    .circle2 {
        left: 0;
    }
    .circle3 {
        right: 0;
        margin-left: -80px;
    }
    .circle4 {
        width: 70px;
        height: 70px;
        top: 35%;
    }
    .circle4 h3 {
        font-size: 10px !important;
        padding-top: 20px;
    }
    .circle-diagram h3 {
        font-size: 14px;
    }
    .circle-diagram p {
        font-size: 10px;
    }
    .circle2-text {
        left: 40px;
        width: 75px;
    }
    .circle3-text {
        right: 30px;
        width: 85px;
    }
    .circle1-arrow, .circle2-arrow, .circle3-arrow {
        width: 20px;
    }
    .circle1-arrow {
        left: 40px;
        bottom: 35px;
    }
    .circle2-arrow {
        bottom: 80px;
        right: 30px;
    }
    .circle3-arrow {
        left: 80px;
        top: 15px;
    }
    #blog_post  {
        width: 100%;
    }
    .uppertext {
        padding: 50px 20px 20px 20px;
    }
    .uppertext h1 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: #fff;
    }
    .uppertext h2 {
        font-size: 24px;
        color: #fff;
    }
    .boxes {
        padding: 0;
    }
    .cta h3 {
        font-size: 16px;
    }
    .testimonial-box:after  {
        font-size: 60px;
    }
    iframe {
        height: 700px;
}

}
/* 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;
    }
    .testimonials {
        overflow: hidden;
        margin-right: -100px !important;
    }
    .testimonials .bx-viewport {
        overflow: visible !important;
    }
    .testimonials .bx-wrapper {
        float: left;
        width: 35% !important;
        height: auto !important;
        margin-left: -10px !important;
    }
    .testimonials .bx-viewport .htmlSlide {
        width: 95% !important;
        height: 350px;
        margin-left: 25px !important;
        padding: 30px 30px 40px 30px;
    }
    .left-section {
        padding: 0 0 50px 0;
    }
    .left-section1 {
        padding: 0 0 50px 0;
    }
    .home-blog .gridWrapper {
        width: 1925px;
    }
    .home-blog .blog_post_listing {
        flex-basis: 250px !important;
    }
    .banner-box {
        padding-right: 0;
    }
    .banner-box h1 {
        font-size: 36px;
    }
    .uppertext {
        position: absolute;
        width: 650px;
        left: 10%;
        bottom: 175px;
    }
    .uppertext h1 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: #fff;
    }
    .uppertext h2 {
        font-size: 45px;
        color: #fff;
    }
    .uppertext:after {
        position: relative;
        content: '\f078';
        font-family: 'FontAwesome';
        font-size: 30px;
        color: #fff;
    }
    .boxes {
        padding: 0;
    }
    .whitebox {
        left: 25px;
        top: -150px;
    }
    .ctaoverlay p {
        font-size: 12px;
        line-height: 1.2;
    }
    .tabContent {
        padding: 20px 0 20px 20px;
    }
    iframe {
        height: 825px;
    }
}
@media (max-width: 991px) {
    #blog_post  {
        width: 90%;
        margin: 0 auto;
    }
    .less-gutters {
        padding: 0 !important;
    }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navicon {
        display: none;
    }
    .MainMenu {
        text-align: right;
    }
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 12px;
    }
    .banner h2, .banner h3 {
        font-size: 40px;
    }
    .left-section h2 {
        font-size: 24px;
    }
    .left-section {
        padding: 0 0 50px 0;
    }
    .left-section1 h2 {
        font-size: 24px;
    }
    .left-section1 {
        padding: 0 0 50px 0;
    }

    .circle1, .circle2, .circle3 {
        width: 290px;
        height: 290px;
    }
    .whitebox {
        left: -50px;
        top: 0;
        padding: 50px 50px 50px 50px;
    }
    .ctaoverlay p {
        font-size: 14px;
        line-height: 1.5;
    }
    .tabContent {
        padding: 30px 0 30px 50px;
    }
    .banner-box {
        padding-right: 15%;
    }
    iframe {
        height: 950px;
    }
}
@media (max-width: 992px) {
    .diagram-left h2 {
        font-size: 24px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    #le_section-four {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 20px;
    }
    .banner h2, .banner h3 {
        font-size: 45px;
    }
    .left-section h2 {
        font-size: 36px;
    }
    .left-section1 h2 {
        font-size: 36px;
    }
    .home-blog .gridWrapper {
        width: 2625px;
    }
    .home-blog .blog_post_listing {
        flex-basis: 350px !important;
    }
    .diagram-left {
        padding-right: 125px;
    }
    .cta h3:after {
        left: 5px;
    }
    .left-section {
        padding: 25px 50px 25px 0;
    }
    .left-section1 {
        padding: 25px 50px 25px 0;
    }
    .circle1, .circle2, .circle3 {
        width: 300px;
        height: 300px;
    }
    .boxes {
        padding: 0 25px;
    }
    .whitebox {
        padding: 50px 50px 125px 50px;
        left: -50px;
        top: 0px;
    }
}
@media (min-width: 1400px) {
    .cta h3 {
        font-size: 16px;
    }
    .cta h3:after {
        left: 15px;
    }
}

@media only screen and (max-width: 360px) and (orientation: portrait) {
    .circle1, .circle2, .circle3 {
        width: 190px;
        height: 190px;
    }

}

/* 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:20px; 
    list-style:none; 
}
.checklist ul li { 
    margin-bottom:10px; 
}
.checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin:0 5px 0 -15px;
}

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

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

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

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

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

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

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

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

/* -- Hide Options in Color in Design Tab -- */
.aurora_color-options .aurora_style-menu-inner h4.aurora_style-section-title:nth-of-type(4) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner h4.aurora_style-section-title:nth-of-type(9) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(18) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(19) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(20) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(21) {
    display: none !important;
}
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(35) {*/
/*    display: none !important;*/
/*}*/
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(36) {*/
/*    display: none !important;*/
/*}*/
/*.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(37) {*/
/*    display: none !important;*/
/*}*/
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(40) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(41) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(42) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(43) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(44) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(45) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(46) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(47) {
    display: none !important;
}
.aurora_color-options .aurora_style-menu-inner .form-group:nth-of-type(48) {
    display: none !important;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{
    min-height: 0px !important;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
.aurora_about #le_section-four {
    background-color: rgb(245, 243, 239);
    padding-top: 115px;
    padding-right: 15%;
    padding-bottom: 115px;
    padding-left: 15%;
}
.aurora_about #le_section-four-area1 {
    margin-bottom: 75px;
}
.aurora_about #le_section-four-area4 {
}
.aurora_about #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_about #le_section-three {
    background-color: rgb(218, 208, 194);
    padding-top: 115px;
    padding-right: 15%;
    padding-bottom: 115px;
    padding-left: 15%;
}
.aurora_about #le_section-three-area1 {
    margin-bottom: 50px;
}
.aurora_about #le_section-two {
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_about #le_section-two-area11 {
}
.aurora_about #le_section-two-area12 {
    padding-bottom: 75px;
}
.aurora_about #le_section-two-area14 {
    padding-top: 15%;
    padding-right: 50px;
    padding-left: 50px;
}
.aurora_about #le_section-two-area15 {
    margin-top: 100px;
    padding-right: 15%;
    padding-left: 15%;
}
.aurora_about #le_section-two-area3 {
}
.aurora_contact #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_contact #le_section-one-content3 {
    margin-right: 15%;
}
.aurora_contact #le_section-three {
    background-color: rgb(245, 243, 239);
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_contact #le_section-two {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_free-ebook-with-bonus-offer #le_section-bottom {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_free-ebook-with-bonus-offer #le_section-five {
}
.aurora_free-ebook-with-bonus-offer #le_section-five-area2 {
}
.aurora_free-ebook-with-bonus-offer #le_section-four {
    background-color: rgb(255, 255, 255);
    padding-top: 125px;
    padding-right: 10%;
    padding-bottom: 100px;
    padding-left: 10%;
}
.aurora_free-ebook-with-bonus-offer #le_section-four-area1 {
}
.aurora_free-ebook-with-bonus-offer #le_section-four-area11 {
    background-color: rgb(245, 243, 239);
    margin-top: 125px;
    padding-top: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
}
.aurora_free-ebook-with-bonus-offer #le_section-four-area2 {
}
.aurora_free-ebook-with-bonus-offer #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_free-ebook-with-bonus-offer #le_section-one-content1 {
}
.aurora_free-ebook-with-bonus-offer #le_section-one-content2 {
}
.aurora_free-ebook-with-bonus-offer #le_section-one-content3 {
    padding-right: 15%;
    padding-left: 15%;
}
.aurora_free-ebook-with-bonus-offer #le_section-seven {
}
.aurora_free-ebook-with-bonus-offer #le_section-six {
}
.aurora_free-ebook-with-bonus-offer #le_section-six-area2 {
}
.aurora_free-ebook-with-bonus-offer #le_section-three {
    background-color: rgb(218, 208, 194);
    padding-top: 75px;
    padding-right: 10%;
    padding-bottom: 75px;
    padding-left: 10%;
}
.aurora_free-ebook-with-bonus-offer #le_section-three-area1 {
}
.aurora_free-ebook-with-bonus-offer #le_section-three-area2 {
}
.aurora_free-ebook-with-bonus-offer #le_section-three-area5 {
    margin-right: 25px;
}
.aurora_free-ebook-with-bonus-offer #le_section-three-area6 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/categories/mancuso-consulting-media-appearances.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 225px;
    padding-bottom: 225px;
}
.aurora_free-ebook-with-bonus-offer #le_section-three-area7 {
}
.aurora_free-ebook-with-bonus-offer #le_section-two {
    padding-top: 50px;
    padding-right: 10%;
    padding-bottom: 100px;
    padding-left: 10%;
}
.aurora_free-ebook-with-bonus-offer #le_section-two-area1 {
}
.aurora_free-ebook-with-bonus-offer #le_section-two-area10 {
}
.aurora_free-ebook-with-bonus-offer #le_section-two-area12 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.aurora_free-ebook-with-bonus-offer #le_section-two-area8 {
}
.aurora_free-ebook-with-bonus-offer #le_section-two-area9 {
}
.aurora_home #le_section-eight {
    background-color: rgb(245, 243, 239);
    padding-top: 60px;
    padding-bottom: 40px;
}
.aurora_home #le_section-eight-area1 {
}
.aurora_home #le_section-eight-area2 {
    margin-left: 50px;
}
.aurora_home #le_section-five {
    background-color: rgb(245, 243, 239);
}
.aurora_home #le_section-five-area1 {
}
.aurora_home #le_section-five-area2 {
    padding-right: 20px;
    padding-left: 20px;
}
.aurora_home #le_section-four {
    background-color: rgb(245, 243, 239);
    padding-top: 125px;
    padding-bottom: 200px;
}
.aurora_home #le_section-four-area1 {
}
.aurora_home #le_section-one {
}
.aurora_home #le_section-one-content1 {
}
.aurora_home #le_section-one-content2 {
}
.aurora_home #le_section-seven {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_home #le_section-seven-area1 {
    padding-top: 10%;
}
.aurora_home #le_section-seven-area2 {
    padding-top: 25px;
}
.aurora_home #le_section-six {
    background-color: rgb(245, 243, 239);
    padding-top: 200px;
    padding-bottom: 100px;
}
.aurora_home #le_section-six-area1 {
}
.aurora_home #le_section-three {
    padding-bottom: 125px;
}
.aurora_home #le_section-three-area1 {
}
.aurora_home #le_section-three-area2 {
}
.aurora_home #le_section-two {
    padding-top: 125px;
    padding-bottom: 50px;
}
.aurora_home #le_section-two-area1 {
    padding-top: 50px;
}
.aurora_home #le_section-two-area2 {
}
.aurora_home-new #le_section-bottom {
}
.aurora_home-new #le_section-bottom-area1 {
}
.aurora_home-new #le_section-eight {
}
.aurora_home-new #le_section-eight-content1 {
    background-color: rgb(245, 243, 239);
    padding-top: 0px;
    padding-right: 15%;
    padding-bottom: 0px;
    padding-left: 18%;
}
.aurora_home-new #le_section-eight-content2 {
    background-color: rgb(218, 208, 194);
    padding-top: 0px;
    padding-right: 10%;
    padding-bottom: 0px;
    padding-left: 10%;
}
.aurora_home-new #le_section-five {
}
.aurora_home-new #le_section-four {
}
.aurora_home-new #le_section-four-area1 {
}
.aurora_home-new #le_section-four-area4 {
}
.aurora_home-new #le_section-one {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.aurora_home-new #le_section-one-content1 {
    background-color: rgb(245, 243, 239);
    padding-top: 0px;
    padding-right: 25%;
    padding-bottom: 0px;
    padding-left: 10%;
}
.aurora_home-new #le_section-one-content2 {
    background-color: rgb(218, 208, 194);
    padding-top: 0px;
    padding-right: 10%;
    padding-bottom: 0px;
    padding-left: 10%;
}
.aurora_home-new #le_section-one-content3 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.aurora_home-new #le_section-seven {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_home-new #le_section-three {
    padding-bottom: 125px;
}
.aurora_home-new #le_section-three-area1 {
}
.aurora_home-new #le_section-two {
    margin-top: 125px;
    margin-bottom: 75px;
}
.aurora_home-new #le_section-two-area11 {
    margin-top: 25px;
    margin-right: 22%;
    margin-bottom: 75px;
    margin-left: 22%;
}
.aurora_home-new #le_section-two-area2 {
    margin-right: 50px;
    padding-top: 50px;
}
.aurora_home-new #le_section-two-area3 {
}
.aurora_home2 #le_section-eight {
    background-color: rgb(245, 243, 239);
    padding-top: 60px;
    padding-bottom: 40px;
}
.aurora_home2 #le_section-eight-area1 {
}
.aurora_home2 #le_section-eight-area2 {
    margin-left: 50px;
}
.aurora_home2 #le_section-five {
    background-color: rgb(245, 243, 239);
}
.aurora_home2 #le_section-five-area1 {
}
.aurora_home2 #le_section-five-area2 {
    padding-right: 20px;
    padding-left: 20px;
}
.aurora_home2 #le_section-four {
    background-color: rgb(245, 243, 239);
    padding-top: 125px;
    padding-bottom: 200px;
}
.aurora_home2 #le_section-four-area1 {
}
.aurora_home2 #le_section-one {
}
.aurora_home2 #le_section-one-content1 {
}
.aurora_home2 #le_section-one-content2 {
}
.aurora_home2 #le_section-seven {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_home2 #le_section-seven-area1 {
    padding-top: 10%;
}
.aurora_home2 #le_section-seven-area2 {
    padding-top: 25px;
}
.aurora_home2 #le_section-six {
    background-color: rgb(245, 243, 239);
    padding-top: 200px;
    padding-bottom: 100px;
}
.aurora_home2 #le_section-six-area1 {
}
.aurora_home2 #le_section-three {
    padding-bottom: 125px;
}
.aurora_home2 #le_section-three-area1 {
}
.aurora_home2 #le_section-three-area2 {
}
.aurora_home2 #le_section-two {
    padding-top: 125px;
    padding-bottom: 50px;
}
.aurora_home2 #le_section-two-area1 {
    padding-top: 50px;
}
.aurora_home2 #le_section-two-area2 {
}
.aurora_magazine-funnel #le_section-four {
    background-color: rgb(57, 42, 61);
    padding-top: 10%;
    padding-bottom: 5%;
}
.aurora_magazine-funnel #le_section-four-area1 {
    color: rgb(255, 255, 255);
}
.aurora_magazine-funnel #le_section-four-area11 {
    padding-top: 2%;
    padding-right: 15%;
    padding-left: 15%;
}
.aurora_magazine-funnel #le_section-four-area4 {
    padding-top: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
}
.aurora_magazine-funnel #le_section-four-area5 {
    padding-top: 10%;
    padding-right: 5%;
    padding-bottom: 10%;
    padding-left: 5%;
    text-align: center;
}
.aurora_magazine-funnel #le_section-four-area6 {
    padding-top: 1%;
    text-align: center;
}
.aurora_magazine-funnel #le_section-one {
    padding-top: 3%;
}
.aurora_magazine-funnel #le_section-one-content1 {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
}
.aurora_magazine-funnel #le_section-one-content2 {
    padding-top: 5%;
    padding-right: 20%;
    padding-bottom: 5%;
    padding-left: 0%;
}
.aurora_magazine-funnel #le_section-one-content3 {
    background-color: rgba(0, 0, 0, 0);
    padding-bottom: 3%;
    font-weight: normal;
    text-align: center;
    color: rgb(255, 255, 255);
}
.aurora_magazine-funnel #le_section-seven {
    background-color: rgb(57, 75, 111);
    padding-top: 8%;
    padding-right: 12%;
    padding-bottom: 8%;
    padding-left: 12%;
}
.aurora_magazine-funnel #le_section-seven-area1 {
    padding-right: 15%;
    padding-bottom: 5%;
    padding-left: 15%;
    text-align: center;
}
.aurora_magazine-funnel #le_section-seven-area11 {
    padding-top: 5%;
    padding-right: 10%;
    padding-left: 10%;
}
.aurora_magazine-funnel #le_section-seven-area2 {
    text-align: center;
}
.aurora_magazine-funnel #le_section-seven-area3 {
    text-align: center;
}
.aurora_magazine-funnel #le_section-seven-area5 {
    text-align: center;
}
.aurora_magazine-funnel #le_section-three {
}
.aurora_magazine-funnel #le_section-three-area1 {
    padding-top: 5%;
    padding-left: 3%;
}
.aurora_magazine-funnel #le_section-three-area2 {
    padding-bottom: 7%;
}
.aurora_magazine-funnel #le_section-three-area3 {
    padding-top: 5%;
}
.aurora_magazine-funnel #le_section-three-area5 {
    padding-top: 30%;
    padding-right: 5%;
    padding-left: 25%;
}
.aurora_magazine-funnel #le_section-three-area6 {
    padding-top: 10%;
}
.aurora_magazine-funnel #le_section-three-area7 {
    padding-top: 2%;
    padding-right: 15%;
    padding-bottom: 5%;
    padding-left: 15%;
}
.aurora_magazine-funnel #le_section-two {
    background-color: rgb(57, 75, 111);
    padding-top: 7%;
    padding-right: 10%;
    padding-bottom: 7%;
    padding-left: 10%;
}
.aurora_magazine-funnel #le_section-two-area1 {
    background-color: rgb(57, 75, 111);
}
.aurora_magazine-funnel #le_section-two-area15 {
}
.aurora_magazine-funnel #le_section-two-area2 {
}
.aurora_magazine-signup-thank-you #le_section-one {
    background-color: rgb(0, 34, 53);
    padding-top: 4%;
    padding-right: 10%;
    padding-bottom: 4%;
    padding-left: 10%;
}
.aurora_magazine-signup-thank-you #le_section-one-content1 {
}
.aurora_magazine-signup-thank-you #le_section-one-content2 {
    background-color: rgb(4, 24, 31);
    padding-top: 10%;
    padding-right: 5%;
    padding-bottom: 10%;
    padding-left: 5%;
}
.aurora_method #le_section-bottom {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_method #le_section-four {
}
.aurora_method #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_method #le_section-one-content1 {
}
.aurora_method #le_section-one-content3 {
    padding-right: 15%;
}
.aurora_method #le_section-three {
}
.aurora_method #le_section-two {
    padding-top: 125px;
    padding-right: 10%;
    padding-bottom: 100px;
    padding-left: 10%;
}
.aurora_method #le_section-two-area11 {
}
.aurora_method #le_section-two-area4 {
    margin-top: 5%;
    margin-right: 25px;
}
.aurora_method #le_section-two-area5 {
}
.aurora_podcasts #le_section-bottom {
}
.aurora_podcasts #le_section-four {
}
.aurora_podcasts #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_podcasts #le_section-one-content1 {
}
.aurora_podcasts #le_section-one-content3 {
    padding-right: 15%;
}
.aurora_podcasts #le_section-three {
}
.aurora_podcasts #le_section-two {
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_podcasts #le_section-two-area12 {
}
.aurora_podcasts #le_section-two-area3 {
}
.aurora_prepare #le_section-bottom {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_prepare #le_section-four {
    background-color: rgb(255, 255, 255);
    padding-top: 125px;
    padding-right: 10%;
    padding-bottom: 100px;
    padding-left: 10%;
}
.aurora_prepare #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 74px;
    padding-left: 5%;
}
.aurora_prepare #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/mancuso-consulting-category-prepare-two-people-full.jpg);
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
    padding-top: 500px;
}
.aurora_prepare #le_section-three {
    padding-top: 75px;
    padding-right: 15%;
    padding-bottom: 0px;
    padding-left: 15%;
}
.aurora_prepare #le_section-three-area1 {
    margin-bottom: 50px;
}
.aurora_prepare #le_section-three-area2 {
}
.aurora_prepare #le_section-three-area7 {
    background-color: rgb(255, 255, 255);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_prepare #le_section-two {
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_prepare #le_section-two-area1 {
}
.aurora_prepare #le_section-two-area12 {
    padding-bottom: 75px;
}
.aurora_privacy-policy #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_privacy-policy #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_prosper #le_section-bottom {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_prosper #le_section-four {
    padding-top: 125px;
    padding-right: 15%;
    padding-bottom: 100px;
    padding-left: 15%;
}
.aurora_prosper #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 74px;
    padding-left: 5%;
}
.aurora_prosper #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/mancuso-consulting-category-prosper-happy-two-people-full.jpg);
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
    padding-top: 500px;
}
.aurora_prosper #le_section-three {
    background-color: rgb(218, 208, 194);
    padding-top: 75px;
    padding-right: 10%;
    padding-bottom: 75px;
    padding-left: 10%;
}
.aurora_prosper #le_section-two {
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_prosper #le_section-two-area12 {
    padding-bottom: 75px;
}
.aurora_protect #le_section-bottom {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_protect #le_section-four {
    padding-top: 125px;
    padding-right: 15%;
    padding-bottom: 100px;
    padding-left: 15%;
}
.aurora_protect #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 74px;
    padding-left: 5%;
}
.aurora_protect #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/mancuso-consulting-category-protect-group-full.jpg);
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
    padding-top: 500px;
}
.aurora_protect #le_section-three {
    background-color: rgb(218, 208, 194);
    padding-top: 75px;
    padding-right: 10%;
    padding-bottom: 75px;
    padding-left: 10%;
}
.aurora_protect #le_section-two {
    padding-top: 125px;
    padding-bottom: 100px;
}
.aurora_protect #le_section-two-area1 {
}
.aurora_protect #le_section-two-area12 {
    margin-bottom: 75px;
}
.aurora_tax-credit #le_section-bottom {
    background-color: rgb(8, 42, 90);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
}
.aurora_tax-credit #le_section-five {
    background-color: rgb(245, 243, 239);
    padding-top: 125px;
    padding-bottom: 200px;
}
.aurora_tax-credit #le_section-five-area2 {
}
.aurora_tax-credit #le_section-four {
    background-color: rgb(255, 255, 255);
    padding-top: 50px;
    padding-right: 10%;
    padding-bottom: 100px;
    padding-left: 10%;
}
.aurora_tax-credit #le_section-four-area1 {
    margin-right: 125px;
    margin-left: 125px;
}
.aurora_tax-credit #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 74px;
    padding-left: 5%;
}
.aurora_tax-credit #le_section-one-content1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mancusoconsulting/gettyimages-1489003364-612x612.jpg);
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
    padding-top: 600px;
}
.aurora_tax-credit #le_section-one-content2 {
}
.aurora_tax-credit #le_section-six {
    background-color: rgb(245, 243, 239);
    padding-bottom: 200px;
}
.aurora_tax-credit #le_section-six-area2 {
}
.aurora_tax-credit #le_section-three {
    background-color: rgb(218, 208, 194);
    padding-top: 75px;
    padding-right: 15%;
    padding-bottom: 0px;
    padding-left: 15%;
}
.aurora_tax-credit #le_section-three-area1 {
    margin-bottom: 50px;
}
.aurora_tax-credit #le_section-three-area2 {
}
.aurora_tax-credit #le_section-three-area7 {
    background-color: rgb(255, 255, 255);
    margin-top: 50px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}
.aurora_tax-credit #le_section-two {
    padding-top: 125px;
    padding-right: 10%;
    padding-bottom: 100px;
    padding-left: 10%;
}
.aurora_tax-credit #le_section-two-area1 {
}
.aurora_tax-credit #le_section-two-area10 {
}
.aurora_tax-credit #le_section-two-area12 {
    margin-bottom: 25px;
}
.aurora_tax-credit #le_section-two-area8 {
}
.aurora_tax-credit #le_section-two-area9 {
}
.aurora_terms-conditions #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_terms-conditions #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_thank-you #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_thank-you-submission #le_section-bottom {
}
.aurora_thank-you-submission #le_section-bottom-area1 {
}
.aurora_thank-you-submission #le_section-five {
}
.aurora_thank-you-submission #le_section-four {
    margin-top: 100px;
    margin-right: 10%;
    margin-bottom: 100px;
    margin-left: 10%;
}
.aurora_thank-you-submission #le_section-four-area1 {
    margin-bottom: 100px;
}
.aurora_thank-you-submission #le_section-four-area4 {
}
.aurora_thank-you-submission #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 75px;
    padding-left: 5%;
}
.aurora_thank-you-submission #le_section-one-content1 {
}
.aurora_thank-you-submission #le_section-one-content2 {
}
.aurora_website-disclaimer #le_section-one {
    background-color: rgb(245, 243, 239);
    padding-top: 75px;
    padding-bottom: 150px;
}
.aurora_website-disclaimer #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-four {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 75px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-three {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-two-area14 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-two-area15 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_about #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-five-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four {
    padding-top: 75px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-eight-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-five-area2 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven {
    padding-top: 100px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven-area1 {
    padding-top: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-seven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-six-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two {
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area1 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-bottom-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-eight-content1 {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-eight-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-one-content1 {
    padding-top: 75px;
    padding-bottom: 45px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-one-content2 {
    padding-top: 30px;
    padding-bottom: 30px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-two-area11 {
    margin-right: 25px;
    margin-left: 25px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home-new #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-eight-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-eight-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-five-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-seven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-six-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-two-area1 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home2 #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-four-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-four-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-four-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-seven-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-seven-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-seven-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-seven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-seven-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-three-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-two-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-funnel #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-signup-thank-you #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-signup-thank-you #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_magazine-signup-thank-you #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-one-content3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-two-area4 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_method #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-one-content3 {
    padding-right: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_podcasts #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-four {
    padding-top: 75px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-three {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-three-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prepare #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_privacy-policy #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_privacy-policy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-four {
    padding-top: 75px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-three {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_prosper #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-four {
    padding-top: 75px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-three {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_protect #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-five {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-five-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-four {
    padding-top: 75px;
    padding-right: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-four-area1 {
    margin-right: 5px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-one {
    padding-top: 75px;
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-six {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-six-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-three {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-three-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-two {
    padding-top: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-two-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_tax-credit #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_terms-conditions #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_terms-conditions #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-bottom-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-four-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-one {
    padding-top: 75px;
    padding-right: 05%;
    padding-bottom: 0px;
    padding-left: 5%;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-one-content1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you-submission #le_section-one-content2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_website-disclaimer #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_website-disclaimer #le_section-two {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-four {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-four-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-three {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-two-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-two-area14 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-two-area15 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_about #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-one-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four {
    padding-top: 50px;
    padding-right: 0%;
    padding-left: 0%;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-four-area2 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-one-content3 {
    padding-right: 5%;
    padding-left: 5%;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area5 {
    margin-right: 0px;
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area6 {
    padding-top: 200px;
    padding-bottom: 200px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-three-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two {
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area8 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_free-ebook-with-bonus-offer #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight-area1 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-eight-area2 {
    margin-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-seven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-six-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area1 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-bottom-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-eight-content1 {
    padding-top: 50px;
    padding-right: 20px;
    padding-bottom: 25px;
    padding-left: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-eight-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-four-area4 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-one-content1 {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    text-align: center;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-one-content2 {
    padding-top: 10px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-one-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-three {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-two {
    margin-top: 50px;
    padding-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-two-area11 {
    margin-top: 25px;
    margin-right: 10px;
    margin-bottom: 75px;
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-two-area2 {
    margin-right: 10px;
    padding-top: 45px;
    padding-right: 10px;
    padding-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home-new #le_section-two-area3 {
    margin-left: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-eight-area1 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-eight-area2 {
    margin-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-five-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-seven {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-seven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-six {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-six-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-three {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-two {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-two-area1 {
    padding-top: 0px;
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home2 #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-four-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-four-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-four-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-four-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-one-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-seven-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-seven-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-seven-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-seven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-seven-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-three-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-two-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-funnel #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-signup-thank-you #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-signup-thank-you #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_magazine-signup-thank-you #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-bottom {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-one {
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-one-content3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-two {
    padding-top: 75px;
    padding-right: 0%;
    padding-left: 0%;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-two-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-two-area4 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_method #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-one-content3 {
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_podcasts #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-four {
    padding-right: 0%;
    padding-left: 0%;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-one-content1 {
    padding-top: 400px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-three-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prepare #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_privacy-policy #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_privacy-policy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-bottom {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-one-content1 {
    padding-top: 400px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_prosper #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-bottom {
    padding-top: 75px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-one-content1 {
    padding-top: 400px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_protect #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-five {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-five-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-four {
    padding-right: 0%;
    padding-left: 0%;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-four-area1 {
    margin-right: 5px;
    margin-left: 5px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-one {
    padding-right: 25px;
    padding-left: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-one-content1 {
    padding-top: 400px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-six {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-six-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-three-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-three-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-two-area10 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-two-area8 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_tax-credit #le_section-two-area9 {
    margin-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_terms-conditions #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_terms-conditions #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-bottom-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-four-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-four-area4 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-one {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-one-content1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you-submission #le_section-one-content2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_website-disclaimer #le_section-one {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_website-disclaimer #le_section-two {
    }
}

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