@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@font-face {
    font-family: Open Sans;
    src: url("/file/redmarketmiami/Open Sans.otf") format("opentype");
}

:root {
    --bg-main: #000;
    --bg-color: #ce292f;
    --bg-hover: #af2227;
}

body {
    margin: 0 auto;
    color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 25px;
	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, ul, ol, li {
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 300;
	margin: 0;
}

h1, h1 a, .title1, .title1 a {
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 40px;
	line-height: 45px;
	font-weight: 400;
	margin: 0 0 10px 0;
}
h2, h2 a, .title2, .title2 a {
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 28px;
	line-height: 1.3;
	font-weight: 400;
	margin: 0 0 10px 0;
	
}
h3, h3 a, .title3, .title3 a {
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 10px 0;
}
h4, h4 a, .title4, .title4 a {
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 22px;
	line-height: 28px;
	font-weight: 400;
	margin: 0;
}
h5, h5 a, .title5, .title5 a {
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	margin: 0;
}
h6, h6 a, .title6, .title6 a {
    color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	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: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
}
.le_form_name {
    color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	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: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	background-color: var(--bg-color);
	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: #363535;
	color: #ffffff;
}
.wrapper input[type="submit"] {
	padding: 5px 15px;
	border: 0px solid transparent;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	background-color: var(--bg-color);
	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: #003d68;
	color: #ffffff;
}
.wrapper input[type="text"],.wrapper input[type="email"],.wrapper input[type="password"], .wrapper textarea {
	padding: 7px 10px;
	background-color: #fff;
	border: none;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius: 0;
	border:1px solid #c9c7c7;
	box-shadow: none !important;
	color: var(--bg-main);
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	margin: 0;
}
.form-control {
    border: 1px solid #c9c7c7;
	box-shadow: none !important;
	padding: 5px 10px;
	background-color: #fff;
	height: 40px;
	border-radius: 0 !important;
	color: #676767 !important;
	letter-spacing: .14em;
	font-weight: 300;
}
.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;
}
:-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 {
    margin-bottom: 10px;
}
.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;
}
.career-form .recaptcha-terms {
    margin-top: -20px !important;
}
.recaptcha-terms {
    margin: 0 !important;
    padding: 0 !important;
}
.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1em;
	max-width: 400px;
	width: calc(100% - 2em);
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: bold;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #6a7989;
	font-weight: bold;
	font-size: 70.25%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}

.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.icon {
	color: #ddd;
	font-size: 150%;
}
.input--madoka {
	margin: 1.1em;
}

.input__field--madoka {
	width: 100%;
	background: transparent;
	color: #7A7593;
}

.input__label--madoka {
	position: absolute;
	width: 100%;
	height: 100%;
	color: #7A7593;
	text-align: left;
	cursor: text;
}

