@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

body {
    margin: 0 auto;
    color: #000;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
	line-height: 1.4;
	font-size: 16px;
	font-weight: 300;
}


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

a {
	color: #5b5b5a;
	text-decoration: none;
}
a:hover {
    /*color: inherit;*/
	text-decoration: none;
	color: #000;
}
a img {
	border: 0;
}
p {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	font-weight: 300;
}
ul,ol {
    margin-top:0;
}

[le_content_type="text"].le_content li {
    margin: .35em 0;
}

h1, h1 a, .title1, .title1 a {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 300;
	letter-spacing: 3px;
	margin: 0;
}
h2, h2 a, .title2, .title2 a {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 26px;
	font-weight: 300;
	margin: 0;
}
h3, h3 a, .title3, .title3 a {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	margin: 0;
	font-weight: 300;
}
h4, h4 a, .title4, .title4 a {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	margin: 0;
}
h5, h5 a, .title5, .title5 a {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	margin: 0;
}
h6, h6 a, .title6, .title6 a {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	margin: 0;
}
.title1,.title1 a,.title2,.title2 a,.title3,.title3 a,.title4,.title4 a,.title5,.title5 a,.title6,.title6 a {
    display:inline-block;
}

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

/* make sure font awesome icons that are links do not have underline on hover */
.fa a:hover, a.fa:hover {
    text-decoration: none;
}

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

.le_form {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
}
.le_form_name {
    color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 10px 0;
    text-transform: uppercase;
}
.wrapper-inner input[type="submit"] {
	padding: 5px 15px;
	border: 0px solid transparent;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
	border-radius: 0px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
	transition: all .2s ease;
}
.wrapper-inner input[type="submit"]:hover {
	cursor: pointer;
}
.wrapper-inner input[type="text"], .wrapper-inner input[type="password"], .wrapper-inner textarea, #search_form_value {
	padding: 4px 5px;
	background-color: #fff;
	border: 1px solid #dedede;
	border-radius: 0px;
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
}

.wrapper-inner #search_form_button {
    padding: 8px 15px 9px 15px;
    position: relative;
    top: -1px;
}


/* -- Bootstrap form tweaks -- */
.form-control {
}
.form-group {
	margin-bottom: 10px;
	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;
    letter-spacing: .14em;
}
:-moz-placeholder { /* older Firefox*/
     font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
}
::-moz-placeholder { /* Firefox 19+ */ 
    font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
} 
:-ms-input-placeholder { 
    font-size: 13px; 
    color: #676767;
    letter-spacing: .14em;
}


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

@media all and (min-width: 768px) {
    .form-inline .form-control {
        max-width: 150px;
    }
}

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

/* 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;
}
.locations .le_plugin_gallery {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

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

hr {
    border: 0;
    height: 1px;
}
.top-section {
    padding: 40px 50px 25px 50px;
    text-align: right;
}
.circle img {
    border-radius: 50%;
    width: 50px;
    height: auto;
}
.big-circle {
    text-align: center;
}
.big-circle img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 10px;
}
.big-circle:hover img {
    transform: scale(1.1);
    box-shadow: 0px 0px 0px 1px #fff inset;
    border: 2px solid #f57be7;
    border-radius: 50%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.big-circle h2 {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
}
.big-circle h2 a {
    opacity: 0;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
}
.big-circle:hover h2 a {
    opacity: 1;
}
.creators {
    padding-top: 15px;
}
.creators p:after {
    position: absolute;
    content: '';
    width: 180px;
    height: 2px;
    left: 95px;
    top: 22%;
    background-color: #000;
}
.creators p {
    background-color: #ffffff;
    color: #000;
    display: inline-block;
    position: relative;
    z-index: 2;
}
.circle-text td {
    position: relative;
}
.circle-text h6 a {
    opacity: 0;
    font-size: 9px;
    font-weight: 300;
    position: absolute;
    margin: -20px auto 0 auto;
    left: 0;
    right: 0;
}
.circle-text:hover h6 a {
    opacity: 1 !important;
}
.le-edit-open .menu-text {
    margin-left: 200px !important;
}
.menu-text {
    text-align: right;
    bottom: 30px;
    left: 0;
    position: fixed;
    width: 200px;
}
.menu-text a {
    color: #000;
    font-size: 15px;
    line-height: 30px;
}
.menu-text a:hover {
    color: #5b5b5b;
}
.ctabox {
    position: relative;
    margin-bottom: 20px;
    background-color: #000;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.ctabox img {
    width: 100%;
    height: auto;
    opacity: .7;
}
.ctabox p {
    opacity: 0;
}
.ctabox:hover p {
    opacity: 1;
}
.ctabox:hover img {
    opacity: .5;
}
.ctabox:hover .ctatext {
    margin-top: -40px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.ctabox:hover .ctatext2 {
    margin-top: -20px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.ctabox:after .ctatext, .ctabox:after .ctatext2 {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.ctatext, .ctatext2 {
    position: absolute;
    top: 35%;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}
.ctatext h2, .ctatext2 h2 {
    color: #fff;
}
.ctatext p, .ctatext p a, .ctatext2 p, .ctatext2 p a {
    color: #fff;
}
.ctatext p a:hover, .ctatext2 p a:hover {
    color: #9fa09f;
}
.greentext h1, .greentext h2, .greentext h3, .greentext h4, .greentext h5, .greentext h6 {
    color: #409019;
}
.greentext h1 a, .greentext h2 a, .greentext h3 a, .greentext h4 a, .greentext h5 a, .greentext h6 a{
    color: #409019;
}
.pinktext h1, .pinktext h2, .pinktext h3, .pinktext h4, .pinktext h5, .pinktext h6 {
    color: #f57be7;
}
.pinktext h1 a, .pinktext h2 a, .pinktext h3 a, .pinktext h4 a, .pinktext h5 a, .pinktext h6 a {
    color: #f57be7;
}
.redtext h1, .redtext h2, .redtext h3, .redtext h4, .redtext h5, .redtext h6 {
    color: #D40808;
}
.redtext h1 a, .redtext h2 a, .redtext h3 a, .redtext h4 a, .redtext h5 a, .redtext h6 a {
    color: #D40808;
}
.tealtext h1, .tealtext h2, .tealtext h3, .tealtext h4, .tealtext h5, .tealtext h6 {
    color: #168693;
}
.tealtext h1 a, .tealtext h2 a, .tealtext h3 a, .tealtext h4 a, .tealtext h5 a, .tealtext h6 a {
    color: #168693;
}
.limetext h1, .limetext h2, .limetext h3, .limetext h4, .limetext h5, .limetext h6 {
    color: #a8f881;
}
.limetext h1 a, .limetext h2 a, .limetext h3 a, .limetext h4 a, .limetext h5 a, .limetext h6 a {
    color: #a8f881;
}
.orangetext h1, .orangetext h2, .orangetext h3, .orangetext h4, .orangetext h5, .orangetext h6 {
    color: #e5b313;
}
.orangetext h1 a, .orangetext h2 a, .orangetext h3 a, .orangetext h4 a, .orangetext h5 a, .orangetext h6 a {
    color: #e5b313;
}
.magentatext h1, .magentatext h2, .magentatext h3, .magentatext h4, .magentatext h5, .magentatext h6 {
    color: #6E1087;
}
.magentatext h1 a, .magentatext h2 a, .magentatext h3 a, .magentatext h4 a, .magentatext h5 a, .magentatext h6 a {
    color: #6E1087;
}
.smalltext h1 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 15px;
}
.left-slider img {
    max-width: 100%;
    height: auto;
}
.right-slider img {
    max-width: 100%;
    height: auto;
}
.menubox {
    border-top: 1px solid #303f6c;
    border-bottom: 1px solid #303f6c;
    border-right: 1px solid #303f6c;
    padding: 40px 30px 30px 0;
}
.menubox h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    color: #303f6c;
}
.menubox h2 {
    font-size: 18px;
    line-height: 25px;
    font-weight: bold;
    color: #303f6c;
    border-bottom: 1px solid #dedee0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.menubox h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #303f6c;
}
.menubox p {
    color: #303f6c;
}
.bluetext p {
    color: #303f6c;
}
.work h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
}
.testimonials {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #d3d3d3;
}
.testimonials:before {
    content: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/five-gold-stars.svg);
    width: 130px !important;
    height: auto;
    position: relative;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto 10px auto;
}
.graybox {
    background-color: #e5e5e5;
    margin: 10px 0;
    padding: 30px 0;
    text-align: center;
}
.graybox h3 {
    margin-bottom: 10px;
}

/* InsideMenu
----------------------------------------------------------------------------------------------------*/

