@font-face {
    font-family: 'unblurLogoFont';
    src: url('fonts/Didot_Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'unblurBody';
    src: url('fonts/Avenir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'UnblurHandwritten';
    src: url('fonts/IndieFlower-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



body{
    background-color: #2C332F;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #fffff9;
    font-family: 'unblurBody', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1, h2{
    font-weight: normal !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.nav_wrapper{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.nav_logo_wrapper{
    height: 50%;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}
.nav_logo_wrapper img{
    height: 100%;
}

a{
    text-decoration: none;
}
.viewportFrame{
    height: 100vh;
    width: 100vw;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.viewportFrame.introFrame {
    position: relative;
    overflow: hidden;
    background-color: #2C332F;
}

.viewportFrame.introFrame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75px; /* Height of the fade effect */
    background: linear-gradient(to bottom, #2C332F 0%, #2c332f00 100%);
    z-index: 2; /* Ensure it's above the video but below the content */
}


.splashScreenLogo{
    width: 30%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeIn 2s ease-in-out forwards;
    z-index: 10;
}

  /*ipad pro Landscape */
  @media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
     
      .splashScreenLogo {
          width: 45%;
      }
  }



  /*ipad pro Portrait */
  @media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
     
      .splashScreenLogo {
          width: 45%;
      }
  }
  /* ipad landscape*/
  @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
      
      .splashScreenLogo {
          width: 40%;
      }
  }
  /* ipad */
  @media (max-width: 850px) {
      
      .splashScreenLogo {
          width: 50%;
      }
  }
  /*phones */
  @media (max-width:450px) {
      
      .splashScreenLogo {
          width: 90%;
      }
  }

.splashScreenText {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fffff9;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    z-index: 5;
    animation: fadeIn 3s ease-in-out forwards;
    opacity: 0;
    margin-top: 30px;
}

/*ipad pro Landscape */
@media only screen 
and (min-width: 1024px) 
and (max-height: 1366px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 1.5) {
   
    .splashScreenText {
        font-size: 1.2em;
        letter-spacing: 3px;
    }
}

/*ipad pro Portrait */
@media only screen 
and (min-width: 1024px) 
and (max-height: 1366px) 
and (orientation: portrait) 
and (-webkit-min-device-pixel-ratio: 1.5) {
   
    .splashScreenText {
        font-size: 1.1em;
        letter-spacing: 3px;
    }
}

/* ipad landscape*/
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    
    .splashScreenText {
        font-size: 1.1em;
        letter-spacing: 2.5px;
    }
}

/* ipad */
@media (max-width: 850px) {
    
    .splashScreenText {
        font-size: 1em;
        letter-spacing: 2px;
    }
}

/*phones */
@media (max-width:450px) {
    
    .splashScreenText {
        font-size: 0.8em;
        letter-spacing: 1.5px;
        top: 60%;
    }
} 


.backgroundVideo{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.1;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none; 
    -webkit-tap-highlight-color: transparent; 
    pointer-events: none; 
}

 /*phones */
 @media (max-width:450px) {
    .backgroundVideo{
        height: 100%;
        width: auto;
    }
} 


.horizontalSwipeUp{
    display: none;
}

@media (max-width:450px) {
    .horizontalSwipeUp{
        display: block;
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: fadeIn 4s ease-in-out forwards;
        font-size: 0.9em;
        color: #6a6363;
    }
} 


.horizontalSwipeUp {
    transition: opacity 2s ease-in-out; /* Smooth transition for the fade effect */
    opacity: 1; /* Initially visible */
}

.horizontalSwipeUp.hide {
    opacity: 0; /* Fade out */
}


.firstContentFrame{
    margin-top: 50px;
    height: fit-content;
}
.bigText_wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 50px;
}

.mainBigtext {
    font-family: 'unblurLogoFont';
    font-size: 4em;
    margin: 0;
    margin-left: 20px;
    opacity: 0; /* Initial opacity set to 0 */
    transition: opacity 2s ease-in-out; /* Increased duration and ease-in-out for more emphasis */
    font-weight: normal;
}



.mainActionBtn_wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
}

.actionBtn{
    background-color: transparent;
    border: 2px solid #fffff9;
    color: #fffff9;
    font-size: 1em;
    padding: 20px;
    width: 20%;
    text-align: center;
    display: block;
    margin: 20px auto;
    margin-bottom: 10px; 
}

 /*phones */
 @media (max-width:450px) {
    .actionBtn{
        width: 70%;
    }
} 

.archedBookNow{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}


.mainActionBtns{
    background-color: transparent;
    border: 2px solid #fffff9;
    color: #fffff9;
    font-size: 1em;
    padding: 20px;
    width: 70%;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0;
}

.leftBtn {
    margin-left: 0;
    margin-right: auto;
    border-left: 0;
}

.rightBtn {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 0;
    border-right: 0;
}
/* Slide in from left */
@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Slide in from right */
  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .slideInLeft {
    animation: slideInFromLeft 2s forwards;
}

.slideInRight {
    animation: slideInFromRight 2s forwards;
}

.body_textBlock{
    width: 30%;
    font-size: .8em;
    letter-spacing: 5px;
    margin: 35px auto;
}

 /*phones */
 @media (max-width:450px) {
    .body_textBlock{
        width: 70%;
        margin: 35px;
    }
} 


  
.sectionThree {
    background: #fffff9; 
    position: relative; 
    overflow: hidden; 
    padding-top: 100px; 
    z-index: 1;
}

.sectionThree::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0; 
    height: 100px; 
    background: #2C332F; 
    transform-origin: top left; 
    transform: skewY(-6deg); 
   
}

.angledSwipeUp{
    display: none;
}

 /*phones */
 @media (max-width:450px) {
    .angledSwipeUp{
        display: block;
        letter-spacing: 10px;
        position: absolute;
        top: 4%;
        left: 32%;
        transform: translate(-50%, -50%);
        animation: fadeIn 2s ease-in-out forwards;
        font-size: 0.9em;
        color: #494949;
        transform: rotate(-6deg);
    }
} 


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}    