.input__label-content--madoka {
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.graphic--madoka {
	-webkit-transform: scale3d(1, -1, 1);
	transform: scale3d(1, -1, 1);
	-webkit-transition: stroke-dashoffset 0.3s;
	transition: stroke-dashoffset 0.3s;
	pointer-events: none;

	stroke: #7A7593;
	stroke-width: 4px;
	stroke-dasharray: 962;
	stroke-dashoffset: 558;
}

.input__field--madoka:focus + .input__label--madoka,
.input--filled .input__label--madoka {
	cursor: default;
	pointer-events: none;
}

.input__field--madoka:focus + .input__label--madoka .graphic--madoka,
.input--filled .graphic--madoka {
	stroke-dashoffset: 0;
}

.input__field--madoka:focus + .input__label--madoka .input__label-content--madoka,
.input--filled .input__label-content--madoka {
	-webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
	transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
}

/* 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: #0e58a8;
	color: #ffffff;
}
.se_button a:hover, a:hover.se_button {
    text-decoration: none;
    background-color: #000000;
}
.se_button.button1 a, a.se_button.button1 {
    background-color: var(--bg-main);
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    margin-top: 10px;
}
.se_button.button1 a:hover, a:hover.se_button.button1 {
    background-color: var(--bg-color);
}
.se_button.button2 a, a.se_button.button2 {
    background-color: var(--bg-color);
    color: #ffffff;
    padding: 10px 20px 10px 20px;
    margin-top: 10px;
}
.se_button.button2 a:hover, a:hover.se_button.button2 {
    background-color: var(--bg-hover);
}
.se_button.fullwidthButton a, a.se_button.fullwidthButton{
    display: block;
    text-align: center;
}
.se_button.largeButton a, a.se_button.largeButton {
	padding: 25px 35px;
	background-color: var(--bg-color);
    color: #ffffff;
    margin-top: 10px;
}
.se_button.largeButton a:hover, a:hover.se_button.largeButton  {
    background-color: var(--bg-main);
}

.seFormButton, .wrapper input[type="submit"].seFormButton {
    padding: 8px 15px;
    background-color: var(--bg-color);
    position: relative;
    top: -20px;
}
.seFormButton:hover, .wrapper input[type="submit"].seFormButton:hover {
    background-color: var(--bg-hover);
}

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

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

hr {
    border: 0;
    height: 1px;
    margin: 10px 0;
	background-color: #e9e7e7;
}
.mt10 {
    margin-top: 10px;
}
.no-gutters {
    padding: 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;
}
.fullwidth {
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
}
.fullwidth img {
    width: 100%;
    height: auto;
    transform: scale(1.0);
    transition: transform 0.5s;
}
.fullwidth img:hover {
    transform: scale(1.1);
}
.banner img {
    width: 100%;
    height: auto;
}
.scissors {
   cursor: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/scissors.png), auto;
}
.video {
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background-color: #e0e0e0 !important;
    width: 15px !important;
    height: 15px !important;
    border-radius: 50% !important;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: var(--bg-main) !important;
}
.bx-viewport {
    padding-bottom: 120px !important;
}
.testimonialbox p {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Open Sans', sans-serif;
}
.testimonialbox h6 {
    font-size: 14px;
    line-height: 25px;
}
.cta {
    background-color: rgba(0,0,0,1);
    margin-bottom: 150px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.cta:hover {
    background-color: rgba(0,0,0,0.5);
}
.cta a {
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.cta img {
    height: 80px;
    width: auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.cta:hover img {
    height: 120px;
}
.cta h2 {
    bottom: -170px;
    display: block;
    position: relative;
}
.cta h2:before {
    content:'';
    background-color: #c4c4c4;
    position: absolute;
    z-index: 2;
    top:-120px;
    left: 0;
    right: 0;
    height: 100px;
    width: 2px;
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.grayscale img {
    filter: grayscale(100%);
}
.right-cta {
    position: relative;
}
.right-cta h3 {
    content:'MEET THE ARTISTS';
    font-size: 30px;
    line-height: 40px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    position: relative;
    display: block;
    margin: auto;
    top: 340px;
    left: -140px;
    width: 300px;
}
.right-cta h3:before {
    content:'';
    background-color: var(--bg-color);
    position: absolute;
    top: -30px;
    left: -425px;
    right: 0;
    height: 100px;
    width: 2px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.left-cta {
    position: relative;
}
.left-cta h3 {
    content:'MEET THE ARTISTS';
    font-size: 30px;
    line-height: 40px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    position: relative;
    display: block;
    margin: auto;
    top: 300px;
    left: -100px;
    width: 300px;
}
.left-cta h3:before {
    content:'';
    background-color: var(--bg-color);
    position: absolute;
    top: -30px;
    left: 280px;
    right: 0;
    height: 100px;
    width: 2px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.no-gutters {
    margin: 0;
    padding: 0;
}
.right-service {
    position: relative;
}
.right-service h3 {
    position: relative;
    bottom: 0;
    left: 57%;
    font-size: 50px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.right-service h3:before {
    content:'';
    background-color: #c4c4c4;
    position: absolute;
    top: -40px;
    left: -70px;
    height: 100px;
    width: 2px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.title-text h1 {
    text-align: center;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    position: relative;
}
.title-text h1:after {
    background-color: #c4c4c4;
    position: absolute;
    content: '';
    width: 250px;
    height: 3px;
    right 0;
    margin-left: 20px;
    top: 50%;
    z-index: 100;
}
.title-text h2 {
    text-align: center;
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 20px;
    position: relative;
}
.title-text h2:before {
    background-color: #c4c4c4;
    position: absolute;
    content: '';
    width: 250px;
    height: 3px;
    left: -40%;
    margin-left: 20px;
    top: 50%;
    z-index: 100;
}
.hideme {
    opacity:0;
}
.showme {
    opacity:1;
}
.side-img img {
    z-index: -1;
    position: relative;
}
/*.whitebox {*/
/*    text-align: center;*/
/*    padding: 30px 20px;*/
/*    margin-bottom: 25px;*/
/*    background-color: #fff;*/
/*    position: relative;*/
/*}*/
/*.whitebox h3 {*/
/*    font-size: 20px;*/
/*    line-height: 25px;*/
/*}*/
/*.whitebox a {*/
/*    opacity: 0;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: auto;*/
/*    bottom: 0;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background-color: #000;*/
/*    color: #fff;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-content: center;*/
/*    flex-direction: column;*/
/*    -webkit-transition: all .4s ease;*/
/*    -moz-transition: all .4s ease;*/
/*    transition: all .4s ease;*/
/*}*/
/*.whitebox a:hover {*/
/*    opacity: 1;*/
/*}*/
/*.graybox {*/
/*    text-align: center;*/
/*    padding: 30px 20px;*/
/*    margin-bottom: 25px;*/
/*    background-color: #F1F1F1;*/
/*    position: relative;*/
/*}*/
/*.graybox h3 {*/
/*    font-size: 20px;*/
/*    line-height: 25px;*/
/*}*/
/*.graybox a {*/
/*    opacity: 0;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: auto;*/
/*    bottom: 0;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background-color: #000;*/
/*    color: #fff;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-content: center;*/
/*    flex-direction: column;*/
/*    -webkit-transition: all .4s ease;*/
/*    -moz-transition: all .4s ease;*/
/*    transition: all .4s ease;*/
/*}*/
/*.graybox a:hover {*/
/*    opacity: 1;*/
/*}*/
.InsideMenu {
    margin: 15px 0;
    display: block;
}
.InsideMenu a {
    border: 1px solid var(--bg-main);
    color: var(--bg-main);
    margin: 0 2px;
    padding: 5px 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}
.InsideMenu a:hover {
    background-color: var(--bg-main);
    color: #fff;
}
.left-text {
    position: absolute;
    bottom: 120px;
    left: -150px;
    font-size: 50px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}
.left-text:after {
    content:'';
    background-color: #c4c4c4;
    position: absolute;
    top: -40px;
    right: -70px;
    height: 100px;
    width: 2px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.divide {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
}
.divide:before {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    left: 25%;
    top: 50%;
    background-color: var(--bg-main);
}
.divide h2 {
    background-color: #f1f1f1;
    font-size: 50px;
    line-height: 60px;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}
.divide2 {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
}
.divide2:before {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    left: 25%;
    top: 50%;
    background-color: var(--bg-main);
}
.divide2 h2 {
    background-color: #fff;
    font-size: 50px;
    line-height: 60px;
    display: inline-block;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}
.staffbox {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-right: 40px;
}
.staffbox img {
    width: 100%;
    height: auto;
    transform: scale(1.0);
    transition: transform 0.5s;
}
.staffbox img:hover {
    transform: scale(1.1);
}
.staff h2 {
    position: relative;
    display: block;
    margin-top: -100px;
    left: -50px;
    z-index: 1;
    font-size: 50px;
    line-height: 60px;
}
.staff h2:after {
    content:'';
    background-color: #c4c4c4;
    position: absolute;
    top: -20px;
    left: 250px;
    height: 100px;
    width: 2px;
    transform: rotate(90deg);
    webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.line-left {
    border-left: 2px solid var(--bg-color);
    padding: 50px 0 50px 20px;
    height: 100%;
}
.line-right {
    border-right: 2px solid var(--bg-color);
    padding: 50px 20px 50px 0;
    height: 100%;
    text-align: right;
}
/*.left-text:after {*/
/*    content:'';*/
/*    background-color: #c4c4c4;*/
/*    position: absolute;*/
/*    top: -40px;*/
/*    right: -70px;*/
/*    height: 100px;*/
/*    width: 2px;*/
/*    transform: rotate(-90deg);*/
/*    -webkit-transform: rotate(-90deg);*/
/*    -moz-transform: rotate(-90deg);*/
/*    -ms-transform: rotate(-90deg);*/
/*    -o-transform: rotate(-90deg);*/
/*    margin: 0 auto;*/
/*    -webkit-transition: all .4s ease;*/
/*    -moz-transition: all .4s ease;*/
/*    transition: all .4s ease;*/
/*}*/
.staff-box {
    text-align: center;
}
.staff-box img {
    width: 100%;
    height: auto;
}
.staff-box h2 {
    position: relative;
    margin: 15px 0 0 0;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.staff-box:hover h2 {
    opacity: 1;
}
.staff-box h2:before {
    content:'';
    background-color: #c4c4c4;
    position: absolute;
    z-index: 2;
    top:-50px;
    left: 0;
    right: 0;
    height: 50px;
    width: 2px;
    margin: 0 auto;
}
.staff-box a {
    display: inline-block;
    background-color: var(--bg-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    line-height: 10px;
    opacity: 0;
    margin-bottom: 25px;
}
.staff-box a:hover {
    background-color: var(--bg-main);
}
.staff-box:hover a {
    opacity: 1;
}
.bio {
    background-color: rgba(0,0,0,0);
    width: 100%;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    transition: all .6s ease;
    opacity: 0;
    height: 300px;
}
.bio:hover {
    background-color: rgba(0,0,0,0.7);
    opacity: 1;
}
.bio h2 {
    color: #fff;
    margin: 0;
}
.bio p {
    color: #fff;
    font-style: italic;
}
.bio a {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
    font-style: normal;
}
.bio a:hover {
    background-color: var(--bg-color);
    color: #fff;
}
.productbox {
    text-align: center;
    position: relative;
    margin-bottom: 35px;
}
.productbox h2 {
    font-size: 24px;
    line-height: 35px;
    margin: 30px 0 0 0;
}
.productbox h2:before {
    content:'';
    background-color: #c4c4c4;
    position: absolute;
    z-index: 2;
    top:-110px;
    left: 0;
    right: 0;
    height: 100px;
    width: 2px;
    margin: 0 auto;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    overflow: hidden;
    perspective: 1000px;
    cursor: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/scissors.png), auto;
}
.flip-card h1, .flip-card h2, .flip-card h3, .flip-card h4, .flip-card h5, .flip-card h6, .flip-card p, .flip-card {
    color: #ffffff;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #bbb;
    color: #fff;
}

.flip-card-back {
    background-color: #000;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
}
.flip-card a {
    display: inline-block;
    background-color: #fff;
    color: #000 !important;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
    font-style: normal;
}
.flip-card a:hover {
    background-color: var(--bg-color);
    color: #fff !important;
}

.checklist ul li { 
    margin-bottom:15px!important; 
    text-indent: -0.7em;
    list-style-type: none;
}
.checklist ul li:before {    
    font-family: 'FontAwesome';
    content: '\f00c';
    margin:0 10px 0 -15px;
    color: #000000;
}
.uppertext2 {
    position: absolute;
    padding: 0 50px;
    top: 60%;
    text-align: center;
}
.uppertext2 h3 {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    text-shadow: 0px 1px 1px rgba(0,0,0,.75);
}
.uppertext2 p {
    color: #fff;
    text-shadow: 0px 1px 1px rgba(0,0,0,.75);
}

/* Service
----------------------------------------------------------------------------------------------------*/

.service ul {
    display: flex;
    min-height: 800px;
    width: 100%;
    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;
}
.service li:hover {
    background: var(--bg-hover);
}
.service li.active {
    flex: 6;
    background: #fff;
    cursor: default;
}
.service li h2 {
    color: #fff;
    text-transform: uppercase;
}
.service p {
    font-size: 14px;
    padding: 0 0 5px 0;
}
.service li.active h2 {
    color: #fff;
}
.service li.active .section-content {
    flex: 5;
    display: inline-block;
    transform: scaleX(1);
    color: var(--bg-main);
    padding: 30px 25px;
}
.service li .section-title {
    flex: 1;
    display: flex;
    align-items: center;
    width: 20%;
    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/mens-hair.jpg') 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/redmarketmiami/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-title3 {
    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-title4 {
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/comb-through-straight-brown-hair.jpg') center center no-repeat;
    background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
.section-title5 {
    background: url('https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/long-pink-nails.jpg') center center no-repeat;
    background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
/*.section-title1:hover {*/
/*    background: var(--bg-color);*/
/*}*/
@media (max-width: 767px) {
    .expand2 h3 {
        font-size: 12px !important;
    }
}
@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 0;
    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;
}

/* Expand
----------------------------------------------------------------------------------------------------*/
.expand {
    position: relative;
    margin: 0 0 10px 0;
}
.expand h2 {
    position: relative; 
    font-size: 24px;
    color: var(--bg-main);
    border-bottom: 2px solid var(--bg-color);
    padding: 7px 15px 7px 0;
    line-height: 30px !important;
    text-transform: uppercase;
}
.expand h2:before {
    content: '\f103';
    font-family: 'FontAwesome';
    text-align: right;
    right: 0;
    float: right;
    font-size: 22px !important;
    margin-top: 2px;
    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 h2.active {
    color: var(--bg-color);
    margin-bottom: 10px !important;
}
.expand h2.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);
}
.expand h2: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: 6px 15px 6px 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: 2px;
    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);
}

/* whitebox
----------------------------------------------------------------------------------------------------*/
.whitebox {
    background-color: #fff;
    position: relative;
    text-align: center;
    margin: 0 0 25px 0;
    padding: 20px 20px 10px 20px;
}
.whitebox h3 {
    position: relative; 
    font-size: 20px;
    line-height: 25px;
    color: var(--bg-main);
    padding: 7px 15px 7px 0;
    text-transform: uppercase;
}
.whitebox h3:after {
    content: '\f103';
    font-family: 'FontAwesome';
    text-align: center;
    font-size: 30px !important;
    margin: 7px 0 0 0;
    color: var(--bg-main);
    display: 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;
}
.whitebox h3.active {
    color: #666666;
    margin-bottom: 10px !important;
}
.whitebox h3.active:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4/90);
}
.whitebox h3:hover {
    cursor: pointer;
    color: #666666;
}
.whitebox a {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--bg-main);
    color: var(--bg-main);
    margin: 10px 0 20px 0;
}
.whitebox a:hover {
    background-color: var(--bg-main);
    color: #fff;
}