.InsideMenu {
    display: block;
    padding-top: 30px;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #d3d3d3;
}
.InsideMenu ul {
    margin: 0;
    padding: 0;
}
.InsideMenu ul.le_menu_level_0 {
    margin: 0;
}
.InsideMenu li {
    position: relative;
	list-style-type: none;
	text-decoration: none;
}
.InsideMenu .le_menu_level_container {
	position: relative;
}
.InsideMenu ul.le_menu_level_0 {
    margin: 0;
	padding: 0;
}
.InsideMenu li.le_menuitem_level_0 {
    display: inline-block;
}
.InsideMenu li.le_menuitem_level_0 a {
	display: inline-block;
    padding: 0 12px;
    margin: 0 5px;
    color: #000;
	font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.InsideMenu li.le_menuitem_level_0 a:hover {
	color: #D40808;
}

/* Buttons
----------------------------------------------------------------------------------------------------*/
.button a, a.button ,.mb_schedule .le_metro_silver_button {
    position: relative;
    display: inline-block !important;
    margin-bottom: 10px !important;
    padding: 4px 5px;
    background-color: #31B2F0;
    color: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius:0;
    border-radius: 0;
    text-decoration:none;
    font-weight:300;
    box-shadow:none;
    background:#31B2F0;
    border:none;
    color:#fff;
    text-shadow:none;
    text-transform: uppercase;
}
.button a:hover, a:hover.button,.mb_schedule .le_metro_silver_button:hover {
    color: #ffffff;
    background-color:#313882;
}
.se_button a, a.se_button {
    font-family: 'Open Sans', sans-serif;
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	padding: 10px 15px;
	line-height: 1em;
	border:0px solid transparent;
	font-weight:400;
}
.se_button a:hover, a:hover.se_button {
    text-decoration: none;
}
.se_button.button1 a, a.se_button.button1 {
    background: rgba(0,0,0,0);
    border: 1px solid #000;
    color: #000;
    margin-top: 10px;
}
.se_button.button1 a:hover, a:hover.se_button.button1 {
    background: rgba(0,0,0,1);
    color: #fff;
}
.redbutton .se_button.button1 a, .redbutton a.se_button.button1 {
    background-color: #D40808 !important;
    border: 0 !important;
    color: #fff !important;
}
.redbutton .se_button.button1 a:hover, .redbutton a:hover.se_button.button1 {
    background-color: #000 !important;
}
.magentabutton .se_button.button1 a, .magentabutton a.se_button.button1 {
    background-color: #6E1087 !important;
    border: 0 !important;
    color: #fff !important;
}
.magentabutton .se_button.button1 a:hover, .magentabutton a:hover.se_button.button1 {
    background-color: #000 !important;
}
.tealbutton .se_button.button1 a, .tealbutton a.se_button.button1 {
    background-color: #168693 !important;
    border: 0 !important;
    color: #fff !important;
}
.tealbutton .se_button.button1 a:hover, .tealbutton a:hover.se_button.button1 {
    background-color: #000 !important;
}
.greenbutton .se_button.button1 a, .greenbutton a.se_button.button1 {
    background-color: #409019 !important;
    border: 0 !important;
    color: #fff !important;
}
.greenbutton .se_button.button1 a:hover, .greenbutton a:hover.se_button.button1 {
    background-color: #000 !important;
}
.se_button.button2 a, a.se_button.button2 {
    padding: 5px 15px;
    background: rgba(255,255,255,0);
    border: 1px solid #fff;
    color: #fff;
    margin-top: 10px;
}
.se_button.button2 a:hover, a:hover.se_button.button2 {
    background: rgba(255,255,255,1);
    color: #000;
}
.se_button.fullwidthButton a, a.se_button.fullwidthButton{
    display: block;
    text-align: center;
}
.se_button.largeButton a, a.se_button.largeButton {
	padding: 25px 35px;
}

.seFormButton, .wrapper input[type="submit"].seFormButton {
    padding: 8px 15px 9px 15px;
    font-family: "Droid Sans",sans-serif;
    font-style: italic;
}

/* Read More Tabs
----------------------------------------------------------------------------------------------------*/

.morecontent span {
    display: none;
}
.morelink {
    display: inline-block;
    font-size: 14px;
}

/* Expand
----------------------------------------------------------------------------------------------------*/

.expand {
    margin-bottom: 10px;
}
.expand h2 {
    position: relative; 
    text-transform: uppercase;
}
.expand h3 {
    position: relative; 
    color: var(--bg-main);
    text-transform: uppercase;
}
.expand h2:after, .expand h3:after {
    content: '\f078';
    font-family: 'FontAwesome';
    margin: 0 0 0 7px;
    font-size: 8px !important;
    position: absolute;
    color: var(--bg-main);
    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 h2.active, .expand h3.active {
    color: var(--bg-color);
}
.expand h2.active:after, .expand h3.active:after {
    content: '-';
}
.expand h2:hover, .expand h3:hover {
    cursor: pointer;
    color: var(--bg-color);
}

/* Expand2
----------------------------------------------------------------------------------------------------*/
.expand2 {
    position: relative;
    margin: 0 0 10px 0;
}
.expand2 .title1 {
    font-size: 16px;
    color: var(--bg-main);
    font-weight: 400;
    float: right;
    margin: -10px 10px 0 0
}
.expand2 h3 {
    position: relative; 
    font-size: 16px;
    color: var(--bg-main);
    font-weight: 400;
    padding: 10px 15px 10px 0;
    line-height: 25px !important;
    text-transform: uppercase;
    border-bottom: 1px solid #c9c7c7;
}
.expand2 h3:before {
    content: '\f103';
    font-family: 'FontAwesome';
    text-align: right;
    right: 0;
    float: right;
    font-size: 18px !important;
    margin-top: -7px;
    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;
}
.expand2 h3.active {
    /*color: var(--bg-color);*/
    margin-bottom: 10px !important;
}
.expand2 h3.active:before {
    -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 h3:hover {
    cursor: pointer;
    color: var(--bg-color);
}
/* Service
----------------------------------------------------------------------------------------------------*/

.service ul {
    display: flex;
    min-height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
}

.service li {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 0;
    background: var(--bg-color);
    cursor: pointer;
    transition: all 0.5s ease;
    border: 1px solid #F4F4F4;
}
.service li:hover {
    background: var(--bg-hover);
}
.service li.active {
    flex: 5;
    cursor: default;
}
.service li h2 {
    color: #fff;
    text-transform: uppercase;
}
.service li.active h2 {
    color: #fff;
}
.service li.active .section-content {
    flex: 4;
    display: inline-block;
    transform: scaleX(1);
    color: var(--bg-main);
    padding: 10px 20px;
}
.service li .section-title {
    flex: 1;
    display: flex;
    align-items: center;
    width: 25%;
    margin: 0;
    padding: 0;
    text-align: center;
    color: white;
}
.service li .section-title h2 {
    margin: 0;
    transform: rotate(-90deg);
    white-space: nowrap;
    letter-spacing: 2px;
}
.service li .section-content {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    display: none;
    transition: all 0.25s 0.1s ease-out;
}
.section-title1 {
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketnewyork/woman-blonde-big-curl-highlights.jpeg') center center no-repeat;
    background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
.section-title1:hover {
    background: #000;
}
.section-title2 {
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketnewyork/mens-hair.jpg') center center no-repeat;
    background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
.section-title3 {
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketnewyork/woman-golden-brown-curls.jpg') center center no-repeat;
    background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
.section-title4 {
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketnewyork/platinum-long-blonde-hair-woman.jpg') center center no-repeat;
    background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
@media (max-width: 991px) {
    .service {
        display: none;
    }
}
@media (min-width: 992px) {
    .mobile-service {
        display: none;
    }
}
.le-edit-open .mobile-service {
    display: block;
}
.mobile-service ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
}

/*.mobile-service li {*/
/*    flex: 1;*/
/*    display: flex;*/
/*    align-items: stretch;*/
/*    padding: 0;*/
/*    background: var(--bg-color);*/
/*    cursor: pointer;*/
/*    transition: all 0.5s ease;*/
/*}*/
.mobile-service li:hover {
    background: var(--bg-hover);
}
.mobile-service li.active {
    background: #fff;
    cursor: default;
}
.mobile-service li h2 {
    color: #fff;
    text-transform: uppercase;
}
.mobile-service li.active h2 {
    color: #fff;
}
.mobile-service li.active .section-content {
    display: block;
    color: var(--bg-main);
    padding: 20px;
    text-align: left;
}
.mobile-service li .section-title {
    text-align: center;
    margin-bottom: 10px;
}
.mobile-service li .section-title h2 {
    letter-spacing: 2px;
    margin: 0;
    padding: 15px 0;
}
.mobile-service li .section-content {
    text-align: center;
    display: none;
    transition: all 0.25s 0.1s ease-out;
}

/* Wrapper / Container
----------------------------------------------------------------------------------------------------*/
.wrapper {
    width: 100%;
    position: relative;
    overflow:hidden;
}
.le-logged-in .wrapper.page-wrapper {
    top: 40px;
}
.OpenMobileMenu .wrapper-inner {
    /*padding-left: 200px;*/
}
.se_WrapperContent {
    padding-top: 40px;
    padding-bottom: 40px;
}
.container {
    width: auto !important;
    max-width: 1170px;
    padding: 0 40px;
}
@media (min-width: 769px) { 
    .wrapper-inner {
        padding-left: 200px;
    }
}

/* Header
----------------------------------------------------------------------------------------------------*/
.header {
	padding: 0;
	background-color: #d83d44;
}
.header p, .header a, .header h1, .header h2, .header h3, .header h4, .header h5, .header h6 {
    color: #ffffff;
}
.se_header {
    position: relative;
}
.se_siteBranding2 {
    text-align: center;
    left: 0;
    right: 0;
    z-index: 2;
}
.se_siteBranding2 img {
    width: 70px;
    height: auto;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}
.m-slider {
    text-align: center;
    left: 0;
    right: 0;
    position: relative;
    margin: -30px auto 0 auto;
    z-index: 2;
    bottom: -30px;
}
.m-slider img {
    text-align: center;
    left: 0;
    right: 0;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

/* Navigation (se_menu)
----------------------------------------------------------------------------------------------------*/

.mobile-header-wrap.se_menu {
    padding: 0 20px;
}
.navicon {
    display: block;
    position: absolute;
    z-index: 10;
    right: 20px;
    top: 10px;
    line-height: 45px;
    height: 45px;
    padding: 0px 35px;
    text-transform: uppercase;
}
.navicon:after {
    position: absolute;
    content: '\f0c9';
    font-family: 'FontAwesome';
    top: 0;
    right: 0;
    font-size: 30px;
}
.navicon:hover {
    cursor: pointer;
}
.OpenMobileMenu .navicon {
}
.le-logged-in.OpenMobileMenu .navicon {
}
#primaryMenu.se_menu {
    background-color: #fff;
    position: absolute;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100% !important;
    width: 200px;
    float: left;
    overflow-x: visible;
    padding: 40px 20px 25px 30px;
    transition: left .3s ease;
}
.menu-wrap {
    padding-left:0;
    margin-bottom: 20px;
}
.MainMenu {
    display: block;
    padding-top: 30px;
    width: 100%;
    text-align: right;
}
.MainMenu ul {
    margin: 0;
    padding: 0;
}

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

.MainMenu .le_menu_level_container {
	position: relative;
}

.MainMenu ul.le_menu_level_0 {
    margin: 0;
	padding: 0;
}
.MainMenu li.le_menuitem_level_0 {
    padding: 5px 0;
}

.MainMenu li.le_menuitem_level_0 a {
	display: block;
    padding: 2px 0;
    margin: 0;
    color: #000;
	font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 15px;
    word-break: break-word;
    text-decoration: none;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.MainMenu li.le_menuitem_level_0 a:hover {
	color: #323232;
}
.greenhover a:hover, .greenhover a.le_current_link {
    color: #409019 !important;
}
.redhover a:hover, .redhover a.le_current_link {
    color: #D40808 !important;
}
.yellowhover a:hover, .yellowhover a.le_current_link {
    color: #EFBB24 !important;
}
.tealhover a:hover, .tealhover a.le_current_link {
    color: #168693 !important;
}
.pinkhover a:hover, .pinkhover a.le_current_link {
    color: #f57be7 !important;
}
.pinkhover a:hover, .pinkhover a.le_current_link {
    color: #f57be7 !important;
}
.magentahover a:hover, .magentahover a.le_current_link {
    color: #6E1087 !important;
}
.orangehover a:hover, .orangehover a.le_current_link {
    color: #e5b313 !important;
}
.peachhover a:hover, .peachhover a.le_current_link {
    color: #faa380 !important;
}
.bluehover a:hover, .bluehover a.le_current_link {
    color: #20267D !important;
}

@media (min-width: 769px) { 
    .MainMenu .le_menu_level_1_container {
        position: absolute;
        left: 200px;
        margin-top: -35px;
        min-width: 180px;
    }
}

.le-edit-open #primaryMenu.se_menu, .le-design-open #primaryMenu.se_menu {
    left: 0 !important;
    position: relative !important;
}
.MainMenu ul.le_menu_level_1 {
	height: auto;
	position: relative;
	right: 0;
	z-index: 10;
	display: block;
    margin: 0;
	padding: 0;
	text-align: left;
}
@media (min-width: 769px) { 
    .MainMenu ul.le_menu_level_1 {
        display: none;
    }
    
    .MainMenu li.le_menuitem_level_0:hover ul.le_menu_level_1 {
    	display: block;
    }
}
.MainMenu li.le_menuitem_level_1 a {
	display: block;
	padding: 10px;
	margin: 0;
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;
}
.MainMenu li.le_menuitem_level_1 a:hover {
	color: #d83d44;
    background-image: none;
}

.MainMenu .le_menu_level_2_container {
    background-color: inherit;
    padding-left: 12px;
    font-size: .9em;
}
.MainMenu li.le_menuitem_level_1:hover .le_menu_level_2_container {
	display: block;
}
.MainMenu ul.le_menu_level_2 {
    background-color: inherit;
}
.MainMenu .dropdown ul {
    display: block;
}
  
    /* --- end Navigation (se_menu) - ----*/

@media (min-width: 769px) {
    .mobile-header-wrap.se_menu {
        display:none;
    }
    .MainMenu .le_menu_level_2_container {
    	position: absolute;
    	width: 100%;
    	z-index: 10;
    	left:100%;
    	margin-top: -35px;
    	padding: 0;
    	display: none;
    	font-size: 1em;
    }
    
}/* end 769 MQ */

@media (max-width: 768px) {
    #primaryMenu.se_menu {
        left: 0;
        width: 0;
        padding: 0;
        overflow:hidden;
    }
    .OpenMobileMenu #primaryMenu.se_menu {
        left: 0;
        width: 100%;
        padding: 20px;
        overflow-y:auto;
        overflow-x:visible;
        top: 58px;
    }
    .MainMenu {
        text-align: center;
    }
    .MainMenu li.le_menuitem_level_0 a {
        padding: 0 0 30px 0;
        font-size: 20px;
    }
    .mobile-only a {
        font-size: 16px !important;
        padding: 10px 0 0 0 !important;
    }
}


/* Main Content
----------------------------------------------------------------------------------------------------*/

.content {
	/*padding: 60px 0;*/
	padding: 0;

}
.contentInner {
    padding: 15px;
}

.htmlSlide {
    width: 100%!important;
    max-width: 100%!important;
}
.col-md-15 {
    width: 90%;
    float: left;
}
.col-md-16 {
    width: 10%;
    float: left;
}

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

.footer {
    background-color: #323232;
	padding: 30px 0;
    /*text-align: center;*/
}
.footer-base {
    padding-top:15px;
}
.footer p {
	font-size: 13px;
	color: #ffffff;
}

/* Media Queries
----------------------------------------------------------------------------------------------------*/
@media (max-width: 768px) { 
    .mobile-content {
        padding-top: 50px;
    }
    .top-section {
        display: none;
    }
    .se_siteBranding {
        display: none;
    }
    .desktop-only {
        display: none !important;
    }
    .menu-text {
        display: none !important;
    }

    .col-md-16 {
        padding-top: 60px;
    }
    .col-md-16 p a {
        display: inline-block;
        color: #000;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        height: 100px;
        margin: auto;
        line-height: 30px;
        width: 30px;
    }
    .second-menu {
        margin-right: 20px !important;
    }
    .mobile-uppertext {
        margin-top: -45px;
        position: relative;
        padding-left: 20px;
    }
    .smalltext {
        margin-top: -35px;
        padding: 0 15px;
    }
    .left-slider {
        margin-bottom: 20px;
    }
    td, th {
        display: block;
        clear: both;
    }
    td[data-th]:before {
        content: attr(data-th);
        float: left;
    }
    .feature_blog_image {
        width: 100% !important;
        height: auto !important;
        padding-right: 0 !important;
    }
    #blog_post_listing .feature_blog_image {
        margin-right: 0 !important;
    }
    .feature_blog_image img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }
    .blog_post_title, .blog_post_listing_title_link, #blog_post_listing.blog_post_listing_sidebar {
        text-align: center !important;
    }
    #blog_post_listing.blog_post_listing_sidebar {
        width: 100% !important;
    }
    .blog_post_listing_author, .blog_post_author {
        text-align: center !important;
    }
    .big-circle h2 a { 
        opacity: 1 !important;
    }
    .big-circle img {
        padding-bottom: 0px !important;
    }
    .ctatext {
        top: 25%;
    }
    .ctatext {
        font-size: 24px;
        line-height: 30px;
    }
    .ctatext p {
        font-size: 10px;
        line-height: 15px;
    }
    a.read_more_link {
        margin: 10px auto 0 auto !important;
    }
}
@media (min-width: 768px) { 
    .MainMenu .le_menu_level_1_container {
        left: 180px;
        min-width: 180px;
    }
    .col-md-13 {
        float: right;
        right: 0;
        width: 210px;
    }
    .col-md-14 {
        float: right;
        right: 0;
        width: 300px;
    }
    .uppertext {
        position: absolute;
        top: 28%;
        left: 48%;
        right: 7%;
    }
    .left-slider {
        padding-right: 10px;
    }
    .right-slider img {
        padding-left: 10px;
    }
    .menubox {
        margin-left: 75px;
    }
    .menubox td {
        padding: 0 20px;
    }
    .menubox h1 {
        margin-left: -75px;
    }
    .feature_blog_image {
        padding-right: 25px;
    }
    #primaryMenu .MainMenu {
        padding-top: 75px;
    }
}
@media (min-width: 769px) {
    .se_siteBranding2 {
        display: none;
    }
    .mobile-only a {
        display: none !important;
    }
    .mobile-only {
        display: none !important;
    }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .se_mainContent2 {
        padding-right: 25%;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .home-block #le_section-one-area3 {
        padding-top: 25px !important;
    }
    .uppertext {
        top: 37%;
        left: 60%;
        right: 5%;
    }
}
@media (max-width: 1200px) {
    .feature_blog_image img {
        margin-bottom: 20px !important;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .uppertext {
        top: 40%;
        left: 60%;
        right: 10%;
    }
    .feature_blog_image {
        width: 500px;
    }
    .feature_blog_image img {
        width: 500px;
    }
}

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

.wrapper-inner img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
#feature {
    text-align: right;
}
#feature .le_plugin_slider_container {
    margin:auto;
}
.wrapper-inner table {
	border-spacing: 0 !important;
}

