:root {
    --bg-main: #000;
    --bg-color: #3d5d50;
    --bg-hover: #224436;
    --bg-light-color: #edf4f2;
}

@font-face {
    font-family: 'Acumin Pro';
    font-style: normal;
    font-weight: normal;
    src: local('Acumin Pro'), url('../fonts/Acumin-RPro.woff') format('woff');
}

@font-face {
    font-family: 'Acumin Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Acumin Pro Bold'), url('../fonts/Acumin-BdPro.woff') format('woff');
}

body {
    margin: 0 auto;
    color: var(--bg-main);
    font-family: 'Acumin Pro';
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    background-color: #ffffff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

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

a {
    color: var(--bg-color);
    text-decoration: none;
}

a:hover {
    color: var(--bg-hover);
}

a img {
    border: 0;
}

p {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-weight: 300;
    margin: 0;
}

h1,
h1 a,
.title1,
.title1 a {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 45px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 3px;
}

h2,
h2 a,
.title2,
.title2 a {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    margin: 0 0 10px 0;
    letter-spacing: 3px;

}

h3,
h3 a,
.title3,
.title3 a {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 10px 0;
    letter-spacing: 3px;
}

h4,
h4 a,
.title4,
.title4 a {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
}

h5,
h5 a,
.title5,
.title5 a {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

h6,
h6 a,
.title6,
.title6 a {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.title1 a:hover,
.title2 a:hover,
.title3 a:hover,
.title4 a:hover,
.title5 a:hover,
.title6 a:hover {
    text-decoration: none;
}

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

.le_form {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-weight: 300 !important;
    font-size: 14px;
    margin: 0;
}

.le_form_name {
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-weight: 300 !important;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.seFormButton,
.wrapper input[type="submit"].seFormButton {
    padding: 5px 15px;
    border: 0px solid transparent;
    font-family: acumin-pro, sans-serif;
    font-size: 14px;
    margin: 0;
    background-color: #96c6d1;
    color: #ffffff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    border-radius: 0;
}

.seFormButton:hover,
.wrapper input[type="submit"].seFormButton:hover {
    cursor: pointer;
    background-color: var(--bg-color);
    color: #ffffff;
}

.wrapper input[type="submit"] {
    padding: 5px 15px;
    border: 0px solid transparent;
    font-family: acumin-pro, sans-serif;
    font-size: 14px;
    margin: 0;
    background-color: #96c6d1;
    color: #ffffff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    border-radius: 0 !important;
}

.wrapper input[type="submit"]:hover {
    cursor: pointer;
    background-color: var(--bg-color);
    color: #ffffff;
}

.wrapper input[type="number"],
.wrapper input[type="text"],
.wrapper input[type="email"],
.wrapper input[type="password"],
.wrapper textarea {
    padding: 5px 10px;
    background-color: #fff;
    border: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 2px solid #96c6d1;
    box-shadow: none !important;
    color: var(--bg-main);
    font-family: acumin-pro, sans-serif;
    font-size: 14px;
    margin: 0;
}

.form-control {
    font-family: 'acumin-pro', sans-serif !important;
    border: 2px solid #96c6d1;
    box-shadow: none !important;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 0 !important;
    color: #676767 !important;
    letter-spacing: .14em;
    font-weight: 300 !important;
}

.wrapper textarea {
    padding: 10px 10px;
}

/* -- Bootstrap form tweaks -- */
.form-control {}

/* -- 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;
    letter-spacing: .14em;
    font-family: 'acumin-pro', sans-serif !important;
    font-weight: 300 !important;
}

:-moz-placeholder {
    /* older Firefox*/
    font-size: 13px;
    color: #676767;
    letter-spacing: .14em;
    font-family: 'acumin-pro', sans-serif !important;
    font-weight: 300 !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #676767;
    letter-spacing: .14em;
    font-family: 'acumin-pro', sans-serif !important;
    font-weight: 300 !important;
}

:-ms-input-placeholder {
    font-size: 13px;
    color: #676767;
    letter-spacing: .14em;
    font-family: 'acumin-pro', sans-serif !important;
    font-weight: 300 !important;
}

.form-group label.title3 {
    padding-top: 30px;
    margin-bottom: 15px;
    display: block;
}

.le_form label {
    font-weight: normal;
}


/* -- fieldset clearing -- */
fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}


/* ---- 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 {
    margin: -20px 0 !important;
    padding: 0 !important;
}

.footer-form input[type="text"],
.footer-form input[type="email"],
.footer-form input[type="password"],
.footer-form textarea {
    padding: 5px 20px !important;
    background-color: var(--bg-hover);
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    border: 0 !important;
    height: 43px;
}

.footer-form input[type="submit"] {
    background-color: var(--bg-light-color) !important;
    color: #363636 !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

.footer-form input[type="submit"]:hover {
    background-color: var(--bg-hover) !important;
    color: #fff !important;
}

.footer-form ::-webkit-input-placeholder {
    color: #fff !important;
}

.footer-form :-moz-placeholder {
    /* older Firefox*/
    color: #fff !important;
}

.footer-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff !important;
}