/* graybox
----------------------------------------------------------------------------------------------------*/
.graybox {
    background-color: #F1F1F1;
    position: relative;
    text-align: center;
    margin: 0 0 25px 0;
    padding: 20px 20px 10px 20px;
}
.graybox h3 {
    position: relative; 
    font-size: 20px;
    line-height: 25px;
    color: var(--bg-main);
    padding: 7px 15px 7px 0;
    text-transform: uppercase;
}
.graybox h3:after {
    content: '\f103';
    font-family: 'FontAwesome';
    text-align: center;
    font-size: 30px !important;
    margin: 7px 0 0 0;
    color: var(--bg-main);
    display: 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;
}
.graybox h3.active {
    color: #666666;
    margin-bottom: 10px !important;
}
.graybox h3.active:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=4/90);
}
.graybox h3:hover {
    cursor: pointer;
    color: #666666;
}
.graybox a {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--bg-main);
    color: var(--bg-main);
    margin: 10px 0 20px 0;
}
.graybox a:hover {
    background-color: var(--bg-main);
    color: #fff;
}

/* Pop up
----------------------------------------------------------------------------------------------------*/

.close-git-form a {
    display: block;
    top: 0;
    right: 0;
    font-size: 25px;
    line-height: 25px;
    z-index: 1;
    padding: 5px 10px;
    background-color: var(--bg-color);
    color: #fff !important;
    position: absolute;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    color: var(--bg-blue);
    font-weight: 500;
}
.close-git-form a:hover {
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    transform: rotate(-180deg);
}
.git-form {
    position: fixed;
    z-index: 1001;
    margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
    top:0;
    text-align: center;
    width: 500px;
    z-index: -1;
    opacity: 0;
    background: rgba(255,255,255,0.95);
    border: 2px solid var(--bg-color);
    padding: 40px 20px 30px 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all .2s ease;
    background: #fff;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 29px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 29px 0px rgba(0,0,0,0.75);
    transition: box-shadow .3s ease;
}
.git-form.gitFormOpen {
    opacity: 1;
    transform: translateX(0);
    z-index: 1000;
}
.git-form .le_form_name {
    font-size: 36px !important;
    line-height: 45px !important;
    margin-bottom: 20px !important;
}
.git-form input[type="submit"].seFormButton {
    display: block !important;
    width: 100% !important;
    font-size: 20px !important;
    padding: 12px 20px !important;
    text-transform: uppercase !important;
}
.git-form .le-captcha {
    margin: -25px 0 -15px 0 !important;
}
.recaptcha-terms {
    padding: 0 !important;
}
@media (max-width: 767px) {
    .git-form {
        width: 300px !important;
        height: 520px !important;
    }
}
@media (min-width: 767px) {
    .git-form {
        /*height: 365px !important;*/
        height: 430px !important;
    }
    .pop-up-form {
        padding: 0 50px;
    }
}
.le-edit-open .git-form {
    position: relative !important;
    opacity: 1 !important;
    z-index: 1000 !important;
    margin-left: -100px;
}


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

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