/* MINDBODY Overrides
----------------------------------------------------------------------------------------------------*/

.le_mb_wrapper {
    padding-top:10px;
}

/* MINDBODY Appointments Page Overrides
----------------------------------------------------------------------------------------------------*/
.mb_appt_wrapper {
}

/* ------------------------------------------
  Overrides - Services and MB
  --------------------------------------------- */

/* ------- Staff Pages ------ */

.wrapper-inner #le_mb_get_staff .staff_side {
	width: 100% !important;
	margin-left: 0 !important;
}

.wrapper-inner #le_mb_get_staff .staff_info{
    margin-bottom: 20px;
}

/* ----- Class Pages ----- */
#le_mb_class_page #class_info img {
    margin-bottom: 20px;
    padding-left: 0;
}

#le_mb_class_page #class_info h4 {
    clear: both;
    margin-bottom: 10px;
}

#le_mb_class_page .staff_info img {
    margin-bottom: 20px;
    border: 1px solid #d4d4d4;
}

#le_mb_class_page .staff_info h4 {
    margin-bottom: 10px;
}

.wrapper-inner .staff_info .firstname,.wrapper-inner .staff_info .lastname {
    font-size:18px;
}

/* ------- list Schedule ------ */

.mb_listview_date #forward, .mb_listview_date #back {
    width: 40px;
    height: 40px;
    font-size: 28px;
    transition:all .2s ease;
}

