@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  color: var(--c1);
  padding: 0;
  margin: 0;
  line-height: 30px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* Colors Root */

:root {
  --c1: #010101; 	/* Black */
  --c2: #fff; 		/* White */
  --c3: #945336; 	/* Brown */
  --c4: #EFD1B2;;   /* Background Color */
}

/* Web Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Loader */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}

@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Spacing */

.spacing {
  padding: 20px 0px;
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

/* Main Title */

.main-title h4 {
	font-weight: 400;
	font-size: 46px;
	color: var(--c2);
	margin-bottom: 10px;
	font-family: "Dancing Script", cursive;
}

.main-title h2 {
  color: var(--c1);
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}

/* Main BTN */

.main-btn a, .contact-submit-btn input {
  background-color: var(--c4);
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.13);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--c1);
}

.main-btn a::before, .contact-submit-btn input::before {
  width: 0%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-color: var(--c3);
  transition: all 0.7s;
  z-index: -1;
}
.contact-submit-btn input{
	border: none;
}
.main-btn a:hover::before, .contact-submit-btn input:hover::before {
  width: 100%;
  left: 0;
  right: unset;
}

.main-btn a:hover, .contact-submit-btn input:hover {
  color: var(--c2);
}

/* Responsive Menu */

.responsive-btn a {
  padding: 10px 26px;
  display: block !important;
}
.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c2);
  z-index: 9999;
  transition: all 0.5s;
}
.responsive-links ul li ul {
  display: none;
}
.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
}
.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}
.responsive-menu-main {
  height: 100%;
  padding: 50px;
  position: relative;
}
.responsive-logo {
  width: 100%;
  margin-bottom: 30px;
}
.responsive-links ul li a {
  color: var(--c3);
  padding: 10px 0px;
  display: block !important;
  font-weight: 600;
}
.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}
.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c3);
  padding: 6px 0px;
}
.responsive-icon a i {
  display: block;
}
.responsive-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}
.responsive-icon a {
  color: var(--c3);
  font-size: 30px;
}
.responsive-links ul li:last-child {
  border: 0;
}
body.scroll-stop {
  overflow: hidden;
}
.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.resp-social ul li a i {
  display: block;
}
.resp-social ul li a {
  padding: 10px;
  color: var(--c2);
  font-size: 18px;
}
.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--c3);
}
.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}
.responsive-links ul li i.active::before {
  content: "\f068";
}

/* HEADER */

.sub-header {
  background-color: var(--c3);
  padding: 10px 0px;
}

.sub-header-info ul {
  display: flex;
  gap: 20px;
}
.main-header {
    background: var(--c4);
}

.head-buton a {
    background: var(--c3);
    color: var(--c2);
}
.sub-header-info ul li a {
  color: var(--c2);
  font-size: 14px;
  transition: all 0.5s;
}

.sub-header-info ul li i {
  color: var(--c2);
  margin-right: 6px;
}

.sub-header-social ul {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.sub-header-social ul li a {
  color: var(--c2);
  transition: all 0.5s;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid var(--c2);
  border-radius: 50%;
}

.sub-header-social ul li a:hover {background: var(--c4);}

.sub-header-info ul li a:hover {
  color: var(--c4);
}

/* Main Header */

.head-logo h2 {
    font-size: 22px;
}
.h-items {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}
.head-logo a {
  display: block !important;
  width: 100%;
}
.nav-bar nav ul li ul:before {
    position: absolute;
    content: "";
    border: 12px solid transparent;
    top: -26px;
    border-bottom: 15px solid var(--c3);
    left: 15px;
}
.header {
  box-shadow: 0px 5.77px 86.5px 0px rgba(0, 0, 0, 0.08);
}

.nav-bar nav ul {
  display: flex;
  gap: 25px;
  justify-content: center;
}



.nav-bar nav ul li a {
  color: var(--c3);
  transition: all 0.5s;
  position: relative;
  padding: 30px 0px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Lato';
}

.nav-bar nav ul li a::before {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--c3);
  border-radius: 50%;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
}

.nav-bar nav ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}

.nav-bar nav ul li a:hover {
  color: var(--c3);
}