.bigText_wrapper_results{
    position: absolute;
    z-index: -1;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

 /*phones */
 @media (max-width:450px) {
    .bigText_wrapper_results{
        top: 36%;
    }
}

.resultsSectionText{
 color: rgb(226, 225, 225);

}
.bigText_wrapper_results .mainBigtext:first-child{
    color: #2c332f78;
}



.mainBeforeAfter_wrapper{
    display: flex;
    justify-content: space-between;
    width: 35%;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
}
   

.mainBeforeAfterPics{
    width: 40%;
    margin-top: 65px;
}



.beforePic{
    padding-bottom: 50px;
}
.afterPic{
    padding-top: 50px;
}

.resultCategories{
    position: absolute;
    width: 20%;
    text-align: center;
    background: rgba(0, 0, 0, 0.689);

}
@media (max-width:450px) {
    .resultCategories{
        width: 40%;
      margin: 0;
    }
}   

.scrollFadeIn {
    opacity: 0; /* Start with elements invisible */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Transition effect */
    will-change: opacity, transform; /* Optimize for animations */
}

.scrollFadeInVisible {
    animation: scrollFadeIn 0.6s forwards; /* Animation when the element is in view */
}


    .results1{
        top: 22%;
        left: 35%;
        animation-duration: 1s;
    }
    .results2{
        top: 32%;
        left: 45%;
        animation-duration: 3s;
    }
    .results3{
        top: 54%;
        left: 37%;
        animation-duration: 4s;
    }
    .results4{
        top: 63%;
        left: 42%;
        animation-duration: 6s;
    }



    @keyframes slideFadeInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-50px); /* Start from -50px on the X-axis */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Class to be added to elements initially */
    .resultsSlideFadeIn {
        opacity: 0; /* Start with elements invisible */
        transform: translateX(-50px); /* Start from -50px on the X-axis */
        will-change: opacity, transform; /* Optimize for animations */
    }
    
    /* Class added by Intersection Observer when in view */
    .resultsSlideFadeInVisible {
        animation: slideFadeInFromLeft 0.6s forwards ease-out; /* Animation when the element is in view */
    }
    
    @keyframes slideFadeInFromRight {
        from {
            opacity: 0;
            transform: translateX(50px); /* Start from 50px on the X-axis to the right */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Class added by Intersection Observer when in view for sliding in from right */
    .resultsSlideFadeInVisibleRight {
        animation: slideFadeInFromRight 0.6s forwards ease-out; /* Animation when the element is in view */
    }

    @keyframes slideFadeOutToLeft {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(-50px); /* Move to the left */
        }
    }
    
    @keyframes slideFadeOutToRight {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(50px); /* Move to the right */
        }
    }
    
    /* Classes for sliding/fading out */
    .resultsSlideFadeOutToLeft {
        animation: slideFadeOutToLeft 0.6s forwards ease-out;
    }
    
    .resultsSlideFadeOutToRight {
        animation: slideFadeOutToRight 0.6s forwards ease-out;
    }
    