.wrapper-inner #le_mb_list_schedule .master_date {
    padding-top:0;
}
.wrapper-inner #le_mb_list_schedule .title_date {
    padding-left: 20px;
}
.wrapper-inner #le_mb_list_schedule .row_date {
    padding-left: 20px;
}
.title_date, .title_class, .title_staff {
    position:relative;
    top:-5px;
}  

.wrapper-inner #le_mb_list_schedule .row_class {
    padding-left:20px;
}

.wrapper-inner #le_mb_list_schedule .row_staff {
    padding-left:2px;
}

/* ------- MB login ----- */
#login_form .mb_login_existing_row {
    display: block;
    clear: both;
    overflow: hidden;
}

#le_mb_loginsignup #new_clients {
    border-left: 1px solid rgba(0,0,0,.23);
}

/* 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;      
  }
  
@media all and (max-width: 768px) {
    #new_clients {
        min-width: 300px;
    }
    #new_clients label {
        text-align: left !important;
    }
    #existing_clients {
        min-width: 300px;
    }
    #existing_clients label {
        text-align: left !important;
    }
    .mb_login_existing_label {
         text-align: left !important;
    }
}

/* Box Slider Fixes and Customizations
----------------------------------------------------------------------------------------------------*/
.bx-viewport .htmlSlide {
    padding-bottom: 0 !important;
}