.se_siteBranding img {
    width: 55px;
    height: auto;
}


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

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

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

/* Header
----------------------------------------------------------------------------------------------------*/
.header-wrap {
    width: 100%;
    z-index: 300;
    padding: 0px;
}
.header {
    padding: 0 20px;
}

/* 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-main);
}
.OpenMobileMenu .navicon:after {
    color: var(--bg-main);
    content: '\f00d';
    font-size: 25px;
    font-family: 'FontAwesome';
}
.navicon:hover {
    cursor: pointer;
}
.MainMenu {
    display: block;
    padding-top: 10px;
    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: 'Open Sans', sans-serif;
    margin: 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);
}
.Menu1 a {
    background-color: var(--bg-color);
    color: #fff !important;
    padding: 10px 20px !important;
}
.Menu1 a:hover {
    background-color: var(--bg-hover);
    color: #ffffff !important;
}
.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: 'Open Sans', 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 ---- */
/* ---- Separate Mobile Menu ---- */
/* ---- Separate Mobile Menu ---- */
.primary-mobile-menu {
    background-color: #fff;
    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;
    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: 20px 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: 'Open Sans', 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 li.le_menuitem_level_0 a:hover {
	/*color: #323232;*/
}

.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: 'Open Sans', sans-serif;
    color: var(--bg-main);
	font-size: 15px !important;
	line-height: 1em;
	text-decoration: none;
    text-transform: none;
	background-image: none;
}
.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
----------------------------------------------------------------------------------------------------*/

.footer {
    background-color: #191919;
    padding: 50px 0 !important;
}
.footer-side {
    padding: 10px 0;
}
.footer p {
    color: #ffffff;
    font-size: 12px;
}
.footer p a {
    color: #ffffff;
}
.footer p a:hover {
    color: #d3d1d1;
}
.se_social {
    text-align: right;
}
.se_social:before {
    content:'All Rights Reserved. Copyright 2025';
    color: #fff;
    margin-right: 10px;
    font-size: 12px;
}
.se_social a {
    color: #ffffff;
    margin: 0 1px;
    font-size: 14px;
}
.se_social a:hover {
    color: #d3d1d1;
}
.footer-middle {
    background-color: var(--bg-main);
    padding: 20px 0 80px 0;
}
.footer-middle p, .footer-middle p a {
    color: #ffffff;
}
.footer-middle p a:hover {
    color: #d3d1d1;
}
.footer-bottom {
    text-align: center;
    bottom: 0;
    display: block;
    width: 100%;
    z-index: 10000;
    position: fixed;
    bottom: 0;
    color: #ffffff;
    padding: 0 8px;
    background-color: #cc2a2c;
}
.footer-bottom p {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
}
.footer-bottom .se_button.button2 a, .footer-bottom a.se_button.button2 {
    border: 1px solid #fff !important;
    color: #fff !important;
}
.footer-bottom .se_button.button2 a:hover, .footer-bottom a:hover.se_button.button2 {
    background-color: #fff !important;
    color: #000 !important;
}