.nav-bar nav ul li ul {
  position: absolute;
  flex-direction: column;
  gap: 0px;
  background-color: var(--c2);
  z-index: 99;
  width: 240px;
  transform: scaleY(0);
  transition: all 0.5s;
  transform-origin: top;
  left: -20px;
  top: 100%;
}

.nav-bar nav ul li {
  position: relative;
}

.nav-bar nav ul li ul li a {
  display: block !important;
  padding: 10px 20px;
  font-size: 14px;
}

.nav-bar nav ul li ul li a::before {
  display: none;
}

.nav-bar nav ul li ul li a:hover {
  background-color: var(--c3);
  color: var(--c2);
}

.nav-bar nav ul li:hover ul {
  transform: scaleY(1);
}

/* Banner */

.main-home {
  /* position: relative; */
}
.banner-content-main span:before {
  height: 120%;
  border-radius: 20px;
}
.banner-image {
    position: relative;
}
.banner-content-main h4 {
    color: var(--c2);
    margin-bottom: 0;
    font-family: 'Playfair Display';
    font-weight: 600;
    text-transform: uppercase;
}

.banner-content-main h1:last-of-type {
    /* border: 1px solid; */
    /* display: inline-block; */
    /* padding: 0px 10px; */
    /* margin-bottom: 20px; */
    /* line-height: 70px; */
}
.banner-content-main:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(https://demo-vita.webdemo360.com/wp-content/uploads/2025/05/banner-content-before.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.banner {
  position: relative;
}
.banner-btn {
  margin-top: 20px;
}
.banner-content {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* display: flex; */
  /* align-items: center; */
  /* z-index: 3; */
}
.banner-image img {
    height: 80dvh;
    object-fit: cover;
}
.banner-content-main h1 {
  text-transform: uppercase;
  color: var(--c2);
  font-size: 90px;
  font-family: 'Playfair Display';
  line-height: 60px;
  margin: 20px 0px 40px 0px;
}

.banner-content-main p {
  color: var(--c2);
  font-size: 28px;
  font-weight: 300;
}

.banner-image:before {
  position: absolute;
  content: "";
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(89.96deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 99.97%);
}

.banner-content-main {
  position: relative;
  padding: 20px 40px;
  text-align: center;
  margin-top: -1px;
}



/* SECTION ABOUT US */

.about-content h2 {
  margin-bottom: 20px;
  color: var(--c2);
}
.about-content p {
    color: var(--c2);
    margin-bottom: 20px;
}
.about-img img {
  object-fit: cover;
  height: 500px;
  width: 90%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin: 0 0 0 auto;
}
.about-img {
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.about-img:before {
    position: absolute;
    content: "";
    width: 92%;
    height: 104%;
    top: 0px;
    left: 35px;
    background: var(--c3);
    z-index: -1;
    border-top-right-radius: 50%;
    border-top-left-radius: 260px;
}

/* About Us Page */

.about-us-image {
  position: relative;
  border: 1px solid var(--c2);
  padding: 20px;
}

.about-us-image:before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 85%;
  background-color: var(--c4);
  z-index: -1;
}
.about-us-title p {
  margin-top: 15px;
  color: #fff;
}

.about-us-image img {
  /* height: 480px; */
  object-fit: cover;
}

.about-us-title {
  padding-left: 20px;
}

/* Error 404 */

.error {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.error404 .inner-header {
  display: none;
}
.error-content h2 {
  color: var(--c2);
}
.error:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000c2;
}
.error-content {
  position: relative;
}
.error-content p {
  color: var(--c2);
  margin: 0px 0px 30px 0px;
}

/* Location & Hours */

.location-map iframe {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
}
.location-and-hours-title ul {
    margin-top: 20px;
    padding-left: 20px;
}

.location-and-hours-title ul li {
    list-style: disc;
    color: var(--c3);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cinzel';
    margin-bottom: 10px;
}

.location-and-hours-title ul li:last-child {
    margin-bottom: 0;
}


/* FAQ's */

.audience-faqs .accordion-item {
  border: 0;
  margin-bottom: 40px;
}
.audience-faqs .accordion-button span {
  margin-right: 10px;
  display: inline-block;
}
.audience-faqs .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--c3);
  padding: 0px;
  box-shadow: unset;
  background: unset;
}
.audience-img img {
  transition: all 0.5s;
  height: 600px;
  object-fit: cover;
}