.bx-wrapper .htmlPanel { /* Fixes shift of content when fade transition is applie */
    left: 0;
}

.bx-wrapper .bx-controls-direction a {
    z-index: 800 !important;
}

.wrapper-inner .bx-wrapper .bx-pager.bx-default-pager a {
    background: #676767;
    background: rgba(0,0,0,.5);
}

.wrapper-inner .bx-wrapper .bx-pager.bx-default-pager a:hover,.wrapper-inner .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #333;
    background: rgba(0,0,0,.85);
}

/* --- BX slider arrows --- */

.wrapper-inner .bx-wrapper .bx-controls-direction a {
    width: 30px;
    height: 44px;
}

.wrapper-inner .bx-wrapper .bx-prev, .wrapper-inner .bx-wrapper .bx-prev:hover{
    background: url("https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/mmp3/site-slider-arrows.png") no-repeat 0 0;
}
.wrapper-inner .bx-wrapper .bx-next, .wrapper-inner .bx-wrapper .bx-next:hover {
    background: url("https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/mmpt3/mmp3/site-slider-arrows.png") no-repeat -32px 0;
}

/* ---- Scale map down on mobile devices for easier scrolling ----*/

.mobile-map {
	max-width: 100%;
}

@media only screen and (max-width : 992px) { 
	.mobile-map {
		max-width: 80%;
	}
}


/* ------------- Calendar Mods/Overrides ------------*/
.wrapper-inner .event_calendar {
    width: 100%;
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
}

