/* Font faces start */
@font-face {
  font-family: Edwardian;
  src: url(../fonts/edwardian.TTF);
}
@font-face {
  font-family: adelia;
  src: url(../fonts/adelia.ttf);
}

@font-face {
  font-family: lato;
  src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
  font-family: lato-black;
  src: url(../fonts/Lato-Black.ttf);
}

@font-face {
  font-family: open-sans;
  src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: open-sans-bold;
  src: url(../fonts/OpenSans-Bold.ttf);
}
/* Font faces end */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --primary-color: #c59d5f;
  --secondary-color: #fffaf4;
}
/* Hero Section start*/
.hero {
  width: 100%;
  position: relative;
  background: url(../images/hero.png) center center no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1100px rgba(0, 0, 0, 0.5);
  margin-top: -9.1rem;
  padding: 20vw 0px 4.5vw 5.5vw;
  background-attachment: fixed;
}
/* Hero Section end*/

/* Navbar start*/
.navbar {
  font-family: lato;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.1s ease-in-out;
  background: transparent;
}
.navbar.active {
  background: #fff;
}
/* Logo start*/
.blog-navbar img {
  filter: invert(1);
}
.logo {
  position: absolute;
  top: 1.5vw;
  left: 7vw;
  transition: all 0.3s ease;
}

.logo img {
  width: 9vw;
  transition: all 0.3s ease;
}
/* Logo end*/

.nav-menu {
  display: flex;
  align-items: center;
  padding: 3vw;
  justify-content: center;
  width: 100%;
  position: relative;
}

.nav-menu > ul {
  display: flex;
  gap: 2vw;
}

.nav-menu ul li {
  font-size: 0.7vw;
  list-style: none;
  color: white;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.2vw;
}
.navbar.active .nav-menu ul li a,
.navbar.active .nav-menu ul li,
.navbar.active i {
  color: var(--blackColor);
}
.blog-navbar .nav-menu ul li a,
.blog-navbar .nav-menu ul li,
.blog-navbar .nav-menu i {
  color: var(--blackColor);
}
.nav-menu ul li a.active {
  color: #c59d5f;
}
.navbar.active .logo {
  top: 0.4vw;
}
.navbar.active .logo img {
  width: 6.5vw;
  filter: invert(1);
}
.nav-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 0.7vw;
  letter-spacing: 0.2vw;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #c59d5f;
}

/* dropwdown start */
.dropdown {
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: black;
  padding: 1vw;
  min-width: 180px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 1.2vw;
  transition: all 0.3s ease;
}

.dropdown-menu li:hover {
  background-color: #333;
  color: #c59d5f;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0vw);
}
/* dropdown end */

.nav-icons {
  display: flex;
  align-items: center;
  margin-left: 2vw;
  position: absolute;
  right: 3vw;
}

.nav-menu i {
  font-size: 1.25vw;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-icons i:hover {
  color: #c59d5f;
}

#hamburgerIcon {
  display: none;
}

/* Backdrop overlay */
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Active backdrop */
.search-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* search bar start */
.search-container {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  display: none;
  z-index: 1000;
  border: 1px solid #c59d5f;
  border-radius: 8px;
}
.search-container.active {
  display: block;
}

.search-container input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  outline: none;
  background: black;
  color: white;
  border-bottom: 2px solid #c59d5f;
  font-size: 18px;
}
/* search bar end */
/* Navbar end*/

