/*
Theme Name: The Lash Lounge Franchising
Author: CyberMark
Author URI: https://www.cybermark.com
Version: 2.0.5
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: franchise
Template: cybermark
*/

@import url("../franchise-corporate/style.css");
@font-face {
    font-family: 'quentinregular';
    src: url('assets/fonts/quentin-webfont.woff2') format('woff2'),
         url('assets/fonts/quentin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.gform_confirmation_wrapper {
    color: #FFF;
    font-weight: 800;
}
#gform_confirmation_message_2 {
    color: #000;
    text-align: center;
}
.site-header-menu {
    justify-content: flex-end;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
}
.main-navigation a {
    font-weight: 400;
    font-size: 14px;
}
.main-navigation a.panel-active::after {
    width: 100%;
}
.location-button {
    margin-left: 1em;
}

.section__header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    visibility: hidden;
}
.section_content-header {
    margin-bottom: 25px;
    position: relative;
}
.section_content-header *, .section_content-body {
    visibility: hidden;
}
.section_content-header .h2 {
    font-family: "Playfair Display", serif;
    font-weight: normal;
    font-size: 46px;
    color: #000;
    line-height: 1.2;
}
.section__header-inside h2,.section_content-header h2 {
    font-family: "Playfair Display", serif;
    font-weight: normal;
    font-size: 46px;
    color: #000;
    line-height: 1.2;
}

.section_content-header .h4 {
    font-size: 14px;
    font-weight: 300;
    color: var(--amethyst);
    margin: 0;
}
.section-banner-tagline {
    display: block;
    font-family: quentinregular;
    /*font-family: "Dancing Script", serif;*/
    font-size: 96px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 0;
    line-height: 1em;
    position: absolute;
    top: 0;
    color: #d0d0d0;
    z-index: -1;
}
.section_content-body {
    margin-bottom: 25px;
}
.section_image.rounded_img {
  position: relative;
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  border-radius: 50%;
  overflow: hidden;
}

.section_image.rounded_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*Hero Section*/
.play_button {
    display: block;
    width: 100px;
    margin: 15px auto;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    position: relative;
}
.play_button span {
    width: 50%;
    display: block;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 8px;
    right: 0;
    transform: translateY(-50%);
}
.play_button svg * {
    stroke-width: 1;
    stroke: #FFF;
    opacity: .5;
}
.play_button:hover {
    border: 2px solid rgba(255,255,255,1);
}
.play_button:hover svg * {
    opacity: 1;
}
.hero__wrapper {
  margin-top: 90px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    min-height: 600px;
}
.hero__wrapper-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  animation: move 40s ease;
  /* Add infinite to loop. */
  
  -ms-animation: move 40s ease;
  -webkit-animation: move 40s ease;
  -0-animation: move 40s ease;
  -moz-animation: move 40s ease;
}
.hero__wrapper::before {
    content: "";
    background-color: #464646;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5;
    z-index: 1;
}
.hero__wrapper::after {
    content: "";
    background-image: url(assets/images/line_pattern.png);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    background-size: contain;
    background-position: left center;
}
.hero__wrapper-heading {
    position: relative;
    text-align: center;
    z-index: 1;
}
.hero__wrapper-inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.hero__wrapper-content {
    margin-top: 25px;
    color: #FFF;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.hero-btn {
    margin-top: 25px;
}
.hero__wrapper-heading h1 {
    color: #FFF;
    font-weight: 400;
    font-size: 90px;
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    letter-spacing: 8px;
}
.hero__wrapper-heading h2 {
    color: #FFF;
    font-family: "Playfair Display";
    font-weight: 300;
    text-transform: none;
    letter-spacing: 1px;
    font-size: 22px;
    font-style: italic;
}
.hero-banner-tagline {
    display: block;
    font-family: quentinregular;
    /*font-family: "Dancing Script", serif;*/
    font-size: 96px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 0;
    line-height: 1em;
    color: #FFF;
    text-transform: none;
    position: absolute;
    text-align: center;
    top: -70px;
    left: 0;
    right: 0;
    z-index: -1;
}
@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    transform: scale(1.0);
    -ms-transform: scale(1.0);
    /* IE 9 */
    
    -webkit-transform: scale(1.0);
    /* Safari and Chrome */
    
    -o-transform: scale(1.0);
    /* Opera */
    
    -moz-transform: scale(1.0);
    /* Firefox */
  }
  100% {
    transform: scale(1.4);
    -ms-transform: scale(1.4);
    /* IE 9 */
    
    -webkit-transform: scale(1.);
    /* Safari and Chrome */
    
    -o-transform: scale(1.4);
    /* Opera */
    
    -moz-transform: scale(1.4);
    /* Firefox */
  }
}
.btn.clear-btn.white-btn {
    color: #FFF;
    border-color: #FFF;
}
.btn.clear-btn.white-btn:hover {
    color: #FFF;
    border-color: var(--amethyst);
}
.section_image, .section_image * {
    visibility: hidden;
}

.industry__wrapper.full_width {
    padding: 50px 0;
}
.industry__wrapper {
    padding: 50px 0;
}
.industry__wrapper.full_width .section_image.fullscreen-img {
    margin-left: -25vw;
    max-height: 600px;
    overflow: hidden;
  position: relative;
  background-color: #DDD;
}
.industry__wrapper.full_width .section_image.fullscreen-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50%;
    background-color: #513550;
    height: 100%;
    width: 125%;
    opacity: .95;
    transform: skewY(45deg);
    z-index: 1;
}
.industry__wrapper.full_width .section_image.fullscreen-img::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -50%;
    background-color: #D3BCC5;
    height: 100%;
    width: 125%;
    opacity: .95;
    transform: skewY(-45deg);
}