/* 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: 30px 0 !important;
    }
    .footer-side {
        padding: 0;
    }
    .footer img {
        margin-top: 15px;
    }
    .footer-bottom {
        display: none;
    }
    .right-cta, .left-cta {
        display: none;
    }
    .mobile-center {
        text-align: center;
    }
    .textbox { 
        text-align: center;
    }
    .footer, .footer-middle, .footer-bottom, .se_social {
        text-align: center;
    }
    .footer, .footer-middle {
        padding: 30px 0;
    }
    .title-text h1:before {
        left: -80%;
    }
    .title-text h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .title-text h2:before {
        left: -80%;
    }
    .title-text h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .bio {
        height: 450px;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only img {
        margin-bottom: 20px;
    }
    .service li h2 {
        width: 40px;
    }
    #blog_sidebar {
        display: none;
    }
    #blog_post_listing {
        width: 100% !important;
    }
    .feature_blog_image {
        width: 100% !important;
        height: auto !important;
    }
    .feature_blog_image img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 15px;
    }
    .feature_blog_text {
        margin: 0 !important;
    }
    .uppertext2 {
        padding: 0 30px;
    }
    .uppertext2 h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .uppertext2 p {
        font-size: 12px;
        line-height: 20px;
    }
    .uppertext2 {
        top: 25px;
    }
}
@media (max-width: 768px) {
    .Menu1 a {
        width: 145px !important;
        margin-top: 20px;
    }
}
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    .textbox {
        height: 500px;
        display: table-cell;
        vertical-align: middle;
        padding: 0 25px;
    }
    .header-wrap {
        background-color: #fff;
        position: fixed;
        top: 0;
        width: 100%;
        margin: 0 auto;
    }
    .less-gutters {
        padding: 0 25px 0 0;
    }
    .left-cta h3 {
        left: -120px;
    }
    .InsideMenu a {
        padding: 5px 8px;
        font-size: 10px;
    }
    .inner-content {
        margin-top: 75px;
    }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navicon {
        display: none;
    }
    .primary-mobile-menu {
        display: none;
    }
    .testimonialbox {
        padding: 0 15%;
    }
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 10px 0 10px;
        font-size: 14px;
    }
    .InsideMenu a {
        font-size: 13px;
        padding: 5px 12px
    }
    .bio h2 {
        font-size: 24px;
    }
    .left-cta h3 {
        left: -100px;
    }
    .row-same-height {
        display:table;
        width: 100%;
    }
    .row-same-height [class^="col-"],
    .row-same-height [class*="col-"]{
        display: table-cell;
        float: none;
        vertical-align: middle;
    }
    
    .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;
    }
    .blog_post_listing_sidebar {
        width: 70% !important;
    }
    #blog_sidebar {
        width: 30% !important;
        padding: 0 0 0 75px;
    }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .MainMenu li.le_menuitem_level_0 a {
        margin: 0 15px 0 15px;
        font-size: 16px;
    }
    .InsideMenu a {
        font-size: 16px;
    }
    .bio h2 {
        font-size: 28px;
    }
    .uppertext2 {
        padding: 0 200px;
    }
    .uppertext2 h3 {
        font-size: 34px;
        line-height: 1.2em;
    }
    .uppertext2 p {
        font-size: 18px;
        line-height: 1.4em;
    }
}

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

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

.blog_post_listing {
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.blog_post_listing_content {
    float: none !important;
    overflow: auto !important;
}
#blog_post_listing .feature_blog_text {
    float: none !important;
}
.feature_blog_image {
    float: left !important;
    margin-right: 20px;
}
.blog_post_listing_title_link {
    font-size: 20px !important;
    color: var(--bg-main) !important;
    text-transform: uppercase;
}
.blog_post_listing h1 {
    line-height: 20px !important;
    margin-bottom: 0px !important;
    color: var(--bg-main) !important;
}
.blog_post_listing_footer_hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.read_more_div a {
    background-color: #76b0df;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 15px !important;
    margin-top: 10px;
}
.a.read_more_link {
    display: table !important;
}
a.read_more_link {
    display: table;
    border: 1px solid #5c5c5c;
    color: #5c5c5c;
    padding: 7px 10px;
    background-color: #ffffff;
    font-size: 13px;
    margin-top: 10px;
    text-decoration: none;
    text-transform: uppercase;
}
a.read_more_link:hover {
    background-color: #5c5c5c;
    color: #ffffff;
}
.blog_post_listing_footer_hr {
    display: none;
}
@media (min-width: 768px) and (max-width: 992px) { 
    .blog_post_listing_sidebar {
        width: 500px !important;
    }
}

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

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

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

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

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

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

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

.le-edit-open.expanded-view #auroraContentContainer,
.le-design-open.expanded-view #auroraContentContainer{
    left: 0;
}
/* ------ Edit Region ------- */
.le_region_overlay_container_inside {
    position: relative;
    height: 28px;
    line-height: 28px;
    padding: 0 0 0 5px;
}
.edit-region-icon {
    color: white;
    background: #537fbc;
    font-size: 16px;
    margin: 0;
    right: 0;
    height: 28px;
    padding-left: 3px;
    line-height: 29px;
    width: 30px;
    text-align: center;
    top: 0;
    position: absolute;
    cursor: pointer; 
}

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

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

