/* ===================================
    Hairsthetix | Hair Restoration Clinic
====================================== */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* variable */
:root {
  --base-color: #b69348;
  --base-blue: #050b31;
  --dark-gray: #2e3844;
  --medium-gray: #7e8287;
  --light-gray: #ffece7;
  --light-medium-gray: #7e8691;
  --alt-font: "Marcellus", serif;
  --primary-font: "Urbanist", sans-serif;
}
.bg-gold {
  background-color: var(--base-color);
}
.bg-blue {
  background-color: var(--base-blue);
}
.text-base-gold {
  color: var(--base-color);
}
.text-base-blue {
  color: var(--base-blue);
}
/* reset */
body {
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 0.3px;
}
section {
  padding-top: 100px;
  padding-bottom: 100px;
}
/* custom cursor */
.custom-cursor .circle-cursor-inner {
  background-color: var(--dark-gray);
  width: 16px;
  height: 16px;
}
.custom-cursor .circle-cursor-inner.cursor-link-hover {
  background-color: var(--dark-gray);
}
.custom-cursor .circle-cursor-outer {
  border: 1px solid transparent;
}
/* header */
.navbar .navbar-nav .nav-link {
  font-size: 18px;
  padding: 10px 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
header .navbar-brand img {
  max-height: 70px;
}
header .navbar-brand {
  padding: 15px 0;
}
/* text gradient color */
.text-gradient-san-blue-new-york-red {
  background-color: var(--base-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* bg color */
.bg-gradient-blue-ironstone-brown {
  background-image: linear-gradient(
    90deg,
    rgba(5, 11, 49, 1) 0%,
    rgba(14, 25, 89, 1) 75%
  );
}
.bg-gradient-blue-ironstone-brown-transparent {
  background-image: linear-gradient(
    to right,
    rgb(46, 56, 68),
    rgba(47, 56, 68, 0.7),
    rgba(70, 64, 68, 0.7),
    rgba(104, 74, 68, 0.7),
    rgba(134, 84, 68, 0.7)
  );
}
.bg-gradient-solitude-blue-fair-pink {
  background-image: linear-gradient(
    to bottom,
    #f8ebe9,
    #f6ebed,
    #f2ebf0,
    #eeebf1,
    #eaecf1
  );
}
.bg-gradient-dark-transparent {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(7%, #2e3844),
    to(transparent)
  );
  background: linear-gradient(to top, #2e3844 7%, transparent 100%);
}
/* btn */
.btn {
  text-transform: inherit;
  font-family: var(--primary-font);
  font-weight: 600;
}
.btn.btn-hairsthetix {
  background-color: var(--base-blue);
  color: var(--white);
}
.btn.btn-hairsthetix:hover,
.btn.btn-hairsthetix:active {
  background-color: transparent;
  border-color: var(--base-blue);
  color: var(--base-blue);
}
.btn.btn-hairsthetix-2 {
  background-color: var(--base-color);
  color: var(--white);
}
.btn.btn-hairsthetix-2:hover,
.btn.btn-hairsthetix-2:active {
  background-color: transparent;
  border-color: var(--base-color);
  color: var(--base-color);
}
.btn.btn-extra-large {
  font-size: 17px;
  padding: 16px 30px;
}
.btn.btn-large {
  font-size: 15px;
  padding: 14px 25px;
}
.btn.btn-medium {
  font-size: 14px;
  padding: 12px 22px;
}
.btn.btn-small {
  font-size: 13px;
  padding: 11px 22px;
}
.btn.btn-very-small {
  font-size: 13px;
  padding: 9px 20px;
}
.btn.btn-base-color {
  color: #ffffff;
}
.btn.btn-box-shadow.btn-base-color:hover {
  color: #ffffff;
}
.btn.btn-base-color:hover {
  color: var(--base-color);
}
.btn.btn-transparent-white-light {
  border-color: rgba(255, 255, 255, 0.2);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
}
/* border radius */
.border-radius-rb-50px {
  border-radius: 0 0 50px 0;
}
/* page title */
.page-title-extra-small h1 {
  font-size: 4.3rem;
  line-height: 4.3rem;
}
/* services box style 01 */
.services-box-style-01:hover .box-overlay {
  opacity: 0.4;
}
/* interactive banner style 01 */
.interactive-banner-style-01 figure:hover .box-overlay {
  opacity: 0.7;
}
/* services box style 01 */
.services-box-style-01 .box-overlay {
  opacity: 0;
  visibility: visible;
}
.services-box-style-01:hover .box-overlay {
  opacity: 0.7;
}
/* contact form style 03 */
/* .contact-form-style-03 {
  margin-bottom: -85px;
} */
/* top right bottom left */
.right-45px {
  right: 45px;
}
.right-minus-45px {
  right: -45px;
}
/* footer */
footer .footer-logo img {
  max-height: 65px;
}
footer .elements-social .medium-icon li a {
  font-size: 18px;
}
footer .elements-social .medium-icon li {
  margin-right: 0px;
}
footer .nav-link {
  color: var(--white);
}
@media (max-width: 1600px) {
  section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 1399px) and (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    font-size: 17px;
    padding: 10px 20px;
  }
}
@media (max-width: 991px) {
  [data-mobile-nav-style="modern"]
    .navbar-modern-inner
    .navbar-nav
    > .nav-item {
    border-bottom: 0;
    padding: 7px 0px;
  }
  [data-mobile-nav-style="modern"]
    .navbar-modern-inner
    .navbar-nav
    .nav-item
    .nav-link {
    font-size: 30px;
  }
  section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  footer ul li {
    line-height: normal;
  }
  header .btn.btn-transparent-white-light,
  header .btn.btn-transparent-white-light:hover {
    border-color: rgba(46, 56, 68, 1);
    color: var(--dark-gray);
  }
}
@media (max-width: 767px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 20px;
  }
}

.elements-social .tiktok:hover {
  color: #69c9d0; /* TikTok Cyan */
}

.elements-social .whatsapp:hover {
  color: #25d366; /* WhatsApp Green */
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Ensure all gallery boxes are sized consistently */
.gallery-box {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Prevent overlap and enforce responsiveness */
.twentytwenty-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
}

/* Ensure both images are responsive and prevent layout shift */
.twentytwenty-container img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-text {
  background-color: white;
}

.gallery-text p {
  font-weight: 600;
  color: #242424;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0px;
}