.footer-form :-ms-input-placeholder {
    color: #fff !important;
}

/* Buttons
----------------------------------------------------------------------------------------------------*/
.mb_schedule .le_metro_silver_button .signup .le_mb_button {
    position: relative;
    display: inline-block !important;
    margin-bottom: 10px !important;
    padding: 7px 10px !important;
    background-color: var(--bg-color);
    color: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 300;
    box-shadow: none;
    background: var(--bg-color);
    border: none;
    text-shadow: none;
    text-transform: uppercase;
}

.le_metro_silver_button {
    background: var(--bg-color) !important;
    color: #ffffff !important;
    text-shadow: 0px 0px 0 #FFFFFF !important;
    border: 0 solid #ffffff !important;
    padding: 7px 10px !important;
    text-transform: uppercase !important;
}

.le_metro_silver_button:hover {
    background: var(--bg-hover) !important;
}

.mb_schedule .le_metro_silver_button:hover {
    color: #ffffff;
    background-color: var(--bg-hover);
}

.se_button a,
a.se_button {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding: 15px 20px;
    line-height: 1em;
    border: 0px solid transparent;
    font-weight: 400;
    background-color: var(--bg-color);
    color: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.se_button a:hover,
a:hover.se_button {
    text-decoration: none;
    background-color: var(--bg-hover);
}

.se_button.button1 a,
a.se_button.button1 {
    background-color: var(--bg-color);
    padding: 10px 25px !important;
    margin-top: 10px;
    color: #ffffff !important;
}

.se_button.button1 a:hover,
a:hover.se_button.button1 {
    background-color: var(--bg-hover);
}

.se_button.button2 a,
a.se_button.button2 {
    padding: 9px 25px !important;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid var(--bg-main);
    color: var(--bg-main);
    margin-top: 10px;
}

.se_button.button2 a:hover,
a:hover.se_button.button2 {
    background-color: var(--bg-hover);
    color: #fff;
}

.se_button.fullwidthButton a,
a.se_button.fullwidthButton {
    display: block;
    text-align: center;
}

.se_button.largeButton a,
a.se_button.largeButton {
    padding: 15px 15px;
}

.seFormButton,
.wrapper input[type="submit"].seFormButton {
    padding: 8px 20px;
    font-family: 'Lato', sans-serif;
    background-color: #96c6d1;
}

.seFormButton:hover,
.wrapper input[type="submit"].seFormButton:hover {
    background-color: var(--bg-color);
}

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

.le_plugin_gallery {
    width: 100%;
    text-align: center;
    /*display: grid;*/
    /*grid-template-columns: 24% 24% 32%;*/
    /*grid-gap: 15px;*/
}

.le_plugin_gallery_squarethumb {
    float: none !important;
    display: inline-block;
}

/* Classes
----------------------------------------------------------------------------------------------------*/

hr {
    border: 0;
    height: 1px;
    margin: 5px 0;
    background-color: #e9e7e7;
}

.no-gutters {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.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;
}

.mt10 {
    margin-bottom: 20px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.fullwidth img {
    width: 100%;
    height: auto;
}

.uppertext p {
    display: block;
    width: 100%;
    background-color: rgba(61, 93, 80, 0.6);
    color: #fff;
    padding: 60px 20px;
    font-size: 40px;
    line-height: 50px;
    font-weight: 200;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 37%;
}

.uppertext2 {
    display: block;
    width: 100%;
    padding: 30px 20px 40px 20px;
    background-color: rgba(61, 93, 80, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 37%;
}

.uppertext2 h1 {
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    font-weight: 200;
    margin: 0;
}

.uppertext2 p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 200;
}

.uppertext2 a {
    display: inline-block;
    background-color: #b3c9bf;
    color: var(--bg-main);
    font-weight: 200;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 6px 25px;
    margin-top: 20px;
}

.uppertext2 a:hover {
    background-color: var(--bg-color);
    color: #fff;
}

.uppertext3 {
    display: block;
    width: 100%;
    padding: 30px 20px 40px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 37%;
}

.uppertext3 h1 {
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    font-weight: 200;
    margin: 0;
}

.uppertext3 p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 200;
}

.uppertext3 a {
    display: inline-block;
    background-color: var(--bg-color);
    color: #fff;
    font-weight: 200;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 6px 25px;
    margin-top: 20px;
}

.uppertext3 a:hover {
    background-color: var(--bg-hover);
    color: #fff;
}

.banner {
    margin-bottom: -8px;
}

.divide {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    z-index: 1;
}

.divide:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 60%;
    background-color: #a3a2a7;
}

