@import url('https://fonts.googleapis.com/css');

:root {
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-great: "Great Vibes", cursive;
  --color-primary: #ff5ea5;
  --color-primary-hover: #ed3d8b;
  --color-secondary: #00becf;
  --color-secondary-hover: #00a9b8;
  --color-gray: #333;
  --color-dark: #5A2B3F;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins);
  color: var(--color-gray);
  font-size: 1rem;
  overflow-x: hidden;
}

input:focus,
textarea:focus {
  outline: none;
}

.container-custom {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.button-hover {
  position: relative;
  overflow: hidden;
}

.button-hover::before,
.button-hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -120%;
  top: 0;
  transform: skewX(25deg);
  background-color: black;
  transition: all 0.3s;
}

.button-hover::before {
  opacity: 0.1;
  transition-duration: 0.3s;
}

.button-hover::after {
  opacity: 0.15;
  transition-duration: 0.5s;
}

.button-hover:hover::before {
  left: -20px;
}

.button-hover:hover::after {
  left: -35px;
}

.banner-left>div::after {
  content: attr(data-name) !important;
}

.our-service:has(.our-service-item:hover) .our-service-item:not(:hover) {
  border-color: transparent;
}


.different_nail::after {
  content: '';
  position: absolute;
  font-family: var(--font-great);
  font-size: 358px;
  color: rgba(255, 249, 248, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -10;
  top: 20%;
  left: 40%;
}

#small-images>div {
  overflow: hidden;
  border-radius: 0.5rem;
  border-width: 2px;
  border-color: #DEDDDD;
  width: 80px;
  height: 100px;
}

#small-images>div>img {
  object-fit: cover;
  border-radius: 0.5rem;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-duration: 300ms;
  cursor: pointer;
}

#small-images>div:hover img {
  transform: scale(1.05);
}

#small-images>div.active {
  border-color: var(--color-primary-hover)
}

.nails-cate {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px 0px;
  min-height: 100%;
}

.nails-cate>button {
  cursor: pointer;
}

.nails-cate>button>div {
  border-radius: 16px;
  padding-top: 15px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-duration: 300ms;
  border: 2px solid transparent;
}

.nails-cate>button img {
  border-radius: 16px;
}

.nails-cate>button.active>div {
  border: 2px solid var(--color-primary)
}

.nails-cate>button p {
  font-size: 16px;
  margin-top: 5px;
}

.nails-title>p {
  writing-mode: sideways-lr;
-webkit-writing-mode: sideways-lr;
}

.text6 {
  color: #e05294;
  -webkit-text-stroke: 0px rgb(255 255 255);
  animation: text6-animation 3s ease-in-out infinite;
}

@keyframes text6-animation {

  0%,
  100% {
      clip-path: polygon(0% 45%,
              15% 44%,
              32% 50%,
              54% 60%,
              70% 61%,
              84% 59%,
              100% 52%,
              100% 100%,
              0% 100%);
  }

  50% {
      clip-path: polygon(0% 60%,
              16% 65%,
              34% 66%,
              51% 62%,
              67% 50%,
              84% 45%,
              100% 46%,
              100% 100%,
              0% 100%);
  }
}

.service-inner {
  background-color: #fdeee9;
  position: relative;
}

.service-inner:before {
  content: "";
  background: linear-gradient(90deg, #FDEEE9 0%, rgba(253, 238, 233, 0) 97.25%);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  position: absolute;
  left: -200px;
  top: 0;
  height: 100%;
  width: 200px;
}

.service-inner:after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #FDEEE9 0%, rgba(253, 238, 233, 0) 97.25%);
  position: absolute;
  right: -200px;
  top: 0;
  height: 100%;
  width: 200px;
}

.filter-tab {
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab.active {
  color: var(--color-primary-hover)
}

.filter-tab:hover {
  color: var(--color-primary-hover)
}

.lg-thumb.lg-group {
  display: flex;
  justify-content: center;
  margin: 0px auto;
}

.lg-thumb-item {
  height: 100% !important;
  border: 2px solid transparent;
  cursor: pointer;
}

.lg-thumb-item.active {
  border-color: var(--color-primary)
}

.lg-components {
  padding-bottom: 10px;
}

.lg-sub-html {
  margin-bottom: 10px;
  background-color: var(--color-primary)
}

.lg-img-wrap img {
  width: 30% !important;
}

.gallery-item-isotope img {
  cursor: pointer;
}

.form-book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-book>input,
.form-book select,
.form-book textarea {
  min-height: 55px;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  outline: none;
}

.form-book>input[type="date"],
.form-book>input[type="time"] {
  font-weight: 400;
}

.form-book select {
  color: #979797;
  -webkit-appearance: none;
  appearance: none;
}

.select-wrapper::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #979797;
}