.imgLinkMain{
    display: flex;
    flex-direction: column;
}
.imgLinkMain > img{
    width: 65%;
}

.resultsDesc{
    color: #000;
    margin: 35px auto;
}

.pageLinks{
    text-decoration: none;
    color: #ccc;
    display: block;
    width: 50%;
    border-bottom: 2px solid #ccc;
    text-align: center;
    z-index: 20;
}

#seeMoreLink{
    position: absolute;
    left: 0;
    bottom:5%;
    z-index: 2;
}

      /*ipad pro Landscape */
      @media only screen 
      and (min-width: 1024px) 
      and (max-height: 1366px) 
      and (orientation: landscape) 
      and (-webkit-min-device-pixel-ratio: 1.5) {
          
         
          .body_textBlock{
              width: 50%;
          }
          .mainBeforeAfter_wrapper {
              width: 42%;
          }
          .results1 {
              top: 22%;
              left: 30%;
          }
          .results2 {
              top: 36%;
              left: 52%;
          }
          .results3 {
              top: 49%;
              left: 34%;
          }
          .results4 {
              top: 62%;
              left: 45%;
          }
      }
      /*ipad pro Portrait */
      @media only screen 
      and (min-width: 1024px) 
      and (max-height: 1366px) 
      and (orientation: portrait) 
      and (-webkit-min-device-pixel-ratio: 1.5) {

        .nav-drawer.open{
            width:9%;
          }

        .bigText_wrapper_results{
            top: 20%;
        }

          #seeMoreLink{
              bottom: 22%;
          }

          .body_textBlock{
              width: 50%;
          }
  
          .mainBeforeAfter_wrapper {
              width: 55%;
          }
          .results1 {
              top: 18%;
              left: 32%;
          }
          .results2 {
              top: 26%;
              left: 50%;
          }
          .results3 {
              top: 34%;
              left: 34%;
          }
          .results4 {
              top: 42%;
              left: 45%;
          }
      }
      /* ipad landscape*/
      @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
          
        .nav-drawer.open{
            width:7%;
        }

        .bigText_wrapper_results{
            top: 36%;
        }

          .body_textBlock{
              width: 50%;
          }
          
          .mainBeforeAfter_wrapper {
              width:45%;
          }
          .results1 {
              top: 25%;
              left: 32%;
          }
          .results2 {
              top: 35%;
              left: 49%;
          }
          .results3 {
              top: 48%;
              left: 30%;
          }
          .results4 {
              top: 63%;
              left: 45%;
          }
      }
      /* ipad */
      @media (max-width: 850px) {
        .nav-drawer.open{
            width:9%;
        }
        .body_textBlock{
            width: 50%;
        }

          .mainBeforeAfter_wrapper {
              width: 70%;
          }
          .results1 {
              top: 22%;
              left: 32%;
          }
          .results2 {
              top: 29%;
              left: 49%;
          }
          .results3 {
              top: 42%;
              left: 30%;
          }
          .results4 {
              top: 53%;
              left: 45%;
          }
      }
  
  
      /*phones */
      @media (max-width:450px) {
        .nav-drawer.open{
            width:fit-content;
          }

          .mainBeforeAfter_wrapper{
          width: 100%;
          margin: 0;
          margin-top: 30px;
          }
  
          .results1 {
              top: 22%;
              left: 10%;
          }
          .results2 {
              top: 32%;
              left: 42%;
          }
          .results3 {
              top: 42%;
              left: 10%;
          }
          .results4 {
              top: 52%;
              left: 42%;
          }
  
      } 

.sectionFour{
    background-color: #fffff9;
    height: 99vh;
    border-top: 1px solid #fffff9;
}

.sectionFour.locked {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 99vh;
    overflow: hidden;
    z-index: 10;
}




.experienceTitle{
    color: #2C332F;
    font-family: 'unblurLogoFont';
    font-size: 3.5em;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    z-index: 1;
    /* start position below arch container with 0 opacity */
    opacity: 0;
    top: 20%; 
    transition: all 1s ease-in-out;
    width: 100%;
}

.experienceTitleVisible {
    opacity: 1;
    top: 0;
    transition: all 1s ease-in-out;
}


.archContainer {
    /* other styles like height, width, background, etc. */
    border-top-left-radius: 200% 65%;
    border-top-right-radius:200% 65%;
    overflow: hidden; /* This will ensure that the content does not spill outside the rounded corners */
    background-color: #2C332F;
    height: 100%;
    width: 100%;
    z-index: 2;
    margin-top: 60px;
    position: relative;

/*  Add transition for border-radius */
    transition: border-radius 1s ease-in-out;
}