#accolades {
    display: flex;
    position: relative;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
    padding: 60px 0 60px;
}
#accolades .section__header {
    text-align: left;
    margin: 0;
}
.accolades-columns {
  margin-top: 50px;
    /*columns: 4 200px;
    column-gap: 1rem;*/
}
#accolades .slick-dots li button::before {
    transform: scale(1);
}
#accolades .slick-dots li.slick-active button::before {

    transform: scale(1);
}
.accolade-col {
  margin-bottom: 1rem;
}

/*Difference*/
svg * {
    fill: none;
    stroke: url(#svg-gradient) ;
    stroke-width: 7;
  stroke-miterlimit: 10;
}
.difference__wrapper {
    margin-top: 25px;
}
.card-link {
  background: none;
  border: none;
  text-transform: none;
  letter-spacing: 0;
  line-height: 30px;
  box-shadow: none;
  padding: 0;
}
#content ul li.scene {
    margin: 0 0 30px;
    height: 100%;
    width: 50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    text-align: center;
    position: relative;
}
.scene::before {
    display:  none;
}
.scene .active:hover {
    opacity: 1;
}
.scene + .scene + .scene {
  margin: 0;
}
.card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
    border: none;
    border-radius: 0;
}
.card__face {
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--amethyst);
    border-radius: 10px;
}
.card__face--front {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ecedea+0,ededed+50,f8f8f6+50,dcdbd8+100 */
background: #ecedea; /* Old browsers */
background: -moz-linear-gradient(-53deg,  #ecedea 0%, #ededed 50%, #f8f8f6 50%, #dcdbd8 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-53deg,  #ecedea 0%,#ededed 50%,#f8f8f6 50%,#dcdbd8 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(127deg,  #ecedea 0%,#ededed 50%,#f8f8f6 50%,#dcdbd8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecedea', endColorstr='#dcdbd8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}
.card__icon {
    width: 100px;
    margin: 0 auto 25px;
    height: 100px;
}
.card__title {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--amethyst);
    font-size: 18px;
    font-weight: 800;
}
.card__face--back {
  background: var(--amethyst);
  transform: rotateY( 180deg );
}
.card.is-flipped {
  transform: rotateY(180deg);
}
.card_content {
    color: #FFF;
    font-weight: normal;
    padding: 0 15px;
}
.card__image-title {
    background-color: var(--amethyst);
    padding: 10px 75px;
    display: block;
    font-family: quentinregular;
    /*font-family: "Dancing Script", serif;*/
    font-size: 64px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 0;
    line-height: 1em;
    position: absolute;
    bottom: 50px;
    color: #FFF;
    left: -50px;
}
.tab-content {
    height: 100%;
}
.tab-image {
  display: none;
  height: 100%;
}
.tab-content > .tab-image.active {
  display: flex;
  height: 100%;
}

.card__image {
  height: 100%;
  position: relative;
  width: 100%;
}

.card__image-inner {
  background-size: cover;
  height: 100%;
  background-position: center center;
}
.difference_nav.nav.nav-tabs {
    border: none;
    margin: 0;
}

.card-object {
  color: #fff;
  display: block;
  float: left;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  width: auto;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.card-object.flip-in.card-1 .back, .card-object.flip-in.card-3 .back {
/*  -webkit-animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
          animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;*/
    z-index: 9999;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transform: rotate(0);
}
.card-object.flip-in.card-2 .back, .card-object.flip-in.card-4 .back {
    /*-webkit-animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;*/
    z-index: 9999;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transform: rotate(0);
}
/*.card-object.flip-out.card-1,
.card-object.flip-out.card-3 {
  animation: flip-2-hor-top-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) reverse both;
}
.card-object.flip-out.card-2, .card-object.flip-out.card-4 {
  animation: flip-2-hor-bottom-fwd 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) reverse both;
}*/
.card-object-hf .back {
          -ms-transform: rotateX(180deg);
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
transform: rotateX(180deg);
}
.face {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.face.front {
  z-index: 20;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.face.front:hover .card__title {
  opacity: 1;
}
.face.front .card__title::after {
    display: block;
    margin: 7% auto 8% auto;
    width: 100%;
    height: 1px;
    content: "";
    background-color: var(--amethyst);
    opacity: 0.5;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.15s;
    transition: -webkit-transform 0.15s;
    transition: transform 0.15s;
    transition: transform 0.15s, -webkit-transform 0.15s;
        transition-duration: 0.15s, 0.15s;
        transition-delay: 0s, 0s;
}
.face.front:hover .card__title::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 0.5;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.card__image-inner {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.15s;
    transition: -webkit-transform 0.15s;
    transition: transform 0.15s;
    transition: transform 0.15s, -webkit-transform 0.15s;
        transition-duration: 0.15s, 0.15s;
        transition-delay: 0s, 0s;
}
.tab-content > .tab-image.active .card__image-inner {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.face.back {
  z-index: 100;
}
.face.front .subtitle {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s;
    color: var(--amethyst);
}
.face.front:hover .subtitle {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

@-webkit-keyframes flip-2-hor-top-fwd {
  0% {
    -webkit-transform: translateY(0) translateZ(0) rotateX(0);
            transform: translateY(0) translateZ(0) rotateX(0);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
            transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}
@keyframes flip-2-hor-top-fwd {
  0% {
    -webkit-transform: translateY(0) translateZ(0) rotateX(0);
            transform: translateY(0) translateZ(0) rotateX(0);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
            transform: translateY(-100%) translateZ(100px) rotateX(-180deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}

@-webkit-keyframes flip-2-hor-bottom-fwd {
  0% {
    -webkit-transform: translateY(0) translateZ(0) rotateX(0);
            transform: translateY(0) translateZ(0) rotateX(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  100% {
    -webkit-transform: translateY(100%) translateZ(100px) rotateX(180deg);
            transform: translateY(100%) translateZ(100px) rotateX(180deg);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
}
@keyframes flip-2-hor-bottom-fwd {
  0% {
    -webkit-transform: translateY(0) translateZ(0) rotateX(0);
            transform: translateY(0) translateZ(0) rotateX(0);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  100% {
    -webkit-transform: translateY(100%) translateZ(100px) rotateX(180deg);
            transform: translateY(100%) translateZ(100px) rotateX(180deg);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
}
.difference__wrapper.numeric_content {
    padding: 100px 0;
    background-color: #EAE7E4;
    margin: 100px 0;
    position: relative;
}
.difference__wrapper.numeric_content::before {
    background-color: #eae7e4;
    content: "";
    position: absolute;
    top: -100px;
    width: 100%;
    height: 300px;
    left: 0;
    transform: skewY(5deg);
    z-index: -1;
}
.difference__wrapper.numeric_content::after {
    background-color: #eae7e4;
    content: "";
    position: absolute;
    bottom: -100px;
    width: 100%;
    height: 300px;
    left: 0;
    transform: skewY(-5deg);
    z-index: -1;
}
.numeric_col .card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin: -150px;
  float: left;
  perspective: 500px;
}

.numeric_col .card .content {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);

  transition: transform 1s;
  transform-style: preserve-3d;
}

.numeric_col .card:hover .content {
  transform: rotateX( 180deg ) ;
  transition: transform 0.5s;
}

.numeric_col .card .front,
.numeric_col .card .back {
  position: absolute;
  height: 100%;
  width: 100%;
  background: white;
  line-height: 300px;
  color: #03446A;
  text-align: center;
  border-radius: 5px;
  backface-visibility: hidden;
}

.numeric_col .card .back {
  background: #03446A;
  color: white;
  transform: rotateY( 180deg );
}
.numeric_digit {
    font-weight: 800;
    color: #FFF;
    display: block;
    text-align: center;
    font-size: 48px;
    letter-spacing: 2px;
    position: relative;
    line-height: 1;
}
.numeric_title {
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 14px;
    position: relative;
    line-height: 1;
}
.numeric_col {
    text-align: center;
    position: relative;
    font-size: 14px;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
}
/* entire container, keeps perspective */
.flip-container {
  perspective: 1000px;
}
  /* flip the pane when hovered */
.flip-container:hover .flipper .back {
    opacity: 1;
    z-index: 10;
    color: #FFF;
    padding: 0 15px;
    transition: all 500ms ease-in-out;
}
.flip-container:hover .flipper .front {
    opacity: 0;
    transition: all 500ms ease-in-out;
}
.flip-container, .numeric_col .front, .numeric_col .back {
    width: 100%;
    height: 250px;
}
/* flip speed goes here */
.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;

  position: relative;
}
.numeric_icon {
    max-width: 50px;
    margin: 0 auto 10px;
    position: relative;
}
.numeric_icon svg * {
    fill: #FFF;
    stroke: #FFF;
    stroke-width: 1px;
}
/* hide back of pane during swap */
.numeric_col .front, .numeric_col .back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.numeric_col .front .cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/* front pane, placed above back */
.numeric_col .front {
    background-color: rgba(0,0,0,.5);
}
.numeric_col.flipper::before {
    background-color: var(--amethyst);
    position: absolute;
    content: "";
    opacity: 1;
    z-index: 1;
}
.numeric_col.flipper::after {
    background-color: #D3BCC5;
    
    position: absolute;
    content: "";
    
    opacity: 1;
    left: 0;
    z-index: 0;
}
.numeric_col.flipper.flip1::before {
    top: -100px;
    left: -150px;
    width: 200px;
    height: 200px;
    transform: rotate(-45deg);
}
.numeric_col.flipper.flip1::after {
  top: 0;
    right: 0;
    width: 200%;
    height: 85px;
    transform: rotate(15deg);
    left: 0;
}
.numeric_col.flipper.flip3::before {
    bottom: -100px;
    left: -150px;
    width: 200px;
    height: 200px;
    transform: rotate(-45deg);
  }
.numeric_col.flipper.flip3::after {
    bottom: 0;
    right: 0;
    width: 200%;
    height: 85px;
    transform: rotate(-15deg);
    left: 0;
}
.numeric_col.flipper.flip4::before {
    top: 50%;
    left: -50px;
    width: 100px;
    height: 100px;
    transform: translateY(-50%) rotate(45deg);
    bottom: 0;
}
.numeric_col.flipper.flip4::after {
    bottom: 0;
    width: 200%;
    height: 100px;
    transform: rotate(45deg);
    left: -100%;
  }
.numeric_col.flipper.flip2::before {
    top: -100px;
    left: -150px;
    width: 200px;
    height: 200px;
    transform: rotate(-45deg);
  }
.numeric_col.flipper.flip2::after {
    bottom: 0;
    width: 200%;
    height: 100px;
    transform: rotate(45deg);
    left: -100%;
}

.numeric_col.flipper.flip1:hover::after {
    height: 100%;
    transition: all 300ms ease-in-out;
    transform: none;
}
.numeric_col.flipper.flip1:hover::before {
    height: 100%;
    transition: all 300ms ease-in-out;
        transition-delay: 0s;
    transform: none;
    transition-delay: 400ms;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
}
.numeric_col.flipper.flip3:hover::after {
    height: 100%;
    transition: all 300ms ease-in-out;
    transform: none;
}
.numeric_col.flipper.flip3:hover::before {
    height: 100%;
    transition: all 300ms ease-in-out;
        transition-delay: 0s;
    transform: none;
    transition-delay: 400ms;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
}
.numeric_col.flipper.flip4:hover::after {
    height: 100%;
    transition: all 300ms ease-in-out;
    transform: none;
    top: 0;
    transform: translateY(0);
}
.numeric_col.flipper.flip4:hover::before {
    height: 100%;
    transition: all 300ms ease-in-out;
        transition-delay: 0s;
    transform: none;
    transition-delay: 400ms;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    top: 0;
    transform: translateY(0);
}
.numeric_col.flipper.flip2:hover::after {
    height: 100%;
    transition: all 300ms ease-in-out;
    transform: none;
    top: 0;
    transform: translateY(0);
}
.numeric_col.flipper.flip2:hover::before {
    height: 100%;
    transition: all 300ms ease-in-out;
        transition-delay: 0s;
    transform: none;
    transition-delay: 400ms;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    top: 0;
    transform: translateY(0);
}
/* back, initially hidden pane */
.numeric_col .back {
    opacity: 0;
}

.leadership_tabs_nav.nav.nav-tabs {
    border: none;
    margin: 0;
}
.leadership-tab-content {
  display: none;
}
#content ul li.leadership_card {
    width: 33.3333%;
    padding: 0 15px;
    margin: 0;
}
#content ul li.leadership_card::before {
    display:  none;
}
.leadership_card .card__title {
    color: #FFF;
    text-shadow: 0 0 15px rgba(0,0,0,.5);
}

.leadership-tab-content.active {
  display: block;
}
.leadership_tabs {
    height: 100%;
}
.leadership__inner.bottom__content {
}
.leadership__inner.bottom__content .leadership-tab-content .section_content-header *, .leadership__inner.bottom__content .leadership-tab-content .section_content-body, .leadership__inner.bottom__content .leadership-tab-content .section_image, .leadership__inner.bottom__content .leadership-tab-content .section_image * {
  opacity: 1;
  visibility: visible;
}
.gform_wrapper {
    background: #fff;
    padding: 0;
}
.interest_form .gform_wrapper {
    background: #ebe1e5;
}
.leadership__inner {
    padding: 50px 0;
}
.leadership_tabs_nav.nav.nav-tabs {
    border: none;
    margin: 0;
    height: 100%;
    text-align: center;
}
.leadership_card .card {
    background-size: cover;
    background-position: center center;
}
.leadership_card a:hover .card::before {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    opacity: .2;
}
.leadership_card .card__image-content {
    left: 0;
    right: 0;
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    flex-direction: column;
    bottom: 0;
}
.card__image-content-headings {
    max-width: 160px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
}
.leadership_card .card__image-content .subtitle {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s;
        transition-duration: 0.15s;
        transition-delay: 0s;
    color: #FFF;
}
.leadership_card:hover .card__image-content .subtitle {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.leadership_card .card__image-content .card__title::after {
    display: block;
    margin: 7% auto 8% auto;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #FFF;
    opacity: 0.5;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.15s;
    transition: -webkit-transform 0.15s;
    transition: transform 0.15s;
    transition: transform 0.15s, -webkit-transform 0.15s;
        transition-duration: 0.15s, 0.15s;
        transition-delay: 0s, 0s;
    transition-duration: 0.15s, 0.15s;
    transition-delay: 0s, 0s;
}
.leadership_card:hover .card__image-content .card__title::after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.leadership-tab-content .section_image img {
    opacity: 0;
    transition: all 400ms ease-in-out;
}
.leadership-tab-content.active .section_image img {
    opacity: 1;
    transition: all 400ms ease-in-out;
}
.fade {
    transition: opacity .45s linear;
}
/*Partnership*/
.partner_section {
    margin-top: 50px;
    overflow: hidden;
}
.partner_section .section_content-header *, .partner_section .section_content-body {
    visibility: visible;
}
.partner_section .section_image.fullscreen-img {
    margin-right: -25vw;
    position: relative;
}
.section_image.fullscreen-img img {
    width: 100%;
}
/*Franchisees*/
#theFranchisees {
    padding-bottom: 0;
}
#theFranchisees .section_content-header *, #theFranchisees .section_content-body {
  visibility: visible;
}
#theFranchisees .full_width-bg  {
    background-color: var(--amethyst);
}
#theFranchisees .section__header {
    padding: 50px 0;
    color: #FFF;
}
#theFranchisees .section__header h2 {
    color: #FFF;
}
.franchise_col-inner {
    position: relative;
}
.franchise_col-inner.franchise_col_1::before {
    background-image: url(assets/images/gold_pattern.png);
background-size: 100%;
background-position: left top;
position: absolute;
height: 100%;
width: 100%;
top: 0;
content: "";
left: 0;
}
.franchise_col-inner.franchise_col_2::before {
background-image: url(assets/images/line_pattern.png);
background-size: 100%;
background-position: right bottom;
position: absolute;
height: 100%;
width: 100%;
top: 0;
content: "";
left: 0;
}
.franchise_col-content {
    padding: 0 25px;
    height: 100%;
    align-items: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.franchise_col-container {
    width: 33.3333%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.franchise_col-container.franchise_col-reverse {
    flex-direction: column-reverse;
    display: flex;
}
.amethyst-bg {
    background-color: var(--amethyst);
    color: #FFF;
}
.lavendar-bg {
    background-color: #D3BCC5;
}
.sepia-bg {
    background-color: #DAD5D0;
}
.franchise_col-content p {
    margin: 0;
}
.franchise_col {
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.franchise_col-content h3 {
    font-size: 30px;
    letter-spacing: 4px;
    color: black;
}
.franchise_col-content.amethyst-bg h3 {
    color: white;
}
.cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.videoWrapper {
  position: relative;
  width: 100%;
  height: 0;
}
.videoWrapper43 {
  padding-top: 75%;
}
.videoWrapper169 {
  padding-top: 56%;
}

.videoIframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.videoPoster {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    background-position: 50% 50%;
    background-size: 100% 100%;
    background-size: cover;
    text-indent: -999em;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 800ms, height 0s;
    -moz-transition: opacity 800ms, height 0s;
    transition: opacity 800ms, height 0s;
        transition-delay: 0s, 0s;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
}
.videoPoster:hover {
    box-shadow: none;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
}
.videoPoster::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border: 2px solid #fff;
    border-radius: 100%;
    -webkit-transition: border-color 300ms;
    -moz-transition: border-color 300ms;
    transition: border-color 300ms;
    -webkit-transform: scale(1);
    transform: scale(1);
    background-color: transparent;
}
.videoPoster:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -20px 0 0 -10px;
  border-left: 40px solid #fff;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  -webkit-transition: border-color 300ms;
  -moz-transition: border-color 300ms;
  transition: border-color 300ms;
}
.videoPoster:hover::before, .videoPoster:focus::before {
    border: 2px solid #FFF;
    background-color: transparent;
}
.videoPoster:hover:after, .videoPoster:focus:after {
  border-left-color: #fff;
}
.videoWrapperActive .videoPoster {
  opacity: 0;
  height: 0;
  -webkit-transition-delay: 0s, 800ms;
  -moz-transition-delay: 0s, 800ms;
  transition-delay: 0s, 800ms;
}
.franchisee_content {
padding: 50px 10%;
}
.franchisee_content p {
color: var(--amethyst);
letter-spacing: 2px;
}
.fran_owner {
font-family: "quentinregular";
font-size: 42px;
margin: 50px 0;
line-height: 1.1;
}
.fran_owner span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 15px;
    color: var(--amethyst);
}
.fran_owner {
position: relative;
}
.fran_owner::before {
content: "";
height: 2px;
width: 50px;
position: absolute;
top: 5px;
left: -60px;
background-color: var(--lavender);
}
.fran_owner {
margin-left: 75px;
}
/*Process*/
.nav.nav-pills {
    margin: 0;
    text-align: center;
    justify-content: center;
}
.process_nav .nav-item {
    display: inline-block;
    margin: 0 10px;
}
.process_nav .nav-pills .nav-link {
    border-radius: 5px;
    border: 1px solid var(--amethyst);
    display: inline-block;
    min-width: 200px;
    text-align: center;
    color: var(--amethyst);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}
.process_nav .nav-pills .nav-link.active,.process_nav .nav-pills .nav-link:hover {
    background-color: var(--amethyst);
    color: #FFF;
    transition: all 300ms ease-in-out;
}
.tab_container {
    display: none;
    padding: 50px 0;
}
.tab_container.active {
    display: block;
}

.tab_header {

    position: relative;
    margin-bottom: 50px;
    line-height: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}
.tab_header::before {
    height: 1px;
    width: 100%;
    right: 0;
    position: absolute;
    content: "";
    top: 50%;
    background-color: #BABABA;
}
.tab_header-left {
    position: relative;
    text-align: left;
    display: inline-block;
    background-color: #FFF;
    padding-right: 10px;
}
.tab_header-left h3 {
    color: var(--amethyst);
    font-size: 30px;
    letter-spacing: 2px;
    margin: 0;
}
.tab_header-right {
    background-color: #FFF;
    position: relative;
    padding-left: 10px;
}
.tab_header-right .h5 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin: 0;
}
#theProcess .section__header {
    margin-top: 50px;
    margin-bottom: 50px;
}
.process-step-head {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.step_number {
    display: block;
    color: #929292;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.step_title {
    font-weight: 800;
    color: #000;
    font-size: 24px;
    margin: 0 0 25px;
    display: block;
}
.process-step-content {
    text-align: center;
    padding: 50px 0;
}
.process-col-content {
    text-transform: uppercase;
    color: #6c6c6c;
    letter-spacing: 2px;
    font-size: 16px;
    margin: 0 auto;
    font-weight: 400;
}
.process-step-slider .slick-arrow svg {
    width: 50px;
    height: 50px;
    border: 2px solid #513550;
    border-radius: 50px;
    padding: 10px;
    margin: 0 0 1em;
}
.process-step-slider .slick-arrow {
    text-transform: uppercase;
    color: #767676;
    height: auto;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    width: 50px;
padding: 0;
border: none;
border-radius: 0;
}
.process-step-slider .slick-arrow svg * {
    fill: #513550 !important;
    border: none;
    stroke: none;
}

.process-step-slider .slick-arrow:hover svg {
    background-color: #513550;
    fill: #FFF !important;
}
.process-step-slider .slick-arrow:hover svg * {
    fill: #FFF !important;
}
.process-step-slider .slick-arrow:hover {
    box-shadow: none;
    background: none;
}
.process-col-icon {
    max-width: 100px;
    margin: 0 auto 20px;
}

.territory_map svg * {
    stroke: inherit;
}
.territory_map svg .st0:hover, .territory_map svg .st1:hover, .territory_map svg .st2:hover, .territory_map svg .st3:hover, .territory_map svg .st4:hover {
    opacity: .9;
    cursor: pointer;
}
#theTerritory {
    background-color: #f9f9f9;
    margin-bottom: 100px;
    padding: 60px 0;
}
.establish_salons {
    margin: 50px auto 0;
    background-image: url(assets/images/gold_pattern.png);
    padding: ;
    border: 1px solid #d0d0d0;
    background-size: cover;
    box-shadow: 0 0 35px 0 rgba(0,0,0,.1);
    background-color: #FFF;
    position: relative;
    visibility: hidden;
}
.establish_salons_inner {
    color: var(--amethyst);
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.available_locations {
margin: 15px 0;
}
.location-list {
margin: 0;
list-style: none;
display: inline-block;
width: 100%;
}
.location-list li {
    float: left;
    width: 100%;
    padding-left: 25px;
    position: relative;
}
.location-list li::before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: 400;
}
.established__left {
    width: 50%;
    padding: 15px;
}
.established__right {
    width: 50%;
    position: relative;
}

.salons__header {
    position: relative;
    text-align: center;
    padding: 1em;
    background-color: var(--amethyst);
}
.salons__header .salons__header-title {
    color: #FFF;
    margin: 0;
    font-size: 36px;
    letter-spacing: 0;
}
.salons__header-title {
    color: var(--amethyst);
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    font-size: 2vw;
    line-height: 1.1;
    margin-bottom: 25px;
    display: block;
}
.salons__content ul {
    margin: 0;
}
.salons__content-location {
    padding: .5em 1em;
    display: block;
    border-bottom: 1px solid #DDD;
    background-color: #FFF;
    font-size: 16px;
    text-align: left;
}
.salons__header .close {
  position: absolute;
  color: var(--amethyst);
  opacity: 1;
  text-shadow: none;
  background-color: #DDD;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  right: -10px;
  top: -10px;
  border: 1px solid #000;
  text-align: center;
  text-indent: 2px;
  display: block;
  padding: 0;
}
.salons__content-location:nth-child(2n) {
    background-color: #f9f9f9;
}
.salons__content-location:last-child {
    border: none;
}
.establish_salons .btn {
}
.established_salonImg {
    overflow: hidden;
    display: flex;
    align-items: center;
height: 100%;
}
.territory_map svg * {
    stroke: #513550;
    stroke-width: 1;
}
#us-map {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    margin-bottom: 100px;
}
#theTerritory path:hover, #theTerritory circle:hover {
  stroke: #513550 !important;
  stroke-width:2px;
  stroke-linejoin: round;
  fill: url(#svg-gradient) !important;
  cursor: pointer;
}
#theTerritory #path67 {
  fill: none !important;
  stroke: #513550 !important;
  cursor: default;
}
#info-box {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  background-color: #ffffff;
  border: 1px solid var(--amethyst);
  border-radius: 5px;
  padding: 5px;
}
.infobox-heading {
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 14px;
}
.infobox-heading span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.infobox-heading span strong {
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 26px;
    line-height: 35px;
    border: 1px solid #513550;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-indent: 9px;
}
.infobox-heading span::before {
  position: absolute;
  content: "·";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 50px;
  color: var(--amethyst);
}
/*Get Started*/
.modal-dialog.modal-dialog-centered {
    max-width: 700px;
}
#getStarted {
  background-size: cover;
  background-image: url(assets/images/get-started.jpg);
  min-height: 600px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0;
}
#getStarted::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}
#getStarted h2, #getStarted .section__header {
    color: #FFF;
}
.interest_form {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    width: 600px;
}