.audience-img img:hover {
  transform: scale(1.1);
}

.audience-img {
  overflow: hidden;
  border-radius: 15px;
}
.audience-faqs .accordion-button::after {
  background-image: unset;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  transform: unset;
}

.audience-faqs .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.audience-faqs .accordion-body {
  padding: 20px 0px 0px 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.audience-faqs {
  margin-top: 40px;
  padding-right: 20px;
}

.audience-faqs .accordion-button:not(.collapsed) {
  color: var(--c3);
}

.audience-title > h2 {
  font-size: 44px;
}

.audience-title {
  padding-right: 150px;
}

.audience-faqs .accordion-item:last-child {
  margin-bottom: 0px;
}

.audience {
  position: relative;
}

/* Reviews */

.client-about ul {
  display: flex;
  color: var(--c3);
}
.customer-reviews-title {
  margin-bottom: 40px;
}
.customer-say {
  padding: 0px 10px;
  height: 120px;
  overflow-y: scroll;
}
.customer-say::-webkit-scrollbar {
  width: 3px;
}
.customer-say::-webkit-scrollbar-track {
  background: var(--c2);
}
.customer-say::-webkit-scrollbar-thumb {
  background: var(--c3);
}
.customer-reviews-main {
  padding: 30px;
  border-radius: 20px;
  background: var(--c4);
  height: 260px;
  margin: 0px 10px;
}
.client-profile {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.client-profile-icon img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50px;
}
.customer-reviews .client-about h4 {
  font-size: 20px;
  font-family: 'Playfair Display';
  text-transform: capitalize;
}
.customer-reviews .client-about h5 {
  color: #bfbfbf;
  font-size: 15px;
  font-weight: 300;
}

/*review-arrow*/

.custom-arrow {
  width: 50px;
  position: absolute;
  height: 50px;
  border: 1px solid var(--c3);
  border-radius: 50%;
  line-height: 50px;
  color: var(--c3);
  text-align: center;
  transition: all 0.4s;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 99;
}
.custom-arrow:hover {
  /* border-color: var(--c3); */
  /* color: var(--c3); */
}
.slick-next.custom-arrow {
  right: -60px;
}
.slick-prev.custom-arrow {
  left: -60px;
}
.review-slider:hover .custom-arrow {
  visibility: visible;
  opacity: 1;
}
.review-slider:hover .slick-prev.custom-arrow {
  left: -30px;
}
.review-slider:hover .slick-next.custom-arrow {
  right: -30px;
}
.review-slider .slick-list.draggable {
    padding: 10px 40px;
}

/* Services */

.our-expertise {
    /* background-color: #f4eeeb; */
}
.service-image a {
    display: block !important;
}
.expertise-title, .pricing-title , .location-title {
    text-align: center;
    margin-bottom: 30px;
}
.service-image img {
    transition: all .5s;
}

.service-box:hover .service-image img {
    transform: scale(1.1);
}

.service-content a:hover {
    /* color: var(--c3); */
}
.service-image {
    overflow: hidden;
    /* border: 8px solid var(--c3); */
    /* border-radius: 50%; */
    /* height: 280px; */
    /* width: 280px; */
    /* margin: 0 auto; */
}

.service-image img {
    /* border-radius: 50%; */
    height: 320px;
    object-fit: cover;
    /* width: 280px; */
}
	.term-11 .categories-service-desc , .term-12 .categories-service-desc {
    height: 220px;
		padding-right: 0px;
}
.service-box {position: relative;}

.service-content {/* position: absolute; *//* background: var(--c3); *//* padding: 10px 20px; *//* width: 50%; *//* bottom: 60px; *//* height: 80px; */text-align: center;}

.service-content a {
    font-size: 22px;
    font-weight: 500;
    color: var(--c2);
    text-transform: uppercase;
    font-family: 'Cinzel';
    transition: all .5s;
    /* position: absolute; */
    /* background: var(--c3); */
    padding: 10px 20px;
    /* width: 80%; */
    /* bottom: 60px; */
    /* height: 80px; */
}

/* Titles */

.expertise-title h4 , .pricing-title h4 {
    color: var(--c3);
    position: relative;
    display: inline-block;
}

.expertise-title h4:before, .expertise-title h4:after , .pricing-title h4:before, .pricing-title h4:after {
    position: absolute;
    content: "";
    background: var(--c3);
    width: 140px;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.expertise-title h4:before , .pricing-title h4:before {
	left: -160px;
}

.expertise-title h4:after , .pricing-title h4:after {
    right: -160px;
}

/* Service Category */

.tax-service_category  .inner-header-title {
    display: none;
}
.categories-service-image img {
    height: 200px;
    object-fit: cover;
}
.duation-dropdown {
    margin: 15px 0px;
}

.duation-dropdown label {
    font-family: 'Cinzel';
    font-weight: 700;
    color: var(--c3);
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.duation-dropdown select {
    padding: 8px 14px;
    background: var(--c4);
    border-radius: 6px;
    outline: 0;
    border: 0;
    color: var(--c1);
    box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.13);
}

.categories-service-image a {
    display: block !important;
}
.categories-service-desc a {
    /* position: absolute; */
    /* bottom: 20px; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
}

.categories-service-boxes {
    box-shadow: 0px 0px 58px 0px #0000001A;
    background: var(--c2);
    padding: 15px 15px 30px 15px;
    border-radius: 10px;
    /* height: 600px; */
    position: relative;
    /* overflow-y: scroll; */
}

.categories-service-image {
    border-radius: 10px;
    overflow: hidden;
}

.categories-service-image img {
    transition: all .5s;
}

.categories-service-boxes:hover .categories-service-image img {
    transform: scale(1.1);
}

.categories-service-desc {
    text-align: center;
    margin-top: 20px;
    height: 400px;
    overflow-y: scroll;
    padding-right: 20px;
}
.categories-service-desc::-webkit-scrollbar {
  width: 3px;
}
.categories-service-desc::-webkit-scrollbar-track {
  background: var(--c2);
}
.categories-service-desc::-webkit-scrollbar-thumb {
  background: var(--c3);
}

.categories-service-desc h4 {
    color: var(--c3);
    font-size: 20px;
    font-family: 'Playfair Display';
    font-weight: 700;
}
.category-detail {
    padding: 40px;
}
.Category-description p {
    padding-top: 20px;
}
.categories-list ul > li > a {
    color: var(--c3);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    display: block !important;
    width: 100%;
    transition: all .5s;
    padding: 10px 30px 10px 30px;
}
.categories-service {
    margin-top: 40px;
}
.categories-service-desc ul li {
    list-style: disc;
    font-size: 16px;
}

.categories-service-desc ul {
    padding-left: 20px;
    text-align: start;
    margin-bottom: 20px;
}
.categories-service-desc p {
    padding: 6px 0px 20px 0px;
    font-size: 16px;
    line-height: 22px;
}
.services-single-box .categories-service-desc {
    text-align: left;
}
.categories-service-desc h5 {
    color: var(--c3);
    font-family: 'Cinzel';
    margin-bottom: 10px;
}
.categories-list {
    background: #f4f1eb;
    padding: 50px 0px;
    height: 100%;
}

.categories-list ul > li > a:hover , .categories-list ul > li > a.active {
    background: #d3d3d3;
}
.categories-list ul li ul {
    padding-left: 60px;
}

.categories-list ul li ul li a {
    color: var(--c3);
    font-size: 16px;
    padding-left: 4px;
}






/* Contact Us */

.contact-form-main {
  padding: 60px;
}
.contact-us-content {
  text-align: center;
  margin: 0px 120px;
}

.contact-us-content p {
  padding: 20px 0px;
  color: #fff;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  outline: 0;
  border-radius: 0.33rem;
  box-shadow: 0px 3px 16px #04373c33;
  border: 0;
  padding: 20px 30px;
  transition: all 0.5s;
}

.form-field {
  margin-bottom: 20px;
}

.submit-btn input {
  width: 100%;
  border: 0;
  padding: 12px 28px;
  background: var(--c4);
  /* color: var(--c2); */
  /* border-radius: 0.33rem; */
  box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.13);
  /* font-size: 16px; */
  /* font-weight: 800; */
  text-transform: uppercase;
  transition: all 0.5s;
  border-radius: 6px;
}

.submit-btn input:hover {
  background: var(--c2);
  color: var(--c1);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  box-shadow: 0px 3px 2px var(--c3);
}
.bg-prop {
  background-size: cover;
  background-position: center;
}
.contact-us .wpcf7-response-output {
  color: var(--c3);
}
.contact-us .wpcf7-not-valid-tip {
  color: var(--c2);
}
.contact-us .wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--c3);
}
.contact-us .wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.contact-us .container-fluid {
  max-width: unset;
}
.contact-item input,
.contact-item textarea {
  background: unset;
  outline: 0;
  border: 0;
  width: 100%;
  padding: 15px 0px;
  color: var(--c2);
  border-bottom: 1px solid #000000;
  transition: all 0.5s;
}

