/* Boilerplate Clean Up */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,500;1,100&family=Julius+Sans+One&display=swap');


*{
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
}
body{
    margin: 0;
    padding: 0;
    position: relative;
}
a {
text-decoration: none;
color: black;

}
/* Utilities */

.center {
    text-align: center;
}
.flex {
    display: flex;
}
.right {
text-align: right;
}
.wrap {
	flex-wrap: wrap;
}
.pt-6 {
    padding-top: 1em;
}
.pt-2 {
  padding-top: 2em;
}
.pb-6 {
    padding-bottom: 2em;
}
.mr-2 {
margin-right: 30px;
}
.ml-2 {
margin-left: 30px;	
}
.mt-2{
    margin-top: 2em;
}
.flex-center {
  justify-content: center;
}
.flex-around {
	justify-content: space-between
}
.box {
    max-width:1250px;
    margin: 0 auto;
}
.lines {
    position: absolute;
    top: 0; 
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}
.lines div {
    width: 1px;
    display: inline-block;
    height: 100%;
    background-color: rgb(245, 245, 245);
    margin-left: 20%;
    user-select: none;
    -webkit-user-drag: none;
}
/* Header */
header {
    position: relative;
    z-index:1;
    background: rgb(0, 0, 0);
}
header h1, footer h1 {
    margin: 0;
    font-size: 2.25em;
    line-height: .5;
    margin: 0;padding: 0;
    padding-bottom: .5em;
}
.logo-smaller {
  font-size: .55em;
  margin-left: 85px;
}
.header_nav ul {
margin: 0;
padding: 0;
padding-top: 1.5em;
}
.header_nav ul li {
    display: inline-block;
    list-style-type: none;
    padding: 0 1em;
    position: relative;
}
.header_nav {
  background-color: white;
}
.header_nav ul li a {
    text-decoration: none;
    color:rgb(35, 35, 35);
	font-size: 1.1em;
}
.header_nav ul li:hover .nav_marker{
    width:80%;
    transition: .5s ease-in-out;
}
.active_nav{
    position: absolute;
    bottom:-10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #b4b4b4;
}
.nav_marker {
    position: absolute;
    bottom:-10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 1px;
    background-color: #b4b4b4;
    transition: .5s ease-in-out;
}
.social {
    display: flex;
    align-items: center;
}
.social i {
 font-size: 1.1em;
 margin-right: .5em;
}
/* Content */
main {
    position: relative;
}
.slider {
position: relative;
overflow: hidden;
height: 500px;
}
.slide {
position: absolute;
left: 100%;
top:0;
width:100%;height:100%;
}
.slide.active {
	left:0;
	top:0;
}
.control {
	position: absolute;
	top: 91%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
}
.circle {
width:10px;
height: 10px;
border: 1px solid white;
border-radius: 10px;
margin: 0 5px;
cursor: pointer;
}
.circle.active {
	background: white;
}
.jumbo_intro {
    text-align: center;
    position: relative;
}
.jumbo_intro .img_reveal {
    max-width:700px;
	width:100%;
    min-width: 400px;
    position: relative;
    overflow: hidden;
}
.color_load {
    position: absolute;
    height: 100%;
    width: 399px;
    background-color:rgb(35, 35, 35);
    left: -110%;
    top:0;
}
.jumbo_intro .img_reveal img {
    filter: grayscale(.5);
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
    vertical-align: bottom;
	width: 100%;
}
.jumbo_intro h4 {
    font-weight: 300;
    font-size: 1em;
    margin: 0 auto;
    margin-top: 1.5em;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    overflow-x: hidden;
    max-width: 800px;
}
.text_load {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgb(35, 35, 35);
    top:0;
}
.marker {
    position: absolute;
    left: 55%;
    width: 175px;
    top:35%;
    height: 1px;
    background-color: rgb(35, 35, 35);
    display: inline-block;
    z-index: 3;
}
.card_list {
    justify-content: center;
}
.card {
    padding: 1em;
    box-shadow: 0px 5px 8px rgba(0,0,0,0.2);
    width: 20%;
}
.carousel {
    width: 100%;
    margin: 0 auto;
    background-color: rgb(35, 35, 35);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  @media only screen and (min-width: 37.5em) {
    .carousel {
      width:100%;
      max-width: 800px;
      gap: 8.6rem;
      padding: 2.2rem 3.8rem 2.2rem 6.6rem;
      flex-direction: row;
      align-items: center;
    }
  }
  .carousel__img-container {
    height: 8rem;
  }
  .carousel__image {
    height: 8rem;
    width: 8rem;
    transform: scale(1.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }
  .carousel__btn {
    background-color: #fff;
    border: none;
    height: 2rem;
    width: 2rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel__btn--left {
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .carousel__btn--right {
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
  }
  
  ion-icon {
    height: 2.4rem;
    width: 2.4rem;
    color: #383838;
  }
  
  .testimonial {
    padding: 5rem;
    padding-top: 10rem;
  }
  @media only screen and (min-width: 37.5em) {
    .testimonial {
      padding: 0;
    }
  }
  .testimonial__text {
    font-size: 1.2rem;
    line-height: 1.2rem;
    margin-bottom: 2.2rem;
  }
  .testimonial__name {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
  }
  .testimonial__job {
    font-size: 1rem;
    font-weight: 200;
  }

  .profile-card {
	width: 300px;
	height: 300px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
	position: relative;
	background-position: center;
	background-size: cover;
    transition: .2s ease-in-out;
}
.service-card {
	margin-bottom: 30px;
	margin-left: 15px;
	margin-right: 15px;
}
.profile-card-body {
 position: absolute;
 bottom: 0;
 left:0;
 width:100%;
 background: rgba(255,255,255,0.9);
}
.card-text {
position: absolute;
top:0;
left:0;
width: 100%;
height:100%;
background-color: white;
padding: 1em;
display: flex;
flex-direction: column;
cursor: pointer;
opacity: 0;
background-image: url('https://img.freepik.com/premium-photo/white-watercolor-papar-texture-background-cover-card-design-overlay-aon-paint-art-background_1962-2191.jpg?w=2000');
background-size: cover;
background-position: center center;
}
.card-text.person {
	background-image: none;
	background-color: rgba(0,0,0,.7);
	color: white;
}
.person div {
	text-align: center;
}
.card-text h3 {
	text-align: center;
	font-size: 2em;
	margin: 0;
	margin-bottom: .25em;
	font-weight: 300;
}
.person .action {
	padding: .25em 0;
}
.card-text p {
	font-size: 1.1em;
	margin: 0;
	padding: .3em;
}
.active-service {
	opacity: 1;
}
.profile-image img {
	width:100%
}
.profile-image:hover {
    transform: scale(1.1);
    transition: .2s ease-in-out;
}
.profile-info {
	text-align: center;
	margin-top: -3rem;
	margin-bottom: 1rem;
}

.profile-info > .profile-name {
	color: rgb(35, 35, 35);
}

.profile-info > .profile-desc {
	color: #666666;
	font-size: 0.9rem;
}
.profile-person {
	position: relative;
	width: 13rem;
	height: 13rem;
	background-position: center;
	background-size: cover;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    transition: .2s ease-in-out;
}
.gallery {
	justify-content: center;
	padding-top: 1em;
}
.gallery-image {
	width: 300px;
	margin: 15px;
	cursor: pointer;
}
.gallery-image img {
	width: 100%;
}
#modal {
	display: none;
	background: rgba(0,0,0,0.8);
	cursor: pointer;
	top: 0;
	left:0;
	position: fixed;
	z-index: 5;
	height: 100vh;
	width: 100%;
}
#modal.open {
	display:flex;
	justify-content: center;
	align-items:center;
}
#modal img {
	width: 90%;
	max-width:100%;
}
.salon {
background-image: url('https://images.unsplash.com/photo-1600948836101-f9ffda59d250?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1672&q=80');
}
.hair {
    background-image: url('https://images.unsplash.com/photo-1634449571010-02389ed0f9b0?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80');
}
.nail {
    background-image: url('https://images.unsplash.com/photo-1607779097040-26e80aa78e66?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1160&q=80');
}
.lash {
    background-image: url('https://images.unsplash.com/photo-1589710751893-f9a6770ad71b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80');
}
.esthetician {
    background-image: url('img/esthetician.png');
}


.allservices {
    background-image: url('img/Service Page Images/All Services.png');
}

.bodywaxing {
    background-image: url('img/Service Page Images/Body Waxing.png');
}
.customcolor {
    background-image: url('img/Service Page Images/Custom Color.png');
}
.dimensionalhighlights {
    background-image: url('img/Service Page Images/Dimensional Highlights.png');
}
.facialwaxing {
    background-image: url('img/Service Page Images/Facial Waxing.png');
}
.haircolor {
    background-image: url('img/Service Page Images/Hair Color.png');
}
.haircut {
    background-image: url('img/Service Page Images/Hair Cut.png');
}
.hairstyling {
    background-image: url('img/Service Page Images/Styling.png');
}
.hairtreatments {
    background-image: url('img/Service Page Images/Hair Treatments.png');
}
.highlights {
    background-image: url('img/Service Page Images/Highlights.png');
}
.lashes {
    background-image: url('img/Service Page Images/Lashes.png');
}
.manicure {
    background-image: url('img/Service Page Images/Manicures.png');
}
.nailenhancements {
    background-image: url('img/Service Page Images/Nail Enhancements.png');
}
.nailtreatments {
    background-image: url('img/Service Page Images/Nail Treatments.png');
}
.nails {
    background-image: url('img/Service Page Images/nails.png');
}
.pedicure {
    background-image: url('img/Service Page Images/pedicures.png');
}
.facials {
    background-image: url('img/Service Page Images/facials.png');
}


.kelley {
    background-image: url("img/kelley.jpg")
}
.krissy {
    background-image: url("img/krissy.png")
}
.alyssa {
    background-image: url("img/alyssa.jpg")
}
.status {
	list-style: none;
	display: flex;
	justify-content: space-between;
	text-align: center;
	line-height: 1rem;
	margin-bottom: 1.3rem;
}

.status-value {
	color: #383838;
	font-weight: 700;
}

.status-text {
	font-size: 0.8rem;
	color: #7c7c7d;
}

.action {
	text-align:center;
	font-size: 2em;
	padding:.5em 0;
}
.action h4, h6 {
	margin: 0;
}
.action h4 {
font-size:18px;
}
.action h6 {
font-size:14px;
}
.btn {
	border: none;
	padding: 0.8em 1.9em;
	cursor: pointer;
	font-weight: 600;
  min-width: 200px;
  font-weight: 300;
  font-size: 1.4em;
}

.btn-pink {
	background: #b82151;
	color: white;
}

.btn-gray-outline {
	border: 1px solid;
	background: transparent;
	color: rgb(35, 35, 35);
}
.rating {
    width: 208px;
    height: 40px;
    margin: 0 auto;
    display: flex;
  }
  .rating label {
    float: right;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .rating label:not(:first-of-type) {
    padding-right: 2px;
  }
  .rating label:before {
    content: "★";
    font-size: 42px;
    color: #CCCCCC;
    line-height: 1;
  }
  .rating input {
    display: none;
  }
  .rating input:checked ~ label:before, .rating:not(:checked) > label:hover:before, .rating:not(:checked) > label:hover ~ label:before {
    color: white;
  }
  
 .hide {
display: none;
 }
/* Footer */ 
footer {
    background-color: rgb(0, 0, 0);
    color: white;
    margin-top: 1em;
    padding:1em 0;
    position: relative;
    z-index: 3;
}
footer p {
  font-size: .9em;
}