.divide h1 {
    background-color: #E8E7EC;
    color: #3f3f41;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 25px;
    font-size: 20px;
    line-height: 30px;
}

.divide-line,
.divide-line2,
.divide-line3 {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    z-index: 1;
}

.divide-line:before,
.divide-line2:before,
.divide-line3:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 40%;
    background-color: #a3a2a7;
}

.divide-line h2 {
    background-color: #fff;
    color: #3f3f41;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 25px;
    font-size: 24px;
    line-height: 30px;
}

.divide-line2 h2 {
    background-color: #D5EAE2;
    color: #3f3f41;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 25px;
    font-size: 24px;
    line-height: 30px;
}

.divide-line3 h2 {
    background-color: #e8e7ec;
    color: #3f3f41;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 25px;
    font-size: 24px;
    line-height: 30px;
}

.divide-line3 p {
    background-color: #e8e7ec;
    color: #3f3f41;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 25px;
    font-size: 24px;
    line-height: 30px;
}

.cta-block {
    padding: 0 10px;
    margin-bottom: 30px;
}

.cta-block h2 {
    font-size: 18px;
    line-height: 25px;
    margin: 15px 0 25px 0;
}

.text-block p {
    font-size: 20px;
    line-height: 25px;
}

.text-block p a {
    font-size: 14px;
    margin-top: 30px !important;
}

.line-block {
    margin-top: 10px;
    border-top: 1px solid #e2e1e6;
    border-bottom: 1px solid #e2e1e6;
    padding: 20px 0;
}

.checklist ul {
    padding-left: 20px;
    list-style: none;
    margin: 0;
}

.checklist ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.checklist ul li:before {
    content: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/icon-gray-square.svg);
    margin: 0 5px 0 -15px;
    width: 10px;
    height: auto;
    display: inline-block;
    position: relative;
}

.check-list ul {
    padding-left: 20px;
    list-style: none;
    margin: 0;
}

.check-list ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.check-list ul li:before {
    font-family: 'FontAwesome';
    content: '\f14a';
    margin: 0 5px 0 -15px;
    color: var(--bg-hover);
}

.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);
    border: 1px solid #ddd;
    padding: 10px;
    margin: 0 0 25px 0;
    text-align: center;
}

.white-box h3 {
    font-size: 20px;
    line-height: 25px;
    margin-top: 10px;
}

.white-box .se_button.button1 a,
.white-box a.se_button.button1,
.white-box .se_button.button2 a,
.white-box a.se_button.button2 {
    padding-right: 10px !important;
    padding-left: 10px !important;
    margin-bottom: 25px !important;
}

.white-box .se_button.button1 a,
.white-box a.se_button.button1 {
    margin-right: 2px !important;
}

.white-box .se_button.button2 a,
.white-box a.se_button.button2 {
    margin-left: 2px !important;
}

.green-bknd {
    background-color: var(--bg-color);
    padding: 30px 20px;
}

.green-bknd p {
    line-height: 20px;
}

.graybox {
    padding: 75px 10%;
}

.graybox h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 200;
}

.circle {
    position: relative;
    margin: 15px 0 10px 0;
    border-radius: 50%;
    border: 8px solid #E8E7EC;
    border-top-color: #fff;
    padding: 10px;
}

.circle img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.text-list p {
    margin-bottom: 10px;
}

.bigtext h6 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 200;
}

.big-text p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 200;
}

.bigtext p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 200;
}

.small-title h1 {
    font-size: 20px;
    line-height: 30px;
}

.minutes {
    margin-bottom: 25px;
}

.minutes p {
    font-size: 26px;
    line-height: 35px;
    font-weight: 500;
}

.price-box {
    -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.35);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.35);
    box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.35);
    padding: 50px 25px;
    margin-bottom: 15px;
}

.price-box h3 {
    margin-bottom: 20px;
}

.staff {
    position: relative;
    margin-bottom: 0px;
    border-radius: 50%;
    border: 8px solid #E7E8EC;
    border-top-color: var(--bg-color);
    padding: 10px;
}

.staff2 {
    position: relative;
    margin-bottom: 0px;
    border-radius: 50%;
    border: 8px solid #fff;
    border-top-color: var(--bg-color);
    padding: 10px;
}

.staff img,
.staff2 img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

/*.round_dark {*/
/*    height: 85vh !important;*/
/*    overflow: hidden;*/
/*}*/

/*----------------------------Tabs--------------------------*/
.tabs {
    text-align: center;
}