.archContainerFlatten {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin: 0;
    transition: all 1s ease-in-out;
}



.experienceCallouts{
    position: absolute;
    color: #fffff9;
    font-family: 'unblurLogoFont';
    font-size: 3em;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.experieceVideo{
    width: 100%;
}

    @media (max-width:450px) {
        .experieceVideo{
            height: 100%;
            width: auto;
        }
    } 


.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    left: 27px;
    top: 20px;
    z-index: 1000;
    color: #e4e4e4;
    /* Reset button styles */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    font-family: inherit;
}

.nav-drawer {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    width: 5%;
    max-width: 300px; /* Optional: limit the width to 300px */
    background-color: #2c332ff2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px; /* Space for the hamburger icon */
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 5px 0px 11px 0px #000;
    border-radius: 0px 50px 0px 0px;
}

/*phones */
@media (max-width:450px) {
    .nav-drawer{
        width: 20%;
    }
}


.nav-drawer.open {
    left: 0;
}

.nav-link {
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: #fffff9;
}

.nav-link:first-of-type {
    margin-top: 50px;
}

.nav-link img {
    width: 34px;
    height: 34px;
}

.nav-link span {
    font-size: .5em;
}

.nav-link:hover {
    background-color: #555;
}

.hamburger.open {
    content: '✕';
    font-size: 30px;
}


.sectionFive{
    height: fit-content;
}
.pilliarElement_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    min-height: fit-content;
    position: relative;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Increased duration and ease-in-out for more emphasis */
}

.pilliarElement_wrapper > p{
   margin-top: 0px;
}
#pilliarOne{
    background-image: url('assets/experience.jpg'); 
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
}
#pilliarTwo{
    background-image: url('assets/results.jpg'); 
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
}
#pilliarThree{
    background-image: url('assets/health.jpg'); 
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
}

.pilliarTitle{
    font-family: 'unblurLogoFont';
    font-size: 1.5em;
    color: #BA9B7C;
}

.fadeInScroll {
    opacity: 1 !important; /* Target opacity when the element is in view */
}