/*----------Hiding Style Editor  (for use with Premium sites with Regions) END-------*/
.le-edit-open .cta a {
    position: relative;
}
.le-edit-open .textbox {
    height: auto;
}
.le-edit-open .mobile-only {
    display: block;
}
.le-logged-in .footer-bottom {
    position: relative !important;
    margin-bottom: 40px;
    z-index: 0 !important;
}
.le-logged-in .footer-middle {
    padding: 20px 0;
}
.le-logged-in .header-wrap {
    position: relative;
}
.le-logged-in .inner-content {
    margin-top: 0 !important;
}
/*-------------- Account Preset ----------------- */
/*-------------- Account Preset [Desktop]----------------- */
.aurora_allison #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_allison #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_allison #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_book-now #le_section-two-area1 {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_book-now2 #le_section-two-area1 {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_caitlin #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_caitlin #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_caitlin #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_careers #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_careers #le_section-three-area9 {
    padding-top: 10px;
}
.aurora_careers #le_section-two {
}
.aurora_carlos #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_carlos #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_carlos #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_cesar #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_cesar #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_cesar #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_cindy-schnabel #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_cindy-schnabel #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_sonia-vate #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_contact #le_section-three {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dekel #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dekel #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_dekel #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_dinorah #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_dinorah #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_dinorah #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_elad #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_elad #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_elad #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_sabrina #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_sabrina #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_sabrina #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_guy #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_guy #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_guy #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_home #le_section-four {
    padding-top: 100px;
    padding-bottom: 100px;
}
.aurora_home #le_section-four-area1 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/owners.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 500px;
}
.aurora_home #le_section-four-area2 {
}
.aurora_home #le_section-three-area1 {
}
.aurora_home #le_section-three-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/man-with-scissors/man-with-scissors_1000x1000.jpg);
    background-size: cover;
    background-position: center center;
    padding-top: 500px;
}
.aurora_home #le_section-two {
    padding-top: 50px;
    padding-bottom: 50px;
}
.aurora_home #le_section-two-area2 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/woman-long-hair-highlights/woman-long-hair-highlights_1000x1061.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-two-area3 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/woman-straight-blonde-hair.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-two-area4 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/hand-through-womans-hair/hand-through-womans-hair_1000x1125.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-two-area6 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/woman-long-hair-big-curls.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_home #le_section-two-area7 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/painting-nails/painting-nails_1000x748.jpg);
    background-size: cover;
    background-position: center center;
}
.aurora_home #le_section-two-area8 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/woman-brown-hair-white-dress/woman-brown-hair-white-dress_1000x1255.jpg);
    background-size: cover;
    background-position: top center;
}
.aurora_irina #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_irina #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_irina #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_jean-marc #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_jean-marc #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_jean-marc #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_jose #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_jose #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_jose #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_landing-page-hair-coloring #le_section-eight {
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_landing-page-hair-coloring #le_section-eight-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-coloring #le_section-five {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-miami-woman-beach-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 200px;
    padding-bottom: 200px;
}
.aurora_landing-page-hair-coloring #le_section-five-area10 {
}
.aurora_landing-page-hair-coloring #le_section-five-area11 {
}
.aurora_landing-page-hair-coloring #le_section-five-area5 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-coloring #le_section-four {
    padding-top: 40px;
}
.aurora_landing-page-hair-coloring #le_section-four-area1 {
}
.aurora_landing-page-hair-coloring #le_section-four-area13 {
    margin-top: 50px;
}
.aurora_landing-page-hair-coloring #le_section-four-area3 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-coloring #le_section-nine {
    padding-bottom: 100px;
}
.aurora_landing-page-hair-coloring #le_section-nine-area1 {
    padding-right: 50px;
}
.aurora_landing-page-hair-coloring #le_section-nine-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-blonde-hair-flip-hero-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: 50px;
    padding-top: 200px;
    padding-bottom: 250px;
}
.aurora_landing-page-hair-coloring #le_section-nine-area2 {
}
.aurora_landing-page-hair-coloring #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-blonde-hair-flip-hero-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-top: 200px;
    padding-bottom: 150px;
}
.aurora_landing-page-hair-coloring #le_section-seven {
}
.aurora_landing-page-hair-coloring #le_section-seven-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-coloring #le_section-seven-area4 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-coloring #le_section-seven-area5 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-coloring #le_section-seven-area6 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-coloring #le_section-seven-area7 {
}
.aurora_landing-page-hair-coloring #le_section-seven-area8 {
}
.aurora_landing-page-hair-coloring #le_section-six {
    padding-bottom: 100px;
}
.aurora_landing-page-hair-coloring #le_section-six-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-coloring #le_section-six-area9 {
    margin-top: 25px;
}
.aurora_landing-page-hair-coloring #le_section-three {
    padding-bottom: 50px;
}
.aurora_landing-page-hair-coloring #le_section-three-area11 {
    margin-top: -295px;
}
.aurora_landing-page-hair-coloring #le_section-two {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_landing-page-hair-coloring #le_section-two-area10 {
}
.aurora_landing-page-hair-coloring #le_section-two-area11 {
    padding-right: 75px;
}
.aurora_landing-page-hair-coloring #le_section-two-area9 {
}
.aurora_landing-page-hair-cuts #le_section-eight {
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_landing-page-hair-cuts #le_section-eight-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-cuts #le_section-five {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-miami-woman-beach-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 200px;
    padding-bottom: 200px;
}
.aurora_landing-page-hair-cuts #le_section-five-area5 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-cuts #le_section-five-area6 {
}
.aurora_landing-page-hair-cuts #le_section-five-area7 {
}
.aurora_landing-page-hair-cuts #le_section-four {
}
.aurora_landing-page-hair-cuts #le_section-four-area1 {
}
.aurora_landing-page-hair-cuts #le_section-four-area3 {
    padding-top: 50px;
    padding-right: 10%;
    padding-left: 10%;
}
.aurora_landing-page-hair-cuts #le_section-nine {
    padding-bottom: 100px;
}
.aurora_landing-page-hair-cuts #le_section-nine-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-miami-hair-cuts.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 50px;
    padding-top: 200px;
    padding-bottom: 250px;
}
.aurora_landing-page-hair-cuts #le_section-nine-area2 {
}
.aurora_landing-page-hair-cuts #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/red-market-miami-hair-cut-right-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-top: 250px;
    padding-bottom: 125px;
}
.aurora_landing-page-hair-cuts #le_section-seven {
}
.aurora_landing-page-hair-cuts #le_section-seven-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-cuts #le_section-seven-area4 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-cuts #le_section-seven-area5 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-cuts #le_section-seven-area6 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-cuts #le_section-seven-area7 {
}
.aurora_landing-page-hair-cuts #le_section-seven-area8 {
}
.aurora_landing-page-hair-cuts #le_section-six {
    padding-bottom: 100px;
}
.aurora_landing-page-hair-cuts #le_section-six-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-cuts #le_section-six-area9 {
    margin-top: 25px;
}
.aurora_landing-page-hair-cuts #le_section-three {
    padding-bottom: 50px;
}
.aurora_landing-page-hair-cuts #le_section-two {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_landing-page-hair-cuts #le_section-two-area10 {
}
.aurora_landing-page-hair-cuts #le_section-two-area9 {
}
.aurora_landing-page-hair-extensions #le_section-eight {
    padding-top: 125px;
    padding-bottom: 125px;
}
.aurora_landing-page-hair-extensions #le_section-eight-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-extensions #le_section-five {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-miami-woman-beach-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-top: 200px;
    padding-bottom: 200px;
}
.aurora_landing-page-hair-extensions #le_section-five-area10 {
}
.aurora_landing-page-hair-extensions #le_section-five-area11 {
}
.aurora_landing-page-hair-extensions #le_section-five-area5 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-extensions #le_section-four {
    padding-top: 40px;
}
.aurora_landing-page-hair-extensions #le_section-four-area1 {
}
.aurora_landing-page-hair-extensions #le_section-four-area13 {
    margin-top: 50px;
}
.aurora_landing-page-hair-extensions #le_section-four-area3 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-extensions #le_section-nine {
    padding-bottom: 100px;
}
.aurora_landing-page-hair-extensions #le_section-nine-area1 {
    padding-right: 50px;
}
.aurora_landing-page-hair-extensions #le_section-nine-area12 {
    background-image: url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-extension-offerings.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: 50px;
    padding-top: 200px;
    padding-bottom: 250px;
}
.aurora_landing-page-hair-extensions #le_section-nine-area2 {
}
.aurora_landing-page-hair-extensions #le_section-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/background/red-market-hero-hair-extensions.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-top: 200px;
    padding-bottom: 150px;
}
.aurora_landing-page-hair-extensions #le_section-seven {
}
.aurora_landing-page-hair-extensions #le_section-seven-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-extensions #le_section-seven-area4 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-extensions #le_section-seven-area5 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-extensions #le_section-seven-area6 {
    margin-bottom: 25px;
}
.aurora_landing-page-hair-extensions #le_section-seven-area7 {
}
.aurora_landing-page-hair-extensions #le_section-seven-area8 {
}
.aurora_landing-page-hair-extensions #le_section-six {
    padding-bottom: 100px;
}
.aurora_landing-page-hair-extensions #le_section-six-area3 {
    margin-bottom: 50px;
}
.aurora_landing-page-hair-extensions #le_section-six-area9 {
    margin-top: 25px;
}
.aurora_landing-page-hair-extensions #le_section-three {
    padding-bottom: 50px;
}
.aurora_landing-page-hair-extensions #le_section-three-area11 {
    margin-top: -295px;
}
.aurora_landing-page-hair-extensions #le_section-two {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_landing-page-hair-extensions #le_section-two-area10 {
}
.aurora_landing-page-hair-extensions #le_section-two-area11 {
    padding-right: 75px;
}
.aurora_landing-page-hair-extensions #le_section-two-area13 {
}
.aurora_landing-page-hair-extensions #le_section-two-area14 {
    padding-left: 50px;
}
.aurora_landing-page-hair-extensions #le_section-two-area9 {
}
.aurora_lila #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_lila #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_lila #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_linda #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_linda #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_linda #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_marlies #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_marlies #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_marlies #le_section-two-area10 {
    padding-top: 25px;
}
.aurora_martin #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_martin #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_our-policies #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_our-policies #le_section-two-area1 {
}
.aurora_our-story #le_section-five {
    padding-top: 100px;
    padding-bottom: 75px;
}
.aurora_our-story #le_section-five-area1 {
}
.aurora_our-story #le_section-three {
    padding-top: 75px;
    padding-bottom: 100px;
}
.aurora_our-story #le_section-three-area2 {
}
.aurora_products-and-services #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services #le_section-one-area1 {
}
.aurora_services #le_section-one-area2 {
}
.aurora_services #le_section-six-area1 {
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}
.aurora_services #le_section-two {
    padding-top: 50px;
    padding-bottom: 30px;
}
.aurora_services-old #le_section-eight {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-eleven {
    background-color: rgb(241, 241, 241);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-five {
    background-color: rgb(241, 241, 241);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-nine {
    background-color: rgb(241, 241, 241);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-seven {
    background-color: rgb(241, 241, 241);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-six {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-ten {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-three {
    background-color: rgb(241, 241, 241);
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_services-old #le_section-three-area2 {
}
.aurora_services-old #le_section-two {
    padding-top: 125px;
    padding-right: 0px;
    padding-bottom: 125px;
    padding-left: 0px;
}
.aurora_sms-terms-and-conditions #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_sms-terms-and-conditions #le_section-two-area1 {
}
.aurora_sonia-vate #le_section-four {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_sonia-vate #le_section-two {
    padding-top: 0px;
    padding-bottom: 0px;
}
.aurora_terms-and-conditions #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
}
.aurora_terms-and-conditions #le_section-two-area1 {
}
.aurora_thank-you #le_section-five {
    background-color: rgb(25, 25, 25);
}
.aurora_thank-you #le_section-four {
    background-color: rgb(25, 25, 25);
}
.aurora_thank-you #le_section-six {
    background-color: rgb(25, 25, 25);
}
.aurora_thank-you #le_section-three {
    background-color: rgb(25, 25, 25);
}
.aurora_thank-you #le_section-two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://3989ac5bcbe1edfc864a-0a7f10f87519dba22d2dbc6233a731e5.ssl.cf2.rackcdn.com/redmarketmiami/red-market-miami-hair-cut-right-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding-top: 300px;
    padding-bottom: 200px;
}
.aurora_the-artists #le_section-two {
    padding-top: 30px;
    padding-bottom: 75px;
}
.aurora_the-artists #le_section-two-area10 {
}
.aurora_the-artists #le_section-two-area11 {
}
.aurora_the-artists #le_section-two-area12 {
}
.aurora_the-artists #le_section-two-area13 {
}
.aurora_the-artists #le_section-two-area14 {
}
.aurora_the-artists #le_section-two-area15 {
}
.aurora_the-artists #le_section-two-area16 {
}
.aurora_the-artists #le_section-two-area17 {
}
.aurora_the-artists #le_section-two-area18 {
}
.aurora_the-artists #le_section-two-area19 {
}
.aurora_the-artists #le_section-two-area2 {
}
.aurora_the-artists #le_section-two-area20 {
}
.aurora_the-artists #le_section-two-area21 {
}
.aurora_the-artists #le_section-two-area3 {
}
.aurora_the-artists #le_section-two-area4 {
}
.aurora_the-artists #le_section-two-area5 {
}
.aurora_the-artists #le_section-two-area6 {
}
.aurora_the-artists #le_section-two-area7 {
}
.aurora_the-artists #le_section-two-area8 {
}
.aurora_the-artists #le_section-two-area9 {
}