.contact-item input::placeholder,
.contact-item textarea::placeholder {
  color: #000;
}

.contact-item-main .contact-item {
  margin-bottom: 20px;
}

.contact-item textarea {
  height: 150px;
}

.contact-info-item {
  display: flex;
  width: 50%;
  gap: 20px;
  margin-bottom: 50px;
}

/* Service About */

.service-about-content h4 {
    color: var(--c3);
}
.service-about-image {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
}
.service-about .service-about-box:first-of-type .service-description-box {
    margin-left: -50px;
}

.service-about .service-about-box:last-of-type .service-description-box {
    margin-right: -50px;
}
.service-about-image img:hover {
    transform: scale(1.1);
}
.service-description-box {
    box-shadow: 0px 0px 58px 0px #0000001A;
    padding: 40px 40px;
    border-radius: 20px;
    margin-top: 20px;
    background: var(--c2);
    position: relative;
    z-index: 2;
}

.service-about-image img {
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.service-about .service-about-box:first-of-type {
    margin-bottom: 50px;
}
.service-about-box {
    position: relative;
}
.service-description-box ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.service-description-box ul {
    padding-left: 20px;
    padding-top: 20px;
}

.service-description-box ul li:last-child {
    margin-bottom: 0;
}

/* Pricing */

.package-item {
    background: var(--c4);
    padding: 40px 10px;
    margin: 0px -3px;
}
.badge-mark span {
    display: inline-block;
    background: var(--c3);
    color: var(--c2);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 20px 6px 49px;
}

.badge-mark {
    position: relative;
    right: 40px;
    top: -20px;
}


.badge-mark:after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -37px;
    clip-path: polygon(100% 50%, 0 0, 100% 0);
    width: 30px;
    height: 38px;
    background: var(--c3);
}