/* results page */
.pageTittles {
    font-family: 'unblurLogoFont';
    font-size: 3.3em;
    font-weight: normal;
    margin: 0 auto;
    text-align: center;
    top: 20%; 
    transition: all 1s ease-in-out;
    width: 100%;
    color: #BA9B7C;
    padding-top: 10px;
    line-height: 60%;
    background: linear-gradient(to bottom, #BA9B7C, #2C332F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slideshow-container{
    position: relative;
    max-width: 30%;
    margin: auto;
    /* border-top: 2px solid #BA9B7C; */
}
    /*phones */
    @media (max-width:450px) {
        .slideshow-container{
            max-width: 100%;
        }
    } 


.slides {
    display: none;
    width: 100%;
    height: auto;

}



.active {
    display: block;
}

.expandable {
    cursor: pointer;
    transition: transform 0.2s;
}

.expandable:active {
    transform: scale(1.5);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.slide_title_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin:20px auto;
}
/* about page */

.temmemberCollage_wrapper{
    display: flex;
    margin: 20px auto;
    padding: 0px;
    align-items: center;
    justify-content: center;
    width:40% ;
    height: 200px;
    position: relative;
    margin-top: 0;
}
    /*phones */
    @media (max-width:450px) {
        .temmemberCollage_wrapper{
            width: 100%;
            height: 200px;
        }
    }


.teamPhoto_wrapper{
    height: 100%;
    width: 25%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.memberPhoto_collage{
    height: auto;
    width: 100%;

   
    margin: 0;
    padding: 0;
}

    /*phones */
    @media (max-width:450px) {
        .memberPhoto_collage{
            height: 100%;
            width: auto;
        }
    }

.highlight_menu_item_wrapper{
    display: flex;
    margin: 20px auto;
    padding: 10px;
    align-items: center;
    justify-content: center;
    width:40% ;
    position: relative;
    margin-top: 0;
    height: 200px;
}

    /*ipad pro Landscape */
    @media only screen 
    and (min-width: 1024px) 
    and (max-height: 1366px) 
    and (orientation: landscape) 
    and (-webkit-min-device-pixel-ratio: 1.5) {
        .highlight_menu_item_wrapper{
            width:50% ;
        }
    }
    /*ipad pro Portrait */
    @media only screen 
    and (min-width: 1024px) 
    and (max-height: 1366px) 
    and (orientation: portrait) 
    and (-webkit-min-device-pixel-ratio: 1.5) {
        .highlight_menu_item_wrapper{
            width:50% ;
        }

    }
    /* ipad landscape*/
    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
        .highlight_menu_item_wrapper{
            width:40% ;
        }
    }
    /* ipad */
    @media (max-width: 850px) {
        .highlight_menu_item_wrapper{
            width:50% ;
        }

    } 
    /*phones */
    @media (max-width:450px) {
        .highlight_menu_item_wrapper{
            width: 100%;
            min-height: 200px;
        }
    }

    .team-container{
        display:block;
        margin:30px auto;
        text-align:center;
        width:100%;
        position: relative;
        background-color: #fffff9;
        color: #2C332F;
        padding: 25px 0;
    }
    
    .adminTitle{
        font-weight: normal;
        color: #BA9B7C;
        font-family: 'unblurLogoFont', serif;
        text-align: center;
        font-size: 2em;
        padding-bottom: 0px;
        margin: 0px;
        padding-top: 7%;
    }
    .teamMember-container{
        position: relative;
        width: 90%;
        margin: auto;
        height: 60vh;
        display: flex;
    
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
        
    }
    
    
    .nameAndRole_container{
        display: flex;
        flex-direction: column;
    }
    
    .massageRole_container1  {
        align-items: flex-end;
        margin: 15px;
    }
    
    .massageRole_container2{
        align-items: flex-start;
        margin: 15px;
    }
    
    
    /* ipad portrait*/
    @media only screen 
        and (min-device-width: 481px) 
        and (max-device-width: 1024px) 
        and (orientation:portrait) {
            .teamMember-container{
                width: 100%;
                display: flex;
                justify-content:flex-start ;
                flex-flow: row wrap;
                height: 100%;
            }
    
            .massageRole_container1  {
                align-items: flex-end;
                margin: 15px;
                text-align: right;
            }
            .massageRole_container2{
                align-items: flex-start;
                margin: 15px;
                text-align: left;
            }
    }
    /*ipad pro Portrait */
    @media only screen 
      and (min-width: 1024px) 
      and (max-height: 1366px) 
      and (orientation: portrait) 
      and (-webkit-min-device-pixel-ratio: 1.5) {
        .teamMember-container{
            width: 90%;
            display: flex;
            justify-content:flex-start ;
            flex-wrap: nowrap;
            height: 100%;
        }
        
        .massageRole_container1  {
            align-items: flex-end;
            margin: 15px;
            text-align: right;
        }
        .massageRole_container2{
            align-items: flex-start;
            margin: 15px;
            text-align: left;
        }
    }
        @media (max-width: 450px) {
            .teamMember-container{
                width: 100%;
                display: flex;
                flex-flow: row wrap;
                height: 100%;
            }
        }
           
    .teamPhoto{
        width: 40%;
        display: block;
        margin: 20px auto;
    }
    @media (max-width: 450px) {
        .teamPhoto{
            width: 75%;
        }
    }
    .staffHeadshot{
        height:100%;
        margin-right: 25px;
    }
    .roundHeadshot{
        height: 40vh;
        width: 40vh;
        overflow: hidden;
        border-radius: 50%
    }
    .roundHeadshot img{
        width: 100%;
    }
    
     /*ipad pro Landscape */
     @media only screen 
     and (min-width: 1024px) 
     and (max-height: 1366px) 
     and (orientation: landscape) 
     and (-webkit-min-device-pixel-ratio: 1.5) {
        .staffHeadshot{
            height:auto;
            width: 60%;
            margin-left: 0;
            padding-bottom: 20px;
        }
    /* 
        .roundHeadshot{
            height: 250px;
            width: 250px;
        } */
    
     }
    
    /*ipad pro Portrait */
    @media only screen 
      and (min-width: 1024px) 
      and (max-height: 1366px) 
      and (orientation: portrait) 
      and (-webkit-min-device-pixel-ratio: 1.5) {
        .staffHeadshot{
            height:auto;
            width: 60%;
            margin-left: 0;
            padding-bottom: 20px;
        }
        .roundHeadshot{
            height: 250px;
            width: 250px;
        }
    }
    
    
        /* ipad landscape*/
        @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
            .staffHeadshot{
                height:auto;
                width: 50%;
                margin-left: 0;
                padding-bottom: 20px;
            }
            .roundHeadshot{
                height: 150px;
                width: 150px;
            }
        }
        @media (max-width: 850px) {
            .staffHeadshot{
                height:auto;
                width: 60%;
                margin-left: 0;
                padding-bottom: 20px;
            }
            .roundHeadshot{
                height: 200px;
                width: 200px;
            }
    
            .roundHeadshot img{
                min-height: 100%;
                min-width: 100%;
            }
        } 
        @media (max-width: 450px) {
            .staffHeadshot{
                height:auto;
                width: 50%;
                margin-left: 0;
                padding-bottom: 20px;
            }
        } 
        
    .nameRolePic_container{
        display: flex;
        align-items: center;
        width: 50%;
        overflow: hidden;
    }
    @media (max-width: 450px) {
        .nameRolePic_container{
    
            width: auto;
        }
    } 
    
    .teamMember-container:nth-child(even){
        flex-direction: row-reverse;
    }
    .teamMember-container:nth-child(even) .nameRolePic_container{
        flex-direction: row-reverse;
    }
    .teamMember-container:nth-child(even) .teamDesc{
        text-align: right;
    }
    .teamMember-container:nth-child(even) .nameRolePic_container > .staffHeadshot{
        margin-right: 0;
        margin-left: 20px;
    }
    
    
    @media (max-width: 450px) {
        .teamMember-container:nth-child(even){
            flex-direction: row;
        }
    
        .roundHeadshot{
            height: 170px;
            width: 200px;
            margin-bottom: 20px;
        }
        .massageRole_container1  {
            align-items: flex-end;
            margin: 15px;
            text-align: right;
        }
        .massageRole_container2{
            align-items: flex-start;
            margin: 15px;
            text-align: left;
        }
    
    } 
    
    
    .member_name{
        font-family: 'unblurLogoFont';
        font-size: 2em;
        line-height: 50%;
        margin-bottom: 10px;
        color: #2C332F;
    }
    .member_role{
        margin:0;
        color: #2C332F;
    }
    
    .teamDesc{
        margin: 0;
        height: fit-content;
        width: 52%;
        text-align:left;
        font-size: 1em;
        align-self: center;
        text-transform: uppercase;
    }
        /*ipad pro landscape */
        @media only screen 
        and (min-width: 1024px) 
        and (max-height: 1366px) 
        and (orientation: portrait) 
        and (-webkit-min-device-pixel-ratio: 1.5) {
            .teamDesc{
                font-size: .9em;
              
            }
        }
        /* ipad portrait*/
        @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
            .teamDesc{
               display: block;
               margin: auto;
               width: 40%;
            }
        }
         /* ipad portrait*/
         @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
            .teamDesc{
               display: block;
               margin: auto;
               width: 45%;
            }
        }
        @media (max-width: 450px) {
            .teamDesc{
                font-size: .8em;
                width: 72%;
            }
        } 


        /* contact page */