/*-------------- Account Preset [Desktop] End----------------- */
/*-------------- Account Preset [Tablet]----------------- */
@media screen and (max-width: 991.98px) {
    .aurora_allison #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_allison #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_allison #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-now #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_book-now2 #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_caitlin #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_caitlin #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_caitlin #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_careers #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_careers #le_section-three-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_careers #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_carlos #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_carlos #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_carlos #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cesar #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cesar #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cesar #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cindy-schnabel #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_cindy-schnabel #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sonia-vate #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_contact #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dekel #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dekel #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dekel #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dinorah #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dinorah #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_dinorah #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elad #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elad #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_elad #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sabrina #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sabrina #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sabrina #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_guy #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_guy #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_guy #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-four-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_home #le_section-two-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_irina #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_irina #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_irina #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jean-marc #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jean-marc #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jean-marc #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jose #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jose #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_jose #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-eight-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-five-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-five-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-five-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-four-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-six-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-six-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-three-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-coloring #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-eight-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-five-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-five-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-five-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-nine-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-six-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-six-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-cuts #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-eight-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-five-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-five-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-five-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-four-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-four-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-four-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-one {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-six-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-six-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-three-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area14 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area9 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_lila #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_lila #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_lila #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_linda #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_linda #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_linda #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_marlies #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_marlies #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_marlies #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_martin #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_martin #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_our-policies #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_our-policies #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_our-story #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_our-story #le_section-five-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_our-story #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_our-story #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_products-and-services #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services #le_section-one-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services #le_section-one-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services #le_section-six-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-eight {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-eleven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-nine {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-seven {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-ten {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-three-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_services-old #le_section-two {
    padding-top: 75px;
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sms-terms-and-conditions #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sms-terms-and-conditions #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sonia-vate #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_sonia-vate #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_terms-and-conditions #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_terms-and-conditions #le_section-two-area1 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you #le_section-five {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you #le_section-four {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you #le_section-six {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you #le_section-three {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_thank-you #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area10 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area11 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area12 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area13 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area14 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area15 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area16 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area17 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area18 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area19 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area2 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area20 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area21 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area3 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area4 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area5 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area6 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area7 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area8 {
    }
}
@media screen and (max-width: 991.98px) {
    .aurora_the-artists #le_section-two-area9 {
    }
}