.interest_form {
    background-color: rgb(235, 225, 229);
    padding: 25px 25px 0px 25px
}

.interest_form .gform_wrapper ul li.gfield {
    width: 50%;
    float: left;
    margin: 0;
        margin-left: 0px;
    clear: none;
    padding: 0 15px !important;
}
.interest_form .gform_wrapper ul li.gfield.textarea-field {
    width: 100%;
    margin-top: 10px;
}
.interest_form .gform_wrapper ul li.gfield.dropdown-form, .interest_form .gform_wrapper ul li.gfield.agreement-field {
  width: 100%;
margin-top: 12px;
}
.interest_form .gform_wrapper ul li.gfield.dropdown-form select {
padding: 15px !important;
border-radius: 5px;
color: #666;
font-size: 14px !important;
border: none;
font-weight: normal;

}
.interest_form .gform_wrapper ul li.gfield.agreement-field {
  color: #FFF;
  font-weight: 600;
}
.interest_form .gform_wrapper ul li.gfield.agreement-field .gfield_checkbox li input {
    margin: 0 10px 0 0;
}
.interest_form .gform_wrapper ul li.gfield.agreement-field .gfield_checkbox li {
    float: left;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.interest_form .gform_wrapper ul li.gfield input[type="text"] {
    padding: 15px !important;
    border-radius: 5px;
    color: #666;
    font-size: 14px !important;
    font-weight: normal;
}
.gform_wrapper .gform_footer {
    text-align: center;
}
.interest_form .gform_wrapper  .gform_button {
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 1em 3em;
    cursor: pointer;
    background: var(--amethyst);
    text-decoration: none;
    border: 2px solid var(--amethyst);
    color: var(--white);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    font-size: 15px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.interest_form .gform_wrapper  .gform_button:hover {
  border-color: var(--amethyst);
  color: var(--amethyst);
  background-color: transparent;
}
.animate__animated {
  animation-duration: 2s;
  animation-iteration-count: 1;
}
.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
}
.animate__slideInLeft, .animate__slideInRight, .animate__fadeInLeft, .animate__fadeInLeft, .animate__fadeInRight, .animate__fadeInUp, .animate__fadeInDown, .animate__fadeIn {
  visibility: visible;
}

.site-footer {
    margin: 0;
}
/*Modal*/
.modal-body.popupForm h3 {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: normal;
    font-size: 34px;
}
.modal-body.popupForm p {
    text-align: center;
    font-size: 14px;
}
.popupForm .gform_wrapper ul li.gfield {
    width: 100%;
    float: left;
    margin: 0;
        margin-left: 0px;
    clear: none;
}
.popupForm .gform_wrapper ul li.gfield input[type="text"], .popupForm .gform_wrapper ul li.gfield select, .gform_wrapper ul li.gfield input[type="text"], .gform_wrapper ul li.gfield select {
    padding: 10px !important;
    border-radius: 5px;
    color: #666;
    font-size: 14px !important;
    font-weight: normal;
    border: 1px solid #DDD;
    background-color: #f9f9f9;
    margin-top: 0;
    margin-bottom: 10px;
}
.popupForm .gform_wrapper .gform_footer {
    text-align: center;
}
.popupForm .gform_wrapper  .gform_button, #gform_2 input[type="submit"].gform_button, #gform_2 .button {
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 1em 3em;
    cursor: pointer;
    background: var(--amethyst);
    text-decoration: none;
    border: 2px solid var(--amethyst);
    color: var(--white);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    font-size: 15px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.popupForm .gform_wrapper  .gform_button:hover, #gform_2 input[type="submit"].gform_button:hover, #gform_2 .button:hover {
  border-color: var(--amethyst);
  color: var(--amethyst);
  background-color: transparent;
}
.mobile {
  display: none;
}
.faq .btn {
  background: transparent;
  border: none;
  color: var(--amethyst);
  padding: 20px 0;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: unset;
  width: 100%;
  text-align: left;
  position: relative;
  line-height: 1;
}
.faq .btn::before {
  border: none;
  color: var(--amethyst);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: unset;
  text-align: right;
  content: "-";
  position: absolute;
  right: 0;
  top: 20px;
  transform: scale(1);
  width: 100%;
  height: auto;
  line-height: 1;
  bottom: auto;
}
.faq .btn.collapsed::before {
  content: "+";
}
.faq .btn:hover, .faq .btn:focus {
    background: transparent;
    border: none;
    color: var(--amethyst);
    box-shadow: none;
    text-decoration: none;
}