.contact_title{
    font-weight: normal;
    color: #fffff9;
    font-family: 'unblurLogoFont', serif;
    text-align: center;
    font-size: 2em;
    padding-bottom: 0px;
    margin: 0px;
    padding-top: 7%;
}
    @media (max-width: 450px) {
        .contact_title{
            font-size: 2em;
            padding-top: 24%;
        }
    } 

.contact_btns_container{
    width: 50%;
    display: flex;
    margin: auto;
}
    @media (max-width: 450px) {
        .contact_btns_container{
            width: 90%;
        }
    } 
.contact_btns{
    border: none;
    outline: none;
    text-decoration: none;
    color: #BA9B7C;
    font-size: .7em;
    display: block;
    margin: 20px auto;
    text-align: center;
    letter-spacing: 5px;
    border:1px solid #BA9B7C;
    width: 20%;
    padding: 5px;
}
.contact_btns:hover{
    background-color: #000;
}

.contactForm{
    width:90%;
    margin:auto;
    padding-top: 65px;
}
#contact-fullname , #contact-phone , #contact-message{
    width: 100%;
    font-family:'Montserrat' ,'Varela Round', sans-serif;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding:10px;
    padding-left: 0%;
    padding-right: 0%;
}

#formSubmitBtn{
        border: none;
        outline: none;
        text-decoration: none;
        color: #BA9B7C;
        font-size: .7em;
        display: block;
        margin: 20px auto;
        text-align: center;
        letter-spacing: 5px;
        border:1px solid #BA9B7C;
        width: 20%;
        padding: 5px;
        background-color: transparent;
    }
    #formSubmitBtn:hover{
        background-color: #000;
    }

    @media (max-width: 450px) {
        #formSubmitBtn{
            width: 50%;
        }
    } 

    .headerImage{
        background-image: url("assets/headerimage5.webp");
        background-size: cover;
        background-position: center;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }


    
/* mailing list page  */
.mailing_list_title_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 10px;
}

