@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Genos:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap");
:root {
  --primaryColor:#3A4241;
  --secondaryColor:#6E5A53;
  --pageBackground:#FFFFFF;
  --defaultFontColor:#000000;
  --defaultInvertFontColor:white;
  --contentGridSize:1280px;
  --footerBG:#B3BDBB;
  --newsletterBG:#EBE5D7;
}

[data-theme=dark] {
  --pageBackground:#1f1f1f;
  --defaultFontColor:#ffffff;
}

@media only screen and (max-width: 767px) {
  header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 1rem !important;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }
  header .headerContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--contentGridSize);
  }
  header .headerContainer nav {
    flex-direction: row-reverse !important;
    width: 100%;
  }
  header .headerContainer nav ul {
    display: none !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 1.3rem !important;
    padding: 0rem 4rem;
    position: absolute;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background: var(--primaryColor) !important;
    top: 0px;
    left: 0px;
    transition: all 0.2s ease-in-out;
  }
  header .headerContainer nav ul .mobileMenuLogo {
    display: flex !important;
    width: 70%;
  }
  header .headerContainer nav ul button {
    background: rgba(0, 0, 0, 0.5) !important;
    transform: scale(1.2) !important;
    width: 70% !important;
  }
  header .headerContainer nav ul li a {
    color: var(--defaultInvertFontColor) !important;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    font-size: 2rem !important;
  }
  header .headerContainer nav ul li a:hover {
    color: var(--secondaryColor);
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4);
  }
  header .headerContainer #menu.active {
    transition: all 0.2s ease-in-out;
    display: flex !important;
    z-index: 100000 !important;
  }
  header .headerContainer button {
    margin: 0px 1rem;
    padding: 0.5rem 1rem;
    background: var(--primaryColor);
    color: var(--defaultInvertFontColor);
    border-radius: 2rem;
    border: none;
    box-shadow: 0px 0px 5px rgba(58, 66, 65, 0.2);
    cursor: pointer;
    transform: scale(1.4) !important;
  }
  header .headerContainer button:hover {
    box-shadow: 0px 5px 10px rgba(58, 66, 65, 0.5);
  }
  header .brandingLogo {
    width: 20vw !important;
    min-width: 160px !important;
    max-width: 340px !important;
  }
  #banner {
    position: relative;
    width: 100%;
    height: 80vh !important;
    overflow: hidden;
    background-size: cover;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slideOverlayContent {
    width: 100% !important;
    height: auto !important;
    background: rgba(114, 96, 91, 0.5) !important;
    left: 0vw !important;
    top: 62% !important;
    padding: 2rem !important;
    justify-content: flex-end;
    gap: 0.6rem !important;
    -webkit-backdrop-filter: blur(20px) !important;
            backdrop-filter: blur(20px) !important;
    color: white;
  }
  .slideOverlayContent h2 {
    font-size: 2.5rem !important;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2rem;
  }
  .slideOverlayContent span {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
  }
  .slideOverlayContent button {
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 0px;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    color: white;
    font-size: 1rem !important;
    text-transform: uppercase;
    width: 100% !important;
    cursor: pointer;
    z-index: 10;
  }
  .slideOverlayContent button:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  }
  .contentWrapper {
    width: 100% !important;
  }
  .introSalon {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .introSalon div {
    background: #b3bdbb;
    margin: 0rem 0px !important;
    overflow: visible;
    height: auto !important;
    position: relative;
    border-radius: 0rem !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100% !important;
    flex-direction: column-reverse !important;
  }
  .introSalon div img {
    position: relative !important;
    bottom: 0px;
    left: 0rem !important;
    width: 100% !important;
  }
  .introSalon div img:hover {
    animation: introImage 3s infinite ease-in-out;
  }
  .introSalon .content {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: column;
    position: relative;
    justify-content: center;
    width: 100% !important;
    padding: 2rem 2rem;
  }
  .introSalon .content h1 {
    font-size: 2.5rem !important;
    line-height: 1.6rem !important;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--primaryColor);
  }
  .introSalon .content h1 strong {
    font-weight: 400;
  }
  .introSalon .content p {
    font-size: 18px;
    line-height: 20px;
    margin: 2rem 0px;
  }
  .ourTreatments {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .ourTreatments > div {
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    margin: 0rem 0px;
    overflow: visible;
    padding: 1.3rem !important;
    position: relative;
    border-radius: 0rem !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 100% !important;
  }
  .ourTreatments .treatMentContent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem !important;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .ourTreatments .treatMentContent span {
    font-size: 18px !important;
    text-transform: uppercase;
    font-weight: 600;
  }
  .ourTreatments .treatMentContent h1 {
    font-size: 2rem !important;
    font-weight: 300;
    line-height: 1.6rem !important;
    letter-spacing: -1px;
    text-transform: uppercase;
  }
  .ourTreatments .treatMentContent p {
    font-size: 18px;
    line-height: 20px;
  }
  .ourTreatments .treatmentTiles {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem !important;
    width: 100%;
  }
  .ourTreatments .treatmentTiles div {
    display: flex;
    width: 100% !important;
    position: relative;
    height: 380px !important;
    cursor: pointer;
    border-radius: 2rem;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .ourTreatments .treatmentTiles div:hover {
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.4);
  }
  .ourTreatments .treatmentTiles div::after {
    width: 100%;
    height: 100%;
    content: " ";
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    z-index: 3;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .ourTreatments .treatmentTiles div section {
    padding: 2rem;
    bottom: 1rem !important;
    position: absolute;
    z-index: 4;
    color: white;
    transition: all 0.3s ease-in-out;
  }
  .ourTreatments .treatmentTiles div section h3 {
    font-size: 2.5rem !important;
    text-transform: uppercase;
    font-weight: 500 !important;
  }
  .ourTreatments .treatmentTiles div section span {
    font-size: 16px !important;
    line-height: 18px !important;
    font-weight: 300;
  }
  .ourTreatments .treatmentTiles div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0px;
    left: 0px;
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  .aboutUs {
    margin: 0rem 0px !important;
  }
  .aboutUs > div {
    padding: 2rem !important;
    border-radius: 0rem !important;
  }
  .aboutUs .aboutUsContent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.6rem;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .aboutUs .aboutUsContent span {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
  }
  .aboutUs .aboutUsContent h1 {
    font-size: 2rem !important;
    font-weight: 300;
    line-height: 1.6rem !important;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
  }
  .aboutUs .aboutUsContent p {
    font-size: 18px;
    line-height: 20px;
  }
  .aboutUs .aboutUsContent .imageGallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .aboutUs .aboutUsContent .imageGallery img {
    border-radius: 1rem;
    -o-object-fit: cover;
       object-fit: cover;
    border: 0px;
  }
  .aboutUs .aboutUsContent .imageGallery img:nth-child(even) {
    width: 100% !important;
  }
  .aboutUs .aboutUsContent .imageGallery img:nth-child(odd) {
    width: 100% !important;
  }
  .aboutUs .teamTiles {
    gap: 0.6rem !important;
  }
  .aboutUs .teamTiles div {
    width: 100% !important;
    height: 350px !important;
    border-radius: 1rem !important;
  }
  .aboutUs .teamTiles div:hover {
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.4);
  }
  .aboutUs .teamTiles div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    top: 0px;
    left: 0px;
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  .getInTouch {
    margin: 0rem 0px !important;
  }
  .getInTouch > div {
    padding: 3rem 2rem !important;
    border-radius: 0px !important;
    width: 100% !important;
  }
  .getInTouch > div .getInTouchContent {
    flex-direction: column !important;
  }
  .getInTouch > div .getInTouchContent .googleMapImage {
    width: 100%;
    border-radius: 1rem;
    height: 50vh !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .getInTouch > div .getInTouchContent ul {
    align-items: flex-start !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.7rem !important;
  }
  .getInTouch > div .getInTouchContent ul li {
    justify-content: center !important;
    align-items: flex-start !important;
    font-size: 1.2rem !important;
  }
  .getInTouch > div .getInTouchContent h1 {
    font-size: 3rem;
    line-height: 2.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .getInTouch > div .getInTouchContent button {
    width: 100% !important;
    font-size: 1.2rem !important;
  }
  .getInTouch > div .getInTouchContent button:hover {
    filter: brightness(1.4);
    padding: 0.5rem 2rem;
    box-shadow: 0px 10px 30px rgba(58, 66, 65, 0.4);
  }
  .getInTouch > div .getInTouchContent button img {
    width: 24px !important;
  }
  .footer {
    width: 100%;
    margin: 0px !important;
  }
  .footer > div {
    width: 100% !important;
    flex-direction: column !important;
  }
  .footer .footerContent {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
  }
  .footer .footerContent .footerLogo {
    width: 240px !important;
    margin-bottom: 2rem !important;
  }
  .footer .footerContent .disclaimer {
    width: 100% !important;
    margin-top: 0px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .footer .footerContent .copyrightText {
    margin-top: 0px !important;
    gap: 1rem;
    width: 75% !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .footer .footerContent ul.footerLinks {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }
  .footer .footerContent ul.footerTiming {
    align-items: center !important;
    justify-content: center !important;
  }
  .footer .footerContent .newsLetterContainer {
    width: 100% !important;
  }
  .priceMenuContainer {
    max-height: 100vh !important;
    padding: 0rem !important;
    overflow-y: auto !important;
    z-index: 10001 !important;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
  }
  .popup-close {
    position: absolute !important;
    top: 3rem !important;
    right: 2rem !important;
    z-index: 100050 !important;
    transform: scale(1.2);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  }
  .popup-content {
    position: absolute !important;
    z-index: 100000 !important;
    margin: 0% auto !important;
    padding: 1rem;
    background: #fff;
    width: 100vw !important;
    min-height: 100px;
    border-radius: 0rem !important;
    height: 100vh !important;
    max-height: 100vh !important;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .priceMenuImageWrap {
    height: 350px !important;
    width: 100% !important;
    border-radius: 0px !important;
    overflow: visible !important;
  }
  .priceMenuImageWrap .headerContent {
    padding: 0px !important;
    width: auto !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }
  .priceMenuImageWrap .headerContent h1 {
    font-size: 4rem;
    line-height: 3rem;
    font-weight: 400;
  }
  .priceMenuImageWrap .headerContent span {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    display: none !important;
  }
  .priceMenuImageWrap img {
    width: 100vw !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 10;
    border-radius: 0px !important;
  }
  .priceMenuImageWrap::after {
    content: " ";
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
  .featuredOffers {
    width: 100%;
    margin: 0rem;
    padding: 1rem;
    background: var(--footerBG);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.15rem;
  }
  .featuredOffers section {
    display: flex;
    flex-direction: column;
    width: 65% !important;
    gap: 1rem !important;
  }
  .featuredOffers section h2 {
    font-size: 1.3rem !important;
    line-height: 1.1rem !important;
    font-weight: 500 !important;
  }
  .featuredOffers section p {
    font-size: 13px;
    line-height: 15px;
  }
  .featuredOffers span {
    font-size: 1.5rem !important;
    font-weight: 500;
  }
  .menuPriceContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0px 0px 0px;
    width: 100%;
  }
  .menuPriceContainer ul.serviceName {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 0.5rem;
    overflow-y: auto;
  }
  .menuPriceContainer ul.serviceName li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
    background: rgb(232, 232, 232);
    border-bottom: 1px solid white;
    padding: 0.5rem 1.5rem;
    width: 100% !important;
    border-radius: 5px;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(1) {
    font-size: 1.5rem;
    width: 100%;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(2) {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 1rem;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(2):hover {
    transform: scale(1.2);
  }
  .menuPriceContainer ul.serviceName li span:nth-child(2)::before {
    content: "Threading";
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(3) {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 1rem;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(3):hover {
    transform: scale(1.2);
  }
  .menuPriceContainer ul.serviceName li span:nth-child(3)::before {
    content: "Waxing";
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(4) {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(4):hover {
    transform: scale(1.2);
  }
  .menuPriceContainer ul.serviceName li span:nth-child(4)::before {
    content: "Hot Waxing";
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
  }
  .teamMemberProfile {
    padding: 1rem !important;
    flex-direction: column !important;
  }
  .teamMemberProfile .teamMemberProfilePic {
    width: 100% !important;
    max-height: 40vh !important;
    min-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .teamMemberProfile .profileContnet {
    display: flex;
    flex-direction: column;
    padding: 1rem !important;
  }
  .teamMemberProfile .profileContnet > h1 {
    font-size: 4rem;
    line-height: 3rem;
  }
  .teamMemberProfile .profileContnet > span {
    font-size: 2rem;
  }
  .teamMemberProfile .profileContnet > p {
    margin-top: 1.5rem;
  }
  .teamMemberProfile .profileContnet h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 1rem 0px;
  }
  .teamMemberProfile .profileContnet ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 0rem;
  }
  .teamMemberProfile .profileContnet ul li {
    display: flex;
    flex-direction: column;
  }
  .teamMemberProfile .profileContnet ul li span {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .massage {
    display: flex;
    flex-direction: column !important;
    padding: 0.5rem !important;
    gap: 0.5rem;
  }
  #wahanda-online-booking-widget-iframe {
    width: 100vw !important;
    height: 86vh !important;
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .slideOverlayContent {
    width: 100% !important;
    height: auto !important;
    background: rgba(114, 96, 91, 0.5) !important;
    left: 0vw !important;
    top: 65% !important;
    padding: 2rem !important;
    justify-content: flex-end;
    gap: 0.6rem !important;
    -webkit-backdrop-filter: blur(20px) !important;
            backdrop-filter: blur(20px) !important;
    color: white;
  }
  .slideOverlayContent h2 {
    font-size: 2.5rem !important;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2rem;
  }
  .slideOverlayContent span {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
  }
  .slideOverlayContent button {
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 0px;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    color: white;
    font-size: 1rem !important;
    text-transform: uppercase;
    width: 100% !important;
    cursor: pointer;
    z-index: 10;
  }
  .slideOverlayContent button:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  }
  .introSalon {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .introSalon div {
    background: #b3bdbb;
    margin: 0rem 0px !important;
    overflow: visible;
    height: auto !important;
    position: relative;
    border-radius: 0rem !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100% !important;
    flex-direction: column-reverse !important;
  }
  .introSalon div img {
    position: relative !important;
    bottom: 0px;
    left: 0rem !important;
    width: 70% !important;
  }
  .introSalon div img:hover {
    animation: introImage 3s infinite ease-in-out;
  }
  .introSalon .content {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: column;
    position: relative;
    justify-content: center;
    width: 100% !important;
    padding: 2rem 2rem;
  }
  .introSalon .content h1 {
    font-size: 3.5rem !important;
    line-height: 2.6rem !important;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--primaryColor);
  }
  .introSalon .content h1 strong {
    font-weight: 400;
  }
  .introSalon .content p {
    font-size: 22px !important;
    line-height: 24px !important;
    margin: 2rem 0px;
  }
  .ourTreatments {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .ourTreatments > div {
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    margin: 0rem 0px;
    overflow: visible;
    padding: 2rem !important;
    position: relative;
    border-radius: 0rem !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 100% !important;
  }
  .ourTreatments .treatMentContent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.6rem;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .ourTreatments .treatMentContent span {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .ourTreatments .treatMentContent h1 {
    font-size: 2.5rem !important;
    font-weight: 300;
    line-height: 2.2rem;
    text-transform: uppercase;
  }
  .ourTreatments .treatMentContent p {
    font-size: 18px;
    line-height: 20px;
  }
  .ourTreatments .treatmentTiles {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem !important;
    width: 100%;
  }
  .ourTreatments .treatmentTiles div {
    display: flex;
    width: 100% !important;
    position: relative;
    height: 450px !important;
    cursor: pointer;
    border-radius: 2rem;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  .ourTreatments .treatmentTiles div:hover {
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.4);
  }
  .ourTreatments .treatmentTiles div::after {
    width: 100%;
    height: 100%;
    content: " ";
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
    z-index: 3;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .ourTreatments .treatmentTiles div section {
    padding: 2rem;
    bottom: 0px;
    position: absolute;
    z-index: 4;
    color: white;
    transition: all 0.3s ease-in-out;
  }
  .ourTreatments .treatmentTiles div section h3 {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 300;
  }
  .ourTreatments .treatmentTiles div section span {
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
  }
  .ourTreatments .treatmentTiles div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0px;
    left: 0px;
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  .aboutUs {
    margin: 0rem 0px !important;
  }
  .aboutUs > div {
    padding: 3rem !important;
    width: 100% !important;
    border-radius: 0rem !important;
  }
  .aboutUs .aboutUsContent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.6rem;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .aboutUs .aboutUsContent span {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
  }
  .aboutUs .aboutUsContent h1 {
    font-size: 2rem !important;
    font-weight: 300;
    line-height: 1.6rem !important;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: white;
  }
  .aboutUs .aboutUsContent p {
    font-size: 18px;
    line-height: 20px;
  }
  .aboutUs .aboutUsContent .imageGallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .aboutUs .aboutUsContent .imageGallery img {
    border-radius: 1rem;
    -o-object-fit: cover;
       object-fit: cover;
    border: 0px;
  }
  .aboutUs .aboutUsContent .imageGallery img:nth-child(even) {
    width: 45% !important;
  }
  .aboutUs .aboutUsContent .imageGallery img:nth-child(odd) {
    width: 45% !important;
  }
  .aboutUs .teamTiles {
    flex-direction: row !important;
    gap: 1rem !important;
  }
  .aboutUs .teamTiles div {
    width: calc(50% - 1rem) !important;
    height: 500px !important;
    border-radius: 1rem !important;
  }
  .aboutUs .teamTiles div:hover {
    box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.4);
  }
  .aboutUs .teamTiles div img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    top: 0px;
    left: 0px;
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  .getInTouch {
    margin: 0rem 0px !important;
  }
  .getInTouch > div {
    padding: 3rem 2rem !important;
    border-radius: 0px !important;
    width: 100% !important;
  }
  .getInTouch > div .getInTouchContent {
    flex-direction: row !important;
  }
  .getInTouch > div .getInTouchContent .googleMapImage {
    width: 100%;
    border-radius: 1rem;
    height: 50vh !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .getInTouch > div .getInTouchContent ul {
    align-items: flex-start !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 2rem !important;
  }
  .getInTouch > div .getInTouchContent ul li {
    justify-content: center !important;
    align-items: flex-start !important;
    font-size: 1.2rem !important;
  }
  .getInTouch > div .getInTouchContent h1 {
    font-size: 3rem;
    line-height: 2.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .getInTouch > div .getInTouchContent button {
    width: 40% !important;
    font-size: 1.2rem !important;
  }
  .getInTouch > div .getInTouchContent button:hover {
    filter: brightness(1.4);
    padding: 0.5rem 2rem;
    box-shadow: 0px 10px 30px rgba(58, 66, 65, 0.4);
  }
  .getInTouch > div .getInTouchContent button img {
    width: 24px !important;
  }
  .featuredOffer {
    width: 100%;
    margin: 0rem;
    padding: 1rem;
    background: var(--footerBG);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.15rem;
  }
  .featuredOffer section {
    display: flex;
    flex-direction: column;
    width: 65% !important;
    gap: 1rem !important;
  }
  .featuredOffer section h2 {
    font-size: 1.5rem !important;
    line-height: 1.5rem !important;
    font-weight: 400;
  }
  .featuredOffer section p {
    font-size: 13px;
    line-height: 15px;
  }
  .featuredOffer span {
    font-size: 1.5rem !important;
    font-weight: 500;
  }
  .menuPriceContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0px 0px 0px;
    width: 100%;
  }
  .menuPriceContainer ul.serviceName {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 0.5rem;
    overflow-y: auto;
  }
  .menuPriceContainer ul.serviceName li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
    background: rgb(232, 232, 232);
    border-bottom: 1px solid white;
    padding: 0.5rem 1.5rem;
    width: 100% !important;
    border-radius: 5px;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(1) {
    font-size: 1.5rem;
    width: 100%;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(2) {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 1rem;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(2):hover {
    transform: scale(1.2);
  }
  .menuPriceContainer ul.serviceName li span:nth-child(2)::before {
    content: "Threading";
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(3) {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 1rem;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(3):hover {
    transform: scale(1.2);
  }
  .menuPriceContainer ul.serviceName li span:nth-child(3)::before {
    content: "Waxing";
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(4) {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .menuPriceContainer ul.serviceName li span:nth-child(4):hover {
    transform: scale(1.2);
  }
  .menuPriceContainer ul.serviceName li span:nth-child(4)::before {
    content: "Hot Waxing";
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
  }
  .popup-content {
    position: absolute !important;
    z-index: 100000 !important;
    margin: 0% auto !important;
    padding: 1rem;
    background: #fff;
    width: 100vw !important;
    min-height: 100px;
    border-radius: 0rem !important;
    height: 100vh;
    max-height: 100vh !important;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .teamMemberProfile {
    padding: 1rem !important;
    flex-direction: column !important;
  }
  .teamMemberProfile .teamMemberProfilePic {
    width: 100% !important;
    max-height: 50vh !important;
    min-height: 450px;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -o-object-position: top !important;
       object-position: top !important;
  }
  .teamMemberProfile .profileContnet {
    display: flex;
    flex-direction: column;
    padding: 1rem !important;
  }
  .teamMemberProfile .profileContnet > h1 {
    font-size: 4rem;
    line-height: 3rem;
  }
  .teamMemberProfile .profileContnet > span {
    font-size: 2rem;
  }
  .teamMemberProfile .profileContnet > p {
    margin-top: 1.5rem;
  }
  .teamMemberProfile .profileContnet h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 1rem 0px;
  }
  .teamMemberProfile .profileContnet ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 0rem;
  }
  .teamMemberProfile .profileContnet ul li {
    display: flex;
    flex-direction: column;
  }
  .teamMemberProfile .profileContnet ul li span {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
*,
ul,
li,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Genos", sans-serif;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  list-style: none;
}

body {
  overflow-x: hidden;
}

p {
  font-family: "Poppins", sans-serif;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #919191 #f2f2f2;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 9px;
}

*::-webkit-scrollbar-track {
  background: #f2f2f2;
}

*::-webkit-scrollbar-thumb {
  background-color: #919191;
  border-radius: 10px;
  border: 2px ridge #ffffff;
}

.hidden {
  display: none !important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.3) !important;
  -webkit-backdrop-filter: blur(50px) brightness(120%);
          backdrop-filter: blur(50px) brightness(120%);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2) !important;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
header .headerContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--contentGridSize);
}
header .headerContainer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
}
header .headerContainer nav #menu-btn {
  display: none;
}
header .headerContainer nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
header .headerContainer nav ul .mobileMenuLogo {
  display: none;
}
header .headerContainer nav ul li a {
  color: var(--primaryColor);
  text-decoration: none;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1rem;
}
header .headerContainer nav ul li a:hover {
  color: var(--secondaryColor);
  text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4);
}
header .headerContainer a.appointmentBtn {
  margin: 0px 1rem;
  padding: 0.5rem 1rem;
  background: var(--primaryColor);
  color: var(--defaultInvertFontColor);
  border-radius: 2rem;
  border: none;
  text-decoration: none;
  box-shadow: 0px 0px 5px rgba(58, 66, 65, 0.2);
  cursor: pointer;
}
header .headerContainer a.appointmentBtn:hover {
  box-shadow: 0px 5px 10px rgba(58, 66, 65, 0.5);
}
header .brandingLogo {
  width: 15vw;
  min-width: 160px;
  max-width: 200px;
}

#banner {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 800px !important;
  overflow: hidden;
  background-size: cover;
}

.contentWrapper {
  width: var(--contentGridSize);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s;
  opacity: 0;
}

.slide:first-child {
  opacity: 1;
}

.slideOverlayContent {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: 100%;
  position: relative;
  background: rgba(114, 96, 91, 0.5);
  left: 10vw;
  padding: 3rem 3rem 6rem 3rem;
  justify-content: flex-end;
  gap: 1rem;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  color: white;
  max-width: 450px;
}
.slideOverlayContent h2 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 2rem;
}
.slideOverlayContent span {
  font-size: 2rem;
  line-height: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
}
.slideOverlayContent button {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 0px;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 75%;
  cursor: pointer;
  z-index: 10;
}
.slideOverlayContent button:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes introImage {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}
.introSalon {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.introSalon div {
  background: #b3bdbb;
  margin: 5rem 0px 2rem 0px;
  overflow: visible;
  height: 480px;
  position: relative;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.introSalon div img {
  position: absolute;
  bottom: 0px;
  left: 2rem;
}
.introSalon div img:hover {
  animation: introImage 3s infinite ease-in-out;
}
.introSalon .content {
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  position: relative;
  justify-content: center;
  width: 50%;
  padding: 2rem 2rem;
}
.introSalon .content h1 {
  font-size: 3rem;
  line-height: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--primaryColor);
}
.introSalon .content h1 strong {
  font-weight: 400;
}
.introSalon .content p {
  font-size: 18px;
  line-height: 20px;
}

.ourTreatments {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ourTreatments > div {
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  margin: 0rem 0px;
  overflow: visible;
  padding: 4rem;
  position: relative;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.ourTreatments .treatMentContent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
.ourTreatments .treatMentContent span {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}
.ourTreatments .treatMentContent h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 2.2rem;
  text-transform: uppercase;
}
.ourTreatments .treatMentContent p {
  font-size: 18px;
  line-height: 20px;
}
.ourTreatments .treatmentTiles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
.ourTreatments .treatmentTiles div {
  display: flex;
  width: calc(50% - 2rem);
  position: relative;
  height: 400px;
  cursor: pointer;
  border-radius: 2rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.ourTreatments .treatmentTiles div:hover {
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.4);
}
.ourTreatments .treatmentTiles div::after {
  width: 100%;
  height: 100%;
  content: " ";
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
  z-index: 3;
  position: absolute;
  top: 0px;
  left: 0px;
}
.ourTreatments .treatmentTiles div section {
  padding: 2rem;
  bottom: 0px;
  position: absolute;
  z-index: 4;
  color: white;
  transition: all 0.3s ease-in-out;
}
.ourTreatments .treatmentTiles div section h3 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 2.2rem !important;
  width: 80%;
  margin-bottom: 1rem !important;
}
.ourTreatments .treatmentTiles div section span {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
}
.ourTreatments .treatmentTiles div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  top: 0px;
  left: 0px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.treatmentTiles div:hover section {
  transform: translatey(-20px);
}

.treatmentTiles div:hover img {
  transform: scale(1.2);
}

.aboutUs {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0px;
}
.aboutUs > div {
  background: var(--primaryColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  margin: 0rem 0px;
  overflow: visible;
  padding: 4rem;
  position: relative;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.aboutUs .aboutUsContent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
  flex-direction: column;
  margin-bottom: 2rem;
}
.aboutUs .aboutUsContent span {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}
.aboutUs .aboutUsContent h1 {
  font-size: 3rem;
  font-weight: 100;
  line-height: 2.2rem;
  text-transform: uppercase;
  color: white;
}
.aboutUs .aboutUsContent p {
  font-size: 18px;
  line-height: 26px;
  color: white;
  font-weight: 200;
  margin: 0.5rem 0px;
}
.aboutUs .aboutUsContent .imageGallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.aboutUs .aboutUsContent .imageGallery img {
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0px;
}
.aboutUs .aboutUsContent .imageGallery img:nth-child(even) {
  width: calc(40% - 1rem);
}
.aboutUs .aboutUsContent .imageGallery img:nth-child(odd) {
  width: calc(60% - 1rem);
}
.aboutUs .teamTiles {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.aboutUs .teamTiles div {
  display: flex;
  width: calc(33% - 2rem);
  position: relative;
  height: 400px;
  cursor: pointer;
  border-radius: 2rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.aboutUs .teamTiles div:hover {
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.4);
}
.aboutUs .teamTiles div::after {
  width: 100%;
  height: 100%;
  content: " ";
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 100%);
  z-index: 3;
  position: absolute;
  top: 0px;
  left: 0px;
}
.aboutUs .teamTiles div section {
  padding: 2rem;
  bottom: 0px;
  position: absolute;
  z-index: 4;
  color: white;
  transition: all 0.3s ease-in-out;
}
.aboutUs .teamTiles div section h3 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 2.2rem !important;
  width: 80%;
  margin-bottom: 1rem !important;
}
.aboutUs .teamTiles div section span {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
}
.aboutUs .teamTiles div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  top: 0px;
  left: 0px;
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.aboutUs .teamTiles div:hover section {
  transform: translatey(-20px);
}
.aboutUs .teamTiles div:hover img {
  transform: scale(1.1);
}

.getInTouch {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0px;
}
.getInTouch > div {
  background: white;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  margin: 0rem 0px;
  overflow: visible;
  padding: 4rem 6rem;
  position: relative;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.getInTouch > div .getInTouchContent {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.getInTouch > div .getInTouchContent .googleMapImage {
  width: 100%;
  border-radius: 1rem;
}
.getInTouch > div .getInTouchContent ul {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  gap: 2rem;
  margin: 2rem 0px;
}
.getInTouch > div .getInTouchContent ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--secondaryColor);
  font-size: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.getInTouch > div .getInTouchContent ul li a {
  color: var(--secondaryColor);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}
.getInTouch > div .getInTouchContent ul li a:hover {
  transform: scale(1.1);
}
.getInTouch > div .getInTouchContent h1 {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
}
.getInTouch > div .getInTouchContent button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: var(--primaryColor);
  color: white;
  font-size: 1.5rem;
  width: 22vw;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}
.getInTouch > div .getInTouchContent button:hover {
  filter: brightness(1.4);
  padding: 0.5rem 2rem;
  box-shadow: 0px 10px 30px rgba(58, 66, 65, 0.4);
}
.getInTouch > div .getInTouchContent button img {
  width: 32px;
}

.footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0px 0px 0px;
}
.footer > div {
  background: var(--footerBG);
  margin: 0rem 0px;
  overflow: visible;
  padding: 1.5rem 2rem;
  position: relative;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer > div .footerContent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0px;
}
.footer > div .footerContent ul {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer > div .footerContent ul li span {
  font-size: 1.5rem;
  font-weight: 500;
}
.footer > div .footerContent .footerLogo {
  width: 15vw;
  max-width: 200px;
}
.footer > div .footerContent .disclaimer {
  width: 65%;
  margin-top: -100px;
}
.footer > div .footerContent .disclaimer span {
  font-size: 1.4rem;
  font-weight: 400;
}
.footer > div .footerContent .disclaimer p {
  font-size: 12px;
}
.footer > div .footerContent .copyrightText {
  display: flex;
  color: var(--primaryColor);
  justify-content: center;
  align-items: center;
  margin-top: -50px;
  gap: 1rem;
}
.footer > div .footerContent .copyrightText a {
  color: var(--primaryColor);
  text-decoration: none;
}
.footer > div .footerContent ul.footerLinks {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.3rem;
}
.footer > div .footerContent ul.footerLinks li span {
  text-transform: uppercase;
}
.footer > div .footerContent ul.footerLinks li a {
  text-decoration: none;
  color: var(--primaryColor);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
}
.footer > div .footerContent ul.footerLinks li a:hover {
  color: var(--secondaryColor);
}
.footer > div .footerContent ul.footerTiming {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.3rem;
}
.footer > div .footerContent ul.footerTiming > span {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
}
.footer > div .footerContent ul.footerTiming li {
  display: flex;
  justify-content: space-between;
  width: 160px;
}
.footer > div .footerContent ul.footerTiming li span {
  font-size: 1rem;
  font-weight: 400;
}
.footer > div .footerContent ul.footerTiming li:first {
  width: auto !important;
}
.footer > div .footerContent .newsLetterContainer {
  display: flex;
  width: 33%;
  background: var(--newsletterBG);
  gap: 0.5rem;
  border-radius: 1rem;
  flex-direction: column;
  padding: 1rem 1.5rem;
}
.footer > div .footerContent .newsLetterContainer span {
  font-size: 2rem;
}
.footer > div .footerContent .newsLetterContainer p {
  font-size: 12px;
  line-height: 14px;
}
.footer > div .footerContent .newsLetterContainer form {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  margin: 1rem 0px;
  gap: 0.8rem;
}
.footer > div .footerContent .newsLetterContainer form input[type=text] {
  width: 100%;
  padding: 0.8rem;
  outline: 0px;
  border: 0px;
  border-radius: 2rem;
  text-indent: 0.5rem;
  font-size: 1.2rem;
}
.footer > div .footerContent .newsLetterContainer form button {
  width: 100%;
  padding: 0.6rem;
  border-radius: 2rem;
  border: 0px;
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  background: var(--primaryColor);
  font-weight: 300;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.footer > div .footerContent .newsLetterContainer form button:hover {
  font-size: 1.3em;
  filter: brightness(1.4);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 200;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.popup-content {
  position: relative;
  margin: 5% auto 5% auto;
  padding: 0rem;
  background: #fff;
  width: 90%;
  min-height: 100px;
  max-width: 1024px !important;
  z-index: 10001;
  border-radius: 0rem;
  max-height: 80vh;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.move-to-top-button {
  position: fixed;
  bottom: -100px; /* initial hidden position */
  right: 10px;
  border: 0px;
  height: 50px;
  width: 50px;
  border-radius: 25px;
  transition: bottom 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  /* optional to make sure it appears above everything else */
}
.move-to-top-button img {
  width: 32px;
  filter: invert(1);
}

.move-to-top-button.show {
  bottom: 40px; /* visible position */
}

.popup-close {
  position: absolute;
  top: 3rem;
  right: 2rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 40px !important;
  height: 40px !important;
  cursor: pointer;
  z-index: 1000;
}

.menuContainer {
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  overflow-y: scroll;
}
.menuContainer .menuImage {
  height: 900px;
}

.priceMenuContainer {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0rem;
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
}

.priceMenuImageWrap {
  height: 350px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}
.priceMenuImageWrap .headerContent {
  display: flex;
  align-items: flex-start;
  z-index: 100;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  color: white;
  width: 85%;
  justify-content: flex-start;
  padding: 1rem;
  flex-direction: column;
}
.priceMenuImageWrap .headerContent h1 {
  font-size: 4rem;
  font-weight: 400;
}
.priceMenuImageWrap .headerContent span {
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
}
.priceMenuImageWrap .headerContent a {
  background: white;
  padding: 10px 2rem;
  border: none;
  border-radius: 1.5rem;
  font-size: 1rem;
  margin: 1rem 0px;
  font-weight: 600;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: var(--primaryColor);
  text-decoration: none;
}
.priceMenuImageWrap .headerContent a:hover {
  transform: translateY(-5px);
  transform: scale(1.1);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.6);
}
.priceMenuImageWrap img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
  border-radius: 0px;
}
.priceMenuImageWrap::after {
  content: " ";
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
}

.featuredOffersContainer {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.featuredOffers {
  width: 100%;
  margin: 0rem;
  padding: 1rem;
  background: var(--footerBG);
  display: flex;
  justify-content: space-between;
  margin: 0.2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 10px;
}
.featuredOffers:hover {
  background: var(--primaryColor);
  color: white;
  z-index: 10000;
  transform: scale(1.03);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
.featuredOffers section {
  width: 70%;
}
.featuredOffers section h2 {
  font-size: 1.6rem;
  line-height: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.featuredOffers section p {
  font-size: 13px;
  line-height: 15px;
}
.featuredOffers span {
  font-size: 2rem;
  font-weight: 500;
}

.menuItemsContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  padding: 1rem 0.5rem;
}

.menuPriceContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.3rem 0px 0px 0px;
  width: 100%;
}
.menuPriceContainer ul.serviceName {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  gap: 0.3rem;
  overflow-y: visible;
}
.menuPriceContainer ul.serviceName li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  background: #b3bdbb;
  border-bottom: 1px solid white;
  padding: 0.5rem 1.5rem;
  width: calc(25% - 0.3rem);
  border-radius: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.menuPriceContainer ul.serviceName li:hover {
  transform: scale(1.1);
  background: var(--primaryColor);
  color: white;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10000;
}
.menuPriceContainer ul.serviceName li span:nth-child(1) {
  font-size: 1.5rem;
  line-height: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}
.menuPriceContainer ul.serviceName li span:nth-child(1) i {
  font-size: 12px;
  line-height: 12px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
}
.menuPriceContainer ul.serviceName li span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.menuPriceContainer ul.serviceName li span:nth-child(2):hover {
  transform: scale(1.2);
}
.menuPriceContainer ul.serviceName li span:nth-child(2)::before {
  display: block;
  content: "Threading";
  font-size: 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.15);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}
.menuPriceContainer ul.serviceName li span:nth-child(3) {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.menuPriceContainer ul.serviceName li span:nth-child(3):hover {
  transform: scale(1.2);
}
.menuPriceContainer ul.serviceName li span:nth-child(3)::before {
  display: block;
  content: "Waxing";
  font-size: 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.15);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}
.menuPriceContainer ul.serviceName li span:nth-child(4) {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.menuPriceContainer ul.serviceName li span:nth-child(4):hover {
  transform: scale(1.2);
}
.menuPriceContainer ul.serviceName li span:nth-child(4)::before {
  display: block;
  content: "Hot Waxing";
  font-size: 12px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.15);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}

.fullWidth ul li {
  width: 100% !important;
}

.massage {
  display: flex;
  flex-direction: column !important;
  gap: 0.2rem;
}

.dermologica ul.serviceName li span:nth-child(2)::before {
  content: "30 Mins" !important;
  display: inline-block !important;
  width: 53px;
  text-transform: uppercase;
}
.dermologica ul.serviceName li span:nth-child(3)::before {
  content: "60 Mins" !important;
  display: inline-block !important;
  width: 53px;
  text-transform: uppercase;
}
.dermologica ul.serviceName li span:nth-child(4)::before {
  content: "90 Mins" !important;
  display: inline-block !important;
  width: 53px;
  text-transform: uppercase;
}

.eyelash ul.serviceName li {
  width: 49.5%;
}
.eyelash ul.serviceName li span:nth-child(2)::before {
  content: "CLUSTER" !important;
  display: inline-block !important;
  width: 56px;
  text-transform: uppercase;
}
.eyelash ul.serviceName li span:nth-child(3)::before {
  content: "SINGLE" !important;
  display: inline-block !important;
  width: 48px;
  text-transform: uppercase;
}

.waxing {
  display: flex;
  flex-direction: column !important;
}
.waxing ul.serviceName li span:nth-child(2)::before {
  content: "Strip" !important;
  display: inline-block !important;
  width: 42px;
  text-transform: uppercase;
}
.waxing ul.serviceName li span:nth-child(3)::before {
  content: "Hot" !important;
  display: inline-block !important;
  width: 30px !important;
  text-transform: uppercase !important;
}

.shellac {
  margin: 0px;
  flex-direction: column !important;
}

.massage ul.serviceName li span:nth-child(2)::before,
.manicure ul.serviceName li span:nth-child(2)::before,
.tint ul.serviceName li span:nth-child(2)::before {
  content: " " !important;
  display: none;
}
.massage ul.serviceName li span:nth-child(3)::before,
.manicure ul.serviceName li span:nth-child(3)::before,
.tint ul.serviceName li span:nth-child(3)::before {
  content: " " !important;
  display: none;
}

.teamMemberProfile {
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2rem;
}
.teamMemberProfile .teamMemberProfilePic {
  display: flex;
  border-radius: 2rem;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
.teamMemberProfile .profileContnet {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.teamMemberProfile .profileContnet > h1 {
  font-size: 4rem;
  line-height: 3rem;
}
.teamMemberProfile .profileContnet > span {
  font-size: 2rem;
}
.teamMemberProfile .profileContnet > p {
  margin-top: 1.5rem;
}
.teamMemberProfile .profileContnet h3 {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 1rem 0px;
}
.teamMemberProfile .profileContnet ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 0rem;
}
.teamMemberProfile .profileContnet ul li {
  display: flex;
  flex-direction: column;
}
.teamMemberProfile .profileContnet ul li span {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Burger Menu Style */
.burger-menu {
  display: none;
}

/* Fullscreen Nav Container */
.nav-container {
  display: flex;
  /* More styles */
}

.nav-container.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000 !important;
  background-color: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Show burger menu on tablet and mobile */
@media only screen and (max-width: 768px) {
  .burger-menu {
    display: block;
    z-index: 100001 !important;
  }
}
.appointment-popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999;
}

.appointment-popup-content {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 0px;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0px;
}
.appointment-popup-content button {
  width: 50px;
  height: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 25px;
  border: 0px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 1.3rem;
  position: absolute;
  bottom: 1.3rem;
  cursor: pointer;
  max-width: 400px;
}

.disable-scroll {
  overflow: hidden;
}

#wahanda-online-booking-widget-iframe {
  width: 100vw !important;
  height: 90%;
  position: absolute !important;
  top: 0px !important;
}