@media only screen and (max-width: 1199px) {
.main-navigation a {
    font-weight: 400;
    font-size: 12px;
}
.hero__wrapper-heading h1 {
    font-size: 72px;
}  
.card_content {
    font-size: 12px;
    line-height: 1.6;
}
.location-button .btn {
    font-size: 13px;
}
.difference__wrapper.numeric_content {
    padding: 25px 0;
}
}
@media only screen and (max-width: 1198px) {
.menu-wrapper {
    display: none;
}
.mobile-menu {
    display: block;
}
.mobile-nav-menu {
    min-width: 300px;
}
}
@media only screen and (max-width: 991px) {
.hero__wrapper-heading h1 {
    font-size: 58px;
}
.hero-banner-tagline {
    font-size: 72px;
    top: -50px;
}
.difference_tabs .tab-content {
    display: none;
}
.flip-container {
    margin-bottom: 30px;
}
.leadership_tabs {
    height: 300px;
}
.process-col-content {
    font-size: 14px;
}
.franchise_col-inner.franchise_col_1::before, .franchise_col-inner.franchise_col_2::before {
  background-size: cover;
}
}
@media only screen and (max-width: 767px) {
#founderImage {
    width: 300px;
    margin: 0 auto;
    padding: 0;
    height: 300px;
}
#getStarted {
    height: 100%;
    padding: 50px 0;
}
.section_content {
    text-align: center;
}
#content ul li.scene {
  width: 100%;
  min-height: 300px;
}
.section-banner-tagline {
    left: 0;
    right: 0;
}
.industry__wrapper.full_width .section_image.fullscreen-img {
    margin-left: -25vw;
    margin-right: -25vw;
    margin-bottom: 40px;
}
.leadership-tab-content .section_image {
    display: none;
}
.leadership__inner.bottom__content {
    padding: 0;
}
.partner_section .section_image.fullscreen-img {
    margin-right: -25vw;
    position: relative;
    margin-left: -25vw;
    margin-bottom: 15px;
}
.franchise_col-container {
    width: 100%;
    position: relative;
}
.franchise_col {
    height: 250px;
}

