@import url("dist/webfonts/customFont/stylesheet.css");
:root {
  --main-color: #26282a;
  --main-color-dark: #1a1a1b;
  --second-color: #9d9fa0; 
  --third-color: #fff;
  --fourth-color: #9D9FA0;
}
html{
  overflow-x: hidden;
}
body {
  font-family: "MADE TOMMY", sans-serif;
  overflow-x: hidden;
  color: #fff;
  height: 100%;
  background-color: var(--main-color);
}
p{
  color: #ffffff;
  font-size: 16px;
}
.justify-text-left{
  text-align: justify;
}
.mt-6 {
    margin-top: 5rem !important;
}
.pe-7 {
    padding-right: 6rem !important;
}
.ps-7 {
    padding-left: 6rem !important;
}
a {
  transition: all 0.3s ease !important;
  color: #ffffff;
  cursor: pointer
}
.form-control {
    padding: .6rem .75rem;
    background: transparent;
    color: #333;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--main-color);
    --bs-btn-border-color: var(--main-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--main-color);
    --bs-btn-hover-border-color: var(--main-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--main-color);
    --bs-btn-active-border-color: var(--main-color);
}
.btn-outline-primary {
    --bs-btn-color: var(--main-color);
    --bs-btn-border-color: var(--main-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--main-color);
    --bs-btn-hover-border-color: var(--main-color);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--main-color);
    --bs-btn-active-border-color: var(--main-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--main-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--main-color);
    --bs-gradient: none;
}


.text-color-main{
  color: var(--main-color);
}
.text-color-third{
  color: var(--third-color);
}

.fs-9{
  font-size: 9px;
}
.fs-10{
  font-size: 10px;
}
.fs-13{
  font-size: 13px;
}
.fs-14{
  font-size: 14px;
}
.fs-24{
  font-size: 24px;
}
.fs-16{
  font-size: 16px;
}

a.main-link-2 {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  transition: 1s all ease;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 7px 25px;
}
a.main-link-2 i {
  transition: 0.5s all ease;
}
a.main-link-2:hover {
  background: #ffffff;
  color: var(--main-color);
} 
a.main-link-2:hover i {
  rotate: 0deg;
}
a.main-link-2 i {
  rotate: -45deg;
}
.main-link-2 span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  line-height: 22px;
  display: inline-block;
  margin: 0;
}

/* navbar */
.fixed-top{
    background: var(--main-color);
    padding: 15px 0;
    border-bottom: 1px solid #ffffff60;
}
.navbar-toggler-icon {
    font-size: 33px;
    color: var(--sixth-color);
}
.offcanvas{
    background: var(--main-color);
    max-width: 80%;
}
/* Base styles for the navbar */
.navbar-nav, .nav-item {
  position: relative;
  padding: 0 6px;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav {
    position: relative;
    text-transform: uppercase;
}

.navbar-nav::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: var(--underline-left, 0);
    width: var(--underline-width, 0);
    height: 5px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
}

.nav-link {
    transition: color 0.3s ease;
}

.mob-menu .nav-link{
  color: #fff;
}
.mob-menu .btn-close{
  padding: 5px;
    background-color: #fff;
    border-radius: 0;
    margin-right: 0;
}

/* Hero-section Sectin */
.hero-section{
  margin-top: 120px;
  background-color: var(--main-color);
  color: #ffffff;
}
.hero-section h1{
  font-size: 46px;
}
.hero-section p{
  color: #ffffff;
}
.hero-thumb-img{
  width: 140px;
  height: auto;
  max-height: 140px;
  object-fit: cover;
}
.hero-thumb-p{
  font-size: 13px;
  color: var(--fourth-color) !important;
}

/* Looping section */
.looping {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.looping .display-5 {
  font-size: 2.5rem;
  font-weight: 600;
}

.list {
  display: flex;
  align-items: top;
  transition: transform 0.5s ease-out;
}

.looping:hover .list {
  transition-duration: 1s; /* Longer transition on hover for smoother stop */
}


.item-d{
  display: inline;
}
.item-dot{
  max-width: 20px;
  max-height: 20px;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-4px);
  background: url(../assets/images/dot.png) no-repeat center center;
  margin: auto 50px;
}
.item-d{
  display: inline;
}

.section-top{
  margin-top: 90px !important;
}

.section-top-inner-pages{
  margin-top: 130px !important;
}

.style-thumb-con img{
  width: 110px;
  height: 75px;
  object-fit: cover;
}

/* Service section */
.service-con h4{
  margin-bottom: 30px;
}
.service-con h4::after{
    content: '';
    width: 100px;
    height: 2px;
    background-color: #9D9FA0;
    position: absolute;
    left: 0;
    bottom: -15px;
}


@keyframes loop {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* Bg section */
.bg-section {
   background: url(../assets/images/bg-lvls.jpg) no-repeat fixed center / cover;
   width: 100%;
   min-height: 450px;
}

.days{
  min-width: 120px;
  text-align: end;
}


/* Our Barbers Section */
.ourBarbers .item img{
  height: 450px;
  object-fit: cover;
}
.ourBarbers a.item{
  text-decoration: none;
}
.ourBarbers.section-top-inner-pages .item{
  margin-bottom: 40px;
}
figure {
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}
/* Circle */
.hover15 figure {
	position: relative;
}
.hover15 figure::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.hover15 figure:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

/* subscriptionForm */
footer{
  border-bottom: 1px solid #ffffff60;
  border-top: 1px solid #ffffff60;
}
#subscriptionForm input.form-control:focus{
  background-color: transparent !important;
  color: #fff;
}
/* For older browsers */
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.form-control:-moz-placeholder { /* Firefox 18- */
  color: #fff;
  opacity: 1;
}
footer .followUs .main-link-2{
  padding: 0 !important;
  border: none !important;
}
footer .followUs .main-link-2:hover{
  background-color: transparent;
  color: #fff !important;
}