.package-list ul li {
    margin-bottom: 10px;
    list-style: disc;
}

.package-list ul li:last-child {
    margin-bottom: 0;
}

.package-btn {
    margin-top: 30px;
}

.package-item:hover {
    background: var(--c3);
}

.package-item:hover .badge-mark span {
    background: var(--c2);
    color: var(--c1);
}

.package-item:hover .badge-mark:after {
    background: var(--c2);
}

.package-item:hover .package-header h2,
.package-item:hover .package-list p,
.package-item:hover .package-list ul li {
    color: var(--c2);
}




.package-header h2 {
    font-size: 30px;
    margin: 20px 0px;
}
.package-header sub {
    font-size: 22px;
}
.package-list ul {
    padding-left: 20px;
    height: 320px;
    overflow-y: scroll;
    padding-right: 10px;
}

.package-list ul::-webkit-scrollbar {
  width: 3px;
}
.package-list ul::-webkit-scrollbar-track {
  background: var(--c2);
}
.package-list ul::-webkit-scrollbar-thumb {
  background: var(--c1);
}

.package-list ul p {
    margin-bottom: 20px;
}

/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: bottom!important;
  /* background-attachment: fixed !important; */
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

/* Map */

.contact-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
}

/* Location & Hours */

.date-and-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid;
    padding: 1px 20px;
    align-items: center;
}
.date-and-time h4 {
    font-size: 20px;
    padding: 4px;
}
.date-and-time h3 {
    font-size: 20px;
    color: var(--c4);
}
.location-and-hours-title h2 {
    /* font-size: 46px; */
}