.calendarCells {
    padding: 4px;
}

.calendarCellsDate {
    line-height:1em;
}

.selections .action {
    width: auto;
    padding: 0px 10px;
    margin-right: 1px;
    color: #fff;
    border: 0;
}

.date_selection #today {
    background: #A8A8A8;
    color: #fff;
    border: 0;
    height: 27px;
}

.date_selection #startdate {
    height: 27px;
    width: 100px;
    padding: 0 4px;
}

/*-- Front end Event Creattion -- */
#event_header {
    background: #e8e8e8;
    padding: 10px;
}

#event_timezone {
    
}

#event_form .float_right:first-child {
    margin: 10px 10px 0 0;
}
#event_start .date {
    height: 28px;
}

#event_start .date_details {
    height: 28px;
}

#event_end .date_details {
    height: 28px;
}

/* ------------- End Calendar Mods/Overrides ------------*/


/* -- blog Service Styles -- */

.feature_blog_image {
    float: left;
    height: auto;
}
.feature_blog_image img {
    float: left;
    height: auto;
}
#blog_sidebar.blog_sidebar {
    display: none;
}

#blog_sidebar #blog_sidebar_name {
    font-size: 1.35em;
    margin-bottom: 10px;
}

#blog_sidebar_image {
    display:block;
    margin: auto;
}

/* -- Post List -- */

#blog_post_listing.blog_post_listing_sidebar { /*This is actually the post listing container...not the sidebar*/
    width: 100%;
    float: left;
}

#blog_post_listing .blog_post_listing {
    border-bottom: 0 solid #e8e8e8;
    border-bottom: 0 solid rgba(0,0,0,.08);
}

#blog_post_listing h1.blog_post_listing_title {
    line-height:1;
    margin-bottom: 10px;
}

#blog_post_listing .feature_blog_text {
    margin-left:0;
}


#blog_post_listing .blog_post_listing_footer_section {
    padding: 10px 0 0 0;
}

#blog_post_listing .blog_post_listing_footer_hr {
    display:none;
}

img.blog_post_listing_author_img, img.blog_post_author_img, .blog_post_comment_new_author_image {
    max-width:38px;
    height: auto;
}

.blog_post_listing_publishdatetime, .blog_post_listing_author {
font-size: 13px;
}

.blog_post_listing_author,.blog_post_author {
    font-weight: bold;
}

.blog_post_listing_content {
    /*clear: both;*/
}

.blog_post_listing_title_section {
    margin-right: 50px;
}

.blog_post_title, .blog_post_listing_title_link {
    font-size: 24px;
    line-height: 30px;
    color: #9f9f9f;
    font-weight: 700;
}
.blog_post_listing_author, .blog_post_author {
    color: #9f9f9f;
    font-weight: 300;
    font-style: italic;
    font-size: 16px;
    margin-top: 5px !important;
}
.feature_blog_text {
    padding-top: 25px;
    color: #9f9f9f;
    font-size: 14px;
}

#blog_post_listing .feature_blog_image {
    margin-right: 20px;
}

#blog_post_listing .feature_blog_text {
    float: none;
}

.blog_post_listing_permalink {
    word-wrap: break-word;
}

a.read_more_link {
    display: table;
    background: #9f9f9f;
    padding: 10px 20px;
    border:0px solid transparent;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    margin-top: 10px;
    text-decoration: none;
}
a:hover.read_more_link {
    background: #000;
}

@media all and (max-width: 1024px) {
    #blog_sidebar.blog_sidebar {
        width: 40%;
    }
}

@media all and (max-width: 767px) {
    #blog_sidebar.blog_sidebar {
        display:none;
    }
    #blog_post_listing.blog_post_listing_sidebar {
        width: 100%;
        padding-left: 0;
    }
}

@media all and (max-width: 600px) {
    #blog_post_listing .blog_post_listing_header_section {
        display:none;
    }
    #blog_post_listing .feature_blog_image {
        float:none;
        text-align: center;
        margin-bottom: 20px;
    }
    #blog_post_listing .blog_post_listing_title_section {
        margin: 0;
        text-align: center;
    }
    #blog_post_listing .feature_blog_text {
        text-align: center;
    }
    #blog_post_listing a.read_more_link {
        margin: 15px auto 0;
    }

}

/* --- Single (Full) Posts --- */
#blog_post .blog_post_title_section {
    margin: 10px 0;
}

#blog_post_content_section {
    max-width: 1000px;
}
#blog_post_content img {
    margin-bottom: 15px;
}

#blog_post .blog_post_comments_hr {
    display: none;
}
#blog_post .blog_post_footer_hr {
    margin: 30px 0 10px 0;
}

#blog_post .blog_post_footer_section {
    margin-bottom: 20px;
}

#blog_post_permalink {
    word-break: break-all;
}

/* --- blog Post Comments --- */
#blog_post_comments_section {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 0px;
}

.blog_post_comments_header {
    padding:8px 15px;
}

h2#comments {
    font-size:18px;
}

#blog_post_comments_section .blog_post_comment_post_container {
    border: 0;
    background: rgba(0,0,0,.05);
    padding:30px 15px;
}

#blog_post_comments_section .blog_post_comment_new_comment_actions {
    text-align: left;
    margin-top: 15px;
}

.blog_post_tag_header {
    font-size: 14px;
}

/* -- blog Element Styles -- */

.blog_post_listing_element {
    margin-bottom: 30px;
}

.blog_post_listing_element h1.blog_post_listing_title, .blog_post_listing_element h1.blog_post_listing_title a {
    font-family: 'Open Sans', Helvetica, arial, sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: .5em;
}

.blog_post_listing_element .feature_blog_image {
    float: left;
    margin-right: 20px;
}    

.blog_post_listing_element .feature_blog_image img {
    padding: 0;
    border: 0;
}

.blog_post_listing_element .blog_post_listing_footer_hr {
    display: none;
}

.read_more_div a{
    display: inline-block;
    background: #424242;
    padding: 5px 10px;
    border:0px solid transparent;
    color: #fff;
    font-size: 14px !important;
    margin-top: 10px;
    text-decoration: none;
}

@media all and (max-width: 768px) {
    .blog_post_listing_element .feature_blog_image {
        float: none;
    }
}

/* -- Mobile Only Theme Styles -- */
@media all and (max-width: 768px) {
    .mobile-center {
        text-align: center !important; /* needs important incase Aurora advanced tab align setting differs */
        margin: auto;
    }
    .mobile-hide {
        display: none !important; /* needs important incase Aurora advanced tab align setting differs */
    }
}


