/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"); */
@import url('https://fonts.cdnfonts.com/css/sakkal-majalla');
* {
  margin: 0;
  padding: 0;
}

html {
  /* font-family: "Cairo", sans-serif; */
}
body {
  font-family: 'Amiri', sans-serif;
  overflow-x: hidden;
  background: var(--Lightest-variation, #f7faf8);
}

:root {
  --main-color: #0b1f0b;
  --Color-White: #fff;
  --bg-color: #fff;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none !important;
}

img:not(.img__footer) {
  width: 100%;
  object-fit: cover;
}
.pt-3-rem {
  padding-top: 3rem;
}

.img__footer{
    width: 50px;
    height: auto;
    margin: 0 10px;
}

/* ---------------------------------------- */
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.m-auto {
  margin: auto;
}
/* ---------------------------------------- */
.btn-button {
  display: flex;
  /* width: 180px; */
  /* height: 52px; */
  padding: 10px 50px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--White, #fff);
  color: var(--White, var(--Color-White, #fff));
  text-align: center;

  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  background-color: transparent;
  transition: all 0.5s;
}
.btn-button:hover {
  border: 1px solid var(--White, #fff);
  background-color: var(--White, var(--Color-White, #fff));
  color: #0b1f0b;
}
/* ================================================================================================================= */

/* ================================================================================================================= */
/* navbar */
.box-nav {
  background: rgba(11, 31, 11, 0.64);
  position: fixed;
  width: 100%;
  transition: all 1s;
  /* border-bottom: 1px solid var(--demo-1-light, #e4e1eb); */
  /* background: var(--White, #fff); */
  z-index: 999;
  padding-top: 1rem;
  padding-bottom: 1rem;
  top: 0;
}
.box-items-nav {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.box-logo-nav {
  width: 224px;
  /* height: 39.977px; */
  flex-shrink: 0;
}

.box-logo-nav img {
  width: 100%;
}
.box-navbar-collapse {
  display: flex;
  align-items: center;
}

.box-navbar-collapse .box-lists-ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
.item-link {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.item-link .link-nav {
  color: var(--Medium-variation, #b0b8b0);

  /* Body Large - Inter 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  transition: color 0.5s;
}

.item-link:hover .link-nav {
  color: var(--Color-White);
}
.item-link:hover .btn-COLLECTIONS {
  color: var(--mainColor);
}

.border-Mid {
  transform: translate(-50%);
  background-color: #0b1f0b;
  width: 16px;
  height: 2px;
  opacity: 1;
  transform: translate(0px);
  transition: transform 1.5s, opacity 1s;
}
.item-link:hover .border-Mid {
  transform: translate(-200px);
  opacity: 0;

  background-color: var(--mainColor);
}

.item-link .link-nav.active-nav {
  color: var(--Color-White);
}

.box-list-link-nav-2 .box-lists-ul {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.box-items-nav .box-list-link-nav-2 .box-lists-ul li a {
  color: #0b1f0b;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.box-items-nav .box-list-link-nav-2 .box-lists-ul li a:hover {
  color: var(--mainColor);
}

.box-list-link-nav-3 .box-lists-ul {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.box-items-nav-3 .box-list-link-nav .box-lists-ul li a {
  color: #0b1f0b;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 1px;
}

.box-list-link-nav-3 {
  display: none;
}

.box-menu {
  display: none;
}

.box-list-link-nav-2 {
  display: block;
}
.btn-cart-nav {
  /* font-size: 1.4rem; */
  padding: 0;
  margin: 0;
}
.btn-cart-nav:focus {
  border: none;
}
.btn-COLLECTIONS {
  color: #0b1f0b;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
}
.btn-COLLECTIONS:focus {
  border: none;
}
.icon-arrow i {
  transition: all 0.5s;
}
.box-btn-COLLECTIONS-tap:hover .icon-arrow i {
  transform: rotate(180deg);
}

.box-btn-COLLECTIONS-tap {
  /* position: relative; */
}
.box-tap-nav {
  position: absolute;
  background-color: transparent;
  min-width: 100%;
  left: 0;
  top: 2.5rem;
  padding: 1rem;
  opacity: 0;
  display: none;
  transition: all 0.5s;
}
.box-tap-nav-2 {
  background-color: #fff;
  padding: 2rem 1rem;
}
.box-btn-COLLECTIONS-tap:hover .box-tap-nav {
  opacity: 1;
  display: block;
}
.btn-language {
  padding: 0;
  border: none;
}
.text-language {
  background-color: #fff;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 50px;
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.box-icon-dropdown-menu {
  font-size: 18px;
  color: #fff;
}
.dropdown-menu-language {
  /* background-color: aqua; */
  min-width: auto;
  transform: translate(0px, 51px) !important;
  border: none;
  box-shadow: 1px 1px 10px #0b1f0b;
}
.dropdown-menu-language li {
  border-bottom: 1px solid #cbcbcb;
}
.dropdown-menu-language li:last-child {
  border-bottom: none;
}
.box-avtar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.box-avtar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.box-dropdown-prfile-pc,
.box-dropdown-language-pc,
.box-Login-pc {
  display: block;
}
.box-dropdown-prfile-mo,
.box-dropdown-language-mo,
.box-Login-mo {
  display: none;
}

.box-btn-Login-dropdown-language {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* -------------------------------------------------- */

/* Icon 1 */

#nav-icon2 {
  width: 35px;
  height: 25px;
  /* position: relative; */
  /* margin: 50px auto; */
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* background-color: #ef5858; */
}

#nav-icon2 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
  top: 12px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
  top: 24px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 10px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 10px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 17px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 17px;
}

/* --------------------------------------------------------------------------------- */
/* Log In */
.box-Modal-LogIn .modal-body {
  padding: 32px;
}
.box-Modal-LogIn .modal-header {
  border: none;
}

.box-Modal-LogIn .box-img-logo-login {
  margin-bottom: 2rem;
  /* padding: 2rem; */
}

.box-Modal-LogIn .input-phone {
  display: flex;
  height: 48px;
  padding: 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Medium-variation, #b0b8b0);
  background: var(--Color-White, #fff);
}
.box-Modal-LogIn .input-phone:focus {
  box-shadow: none;
}
.box-Modal-LogIn .label-phone {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
  text-transform: capitalize;
}

.box-Modal-LogIn .btn-LogIn-Modal {
  display: flex;
  height: 52px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: var(--primary-darkest, #0b1f0b);
  color: var(--White, var(--Color-White, #fff));
  text-align: center;

  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  width: 100%;
  margin-top: 2rem;
  transition: all 0.5s;
  border: solid 1px #0b1f0b;
}
.box-Modal-LogIn .btn-LogIn-Modal:hover {
  background-color: transparent;
  border: solid 1px #0b1f0b;
  color: #0b1f0b;
}
.box-Modal-LogIn .box-close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 14px;
  color: rgba(93, 102, 93, 1);
}
.box-Modal-LogIn .box-close-modal .btn-close:focus {
  box-shadow: none;
  border: none;
}
.box-Modal-LogIn .modal-dialog-LogIn {
  max-width: 50%;
}

.box-otp-login p {
  text-align: center;
  color: var(--Dark-variation, #5d665d);
  text-align: center;
  /* Body/Regular */
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  width: 80%;
  margin: 0 auto 1rem;
}
.box-otp-login p span {
  color: var(--primary-darkest, #0b1f0b);
  /* Body/Bold */
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.box-btn-Resend-OTP {
  margin-top: 1.4rem;
  text-align: center;
}
.box-btn-Resend-OTP span {
  color: var(--Dark-variation, #5d665d);
  text-align: center;

  /* Body Large - Inter 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.btn-Resend-OTP {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration-line: underline;
}

.box-phone-login {
  /* display: none; */
}
.box-otp-login {
  display: none;
}
/* ================================================================================================================= */
/* header */
.carousel-caption .box-carousel {
  height: 888px;
  position: relative;
}

.box-carousel img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.box-text-carousel {
  background-color: rgba(11, 31, 11, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-caption {
  position: static;
}
.box-text-carousel-center {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-next,
.carousel-control-prev {
  width: 42px;
  height: 42px;

  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid var(--White, #fff);
  font-size: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev {
  left: 8%;
}
.carousel-control-next {
  right: 8%;
}
.link-Book-Now {
  display: flex;
  /* width: 180px; */
  /* height: 52px; */
  padding: 12px 45px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--White, #fff);
  border: solid 1px #fff;
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;

  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  transition: all 0.5s;
}
.link-Book-Now:hover {
  color: var(--White, #fff);
  border: solid 1px #fff;
  background-color: var(--primary-darkest, #0b1f0b);
}
.link-Learn-more {
  display: flex;
  /* width: 180px; */
  /* height: 52px; */
  padding: 12px 45px;

  justify-content: center;
  align-items: center;

  border-radius: 4px;
  border: 1px solid var(--White, #fff);
  background-color: transparent;
  color: var(--White, var(--Color-White, #fff));
  text-align: center;

  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  transition: all 0.5s;
}
.link-Learn-more:hover {
  border: 1px solid var(--White, #fff);
  background-color: #fff;
  color: #0b1f0b;
}
.box-text-carousel-center span {
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(247, 250, 248, 0.16);
  color: var(--White, var(--Color-White, #fff));
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
  text-transform: uppercase;
  /* margin-bottom: rem; */
}

.box-text-carousel-center h1 {
  color: var(--Color-White, #fff);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
  letter-spacing: -0.25px;
  margin-top: 1rem;
}

.box-text-carousel-center p {
  color: var(--Medium-variation, #b0b8b0);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
  margin: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.box-link-Book-Now-Learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.box-slider-header .carousel-indicators {
  bottom: 15%;
}
.box-slider-header .carousel-indicators [data-bs-target] {
  display: flex;
  width: 10px;
  height: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* ================================================================================================================= */
/* search */
.box-search {
  padding: 2rem;
  border-radius: 4px;
  background: var(--White, #fff);
  box-shadow: 0px 12px 16px -2px rgba(11, 31, 11, 0.04);
  position: relative;
  bottom: 4.5rem;
  z-index: 4;
}

.box-search input {
  border-radius: 60px;
  background: var(--Color-White, #fff);
  /* height: 48px; */
  padding: 20px;
  padding-left: 3rem;
  padding-right: 10rem;
  background: var(--White, #fff);
  box-shadow: 0px 12px 16px -2px rgba(11, 31, 11, 0.04);
}
.box-search input:focus {
  /* padding: 0; */
  /* border: none; */
  /* box-shadow: none; */
}
.btn-search {
  color: var(--White, var(--Color-White, #fff));
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  display: flex;
  padding: 12px 48px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: var(--primary-darkest, #0b1f0b);
  position: absolute;
  top: 16px;
  right: 20px;
}
.btn-search:hover {
  background: var(--primary-darkest, #0b1f0b);
  color: var(--White, var(--Color-White, #fff));
}

.box-form-search {
  position: relative;
}
.box-icon-search {
  position: absolute;
  top: 1.8rem;
  left: 1.8rem;
  font-size: 18px;
  color: rgba(11, 31, 11, 1);
}

.box-form-search input {
  border-radius: 50px;
  border: 10px solid var(--Light-variation, #ebf0eb);
}
.box-form-search input::placeholder {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.box-form-search input:focus {
  border-radius: 50px;
  background-color: #fff;
  border: 10px solid var(--Light-variation, #ebf0eb);
  box-shadow: none;
  box-shadow: 0px 12px 16px -2px rgba(11, 31, 11, 0.04);
}
/* ================================================================================================================= */
/* Who we are */
.titel-h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 43.2px */
  text-transform: capitalize;
  text-align: center;
  text-align: center;
  margin-bottom: 2rem;
}
.box-we-are p {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.box-we-are p .uppercase-letter {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 72px */
  letter-spacing: -4px;
}

.box-we-are p .Green-Home-Shave {
  color: var(--Primary-color, #195d1a);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.box-we-are .box-img-we-are {
  /* height: 384px; */
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.box-we-are .box-img-we-are img {
  height: 100%;
  width: 100%;
  transition: all 1.2s;
  border-radius: 4px;
}

.box-we-are .box-img-we-are:hover img {
  transform: scale(1.1);
}
.liear-img-er-are {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  /* background-color: #195d1a; */

  border: solid rgba(196, 196, 196, 1) 2px;
  border-radius: 4px;
}
/* ================================================================================================================= */
/* Services */
.box-slider-Services {
  position: relative;
}

.box-img-item-Services {
  height: 384px;
  width: 100%;
}
.box-img-item-Services img {
  height: 100%;
  transition: all 0.8s;
  width: 100%;
}

.box-item-Services:hover .box-img-item-Services img {
  transform: scale(1.2);
}

.box-item-Services {
  position: relative;
  width: 100%;
}
.box-titel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 31, 11, 0.64);
}

.box-titel h3 {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 28px */
  border-bottom: solid 1px rgba(255, 255, 255, 1);
  max-width: max-content;
  /* margin: auto; */
  padding-bottom: 0.5rem;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%);
  transition: visibility 0.2s, opacity 0.2s;
  width: 100%;
}

.box-item-Services:hover .box-titel h3 {
  opacity: 0;
  visibility: hidden;
}

.box-item-Services {
  overflow: hidden;
}

.box-titel-dec-hover {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  padding-bottom: 1.4rem;
  background-color: rgba(11, 31, 11, 0.5);
  position: absolute;
  /* top: 100%; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s;
}

.box-item-Services:hover .box-titel-dec-hover {
  /* top: 0; */
  visibility: visible;
  opacity: 1;
}

.box-titel-dec-hover h4 {
  border-bottom: solid 2px rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 28px;
  padding-bottom: 0.5rem;
}
.box-titel-dec-hover p {
  color: rgba(255, 255, 255, 1);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 17px;
  padding: 0;
  margin: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;

  height: 4.5rem;
  --max-lines: 3;
  display: -webkit-box;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
}
.box-minutes-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 24px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.link-Book-Now-Services {
  background-color: #fff;
  color: #0b1f0b;
  padding: 14px 0;
  width: 100%;
  border-radius: 4px;
  max-width: 100%;
  min-width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  border: 1px solid #fff;
}

.link-Book-Now-Services:hover {
  background-color: #ebf0eb;
  color: #0b1f0b;
  border: 1px solid #ebf0eb;
}

.box-img-Details-tram {
  height: 400px;
}

.box-text-About-Details-tram h2 {
  color: var(--primary-darkest, #0b1f0b);

  /* Headline Medium - Zilla Slab 28/Bold */
  font-family: 'Amiri', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
}
.box-text-About-Details-tram h3 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
.box-text-About-Details-tram p {
  color: var(--Dark-variation, #5d665d);

  /* Title Medium - Inter Medium 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.box-text-About-Details-tram h2 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}
.box-text-About-Details-tram ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  background: var(--Lightest-variation, #f7faf8);
  display: flex;
  height: 48px;
  padding: 0px 16px;
  align-self: stretch;
  margin-bottom: 0.5rem;
}
.box-text-About-Details-tram ul li h3 {
  color: var(--Dark-variation, #5d665d);
  /* Title Medium - Inter Medium 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.box-text-About-Details-tram ul li span {
  color: var(--primary-darkest, #0b1f0b);
  /* Title Medium - Inter Medium 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.box-Modal-Details-tram .modal-dialog-Details-tram {
  max-width: 80%;
  margin: auto;
}

.box-Modal-Details-tram .box-close-modal {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 14px;
  color: rgba(93, 102, 93, 1);
}

/* ----------------------------------------------------------------- */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
/* ----------------------------------------------------------------- */
.box-slider-Services .swiper-pagination {
  text-align: left;
  /* background-color: #195d1a; */
  position: relative;
  top: 2rem;
  width: max-content;
}
.box-lin-See-all {
  position: absolute;
  bottom: 18px;
  right: 0;
  z-index: 4;
}
.box-slider-Services .mySwiperServices {
  padding-bottom: 3rem;
}
.swiper-pagination-bullet-active {
  background-color: rgba(11, 31, 11, 1);
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.box-lin-See-all {
}
.box-lin-See-all a {
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 22px */
  text-decoration-line: underline;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.box-lin-See-all a span:first-child {
  /* text-decoration:underline; */
  border-bottom: 1px solid #0b1f0b;
}

.box-slider-Services .swiper-button-next,
.box-slider-Services .swiper-button-prev {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary-darkest, #0b1f0b);
  background: var(--primary-darkest, #0b1f0b);
  width: 40px;
  height: 40px;
  color: #fff;
  position: absolute;
  z-index: 2;
}

.box-slider-Services .swiper-button-next {
  right: -6%;
}
.box-slider-Services .swiper-button-prev {
  left: -6%;
}
.box-slider-Services .swiper-button-next::after,
.box-slider-Services .swiper-button-prev::after {
  font-size: 18px;
}
/* -------------------------------------------------------------------------------------------------- */
/* Details-Services */
.btn-Show-Details-Services {
  background-color: transparent;
  border: solid 1px #fff;
  color: #fff;
  padding: 14px 0;
  margin-top: 0.8rem;
  width: 100%;
  transition: all 0.5s;
  font-size: 20px;
}
.btn-Show-Details-Services:hover {
  background-color: #fff;
  color: #0b1f0b;
  border: solid 1px #fff;
}

.box-text-Details-Services h2 {
  color: var(--primary-darkest, #0b1f0b);

  /* Headline Medium - Zilla Slab 28/Bold */
  font-family: 'Amiri', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
}
.box-text-Details-Services p {
  /* color: var(--Dark-variation, #5d665d); */

  /* Title Medium - Inter Medium 16/24 */
  font-family: 'Amiri', sans-serif;
  /* font-size: 20px; */
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.box-img-Details-Services {
  height: 340px;
}
.box-img-Details-Services img {
  height: 100%;
  width: 100%;
}
.box-min-sar-Details-Services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.box-min-sar-Details-Services h3 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.box-min-sar-Details-Services span {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
.link-Book-now-Details-Services {
  color: var(--White, var(--Color-White, #fff));
  text-align: center;
  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  display: flex;
  height: 52px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: var(--primary-darkest, #0b1f0b);
}
.box-Modal-Details-tram .modal-dialog-Details-Services {
  max-width: 60%;
}
/* ================================================================================================================= */
/* Your-style-starts-here */
.box-Your-style-starts-here {
  position: relative;
}
.box-img-Your-style {
  height: 515px;
  width: 100%;
}
.box-img-Your-style img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.box-Your-style-starts-here {
  position: relative;
}

.box-text-Your-style {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(11, 31, 11, 0.8);
  /* filter: blur(4px); */
}
.box-text-Your-style h2 {
  color: var(--White, var(--Color-White, #fff));
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
  letter-spacing: -0.25px;
  text-transform: capitalize;
}
.box-text-Your-style p {
  color: var(--Light-variation, #ebf0eb);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
/* ================================================================================================================= */
/* Hair Stylists */
.box-titel-Name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 31, 11, 0.99) 0%,
    rgba(11, 31, 11, 0) 100%
  );
  transition: all 0.5s;
}

.box-titel-Name h3 {
  color: var(--White, var(--Color-White, #fff));
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */

  /* box-shadow: 0px 10px 30px #909; */
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%);
  transition: visibility 0.2s, opacity 0.2s;
  width: 100%;
}

.box-star-Hair-Stylists {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.box-star-Hair-Stylists ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
}

.box-star-Hair-Stylists ul .star-Full {
  color: #fff;
}
.box-star-Hair-Stylists ul .star-Empty {
  color: rgba(255, 255, 255, 0.3);
}

.box-titel-dec-hover-Hair-Stylists {
  /* padding-left: 1.4rem;
  padding-right: 1.4rem;
  padding-bottom: 1.4rem; */
  background-color: rgba(11, 31, 11, 0.8);
  position: absolute;
  /* top: 100%; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s;
  padding: 1rem;
  border-radius: 4px;
}

.box-item-Services:hover .box-titel-dec-hover-Hair-Stylists {
  /* top: 0; */
  visibility: visible;
  opacity: 1;
}

.box-titel-dec-hover-Hair-Stylists h4 {
  color: var(--White, var(--Color-White, #fff));
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  margin-bottom: 1rem;
}

.box-item-Services:hover .box-titel-Name {
  visibility: hidden;
  opacity: 0;
}
.box-items-titel-satr {
  border: #fff solid 1px;
  /* margin: 1rem; */
  /* width: 100%; */
  height: 100%;
  border-radius: 4px;
}
.box-slider-Services .mySwiperHairStylists {
  padding-bottom: 3rem;
}

/* ================================================================================================================= */
/* We are here */
.box-We-are-here-bg-img-map {
  background-image: url("../images/img-map.png");
  /* height: 563px; */
  background-size: cover;
  /* background-attachment:fixed; */
  background-position: center center;
  /* margin-bottom: 5rem; */
}

.liear {
  height: 100%;
  /* background-color: rgba(247, 250, 248, 0.9); */

  background: linear-gradient(
      180deg,
      rgba(247, 250, 248, 0.5) 0%,
      rgba(248, 250, 248, 0.97) 100%
    ),
    linear-gradient(
      180deg,
      rgba(248, 250, 248, 0.97) 0%,
      rgba(247, 250, 248, 0.5) 50%
    );
}

.box-img-map-item-text h3 {
  color: #0b1f0b;
  font-family: 'Amiri', sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 39px */
  text-align: center;
  margin-top: 1rem;
}

/* background: url(<path-to-image>), rgb(247, 250, 248,.9) 50% / cover no-repeat; */
/* ================================================================================================================= */
/* Download app */
.box-Download-app {
  background-color: #fff;
  position: relative;
  top: 10rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.box-text-Download-app h2 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
  letter-spacing: -0.25px;
  text-transform: capitalize;
}
.box-text-Download-app p {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

.box-link-apple-google {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 3rem;
}
.box-link-apple-google a {
  width: 135px;
  height: 40px;
}
.box-link-apple-google a img {
  width: 100%;
  height: 100%;
}
.box-img-Download-App {
  height: 467px;
  flex-shrink: 0;
  position: absolute;
  /* top: 0; */
  bottom: -8rem;
}
/* ================================================================================================================= */

/* footer */
.box-footer {
  /* background: var(--Darkest-color, #1f180f); */
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../images/bg-footer.png");
  background-position: center center;
  background-size: cover;
  padding-top: 12rem;
}
.box-img-logo-footer {
  width: 269.41px;
}
.box-img-logo-footer img {
  width: 100%;
  /* height: 48px; */
}
.box-footer-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.box-footer-item p {
  color: var(--Light-variation, #ebf0eb);
  font-family: 'Amiri', sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 1rem;
}
/* ----------------------------------- */
/* social-media */
.box-social-media ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.box-social-media ul {
  list-style: none;
  display: flex;
  gap: 10px;
}
/* .box-social-media ul li{
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  border: 1px solid var(--Light-color, #EBE7E1);
} */
.box-social-media ul li a {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--Light-color, #ebe7e1);
  color: #ebe7e1;
  font-size: 12px;
  transition: all 0.5s;
}
.box-social-media ul li a:hover {
  color: #0b1e0b;
  background-color: #fff;
}
/* ----------------------------------- */

.box-footer-item-2-3 h3 {
  color: var(--White, #fff);
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  margin-bottom: 1rem;
}
.box-item-link-footer ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.box-item-link-footer ul li {
  color: var(--Color-Light, #e1e5eb);
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.box-item-link-footer ul li span {
  padding-inline-end: 0.5rem;
}

.box-img-sudi-business {
  width: 213px;
  /* height: 52px; */
  margin-top: 0.5rem;
}
.box-img-sudi-business img {
  width: 100%;
  /* height: 52px; */
}

.box-VAT {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  margin-bottom: 2rem;
}

.box-img-VAT {
  width: 91.5px;
  height: 91.5px;
}
.box-img-VAT img {
  width: 100%;
  height: 100%;
}
.box-text-VAt ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.box-text-VAt ul li {
  color: var(--White, #fff);
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 20.25px */
}

.box-footer-item-2-2-all {
  display: flex;
  justify-content: end;
  padding-inline-start: 3rem;
}
.box-footer-item-2-3-all {
  display: flex;
  justify-content: center;
}
.box-Copyright-Made-with {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.box-Copyright-Made-with .box-Copyright p {
  color: #0b1f0b;
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin: 0;
}
.box-Copyright-Made-with .box-Made-with p {
  color: var(--Darkest-color, #1f180f);
  /* text-align: right; */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin: 0;
}
.box-Made-with img {
  width: 87.231px;
  height: 34px;
}

/* ================================================================================================================= */
/* page Our-services */

.box-header-2 {
  height: 400px;
  position: relative;
}

.box-header-2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.box-header-2 .box-text-carousel {
  background-color: rgba(11, 31, 11, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ================================================================================================================= */

.box-form-Contact-us label {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 21.6px */
}
.box-form-Contact-us .input-Contact-us {
  display: flex;
  height: 56px;
  padding: 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Medium-variation, #b0b8b0);
  background: var(--Color-White, #fff);
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

.box-dec-Contact-us {
  width: 50%;
  margin: 1rem auto 2rem;
}

.box-dec-Contact-us p {
  color: #0b1f0b;
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.box-form-Contact-us .textarea-Contact-us {
  display: flex;
  height: 214px;
  padding: 16px;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Medium-variation, #b0b8b0);
  background: var(--Color-White, #fff);
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.box-form-Contact-us .input-Contact-us:focus,
.box-form-Contact-us .textarea-Contact-us:focus {
  box-shadow: none;
  border-radius: 4px;
  border: 1px solid var(--primary-darkest, #0b1f0b);
  background: var(--Color-White, #fff);
}
.box-form-Contact-us .btn-Send-message {
  color: var(--White, var(--Color-White, #fff));
  text-align: center;

  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  display: flex;
  height: 52px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: var(--primary-darkest, #0b1f0b);
  width: 100%;
}
.box-call-email .item-call-email {
  display: flex;
  align-items: center;
  gap: 20px;
}
.box-call-email-Contact-us h2 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  text-transform: capitalize;
}
.box-call-email-Contact-us p {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  margin: 0;
}

.box-call-email-Contact-us .box-icon-call-email {
  padding: 8px;
  color: rgba(0, 0, 0, 1);
  border-radius: 4px;
  /* margin: .5rem; */
  border: 1px solid var(--Light-variation, #ebf0eb);
  font-size: 20px;
}
.box-call-email-Contact-us .box-icon-call-email-2 {
  background: var(--Light-variation, #ebf0eb);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;

  /* padding: 20px; */
}
.box-call-email-Contact-us {
  background-color: #fff;
  padding: 24px;
  align-self: stretch;
  border-radius: 4px;
  background: var(--Color-White, #fff);
}
.box-email-Contact-us {
  margin-top: 2rem;
}

/* ================================================================================================================= */
/* Appointments */
.box-taps .links-tap {
  justify-content: center;
  display: flex;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  border: 1px solid var(--primary-darkest, #0b1f0b);
  width: max-content;
  gap: 20px;
  margin: 3rem auto;
}
.box-taps .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  border-radius: 100px;
  background: var(--primary-darkest, #0b1f0b);
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.box-taps .nav-link {
  color: var(--primary-darkest, #0b1f0b);

  /* Title Large - Inter Medium 22/28 */
  font-family: 'Amiri', sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 127.273% */
}

.box-Date-time-Appointment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}

.time-Appointment {
  background-color: #fff;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-weight: 700;
}

.box-Date-time-Appointment .Date-Appointment {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.linl-Cancel-booking {
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  border-bottom: #fff solid 1px;
  width: max-content;
  margin: 1rem auto;
  padding: 0;
}

/* ------------------------------------------------------------------------------------------------------ */
/* Details Appointments */
.box-sleder-Details-Appointments .swiper-pagination-bullet {
  background-color: #fff;
}
.box-img-Details-tram {
  position: relative;
}

.box-text-Details-Appointments h2 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
}
.box-text-Details-Appointments h2 span {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.box-condition-Appointments .condition {
  display: flex;
  padding: 12px 32px;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  background: var(--primary-darkest, #0b1f0b);
  color: var(--White, var(--Color-White, #fff));
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  width: max-content;
  margin-top: 1rem;
}
.box-text-Details-Appointments h3 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}

.box-Overview-Appointments {
  padding-top: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--Medium-variation, #b0b8b0);
}
.box-Overview-Appointments h4 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.box-Overview-Appointments .min {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.box-Overview-Appointments .sar {
  color: var(--primary-darkest, #0b1f0b);
  text-align: right;
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.box-titel-min-sar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.box-Location-Appointments {
  padding-top: 1rem;
}

.box-Location-Appointments h4 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.box-Location-Appointments p {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin: 0;
}
.box-name-Barber {
  border-bottom: 1px solid var(--Medium-variation, #b0b8b0);
  padding-bottom: 1rem;
}
.box-name-Barber h4 {
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;

  /* Body Large - Inter 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin: 0;
}
.box-img-name-Barber {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--Light-variation, #ebf0eb);
}
.box-img-name-Barber img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.box-Appointment {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--Medium-variation, #b0b8b0);
}

.box-Appointment h4 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.box-Appointment p {
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin: 0;
}
.box-Total-Appointments {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.box-Sub-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-top: 1rem; */
  padding-bottom: 0.6rem;
}
.box-Sub-total h5 {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}
.box-Sub-total span {
}
.box-Total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-top: 1rem; */
  padding-bottom: 0.6rem;
}
.box-Total h5 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.box-Total span {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}
.box-text-Details-Appointments .btn-Booking {
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  text-decoration-line: underline;
  text-align: center;
}
/* ================================================================================================================= */

/* ================================================================================================================= */
/* Select-services */
.box-back-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-back-x .btn-back,
.box-back-x .btn-x {
  color: rgba(11, 31, 11, 1);
  font-size: 24px;
  padding: 0;
  margin: 0;
}

.box-back-x .btn-back:focus,
.box-back-x .btn-x:focus {
  border: none;
}

.name-services {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  text-transform: capitalize;
  margin-top: 0.6rem;
  margin-bottom: 1.4rem;
}
.box-Select-services h3 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

.box-Select-services p {
  overflow: hidden;
  color: var(--Dark-variation, #5d665d);
  text-overflow: ellipsis;
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 300px;
}
.box-Select-services .box-min-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.box-img-services {
  width: 148px;
  height: 148px;
  flex-shrink: 0;
}
.box-img-services img {
  width: 100%;
  height: 100%;
}
.box-item-services-img-titel-dec {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--White, #fff);
  box-shadow: 0px 8px 24px -2px rgba(11, 31, 11, 0.04);
  padding: 10;
  width: 100%;
  padding: 10px;
}
.box-item-services-img-titel-dec.active-Select-services {
  border-radius: 4px;
  border: 2px solid var(--primary-darkest, #0b1f0b);
  background: var(--White, #fff);
  box-shadow: 0px 8px 24px -2px rgba(11, 31, 11, 0.04);
}
.box-Select-services .btn-plus {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-color: #5d665d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s;
}
.box-Select-services .btn-plus::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\2b";
  transition: all 1s;
}

.box-Select-services .btn-plus:hover::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f00c";
}
.box-Select-services .btn-plus.active-check{
    background-color: #399139;
}
.box-Select-services .btn-plus.active-check::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f00c";
  /* color: #fff; */
}

.box-img-titel {
  display: flex;
  gap: 20px;
  align-items: center;
}
.box-Select-services ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* margin-top: 2rem; */
  /* margin-bottom: 2rem; */
}
/* -------------------------------------------------- */
.box-Overview {
  border-radius: 0px 0px 4px 4px;
  border-top: 4px solid var(--primary-darkest, #0b1f0b);
  background: var(--Color-White, #fff);
  padding: 32px;
  margin-top: 4.3rem;
}
.box-Overview h2 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  margin-bottom: 1rem;
}
.box-Overview p {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  margin-top: 1rem;
}
.btn-Continue {
  color: var(--White, var(--Color-White, #fff));
  text-align: center;

  /* button/large */
  font-family: 'Amiri', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  display: flex;
  width: 385px;
  height: 52px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--primary-darkest, #0b1f0b);
  margin-top: 2rem;
  width: 100%;
}
.btn-Select-services {
  text-align: start;
  border: none;
  width: 100%;
}
.btn-Select-services:focus {
  border: none;
}
.box-item-chosen .item-chosen:last-child {
  border-bottom: 1px solid var(--Medium-variation, #b0b8b0);
  padding-bottom: 1.4rem;
}
.item-chosen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.item-chosen h4 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.item-chosen span {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.item-chosen h5 {
  color: var(--primary-darkest, #0b1f0b);
  text-align: right;
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}

.box-total-services {
  padding-top: 1rem;
}
.box-item-Sub-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.box-item-Tax {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.box-item-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
/* -------------------------------------------- */
/* Location-services */
.box-Location-services {
  padding-top: 1rem;
  /* padding-bottom: 3rem; */
}

.box-icon-Location {
  display: flex;
  /* padding: 8px; */
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  background: rgba(247, 250, 248, 1);
  color: #0b1f0b;
  width: 32px;
  height: 32px;
  /* margin: auto; */
}
.box-Location h3 {
  color: var(--primary-darkest, #0b1f0b);
  text-align: center;

  /* Body Large - Inter 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-top: 0.5rem;
}
.box-Location p {
  color: var(--Dark-variation, #5d665d);
  text-align: center;

  /* Body Small - Inter 12/16 */
  font-family: 'Amiri', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}
.box-Location .btn-Location {
  padding: 20px 16px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid var(--Light-variation, #ebf0eb);
  background: var(--Color-White, #fff);

  flex-direction: column;

  /* gap: 12px; */
  text-align: center;
  width: 100%;
  height: 170px;
  transition: all 0.5s;
}
.box-Location .btn-Location:hover {
  border-radius: 4px;
  border: 2px solid var(--primary-darkest, #0b1f0b);
  background: var(--Color-White, #fff);
}

.btn-Location.active-btn-Location {
  border: 2px solid var(--primary-darkest, #0b1f0b);
  background: var(--Color-White, #fff);
}

.box-icon-plus {
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.btn-Location-plus {
  padding: 20px 16px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(235, 240, 235, 1);
  background: rgba(235, 240, 235, 1);

  flex-direction: column;

  /* gap: 12px; */
  text-align: center;
  width: 100%;
  height: 170px;
}
.btn-Location-plus:hover {
  background: rgba(235, 240, 235, 1);
}

.box-item-chosen-location {
  margin-top: 1rem;
  border-bottom: 1px solid var(--Medium-variation, #b0b8b0);
  padding-bottom: 1.4rem;
}
.box-item-chosen-location h4 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  line-height: 24px; /* 171.429% */
}
.box-item-chosen-location span {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

/* ================================================================================================================= */

/* tap-services */
.box-tap-services .wizard > .content > .body {
  float: none;
  position: static;
  width: 100%;
  height: 100%;
  padding: 0;
}
.box-tap-services .wizard > .content {
  background: transparent;
  display: block;
  margin: 0;
  min-height: auto;
  overflow: hidden;
  position: relative;
  width: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.box-tap-services .wizard > .actions {
  text-align: start;
}
.box-tap-services .wizard > .steps .number {
  display: none;
}
.box-tap-services .wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  padding: 0;
  margin: 0;
}
.box-tap-services .wizard > .steps > ul > li {
  width: auto;
}
.box-tap-services .wizard > .steps > ul > li,
.wizard > .actions > ul > li {
  float: none;
}
.box-tap-services .wizard ul,
.tabcontrol ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.box-tap-services .wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
}
.box-tap-services .wizard > .steps .current a {
  background-color: transparent;
  color: #0b1f0b;

  /* Label Large - Inter Medium 14/20 */
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.box-tap-services .wizard > .steps .current a::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f054";
  padding-inline-start: 0.5rem;
}

.box-tap-services .wizard > .steps .disabled a {
  color: var(--Medium-variation, #b0b8b0);
  /* Label Large - Inter Medium 14/20 */
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  background-color: transparent;
}

.box-tap-services .wizard > .steps .disabled a::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f054";
  padding-inline-start: 0.5rem;
  /* color: #0b1f0b; */
}
.box-tap-services .wizard > .steps .disabled:last-child a::after {
  display: none;
}

.box-tap-services .wizard > .steps .done a {
  background-color: transparent;
  color: #0b1f0b;

  /* Label Large - Inter Medium 14/20 */
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.box-tap-services .wizard > .steps .done a::after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f054";
  padding-inline-start: 0.5rem;
}

.box-tap-services .wizard > .steps {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------- */
/* Barber */
.box-icon-users {
  color: rgba(11, 31, 11, 1);
  font-size: 20px;
  text-align: center;
}

.btn-Location-users {
  padding: 20px 16px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(235, 240, 235, 1);
  background: rgb(255, 255, 255);

  flex-direction: column;

  /* gap: 12px; */
  text-align: center;
  width: 100%;
  height: 170px;
}
.box-img-Barber-services {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: auto;
}
.box-img-Barber-services img {
  width: 100%;
  height: 100%;
}

.btn-Barber {
  padding: 20px 16px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid transparent;
  background: var(--Color-White, #fff);

  flex-direction: column;

  /* gap: 12px; */
  text-align: center;
  width: 100%;
  height: 170px;
  transition: all 0.5s;
}
.btn-Barber:hover {
  background: var(--Color-White, #fff);
}
.btn-Barber.active-btn-Barber {
  border: 2px solid var(--primary-darkest, #0b1f0b);
  background: var(--Color-White, #fff);
}
.box-img-chosen-Barber {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
/* -------------------------------------------------------------------- */
/* Appointment */
.box-item-chosen-Appointment h3 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.box-item-chosen-Appointment {
  margin-top: 1rem;
  border-bottom: 1px solid var(--Medium-variation, #b0b8b0);
  padding-bottom: 1.4rem;
}
.box-item-chosen-Appointment h4 {
  color: var(--primary-darkest, #0b1f0b);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  line-height: 24px; /* 171.429% */
}
.box-item-chosen-Appointment span {
  color: #5d665d;
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}
.Date-Appointment {
  color: #0b1f0b;
  font-family: 'Amiri', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.btn-Appointment h3 {
  /* color: var(--Dark-variation, #5d665d); */
  text-align: center;

  /* Title Medium - Inter Medium 16/24 */
  font-family: 'Amiri', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  margin: 0;
}
.btn-Appointment p {
  /* color: var(--Dark-variation, #5D665D); */
  text-align: center;

  /* Body Medium - Inter 14/20 */
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin: 0;
}
.box-Appointment-services .btn-Appointment {
  padding: 5px 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid transparent;
  background: var(--Color-White, #fff);

  flex-direction: column;

  /* gap: 12px; */
  text-align: center;
  width: 100%;
  /* height: 170px; */
  transition: all 0.5s;
  color: var(--Dark-variation, #5d665d);
}
.box-Location-services .box-Appointment-services .btn-Appointment:hover {
  color: #fff;
  background-color: #0b1f0b;
}

.box-Location-services
  .box-Appointment-services
  .btn-Appointment.active-btn-Appointment {
  color: #ebf0eb;
  background: #0b1f0b;
}

.box-time {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.box-time ul {
  display: block !important;
}
.box-time ul li {
  width: 100%;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.btn-time {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid var(--Light-variation, #ebf0eb);
  background: var(--White, #fff);
  width: 100%;
  transition: all 0.5s;
}
.btn-time:hover {
  border-radius: 4px;
  border: 1px solid var(--primary-darkest, #0b1f0b);
  background: var(--White, #fff);
  color: #0b1e0b;
}

.active-btn-time {
  border-radius: 4px;
  border: 1px solid var(--primary-darkest, #0b1f0b);
  background: var(--White, #fff);
  color: #0b1e0b;
}

.time-chosen-Appointment {
  color: var(--Dark-variation, #5d665d);
  font-family: 'Amiri', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.box-time{
  display: none;
}

.box-all-Selects-services .box-tap-services .wizard > .actions{
  margin-top: 2rem;
}

.box-all-Selects-services .wizard > .actions > ul  {
 justify-content: space-between;
}

.box-all-Selects-services .wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active{
background-color: #0b1e0b;
}

/* --------------------------------------------------- */
.box-Appointment-services .swiper-button-next, .box-Appointment-services .swiper-button-prev{
  color: rgba(0, 0, 0, 1);
  top: 100px;
}
.box-Appointment-services .swiper-button-next:after, .box-Appointment-services .swiper-button-prev:after{
  font-size: 1rem;
  font-weight: 900;
}
.box-Appointment-services .swiper-button-prev{
  left: 0; 
}
.box-Appointment-services .swiper-button-next{
  left: 50px;
}
/* ================================================================================================================= */
/* ================================================================================================================= */

@media screen and (max-width: 1199px) {
  .btn-button {
    padding: 4px 10px;
    font-size: 14px;
  }
  .box-btn-Login-dropdown-language {
    gap: 15px;
  }
  .box-navbar-collapse .box-lists-ul {
    gap: 14px;
  }
  .box-img-logo-footer {
    width: 200px;
  }
  .item-link .link-nav {
    font-size: 14px;
  }
  .box-logo-nav {
    width: 200px;
  }
}

@media screen and (max-width: 1070px) {
  .box-slider-Services .swiper-button-next {
    display: none;
  }
  .box-slider-Services .swiper-button-prev {
    display: none;
  }

  .box-Modal-LogIn .modal-dialog-LogIn {
    max-width: 60%;
  }
}

@media screen and (min-width:992px) and (max-width:1199px){
  .box-Select-services p{
    width: 200px;
  }
}

@media screen and (max-width: 991px) {
  .box-menu {
    display: block;
    cursor: pointer;
  }
  .box-navbar-collapse {
    display: block;
    position: absolute;
    top: 100%;
    width: 300px;
    right: -100%;
    transition: all 1s;
  }
  .box-navbar-collapse.open {
    display: block;
    position: absolute;
    top: 100%;
    width: 300px;
    right: 0;
  }

  .box-navbar-collapse .box-lists-ul {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    /* background-color: #fff; */
    background: rgba(11, 31, 11, 0.98);
    height: 90vh;
    padding-top: 3rem;
  }

  .box-list-link-nav-2 {
    display: none;
  }
  .box-list-link-nav-3 {
    display: block;
  }
  .box-dropdown-prfile-pc,
  .box-dropdown-language-pc,
  .box-Login-pc {
    display: none;
  }
  .box-items-nav {
    justify-content: space-between;
  }
  .box-Login-mo {
    display: block;
  }

  .box-dropdown-language-mo {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }
  .box-dropdown-prfile-mo {
    display: block;
    position: absolute;
    left: 1rem;
    top: 1rem;
  }
  .box-text-carousel-center h1 {
    font-size: 32px;
  }
  .box-text-carousel-center p {
    font-size: 14px;
  }
  .link-Learn-more,
  .link-Book-Now {
    padding: 10px 0;
    font-size: 16px;
    width: 120px;
  }

  .box-link-Book-Now-Learn-more {
    margin-top: 1rem;
  }
  .box-img-Download-App {
    position: static;
    margin-top: 2rem;
  }
  .box-Download-app {
    padding-bottom: 0;
    top: 4rem;
  }
  .box-footer {
    padding-top: 5rem;
  }
  .box-img-Download-App {
    width: 60%;
    margin: 2rem auto 0;
  }
  .box-text-Download-app {
    text-align: center;
  }
  .box-link-apple-google {
    justify-content: center;
  }
  .box-img-logo-footer {
    width: 269px;
    margin: auto;
  }
  .box-footer-item p {
    text-align: center;
    margin-top: 1rem;
  }
  .box-social-media ul {
    justify-content: center;
  }
  .box-footer-item-2-2-all {
    justify-content: center;
    text-align: center;
    padding-inline-start: 0;
  }
  .box-footer-item-2-3-all {
    text-align: center;
  }
  .box-VAT {
    justify-content: center;
  }
  .box-img-sudi-business {
    margin: auto;
  }
  .pt-3-rem {
    padding-top: 0rem;
  }
  .box-Download-app {
    padding-top: 0;
  }
  .box-Modal-LogIn .modal-dialog-LogIn {
    max-width: 80%;
  }
  .box-dec-Contact-us {
    width: 80%;
  }
  .box-Modal-Details-tram .modal-dialog-Details-Services {
    max-width: 80%;
  }

  .box-img-Details-tram{
    height: unset;
  }
}

@media screen and (max-width: 767px) {
  .box-slider-header .carousel-indicators {
    bottom: 10%;
  }
  .box-search {
    /* background-color: aqua; */
    padding: 1rem;
  }
  .box-search input {
    padding: 14px;
    padding-left: 3rem;
    padding-right: 10rem;
  }
  .btn-search {
    padding: 8px 20px;
    top: 13px;
  }
  .box-icon-search {
    top: 1.4rem;
  }
  .box-form-search input {
    /* border-radius: 50px; */
    border: 8px solid var(--Light-variation, #ebf0eb);
  }
  .box-form-search input:focus {
    border: 8px solid var(--Light-variation, #ebf0eb);
  }
  .box-search {
    bottom: 3rem;
  }
  .titel-h2 {
    font-size: 24px;
  }
  .box-we-are p {
    font-size: 14px;
  }
  .box-we-are p .uppercase-letter {
    font-size: 24px;
  }
  .box-we-are p .Green-Home-Shave {
    font-size: 14px;
  }
  .box-titel h3 {
    font-size: 20px;
  }
  .box-titel-dec-hover h4 {
    font-size: 20px;
  }
  .box-titel-dec-hover p {
    font-size: 12px;
  }
  .box-minutes-price {
    font-size: 18px;
  }
  .link-Book-Now-Services {
    padding: 12px 0;
    font-size: 20px;
  }
  .box-lin-See-all a {
    font-size: 18px;
  }
  .box-text-Your-style h2 {
    font-size: 30px;
  }
  .box-text-Your-style p {
    font-size: 14px;
  }
  .box-titel-Name h3 {
    font-size: 20px;
  }
  .box-titel-dec-hover-Hair-Stylists h4 {
    font-size: 20px;
  }
  .box-img-Download-App {
    width: 80%;
    margin: 2rem auto 0;
  }
  .box-Copyright-Made-with {
    flex-direction: column;
    gap: 10px;
  }
  .box-img-Your-style {
    height: 300px;
    width: 100%;
  }
  .box-slider-header {
    /* margin-top: 4.5rem; */
  }
  .box-Modal-LogIn .modal-body {
    padding: 18px;
  }
  .box-Modal-LogIn .box-close-modal {
    right: 0.5rem;
    top: 0.5rem;
  }
  .box-dec-Contact-us {
    width: 100%;
    margin: 1rem auto 1rem;
  }

  .box-dec-Contact-us p {
    font-size: 14px;
  }
  .box-form-Contact-us label {
    font-size: 16px;
  }
  .box-form-Contact-us .input-Contact-us {
    height: 50px;
  }
  .box-form-Contact-us .textarea-Contact-us {
    height: 180px;
  }
  .box-call-email-Contact-us h2 {
    font-size: 20px;
  }
  .box-call-email-Contact-us p {
    font-size: 16px;
  }
  .box-call-email-Contact-us .box-icon-call-email-2 {
    width: 46px;
    height: 46px;
  }
  .box-call-email-Contact-us .box-icon-call-email {
    font-size: 16px;
  }
  .col-sm-10-mo {
    width: 50%;
    /* margin: auto; */
  }
  .col-sm-12-mo {
    width: 100%;
    margin: auto;
  }
  .box-Modal-Details-tram .modal-dialog-Details-Services {
    max-width: 90%;
  }
  .box-header-2{
    height: 300px;
  }
  .box-taps .links-tap{
    margin: 1rem auto;
    gap: 10px;
  }
  .box-taps .nav-link{
    font-size: 14px;
  }
  .box-Select-services p{
    width: 140px;
  }
  .box-tap-services .wizard ul, .tabcontrol ul{
    gap: 5px;
  }
  .box-tap-services .wizard > .steps .disabled a::after{
    padding-inline-start: 0.1rem;

  }
}

@media screen and (max-width: 640px) {
  .box-text-carousel-center h1 {
    font-size: 20px;
    margin-top: 0.5rem;
  }
  .box-text-carousel-center p {
    font-size: 12px;
  }
  .link-Learn-more,
  .link-Book-Now {
    padding: 6px 0;
    width: 100px;
    font-size: 12px;
  }
  .box-link-Book-Now-Learn-more {
    margin: 0;
  }
  .box-text-carousel-center p {
    padding-top: 0;
  }
  .box-text-carousel-center span {
    padding: 4px 12px;
  }
  .box-slider-header .carousel-indicators {
    bottom: 8%;
  }
  .box-img-logo-footer {
    width: 240px;
  }
  .box-Modal-LogIn .modal-dialog-LogIn {
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .box-slider-header .carousel-indicators {
    bottom: 8%;
  }
  .box-text-carousel-center {
    margin-top: 1rem;
  }
}


/** otp **/
.otp-field {
    display: flex;
    justify-content: center;
    direction: ltr !important;
}

.otp-field input {
    width: 50px;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 2px;
    border: 2px solid #55525c;
    background: #21232d;
    font-weight: bold;
    color: #fff;
    outline: none;
    transition: all 0.1s;
}

.otp-field input:focus {
    border: 2px solid #a527ff;
    box-shadow: 0 0 2px 2px #a527ff6a;
}

.disabled {
    opacity: 0.5;
}

.space {
    margin-right: 1rem !important;
}


@media(width <= 400px) {
    .box-slider-header .carousel-indicators{
        bottom: 0;
    }
}


@media screen and (max-width: 767px) {
    .box-img-services{
      width: 80px;
      height: 80px;
    }
    .name-services{
      font-size: 24px;
    }
    .box-tap-services .wizard ul{
      flex-wrap: wrap;
    }
    .box-img-titel {
    gap: 5px;
    }
    }