.process-col-icon {
    max-width: 50px;
}
.process-col-content {
    font-size: 12px;
}
.gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
}
.interest_form .gform_wrapper ul li.gfield {
    width: 100%;
}
.interest_form {
  width: 350px;
}
.process_nav .nav-pills .nav-link {
    min-width: 150px;
    font-size: 12px;
}
}

@media only screen and (max-width: 767px) {
.hero__wrapper-heading h1 {
    font-size: 48px;
}
.hero-banner-tagline {
    font-size: 48px;
    top: -40px;
}
.process-step-content {
    padding: 25px 50px;
}
.scene, .card__face {
    min-height: 300px;
}
.partner_section .section_image.fullscreen-img {
    height: 100%;
    max-height: 300px;
    overflow: hidden;
}
.process-step-slider .slick-arrow .fa {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 14px;
}
.process-step-slider .slick-arrow {
    width: 45px;
    font-size: 12px;
}
.slick-prev.pull-left.slick-arrow {
    left: 0;
}
.slick-next.pull-right.slick-arrow {
    right: 0;
}
.process-step-slider .slick-arrow svg {
  width: 25px;
  height: 25px;
  padding: 0;
}
}

@media only screen and (max-width: 480px) {
  .industry__wrapper.full_width .section_image.fullscreen-img {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
}
.hero__wrapper {
    margin-top: 70px;
    height: 70vh;
}
.hero__wrapper-heading h1 {
    font-size: 24px;
}
.hero-banner-tagline {
    font-size: 34px;
    top: -32px;
}
.hero__wrapper-heading h2 {
    font-size: 16px;
}
.hero__wrapper-content {
    font-size: 13px;
}
.section_content-header .h2 {
    font-size: 30px;
    line-height: 36px;
}
.section__header-inside h2, .section_content-header h2 {
    font-size: 30px;
}
.scene {
    width: 100%;
}
.scene + .scene + .scene {
    margin: 0 0 30px;
}
.desktop {
  display: none;
}
.mobile {
  display: block;
}
.fran_owner {
    font-size: 24px;
}
.section_image {
    margin: 25px 0;
}
.leadership_mobile-col {
    height: auto;
    margin: 0 0 50px;
}
.leadership_mobile-col .section_content-header *, .leadership_mobile-col .section_content-body {
    visibility: visible;
}
.leadership_mobile-col .card {
    min-height: 300px;
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 25px;
}
.process_nav .nav-item {
    margin: 0 5px;
}
.process_nav .nav-pills .nav-link {
    min-width: 75px;
    font-size: 10px;
}
.process-step-col {
    margin-bottom: 15px;
}
}