.form-book select option {
  color: black;
  font-size: 14px;
}

.form-book textarea {
  min-height: 100px;
  resize: none;
}

.form-book>input:focus,
.form-book>select:focus,
.form-book>textarea:focus {
  border-color: var(--color-primary)
}

.popup-book::-webkit-scrollbar {
  display: none;
}


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.9);
  }

  to {
      opacity: 1;
      transform: scale(1);
  }
}

.image-fade {
  animation: fadeIn 0.3s ease-in-out;
}
.setting-color {
  box-shadow: 0px 0px 10px #00000052;
}
.setting-color-list div {
  aspect-ratio: 1/1;
}
.setting-color-list div.active::before {
  content: '\f560';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height:100%;
}
.setting-color-list {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1540px) {
  .different_nail::after {
      left: auto;
      font-size: 300px;
  }
.contact-form-footer .form-left input {
      padding: 0px 10px;
  }
}

@media screen and (max-width: 1024px) {
  .different_nail::after {
      left: auto;
      font-size: 240px;
      top: auto;
      bottom: 10%;
  }

  .menu-icon span,
  .menu-icon {
      transition: all .25s ease-in-out;
      z-index: 10;
  }

 .menu-icon.active span:nth-child(1) {
      transform: rotate(135deg);
      top: 50%;
      left: 9px;
      background: white;
  }

  .menu-icon.active span:nth-child(3) {
      transform: rotate(-135deg);
      top: 50%;
      left: 9px;
      background: white;
  }

  .menu-icon.active span:nth-child(2) {
      left: -60px;
      opacity: 0;
      z-index: -10;
      background: white;
  }

  .menu-icon.active:after {
      position: fixed;
      content: '';
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, .6);
  }

  .header-menu-nav {
      transform: translateX(-100%);
      transition: all 0.5s;
  }

  .header-menu-nav.active {
      transform: translateX(0%);
  }

  .service-inner:after {
      display: none;
  }

  #small-images>div {
      width: 60px;
      height: 80px;
  }

  .nails-cate>button p {
      font-size: 12px;
  }

  .lg-img-wrap img {
      width: 50% !important;
  }
}

@media screen and (max-width: 767px) {
  .button-hover {
      font-weight: 500;
      font-size: 14px;
  }

  h2 {
      font-size: 30px;
  }

  p {
      font-size: 14px;
  }

  .service-inner:before,
  .service-inner:after {
      display: none;
  }

  .our-service::after,
  .our-service::before {
      display: none;
  }

  .nails-cate {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }

  .nails-cate>button {
      flex-basis: calc(100% /4);
  }

  .lg-img-wrap img {
      width: 60% !important;
  }

  .form-book {
      grid-template-columns: 1fr;
      gap: 12px;
  }

  .form-book>input,
  .form-book select,
  .form-book textarea {
      min-height: 40px;
      font-size: 14px;
  }

  .form-book textarea {
      min-height: 80px;
  }
}
header.active {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.contact-form-footer {
  color: #000;
}
.contact-form-footer .form-left input{
  min-height: 45px;
  padding: 0px 20px;
  width: 100%;
  background: transparent;
}
.contact-form-footer .form-left span {
  position: relative;
}
.contact-form-footer .form-left span::before, .contact-form-footer .form-field-textarea::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 20px;
}
.contact-form-footer .form-field-textarea {
  position: relative;
  width: 100%;
}
.contact-form-footer .form-left input, .contact-form-footer textarea {
  font-family: inherit;
}
.contact-form-footer .form-left input::placeholder, .contact-form-footer textarea::placeholder {
  color: #000000a1
}

.gallery-item-isotope {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item-isotope::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,var(--color-primary) 5%,var(--color-secondary) 100%);
  opacity: 0;
  transition: all 0.3s linear;
}
.gallery-item-isotope::after {
  content: '\f065';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  opacity: 0;
  transition: all 0.3s linear;
}
.gallery-item-isotope:hover:before {
  opacity: 0.8;
}
.gallery-item-isotope:hover:after {
  opacity: 1;
}

.header-menu-left li a {
  position: relative;
}
.header-menu-left li a:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0%;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: white;
  transition: transform 0.3s ease;
}
.header-menu-left li a:hover::before {
  transform: scaleX(1);
}  
.header-menu-left li a:not(:hover)::before {
  transform-origin: right;
  transform: scaleX(0);
}  

.header-menu-left li a.active:before {
  transform: scaleX(1);
}