@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
  --primary: #faa719;
  --primarylight: #FFF9E3;
  --primarydark: #0c0b09;
  --secondarydark: #1a1814;
  --white: #fff;
  --grey: #F5F5F5;
  --darkgrey: #737373;
  --primaryfont: "Montserrat", sans-serif;
	--padding: 1em;
}

* {
	padding: 0;
	border: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--primaryfont);
  background: var(--white);
  color: var(--secondarydark);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primaryfont);
}
p{
  font-size: 16px;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--primarylight);
}

#preloader img{
  /* content: "url')"; */
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  /* border: 6px solid var(--secondarydark); */
  border-top-color: var(--primary);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid var(--primary);
}

.back-to-top i {
  font-size: 28px;
  color: var(--primary);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--secondarydark);
}

.back-to-top:hover i {
  color: #444444;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 30px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #d9ba85;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: var(--primarydark);
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--primary);
}

#topbar .languages ul a {
  color: var(--primary);
}

#topbar .languages ul li+li {
  padding-left: 10px;
}

#topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--primary);
  content: "/";
}
span.tax_note {
  font-size: 12px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgb(250 167 25 / 40%);
  border-bottom: 1px solid rgb(250 167 25);
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  top: 30px;
  background: rgb(250 167 25 / 40%);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#header.header-scrolled {
  top: 0;
  background: rgb(250 167 25 / 50%);
  border-bottom: 1px solid var(--primary);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--white);
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid var(--primarydark);
  color: var(--secondarydark);
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--primary);
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: var(--white);
  color: var(--primary);
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: color-mix(in srgb, var(--secondarydark), transparent 20%);
  white-space: nowrap;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primarydark);;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgb(250 167 25 / 22%);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  height: 100vh;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--secondarydark);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg-shape.png") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgb(255 255 255 / 67%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}
.hero-content {
  z-index: 9;
}
img.hero-logo {
  width: 320px;
}
.hero-content h6{
  color: var(--primarydark);
  font-size: 12px;
  font-weight: 700;
}
.hero-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.hero-content .social-links a:hover{
  background: var(--primary);
}

.hero-content .centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 100%;
}

.hero-content .card {
  position: relative;
  height: 320px;
  width: 250px;
  aspect-ratio: 5/7;
  perspective: 50rem;
  border: 0px;
}
.hero-content .category-card {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}
.hero-content .card .shadow {
  position: absolute;
  inset: 0;
  background: var(--url);
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  filter: blur(2rem) saturate(0.9);
  box-shadow: 0 -1.5rem 2rem -0.5rem rgba(0, 0, 0, 0.7);
  transform: rotateX(var(--rotateX)) rotateY(var(--rotateY)) translate3d(0, 2rem, -2rem);
}
.hero-content .card .image {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%), var(--url);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: var(--url);
          mask-image: var(--url);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
}
.hero-content .card .image.background {
  transform: rotateX(var(--rotateX)) rotateY(var(--rotateY)) translate3d(0, 0, 0rem);
}
.hero-content .card .image.cutout {
  transform: rotateX(var(--rotateX)) rotateY(var(--rotateY)) translate3d(0, 0, 4rem) scale(0.92);
  z-index: 3;
}
.hero-content .card .content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  inset: 0;
  padding: 25px;
  transform: rotateX(var(--rotateX)) rotateY(var(--rotateY)) translate3d(0, 0, 6rem);
  z-index: 4;
  text-align: center;
}
.hero-content .card::after, .card::before {
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: var(--primary) 4px solid;
  transform: rotateX(var(--rotateX)) rotateY(var(--rotateY)) translate3d(0, 0, 2rem);
}
.hero-content .card::before {
  z-index: 4;
}
.hero-content .card.border-left-behind::before {
  border-left: transparent;
}
.hero-content .card.border-right-behind::before {
  border-right: transparent;
}
.hero-content .card.border-bottom-behind::before {
  border-bottom: transparent;
}

.hero-content .card .content h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding: 6px;
  color: var(--primarylight);
  background: rgba(0, 0, 0, 0.355);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgb(249 166 25 / 14%);
}
.image.background.products{
  background: url("../img/product.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.image.background.pets{
  background: url("../img/pets.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.image.background.maternity{
  background: url("../img/gallery/maternity/1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.image.background.family{
  background: url("../img/family.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.image.background.commercial{
  background: url("../img/commercial.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.image.background.wedding{
  background: url("../img/wedding.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.image.background.category-one{
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%) !important;
}

.hero-content .card .content p {
  font-weight: 300;
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

.info h3 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

.info h3 span {
  color: var(--primary);
}

.info h1 {
  margin-bottom: 10px 0 0 0;
  font-size: 28px;
  font-weight: 600;
}

.info h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

.btns {
  margin-top: 30px;
}

.btn-menu,
.btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
}

.btn-menu:hover,
.btn-book:hover {
  background: var(--primary);
  color: var(--white);
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(--primary 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--primary);
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1600px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--primarylight);;
}

.section-bg {
  background-color: var(--secondarydark);
}

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 16px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primarydark);
  font-family: var(--primaryfont);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--secondarydark);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--primaryfont);
  color: var(--primary);
}

.section-title h1 {
  margin: 0;
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--primaryfont);
  color: var(--primary);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--primary);
  margin-top: 100px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 0px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

.breadcrumbs a{
  color: var(--primarydark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
  .section-title h2::after {
    content: "";
    width: 60px;
    height: 1px;
    display: inline-block;
    background: var(--secondarydark);
    margin: 4px 10px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.webp") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  color: var(--white);
}

.about:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.8); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid var(--primary);
  border-top: 5px solid var(--primary);
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid var(--primary);
  border-bottom: 5px solid var(--primary);
  transition: 0.5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content {
  position: relative;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 10px;
}
.about .content p{
  
  margin-bottom: 10px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
  transition: all ease-in-out 0.3s;
  background: var(--white);
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--primary);
}

.why-us .box p {
  color: var(--secondarydark);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: var(--primary);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgb(250 167 25 / 57%);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: var(--white);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: var(--primary);
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}



.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  background: var(--primarylight);
  padding: 20px;
  min-height: 120px;
  border: 1px dashed var(--primary);
}
.menu-content img{
  width: 50px;
}
.menu-content h5{
  font-size: 14px;
}


/* .menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
} */

.menu .menu-content a {
  position: relative;
  text-align: center;
  z-index: 3;
  font-weight: 500;
  color: var(--primarydark);
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--primary);
}

.menu .menu-content span {
  position: relative;
  margin-top: 5px;
  z-index: 3;
  font-size: 24px;
  padding: 0 10px;
  font-weight: 700;
  color: var(--primary);
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(0, 0, 0, 0.5);
}
ul.ul-styles-none {
  padding: 0px;
  list-style: none;
}


.table-striped-columns>:not(caption)>tr>:nth-child(2n){
  --bs-table-bg-type: #1a1814;

}
.table>:not(caption)>*>*{
  background-color: #13120f;
}

/*--------------------------------------------------------------
# studios
--------------------------------------------------------------*/
.studios {
  overflow: hidden;
}

.studios .nav-tabs {
  border: 0;
}

.studios .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--primary);
  border-radius: 0;
  border-right: 2px solid var(--primary);
  font-weight: 600;
  font-size: 15px;
}

.studios .nav-link:hover {
  color: var(--primary);
}