.mailing_list_subtitle{
    color: #fffff9;
    text-align: center;
}
.mailing_list_title{
    font-weight: normal;
    margin: 5px auto;
    text-align: center;
    font-family: 'unblurLogoFont', serif;
    font-size: 2em;
    color: #BA9B7C;
}
.mailing_list_form{
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    width: 40%;
}

    /* ipad portrait*/
    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
        .mailing_list_form{
           width: 55%;
        }
    }
     /* ipad landscape*/
     @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
        .mailing_list_form{
           width: 50%;
        }
    }
    @media (max-width: 450px) {
        .mailing_list_form{
            width: 95%;
        }
    } 
.mailing_list_form_fields{
    border:none;
    border-bottom:1px solid #fffff9;
    padding: 20px 0px 5px 0px;
    background-color: transparent;
    width: 100%;
    outline: none;
    color: #fffff9;
    font-family: 1.2em;
    margin-bottom: 10px;
}

.mailing_list_disclamer{
    color: #ccc;
    text-align: center;
}
.disclamerLink{
    color: #BA9B7C;
    text-decoration: none;
    text-decoration: underline;
}
#formResponse{
    color: #48bd5d;
    text-align: center;
    margin-bottom: 100px;
}


/* links page */
.linksPg_logo{
    width: 20%;
    display: block;
    text-align: center;
    margin: auto;
    margin-top: 25px;
}
@media (max-width: 450px) {
    .linksPg_logo{
        width: 50%;
    }
} 
.linksPg_btns_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.linksPg_btns{
    
        border: none;
        outline: none;
        text-decoration: none;
        color: #BA9B7C;
        font-size: .7em;
        display: block;
        margin: 20px auto;
        text-align: center;
        letter-spacing: 5px;
        border:1px solid #BA9B7C;
        width: 20%;
        padding: 5px; 
}
    @media (max-width: 450px) {
        .linksPg_btns{
            width: 90%;
        }
    } 
    .linksPg_btns:hover{
        background-color: #000;
    } 
.linksPg_text{
    font-family:'Montserrat' ,'Varela Round', sans-serif;
    color: #fffff9;
}
.linksPg_textList_desc{
    color: rgb(140, 140, 140);
    margin-top: 0%;
    text-align: center;
}
/* end links  page */

/* welcome page */
.welcomeVide_text_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 50%;
    height: 70vh;
}
@media (max-width:850px){
    .welcomeVide_text_wrapper{
        flex-direction: column;
        height: auto;
        width: 90%;
        margin-top: 72px;
    }
}
@media (max-width:450px){
    .welcomeVide_text_wrapper{
        flex-direction: column;
        height: auto;
        width: 90%;
        margin-top: 72px;
    }
}

.welcome-content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.welcome-content-container .welcomeTitle {
    position: static;
    transform: none;
    margin: 0;
}

.welcome-content-container .welcomeText {
    position: static;
    transform: none;
    margin: 20px 0 0 0;
    text-align: center;
}

.welcomeTitle{
        font-family: 'unblurLogoFont', serif;
        font-size: 3em;
        color: #fffff9;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        font-weight: normal;    
}
.welcomeText{
    width: 72%;
    margin: 50px;
    font-size: .8em;
}

.welcomeVideo{
    height: 100%;
    display: block;
    margin: auto;
}
@media (max-width:850px){
    .welcomeVideo{
        height: auto;
        width: 50%;

    }
}
@media (max-width:450px){
    .welcomeVideo{
        height: auto;
        width: 100%;

    }
}

.testimonials_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 50px auto;
}
@media (max-width:450px){
    .testimonials_wrapper{
        width: 79%;
    }
}

.testimonial{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72%;
    margin: auto;
}

.testimonials_title{
    color:#fffff9;
    font-family: 'unblurLogoFont', serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 0px;
    line-height: 90%;
}
.testimonialText{
    color:#fffff9;
    text-align:center;
    text-justify: inter-word;
    font-size: .9em;
    margin-bottom: 5px;
}


.ratingStars{
    font-size: 1.1em;
    color: #BA9B7C;
}
.testimonialName{
    color: #BA9B7C;
    font-size: .9em;
    margin: 0% auto;
}

/* actions page */

.bodyLogo{
    width: 20%;
    display: block;
    margin: auto;
    margin-top: 50px;
}

    /*ipad pro Portrait */
    @media only screen 
    and (min-width: 1024px) 
    and (max-height: 1366px) 
    and (orientation: portrait) 
    and (-webkit-min-device-pixel-ratio: 1.5) {
        .bodyLogo{
            width:30%;
        }
    }

    /* ipad landscape*/
    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
        .bodyLogo{
            width:20%;
        }
    }

    @media (max-width: 850px) {
        .bodyLogo{
            width:30%;
        }
    }
    /*phones */
    @media (max-width:450px) {
        .bodyLogo{
            width:50%;
        }
    }