/* mobile menu start */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 80px 40px;

  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active {
  display: none;
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu ul li {
  font-size: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu ul li a:hover {
  color: #c59d5f;
}

.mobile-menu ul li a.active {
  color: #c59d5f;
}

.mobile-menu .dropdown {
  position: relative;
}

.mobile-menu .dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-menu .dropdown.active .dropdown-content {
  max-height: 300px;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.mobile-menu .dropdown-content a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.mobile-menu .dropdown-content a:hover {
  color: #c59d5f;
}

.close-menu:hover {
  color: #c59d5f;
}
/*mobile menu start */

/* hero content start */
.hero-text-overlap {
}
.hero-content1 {
  position: relative;
  /* padding: 17vw 0px 0px 0px; */
}
.hero-content1 .hero-bg {
  font-family: adelia;
  font-size: 9vw;
  color: white;
  opacity: 30%;
  top: -12vw;
  align-self: center;
  position: absolute;
}

.hero-content1 .barber-name {
  font-family: lato;
  font-size: 2vw;
  z-index: 2;
  color: white;
}

.hero-content1 .hairstyle {
  font-size: 4vw;
  line-height: 4.3vw;
}

.hero-content1 .txt-white {
  font-family: lato-black;
  /* font-size: 3vw; */
  /* transform: translateY(150%); */
  color: white;
}

.hero-content1 .txt-brown {
  font-family: lato-black;
  /* font-size: 3vw; */
  color: #c59d5f;
}

.hero-content2 {
  margin-top: 6vw;
}

.appointment-txt {
  font-family: lato;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2vw;
  font-weight: bold;
  cursor: pointer;
  padding-right: 3vw;
}

.hero-content2 h1 {
  color: #c59d5f;
  font-size: 1.7vw;
}

.hero-content2 img {
  width: 3.6vw;
  transition: transform 0.3s ease-in-out;
}

.appointment-txt:hover img {
  /* transform: scale(1.2); */
}
/* hero content start */

/* about section start */
.about-section {
  width: 100%;
  /* padding: 75px; */
  /* position: relative; */
  padding-bottom: 5vw;
}

.about-container {
  /* padding: 0 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* left side start*/
.left-col {
  flex: 1;
  display: flex;
  justify-content: center;
}
.left-col .img-wrapper {
  position: relative;
  width: 30vw;
}
.left-col .img-wrapper::before {
  content: "";
  background: var(--primary-color);
  width: 30vw;
  height: 45vw;
  position: absolute;
  border-radius: 3.5vw;
  inset: 0;
  display: block;
}

.left-col .img-bg {
}

.left-col img {
  position: relative;
  z-index: 1;
  border-radius: 3.5vw;
  left: 4.5vw;
  top: 4.5vw;
  width: 30vw;
}
/* left side end */

/* right side start */
.right-col {
  /* width: 50%; */
  flex: 1;
  /* right: -1.8vw; */
}

.about-text-overlap {
  /* display: grid; */
  place-items: baseline;
  text-align: left;
  position: relative;
  padding-bottom: 20px;
}

.right-col .barber-txt {
  font-family: adelia;
  font-size: 9vw;
  color: #c59d5f;
  opacity: 20%;
  font-weight: normal;
  left: -2vw;
  position: relative;
  margin-bottom: -8.3vw;
}

.right-col .about-txt {
  font-family: lato;
  font-size: 1.4vw;
  z-index: 2;
  font-weight: 600;
  left: 1vw;
  position: relative;
}

.right-col .experience-txt {
  font-family: lato-black;
  font-size: 2.5vw;
  z-index: 2;
  left: 1vw;
  position: relative;
  line-height: 2.4vw;
  margin: 2vw 0px 1.6vw 0px;
}

.right-col .para-txt {
  padding-top: 20px;
  font-family: lato;
  font-size: 1.47vw;
  position: relative;
  left: 1vw;
}

.right-col .para-boldtxt {
  font-family: lato;
  font-size: 1.5vw;
  font-weight: bold;
  left: 1vw;
  position: relative;
}

/* signature */

.about-sign {
  width: 100%;
  display: flex;
  padding-left: 1vw;
}

.pattern {
  background: url(../images/pattern.png) center center;
  background-size: contain;
  padding: 2vw 5vw;
  width: 100%;
}

.pattern-images,
.pattern span {
}

.pattern-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.pattern-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pattern h1 {
  justify-self: center;
  align-self: center;
  font-family: "Edwardian";
  font-size: 10vw;
  z-index: 2;
  font-weight: normal;
}
/* right side end */
/* about section end */

/* team section start*/
.team-section {
  background: #fffaf4;
  width: 100%;
  padding-top: clamp(50px, 2vw, 120px);
  margin-bottom: clamp(50px, 6vw, 150px);
  position: relative;
}

.team-container {
  padding: 0px 7vw 4vw 7vw;
  position: relative;
  overflow: hidden;
}

.team-txt {
  display: flex;
  flex-direction: column;
  text-align: center;
  /* gap: 25px; */
}

.teams-txt {
  font-family: lato;
  font-weight: bold;
  font-size: 1.55vw;
  line-height: 6vw;
}

.expert-txt {
  font-family: lato-black;
  font-size: 3vw;
  opacity: 0.8;
}

.prof-txt {
  font-family: adelia;
  color: #c59d5f;
  opacity: 20%;
  font-size: 8vw;
  font-weight: normal;
  text-align: center;
  width: 100%;
  margin: -7vw 0px -13vw 0px;
}

/* Flex container */
.tream-swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  overflow: visible;
  align-items: center;
  display: flex;
  margin: 0 auto;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* Individual Member Card */
.member-card {
  position: relative;
  max-width: 780px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 7vw;
}

.member-card .member-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding-bottom: 50px;
  display: block;
  transition: transform 0.3s ease;
}

.member-card .member-img:hover {
  transform: scale(1.1);
}

.member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.member-info img {
  position: absolute;
  object-fit: contain;
}

.member-info img:first-of-type {
  opacity: 0.3;
  z-index: 0;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: auto;
}

.member-info img:nth-of-type(2) {
  opacity: 1;
  z-index: 1;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
}

.member-info-text {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.member-info span {
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: block;
  white-space: nowrap;
}

.member-info span:first-of-type {
  font-size: 1vw;
  font-weight: lighter;
}

.member-info span:last-of-type {
  font-size: 1.5vw;
  font-weight: bold;
}

.member-info .blk {
  color: black;
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  /* margin-top: 40px; */
  display: flex;
  justify-content: center;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 4px !important;
  border-radius: 0 !important;
  background: black !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  width: 30px !important;
  background: #d4a574 !important;
  opacity: 1 !important;
}
/* team section end*/

/* Price Section start*/
.price-section {
  width: 100%;
  margin-top: 50px;
}

.price-container {
  gap: 5vw;
  /* padding: 30px 0; */
  display: flex;
  justify-content: space-between;
}
/* left side start*/
.left-side-price {
  width: 50%;
}

.price-layered-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.price-layered-images .trim {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

.price-layered-images .bg-trim-machine {
  /* position: absolute;
  background: #c59d5f;
  width: 25.7vw;
  height: 37.3vw;
  top: 16%;
  left: 45.4%;
  z-index: 2; */
}

.price-layered-images .trim-machine {
  position: absolute;
  top: 20%;
  right: 0vw;
  z-index: 3;
  top: 6.1vw;
  width: 20.5vw;
}
/* left side end */

/* right side start */
.right-side-price {
  width: 50%;
  margin-top: 9vw;
}

.price-text-overlap {
}

.right-side-price .prices-txt {
  font-family: adelia;
  font-size: 10vw;
  color: #c59d5f;
  opacity: 30%;
  font-weight: normal;
  line-height: 0px;
}

.right-side-price .best-price-txt {
  font-family: lato;
  font-size: 1.85vw;
  z-index: 2;
  /* line-height: 5vw; */
}

.right-side-price .city-price-txt {
  font-family: lato-black;
  font-size: 3.25vw;
  z-index: 2;
  margin-top: 1.3vw;
}

.pricing-columns {
  padding-right: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pricing-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  font-family: lato;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-name {
  font-size: 1.2vw;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.dotted-line {
  flex-grow: 1;
  height: 10px;
  background-image: radial-gradient(circle, black 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  margin: 0 10px 3px 10px;
}

.dotted-line-white {
  flex-grow: 1;
  height: 10px;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  margin: 0 10px 3px 10px;
}

.service-price {
  color: #c59d5f;
  font-size: 1.2vw;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}
/* right side end */
/* price section end */

/*gallery section start */
.gallery-section {
  background: #f1e8d9;
  width: 100%;
  padding: 2vw 0px 3.4vw 0px;
}

.gallery-text h1:first-of-type {
  font-family: lato;
  font-size: 1.8vw;
  line-height: 5vw;
  font-weight: bold;
  text-align: center;
  color: #262626;
}

.gallery-text h1:last-of-type {
  font-family: lato-black;
  font-size: 3.2vw;
  font-weight: bolder;
  text-align: center;
  color: #262626;
  line-height: 3.7vw;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.gallery-img {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
  transform: scale(1.1);
  width: 100%;
}

.gallery {
  max-width: 1500px;
  margin: 40px auto 0px auto;
  padding: 20px;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 320px 360px;
  gap: 20px;
}

/* Base item */
.gallery .item {
  overflow: hidden;
  /* border-radius: 6px; */
}

.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.gallery .item img:hover {
  transform: scale(1.1);
}

/* Top row (3 tall images) */
.gallery .item-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery .item-2 {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.gallery .item-3 {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
}

/* Bottom row */
.gallery .item-4 {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
}

.gallery .item-5 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.gallery .item-6 {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery {
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-rows: auto;
    gap: 1vw;
  }
  .gallery-section {
    padding: 4vw !important;
  }
  .coiffure-images img {
    width: 60vw !important;
  }
  .item {
    grid-column: span 2;
    grid-row: auto;
    /* height: 260px; */
  }
  .choose-file label {
    margin-bottom: 1vw;
    font-size: 1.7vw;
  }
  .privacy-policy label {
    font-size: 2vw !important;
  }
  .hero {
    padding-top: 47vw;
    margin-top: -11.5rem;
  }
}

@media (max-width: 500px) {
  .gallery {
    /* grid-template-columns: 1fr; */
    padding: 0px;
    margin: 3vw 0px 0px 0px;
  }

  .item {
    grid-column: span 1;
    /* height: 240px; */
  }
}
/*gallery section end */

/* Footer start */
.footer-section {
  background: #c59d5f;
  width: 100%;
}

.footer-container {
  /* padding: 1.3vw 0px 3.5vw 0px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-txt {
  display: flex;
  flex-direction: column;
  font-size: 1.3vw;
  gap: 15px;
  font-weight: 600;
}

.footer-txt h1 {
  display: block;
  /* margin: 1vw 0px; */
  font-family: lato-black;
  font-size: 1.5vw;
  letter-spacing: 0.1vw;
  text-transform: uppercase;
  line-height: 1.6vw;
}

.footer-txt p {
  display: block;
  /* margin-bottom: 1.7vw; */
  font-family: lato;
  color: var(--whiteColor);
  font-size: 1.1vw;
  font-weight: lighter;
  line-height: 1.6vw;
}
.footer-logo {
  margin: 4vw 10vw;
}
.footer-logo img {
  width: 12vw;
}

.contact-info {
  display: flex;
  flex-direction: column;
  font-size: 1.5vw;
  gap: 10px;
}

.contact-info .contact-text {
  font-family: open-sans-bold;
}

.loc-text,
.mail-text,
.numb-text {
  font-family: open-sans;
  color: white;
}

.separation-line {
  display: none;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: open-sans;
  color: white;
  margin-top: 1.3vw;
}
.social-icons span {
  text-transform: uppercase;
}
.social-icons i {
  font-size: 1.5vw;
  /* letter-spacing: 0.6vw; */
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icons i:hover {
  transform: scale(1.1);
}
/* Footer end */

/*NOSSALONS CSS START */
/*hero swiper start */
.salon-swiper {
  width: 100%;
  margin-top: -9.1rem;
}

.salon-swiper .swiper {
  width: 100%;
  height: auto;
}

.salon-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.slide-layer {
  display: grid;
  width: 100%;
}

.slide-layer img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  grid-area: 1 / 1; /* overlap */
}

.slide-text {
  grid-area: 1 / 1; /* overlap image */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.slide-text span:first-of-type {
  font-size: 4vw;
  font-family: adelia;
  color: #c59d5f;
}

.slide-text h1 {
  font-size: 8vw;
  font-family: lato-black;
  color: white;
  margin: 10px 0;
  letter-spacing: 4vw;
}

.slide-text span:last-of-type {
  font-size: 2.5vw;
  font-family: lato;
  color: white;
}
/*hero swiper end */

/* salon text section start */
.salon-text-section {
  width: 100%;
  padding-top: 40px;
}

.salon-text-container {
  width: 100%;
  padding: 7vw 0px 4.5vw 0px;
  text-align: center;
}

.text-overlap {
  /* display: grid; */
  place-items: center;
  text-align: center;
  position: relative;
}

.text-overlap h1 {
  font-family: adelia;
  font-size: 7vw;
  color: #c59d5f;
  opacity: 30%;
  grid-area: 1 / 1;
  font-weight: lighter;
  /* position: absolute; */
  line-height: 0vw;
}

.text-overlap small {
  font-family: lato;
  font-size: 1.2vw;
  font-weight: lighter;
  z-index: 2;
}

.text-overlap h2 {
  font-family: lato;
  font-size: 2vw;
  z-index: 2;
  margin: 1vw 0px 1.7vw 0px;
}

.salon-text-container p {
  font-family: lato;
  font-size: 1.2vw;
  padding: 0 80px;
  width: 64vw;
  margin: 0px auto;
}

.salon-text-container .separation-line {
  display: block;
  width: 44%;
  height: 1px;
  background-color: black;
  margin: 2vw auto;
}

.salon-text-container span {
  font-family: lato;
  font-size: 1.35vw;
}
/* salon text section end */

/* service cards section start */
.service-cards-section {
  width: 100%;
  padding: 3vw 0px 1.3vw 0px;
  background: #fffaf4;
}

.service-cards-container {
  width: 100%;
  padding: 0px 16vw;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 7vw;
}

.service-card img {
  padding-bottom: 20px;
}

.service-card h1 {
  display: block;
  margin: 1vw 0px;
  font-family: lato-black;
  font-size: 1.1vw;
  letter-spacing: 0.1vw;
  text-transform: uppercase;
  line-height: 1.6vw;
}

.service-card p {
  display: block;
  margin-bottom: 1.7vw;
  font-family: lato;
  font-size: 1.1vw;
  font-weight: lighter;
  line-height: 1.6vw;
}
/* service cards section end */

/* scheduling section start */
.schedule-section {
  background: url(../images/scheduleimage.jpg) no-repeat center/cover;
  width: 100%;
  min-height: auto;
}

.schedule-container {
  padding: 7vw 0px;
}

.schedule-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.scheduling {
  width: 70vw;
  height: 20vw;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.timing {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.scheduling p {
  display: block;
  /* margin: 1vw 0px; */
  font-family: lato-black;
  font-size: 1.1vw;
  letter-spacing: 0.1vw;
  text-transform: uppercase;
  line-height: 1.6vw;
}

.scheduling button {
  font-family: lato;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #fdb85c 0%, #f9a846 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 184, 92, 0.3);
  text-decoration: none;
  /* width: 100%;
  max-width: 300px; */
}

.scheduling button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 184, 92, 0.4);
}

.scheduling .icon {
  font-size: 24px;
  flex-shrink: 0;
}

.txt-overlap {
  text-align: center;
  position: relative;
}

.txt-overlap h1 {
  font-family: adelia;
  font-size: 8vw;
  color: #c59d5f;
  opacity: 30%;
  position: absolute;
  line-height: 0px;
  left: -14vw;
  font-weight: lighter;
}

.txt-overlap span {
  font-family: lato;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: lighter;
  z-index: 2;
}

.txt-overlap h2 {
  font-family: lato-black;
  font-size: 2vw;
  z-index: 2;
  margin-top: 0.6vw;
}

.schedule {
  width: 100%;
  /* padding: 3vw 8vw; */
}

.schedule-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.6vw 0px;
}

.day {
  font-family: lato;
  font-size: 1.1vw;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time {
  font-family: lato;
  font-size: 1.1vw;
}
/*scheduling section end */

/* tarif section start */
.tarif-section {
  background: url(../images/tarifimage.jpg) no-repeat center/cover;
  width: 100%;
  min-height: auto;
  padding: 8vw 0px 6vw 0px;
}

.tarif-container {
  padding: 20px 60px;
}

.txtoverlap-tarif {
  /* display: grid; */
  /* place-items: center; */
  text-align: center;
  position: relative;
}

.txtoverlap-tarif h1 {
  font-family: adelia;
  font-size: 8vw;
  color: #c59d5f;
  opacity: 30%;
  line-height: 0vw;
  font-weight: lighter;
}

.txtoverlap-tarif span {
  font-family: lato;
  color: white;
  font-size: 0.7vw;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.15vw;
}

.txtoverlap-tarif h2 {
  font-family: lato-black;
  color: white;
  font-size: 2.8vw;
  z-index: 2;
  line-height: 5vw;
  text-transform: uppercase;
}

.tarif-content {
  display: flex;
  justify-content: center;
  gap: 7vw;
  width: 75vw;
  margin: 0px auto;
}
.female-tarif,
.male-tarif {
  flex: 1;
}
.schedule h1 {
  font-family: lato-black;
  font-size: 1.1vw;
  color: white;
  margin-bottom: 1.2vw;
  text-transform: uppercase;
}

.schedule-item .service {
  font-family: lato-black;
  font-size: 1.1vw;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.schedule-item .price {
  font-family: lato;
  font-size: 0.9vw;
  color: white;
  text-wrap: nowrap;
}
/* tarif section end */

/* coiffure section start */
.coiffure-section {
  width: 100%;
  padding-top: 40px;
}

.coiffure-container {
  width: 100%;
  padding: 4vw 0px 11vw 0px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* left side start */
.coiffure-left-side {
  flex: 1;
}

.coiffure-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.homme-text {
  /* display: grid; */
  /* place-items: center; */
  text-align: center;
  position: relative;
}

.specialiaties-text {
  font-family: adelia;
  color: #c59d5f;
  opacity: 30%;
  font-size: 6vw;
  line-height: 0vw;
  font-weight: lighter;
}

.coiffure-text h4 {
  font-family: lato;
  color: var(--blackColor);
  font-size: 0.7vw;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.15vw;
  position: relative;
  font-weight: lighter;
}

.coiffure-text h2 {
  font-family: lato-black;
  font-size: 1.9vw;
  padding-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  line-height: 3.6vw;
}

.coiffure-text p {
  font-family: lato;
  font-size: 1.2vw;
  padding: 0 80px;
  margin: 0px auto;
}
/* left side end */

/* right side start */
.coiffure-right-side {
  flex: 1;
}

.coiffure-images {
  display: grid;
  position: relative;
}

.coiffure-images img {
  width: 60%;
  height: auto;
  object-fit: cover;
}

.coiffure-img1 {
  grid-area: 1 / 1;
  z-index: 1;
}

.coiffure-img2 {
  grid-area: 1 / 1;
  z-index: 2;
  width: 75%;
  justify-self: center;
  transform: translateY(32%);
}
/* right side end */
/* coiffure section end */

/* founded section start */
.founded-section {
  width: 100%;
  height: auto;
  background: #282828;
  padding: 1.4vw 0px;
}

.founded-container {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}

.founded {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.squad {
  position: relative;
}
.founded-overlap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.founded-overlap h1 {
  font-family: adelia;
  font-size: 3vw;
  color: #c59d5f;
  opacity: 30%;
  grid-area: 1 / 1;
  font-weight: lighter;
  position: absolute;
}

.founded-overlap h2 {
  font-family: lato-black;
  font-size: 2.2vw;
  /* grid-area: 1 / 1; */
  z-index: 2;
  /* transform: translateY(20%); */
  color: white;
}

.founded-container span {
  font-family: lato;
  color: var(--whiteColor);
  font-size: 0.7vw;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.15vw;
  position: relative;
  font-weight: lighter;
  margin-top: 1vw;
  display: block;
}
/* founded section end */

/* reviews section start */
.reviews-section {
  position: relative;
  width: 100%;
  padding: 4vw 0vw 3vw 0vw;
  text-align: center;
}

.background-title {
  line-height: 0px;
  font-family: adelia;
  font-size: 12vw;
  color: #c59d5f;
  opacity: 30%;
  z-index: 1;
  font-weight: lighter;
  top: 7vw;
  position: relative;
}

.reviews-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  z-index: 2;
}

.review-card {
  display: grid;
  padding: 40px 40px;
  place-items: center;
}

.quote-top {
  font-family: lato-black;
  font-size: 6vw;
  line-height: 0.5;
}

.review-card h2 {
  font-family: lato-black;
  font-size: 2.2vw;
  padding-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
}

.review-card p {
  font-family: lato;
  font-size: 1.2vw;
  padding: 0 80px;
  margin: 0px auto;
}

.review-card .author {
  font-family: lato;
  color: var(--blackColor);
  font-size: 0.7vw;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.15vw;
  position: relative;
  font-weight: lighter;
  line-height: 5vw;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000 !important;
  font-size: 24px;
}
/* reviews section end */

/* gallery section start */
.salon-gallery-section {
  width: 100%;
  padding: 20px 0px;
}

.salon-gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.salon-gallery-image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.salon-gallery-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.salon-gallery-container img:hover {
  transform: scale(1.1);
  width: 100%;
}
/* gallery section end */

/*google map section start*/
.map-wrapper {
  width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 30vw;
  border: 0;
}
/*google map section end*/

/* sponsors section start */
.sponsors-section {
  background: #262626;
  width: 100%;
  padding: 60px 20px;
}

.sponsor-swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide.sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.sponsors img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s ease;
}

.sponsors img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
/* sponsors section end */
/*NOSSALONS CSS END */

/* NOSSERVICES CSS START */
/* hero content start */
.hero-content h1 {
  font-family: lato-black;
  color: var(--whiteColor);
  font-size: 4.5vw;
  position: relative;
  top: -6vw;
  text-transform: uppercase;
  text-align: center;
}
/* hero content start */

/* coiffure section start */
.homme-txt {
  font-family: adelia;
  color: #c59d5f;
  opacity: 30%;
  font-size: 6vw;
  font-weight: lighter;
  line-height: 0px;
}

.coiffure-btns {
  font-family: lato;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 2vw; */
  /* margin-top: 4vw; */
  padding: 5.7vw 5vw 1vw 5vw;
}

.coiffure-btns .btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coiffure-btns .btn span {
  font-size: 1.5vw;
}

.coiffure-btns .btn button {
  font-size: 1.2vw;
  background: black;
  color: white;
  border: 1px solid black;
  padding: 14px 70px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coiffure-btns .btn button:hover {
  background: white;
  color: black;
}
/* coiffure section end */

/* gallery section start */
.nosservices-gallery-section {
  width: 100%;
  background: #fffaf4;
  margin-top: -7vw;
}

.nosservices-gallery-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.nosservices-gallery-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.nosservices-gallery-container img:hover {
  transform: scale(1.1);
  width: 100%;
}
/* gallery section end */

/* tarif section start */
.tarifs-section {
  width: 100%;
  padding-top: 40px;
}

.tarifs-container {
  width: 100%;
  padding: 1vw 20vw 4vw 20vw;
  background: #f7f8f9;
}

.tarifs-container h1 {
  font-size: 1.8vw;
  /* padding-bottom: 20px; */
  font-family: lato-black;
}

.tarifs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 50px;
  padding: 1.7vw 0px;
  font-family: lato;
  font-size: 1.1vw;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tarif-item .title {
  font-weight: bolder;
}

.tarifs-container h4 {
  font-family: lato;
  font-size: 1vw;
  font-weight: lighter;
}
/* tarif section end */

/* info section start */
.info-section {
  width: 100%;
  background: #ffffff;
}

.info-container {
  width: 100%;
  padding: 6vw 4vw 2.5vw 4vw;
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.info-box h1 {
  font-family: adelia;
  font-size: 6vw;
  color: #c59d5f;
  opacity: 30%;
  grid-area: 1 / 1;
  line-height: 0px;
  font-weight: lighter;
}

.info-box span {
  font-family: lato;
  color: var(--blackColor);
  font-size: 0.7vw;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.15vw;
  position: relative;
  font-weight: lighter;
}

.info-box h2 {
  font-family: lato-black;
  font-size: 1.9vw;
  padding-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  line-height: 3.6vw;
}

.info-box p {
  font-family: lato;
  font-size: 1.2vw;
  padding: 0 80px;
  margin: 0px auto 3vw auto;
}

.info-box a {
  font-family: lato;
  color: #c59d5f;
  font-size: 0.7vw;
  text-decoration-thickness: 0.07vw;
  text-underline-offset: 0.2vw;
  font-weight: 600;
  letter-spacing: 0.2vw;
}
/* info section end */
/* NOSSERVVICES END */

/* ADVANTAGES CSS START */
/* advantages section start */
.advantages-text-section {
  width: 100%;
  padding: 7vw 0px 4vw 0px;
}

.advantages-text-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* left side start */
.left {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.left h1 {
  font-family: adelia;
  color: #c59d5f;
  opacity: 30%;
  font-size: 8vw;
  grid-area: 1 / 1;
  font-weight: normal;
  position: absolute;
}

.left h2 {
  font-family: lato-black;
  font-size: 2.5vw;
  z-index: 2;
  transform: translate(-2vw, -4.72vw);
}
/* left side end */

/* right side start */
.right {
  font-family: lato;
  flex: 1;
}

.right h3 {
  font-size: 1.3vw;
  padding-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.9vw;
}

.right p {
  font-size: 1.05vw;
  font-weight: lighter;
  margin-top: 1vw;
}
/* right side end */
/* advantages text section end */

/* cards section start */
.advantages-cards-section {
  width: 100%;
  padding-top: 80px;
  background: #fffaf4;
}

.advantages-cards-container {
  width: 100%;
  padding: 0 40px 40px 40px;
  text-align: center;
}

.advantages-cards-container .cards {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-bottom: 40px;
}

.cards .card {
  display: flex;
  flex-direction: column;
  width: 25vw;
  height: auto;
  background: #c59d5f;
  padding: 0.5vw 0px 2vw 0px;
  gap: 20px;
  color: white;
}

.card h2 {
  font-family: adelia;
  font-size: 2.5vw;
  font-weight: lighter;
}

.card small {
  font-family: lato;
  font-size: 1vw;
  line-height: 0px;
}

.card h1 {
  font-family: lato-black;
  font-size: 4.5vw;
  line-height: 3.5vw;
}

.card span {
  font-family: lato;
  font-size: 0.8vw;
  text-transform: uppercase;
  letter-spacing: 0.1vw;
  font-weight: 600;
}

.advantages-cards-container p {
  font-family: lato;
  font-size: 1vw;
  font-weight: lighter;
}
/* cards section end */

/* discounts section start */
.discounts-section {
  width: 100%;
  padding-top: 40px;
}

.discounts-container {
  width: 100%;
  padding: 0px 15vw;
}

.discount-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  align-items: stretch;
  text-align: center;
}

.discount-cards .discount-card {
  flex: 1;
  background: black;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discount-cards .discount-card h1 {
  font-family: adelia;
  font-size: 9vw;
  color: #c59d5f;
  opacity: 30%;
  grid-area: 1 / 1;
  font-weight: lighter;
  position: absolute;
  left: -4vw;
  top: 0vw;
}

.discount-cards .discount-card span {
  font-family: lato;
  font-size: 0.75vw;
  color: white;
  grid-area: 1 / 1;
  z-index: 2;
  /* transform: translateY(90%); */
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 0.1vw;
}

.discount-cards .discount-card h2 {
  font-family: lato-black;
  color: white;
  font-size: 2vw;
  z-index: 2;
  text-transform: uppercase;
  line-height: 4vw;
}

.discount-cards .discount-card p {
  font-family: lato;
  font-size: 1vw;
  color: white;
  padding: 0 40px;
  line-height: 1.4vw;
  font-weight: lighter;
}

.discount-cards .discount-img {
  flex: 1;
  overflow: hidden;
}
.discount-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image cropped nicely */
  display: block;
}
/* disocunts section end */

/* newsletter section start */
.newsletter-section {
  width: 100%;
  background: #fffaf4;
  padding: 5vw 0px;
}

.newsletter-container {
  width: 100%;
  /* padding: 0 150px 40px 150px; */
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
  text-align: center;
}

.newsletter-content .content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.content span {
  font-family: lato;
  font-size: 0.75vw;
  color: var(--blackColor);
  grid-area: 1 / 1;
  z-index: 2;
  /* transform: translateY(90%); */
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 0.1vw;
}

.content h1 {
  font-family: lato-black;
  color: var(--blackColor);
  font-size: 2vw;
  z-index: 2;
  text-transform: uppercase;
  line-height: 4vw;
}

.content p {
  font-family: lato;
  font-size: 1vw;
  color: var(--blackColor);
  padding: 0 40px;
  line-height: 1.4vw;
  font-weight: lighter;
}

.content a {
  font-family: lato;
  color: #c59d5f;
  font-size: 0.85vw;
  text-decoration-thickness: 0.07vw;
  text-underline-offset: 0.2vw;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2vw;
  margin-top: 1.5vw;
}
/* newsletter section end */
/* ADVANTAGES CSS END */

/* BLOG CSS START */
/* blog section start */
.blog-section {
  width: 100%;
  padding: 85px 14vw 8vw 14vw;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6vw;
  /* padding: 0 40px 40px 40px; */
}

.blog-img {
  overflow: hidden;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.blog img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}
.blog img:hover {
  transform: scale(1.1);
  width: 100%;
}

.blog span {
  font-family: lato;
  display: block;
  /* padding: 20px 0; */
  font-size: 0.7vw;
  letter-spacing: 0.1vw;
  margin-top: 1.5vw;
}

.blog h1 {
  display: block;
  margin: 1vw 0px;
  font-family: lato-black;
  font-size: 1.1vw;
  letter-spacing: 0.1vw;
  text-transform: uppercase;
  line-height: 1.6vw;
}

.blog p {
  display: block;
  margin-bottom: 1.7vw;
  font-family: lato;
  font-size: 1.1vw;
  font-weight: lighter;
  line-height: 1.6vw;
}

.blog a {
  font-family: lato;
  color: #c59d5f;
  font-size: 0.7vw;
  text-decoration-thickness: 0.07vw;
  text-underline-offset: 0.2vw;
  font-weight: 600;
  letter-spacing: 0.2vw;
}
/* blog section end */
/* BLOG CSS END */

/*INFORMATIONS CSS START */
/* contact info section start */
.contact-info-section {
  width: 100%;
  padding-top: 50px;
}

.contact-info-container {
  width: 100%;
  padding: 0 40px 50px 40px;
  text-align: center;
}
.contact-info-container img.phoneicon {
  width: 0.8vw;
  display: inline;
  margin-right: 0.8vw;
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact h1 {
  font-family: lato-black;
  font-size: 2vw;
}

.contact p {
  font-family: lato;
  font-size: 1.2vw;
  font-weight: lighter;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact span {
  font-family: lato;
  font-size: 1.2vw;
  font-weight: lighter;
}

.locations {
  padding-top: 40px;
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
}

.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.location {
  font-family: lato-black;
}

.location span {
  font-family: lato;
  font-size: 1.5vw;
}
/* contact info section end */

/* contact form start */
.contact-form-section {
  width: 100%;
  padding-top: 40px;
  background: #fffaf4;
}

.contact-form-container {
  width: 100%;
  padding: 0 40px 50px 40px;
}

.form-text {
  padding-bottom: 20px;
}

.contact-form-container h1 {
  font-family: lato-black;
  padding-bottom: 12px;
  text-align: center;
  font-size: 2vw;
  text-transform: uppercase;
}

.contact-form-container p {
  font-family: lato;
  font-size: 1.2vw;
  font-weight: lighter;
  text-align: center;
  line-height: 2vw;
}

.contact-form {
  max-width: min(90%, 1400px);
  margin: 1.3vw auto 0px auto;
  font-family: lato;
  color: #333;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  background-color: #fff;
  font-size: 15px;
  outline: none;
}

.form-group label {
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 6px;
}

.form-group input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
textarea:focus {
  border-color: #b18f63;
}

.form-group textarea {
  resize: vertical;
}

.form-group .note {
  font-size: 12px;
  font-style: italic;
  color: #888;
  margin-top: 4px;
}

.checkbox-group label {
  display: flex;
  gap: 8px;
  font-size: 12px;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  accent-color: #c59d5f;
}

.antispam {
  margin-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.antispam label {
  margin-bottom: 0.5vw;
}
.antispam input {
  padding: 10px 10px;
  width: 300px;
  height: 40px;
  margin: 0 auto;
  display: block;
  text-align: left;
}

.contact-form .submit-btn {
  display: flex;
  margin: 20px auto;
  padding: 12px 65px;
  border: none;
  background: black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.contact-form .submit-btn:hover {
  background: #c59d5f;
}

.privacy-policy {
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  text-align: center;
}

.privacy-policy label {
  font-family: lato;
  font-size: 0.8vw;
}

.privacy-btn {
  display: flex;
  margin: 10px auto;
  padding: 12px 65px;
  border: none;
  background: black;
  border: 1px solid black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  font-family: lato-black;
  text-transform: uppercase;
  letter-spacing: 0.15vw;
}

.privacy-btn:hover {
  background: white;
  color: black;
}
/* contact form end */
/*INFORMATIONS CSS END */

/* RECRUTEMENT CSS START */
/* recrutement info section start */
.recrutement-info-section {
  width: 100%;
  padding: 3.5vw 0px;
}

.recrutement-container {
  width: 100%;
  /* padding: 0 40px 50px 40px; */
  text-align: center;
}

.recrutement-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.recrutement-text h1 {
  font-family: lato-black;
  font-size: 1.8vw;
}

.recrutement-text span {
  font-family: lato;
  font-size: 1.1vw;
  font-weight: 600;
}

.recrutement-text p {
  display: block;
  /* margin-bottom: 1.7vw; */
  font-family: lato;
  font-size: 1.1vw;
  font-weight: lighter;
  line-height: 1.6vw;
}
/* recrutement info section end */

/*recrutement form start */
.recrutment-form-section {
  width: 100%;
  padding: 3vw 0px 7.5vw 0px;
  background: #fffaf4;
}

.recrutement-form-container {
  width: 100%;
  /* padding: 0 40px 50px 40px; */
}

.recrutement-form-text {
  padding-bottom: 20px;
}

.recrutement-form-text h1 {
  font-family: lato-black;
  margin-bottom: 1vw;
  text-align: center;
}

.recrutement-form-text p {
  font-family: lato;
  line-height: 25px;
  text-align: center;
}

.recrutement-form {
  max-width: min(90%, 1400px);
  margin: 0 auto;
  font-family: lato;
  color: #333;
}

.form-row-radio {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 20px;
}

.radio-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.radio-group label {
  margin-top: 8px;
}

.radio-group .radio-options {
  display: flex;
  gap: 20px;
  align-items: center;
  accent-color: black;
}

.radio-group .radio-options label {
  font-size: 16px;
}

.form-row-select {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.choose-file {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
}

.recrutement-form .submit-btn {
  display: flex;
  margin: 10px auto;
  padding: 12px 65px;
  border: none;
  background: black;
  border: 1px solid black;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  font-family: lato-black;
  text-transform: uppercase;
  letter-spacing: 0.15vw;
}

.recrutement-form .submit-btn:hover {
  background: #c59d5f;
}
/*recrutement form end */
/* RECRUTEMENT CSS END */

/* MEDIA QUERIES START */
@media (max-width: 1024px) {
  .hero {
    padding-top: 47vw;
  }
}

@media (max-width: 992px) {
  /*HOME PAGE CSS START */
  .logo {
    padding: 5px 10px;
  }

  .logo img {
    width: 16vw;
  }

  .nav-menu {
    padding: 10vw;
  }
  .nav-menu ul {
    display: none;
  }

  .nav-icons i {
    font-size: 3vw;
  }

  .nav-menu > ul {
    display: none;
  }

  .nav-menu ul li,
  .nav-menu i {
    font-size: 18px;
    margin: 0px 1.5vw;
  }

  .fa-bars {
    display: block !important;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-content2 span {
    font-size: 3vw;
  }

  .hero-content2 img {
    width: 5vw;
  }

  .about-section {
    padding: 20px 10px;
  }

  .about-container {
    padding: 0 10px;
    width: 100%;
    display: unset;
    flex-direction: column;
    justify-content: center;
    gap: unset;
  }

  .left-col {
    /* width: 100%;
    padding-left: 0; */
    left: -7vw;
    position: relative;
    display: flex;
  }

  .left-col .img-wrapper {
    width: unset;
  }

  .right-col {
    width: 100%;
    padding: 0px 8vw;
  }

  .about-text-overlap {
    /* padding-bottom: 60px; */
  }

  .right-col .barber-txt {
    font-size: 19vw;
    margin-bottom: -23vw;
  }

  .right-col .about-txt {
    font-size: 4vw;
  }
  .pattern {
    padding: 0vw 5vw;
  }
  .pattern h1 {
    font-size: 25vw;
  }
  .right-col .experience-txt {
    font-size: 6vw;
    font-family: lato-black;
    z-index: 2;
    left: 1vw;
    position: relative;
    line-height: 6.4vw;
    margin: 2vw 0px 0vw 0px;
  }
  .left-col img {
    width: 60vw;
    left: 7vw;
    top: 6vw;
  }
  .left-col .img-wrapper::before {
    width: 60vw;
    height: 88vw;
  }
  .right-col .para-txt {
    font-size: 4vw;
  }
  .right-col .para-txt br {
    display: none;
  }
  .right-col .para-boldtxt {
    font-size: 4vw;
  }
  .right-col .para-boldtxt br {
    display: block;
  }
  .about-sign span {
    font-size: 8vw;
  }

  .teams-txt {
    font-size: 4vw;
  }

  .expert-txt {
    font-size: 5vw;
  }

  .prof-txt {
    top: clamp(100px, 10vw, 180px);
    font-size: clamp(100px, 7vw, 140px);
  }

  .member-info span:first-of-type {
    font-size: 2vw;
  }

  .member-info span:last-of-type {
    font-size: 3vw;
  }

  .price-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7vw 9vw;
  }
  .price-layered-images .trim {
    width: 78.9vw;
  }
  .left-side-price {
    width: 100%;
  }

  .price-layered-images .bg-trim-machine {
    width: 55vw;
    height: 79vw;
  }

  .right-side-price {
    width: 100%;
    margin-top: -67vw;
  }

  .price-text-overlap {
    place-items: center;
    text-align: center;
  }

  .right-side-price .prices-txt {
    font-size: 22vw;
  }

  .right-side-price .best-price-txt {
    font-size: 4vw;
    top: 28vw;
  }

  .right-side-price .city-price-txt {
    font-size: 6vw;
    top: 36vw;
  }

  .pricing-columns {
    width: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    top: 55vw;
    padding: 4vw 11vw 8vw 11vw;
    gap: 8px;
  }

  .pricing-column {
    gap: 8px;
  }

  .service-name {
    font-size: 4vw;
  }

  .service-price {
    font-size: 4vw;
  }

  .gallery-container {
    padding: 40px 0 0 0;
  }

  .gallery-text span:first-of-type {
    font-size: 5vw;
  }

  .gallery-text span:last-of-type {
    font-size: 7vw;
  }
  .gallery-text h1:last-of-type {
    font-size: 5.2vw;
    line-height: 7vw;
  }
  .gallery-text h1:first-of-type {
    font-size: 3.4vw;
  }
  .image-gallery {
    gap: 0;
  }

  .footer-txt {
    line-height: 5vw;
  }
  .footer-txt p {
    font-size: 6vw !important;
    line-height: 7vw !important;
  }
  .footer-txt h1 {
    font-size: 6.25vw;
    line-height: 6.5vw;
  }
  .footer-logo img {
    width: 18vw;
  }

  .contact-info {
    font-size: 2vw;
  }
  /*HOME PAGE CSS END */
}

@media (max-width: 820px) {
  /*HOME PAGE CSS START */
  .left-col .img-wrapper {
    /* width: unset; */
    /* left: -3.5vw; */
  }

  .right-col {
    width: 100%;
  }
  .price-layered-images .trim-machine {
    width: 33.5vw;
  }
  .prof-txt {
    margin: -11vw 0px -13vw 0px;
    font-size: clamp(90px, 7vw, 140px);
  }
  /*HOME PAGE CSS END */

  /*NOSSALONS CSS START */
  .scheduling button {
    padding: 14px 24px;
    font-size: 16px;
    max-width: 220px;
  }

  .icon {
    font-size: 22px;
  }
  /*NOSSALONS CSS END */
}

@media (max-width: 768px) {
  /*HOME PAGE CSS START */
  .left-col .img-wrapper {
    /* width: 400px; */
  }
  .hero-content1 .hairstyle {
    font-size: 6vw;
    line-height: 6.3vw;
  }
  .hero {
    padding-top: 47vw;
  }
  .prof-txt {
    top: clamp(100px, 7vw, 180px);
    font-size: clamp(80px, 7vw, 140px);
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
  }

  .footer-logo {
    order: 1;
    margin-bottom: 10vw;
  }

  .footer-logo img {
    width: 50vw;
  }

  .footer-txt {
    order: 2;
    margin: 4vw 0px;
    font-size: 6vw;
    width: 100%;
  }

  .contact-info {
    order: 3;
    width: 100%;
    margin-bottom: 30px;
    font-size: 6vw;
  }

  .separation-line {
    display: block;
    width: 80% !important;
    height: 1px;
    background-color: white;
    margin: 15px auto;
  }

  .social-icons {
    justify-content: center;
    margin-top: 8vw;
  }

  .social-icons span {
    display: none;
  }

  .social-icons i {
    font-size: 8vw;
  }

  .footer-container {
    /* padding: 50px 20px; */
  }
  /*HOME PAGE CSS END */

  /* NOSSERVICES CSS START */
  .hero-content {
    bottom: 38%;
    font-size: 12vw;
  }

  .coiffure-container {
    width: 100%;
    padding: 20px 0 350px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .coiffure-left-side {
    width: 100%;
  }

  .coiffure-text h1 {
    font-size: 18vw;
  }

  .coiffure-text h4 {
    font-size: 5vw;
  }

  .coiffure-text p {
    font-size: 5.5vw;
    padding: 0 8vw;
  }

  .coiffure-btns {
    /* flex-direction: column; */
    padding: 10vw 5vw 5vw 5vw;
  }

  .coiffure-btns .btn button {
    font-size: 3vw;
    padding: 2vw 9vw;
  }

  .coiffure-right-side {
    width: 100%;
    padding-top: 20px;
  }

  .coiffure-btns .btn span {
    font-size: 3vw;
  }

  .nosservices-gallery-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
  }

  .tarifs-container {
    padding: 40px 15px;
  }

  .tarifs-container h1 {
    font-size: 5vw;
  }
  .tarifs-section {
    padding: 7vw;
  }
  .tarifs {
    grid-template-columns: repeat(1, 1fr);
    font-size: 4vw;
  }
  .tarifs span {
    font-size: 3.5vw;
  }
  .tarifs-container h4 {
    font-size: 3.5vw;
  }

  .info-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .info-box {
    position: relative;
    padding: 20px 20px 30px 20px;
  }

  .info-box h1 {
    font-size: 18vw;
  }

  .info-box span {
    font-size: 4vw;
  }

  .info-box h2 {
    font-size: 8vw;
    line-height: 12vw;
    padding: 0px;
  }

  .info-box p {
    font-size: 3.2vw;
    padding: 20px 0;
  }

  .info-box a {
    font-size: 4vw;
  }
  /* NOSSERVICES CSS END */
}

@media (max-width: 700px) {
  /*HOME PAGE CSS START */
  .prof-txt {
    top: clamp(80px, 7vw, 180px);
    font-size: clamp(70px, 7vw, 140px);
  }
  /*HOME PAGE CSS END */
}

@media (max-width: 600px) {
  /*HOME PAGE CSS START */
  .left-col .img-wrapper {
    /* width: 250px; */
  }

  .prof-txt {
    top: clamp(70px, 7vw, 180px);
    font-size: clamp(60px, 7vw, 140px);
  }
  /*HOME PAGE CSS END */
}

@media (max-width: 480px) {
  .navbar.active .logo img {
    width: 16vw;
  }
  .coiffure-images {
    padding-left: 10vw;
  }
  /*HOME PAGE CSS START */
  .hero {
    /* height: 70vh; */
    padding: 50vw 0px 6vw 5.5vw;
  }
  .hero-content1 .hairstyle {
    font-size: 6vw;
    line-height: 6.3vw;
  }
  .tarif-section {
    padding: 14vw 0px 6vw 0px;
  }
  .hero-content1 .barber-name {
    font-size: 3vw;
  }
  .about-container {
    /* width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: unset; */
  }

  .left-col .img-wrapper {
    /* width: 220px; */
  }

  .prof-txt {
    top: clamp(90px, 10vw, 180px);
    font-size: clamp(40px, 7vw, 140px);
  }

  .member-info span:first-of-type {
    font-size: 3vw;
  }

  .member-info span:last-of-type {
    font-size: 4vw;
  }

  .pricing-columns {
    padding: 20px 10px;
    gap: 8px;
  }

  .footer-container {
    /* min-height: 100vh; */
  }
  /*HOME PAGE CSS END */

  /*NOSSALONS CSS START */
  .slide-text span:first-of-type {
    font-size: 6vw;
  }
  .slide-text {
    z-index: 11;
  }
  .slide-text h1 {
    font-size: 8vw;
  }
  .salon-swiper {
    position: relative;
  }
  .slide-layer img {
    filter: brightness(0.6);
  }
  /* .salon-swiper::before{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 11;
  background: rgba(0,0,0,0.3);
} */
  .slide-text span:last-of-type {
    font-size: 5vw;
  }

  .salon-text-section {
    padding-top: 20px;
  }

  .salon-text-container {
    padding: 12vw 0px 9vw 0px;
  }

  .text-overlap h1 {
    font-size: 8.5vw;
  }

  .text-overlap small {
    font-size: 4vw;
    transform: translateY(90%);
  }

  .text-overlap h2 {
    font-size: 6vw;
  }

  .salon-text-container p {
    font-size: 4.5vw;
    padding: 2vw 4vw;
    line-height: 7vw;
    width: unset;
  }

  .salon-text-container span {
    font-size: 2.5vw;
  }

  .service-cards-container {
    flex-direction: column;
    padding: 0 10px 40px 10px;
    gap: 25px;
  }

  .service-card h1 {
    font-size: 6vw;
    padding-bottom: 20px;
  }

  .service-card p {
    font-size: 4.5vw;
    line-height: 6vw;
    padding: 0 10px;
  }

  .schedule-container {
    padding: 0 0;
  }

  .schedule-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .scheduling {
    width: 100vw;
    height: unset;
    padding: 8vw 0px;
  }

  .scheduling p {
    font-family: lato-black;
    font-size: 4vw;
    line-height: 6vw;
  }

  .scheduling button {
    padding: 2vw 7vw;
    font-size: 4vw;
    max-width: 100%;
    border-radius: 1.2vw;
  }

  .icon {
    font-size: 20px;
  }

  .txt-overlap h1 {
    font-size: 12vw;
    left: unset;
  }

  .txt-overlap span {
    font-size: 4vw;
  }

  .txt-overlap h2 {
    font-size: 8vw;
  }

  .schedule {
    padding: 4vw 0px;
  }

  .day {
    font-family: lato;
    font-size: 3vw;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .time {
    font-family: lato;
    font-size: 4vw;
  }

  .tarifs-container {
    padding: 20px 10px;
  }

  .txtoverlap-tarif h1 {
    font-size: 14vw;
  }

  .txtoverlap-tarif span {
    font-size: 3vw;
  }

  .txtoverlap-tarif h2 {
    font-size: 9vw;
    line-height: 11vw;
  }

  .tarif-content {
    flex-direction: column;
    width: 82vw;
  }
  .tarif-container {
    padding: 0px;
  }
  .schedule h1 {
    font-size: 6vw;
  }

  .schedule-item .service {
    font-size: 3vw;
  }

  .schedule-item .price {
    font-family: lato;
    font-size: 3.5vw;
    color: white;
  }

  .coiffure-container {
    flex-direction: column;
    /* padding: 0px 0px 1vw 0px */
  }

  .coiffure-left-side {
    width: 100%;
  }

  .coiffure-text h1 {
    font-size: 9vw;
  }

  .coiffure-text h4 {
    font-size: 3.5vw;
  }

  .coiffure-text h2 {
    font-size: 7.7vw;
    line-height: 14vw;
  }

  .coiffure-text p {
    font-size: 4.5vw;
    padding: 2vw 4vw;
    line-height: 7vw;
    width: unset;
  }

  .coiffure-right-side {
    width: 100%;
  }

  .founded-section {
    padding: 7vw 0px;
  }
  .map-wrapper {
    /* height: 10vw; */
  }
  .map-wrapper iframe {
    height: 100vw;
  }
  .sponsors-section {
    padding: 6vw 0px;
  }
  .founded-overlap h1 {
    font-size: 7vw;
  }

  .founded-overlap h2 {
    font-size: 6vw;
  }

  .founded-container span {
    font-size: 2.5vw;
  }

  .quote-top {
    font-family: lato-black;
    font-size: 10vw;
    line-height: 0.5;
  }

  .review-card h2 {
    font-family: lato-black;
    font-size: 4vw;
    padding-bottom: 2vw;
  }

  .review-card p {
    /* max-width: 800px; */
    font-size: 3.5vw;
    padding: unset;
  }

  .review-card .author {
    font-size: 3vw;
    line-height: 15vw;
  }
  .review-card {
    padding: 5vw 5vw 2vw 5vw;
  }
  .reviews-container svg {
    width: 3vw;
    display: none;
  }
  .background-title {
    top: 17vw;
    font-size: 9vw;
  }
  .salon-gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
  }
  .salon-gallery-section {
    padding: 1vw 0px;
  }
  /*NOSSALONS CSS END */

  /* NOSSERVICES CSS START */
  .coiffure-container {
    padding: 0px 0px 36vw 0;
  }

  .info-container {
    gap: 10vw;
  }
  /* NOSSERVICES CSS END */

  /* ADVANTAGES CSS END */
  .advantages-text-section {
    width: 100%;
    padding: 9vw 2vw 7vw 7vw;
  }

  .advantages-text-container {
    flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
  }

  .left h1 {
    font-size: 11vw;
  }

  .left h2 {
    font-size: 7vw;
  }

  .right h3 {
    font-size: 3vw;
    line-height: 5vw;
    padding: 0px;
  }

  .right p {
    font-size: 3vw;
  }

  .advantages-cards-section {
    padding: 0px;
  }

  .advantages-cards-container {
    padding: 0 0 40px 0;
  }

  .advantages-cards-container .cards {
    flex-direction: column;
    padding-bottom: 5vw;
  }
  .discounts-section {
    padding: 0px;
  }
  .cards .card {
    width: 100%;
    padding: 20px 20px;
    gap: 10px;
  }

  .card h2 {
    font-size: 8vw;
  }

  .card small {
    font-size: 3vw;
  }

  .card h1 {
    font-size: 11vw;
    line-height: 11vw;
  }

  .card span {
    font-size: 2.5vw;
  }

  .advantages-cards-container p {
    font-size: 2.6vw;
    padding: 0 5vw;
  }

  .discounts-container {
    padding: 0 0 0 0;
  }

  .discount-cards {
    flex-direction: column;
    padding-bottom: 0;
  }

  .discount-cards .discount-card {
    padding: 14vw 5vw 9vw 5vw;
    gap: 20px;
  }

  .discount-cards .discount-card h1 {
    font-size: 14vw;
    left: unset;
    text-align: center;
    position: unset;
    line-height: 0px;
  }

  .discount-cards .discount-card span {
    font-size: 4vw;
  }

  .discount-cards .discount-card h2 {
    font-size: 9vw;
    line-height: 15vw;
  }

  .discount-cards .discount-card p {
    font-size: 3vw;
    padding: 0 5vw;
    line-height: 4vw;
  }

  .newsletter-container {
    width: 100%;
    padding: 5vw;
  }

  .newsletter-content {
    flex-direction: column;
    gap: 30px;
  }

  .newsletter-content .content {
    gap: 6vw;
    margin: 4vw 0px;
  }

  .content span {
    font-size: 4vw;
  }

  .content h1 {
    font-size: 8vw;
  }

  .content p {
    font-size: 4vw;
    padding: 0 0;
    line-height: 5vw;
  }

  .content a {
    font-size: 5vw;
  }
  /* ADVANTAGES CSS END */

  /* BLOG CSS START */
  .blog-section {
    width: 100%;
    padding: 0px;
  }

  .blog-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 20px 40px 20px;
    gap: 8vw;
  }

  .blog span {
    font-size: 4vw;
  }

  .blog h1 {
    font-size: 4.5vw;
    line-height: 6vw;
  }

  .blog p {
    font-size: 4vw;
    line-height: 5vw;
    margin-bottom: 6vw;
  }

  .blog a {
    font-size: 4vw;
  }
  /* BLOG CSS END */

  /*INFORMATIONS CSS START */
  .contact h1 {
    font-size: 8vw;
  }

  .contact p {
    font-size: 4vw;
  }

  .contact span {
    font-size: 4vw;
  }

  .location span {
    font-size: 4vw;
  }

  .contact-form-container {
    padding: 0 10px 50px 10px;
  }

  .form-row {
    flex-direction: column;
  }

  .privacy-btn {
    padding: 12px 30px;
  }
  /*INFORMATIONS CSS END */

  /*RECRUTEMENT CSS END */
  .recrutement-text h1 {
    font-size: 8vw;
  }

  .recrutement-text span {
    font-size: 4vw;
  }
  .recrutement-info-section {
    padding: 11.5vw 8vw;
  }
  .recrutement-text p {
    font-size: 3.5vw;
    line-height: 7vw;
  }
  .privacy-policy label {
    font-size: 3vw;
  }
  .recrutment-form-section {
    padding: 3vw;
  }
  .recrutement-form-text p {
    font-size: 3.5vw;
  }
  .recrutement-form-text h1 {
    margin-bottom: 3vw;
  }
  .recrutement-form-container {
    width: 100%;
    padding: 0 10px 40px 10px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row-radio {
    flex-direction: column;
  }

  .form-row-select {
    flex-direction: column;
  }
  /*RECRUTEMENT CSS END */
}

@media (max-width: 400px) {
  /*HOME PAGE CSS START */
  .right-col .para-boldtxt {
    font-size: 4vw;
  }

  .prof-txt {
    top: clamp(90px, 10vw, 180px);
    font-size: clamp(30px, 7vw, 140px);
  }
  /*HOME PAGE CSS END */
}
/* MEDIA QUERIES END */