.stateModal .modal-header {
  background-color: #513550;
  position: relative;
}

.stateModal .modal-header h5 {
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 24px;
}

.available__territories h5 {
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid #DDD;
    padding-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.available__territories h5::before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    top: -3px;
    background-repeat: no-repeat;
}
.available__territories h5.available::before {
    background-image: url(assets/images/available_icon.png);
}
.available__territories h5.established::before {
    background-image: url(assets/images/established_icon.png);
}
.available__territories ul {
  margin: 15px 0 0;
  list-style: none;
}

.available__territories ul li {
  position: relative;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.6;
}

.stateModal .modal-footer {
  border: none;
  text-align: center;
  justify-content: center;
  margin-top: 50px;
}
.gform_wrapper textarea.large {
    max-height: 100px;
    border-radius: 5px;
    font-size: 15px;
}

@media only screen and (max-width: 991px) {
.established__left, .established__right {
    width: 100%;
}
.established__left {
    padding: 60px 15px;
}
.salons__header-title {
    font-size: 36px;
}
.available__territories h5.established {
    margin-top: 25px;
}
}


/* Inline #12 | https://www.thelashlounge.com/franchise/ */

.accolades-columns .slick-arrow svg * {
  fill: #513550;
  stroke: none;
}

.accolades-columns .slick-arrow {
    padding: 10px;
    background-color: rgba(255,255,255,.8);
}
.accolades-columns .slick-arrow svg {
  width: 35px;
  height: 35px;
  margin: auto;
  display: block;
}

.accolades-columns .slick-arrow:hover {
    background-color: #513550;
}
.accolades-columns .slick-arrow:hover svg * {
    fill: #fff;
}
.social-list svg * {
    stroke: none;
    fill: #FFF;
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .animate__animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }
}

.home .site-footer {
  margin-top: 0;
  color: var(--amethyst);
  background-color: white;
}

.footer-social {
  margin: 0;
}
.social-list li a {
  background-color: var(--amethyst);
}
#getStarted div {
  position: relative;
}


  @media only screen and (max-width: 768px) {
.footer-social {
  clear: both;
  text-align: center;
  margin-top: 0;
  float: none;
  margin-bottom: 40px;
}
}

  @media only screen and (max-width: 1199px){
.mobile-nav-menu {
  top: 80px;
}
}
.card_template2Special .card_hr, .menubars.active .menubar, .site {
  background-color: var(--amethyst);
}