.studios .nav-link.active {
  color: var(--secondarydark);
  background: var(--primary);
  border-color: var(--primary);
}

.studios .nav-link:hover {
  border-color: var(--primary);
}

.studios .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.studios .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}

.studios .details p {
  color: var(--secondarydark);
}

.studios .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .studios .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: var(--white);
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: var(--white);
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary);
}

.events .event-item .price {
  font-size: 26px;
  font-family: var(--primaryfont);
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--primary);
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary);
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: var(--white);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: var(--white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary);
  border-top-color: var(--secondarydark);
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: var(--primarydark);;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--primary);
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 35px;
  color: var(--white);
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 10px solid var(--white);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: var(--primary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--primary);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: var(--primarylight);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  color: var(--secondarydark);
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(242 242 242);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  background: url("../img/gallery-bg.webp") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  color: var(--white);
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: var(--white);
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: var(--white);
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: var(--white);
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: var(--primary);
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--secondarydark);
}

.contact .info .address,
.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-bottom: 40px;
}

.contact  {
  width: 100%;
}

.contact  .form-group {
  padding-bottom: 8px;
}

.contact  .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact  .error-message {
  display: none;
  color: var(--white);
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact  .sent-message {
  display: none;
  color: var(--white);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact  .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact  .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary);
  border-top-color: var(--secondarydark);
  animation: animate-loading 1s linear infinite;
}

.contact  input,
.contact textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: var(--primarylight);;
  border-color: var(--primary);
  color: var(--primary);
}

.contact input::-moz-placeholder,
.contact textarea::-moz-placeholder {
  color: var(--color-mix(in srgb, var(--primary), transparent 50%));
}

.contact  input::placeholder,
.contact  textarea::placeholder {
  color: var(--color-mix(in srgb, var(--primary), transparent 50%));
}

.contact  input:focus,
.contact  textarea:focus {
  border-color: var(--primary);
}

.contact  input {
  height: 44px;
}

.contact  textarea {
  padding: 10px 12px;
}

.contact  button[type=submit], .contact .fcs-btn {
  background: var(--primary);
  border: 0;
  padding: 10px 35px;
  color: var(--white);
  transition: 0.4s;
  border-radius: 50px;
}

.contact  button[type=submit]:hover, .contact .fcs-btn:hover {
  background: var(--primary);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: var(--white);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--primarydark);;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: var(--white);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--white);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--primary);
  color: var(--white);
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--white);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.icon {
  display: flex;
  align-items: flex-start;
}
.icon svg {
  width: 2.188rem;
  margin-left: -0.188em;
}



/* section.pricing {
  display: grid;
  place-content: center;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 4rem clamp(1rem, 5%, 3rem);
} */
section.pricing > span {
  display: inline-block;
  margin-bottom: 0.938em;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.8rem;
  background: #ffbb7b;
  color: #5c0404;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 50px;
}

.pricing .cards {
  margin-top: 3em;
  display: flex;
  /* gap: 3rem; */
  flex-wrap: wrap;
  justify-content: center;
}

.pricing .card {
  cursor: pointer;
  background: transparent;
  border: 0px;
}
.pricing .card ul {
  margin: auto;
  padding: 0;
  list-style: circle;
  color: var(--secondarydark);
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 0.5rem;
  font-weight: 500;
}
.pricing .card ul span{
  font-weight: 600;
}
.pricing .card__outer {
  background: var(--primarylight);
  position: relative;
  height: 580px;
  border-radius: 0.625rem;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  padding: 1.25rem;
  transition: 0.3s ease-in-out;
}

.pricing .card__outer a {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: bold;
}
.pricing .card__outer a svg {
  margin-left: 0.375em;
  width: 1.125rem;
}
.pricing .card__inner {
  background: var(--white);
  position: absolute;
  bottom: 3.75rem;
  right: 1.25rem;
  width: 97%;
  height: 90%;
  border-radius: 0.625rem;
  padding: 1.875rem 2.188rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.pricing .card__inner .title {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 24px;
  display: inline-block;
  margin-top: 0.313em;
  margin-bottom: 0.938em;
}
.pricing .card__inner .price {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}
.pricing .card__inner .price--number {
  font-size: 50px;
  font-weight: 600;
  color: var(--primarydark);
}
.pricing .card__inner .price--number:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.563rem;
  display: block;
  background: var(--primary);
  height: 0.125rem;
  width: 100%;
}
.pricing .card__inner .price--dolar {
  font-size: 1.1rem;
  margin-top: 0.625em;
  font-weight: 500;
}

.pricing .card.active .card__outer a {
  color: #fff;
}

.pricing .card:nth-child(1).active .card__inner svg {
  color: var(--primary);
}
.pricing .card:nth-child(1).active .card__outer {
  background: var(--primary);
  box-shadow: 5px 18px 13px rgb(250 167 25 / 44%);
}
.pricing .card:nth-child(2).active .card__inner svg {
  color: var(--primary);
}
.pricing .card:nth-child(2).active .card__outer {
  background: var(--primary);
  box-shadow: 5px 18px 13px rgb(250 167 25 / 44%);
}


.pricing .card--primary .card__inner svg,
.pricing .card--primary .card__inner .title{
  color: var(--primary);
}

.pricing .card--primary .card__outer a {
  color: var(--white);
  background: var(--primary);
  padding: 1px 20px;
  border-radius: 7px;
}
.pricing .card--primary .card__outer span.know-more{
  color: var(--primary);
  font-size: 12px;
}
.pricing .card:nth-child(1).active .card__outer a{
  color: var(--primary);
  background: var(--white);
}
.pricing .card--red .card__outer {
  height: 25.313rem;
}

/* === SOCIAL MEDIA === */

.btn-social {
  position: fixed;
  right: 0;
  bottom: 80px;
  margin: auto;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 24px;
  color: var(--white);
  background: var(--primary);
  border-left: 2px solid var(--white);
  cursor: pointer;
  outline: none;
  z-index: 999;
}

.btn-social a {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 45px;
  text-align: center;
  color: var(--white);
  left: 0;
  bottom: 0;
  transition: .5s;
}

.btn-social:before {
  content: '\f1e0';
  font-weight: 200;
  font-family: 'FontAwesome';
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #fff;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--primary);
  color: white;
  transition: .5s;
  box-sizing: border-box;
}

.sosmed.active .btn-social:before {
  content: '\f00d';
}

.sosmed.active .btn-social a:nth-child(1) {
  transform: translateY(-90px);
  background: #355483;
}

.sosmed.active .btn-social a:nth-child(2) {
  transform: translateY(-45px);
  background: #3B90FA;
}

.sosmed.active .btn-social a:nth-child(3) {
  transform: translateY(45px);
  background: #01E5E2;
}

.sosmed.active .btn-social a:nth-child(4) {
  transform: translateY(90px);
  background: #FF45B2;
}

.btn-social a:nth-child(1)::before {
  content: '';
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: .3s;
  z-index: -1;
  overflow: hidden;
}