.tabs-btn li {
    display: inline-block;
}

.tabs-btn ul {
    padding: 0;
}

.tabs-btn ul li a {
    display: inline-block;
    background-color: var(--bg-color);
    color: #ffffff;
    padding: 10px 20px;
    margin: 0 5px 5px 5px;
    list-style: none;
    text-transform: uppercase;
}

.tabs-btn ul li a:hover {
    text-decoration: none;
    background-color: var(--bg-hover);
    position: relative;
}

.tabs-btn ul li a:hover:after {
    width: 100%;
    height: 10px;
    width: 20px;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -10px !important;
    z-index: 100 !important;
    position: absolute;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

.tabs>div {
    display: none;
}

.le-edit-open .tabs>div {
    display: block !important;
}

.tabs>div:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.tabs>div.expanded {
    display: block !important;
}

.tab-box {
    border: 2px solid #dedcdc;
    padding: 30px 20px;
    margin-bottom: 25px;
    margin-top: -7px;
    text-align: center;
}

.tab-box h2 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 5px;
    color: #99b0ac;
}

.tabs img {
    width: 100%;
    height: auto;
}

/* Expand
----------------------------------------------------------------------------------------------------*/
.expand {
    position: relative;
    margin: 0 0 30px 0;
    text-align: center;
}

.expand h3 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
}

.expand h6 {
    font-weight: 300 !important;
}

.expand h4 {
    position: relative;
    font-size: 14px;
    color: var(--bg-color);
    line-height: 30px !important;
    text-transform: uppercase;
}

.expand h4:after {
    content: '+';
    margin-left: 5px;
    font-size: 14px !important;
    color: var(--bg-color);
    display: inline-block;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.expand h4.active {
    color: var(--bg-hover);
    margin-bottom: 10px !important;
}

.expand h4.active:after {
    content: '-';
}

.expand h4:hover {
    cursor: pointer;
    color: var(--bg-hover);
}

.expand iframe {
    padding: 5px 0 15px 0;
}

/* Expand2
----------------------------------------------------------------------------------------------------*/
.expand2 {
    position: relative;
    margin: 0 0 60px 0;
    text-align: center;
}

.expand2 h6 {
    position: relative;
    font-size: 14px;
    background-color: var(--bg-color);
    padding: 4px 25px;
    margin-top: 10px;
    color: #fff;
    display: inline-block;
    line-height: 30px !important;
    text-transform: uppercase;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.expand2 h6:after {
    content: '\f103';
    font-family: 'FontAwesome';
    margin-left: 5px;
    font-size: 14px !important;
    color: #fff;
    display: inline-block;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.expand2 h6.active {
    background-color: var(--bg-hover);
    margin-bottom: 10px !important;
}

.expand2 h6.active:after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4/90);
}

.expand2 h6:hover {
    cursor: pointer;
    background-color: var(--bg-hover);
}

/* Site Branding
----------------------------------------------------------------------------------------------------*/

.se_siteBranding {
    padding: 15px 0 9px 0;
}

.se_siteBranding img {
    max-width: 100%;
    height: auto;
}

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

.wrapper {
    width: 100%;
    position: relative;
}

.le-logged-in .page-wrapper {
    position: relative;
    top: 40px;
}

.container {
    padding: 0 25px;
}

/* Header
----------------------------------------------------------------------------------------------------*/
.header-wrap {
    width: 100%;
    z-index: 300;
    padding: 0;
    background-color: #fff;
}

.header {
    padding: 0 20px;
}

.header-top {
    background-color: var(--bg-hover);
    padding: 17.5px 0;
}

/* Inside Menu
----------------------------------------------------------------------------------------------------*/
.InsideMenu {
    display: block;
    text-align: center;
}

.InsideMenu ul {
    margin: 0;
    padding: 0;
}

.InsideMenu li {
    position: relative;
    list-style-type: none;
    text-decoration: none;
}

.InsideMenu ul.le_menu_level_0 {
    margin: 0;
    padding: 0;
}

.InsideMenu li.le_menuitem_level_0 {
    display: inline-block;
    padding: 0;
}

.InsideMenu li.le_menuitem_level_0 a {
    display: inline-block;
    position: relative;
    font-family: acumin-pro, sans-serif;
    padding: 0 15px 0 15px;
    font-size: 16px;
    color: var(--bg-main);
    border-right: 1px solid #000 !important;
    text-transform: uppercase;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}

.InsideMenu li.le_menuitem_level_0:last-of-type a {
    border-right: 0 solid #000 !important;
    padding-right: 0 !important;
}

.InsideMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-hover);
}

/* Navigation (menu-bar)
----------------------------------------------------------------------------------------------------*/

.menu-bar {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: all .2s ease;
}