/* Top Banner */

.top-banner-imag img {
    /* height: 100%; */
    /* object-fit: cover; */
    /* object-position: bottom; */
}
.top-banner-imag {
    /* height: 100%; */
}

/* Footer */

.footer-links  .sub-menu {
    display: none;
}
.newsletter input[type="mail"] {
    width: 100%;
    outline: 0;
    padding: 15px 20px;
    font-size: 14px;
    border: 0;
    border-radius: 6px;
}
.newsletter input[type="mail"]::placeholder {
    color: var(--c1);
}
.newsletter {
    position: relative;
}
.footer-logo h2 {
    color: var(--c2);
    font-size: 26px;
}
.newsletter input[type="submit"] {
    position: absolute;
    right: 0;
    border: 0;
    background: var(--c4);
    color: var(--c1);
    padding: 8px 20px;
    transition: all .5s;
    margin: 5px;
    border-radius: 6px;
}
.newsletter-title h2 {
    font-size: 44px;
}
.newsletter input[type="submit"]:hover {
    background: var(--c1);
    color: var(--c2);
}
.f-main {
    padding: 40px 0px;
    border-top: 1px solid var(--c4);
}

.footer-links h2 {
    color: var(--c2);
    font-family: 'Playfair Display';
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: var(--c2);
    transition: all .5s;
    position: relative;
}

.footer-links ul li a:hover {
    padding-left: 4px;
    color: var(--c4);
}

.footer-links ul li a:before {
    position: absolute;
    content: "\f054";
    color: var(--c2);
    font-family: "Font Awesome 5 Pro";
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}


.f-main .row:last-child .col-lg-5 .footer-links ul li a:before {
    display: none;
}

.f-main .row:last-child .col-lg-5 .footer-links ul li i {
    margin-right: 10px;
}
.f-main .row:last-child .col-lg-5 .footer-links ul li {
    color: var(--c2);
}
.footer-logo img {
    filter: invert(1);
}
.footer-logo ul {
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer .menu-item-685 {
    display: none;
}
.footer-logo ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--c2);
    color: var(--c2);
    transition: all .5s;
}

.footer-logo ul li a:hover {
    background: var(--c4);
}

.footer-logo ul li:first-child {
    color: var(--c2);
    font-family: 'Playfair Display';
    font-size: 20px;
    text-transform: uppercase;
}
.footer-logo p {
    color: var(--c2);
    /* font-size: 15px; */
    padding: 20px 0px;
    width: 90%;
    font-size: 16px;
}
.footer-links ul {
    padding-left: 20px;
}

.f-main .row:last-child .col-lg-5 .footer-links ul {
    padding-left: 0;
}
.footer-bottom {
    background: var(--c3);
    padding: 20px 0px;
}

.copyright p , .copyright a {
    color: var(--c2);
}

.f-payment {
    width: 280px;
    margin: 0 0 0 auto;
}
footer.footer {
    background: linear-gradient(120deg, var(--c3), var(--c4));
}

.f-news-letter {
    padding: 40px;
}

.newsletter-title h2 , .newsletter-title p {
	color: var(--c2);
}

/* Extra */

body {
    background: linear-gradient(120deg, var(--c3), var(--c4));
}

.pricing-title h2, .expertise-title h2 , .customer-reviews-title h2 {
    color: var(--c2);
}

.customer-reviews-title h4 {
    color: var(--c1);
}
.location-title h2 {
    color: #fff;
}
.package-btn a {
    background: var(--c3);
    color: var(--c2);
}


.about-us-title h2 {
    font-size: 29px;
    font-weight: 500;
    color: var(--c2);
}

.owner {
    padding-bottom: 40px;
}
.location-and-hours-title h4 {
    color: var(--c2);
    font-family: 'Font Awesome 5 Pro';
    margin-bottom: 0;
}

.location-and-hours-title {
    /* text-align: center; */
}
.location-box {
    position: relative;
    padding: 40px;
    border-radius: 6px;
    overflow: hidden;
}

.location-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 350px;
    background-image: url(https://demo-vita.webdemo360.com/wp-content/uploads/2025/05/banner-content-before.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.contact-item-main {
    margin-top: 50px;
}
.contact-title h2 {
    color: var(--c2);
    margin-bottom: 20px;
}