.btn-social a:nth-child(1):hover::before {
  content: "Facebook";
  border-right: 3px solid #355483;
  color: #355483;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

.btn-social a:nth-child(2)::before {
  content: '';
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: .3s;
  z-index: -1;
  overflow: hidden;
}

.btn-social a:nth-child(2):hover::before {
  content: "Twitter";
  border-right: 3px solid #3B90FA;
  color: #3B90FA;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

.btn-social a:nth-child(3)::before {
  content: '';
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: .3s;
  z-index: -1;
  overflow: hidden;
}

.btn-social a:nth-child(3):hover::before {
  content: "Linkedin";
  border-right: 3px solid #01E5E2;
  color: #01E5E2;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

.btn-social a:nth-child(4)::before {
  content: '';
  position: absolute;
  left: 45px;
  bottom: 0;
  height: 100%;
  width: 0;
  box-sizing: border-box;
  background: #fff;
  transition: .3s;
  z-index: -1;
  overflow: hidden;
}

.btn-social a:nth-child(4):hover::before {
  content: "Instagram";
  border-right: 3px solid #FF45B2;
  color: #FF45B2;
  width: 150px;
  line-height: 45px;
  font-family: sans-serif;
}

a.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
}
a.whatsapp img {
  width: 50px;
}


.cover {
  display: inline-block;
  height: 460px;
	width: 100%;
	margin: 15px;
	border-radius: 8px;
}

@media screen and (max-width: 700px) {
	.container {
		width : 100%;
		position: relative;
		transform: translate(0%, 0%);
		top: 0;
		left: 0;
	}
	.cover {
		display: block;
		height: 200px;
		width: 320px;
		margin: 15px auto;
	}
}

.atvImg {
	border-radius: 8px;
	transform-style: preserve-3d;
	-webkit-tap-highlight-color: rgba(#000,0);
}

.atvImg img {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(14,21,47,0.25);
}

.atvImg-container {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	transition: all 0.2s ease-out;
}

.atvImg-container.over .atvImg-shadow {
	box-shadow: 0 45px 100px rgba(14,21,47,0.4), 0 16px 40px rgba(14,21,47,0.4);
}

.atvImg-layers {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	transform-style: preserve-3d;
}

.atvImg-rendered-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%; 
	left: 0%;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	background-size: cover;
	transition: all 0.1s ease-out;
	overflow: hidden;
	border-radius: 8px;
}

.atvImg-shadow {
	position: absolute;
	top: 5%; 
	left: 5%;
	width: 90%;
	height: 90%;
	transition: all 0.2s ease-out;
	box-shadow: 0 8px 30px rgba(14,21,47,0.6);
}

.atvImg-shine {
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(255,255,255,.25) 0%,rgba(255,255,255,0) 60%);
}

.scope {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: slid 30s linear infinite;
}

.scope span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 33deg)) translateZ(500px);
}
.scope span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: 2s;
}
.scope span:hover img {
  transform: translateY(-0px) scale(1.4);
}
@keyframes slid {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}
.gallery-section{
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}