/*-------------- Account Preset [Tablet] End----------------- */
/*-------------- Account Preset [Mobile]----------------- */
@media screen and (max-width: 767.98px) {
    .aurora_allison #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_allison #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_allison #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-now #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_book-now2 #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_caitlin #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_caitlin #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_caitlin #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_careers #le_section-three {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_careers #le_section-three-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_careers #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_carlos #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_carlos #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_carlos #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cesar #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cesar #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cesar #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cindy-schnabel #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_cindy-schnabel #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sonia-vate #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_contact #le_section-three {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dekel #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dekel #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dekel #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dinorah #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dinorah #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_dinorah #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elad #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elad #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_elad #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sabrina #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sabrina #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sabrina #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_guy #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_guy #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_guy #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four {
    padding-top: 50px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area1 {
    margin-bottom: 25px;
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-four-area2 {
    padding-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-area1 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-three-area2 {
    margin-top: 25px;
    padding-top: 250px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two {
    padding-top: 10px;
    padding-bottom: 10px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_home #le_section-two-area8 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_irina #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_irina #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_irina #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jean-marc #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jean-marc #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jean-marc #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jose #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jose #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_jose #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-eight {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-eight-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-five {
    padding-top: 100px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-five-area10 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-five-area11 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-five-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-four {
    margin-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-four-area1 {
    margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-four-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-four-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine-area1 {
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine-area12 {
    margin-top: 0px;
    padding-top: 125px;
    padding-bottom: 125px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-nine-area2 {
    padding-top: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-one {
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area7 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-seven-area8 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-six-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-six-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-three-area11 {
    margin-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-two {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-two-area10 {
    margin-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-two-area11 {
    margin-bottom: 50px;
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-coloring #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-eight-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-five {
    padding-top: 100px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-five-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-five-area6 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-five-area7 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-four {
    margin-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-four-area1 {
    margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-four-area3 {
    padding-right: 0px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-nine {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-nine-area12 {
    margin-top: 0px;
    padding-top: 125px;
    padding-bottom: 125px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-nine-area2 {
    padding-top: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-one {
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area7 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-seven-area8 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-six-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-six-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-two {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-two-area10 {
    margin-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-cuts #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-eight {
    padding-bottom: 75px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-eight-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-five {
    padding-top: 100px;
    padding-bottom: 100px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-five-area10 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-five-area11 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-five-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-four {
    margin-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-four-area1 {
    margin-bottom: 30px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-four-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-four-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine {
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine-area1 {
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine-area12 {
    margin-top: 0px;
    padding-top: 125px;
    padding-bottom: 125px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-nine-area2 {
    padding-top: 20px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-one {
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area7 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-seven-area8 {
    margin-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-six-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-six-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-three-area11 {
    margin-top: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-two {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area10 {
    margin-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area11 {
    padding-right: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area14 {
    margin-top: 25px;
    padding-left: 0px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_landing-page-hair-extensions #le_section-two-area9 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_lila #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_lila #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_lila #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_linda #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_linda #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_linda #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_marlies #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_marlies #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_marlies #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_martin #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_martin #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_our-policies #le_section-two {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_our-policies #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_our-story #le_section-five {
    padding-top: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_our-story #le_section-five-area1 {
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_our-story #le_section-three {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_our-story #le_section-three-area2 {
    padding-top: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_products-and-services #le_section-two {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services #le_section-one-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services #le_section-one-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services #le_section-six-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-eight {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-eleven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-nine {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-seven {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-ten {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-three-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_services-old #le_section-two {
    padding-top: 50px;
    padding-bottom: 50px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sms-terms-and-conditions #le_section-two {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sms-terms-and-conditions #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sonia-vate #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_sonia-vate #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_terms-and-conditions #le_section-two {
    padding-top: 25px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_terms-and-conditions #le_section-two-area1 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you #le_section-five {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you #le_section-four {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you #le_section-six {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you #le_section-three {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_thank-you #le_section-two {
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 25px;
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area10 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area11 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area12 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area13 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area14 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area15 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area16 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area17 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area18 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area19 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area2 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area20 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area21 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area3 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area4 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area5 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area6 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area7 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area8 {
    }
}
@media screen and (max-width: 767.98px) {
    .aurora_the-artists #le_section-two-area9 {
    }
}

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