.navigation {
    position: relative;
    top: 4px;
}

.navicon {
    position: relative;
    line-height: 45px;
    height: 45px;
    padding: 0;
    text-transform: uppercase;
    background: transparent !important;
    margin-top: 15px;
}

.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    top: 0;
    right: 0px;
    font-size: 25px;
    color: var(--bg-hover);
}

.OpenMobileMenu .navicon:after {
    color: var(--bg-hover);
    content: '\f00d';
    font-size: 25px;
    font-family: 'FontAwesome';
}

.navicon:hover {
    cursor: pointer;
}

.menu-bar {
    border-top: 1px solid #bfbfbf;
    background-color: #fff;
}

.MainMenu {
    display: block;
    text-align: right;
}

.MainMenu ul {
    margin: 0;
    padding: 0;
}

.MainMenu li {
    position: relative;
    list-style-type: none;
    text-decoration: none;
}

.MainMenu ul.le_menu_level_0 {
    margin: 0;
    padding: 0;
}

.MainMenu li.le_menuitem_level_0 {
    display: inline-block;
    padding: 15px 0;
}

.MainMenu li.le_menuitem_level_0 a {
    display: inline-block;
    position: relative;
    font-family: acumin-pro, sans-serif;
    padding: 0 15px 0 15px;
    font-size: 16px;
    color: var(--bg-main);
    text-transform: uppercase;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}

.MainMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-color);
}

.MainMenu .le_menu_level_1_container {
    position: absolute;
    left: 0;
    width: 250px !important;
    padding: 7px 0 0 0;
}

.MainMenu ul.le_menu_level_1 {
    position: relative;
    left: 0;
    display: none;
    margin: 0;
    background: #fff;
    text-align: left;
}

.MainMenu li.le_menuitem_level_0:hover ul.le_menu_level_1 {
    display: block;
}

.MainMenu li.le_menuitem_level_1 a {
    display: block;
    padding: 8px 10px !important;
    margin: 0;
    color: #000000;
    border-bottom: 0 !important;
    font-family: acumin-pro, sans-serif;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 200px;
}

.MainMenu li.le_menuitem_level_1 a:hover {
    background-color: var(--bg-color);
    color: #fff;
}

.MainMenu .le_menu_level_2_container {
    float: right;
    left: 100%;
    margin-top: -40px;
    padding: 0;
}

.MainMenu ul.le_menu_level_2 {
    position: absolute;
    right: 0;
    z-index: 10;
    display: none;
    border: 1px solid #e9eaea;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: left;
}

.MainMenu li.le_menuitem_level_1:hover ul.le_menu_level_2 {
    display: block;
}

.MainMenu .dropdown ul {
    display: block;
}

/* ---- Separate Mobile Menu ---- */
.primary-mobile-menu {
    /*visibility: hidden;*/
    position: absolute;
    position: fixed;
    top: 0;
    right: -240px;
    height: 100%;
    z-index: 1000;
    width: 240px;
    padding: 15px;
    overflow-x: none;
    overflow-y: auto;
    font-size: 15px;
    background-color: inherit;
    border-left: 1px solid rgba(0, 0, 0, .07);
    -webkit-box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, .05);
    -moz-box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, .05);
    box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, .05);
    transition: right .3s ease;
}

.OpenMobileMenu .primary-mobile-menu {
    /*visibility: visible;*/
    right: 0;
}

.le-logged-in .primary-mobile-menu {
    top: 40px;
}

.primary-mobile-menu ul.le_menu_level_0 {
    margin: 0;
    padding: 0px 0 10px 0;
    text-align: left;
}

.primary-mobile-menu li {
    list-style-type: none;
    text-decoration: none;
}

.primary-mobile-menu .le_menu_level_container {
    position: relative;
}