@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css');
.Advance-Slider{float:left;width:100%;overflow:hidden;}
.Advance-Slider button.slick-arrow{position:absolute;z-index:2;top:0;bottom:0;height:50px;width:50px;background:#fff;z-index:9;border:none;margin:auto;font-size:0;text-align:center;outline:none;cursor:pointer;}
.Advance-Slider .img-fill{position:relative;height:100%;}
.Advance-Slider .img-fill img{height:100%;width:100%;object-fit:cover;animation:myMove 10s linear infinite;}
.Advance-Slider .item{height:100vh;overflow:hidden;outline:none;}
.Advance-Slider button.slick-next.slick-arrow{right:0;left:auto;}
.Advance-Slider button.slick-arrow:before{content:"\f104";top:0;left:0;margin:auto;font-family:fontawesome;font-size:18px;}
.Advance-Slider button.slick-next.slick-arrow:before { transform:  scaleX(-1); display:  block;}
.Advance-Slider .img-fill:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:#151515;opacity:0.5;}

.Advance-Slider ul.slick-dots{position:absolute;bottom:20px;left:0;width:100%;margin:0;padding:0;text-align:center;}
.Advance-Slider ul.slick-dots li{display:inline-block;height:auto;padding:0 5px;line-height:0px;}
.Advance-Slider ul.slick-dots li button{height:15px;width:15px;border-radius:100%;background:#fff;border:none;font-size:0px;padding:0px;opacity:0.5;outline:none;transition:all 0.3s ease;cursor:pointer;}
.Advance-Slider ul.slick-dots li.slick-active button{opacity:1;}
.Advance-Slider button.slick-arrow{perspective:360px;}
.Advance-Slider button.slick-arrow .thumb{position:absolute;height:100px;width:150px;left:100%;top:-28px;transform-origin:0% 0%;transform:rotate3d(1,0,0,90deg);}
.Advance-Slider button.slick-arrow .thumb img{height:100%;width:100%;}
.Advance-Slider button.slick-next{}
.Advance-Slider button.slick-next .thumb{left:auto;right:100%;}
.Advance-Slider button.slick-prev.hover-out .thumb,.Advance-Slider button.slick-prev .thumb{animation:out-left 300ms ease 0ms 1 forwards;}
.Advance-Slider button.slick-prev.hover-in .thumb{animation:in-left 300ms ease 0ms 1 forwards;}
.Advance-Slider button.slick-next.hover-out .thumb,.Advance-Slider button.slick-next .thumb{animation:out-right 300ms ease 0ms 1 forwards;transform-origin:100% 50%;}
.Advance-Slider button.slick-next.hover-in .thumb{animation:in-right 300ms ease 0ms 1 forwards;}

.Advance-Slider button.slick-prev:hover{transform:translateX(-100%);}
.Advance-Slider button.slick-prev{transition:all 0.3s ease;}
.Advance-Slider button.slick-next:hover{transform:translateX(100%);}
.Advance-Slider button.slick-next{transition:all 0.3s ease;}
.Advance-Slider ul.slick-dots li button img{height:0;width:20px;top:0;object-fit:cover;transition:height 0.2s ease 0.2s,width 0.2s ease 0s;position:relative;left:-50%;}
.Advance-Slider ul.slick-dots li button a{position:absolute;height:90px;bottom:calc(100%);width:0;display:flex;align-items:flex-end;justify-content:center;transition:all 0.2s ease 0.2s;padding-bottom:10px;}
.Advance-Slider ul.slick-dots li button{position:relative;display:flex;justify-content:center;}
.Advance-Slider ul.slick-dots li button:hover a img{}
.Advance-Slider ul.slick-dots li button:hover img{height:80px;width:140px;transition:height 0.2s ease,width 0.2s ease 0.2s;}
.Advance-Slider ul.slick-dots li button:hover a{width:140px;transition:all 0.3s ease 0s;}
.Advance-Slider ul.slick-dots li button:hover{opacity:1;}
.Advance-Slider ul.slick-dots li button:before{content:'';bottom:calc(100% + -10px);left:7px;border:solid transparent;content:" ";height:0;width:0px;position:absolute;pointer-events:none;border-color:rgba(255,255,255,0);border-top-color:#fff;border-width:10px;margin-left:-10px;opacity:0;transition:0.3s ease 350ms;}
.Advance-Slider ul.slick-dots li button:hover:before{opacity:1;transition:0.3s ease 0s;}
.Advance-Slider  .item.slick-active{animation:Slick-FastSwipeIn 1s both;}

.Advance-Slider .item .contain-wrapper{position:absolute;left:0;top:0;z-index:1;height:100%;width:100%;display:flex;align-items:center;justify-content:center;text-align:center;}
.Advance-Slider .item .contain-wrapper .dots-contain{display:none;}
.Advance-Slider .item h3{margin:0px;color:#fff;font-weight:600;text-transform:capitalize;}
.Advance-Slider .item{color:#fff;font-family:'Roboto',sans-serif;}
.Advance-Slider .item  h5{font-size:32px;font-weight:300;padding:10px 0 0;margin:0;text-transform:capitalize;}
.Advance-Slider .item .contain-wrapper .info{max-width:1200px;}
.Advance-Slider .item h5 span{color:#00BCD4;}
/* .Advance-Slider .item h3 span{color:#00BCD4;} */
.Advance-Slider .item h3{animation:fadeOutRight 1s both;}
.Advance-Slider .item.slick-active h3{animation:fadeInDown 1s both 1s;}
.Advance-Slider .item  h5{animation:fadeOutLeft 1s both;}
.Advance-Slider .item.slick-active  h5{animation:fadeInLeft 1s both 1.5s;}


@keyframes myMove{
  from{transform:scale(1.0,1.0);transform-origin:50% 50%;}
  to{transform:scale(1.8,1.9);transform-origin:50% 0%;}
}
@keyframes Slick-FastSwipeIn{
  0%{transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);}
  100%{transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);}
}

@keyframes in-left{
  from{-webkit-transform:rotate3d(0,1,0,90deg);transform:rotate3d(0,1,0,90deg);}
  to{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
}
@keyframes out-left{
  from{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
  to{-webkit-transform:rotate3d(0,1,0,86deg);transform:rotate3d(0,1,0,86deg);}
}
@keyframes in-right{
  from{-webkit-transform:rotate3d(0,-1,0,90deg);transform:rotate3d(0,-1,0,90deg);}
  to{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
}
@keyframes out-right{
  from{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
  to{-webkit-transform:rotate3d(0,-1,0,86deg);transform:rotate3d(0,-1,0,86deg);}
}


.horgallery {
  height: 400px;
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
 .panel-container {
  border-radius: 0.25rem;
  outline: 1px solid #dfd0b8;
  position: relative;
  width: 10%;
  background: #eee;
  transition: width 3s, visibility 2s;
  user-select: none;
}
 .panel-container:nth-child(1) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 0s forwards;
  transform: translateY(100%);
  animation: fly 2s 0s forwards;
}
 .panel-container:nth-child(2) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 0.5s forwards;
}
 .panel-container:nth-child(3) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 1s forwards;
  transform: translateY(100%);
  animation: fly 2s 1s forwards;
}
 .panel-container:nth-child(4) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 1.5s forwards;
}
 .panel-container:nth-child(5) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 2s forwards;
  transform: translateY(100%);
  animation: fly 2s 2s forwards;
}
 .panel-container:hover {
  cursor: pointer;
  outline-color: #948979;
}
 .panel-container:has(.panel-control:checked) {
  width: 60%;
  height: 400px;
}
 .panel-container:has(.panel-control:checked):hover {
  user-select: initial;
  cursor: initial;
  outline-color: #dfd0b8;
}
 .panel-container .panel {
  height: 100%;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
 .panel-container .panel-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.25rem;
  object-fit: cover;
}
.panel-container .panel-id {
  font-size: 20px;
  PADDING: 20PX;
  POSITION: relative;
  background: #faa71991;
  white-space: nowrap;
  color: var(--white);
  transform: rotate(90deg) translateX(-10%);
}
 .panel-container .panel-control {
  display: none;
}
 .panel-container .panel-control:checked ~ .panel-id {
  display: none;
}
 .panel-container .panel-control:checked ~ .panel-content {
  display: flex;
}
 .panel-container .panel-content {
  height: 100%;
  flex-direction: column;
  color: white;
  letter-spacing: 0.01rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: none;
  transition: display 1s;
}
.panel-container .panel-content .head {
  padding: 10px;
  font-size: 16px;
  position: relative;
  background: var(--primary);
  font-weight: 700;
}
 
 .panel-container .panel-content .icon {
  color: inherit;
  height: 1.125rem;
}
 .panel-container .panel-content .alt {
  vertical-align: bottom;
}
 .panel-container .panel-content .alt .value::after {
  content: " mts.";
}
 .panel-container .panel-content .spacer {
  flex: 1 0 auto;
}
 .panel-container .panel-content .body {
  padding: 10px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  position: relative;
  transform: translateY(100%);
  animation: slideInTop 2.5s 3s forwards;
}
 .panel-container .panel-content .body::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  border-top: 2.5px solid #dfd0b8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #15344899;
}
 .panel-container .panel-content .title {
  color: limegreen;
}
 .panel-container .panel-content .value {
  margin-bottom: 0.75rem;
}

.tabpricing {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.tabpricing button {
  background-color: inherit;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: 0.3s;
  font-size: 16px;
  border: 1px solid var(--primary);
  background: var(--primarydark);
  color: var(--primary);
  font-weight: 600;
}

.tabpricing button:hover {
  background-color: var(--primary);
  color: var(--primarydark);
}

.tabpricing button.active {
  background-color: var(--primary);
  color: var(--primarydark);
}

.tabpricingcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

@keyframes fall {
  0% {
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes fly {
  0% {
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slideInTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal {
  0% {
    flex: 1;
  }
  100% {
    flex: 80%;
  }
}
@keyframes squeezeout {
  0% {
    width: 1px;
  }
  100% {
    width: 100px;
  }
}

@media only screen and (max-width: 800px) {
  #hero, .Advance-Slider .item {
    min-height: 60vh;
  }
  .gallery {
    padding: 30px 0;
  }
  .contact .info {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gallery-section {
    height: 60vh;
  }
}

@media only screen and (max-width: 600px) {
  .panel-container:has(.panel-control:checked) {
    height: 230px;
  }
  .horgallery {
    height: 230px;
    gap: 5px;
  }
  .panel-container .panel-content .head {
    padding: 4px;
    font-size: 12px;
  }
  .panel-container .panel-id {
    font-size: 10px;
    padding: 0px;
  }
  .panel-container .panel-id {
    font-size: 10px;
    padding: 0PX;
  }
  .scope span {
    transform: rotateY(calc(var(--i)* 60deg)) translateZ(200px);
  }
  .gallery-section {
    height: 50vh;
  }
  .section-title p {
    font-size: 26px
  }
  .Advance-Slider button.slick-arrow{
    display: none !important;
  }
  #header .logo img {
    max-height: 44px;
  }
  .pricing .card__inner{
    font-size: 12px;
  }
  .navbar .dropdown{
    display: none;
  }
  .navbar .dropdown.main-drop{
    display: block;
  }
  #hero, .Advance-Slider .item {
    min-height: 90vh;
  }
  #hero .btns{
    display: none;
  }
  #hero .info{
    padding: 7px;
  }
  #topbar {
    height: 30px;
  }
  #header{
    top: 30px;
  }
  .coming-soon{
    width: 100% !important;
  }
  .contact .info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.tabpricingcontent, .innertabcontent {
  display: none;
}
.tabpricingcontent.active, .innertabcontent.active {
  display: block;
}
.tabpricinglinks, .innertablinks {
  cursor: pointer;
  padding: 5px 10px;
  margin-right: 5px;
  background-color: var(--primarydark);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.tabpricinglinks.active, .innertablinks.active {
  background-color: var(--primary);
  color: var(--primarydark);
}

.package-box{
  background: var(--white);
  box-shadow: 0px 2px 15px rgb(250 167 25 / 20%);
}
.package-box h4{
  color: var(--primary);
  text-align: center;
}
.package-box h4 img {
  width: 50 px;
  height: 50px;
  margin-bottom: 16px;
}
.package-box hr{
  color: var(--primary);
}
/* .package-row{
  height: 90vh;
  overflow-y: scroll;
} */
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.terms b{
  color: var(--primary);
}

.qrcode {
  background: var(--primary);
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  font-size: 8px;
  color: var(--primarydark);
  text-align: center;
  font-weight: 600;
  position: fixed;
  left: 20px;
  bottom: 90px;
}

.qrcode img{
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.mgf-btn {
  background: var(--primary);
  padding: 6px 20px;
  border-radius: 40px;
  color: var(--primarydark);
  border: 2px solid var(--primary);
  font-weight: 600;
}
.mgf-btn:hover {
  background: var(--primarydark);
  padding: 6px 20px;
  border-radius: 40px;
  color: var(--primary);
}

.gallery-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.pricing .card--primary .card__outer  a.n-btn{
  padding: 0px !important;
  color: var(--primary) !important;
  background: none !important;
  font-weight: 300 !important;
  font-size: 14px !important;
}

.addons-my {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.my-profile-card {
  background: var(--white);
  padding: 20px;
  min-height: 120px;
  border: 1px dashed var(--primary);
}
.my-profile-img {
  height: 100%;
  width: 100%;
  background: url("../img/testimonials/testimonials-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.my-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-profile-img i{
  position: absolute;
  cursor: pointer;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.my-profile-img i.delete {
  background: #f56264;
  padding: 6px;
  left: -5px;
  bottom: -5px;
}
.my-profile-img i.edit {
  background: #238df7;
  padding: 6px;
  right: -5px;
  bottom: -5px;
}
.my-profile-card .form-label {
  margin-bottom: .2rem;
}
.my-profile-card .form-control {
  color: var(--primary);
  background-color: var(--white);
  border: var(--bs-border-width) solid var(--primary);
  border-radius: 0px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(250 167 25 / 23%);
}
.cart-content{
  background-color: var(--primarylight);
  padding: 10px;
} 
.my-profile-card .cart-content h5{
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}
.my-profile-card .cart-content p{
  color: var(--secondarydark);
  font-weight: 500;
  font-size: 12px;
}

.my-profile-card .cart-content p.date{
  color: var(--secondarydark);
  font-weight: 500;
  font-size: 10px;
}

.my-profile-card .cart-content .price-title span{
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}
h6.subscription {
  background: var(--primarylight);
  width: 100%;
  height: 100%;
  border: 1px dashed var(--primary);
  padding: 10px 20px;
  color: var(--primary);
  
}


    .wrapper {
      padding: 150px 10% 10% 10%;
      /* margin-top: 150px; */
    }

    .wrapper .timepicker-cf {
      height: 0px;
      width: 100%;
    }

    .wrapper .timepicker {
      position: absolute;
      top: 200px;
      width: 80%;
      height: 0px;
      background: #667483;
      overflow: hidden;
    }

    .wrapper .timepicker .owl,
    .wrapper .timepicker .owl-stage {
      width: 100%;
      height: 0px;
      display: flex;
      align-items: center;
    }

    .wrapper .timepicker .owl .owl-item,
    .wrapper .timepicker .owl-stage .owl-item {
      font-size: 1.1em;
      display: inline-block;
      font-weight: 600;
      color: white;
      text-align: center;
      min-width: 100px;
      opacity: 0.4;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
    }

    .wrapper .timepicker .owl .center-n,
    .wrapper .timepicker .owl-stage .center-n {
      font-size: 1.5em;
      opacity: 0.7;
    }

    .wrapper .timepicker .owl .center,
    .wrapper .timepicker .owl-stage .center {
      font-size: 2em;
      opacity: 1;
    }

    .wrapper .fade-l {
      position: absolute;
      height: 100%;
      width: 150px;
      left: 0;
      top: 0;
      background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=1);
    }

    .wrapper .fade-r {
      position: absolute;
      height: 100%;
      width: 150px;
      right: 0;
      top: 0;
      background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=1);
    }

    .wrapper .owl-prev,
    .wrapper .owl-next {
      z-index: 20;
      position: absolute;
      width: 20px;
      top: 20px;
      color: #667483;
      cursor: pointer;
      transition: 0.2s ease-in-out;
      background: none;
      border: 0;
      font-size: 1em;
    }

    .wrapper .owl-prev {
      left: 20px;
    }

    .wrapper .owl-prev:before {
      content: "ï“";
      font-family: FontAwesome;
    }

    .wrapper .owl-prev:hover {
      left: 18px;
      transition: 0.2s ease-in-out;
    }

    .wrapper .owl-next {
      right: 20px;
    }

    .wrapper .owl-next:hover {
      right: 18px;
      transition: 0.2s ease-in-out;
    }

    .wrapper .owl-next:before {
      content: "ï”";
      font-family: FontAwesome;
    }

    .inner-wrap {
      padding: 0 10%;
    }

    .inner-wrap .request {
      width: 100%;
      height: 50px;
      text-align: left;
      padding: 0 20px;
      border: none;
      background: #667483;
      color: #fff;
      font-weight: 600;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
      opacity: 1;
      position: relative;
    }

    .inner-wrap .request br {
      display: none;
    }

    .inner-wrap .request .sendRequest {
      position: absolute;
      right: 20px;
      top: 16px;
    }

    .inner-wrap .request .sendRequest:before {
      content: "ï”";
      font-family: FontAwesome;
    }

    .inner-wrap .request:hover {
      padding-right: 15px;
      transition: all 0.2s ease-in-out;
    }

    .inner-wrap .request.disabled {
      opacity: 0.8;
      pointer-events: none;
      background: #888d93;
      transition: all 0.3s ease-in-out;
    }

    .inner-wrap .disabled span {
      display: none;
    }

    .inner-wrap input {
      border: none;
    }

    .inner-wrap .form-name {
      display: flex;
      position: relative;
      height: 50px;
      align-items: flex-end;
      margin-bottom: 13px;
    }

    .inner-wrap .form-name label,
    .inner-wrap .form-name input {
      font-size: 1em;
      font-weight: 600;
      color: #667483;
    }

    .inner-wrap .form-name label {
      position: absolute;
      margin: 0;
      left: 10px;
      top: 15px;
      transition: all 250ms ease 0s;
    }

    .inner-wrap .form-name input {
      height: 80%;
      width: 100%;
      border-bottom: 2px solid #667483;
      padding: 0 10px;
    }

    .inner-wrap .form-name input:focus {
      outline: none;
    }

    .inner-wrap .form-name input:focus+label {
      font-size: 0.8em;
      left: 0.15rem;
      top: 0%;
    }

    .inner-wrap .form-name input:invalid {
      border-bottom: 2px solid #c23616;
      color: #c23616;
    }

    .inner-wrap .form-name input:invalid+label {
      font-size: 0.8em;
      color: #c23616;
      left: 0.15rem;
      top: 0%;
    }

    .inner-wrap .form-name:last-of-type {
      margin-bottom: 50px;
    }

    #calendar, #calendarone {
      overflow: hidden;
      position: relative;
    }

    #calendar .header, #calendarone .header {
      width: 100%;
      /* height: 160px; */
      background-size: 100% auto;
      margin-top: 100px;
    }

    #calendar .header h1, #calendarone .header h1{
      font-size: 2em;
      font-family: "Playfair Display", serif;
      font-weight: 700;
      letter-spacing: 1%;
    }

    #calendar .monthChange, #calendarone .monthChange{
      background: #fff;
      width: 100%;
      height: 0;
      position: absolute;
      top: 160px;
      z-index: 20;
    }

    #calendar .ui-datepicker, #calendarone .ui-datepicker {
      display: none;
      width: 100%;
      margin: auto;
      padding: 30px 10% 30px 10%;
      text-transform: uppercase;
      background: var(--white);
      transition: all 0.2s ease-in-out;
    }

    #calendar .ui-datepicker .ui-datepicker-header, #calendarone .ui-datepicker .ui-datepicker-header  {
      position: relative;
      margin-bottom: 10px;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-title, #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
      text-align: center;
      font-weight: 700;
      color: #faa719;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month, #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month {
      position: relative;
      padding-right: 5px;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
      top: -5px;
      position: absolute;
      padding: 5px;
      cursor: pointer;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
      left: 0;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
      right: 0;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
      content: "<";
      font-family: FontAwesome;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next:after,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next:after {
      content: ">";
      font-family: FontAwesome;
    }

    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
    #calendar .ui-datepicker .ui-datepicker-header .ui-datepicker-next span,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
    #calendarone .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
      display: inline-block;
      text-indent: -9999px;
    }

    #calendar .ui-datepicker .ui-datepicker-calendar,
    #calendarone .ui-datepicker .ui-datepicker-calendar {
      width: 100%;
    }

    #calendar .ui-datepicker .ui-datepicker-calendar th,
    #calendarone .ui-datepicker .ui-datepicker-calendar th {
      line-height: 30px;
      padding-top: 15px;
      text-align: center;
      font-weight: 600;
      font-size: 0.95em;
      color: #667483;
    }

    #calendar .ui-datepicker .ui-datepicker-calendar td,
    #calendarone .ui-datepicker .ui-datepicker-calendar td {
      padding: 0 7px;
      text-align: center;
      height: 34px;
      font-weight: 600;
      cursor: pointer;
      box-sizing: border-box;
      transition: all 0.2s ease-in-out;
      border: 1px solid transparent;
    }

    .ui-datepicker .ui-datepicker-calendar td:hover {
      background: var(--primarylight);
      transition: all 0.2s ease-in-out;
      border: 1px solid var(--primary);
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day {
      background: var(--primary);
      border-bottom: 2px solid var(--secondarydark);
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day.open {
      margin-bottom: 100px;
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
      border-bottom: 2px solid rgba(53, 60, 66, 0.5);
    }

    .ui-datepicker .ui-datepicker-calendar .ui-state-default {
      text-decoration: none;
      color: var(--primarydark);
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-other-month {
      pointer-events: none;
    }

    .ui-datepicker .ui-datepicker-calendar .ui-datepicker-other-month .ui-state-default {
      color: #2d2d2d;
    }

    .time .d-flex {
      display: flex !important;
      flex-direction: row;
      gap: 10px;
      flex-wrap: wrap;
    }

    .time span {
      border: 2px solid #4BAE4F;
      white-space: nowrap;
      padding: 3px;
      font-size: 12px;
      width: 110px;
      font-weight: 700;
      text-align: center;
      cursor: pointer;
      color: #4BAE4F;
      
    }
    .hour-book span{
      background: black;
      border: 2px solid var(--primary);
      white-space: nowrap;
      padding: 5px;
      font-size: 12px;
      width: 110px;
      font-weight: 700;
      text-align: center;
      cursor: pointer;
      color: var(--primary);
    }
    .hour-book span:hover{
      background: #4BAE4F;
     color: #fff;
    }

    .time span:hover{
      background: var(--primary);
     color: #fff;
     border: 2px solid var(--primary);
    }

    .time span.active {
      border-color: #4BAE4F;
     color: #fff;
      background: #4BAE4F;
    }

    @media only screen and (max-width: 600px) {
      .wrapper .inner-wrap .request br {
        display: block;
      }
    }

    .book-now-section .form-select {
      --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
      display: block;
      width: 100%;
      padding: .375rem 2.25rem .375rem .75rem;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #ffffff;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-color: #000;
      background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
      background-repeat: no-repeat;
      background-position: right .75rem center;
      background-size: 16px 12px;
      border: var(--bs-border-width) solid #faa719;
      border-radius: var(--bs-border-radius);
      transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .book-now-section .cart-box {
      background: var(--white);
      margin-top: 25px;
      padding: 0px;
      /* border: 1px dashed #faa719; */
    }

    .cart-box button.proceed-btn {
      width: 100%;
      background: #faa719;
      color: #fff;
      border: 0px;
      font-weight: 700;
    }
    .cart-box button.proceed-btn:hover{
      background-color: #ea9503;
    }

    .cart-box p {
      font-size: 10px;
      color: var(--primarydark);
    }

    .cart-box p span {
      font-size: 12px;
      color: var(--primarydark);
      font-weight: 300;
    }

    .cart-box p span.price {
      font-size: 18px;
    }

    .add span {
      background: #faa719;
      padding: 5px 10px;
    }

    .padding-top-100 {
      padding-top: 100px;
    }

    img.delete {
      position: absolute;
      top: -6px;
      width: 20px !important;
      right: -6px;
      opacity: 0.7;
    }

    img.delete:hover {
      opacity: 1;
    }

    .book-now-section .cart-content {
      background: var(--primarylight);
      padding: 10px;
      border: 0.5px dotted var(--primary);
    }

    .modal-content {
      background: var(--white);
    }

    .modal-content h3 {
      font-size: 26px;
    }

    .payment-box {
      background: var(--primarydark);
      border: 1px solid #faa71988;
      padding: 10px;
    }

    .payment-box:hover {
      border: 1px solid #faa719;
    }

    .payment-box img {
      width: 60px;
    }

    .payment-box h3 {
      font-size: 12px;
      margin-top: 6px;
    }

    .book-now-section .service h6 {
      background: #0c0b09;
      color: #ffffffb9;
      padding: 6px 13px;
      font-size: 18px;
      display: inline-flex;
      border: 1px solid #faa71988;
      cursor: pointer;
    }

    .book-now-section .service h6:hover,
    .book-now-section .service h6.active {
      border: 1px solid #faa719;
      color: #fff;
    }
    span.rate {
    font-size: 12px;
    color: #faa719;
    margin-left: 25px;
    margin-right: 6px;
}

    .total h5 {
      font-size: 14px;
      font-weight: 400;
    }

    

    .identifier span {
      font-size: 10px;
      width: 90px;
    }

    .identifier span:hover {
      border: 2px solid #4BAE4F;
      color: #4BAE4F;
      background: black;
    }

    .identifier span.active {
      border: 2px solid #4BAE4F;
      color: #4BAE4F;
      font-weight: 700;
    }
    span.booked, span.booked:hover {
      cursor: not-allowed;
      border: 2px solid #FF5454;
      color: #FF5454;
      background: transparent;
    }

    .accordion-button {
      color: #faa719;
      background-color: var(--white);
    }

    .accordion-button:not(.collapsed) {
      color: #faa719;
      background-color: var(--primarylight);
      box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 #dee2e600;
    }

    .accordion-item{
      border:  1px solid var(--white) !important
    }

    .accordion-body {
      color: var(--primarydark);
      background-color: var(--white);
      border: 0px;
      border-top: 1px solid #faa719 !important;
    }

    .table>:not(caption)>*>* {
      padding: .5rem .5rem;
      color: #fff;
      background-color: #000;
      border-bottom-width: var(--bs-border-width);
      box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
    }

    .blinking {
      border: 1px dashed #faa719;
      box-shadow: rgb(250 167 25 / 28%) 0px 8px 24px;
      animation-name: blinking;
      animation-duration: 1s;
      animation-iteration-count: 100;
    }

    @keyframes blinking {
      50% {
        border-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      }
    }

    
.modal-content h3{
  font-size: 26px;
}
.payment-box {
  background: var(--primarydark);
  border: 1px solid #faa71988;
  padding: 10px;
}
.payment-box:hover{
  border: 1px solid #faa719;
}
.payment-box img{
  width: 60px;
}
.payment-box h3{
  font-size: 12px;
  margin-top: 6px;
}
.service h6 {
  background: #0c0b09;
  color: #ffffffb9;
  padding: 6px 13px;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #faa71988;
  cursor: pointer;
  margin-right: 16px;
}
.service h6:hover, .service h6.active{
  border: 1px solid #faa719;
  color: #fff;
}
.top-header-progress{
  background-color: #12110f;
}

.mainWrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
  padding: 0px;
}
.book-now-section{
  background: var(--primarylight);
}

.statusBar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	width: 90%;
  height: 115px;
	position: relative;
	cursor: default;
  padding-bottom: 35px;
}

.statusBar::before {
	content: "";
	height: 0.3em;
	background-color: #494949;
	position: absolute;
	left: var(--padding);
	right: var(--padding);
}

.pBar {
	content: "";
	height: 0.3em;
	border-radius: 0 0 0.15em 0.15em;
	background-color: var(--primary);
	max-width: 100%;
	margin: 10px #000000 solid;
	position: absolute;
	left: 0;
	width: 0%;
}

.statusBar > .node {
	background-color: #494949;
	height: 1.2em;
	width: 1.2em;
	border-radius: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.node > .text {
	font-weight: 200;
	color: var(--grey);
	text-align: center;
	position: absolute;
	top: 2em;
  font-size: 14px;
	cursor: pointer;
  white-space: nowrap;
}

.node.done {
	background-color: var(--primary);
}

.node > .text.done {
	color: var(--primary);
  white-space: nowrap;
}

.node > .main {
	position: absolute;
	border: 0.2em #494949 solid;
	width: 0;
	height: 0;
	border-radius: 100%;
}

.node > .main.done {
	border: 0.2em var(--primary) solid;
	width: 2em;
	height: 2em;
	border-radius: 100%;
}

.mainWrapper > .buttonHolder {
	display: flex;
	justify-content: space-between;
	align-items: center;
  width: 100%;
  background-color: #000000;
}

.mainWrapper.button {
	padding: 0.5em;
	padding-left: 1em;
	padding-right: 1em;
	margin: 1em;
	font-size: 1.3em;
	border-radius: 1.5em;
	cursor: pointer;
}
.mainWrapper.button.b-next {
	background-color: var(--primary);
	color: var(--white);
}

.mainWrapper .button.b-next:hover {
	box-shadow: 3px 5px 6px 0px rgba(0, 0, 0, 0.2);
}

.mainWrapper .button.disabled,
.mainWrapper .button.disabled:hover {
	opacity: 30%;
	cursor: default;
}

.mainWrapper .button.b-next.disabled:hover {
	box-shadow: none;
}

.made {
	position: absolute;
	bottom: 0.7em;
}

.made > .credit {
	opacity: 40%;
	color: #4b4b4b;
	text-align: center;
}

.mainWrapper .content {
  width: 100%;
  padding: 30px;
  height: 520px;
  overflow-y: scroll;
}

.top-header-progress {
  width: 100%;
  display: flex;
  justify-content: center;
}
.b-next {
  background: var(--primary);
  padding: 6px 20px;
  font-weight: 600;
}
.mainWrapper .button.b-back {
	background-color: var(--white);
	color: var(--primary);
  padding: 6px 20px;
  font-weight: 600;
}
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #282828c6;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary); 
  border-radius: 10px;
}
.mainWrapper .form-control{
  background: var(--primarydark);
  border-radius: 0px;
  border-color: #faa7193a;
  color: var(--primary);
}
.mainWrapper .form-control:focus{
  box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
  border-color: var(--primary);
}
.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after{
  background: var(--primarydark) !important;
  color: var(--primary) !important;
  font-size: 10px;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
  color: var(--primary) !important;
  font-size: 10px;
}
button.btn.btn-submit {
  background: var(--primary);
  font-weight: 600;
  border-radius: 0px;
}
.left-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-box-one {
  overflow: hidden;
  height: 350px;
  overflow-y: scroll;
  padding: 10px;
}

.plans-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.plans-nav a i{
  font-size: 16px;
}
.book-now-section .accordion-button {
  background-color: var(--white);
}
.book-now-section .accordion-button img{
  width: 20px;
  margin-left: 10px;
}

a.plan-btn {
  background: var(--primary);
  padding: 2px 10px;
  display: flex;
  font-size: 14px;
  align-items: center;
  color: #0c0b09;
  font-weight: 600;
  gap: 5px;
}
a.plan-btn:hover{
  background: var(--primary);
}
a.plan-btn img{
  width: 26px;
}

/* Style the tab */
.book-now-section .tab {
  overflow: hidden;
  background-color: var(--primary);
  display: flex;
  justify-content: space-between;
}

/* Style the buttons inside the tab */
.book-now-section .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 2px 16px;
  transition: 0.3s;
  font-size: 14px;
  width: 100%;
  font-weight: 600;
  color: var(--primarydark);
}
.border-middle{
  border-left: 1px solid var(--grey) !important;
  border-right: 1px solid var(--grey) !important;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--primary);
  color: var(--primarydark);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--primary);
  color: var(--primarydark);
}

