@font-face {
    font-family: 'Gilroy';
    src: url('../font/Gilroy-Medium.eot');
    src: url('../font/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Medium.woff2') format('woff2'),
        url('../font/Gilroy-Medium.woff') format('woff'),
        url('../font/Gilroy-Medium.ttf') format('truetype'),
        url('../font/Gilroy-Medium.svg#Gilroy-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Impact';
    src: url('../font/Impact.eot');
    src: url('../font/Impact.eot?#iefix') format('embedded-opentype'),
        url('../font/Impact.woff2') format('woff2'),
        url('../font/Impact.woff') format('woff'),
        url('../font/Impact.ttf') format('truetype'),
        url('../font/Impact.svg#Impact') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --calendar-bg-color: #fff;
    --calendar-font-color: #000000;
    --weekdays-border-bottom-color: #404040;
    --calendar-date-hover-color: #505050;
    --calendar-current-date-color: #1b1f21;
    --calendar-today-color: #500316;
    --calendar-today-innerborder-color: transparent;
    --calendar-nextprev-bg-color: transparent;
    --next-prev-arrow-color : #FFF;
    --calendar-border-radius: 16px;
    --calendar-prevnext-date-color: #484848
}


body {
  color: #000;
  font-family: "Montserrat", sans-serif;
  padding-top: 86px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

img {
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000;
  background-color: #fff;
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 0;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    margin: 0;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 2;
  }

  .navmenu a, .navmenu a:focus {
    padding: 18px 8px !important;
    font-size: 14px !important;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 12px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #510418;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #282828;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #bc8c2f;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: #bc8c2f;
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: #bc8c2f;
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .mobile-nav-toggle .menu {
    display: block;
  }

  .mobile-nav-toggle.bi-list.bi-x .close {
    display: block;
  }

  .mobile-nav-toggle.bi-list.bi-x .menu {
    display: none;
  }

  .mobile-nav-toggle .close {
    display: none;
  }

  .mobile-nav-toggle img {
    width: auto;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 50px 16px 16px 16px;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu ul li {
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 16px 0 !important;
    font-size: 16px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid #830929;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: #510418;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 96px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 96px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 0;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 50px 0;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  margin-top: 0;
}

.hero:before {
  background: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.text {
  position: relative;
  z-index: 9;
}

.text h2 {
  color: #fff;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
  margin: 0 0 15px 0;
  font-size: 60px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.text p {
  color: #fff;
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 25px 0;
  padding: 0;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.text a {
  background: #510418;
  color: #fff;
  padding: 10px 45px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-family: "Montserrat", sans-serif;
}

.text a:hover {
  background: #000;
}

.counter { background: #f3f3f3; margin: 0; padding: 40px 16px; }

.counter ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.counter ul li {
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.counter ul li p {
  margin: 5px 0 0;
  padding: 0;
  text-align: center;
  list-style: none;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.section-title {
  text-align: center;
  margin: 0 0 25px 0;
  padding: 0;
  color: #500316;
  font-size: 32px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.section-title span {
  font-weight: 800;
}

.about {
  margin: 0;
  padding: 60px 0;
  border-bottom: 1px solid #bebebe;
}

.about p {
  text-align: center;
  margin: 0 auto 15px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  max-width: 800px;
}

.about p.last {
  margin: 0 auto;
}

.about img {
  vertical-align: middle;
  margin: 30px auto 0;
  border-radius: 16px;
  display: block;
  max-width: 40%;
}

.namo-text {
  margin: 0;
  padding: 60px 0;
  border-bottom: 1px solid #bebebe;
}

.namo-text p {
  text-align: center;
  margin: 0 auto 15px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  max-width: 800px;
}

.namo-text img {
  vertical-align: middle;
  margin: 30px auto 0;
  border-radius: 16px;
  display: block;
  max-width: 40%;
}

.faq-section {
  padding: 60px 0;
  margin: 0;
}

.faq-section h2 {
  text-align: center;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.faq-section button {
  color: #000 !important;
  font-size: 20px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  background: #fff !important;
  box-shadow: none !important;
}

.faq-section button:focus {
  box-shadow: none;
}

.faq-section .accordion-item {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 24px 20px;
  border: 0 !important;
}

.faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-section .accordion-body {
  padding: 15px 0 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.footer {
  background-color: #510418;
  padding: 40px 0 15px;
  margin-bottom: 0;
}

.footer .c-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 15px 0;
  padding: 0;
}

.footer .address {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 30px 0;
}

.call {
  margin: 0 0 4px 0;
}

.call a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
  vertical-align: middle;
  background: url('../../assets/img/call.png') 0 50% no-repeat;
  background-size: 16px 16px;
  padding-left: 22px;
}

.mail a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
  vertical-align: middle;
  background: url('../../assets/img/mail.png') 0 50% no-repeat;
  background-size: 20px 20px;
  padding-left: 28px;
}

.ftr-btm {
  border-top: 1px solid #75142c;
  margin: 40px 0 0;
  padding: 15px 0 0;
}

.ftr-btm ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ftr-btm ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.ftr-btm ul li.insta a {
  background: url('../../assets/img/insta.png') 0 50% no-repeat;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  display: block;
}

.ftr-btm ul li b {
  font-weight: 600;
}

.testimonials {
  background: #fdf4f7;
  padding: 50px 0;
}

.testimonial-icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.testimonials img {
  max-width: 100%;
  vertical-align: middle;
  width: 100px;
  margin: 0 0 30px 0;
}

.testimonials .swiper-slide {
  border: 1px solid #e3dfe0;
  border-radius: 15px;
  background: #fff;
  padding: 30px 60px;
  box-sizing: border-box;
}

.testimonials .profile {
  display: flex;
  position: relative;
}

.testimonials .profile h3 {
  display: flex;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
}

.testimonials .profile b {
  color: #510418;
  font-size: 18px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 0;
  left: -34px;
}

.get-btn {
  margin: 0 auto;
  padding: 30px 0 0;
  text-align: center;
}

.get-btn a {
  background: #510418;
  color: #fff;
  padding: 10px 40px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.get-btn a:hover {
  background: #000;
}

.service-container {
  padding: 50px 0 50px;
}

.service-text {
  text-align: center;
  color: #500316;
  font-size: 28px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background: url('../../assets/img/quotation.png') 50% 0 no-repeat; 
  background-size: 80px;
  padding-top: 35px;
  max-width: 450px;
  margin: 0 auto;
  line-height: 34px;
  font-style: italic;
}

.our-gallery {
  padding: 60px 20px 0;
  margin: 0;
}

.img-gallery {
  padding: 50px 20px;
  background: #fcf3f6;
  border-radius: 12px;
}

.img-gallery img {
  vertical-align: middle;
  width: 100%;
  border-radius: 12px;
}

.img-gallery .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.banner.mobile {
  display: none;
}

.img-1, .img-2, .img-3, .img-4 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -18;
  opacity: 0;
  animation-name: fade;
  animation-duration: 16s;
  animation-iteration-count: infinite;
}

.img-1 { animation-delay: 0s; }
.img-2 { animation-delay: 4s; }
.img-3 { animation-delay: 8s; }
.img-4 { animation-delay: 12s; }

/* Banner Animations (4s per image, 16s total timeline)
/*---------------------------------------------*/

@keyframes crossfade {
  /* This is the default behaviour as described by Jonathan Snook*/
  00.00%  { opacity: 0; }
  06.25%  { opacity: 1; }
  25.00%  { opacity: 1; }
  31.25%  { opacity: 0; }
  100.0%  { opacity: 0; }
}

@keyframes fade {
  /* By offsetting the fade out and animating z-index, we can prevent the background from showing up at all*/
  00.00%  { opacity: 0; z-index: -10; }
  06.25%  { opacity: 1; z-index: -10; }
  31.25%  { opacity: 1; z-index: -12; }
  37.50%  { opacity: 0; z-index: -14; }
  100.0%  { opacity: 0; z-index: -16; }
}

/* Animating a clip-path in Google Chrome can destroy performance...it's crazy CPU intensive */
@keyframes iris {
  00.0% { clip-path: circle(0% at 50% 0%); z-index: -10; }
  12.5% { clip-path: circle(120% at 50% 0%); z-index: -10; }
  31.25%  { clip-path: circle(120% at 50% 0%); z-index: -12; }
  37.50%  { clip-path: circle(0% at 50% 0%); z-index: -14; }
  100%  { clip-path: circle(0% at 50% 0%); z-index: -16; }
}


.faq-page ul {
  margin: 0;
  padding: 0;
}

.faq-page ul li {
  margin: 0 0 30px 0;
  padding: 0 0 20px 0;
  list-style: none;
  border-bottom: 1px solid #ddd;
}

.faq-page ul li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.faq-page ul li h3 {
  color: #000 !important;
  font-size: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 0;
  background: #fff !important;
  box-shadow: none !important;
  margin: 0 0 18px 0;
  padding: 0;
}

.faq-page ul li p {
  margin: 0 0 10px 0;
  padding: 0;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
}

.faq-page ul li ol {
  margin: 0;
  padding: 0;
}

.faq-page ul li ol li {
  margin: 5px 0;
  padding: 0 0 0 18px;
  border: 0;
  position: relative;
}

.faq-page ul li ol li:before {
  background: #510418;
  width: 6px;
  height: 6px;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

.faq-page ul li ol li:last-child {
  padding-left: 18px;
  margin: 5px 0;
}

@keyframes slide{
  from{
    transform:translateX(0) ;
    
  }
  to{
    transform:translateX(-100%) ;
  
  }
}

.image-slide {
  overflow:hidden;
  white-space:nowrap;
  position:relative;
}

.image-slide:hover .image-slide-slide {
  animation-play-state:paused;  
}

.image-slide-slide {
  display:inline-block;
  animation: 35s slide infinite linear;
}

 .image-slide-slide img {
  height: 400px;
  border-radius: 12px;
  margin: 0 10px;
 }

 .gallery-slider1,
 .gallery-slider3,
 .gallery-slider5 {
  background: #fcf3f6;
 }

 @media screen and (max-width: 768px) {
  section, .section {
    padding: 40px 0;
  }

  .text h2 {
    font-size: 40px;
    line-height: normal;
  }

  .text p {
    font-size: 20px;
  }

  .counter {
    padding: 30px 0;
  }

  .counter ul {
    gap: 6px;
  }

  .counter ul li {
    font-size: 22px;
  }

  .counter ul li p {
    font-size: 16px;
    margin: 3px 0 0;
  }

  .about,
  .namo-text,
  .service-container,
  .testimonials,
  .faq-section {
    padding: 40px 0;
  }

  .our-gallery {
    padding: 40px 16px 0;
  }

  .img-gallery {
    padding: 30px 0;
  }

  .img-gallery .container {
    gap: 6px;
    padding: 0 16px;
  }

  .about p,
  .namo-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .service-text {
    font-size: 24px;
    line-height: 28px;
  }

  .about img,
  .namo-text img {
    max-width: 100%;
    margin: 20px auto 0;
  }

  .section-title {
    padding: 0 20px;
    line-height: 36px;
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .faq-section button {
    font-size: 16px;
  }

  .faq-section .accordion-body {
    font-size: 14px;
    padding: 10px 0 0;
  }

  .faq-page ul li {
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
  }

  .faq-page ul li h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 10px 0;
  }

  .faq-page ul li p {
    font-size: 16px;
    line-height: 24px;
  }

  .footer {
    background-color: #510418;
    padding: 30px 0 85px;
  }

  .banner.desktop {
    display: none;
  }

  .banner.mobile {
    display: block;
  }
 }

.booking-cnt {
  margin: 0;
  padding: 0;
}

.booking-cnt h5 {
  margin: 0;
  padding: 36px 0;
  color: #500316;
  font-weight: 700;
  font-size: 28px;
  line-height: 25px;
  text-align: center;
}

.booking-cnt img {
  vertical-align: middle;
  width: 100%;
}

.booking-cnt .form {
  padding: 60px 0;
}

.booking-cnt .form h5 {
  color: #500316;
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  text-align: left;
  margin: 0;
  padding: 25px 0 20px 0;
}

.booking-cnt .form h5 span {
  color: #A3A3A3;
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
}

.booking-cnt .form h6 {
  display: block;
  color: #500316;
  font-weight: 600;
  font-size: 24px;
  line-height: 25px;
  text-align: left;
  margin: 0 0 25px 0;
}

.booking-cnt .form {
  margin: 0 auto;
  padding: 60px 0 15px;
  max-width: 500px;
}

.booking-cnt .form li {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}

.booking-cnt .form li label {
  display: block;
  color: #000;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  margin: 0 0 7px 0;
}

.booking-cnt .form li select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('../../assets/img/down_arrow.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
}

.booking-cnt .form li input,
.booking-cnt .form li select {
  background-color: #F0F2F5;
  height: 50px;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
}

em {
  color: #D44444;
}

.summary {
  margin: 0 auto;
  max-width: 500px;
  background: #F0F2F5;
  border-radius: 6px;
  padding: 20px;
  box-sizing: border-box;
}

.summary h4 {
  color: #000000;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 15px 0;
}

.summary ul {
  margin: 0;
  padding: 0;
}

.summary li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary li {
  color: #767676;
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  margin: 0 0 10px 0;
}

.summary li label {
  display: block;
  color: #767676;
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
  text-align: left;
  margin: 0 0 6px 0;
}

.summary .price-b li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
}

.summary .price-b li span {
  background: #767676;
  width: 100%;
  height: 0.25px;
  opacity: 0.3;
}

.summary li.two-block ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.total {
  color: #767676 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  margin: 0 0 0;
  padding: 2px 0 0
}

.total b {
  color: #767676 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 20px !important;
}

.process-btn {
  text-align: center;
  margin: 39px auto 50px;
  max-width: 500px;
}

.process-btn a {
  background: #500316;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

.process-btn a:hover {
  background: #000;
}

.four-b {
  margin: 0 0 25px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.four-b li {
  margin: 0 !important;
  padding: 0;
}

.four-b li .form__checkbox-label {
  background: #F0F2F5;
  border-radius: 2px;
  padding: 12px !important;
  margin: 0 !important;
  color: #500316;
  position: relative;
  cursor: pointer;
}

.four-b li .form__input-checkbox {
  position: absolute;
  top: 6px;
  left: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

.four-b li .form__checkbox-mask {
  background: #DDDDDD;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: 8px;
  content: "";
}

.four-b li .form__input-checkbox:checked+.form__checkbox-mask {
  background: #3C0412 url('../../assets/img/checkmark_icon.png') center no-repeat;
}

.four-b li img {
  width: auto;
  height: auto;
}

.four-b li .img-box {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px 0;
}

.four-b li .white {
  display: none;
}

.four-b li p {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 16.5px;
  color: #500316;
}

.four-b li p span {
  font-weight: 500;
  font-size: 12px;
  line-height: 16.5px;
  display: block;
  padding: 4px 0 0;
}

.slot p {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin: 0 0 6px 0;
}

.slot .part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.slot .part a {
  color: #500316;
  border: 1px solid #500316;
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 19.11px;
  border-radius: 4px;
}

.slot .part a.active,
.slot .part a:hover {
  background: #500316;
  color: #fff;
}

.voucher-data {
  background-image: url('../../assets/img/voucher_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  font-family: 'Gilroy';
  font-weight: 500;
  box-sizing: border-box;
}

.voucher-data .t-part {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 20px 0;
}

.voucher-data .t-part .l-img img {
  width: 250px;
  vertical-align: middle;
}

.voucher-data .t-part .r-data {
  width: 100%;
  text-align: center;
}

.voucher-data .t-part .r-data img {
  vertical-align: middle;
  width: 250px;
  margin: 0 0 15px;
}

.voucher-data .t-part .r-data h2 {
  margin: 0 0 15px 0;
  padding: 0;
  color: #51171b;
  font-size: 75px;
  line-height: 75px;
  font-family: 'Impact';
}

.voucher-data .t-part .r-data p {
  color: #1f2180;
  font-size: 24px;
  font-family: 'Gilroy';
  line-height: 36px;
}

.voucher-data .t-part .r-data p a {
  text-decoration: none;
  color: #1f2180;
  font-family: 'Gilroy';
  font-weight: 500;
}

.m-part .receipt-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Gilroy';
  font-weight: 500;
  font-size: 24px;
  font-style: italic;
  color: #1f2180;
  margin: 0 0 25px 0;
}

.m-part .receipt-block .date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Gilroy';
  font-weight: 500;
}

.m-part .receipt-block input {
  border: 0;
  border-bottom: 2px dotted #500417;
  background: transparent;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Gilroy';
}

.detail-p .one {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  font-family: 'Gilroy';
  font-size: 22px;
  font-style: italic;
  color: #500417;
  font-weight: 500;
  margin: 0 0 25px 0;
}

.detail-p .two {
  display: grid;
  grid-template-columns: 1fr auto 250px;
  gap: 5px;
  font-family: 'Gilroy';
  font-size: 22px;
  color: #500417;
  font-weight: 500;
  margin: 0 0 25px 0;
}

.detail-p .three {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  font-family: 'Gilroy';
  font-size: 22px;
  color: #500417;
  font-weight: 500;
  margin: 0 0 25px 0;
}

.detail-p .four {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 5px;
  align-items: baseline;
  font-family: 'Gilroy';
  font-weight: 500;
  font-size: 22px;
  color: #500417;
  margin: 0 0 25px 0;
}

.detail-p input {
  border: 0;
  border-bottom: 2px dotted #500417;
  background: transparent;
  padding: 0 7px;
  font-family: 'Gilroy';
  vertical-align: middle;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  font-family: 'Gilroy';
}

.l-data p {
  font-family: 'Gilroy';
  font-weight: 500;
  font-size: 22px;
  color: #1f2180;
  text-align: center;
  margin: 2px 0;
}

.trustee-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 25px 0;
  padding-top: 5px;
}

.rupee-data {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rupee {
  background: #500417;
  padding: 3px 3px 3px 10px;
  border-radius: 8px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.rupee span {
  font-family: "Montserrat", sans-serif; 
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
}

.rupee input {
  background: #f6f3ee;
  border: 0;
  padding: 5px;
  font-size: 18px;
  color: #500417;
  border-radius: 6px;
}

.pan {
  color: #1f2180;
  font-size: 24px;
  font-family: 'Gilroy';
  line-height: 36px;
}

.sign-part p {
  color: #1f2180;
  font-size: 24px;
  font-family: 'Gilroy';
  line-height: 36px;
}

input:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .voucher-data .t-part {
    display: block;
  }

  .voucher-data {
    padding: 20px;
  }

  .voucher-data .t-part .l-img img {
    margin: 0 auto 20px;
    display: block;
    width: 180px;
  }

  .voucher-data .t-part .r-data img {
    width: 180px;
  }

  .voucher-data .t-part .r-data h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .voucher-data .t-part .r-data p {
    font-size: 18px;
    line-height: 26px;
  }

  .m-part .receipt-block {
    display: block;
    font-size: 20px;
  }

  .receipt {
    margin: 0 0 10px 0;
  }

  .detail-p .one {
    display: block;
  }

  .detail-p .one {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: normal;
  }

  .detail-p input {
    width: 100%;
  }

  .detail-p .two {
    display: block;
    line-height: 22px;
    font-size: 18px;
  }

  .detail-p .three {
    display: block;
    line-height: 22px;
    font-size: 18px;
  }

  .detail-p .three input {
    width: 85%;
  }

  .detail-p .four {
    display: block;
    line-height: 22px;
    font-size: 18px;
  }

  .detail-p .four input:first-child,
  .detail-p .two input:first-child {
    margin-bottom: 15px;
  }

  .trustee-part {
    display: block;
  }

  .rupee input {
    width: 100%;
  }

  .pan {
    margin: 20px 0;
    line-height: 22px;
    font-size: 18px;
  }

  .sign-part p {
    line-height: 22px;
    font-size: 18px;
  }

  .l-data p {
    line-height: 20px;
    font-size: 16px;
    margin: 5px 0;
  }

  .rupee-data {
    display: block;
  }

  .detail-p input,
  .m-part .receipt-block input {
    font-size: 16px;
    padding: 0;
    height: 26px;
  }

  .receipt,
  .m-part .receipt-block .date {
    font-size: 16px;
  }
}

.btm-btn {
  padding: 0;
}

.btm-btn a {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: #2d000b;
  position: fixed;
  bottom: 16px;
  border-radius: 8px;
  width: calc(100% - 32px);
  text-align: center;
  padding: 14px 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  left: 16px;
}

.btm-btn a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.calendar {
  font-family: "Montserrat", sans-serif;
  position: relative;
  max-width: 100%; /*change as per your design need */
  min-width: 100%;
  background: var(--calendar-bg-color);
  color: var(--calendar-font-color);
  margin: 20px auto 30px;
  box-sizing: border-box;
  overflow: hidden;
  font-weight: normal;
  border-radius: var(--calendar-border-radius);
}

.calendar-inner {
  padding: 0;
}

.calendar .calendar-inner .calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar .calendar-inner .calendar-body div {
  padding: 1px 0;
  min-height: 30px;
  line-height: 30px;
  border: 1px solid transparent;
  margin: 10px 2px 0px;
  color: #0D141C;
  font-weight: 600;
}

.calendar .calendar-inner .calendar-body div>a {
  color: var(--calendar-font-color);
  text-decoration: none;
  display: flex;
  font-weight: 400;
  justify-content: center;
}

.calendar .calendar-inner .calendar-body div:hover {
  border: 1px solid var(--calendar-date-hover-color);
  border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
  border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.calendar .calendar-inner .calendar-today-date {
  display: none;
  text-align: center;
  cursor: pointer;
  margin: 3px 0px;
  background: var(--calendar-current-date-color);
  padding: 8px 0px;
  border-radius: 10px;
  width: 80%;
  margin: auto;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month {
  display: flex;
  gap: 10px;
  font-weight: 600;
  justify-content: space-evenly;
  align-items: center;
}

.calendar .calendar-inner .calendar-controls .calendar-next {
  text-align: right;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
  font-weight: 500;
  font-size: 20px;
}

.calendar .calendar-inner .calendar-body .calendar-today {
  background: var(--calendar-today-color);
  border-radius: 4px;
}

.calendar .calendar-inner .calendar-body .calendar-today:hover {
  border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
  color: #fff;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
  outline: 2px solid var(--calendar-today-innerborder-color);
}

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
  color: var(--calendar-font-color);
  font-family: arial, consolas, sans-serif;
  font-size: 26px;
  text-decoration: none;
  padding: 4px 12px;
  display: inline-block;
  background: var(--calendar-nextprev-bg-color);
  margin: 0;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
  height: 20px;
  width: 20px;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path{
  fill: var(--next-prev-arrow-color);
}

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
  color: var(--calendar-prevnext-date-color);
}

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none;
}

.calendar-full {
  padding-top: 10px !important;
}

.booking .btm-btn {
  display: none;
}

.full-img {
  display: none;
}

.btm-btn {
  display: none;
}

.active {
  color: #510418;
  font-weight: 600;
}

.book-btn {
  display: block;
}

@media screen and (max-width: 768px) {
  .booking .footer {
    background-color: #510418;
    padding: 30px 0 25px;
  }

  .btm-btn {
    display: block;
  }

  .full-img {
    display: block;
  }

  .image-slide-slide img {
    height: 350px;
  }

  .book-btn {
    display: none !important;
  }
}