@charset "utf-8";

/*Progress Bar*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  text-align: center;
  color: #fff;
}

#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}

/*Split Screen*/
.loader_cover {
  width: 100%;
  height: 50%;
  background: #bfb969;
  transition: all .2s cubic-bezier(.04, .435, .315, .9);
  transform: scaleY(1);
}

.loader_cover-up {
  transform-origin: center top;
}

.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}

.coveranime {
  transform: scaleY(0);
}


/*Drop-down Menu*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul ul {
  display: block;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #eee;
  padding: 20px 35px;
  transition: all .3s;
}

nav ul li li a {
  padding: 10px 35px;
}

@media screen and (max-width:1200px) {
  nav ul li a {
    padding: 20px;
  }
  nav ul li li a {
    padding: 10px 20px;
  }
}

nav ul li a:hover {
  color: #fff;
}

/*Arrow*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 28px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #eee;
  border-right: 2px solid #eee;
  transform: rotate(135deg);
}


@media screen and (max-width:1200px) {
  nav ul li.has-child::before {
    left: 0;
  }
}


nav li.has-child ul {
  position: absolute;
  left: -20px;
  top: 62px;
  z-index: 4;
  background: rgb(255 255 255 / 0.2);
  border-radius: 2px;
  width: 210px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgb(255 255 255 / 0.4);
}

nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: rgb(255 255 255 / 0.2);
}


@media screen and (max-width:960px) {
  nav {
    padding: 0;
  }

  nav ul {
    display: block;
  }

  nav ul li a {
    border-bottom: 1px solid #ccc;
  }

  nav ul li.has-child::before {
    left: 20px;
    top: 20px;
  }

  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
    top: 20px;
  }

  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}

/*Header Menu*/
#header {
  position: fixed;
  top: -100px;
  height: 70px;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  align-items: center;
  text-align: center;
  padding: 20px 20px;
}


/*Up Movement*/
#header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*Down Movement*/
#header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:960px) {
  #header,
  #header.UpMove,
  #header.DownMove {
    animation: none;
    height: auto;
    padding: 0;
    display: block;
  }
}


/*Nav*/
@media screen and (max-width:960px) {
  #g-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(17 16 10 / 0.85);
    transition: all 0.3s;
  }

  #g-nav.panelactive {
    top: 0;
  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav ul {
    width: 90%;
    margin: 70px auto 0 auto;
  }

  #g-nav ul ul {
    width: 100%;
    margin: 0;
  }

  #g-nav ul li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    transform: none;
  }

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #ccc;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 0.05em;
    font-weight: bold;
  }

  #g-nav li span {
    font-weight: normal;
    letter-spacing: 0em;
  }
}


/*Nav Button*/
.g-nav-openbtn {
  display: none;
}

@media screen and (max-width:960px) {
  .g-nav-openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  .g-nav-openbtn .openbtn-area {
    transition: all .4s;
  }

  .g-nav-openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: #e5e5e5;
    width: 45%;
  }

  .g-nav-openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .g-nav-openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .g-nav-openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .g-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }

  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }

  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}

/*Nav BG blur-container*/
.mainblur {
  filter: blur(8px);
}


/*Menu Under Line*/
.nav01c li a {
  position: relative;
}

.nav01c li.current a,
.nav01c li a:hover {
  color: #eee;
}

.nav01c li a::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 25%;
  width: 50%;
  height: 1px;
  background: #eee;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.nav01c li li a::after {
  display: none;
}

.nav01c li.current a::after,
.nav01c li a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width:960px) {
  .nav01c li a::after {
    display: none;
  }
}


/*Gradient Button*/
.gradient-bnt {
  display: block;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 20px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.2em;
  background-color: rgb(94 92 55 / 25%);
  transition: all 0.6s ease-out;
}

.gradient-bnt:active {
  background-color: rgb(191 185 105);
}


/*Full Screen Zoom Out*/
#slider {
  width: 100%;
  height: 100vh;
}


/*Modal*/
.modaal-overlay {
  background: linear-gradient(45deg, rgb(89 84 72), rgb(108 102 87)) !important;
}

.hide-area {
  display: none;
}

.modaal-close {
  background: none !important;
  top: 10px;
  left: 20px;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #bfb969;
}


/*Blur Animation*/
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

/*Scroll Down*/
.scrolldown {
  position: absolute;
  right: 40px;
  bottom: 3%;
  height: 50px;
}

.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: rgb(238 238 238 / 75%);
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}


/*1Page Scroll*/
.box {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#box1 {
  background: url("../img/01concept.webp") no-repeat center;
  background-size: cover;
}

#box2 {
  background: url("../img/02mco.webp") no-repeat center;
  background-size: cover;
}

#box3 {
  background: url("../img/03scalp.webp") no-repeat center;
  background-size: cover;
}

#box4 {
  background: url("../img/04cut.webp") no-repeat center;
  background-size: cover;
}

#box5 {
  background: url("../img/05color.webp") no-repeat center;
  background-size: cover;
}

#box6 {
  background: url("../img/06parm.webp") no-repeat center;
  background-size: cover;
}

#box7 {
  background: url("../img/07straight.webp") no-repeat center;
  background-size: cover;
}

#box8 {
  background: url("../img/08treatment.webp") no-repeat center;
  background-size: cover;
}

#box9 {
  background: url("../img/09headspa.webp") no-repeat center;
  background-size: cover;
}

#box10 {
  background: url("../img/10blow.webp") no-repeat center;
  background-size: cover;
}

#box1.box, #box2.box, #box3.box, #box4.box, #box5.box, #box6.box, #box7.box, #box8.box, #box9.box, #box10.box {
  justify-content: flex-start;
}
@media screen and (max-width:768px) {
  #box1.box, #box2.box, #box3.box, #box4.box, #box5.box, #box6.box, #box7.box, #box8.box, #box9.box, #box10.box {
    justify-content: center;
  }

  .gradient-bnt {
    margin-left: 0;
  }
}


.pagination {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  z-index: 10;
  list-style: none;
}

.pagination a {
  display: block;
  height: 20px;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
  padding: 4px;
  text-decoration: none;
  text-align: right;
}

.pagination a.active:after {
  box-shadow: inset 0 0 0 5px;
}

.pagination a .hover-text {
  position: relative;
  right: -2px;
  top: -6px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding-right: 20px;
}

.pagination a:hover .hover-text {
  opacity: 1;
}

.pagination a:after {
  -webkit-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  width: 10px;
  height: 10px;
  display: block;
  border: 1px solid;
  border-radius: 50%;
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  right: 3px;
  bottom: 0;
}

@media screen and (max-width:768px) {
  .pagination a .hover-text {
    display: none;
  }
}

/* Top Return */
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(170 160 100 / 55%);
  border-radius: 3px;
  width: 60px;
  height: 60px;
  transition: all 0.3s;
}

#page-top a:active {
  background: rgb(170 160 100 / 85%);
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

#footer #page-top span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: rotate(45deg);
}