.page-template-about-us .inner-header .inner-header-title h2 , .page-template-location-and-hours .inner-header .inner-header-title h2  {
	display: none;
}
.location-hours {
    text-align: center;
    margin-bottom: 20px;
}

.web-contact ul li a {
    display: block !important;
    text-align: center;
}

.web-contact ul li {
    margin-bottom: 10px;
}
.location-social ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.location-social ul li a {
    font-size: 22px;
    color: var(--c4);
    transition: all .5s;
}

.location-social ul li a:hover {
    color: var(--c2);
}
.web-contact h2, .location-map h2 , .location-and-hours-title h2 {
    text-align: center;
    color: var(--c2);
    font-size: 34px;
    margin-bottom: 20px;
}


.categories-list ul li ul li {
    list-style: circle;
    margin-left: 20px;
}

.location-title h4 {
    display: none;
}

.location-hours h2, .location-hours p {
    color: var(--c2);
}

.package-list ul strong {
    font-weight: 800;
}


.page-template-home .frm-form-title, .frm-input-title {
    display: none !important;
}


/*Get A Quote Popup*/

.get-a-quote .modal-dialog {
    max-width: 880px;
}
.quote-form-item input, .quote-form-item textarea , .quote-form-item select {
    width: 100%;
    outline: 0;
    border: 1px solid #80808030;
    height: 50px;
    padding: 10px 20px;
    border-radius: 4px;
}
.get-a-quote form {
    margin-top: 25px;
}
div#exampleModal {
    background: rgb(0 0 0 / 86%);
    background-blend-mode: color-burn;
}
.quote-form-item input:focus,
.quote-form-item textarea:focus{
    border-color: #c9f31d;
}
.quote-form-item textarea {
    height: 140px;
}
.quote-form-item {
    margin-bottom: 22px;
}
.quote-form-box h4 {
    color: rgb(255 255 255);
    text-align: center;
    margin-bottom: 0px;
    font-size: 32px;
}
.quote-form-btn input {
    background-color: #ff4c00;
    transition: all .4s;
}
.quote-form-box p {
    color: #fff;
    text-align: center;
    font-weight: 300;
}
.quote-form-btn input:hover {
    background-color: unset;
    color: #fff;
}
.get-a-quote .modal-body {
    padding: 30px 30px 50px 30px;
}
.quote-form-box h4 span{
    color: #29d0fc;
}
.get-a-quote .btn-close {
    opacity: 1;
    box-shadow: unset;
}
.get-a-quote .modal-header {
    border: 0;
}
.get-a-quote .wpcf7-form-control-wrap {
	width: 100%;
}
.get-a-quote .wpcf7-spinner {
	position: absolute;
}
.get-a-quote  .modal-content {
    background-image: url(https://vitaglowspaservices.com/wp-content/uploads/2025/07/800x450.jpg);
    border: 2px solid var(--c3);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.wpcf7 form.invalid .wpcf7-response-output {
	border: 2px solid #ff4c00;
}
.get-a-quote .wpcf7 form .wpcf7-response-output {
    padding: 0.2em 1em;
    border: 2px solid #ff4c00;
    margin: unset;
    color: #fff;
}
.get-a-quote .modal-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000a1;
}
.get-a-quote  .wpcf7-not-valid-tip {
    color: #ff4c00;
    text-align: left;
}
.get-a-quote .quote-form-box h4 .quote-form-item input {
    background: #000 !important;
    color:#fff !important;
}
.get-a-quote .quote-form-box .quote-form-item input, .get-a-quote .quote-form-box .quote-form-item textarea , .get-a-quote .quote-form-box .quote-form-item select {
    background: #fff;
    border: 1px solid #29d0fc;
    color: #000 !important;
}
.get-a-quote .modal-header button.btn-close {
    color: #fff;
}
.get-a-quote .modal-header button.btn-close {
    color: #fff !important;
    background-color: var(--c2);
    border-radius: unset;
    z-index: 1;
}
.quote-form-box {
    text-align: center;
}

.quote-form-box h2 {
    color: var(--c2);
}
.newsletter-btn {
    text-align: end;
}
.vegaro-form-box {
}