.primary-mobile-menu li.le_menuitem_level_0 a {
    display: block;
    padding: .5em 0 .5em 0;
    font-family: acumin-pro, sans-serif;
    color: var(--bg-main);
    font-size: 18px !important;
    line-height: 1em;
    text-decoration: none;
    text-transform: uppercase;
    word-break: break-word;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

.primary-mobile-menu li.le_menuitem_level_0.dropdown>a {
    border-bottom: 0;
    color: var(--bg-color);
}


.primary-mobile-menu ul.le_menu_level_1 {
    margin: 0;
    padding: 0;
    height: auto;
}

.primary-mobile-menu li.le_menuitem_level_1 a {
    display: block;
    padding: 7px 5px 7px 5px;
    margin-left: 12px;
    font-family: acumin-pro, sans-serif;
    color: var(--bg-main);
    font-size: 15px !important;
    line-height: 1em;
    text-decoration: none;
    text-transform: none;
    background-image: none;
    text-transform: uppercase;
}

.primary-mobile-menu li.le_menuitem_level_1 a:hover {
    color: var(--bg-color);
}

.primary-mobile-menu ul.le_menu_level_2 {
    margin: 0;
    padding: 0;
}

.primary-mobile-menu li.le_menuitem_level_2 a {
    padding: 7px 5px 7px 5px;
    margin-left: 24px;
}

/*Push Wrapper when Mobile Menu is open*/
@media (max-width: 767px) {

    .primary-mobile-menu .le_menu_level_1_container,
    .menu-bar ul.le_menu_level_2 {
        background: transparent !important;
    }

    .OpenMobileMenu .wrapper {
        right: 240px;
    }

    .OpenMobileMenu .menu-bar {
        right: 240px;
        left: initial;
    }
}

.primary-mobile-menu li.le_menuitem_level_0.hasChild>a:after {
    display: inline-block;
    position: relative;
    left: 6px;
    top: -2px;
    content: "+";
    color: #ffffff;
    height: 0;
    width: 0;
}

.primary-mobile-menu li.hasChild>a.active-mobile-parent:after {
    content: "-";
}

.primary-mobile-menu li.le_menuitem_level_0.hasChild ul.le_menu_level_1 {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

.primary-mobile-menu li.le_menuitem_level_0.hasChild ul.le_menu_level_1.open-mobile-sub {
    height: auto;
    visibility: visible;
    opacity: 1;
}

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

.FooterMenu {
    display: block;
    padding-top: 10px;
}

.FooterMenu ul {
    margin: 0;
    padding: 0;
}

.FooterMenu li {
    position: relative;
    list-style-type: none;
    text-decoration: none;
}

.FooterMenu ul.le_menu_level_0 {
    margin: 0;
    padding: 0;
}

.FooterMenu li.le_menuitem_level_0 {
    display: inline-block;
}

.FooterMenu li.le_menuitem_level_0 a {
    display: inline-block;
    position: relative;
    font-family: acumin-pro, sans-serif;
    padding: 0 15px 0 15px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}

.FooterMenu li.le_menuitem_level_0 a:hover {
    color: var(--bg-color);
}

/* Footer
----------------------------------------------------------------------------------------------------*/
.footer-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    height: 50px;
}

.footer {
    background-color: var(--bg-color);
    padding: 40px 0 !important;
}

.footer p {
    color: #ffffff;
    font-size: 14px;
}

.footer p a {
    color: #cccccc;
}

.footer p a:hover {
    color: var(--bg-color);
}

.se_social {
    margin: 8px 0 20px 0;
    text-align: center;
}

.se_social a {
    color: #ffffff !important;
    margin: 0 3px;
    font-size: 18px;
    background-color: #929394;
    width: 30px;
    height: 30px;
    padding: 6px 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.se_social a:hover {
    color: var(--bg-color) !important;
}

.footer-bottom {
    background-color: var(--bg-hover);
    padding: 10px 0;
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */

@media (max-width: 767px) {
    .footer {
        padding: 60px 0 20px 0 !important;
    }

    .FooterMenu {
        text-align: center;
    }

    .se_social {
        margin-top: 20px;
    }

    .uppertext p {
        top: 20%;
        padding: 25px 20px;
        font-size: 30px;
        line-height: 40px;
    }

    .uppertext2 {
        position: relative;
        background: var(--bg-hover);
        padding: 40px 20px 50px 20px;
        top: -6px;
    }

    .uppertext2 h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .uppertext3 {
        position: relative;
        background: #000;
        padding: 40px 20px 50px 20px;
        top: -6px;
    }

    .uppertext3 h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .text-block {
        text-align: center;
        padding-bottom: 25px;
    }

    .mobile-center {
        text-align: center;
    }

    .footer {
        text-align: center;
    }

    .footer-form {
        margin-top: 20px;
    }

    .footer-form input[type="submit"] {
        display: block !important;
        width: 100% !important;
    }

    .header-top {
        padding: 5px 0;
    }

    .graybox {
        padding: 20px 20px 30px 20px;
    }

    .seFormButton,
    .wrapper input[type="submit"].seFormButton {
        position: relative !important;
        top: -30px !important;
    }

    .InsideMenu li.le_menuitem_level_0 a {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        border-right: 0 solid #000 !important;
    }
}

@media (min-width: 768px) {
    .navicon {
        display: none;
    }

    .MainMenu li.le_menuitem_level_0 a {
        padding: 0 10px 0 10px;
        font-size: 12px;
    }

    .Menu1 a {
        background-color: var(--bg-color);
        color: #fff !important;
        padding: 8px 10px !important;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        margin-left: 25px !important;
    }

    .Menu1 a:hover {
        background-color: var(--bg-hover);
    }

    .text-block {
        text-align: right;
        padding-top: 25px;
    }

    .book-form input[type="text"],
    .book-form input[type="email"],
    .book-form input[type="password"],
    .book-form textarea {
        margin-bottom: -22px !important;
        height: 40px;
    }

    .ctas {
        padding: 0 20%;
    }

    .footer-form input[type="text"],
    .footer-form input[type="email"],
    .footer-form input[type="password"],
    .footer-form textarea {
        margin-bottom: -23px;
        max-width: 150px;
        width: 150px;
    }

    .le_section-instagram-area {
        padding-top: 75px;
    }

    .InsideMenu li.le_menuitem_level_0 a {
        padding: 0 20px;
    }

    .uppertext1,
    .uppertext2,
    .uppertext3 {
        top: 15%;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .MainMenu {
        padding-top: 10px;
    }

    .MainMenu li.le_menuitem_level_0 a {
        padding: 0 20px 0 20px;
        font-size: 13px;
    }

    .row-same-height {
        display: table;
        width: 100%;
        margin: 0;
    }

    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"] {
        display: table-cell;
        float: none;
        vertical-align: middle;
        padding: 0;
        margin: 0;
    }

    .row-same-height.sh-va-middle [class^="col-"],
    .row-same-height.sh-va-middle [class*="col-"] {
        vertical-align: middle;
    }

    .row-same-height.sh-va-bottom [class^="col-"],
    .row-same-height.sh-va-bottom [class*="col-"] {
        vertical-align: middle;
    }

    .footer-form input[type="text"],
    .footer-form input[type="email"],
    .footer-form input[type="password"],
    .footer-form textarea {
        max-width: 200px;
        width: 200px;
    }

    .cta-pic {
        padding: 0 30px;
    }

    .text-block {
        padding-top: 110px;
    }

    .textblock {
        padding: 0 15% 0 5%;
    }

    .uppertext1,
    .uppertext2,
    .uppertext3 {
        top: 37%;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .MainMenu li.le_menuitem_level_0 a {
        padding: 0 23px 0 23px;
        font-size: 11px;
    }

    .list-icons {
        padding: 0 20%;
    }

    .wrapper {
        padding: 0 5%;
    }
}

/* Clear
----------------------------------------------------------------------------------------------------*/

/* Clear Floated Elements */
/* http://sonspring.com/journal/clearing-floats */
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.le_metro_silver_button {
    display: inline-block;
    min-width: 75px;
}

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

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

.expander:hover {
    background: #3e63b8;
}

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

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

.expanded-view .expander {
    left: 0;
}

.expanded-view .expander:before {
    content: '\f066';
}

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

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

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

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

/* ------ Edit Region ------- */
.le_region_overlay_container_inside {
    position: relative;
    height: 28px;
    line-height: 28px;
    padding: 0 0 0 5px;
}

.edit-region-icon {
    color: white;
    background: #537fbc;
    font-size: 16px;
    margin: 0;
    right: 0;
    height: 28px;
    padding-left: 3px;
    line-height: 29px;
    width: 30px;
    text-align: center;
    top: 0;
    position: absolute;
    cursor: pointer;
}

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

/*---------------Hiding Style Editor (for use with Premium sites with Regions) START-----------*/
.aurora_sidebar_menu_item aurora_panel-group-divider {
    display: none !important;
}

.style-settings-label {
    display: none !important;
}

#aurora_background-options,
#aurora_color-options,
#aurora_typography-options {
    display: none !important;
}

.aurora_preset-wrapper {
    display: none !important;
}

.aurora_side_bar_label {
    display: none !important;
}

.aurora_side_bar_label:first-of-type {
    display: block !important;
}

/*----------Hiding Style Editor  (for use with Premium sites with Regions) END-------*/
#aurora-image-element-form .modal-footer {
    margin-top: 70px !important;
}

.le-logged-in .footer-bottom {
    margin-bottom: 30px !important;
}

.le-edit-open .wrapper {
    padding: 0;
}

/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
#le_section-instagram-area {}

.aurora_about #le_section-three {}

.aurora_about #le_section-three-area1 {
    padding-right: 10%;
    padding-left: 10%;
}

.aurora_about #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_about #le_section-two-area3 {
    padding-left: 25px;
}