.actionsContainer{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.quickActionLinks{
    text-decoration: none;
    color:#BA9B7C;
    letter-spacing: 10px;
    /* text-decoration: underline;
    text-underline-offset: 8px; */
    margin: 40px;
    padding: 10px;
    border: 1px solid #27211c;
    /* background-color: #201f1f; */
    background-color: #18191a;
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}
    /*ipad pro Portrait */
    @media only screen 
    and (min-width: 1024px) 
    and (max-height: 1366px) 
    and (orientation: portrait) 
    and (-webkit-min-device-pixel-ratio: 1.5) {
        .quickActionLinks{
            letter-spacing: 5px;
        }
    }

    /* ipad landscape*/
    @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
        .quickActionLinks{
            width:65%;
            letter-spacing: 5px;
        }
    }

    @media (max-width: 850px) {
        .quickActionLinks{
            width:70%;
            letter-spacing: 5px;
        }
    }
    /*phones */
    @media (max-width:450px) {
        .quickActionLinks{
            width:90%;
            margin-bottom: 10px;
            letter-spacing: normal;
        }
    }

.dropdownContent {
    display: none;
    width: 90%;
    background-color: #201f1f;
    color: #fffff;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #BA9B7C;
}
.hasDropdown{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hasDropdown:hover .dropdownContent {
    display: block;
}

/* Ensure the dropdown doesn't exceed its content */
.dropdownContent > * {
    width: 100%;
    box-sizing: border-box;
}

.referalProgram_desc{
    margin: 15px;
    letter-spacing:normal;
}
.referalProgram_big{
    font-size: 1.2em;
}

.unique-background::before {
    content: ''; 
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    background-image: url('images/facial_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}
/* policies/faq page*/

.policies-container{
    margin:auto;
    width:60%;
}
    /*ipad pro Portrait */
    @media only screen 
    and (min-width: 1024px) 
    and (max-height: 1366px) 
    and (orientation: portrait) 
    and (-webkit-min-device-pixel-ratio: 1.5) {
        .policies-container{
            width:80%;
        }
    }

     @media (max-width: 900px){
       .policies-container{
       width: 80%;
       padding-top: 65px;
       }
   }
 
.faq-section-titles{
    font-weight: normal;
    margin: 5px auto;
    text-align: center;
    font-family: 'unblurLogoFont', serif;
    font-size: 1.8em;
    color: #BA9B7C;
}
    @media (max-width: 450px) {
        .faq-section-titles{
           font-size: 1.8em;;
        }
    }
    .faq-text{
        width: 72%;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 10px;
        text-align:justify;
        text-justify: inter-word;
        font-size: .8em;
    }
.faq-section-subtitles{
    font-size: 1.2em;
    padding:5px;
    margin: 0px;
    text-transform: uppercase;
    text-align: center;
}
    @media (max-width: 450px) {
        .faq-section-subtitles{
            font-size: .9em;

        }
    }
.walkAround{
    display:block;
    margin:auto;
   width:45%;
   margin-bottom:20px;
}
    @media (max-width: 450px) {
        .walkAround{
        width:90%;
        }
    }

    .postTreatment_titles{
        letter-spacing: 5px;
        font-size: 1em;
        text-align: center;
        color: #BA9B7C;
    }
.book-btn{
    border:2px solid #fffff;
    color:#fffff;
    font-family: 'clearWebfont';
    font-size: 1.5vw;
    margin: 30px auto;
    display: block;
    text-align: center;
    width:10%;
    padding: 15px;
    text-decoration:none
}
.book-btn:hover{
    background-color: rgba(0, 0, 0, 0.486);
}

/* footer */
.line-copyright{
	margin:auto;
	margin-top:40;
	padding:0;
	width:90%;
  }
  .terms_privacy{
    text-decoration: none;
    color: #BA9B7C;
  }
  #copyright{
	  margin:5;
	  color:#fffff9;
  }
  #footer{	
	color:#fffff9;
	width:100%;
	margin:0 auto;
	padding-top:10px;
    margin-top:20px;
	margin-bottom:20px;
	text-align: center;
}
@media (max-width:450px) {
    #footer{	
        margin-bottom:55%;
    }
  } 
  
#facebook , #instagram , #contact{
	margin:20px;
	height:30px;
}
/* end footer */