.whatsapp{
  position: fixed;
  right: 15px;
  bottom: 15px;
}
.whatsapp img{
  width: 60px;
  box-shadow: 0px 0px 2px 2px rgb(0 0 0 / 20%);
  border-radius: 50%;
}

/* Contact us page */
/* When hovering over col-sm-7, target the image in col-sm-5 */
.contactPage .row:hover .col-sm-5 img {
    transition: opacity 0.3s ease;
}

/* Default image opacity */
.contactPage .col-sm-5 img {
    transition: opacity 0.3s ease;
}
.contactForm .form-control{
  border: none;
  border-bottom: 2px solid #5c5c5c;
  border-radius: 0;
  padding: 0 0 5px 0;
}

.contactForm .form-control::placeholder {
  color: rgba(255, 255, 255, 0.39);
  opacity: 1; /* Firefox */
  font-size: 12px;
}

.contactForm .form-control::-ms-input-placeholder { /* Edge 12 -18 */
   color: rgba(255, 255, 255, 0.39);
    font-size: 12px;
}

.contactForm .form-control:focus{
  background-color: transparent;
}
.contactForm .form-control {
    color: #fff;
}
.contactForm .custom-control-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 0;
    cursor: pointer;
}

.contactForm .custom-control-input[type="checkbox"]:checked {
    background-color: #fff;
}
.gToutch p{
  color: #818181;
}

/* loading screen */
 /* Loading screen styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loader {
    background-image: url(../assets/images/load.gif);
    background-repeat: no-repeat;
    background-position: center center;
    width: 320px;
    height: 167px;
    margin: 0 auto;
}

/* Cafe Page */
.features .item{
  border-bottom: 1px dashed #fff;
}
.features .item:last-child{
  border: none;
}
.features ul{
  border-bottom: none;
}
.features .nav-item{ 
  padding: 10px;
  text-align: left;
}
.features .nav-item button{
  background: transparent; 
  color: #fff; 
  box-shadow: none;
  transition: all .3s ease;
}
.features .nav-item button.active{
  padding-left: 30px !important;
}
.features .nav-item button.active::before {
  content: '';
  position: absolute;
  left: 10px; /* Adjust this value to position the circle */
  top: 50%;
  transform: translateY(-50%);
  width: 12px; /* Circle size */
  height: 12px; /* Circle size */
  background-color: white;
  border-radius: 50%; /* Makes it circular */
}
.cafeTxt{
  background-color: #ffffff05;
}

@media only screen and (max-width: 1400px) {
 .hero-section h1 {
    font-size: 35px;
  }
  .looping .display-5 {
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 1200px) {
    .hero-section h1 {
      font-size: 30px;
    }
    .looping .display-5 {
        font-size: 1.8rem;
    }
    .h2, h2 {
        font-size: calc(1.1rem + .9vw);
    }
    .h3, h3 {
      font-size: calc(1.1rem + .6vw);
    }
    .h4, h4 {
      font-size: calc(1rem + .3vw);
    }
    .ourBarbers .item img{
      height: 380px;
    }
    .navbar-nav, .nav-item {
      padding: 0;
    }
}
@media only screen and (max-width: 991px) {
  .hero-section {
    margin-top: 90px;
  }
  .hero-section h1 {
     font-size: 22px;
  }
  .hero-thumb-img{
      width: 86px;
  }
  .looping .display-5 {
      font-size: 1.5rem;
  }
  .section-top {
      margin-top: 65px !important;
  }
  a.main-link-2 {
    font-size: 14px;
    padding: 7px 18px;
  }
  .hero-section .pe-5{
    padding-right: 0rem !important;
  }
  .style-thumb-con img {
    width: 80px;
    height: 50px;
  }
   .ourBarbers .item img{
      height: 280px;
  }
}
@media only screen and (max-width: 768px) {
    .ourBarbers .item img{
        height: 220px;
    }
    .hero-section .video img.position-relative{
        height: 280px;
        object-fit: cover;
    }
    .hero-section h1 {
        font-size: 19px;
    }
    .hero-thumb-p {
        font-size: 11px;
    }
    .bg-section {
        min-height: 260px;
        background: url(../assets/images/bg-lvls.jpg) no-repeat fixed center / contain;
    }
   .text-scroll{
        padding: 0 10px 0 0;
        max-height: 160px;
        overflow-y: auto;
   }
    .container, .container-sm {
        max-width: 96%;
   }
   .salonImg{
      min-height: auto !important;
   }
   .features .nav-item {
    padding: 10px 50px 10px 0;
  }
  .features .nav-item:last-child {
    padding: 10px 0 10px 0;
  }
}

@media only screen and (max-width: 576px) {
  .container, .container-sm {
      max-width: 94%;
  }
}

@media only screen and (max-width: 480px) {
     .features .nav-item {
        padding: 10px 16px 10px 0;
    }
}