.aurora_about #le_section-two-box {
    background-color: rgb(220, 219, 224);
    padding-top: 75px;
    padding-right: 50px;
    padding-bottom: 75px;
    padding-left: 50px;
}

.aurora_alamo-heights #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_alamo-heights #le_section-four {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_alamo-heights #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_alamo-heights #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_alamo-heights #le_section-two {
    padding-top: 75px;
    padding-bottom: 20px;
}

.aurora_austin-anderson-mill #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_austin-anderson-mill #le_section-five {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-anderson-mill #le_section-four {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-anderson-mill #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-anderson-mill #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-anderson-mill #le_section-two {
    padding-top: 75px;
    padding-bottom: 20px;
}

.aurora_austin-pecan-park #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_austin-pecan-park #le_section-five {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park #le_section-four {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park #le_section-two {
    padding-top: 75px;
    padding-bottom: 20px;
}

.aurora_austin-pecan-park-test #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_austin-pecan-park-test #le_section-five {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park-test #le_section-four {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park-test #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park-test #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 60px;
    padding-bottom: 75px;
}

.aurora_austin-pecan-park-test #le_section-two {
    padding-top: 75px;
    padding-bottom: 20px;
}

.aurora_bulverde #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_bulverde #le_section-four {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_bulverde #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_bulverde #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_bulverde #le_section-two {
    padding-top: 75px;
    padding-bottom: 20px;
}