/* --------- End Theme Styles --------- */

/* Extra Modular Grid/Layout Styles */

.no-gutter-left {
    padding-left:0;
}

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

.padding-10 {
    padding:10px;
}

.padding-15 {
    padding:15px;
}

.padding-20 {
    padding:20px;
}

.width-50per {
    width: 50%;
}

.width-75per {
    width: 75%;
}

.center-all {
    text-align:center;
    margin-left: auto;
    margin-right: auto;
}

.text-shadow-dark {
    text-shadow: 0px 1px 1px rgba(0,0,0,.4);
}

.text-shadow-light {
    text-shadow: 0px 1px 1px rgba(255,255,255,.4);
}

.img-frame img,img.img-frame,.video-frame iframe{
    padding: 4px;
    border: 1px solid rgba(0,0,0,.08);
    background: transparent;
    transition: all .2s ease;
}

.img-frame img:hover,img.img-frame:hover,.video-frame iframe:hover{
    padding: 4px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(0,0,0,.08);

}

.img-frame.img-zoom{
    overflow:hidden;
}

.img-zoom img {
    transition: all .2s ease;
}

.img-zoom img:hover {
    transform: scale(1.2);

}

.list-inline ul{
    list-style: none;
    padding: 0 0 0 5px;
    margin: 0;
}

.list-inline ul li{
    display: inline;
    padding: 0;
    margin: 0 10px 0 0;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters[class^="col-"],
.no-gutters[class*=" col-"]{
  padding-right: 0;
  padding-left: 0;
}
.row-same-height {
    display:table;
}
.row-same-height [class^="col-"],
.row-same-height [class*="col-"]{
    display: table-cell;
    float: none;
    vertical-align: top;
    padding: 0 15px;
}

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


@media all and (max-width: 768px) {
    .row-same-height {
        display:block;
    }
    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"]{
        float:left;
    }
    
}

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

/* ------- System fixes (These should be added to Aurora and not done in the template) ---- */
#auroraContentContainer {
	min-width:100%;
	position: relative;
	top: 0px;
}

.le-logged-in #auroraContentContainer {
	top: 40px;
}

.le_region_name {
    font-family: 'Helvetica', arial, sans-serif !important;
    font-weight: normal !important;
}

.le_region_overlay_container {
    margin-top:0;
}

/* -- Search Results Page -- */
.search_result {
  clear: both;
}
/* -- Search Element -- */
#search_form_value {
    padding: 7px 5px 6px 5px;
}

/* ------- End System fixes (These should be added to Aurora and not done in the template) ---- */

/* --- Dark BG compensations --- */
#login label {
    color: #777;
}


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

@media (min-width: 769px) {
    .le-edit-open.expanded-view .wrapper-inner, .le-design-open.expanded-view .wrapper-inner {
        padding-left: 0;
    }
    .le-edit-open.expanded-view #primaryMenu.se_menu, .le-design-open.expanded-view #primaryMenu.se_menu {
        left: 0;
    }
}


/* --- Helper Instructions when in edit mode --- */

.edit-instructions {
    display: none;
}

.le-edit-open .edit-instructions {
    display: block;
    clear: both;
    padding: 10px;
    border-radius: 2px;
    background: rgba(199,232,42,.2);
}
.le-edit-open .edit-instructions a{ 
    text-decoration: underline;
}
.le-edit-open .mobile-only {
    display: block !important;
}
.le-edit-open .wrapper-inner {
    padding-right: 200px;
}
.le-edit-open #le_section-four {
    margin-bottom: 100px;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
.aurora_adrien-flammier #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Sunny-Chea/Sunny-Chea_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 540px;
}
.aurora_adrien-flammier #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Nuria_Perez/Nuria_Perez_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 420px;
}
.aurora_adrien-flammier #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Adrien-Flammier.png);
    background-size: cover;
    background-position: top center;
    padding-top: 530px;
}
.aurora_anjela-kasper-nova #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_anjela-kasper-nova #le_section-one-area2 {
    background-image: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}