/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}
.cart-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
p.price-title span {
  font-size: 16px !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.hour-book h5{
  font-size: 12px;
}
.service img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: -10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.form-check-input:checked {
  background-color: #faa719;
  border-color: #faa719;
}
.form-check-input {
  --bs-form-check-bg: #1a1814;
}
.form-check-input:focus {
  border-color: #faa719;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(250 167 25 / 28%);
}

.cart-box h6{
  font-size: 10px;
}
.accordion-item label.form-check-label {
  font-size: 14px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
p.price-title span.hr {
  font-size: 12px !important;
}

.clear-all {
  text-align: center;
  background: #da291447;
  padding: 1px;
  font-size: 10px;
  color: #fe5d5c;
  font-weight: 700;
  cursor: pointer;
}
.service {
  display: flex;
  flex-wrap: wrap;
}
form .form-control{
  color: var(--secondarydark) ;
}
.form-control:focus{
  color: var(--secondarydark);
  border-color: var(--primary);
  box-shadow: 0 0 0 .25rem rgba(125, 84, 12, 0);
}

.available h6, .booked h6 {
  font-size: 12px;
}
.available-box {
  height: 10px;
  width: 10px;
  background: #4BAE4F;
  border-radius: 20px;
}
.booked-box {
  height: 10px;
  width: 10px;
  background: #FF5454;
  border-radius: 20px;
}
.slots {
  min-height: 235px;
}
h6.package {
  font-size: 12px;
  background: #faa719;
  color: black;
  font-weight: 800;
  padding: 2px 9px;
  cursor: pointer;
}
.hour-book a{
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start; /* Adjust alignment as needed */
}

.radio-button {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  user-select: none;
  width: 100%;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.radio-button input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-button .service-content {
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 2px 10px;
  background-color: var(--primarylight);
  border: 2px solid var(--primary);
  width: 100%;
  font-size: 12px;
}

.radio-button:hover {
  border-color: var(--primary);
}

.radio-button input[type="radio"]:checked + .service-content,
.radio-button input[type="radio"]:focus + .service-content {
  background-color:  var(--primary);
  color: var(--white);
  box-shadow: 0 0 5px  var(--primary);
}

button.add-btn {
  background: var(--primary);
  padding: 0px 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
button.add-btn i {
  font-weight: 600;
  font-size: 24px;
  font-size: 24px;
}

button.add-on-btn {
  font-weight: 600;
  font-size: 12px;
  width: 100%;
  background: #faa719;
  padding: 2px;
  color: var(--primarydark) !important;
}
.offcanvas{
  background: var(--primarydark);
  color: var(--grey);
}

.offcanvas-body .cart-content{
  border: 1px dashed var(--primary);
}

.tab-container {
  width: 100%;
}

.vertical-tabs {
  display: flex;
}

.vertical-tabs .tab-buttons {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
}

.horizontal-tabs .tab-buttons {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.tab-buttons .tab-link {
  background-color: #1b1915;
  color: var(--grey);
  padding: 10px 15px;
  border: 1px solid var(--primary);
  border-right: 0px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  font-weight: 600;
}

.tab-buttons .tab-link:hover {
  background-color: var(--primary);
}

.tab-buttons .tab-link.active {
  background-color: var(--primary);
}

.vertical-tabs .tab-content {
  flex-basis: 60%;
  border: 1px solid var(--primary);
  padding: 10px;
}
.tab-content .tab-pane {
  display: none;
}
button.service-add-btn {
  background: #faa719;
    height: 30px;
    width: 30px;
    border-radius: 30px;
    font-size: 24px;
    line-height: 26px;
    position: absolute;
    right: 13px;
}
.tab-content .cart-content {
  width: 96%;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.cart-content img {
  width: 50px;
}

.addon-content{
  width: 70%;
}
img.add {
  width: 20px;
  right: -6px;
  bottom: -6px;
  position: absolute;
  cursor: pointer;
}
button.accordion-button {
  padding: 10px;
}

.swiper-container:hover .swiper-container {
  animation-play-state: paused;
}

/* Default state for all slides */
.swiper-slide {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Specific animation for the 5th slide */
.swiper-slide-fifth {
  opacity: 0;
  transform: translateX(100px); /* Slide in from the right */
}

/* When the 5th slide becomes active, apply the animation */
.swiper-slide-fifth-active {
  opacity: 1;
  transform: translateX(0); /* Reset position */
}
@keyframes jumpEffect {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px); /* Move up */
  }
  60% {
    transform: translateY(10px);  /* Slight move down */
  }
  100% {
    transform: translateY(0);     /* Return to the original position */
  }
}

/* Apply jump effect to the 5th slide */
.swiper-slide-fifth-active {
  animation: jumpEffect 0.6s ease;
}
.swiper-button-next, .swiper-button-prev, .swiper-pagination-bullet-active{
  color: var(--primary);
}
.swiper-pagination-bullet-active{
  background: var(--primary);
}
.instagram-testimonial .Feedback, .instagram-testimonial  .SocialProof, .instagram-testimonial  .Caption, .instagram-testimonial  .Footer{
  display: none;
}


.time .d-flex {
  display: flex !important;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.time span {
  border: 2px solid #4BAE4F;
  white-space: nowrap;
  padding: 3px;
  font-size: 12px;
  width: 110px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  color: #4BAE4F;
  
}
.hour-book span{
  background: black;
  border: 2px solid var(--primary);
  white-space: nowrap;
  padding: 5px;
  font-size: 12px;
  width: 110px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  color: var(--primary);
}
.hour-book span:hover{
  background: #4BAE4F;
 color: #fff;
}

.time span:hover{
  background: var(--primary);
 color: #fff;
 border: 2px solid var(--primary);
}

.time span.active {
  border-color: #4BAE4F;
 color: #fff;
  background: #4BAE4F;
}
.coupon {
  overflow: hidden;
  background: var(--primary);
  padding: 8px 20px;
}
.coupon h6{
  font-weight: 600;
  font-size: 12px;
}
.coupon h6 span {
  font-size: 10px;
  text-decoration: underline;
  font-weight: 900;
}
.coupon a{
  background: var(--primarydark);
  color: var(--white);
  padding: 6px 12px;
  font-size: 8px;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.round-left {
  width: 20px;
  height: 20px;
  background: var(--primarylight);
  border-radius: 20px;
  position: absolute;
  left: -10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
.round-right {
  width: 20px;
  height: 20px;
  background: var(--primarylight);
  border-radius: 20px;
  position: absolute;
  right: -10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
.slot-month span {
  width: 10px;
  height: 10px;
  border-radius: 14px;
  border: 0px;
  padding: 0px;
  background-color: var(--primarydark);
}
.slot-month h6{
  font-weight: 600;
  font-size: 10px;
}
.slot-month  span.not-available, .slot-month  span.not-avilable:hover{
  background: color-mix(in srgb, var(--primarydark), transparent 50%);
}
.slot-month  span.available, .slot-month  span.not-avilable:hover{
  background: var(--primary);
}
.cart-content.total h6 {
  font-size: 12px;
}
.exclusive_star {
  color: red;
}
.radio-button1 input[type="radio"],.radio-button1 input[type="checkbox"] {
position: absolute;
opacity: 0;
cursor: pointer;
}

.radio-button1 .service-content {
display: flex;
justify-content: space-between;
text-align: center;
}

.radio-button1:hover {
border-color: var(--primary);
}

.radio-button1 input[type="radio"]:checked + .service-content span,
.radio-button1 input[type="radio"]:focus + .service-content span {
border-color: #4BAE4F;
color: #fff;
 background: #4BAE4F;

}
.radio-button1 input[type="checkbox"] + .service-content span {
border-color: #4BAE4F;
color: #4BAE4F;
 background: #fff;

}
.radio-button1 input[type="checkbox"]:checked + .service-content span {
border-color: #4BAE4F;
color: #fff;
 background: #4BAE4F;

}
.empty-cart {
  text-align: center;
  margin-top: 30px;
}
.empty-cart img {
  height: 130px;
}

.sign-up-bg .error-msg{
        text-align: center;
    background: red;
    }
    .sign-up-bg .container{
      height: 100vh
    }
    .sign-up-bg{
        background: url("../img/sign-up-bg.webp");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: fill;
        /* display: flex; */
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .sign-up-bg form {
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    border: 2px solid #ffffff26;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9999;
}
.sign-up-bg .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sign-up-bg form input {
  transition: 0.1s;
    outline: none;
    border: 1px solid #ffffff52;
    width: 100%;
    padding: 20px;
    margin-top: 10px;
    color: #fff;
    background: rgb(255 255 255 / 18%);
}

.sign-up-bg form button {
    width: 100%;
    color: white;
    background-color: #faa719;
    border: none;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
}
.sign-up-bg ::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.sign-up-bg ::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}


.sign-up-bg form span {
    color: red;
    font-family: sans-serif;
    /* display: none; */
}

@media only screen and (max-width: 800px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }
}

@media only screen and (max-width: 600px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }
  img.hero-logo {
    width: 190px;
  }
}