.aurora_careers #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_careers #le_section-five {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_careers #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_careers #le_section-one {
    background-color: rgb(231, 232, 236);
}

.aurora_careers #le_section-one-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/group-photo-dog-park.jpeg);
    background-size: cover;
    background-position: center center;
    padding-top: 450px;
}

.aurora_careers #le_section-seven {
    padding-top: 75px;
    padding-bottom: 0px;
}

.aurora_careers #le_section-seven-area1 {}

.aurora_careers #le_section-six {
    background-color: rgb(232, 231, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_careers #le_section-three {
    background-color: rgb(213, 234, 227);
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_careers #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_careers #le_section-two-area3 {
    padding-right: 25px;
    padding-left: 25px;
}

.aurora_continuing-education #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_corporate-team #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_corporate-team #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_corporate-team #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_corporate-team #le_section-two {
    padding-top: 75px;
    padding-bottom: 20px;
}

.aurora_gift-cards #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_gift-cards #le_section-eight {
    padding-top: 75px;
}

.aurora_gift-cards #le_section-four {}

.aurora_gift-cards #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_gift-cards #le_section-three-area5 {
    padding-top: 1px;
}

.aurora_gift-cards #le_section-two {
    padding-top: 50px;
    padding-bottom: 50px;
}

.aurora_home #le_section-eight-area1 {}

.aurora_home #le_section-eight-area2 {}

.aurora_home #le_section-eight-area3 {}

.aurora_home #le_section-eight-area4 {}

.aurora_home #le_section-five {
    background-color: rgb(213, 234, 227);
    padding-top: 75px;
    padding-bottom: 60px;
}

.aurora_home #le_section-four {
    padding-top: 100px;
    padding-bottom: 100px;
}

.aurora_home #le_section-four-area3 {}

.aurora_home #le_section-four-area4 {}

.aurora_home #le_section-instagram {}

.aurora_home #le_section-nine {}

.aurora_home #le_section-seven {
    padding-top: 75px;
    padding-bottom: 100px;
}

.aurora_home #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_home #le_section-three {
    background-color: rgb(232, 231, 236);
    margin-top: 35px;
    padding-top: 50px;
    padding-bottom: 25px;
}

.aurora_home #le_section-two {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/oakhavenmassage3/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_home #le_section-two-bottom {
    background-color: rgb(61, 93, 80);
    padding-top: 40px;
    padding-bottom: 50px;
}

.aurora_home2 #le_section-five {
    background-color: rgb(213, 234, 227);
    padding-top: 200px;
    padding-bottom: 100px;
}

.aurora_home2 #le_section-four {
    padding-top: 200px;
    padding-bottom: 100px;
}

.aurora_home2 #le_section-nine {
    padding-top: 75px;
}

.aurora_home2 #le_section-seven {
    padding-bottom: 100px;
}

.aurora_home2 #le_section-six {
    padding-top: 100px;
    padding-bottom: 75px;
}

.aurora_home2 #le_section-three {
    background-color: rgb(232, 231, 236);
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.aurora_home2 #le_section-two {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_locations #le_arrow-bar,
#le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/line-borders.svg);
    background-size: cover;
    background-position: top center;
    padding-top: 50px;
}

.aurora_locations #le_section-eight {
    padding-top: 75px;
}

.aurora_locations #le_section-four {}

.aurora_locations #le_section-three {
    background-color: rgb(231, 232, 236);
    padding-top: 75px;
    padding-bottom: 75px;
}

.aurora_locations #le_section-three-area20 {
    padding-top: 1px;
}

.aurora_locations #le_section-three-area5 {
    padding-top: 1px;
}

.aurora_locations #le_section-two {
    padding-top: 50px;
    padding-bottom: 50px;
}

.aurora_pricing #le_arrow-bar {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com%