.aurora_anjela-kasper-nova #le_section-one-area5 {
}
.aurora_aric #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Aric.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 485px;
}
.aurora_bianca #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Bianca_headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_blanca-gonzalez #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/irvine/Bianca-full.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 530px;
}
.aurora_brian-simm #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Paul-Adkinson-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 525px;
}
.aurora_brian-simm #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Brian-Simm.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 600px;
}
.aurora_careers #le_section-one-area3 {
    padding-top: 15px;
}
.aurora_contact-irvine #le_section-one-area3 {
    padding-top: 20px;
}
.aurora_contact-irvine #le_section-one-area8 {
}
.aurora_contact-los-angeles #le_section-one-area3 {
    padding-top: 20px;
}
.aurora_contact-los-angeles #le_section-one-area8 {
    padding-right: 30px;
}
.aurora_contact-san-francisco #le_section-one-area3 {
    padding-top: 20px;
}
.aurora_contact-san-francisco #le_section-one-area8 {
}
.aurora_gorky-legarda-falcon #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/irvine/gorky-rectangular.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 530px;
}
.aurora_guillaume-boucher #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Guillaume/Guillaume_1000x1000.png);
    background-size: cover;
    background-position: bottom center;
    padding-top: 465px;
}
.aurora_guillaume-boucher1 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Guillaume/Guillaume_1000x1000.png);
    background-size: cover;
    background-position: bottom center;
    padding-top: 530px;
}
.aurora_guillaume-boucher2 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Guillaume/Guillaume_1000x1000.png);
    background-size: cover;
    background-position: bottom center;
    padding-top: 530px;
}
.aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Adrien-Flammier.png);
    background-size: cover;
    background-position: top center;
    padding-top: 530px;
}
.aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Sunny-Chea/Sunny-Chea_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 540px;
}
.aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Nuria_Perez/Nuria_Perez_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 420px;
}
.aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Hermelinda-Ruvalcaba.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 700px;
}
.aurora_home #le_feature {
}
.aurora_home #le_section-mobile-left {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/model-girl-sitting_copy.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 60vh;
}
.aurora_home #le_section-mobile-left2 {
    padding-top: 30px;
    padding-right: 75px;
    padding-left: 75px;
}
.aurora_home #le_section-one-area3 {
    padding-top: 125px;
    padding-left: 25px;
}
.aurora_irina-andrushchenko #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Irina-Andrushchenko.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_irvine-creators #le_section-one-area8 {
}
.aurora_ivan #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Ivan-Ferdinand.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 500px;
}
.aurora_jose-rodriguez #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Paul-Adkinson-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 525px;
}
.aurora_jose-rodriguez #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Brian-Simm.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 600px;
}
.aurora_jose-rodriguez #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/irvine/Jose-Rodriguez.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 540px;
}
.aurora_locations #le_section-one-area2 {
}
.aurora_los-angeles-creators #le_section-one-area8 {
    padding-right: 30px;
}
.aurora_makayla-davis #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Paul-Adkinson.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 580px;
}
.aurora_makayla-davis #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Makayla-Davis.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 625px;
}
.aurora_natalia-pryannik #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/irvine/Natalia.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 530px;
}
.aurora_nuria-perez #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Sunny-Chea/Sunny-Chea_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 540px;
}
.aurora_nuria-perez #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Nuria_Perez/Nuria_Perez_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 420px;
}
.aurora_paul-adkinson #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Paul-Adkinson-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 525px;
}
.aurora_paul-desmarre1 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_paul-desmarre1 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/los-angeles/Paul-Desmarre/Paul-Desmarre_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 455px;
}
.aurora_paul-desmarre2 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_paul-desmarre2 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/los-angeles/Paul-Desmarre/Paul-Desmarre_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 455px;
}
.aurora_paul-miller #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_paul-miller #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/los-angeles/Paul-Desmarre/Paul-Desmarre_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 455px;
}
.aurora_priscilla #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Priscilla_Glyph_SF_Headshot_Barber.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 485px;
}
.aurora_priscilla-guardado #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Priscilla-Guardado.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_reynald-ricard #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 575px;
}
.aurora_reynald-ricard1 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_reynald-ricard2 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_reynald-ricard21 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/los-angeles/Reynald-Ricard.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 710px;
}
.aurora_rosa #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Sunny-Chea/Sunny-Chea_1000x1000.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 540px;
}
.aurora_rosa #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/rosa.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 420px;
}
.aurora_san-francisco-creators #le_section-one-area8 {
}
.aurora_sebastien-oxner #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/creators/san-francisco/Sebastien-Oxner.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 485px;
}
.aurora_services-old #le_section-one-area6 {
}
.aurora_services-old2 #le_section-one-area6 {
}
.aurora_services2 #le_section-one-area6 {
}
.aurora_services3 #le_section-one-area6 {
}
.aurora_spenser-oshaw #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Guillaume/Guillaume_1000x1000.png);
    background-size: cover;
    background-position: bottom center;
    padding-top: 465px;
}
.aurora_spenser-oshaw #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Spenser_Headshot.jpeg);
    background-size: cover;
    background-position: top center;
    padding-top: 675px;
}
.aurora_spenser-oshaw #le_section-one-area2-bottom {
}
.aurora_staff1 #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Reynald-Ricard-headshot.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}
.aurora_sunny-chea #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Sunny-Chea-headshot/Sunny-Chea-headshot_1000x1087.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 485px;
}
.aurora_the-creators #le_section-one-area2 {
}
.aurora_yeji-moon #le_section-one-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/glyphstudios/Yeji-Moon.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 620px;
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    .aurora_adrien-flammier #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adrien-flammier #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_adrien-flammier #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_anjela-kasper-nova #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_anjela-kasper-nova #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_anjela-kasper-nova #le_section-one-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_aric #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_bianca #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_blanca-gonzalez #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_brian-simm #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_brian-simm #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_careers #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-irvine #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-irvine #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-los-angeles #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-los-angeles #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-san-francisco #le_section-one-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact-san-francisco #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_gorky-legarda-falcon #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_guillaume-boucher #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_guillaume-boucher1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_guillaume-boucher2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_feature {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-mobile-left {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-mobile-left2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-one-area3 {
    padding-top: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_irina-andrushchenko #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_irvine-creators #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_ivan #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jose-rodriguez #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jose-rodriguez #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jose-rodriguez #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_locations #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_los-angeles-creators #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_makayla-davis #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_makayla-davis #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_natalia-pryannik #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nuria-perez #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_nuria-perez #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-adkinson #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-desmarre1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-desmarre1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-desmarre2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-desmarre2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-miller #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_paul-miller #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_priscilla #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_priscilla-guardado #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_reynald-ricard #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_reynald-ricard1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_reynald-ricard2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_reynald-ricard21 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_rosa #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_rosa #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_san-francisco-creators #le_section-one-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sebastien-oxner #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-one-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old2 #le_section-one-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services2 #le_section-one-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services3 #le_section-one-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_spenser-oshaw #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_spenser-oshaw #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_spenser-oshaw #le_section-one-area2-bottom {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_staff1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sunny-chea #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-creators #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_yeji-moon #le_section-one-area2 {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    .aurora_adrien-flammier #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adrien-flammier #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_adrien-flammier #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_anjela-kasper-nova #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_anjela-kasper-nova #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_anjela-kasper-nova #le_section-one-area5 {
    padding-top: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_aric #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_bianca #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_blanca-gonzalez #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_brian-simm #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_brian-simm #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_careers #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-irvine #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-irvine #le_section-one-area8 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-los-angeles #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-los-angeles #le_section-one-area8 {
    padding-top: 50px;
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-san-francisco #le_section-one-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact-san-francisco #le_section-one-area8 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_gorky-legarda-falcon #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_guillaume-boucher #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_guillaume-boucher1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_guillaume-boucher2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_hermelinda-ruvalcaba #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_feature {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-mobile-left {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-mobile-left2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-one-area3 {
    padding-top: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_irina-andrushchenko #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_irvine-creators #le_section-one-area8 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_ivan #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jose-rodriguez #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jose-rodriguez #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jose-rodriguez #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_locations #le_section-one-area2 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_los-angeles-creators #le_section-one-area8 {
    padding-top: 50px;
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_makayla-davis #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_makayla-davis #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_natalia-pryannik #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nuria-perez #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_nuria-perez #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-adkinson #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-desmarre1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-desmarre1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-desmarre2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-desmarre2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-miller #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_paul-miller #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_priscilla #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_priscilla-guardado #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_reynald-ricard #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_reynald-ricard1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_reynald-ricard2 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_reynald-ricard21 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_rosa #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_rosa #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_san-francisco-creators #le_section-one-area8 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sebastien-oxner #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-one-area6 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old2 #le_section-one-area6 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services2 #le_section-one-area6 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services3 #le_section-one-area6 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_spenser-oshaw #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_spenser-oshaw #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_spenser-oshaw #le_section-one-area2-bottom {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_staff1 #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sunny-chea #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-creators #le_section-one-area2 {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_yeji-moon #le_section-one-area2 {
    }
}

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