:root{
	--primary-color			: #3F0020;
	--secondery-color		: #F6F6F6;
	--text-color			: #000000;
	--accent-color			: #FDBD00;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: 'SFProDisplayMedium';
}
* {
	box-sizing: border-box;
  }
  
body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1680px;
}
.container-fluid {
    width: 100%;
    padding: 0 120px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
    margin: 0;
    padding: 0;
}
section {
  padding: 160px 0;
}
h1{
    font-size: 80px;
    line-height: 88px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
}
h2{
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
    color:var(--text-color);
    margin-bottom: 24px;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
}
h3{
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 24px;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
}
h4{
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
}
h5{
    font-size:19px;
    line-height: 26px;
    font-weight: 700;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
}
p{
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* btns */
.common-btn,
.appointment-btn {
  text-transform: capitalize;
  position: relative;
  font-size: 20px;
  line-height: 16px;
  font-weight: 600;
  width: 143px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #000;
  background-color:var(--accent-color);
}
.common-btn:hover,
.common-btn:focus,
.appointment-btn:hover,
.appointment-btn:focus{
	color: #000;
	transition: all 0.3s linear;
	background-color: var(--accent-color);
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--primary-color);
  backdrop-filter: blur(21.5px);
}
.outer-menu {
    height: 147px;
    max-height: 147px;
    padding:32px 120px;
}
.outer-menu ul li{
    margin:0 8px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:#fff;
    padding:10px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: var(--accent-color)
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  max-height: 70px;
  width: auto;
  height: 70px;
  display: none;
}
.navbar-nav {
    margin-left: auto;
    margin-right: 0;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 90px !important;
  max-height: 90px !important;
  background-color:var(--primary-color)!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
}
.is-sticky .outer-menu {
  height: 80px;
  padding: 12px 0;
}
.home-logo.navbar-brand  {
 padding:0;
position: fixed;
top: 0;
left: 0;
background: rgba(6, 6, 6, 0.19);
backdrop-filter: blur(21.5px);
z-index: 110;
display: none;
}
.home .home-logo.navbar-brand {
  display: block;
}
.navbar-brand img {
  height: 83.44px;
  width: auto;
}
.home .home-logo.navbar-brand img {
  height: 281px;
}
.sticky-logo {
  display: none;
  position: relative;
}
.sticky-logo {
  display: block;
}
.is-sticky .sticky-logo img {
  height: 56px;
  width: auto;
}
.home .sticky-logo {
  display: none;
}
.is-sticky .normal-logo,
.home .is-sticky .home-logo.navbar-brand {
  display: none;
}
.home .is-sticky .sticky-logo {
  display: block;
}
.menu-logo {
  display: none;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    }
/* header */

/* Hero */

.hero-section {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 350px 0 200px;
}
.hero-section h1 {
  margin-bottom: 32px;
  padding-bottom: 32px;
  font-weight: 600;
  font-size: 120px;
  line-height: 93px;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
.hero-section p {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
}
.hero-content {
  max-width: 1315px;
  padding: 0 0 0;
  position: relative;
  z-index: 5;
  margin: 0 auto;
  text-align: center;
}

/* gallery */

.gallery {
  position: relative;
  padding: 200px 0 80px;
  text-align: center;
}
.gallery .section-title {
  margin-bottom: 64px;
}
.gallery::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../images/wedding-bg.svg) no-repeat center top;
  content: "";
  height: 200px;
}
.gallery h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 16px;
    text-transform: capitalize;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
    color: #373737;
}
.gallery-carousel-box {
  --gap: 32px;
  position: relative;
  display: flex;
  white-space: nowrap;
   /*overflow: hidden; */
  user-select: none;
  gap: var(--gap);
  margin-bottom: 64px;
}
.gallery-scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: galleryscroll 20s linear infinite;
}

@keyframes galleryscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* services-section */

.services-section {
  position: relative;
  background-color: #F6F6F6;
}
.section-title {
  text-align: center;
  padding: 24px 0px;
  border-bottom: 1px solid #D5D5D5;
  margin: 0 auto 56px;
}
.section-title h2 {
  position: relative;
  text-transform: uppercase;
}.section-title h2 span {
  display: block;
}
.section-title p {
  color: #646464;
  font-weight: 400;
  margin: 0 auto 0 !important;
}
.service-title {
  border: none;
  text-align: left;
  padding-left:206px;
  background: url(../images/service-hd-bg.svg) no-repeat left center; 
  margin: 0 auto 20px;
  display: table;
}
.services-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap:24px;
  padding:0;
}
.services-item {
  box-sizing: border-box;
  padding:0 0;
  position: relative;
  margin-bottom: 0;
  width: calc(33.3% - 17px);
  background: #FFFFFF;
}
.services-item h4 {
  margin: 0 0 10px 0;
  color: #202020;
  font-style: italic;
  text-align: center;
}
.services-text {
  padding: 16px 32px;
  background: #FFFFFF;
}
.services-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #646464;
  margin: 0;
}

/* About */

.about-section {
  position: relative;
  padding: 120px 0;
  background: #F6F6F6;
  text-align: center;
}
.about-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
}
.about-image {
  width: 50%;
  position: relative;
}
.about-image::before {
  position: absolute;
  content: '';
  top: 40px;
  left: 38px;
  right: 38px;
  bottom: 40px;
  z-index: 1;
  border: 3px solid #FFFFFF;
}
.about-image img {
  width: 100%;
  height: auto;
}
.about-content {
  width: 50%;
  text-align: left;
  padding-right: 120px;
  padding-top: 64px;
}
.about-content .section-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}
.about-content .section-title h2 {
  width: 100%;
  margin: 0;
}
.about-content .section-title p {
  line-height: 24px;
}
.about-text p {
  color: #646464;
  width: 90%;
  text-align: justify;
  margin: 0;
}
.about-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.about-logo {
  width: 30%;
  text-align: center;
}
.about-logo img {
  margin: 0 auto;
}
.counter-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 32px 0px;
  gap: 32px;
  background: #EFEFEF;
  margin: 40px 0 32px;
}
.stats-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 100%;
}
.stat-number {
  font-weight: 600;
  font-size: 56px;
  line-height: 20px;
  color: #000000;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 32px;
  text-align: center;
}
.stat-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #646464;
  text-align: center;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
}
.stat-item {
  width: calc(25% - 10px);
}
.borded-btn {
  width: 192px;
  height: 43px;
  border: 1px solid #3F0020;
  padding: 16px 20px;
  border-radius: 0;
  color: #3F0020;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  text-align: center;
  background: transparent;
}
.borded-btn:hover {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

/*  testimonials */
.testimonials {
  position: relative;
  padding: 96px 0;
}
.testimonials .section-title {
  margin-bottom: 64px;
}
/* Slick slide wrapper */
.testimonial-slider .slick-slide {
  display: flex !important;
  padding: 0 12px;
  box-sizing: border-box;
}
.testimonial-slider .slick-list {
  margin: 0 -12px; 
  overflow: visible;
}
.testimonial-card {
  padding: 0 12px;
}
.testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-content {
  background: #F6F6F6;
  border-radius: 0px;
  padding: 24px 32px;
  display: flex;
  height: 100%;
  position: relative;
}
.testimonial-text {
  padding:60px 0 0 0;
}
.testimonial-content::before {
  background: url(../images/quote.svg) no-repeat center #3F0020;
  position: absolute;
  width: 92.12px;
  height: 88px;
  content: "";
  left: -37px;
  top: -24px;
}
.testimonials p.testimonials-bottom-text {
  text-align: center;
  font-style: italic;
  color: #646464;
  margin:40px 0 0;
}
/* Text */
.testimonial-text p {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 16px !important;
  color: #585757;
}

.testimonial-author,
.testimonial-location {
  text-align: right;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #202020;
}
.testimonial-author {
   font-style: italic;
}
.testimonial-location {
  font-size: 16px;
  font-weight: 500;
}
.testimonial-location p {
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 500;
  margin: 0 !important;
}
.slick-slider {
  position: relative;
}
.slick-prev, .slick-next {
  position: absolute !important;
  top: 10px;
  z-index: 10;
}
.slick-slider {
  position: relative;
}
.testimonial-slider .slick-prev, .testimonial-slider .slick-next {
  position: absolute !important;
  top:auto;
  bottom: -86px;
  z-index: 10;
  background-color: #DCDCDC;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  padding: 8px;
  text-align: center;
  font-size: 0;
  border: none;
}
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  background-image: url(../images/sider-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(0%) sepia(83%) saturate(7432%) hue-rotate(8deg) brightness(113%) contrast(87%);
}
.testimonial-slider .slick-prev::before {
  transform: rotate(180deg);
}
.testimonial-slider .slick-prev {
  right: 52px;
  left: auto;
}
.testimonial-slider .slick-next {
  right: 0;
}
.testimonial-slider  .slick-dots {
  text-align: right;
  bottom: -74px;
  position: absolute;
  right: 148px;
}

/* gallery */
.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  margin-bottom: 56px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}
.gallery-item img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-page-section {
  text-align: center;
  background-color: #FFF3F9;
}

/* contact */
.contact-section {
  position: relative;
  padding: 120px 0;
  background:url(../images/contact-bg.svg) no-repeat right top #fff;
}
.contact-section .container-fluid {
  padding: 0 270px;
}
.contact-section .section-title {
  text-align: center;
  margin-bottom: 32px;
}
.contact-section-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.contact-wrap {
  width: calc(36% - 18px);
}
.contact-form {
  width: calc(64% - 18px);
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 31px;
}
.contact-info h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16pxpx;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
}
.contact-phone,
.contact-address,
.contact-email {
  padding-left: 63px;
  position: relative;
}
.contact-phone p {
  margin-bottom: 46px;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #7B7B7B;
}
.contact-phone p span small {
  display: block;
}
.contact-phone h4,
.contact-email h4 {
  margin-top: 0;
  margin-bottom: 5px;
}
.contact-address-wrap p a {
  color: #7B7B7B;
}
.contact-address p {
  max-width: 210px;
}
.contact-address a {
  text-decoration: underline;
}
.contact-phone::before,
.contact-address::before,
.contact-email::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: url(../images/call-icon.svg) no-repeat center #FFF3F9; 
  text-align: center;
}
.contact-address::before {
  background: url(../images/location-icon.svg) no-repeat center #FFF3F9; 
}
.contact-email::before {
  background: url(../images/mail-icon.svg) no-repeat center #FFF3F9; 
}

.contact-details {
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0px 0;
  text-align: left;
  background: rgba(246, 246, 246, 0.42);
  padding: 32px;
}
.contact-form .form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.contact-form .form-group {
  margin-bottom: 10px;
  width: calc(50% - 10px);
} 
.contact-form .form-row .form-group.full-width {
  width: 100% !important;
}
.contact-form .wpcf7  {
  width: 100%;
}
.contact-form p {
  margin: 0;
}
.contact-form label 
{
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #9794AA;
  margin-bottom: 8px;
  text-transform: capitalize;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.89);
  border: 1px solid #CBCAD7;
  backdrop-filter: blur(20.5px);
  padding: 19.5px 20px 17.5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #686677;
  text-transform: capitalize;
  width: 100%;
  border-radius: 0;
}
.contact-form select {
  background-color: transparent;
}
.contact-form textarea {
  height: 118px;
} 
  .contact-form  input[type="submit"] 
  {
    background: #FDBD00;
    color: #FFFFFF;
    border-radius: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    height: 64px;
    margin-top: 14px;
    width: 100%;
    border: none;
    box-shadow: none;
    outline: none;
    text-decoration: none !important;
  }
  .contact-form  input[type="submit"]:hover {
    background-color: var(--accent-color);
    color:#000;
  }
  .wpcf7-spinner {
    display: none;
  }
/* Footer */
  .footer {
      background:var(--primary-color);
      color: #ffffff;
      padding: 96px 0 50px;
  } 
  .footer-content {
      display: flex;
      justify-content: space-between;
  }
  .footer-section {
      display: flex;
      flex-direction: column;
  }
  .footer-logo img {
    height: auto;
    width: auto;
  }
  .footer-menu h4 {
      font-weight: 700;
      font-size: 24px;
      line-height: 28px;
      text-transform: capitalize;
      color: #fff;
      margin-bottom: 15px;
      font-family: "DM Sans", sans-serif;
  }
  .footer-menu li {
    margin: 0;
    margin-bottom: 7px;
  }
  .footer-section li:last-child {
    margin-bottom: 0;
  }
  .footer-link,
    .footer-menu li a {
      font-weight: 500;
      font-size: 22px;
      line-height: 28px;
      color:#F6F3F3;
      text-decoration: none;
      margin-bottom: 10px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5; 
  }
    .footer-link a {
      color:#FFFAFA;
    }
  .footer-link:hover,
  .footer-menu li a:hover {
      opacity: 1; 
  }
   .footer-contact-info p {
      font-weight: 500;
      font-size: 22px;
      line-height: 23px;
      text-transform: capitalize;
      color:#F6F3F3;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.3s ease;
      opacity: 0.5; 
      display: flex;
    }  
      .footer-contact-info p a {
        color: #F6F3F3;
        text-decoration: none;
        transition: color 0.3s ease;
      }
    .footer-contact-info p span {
      min-width: 85px;
    }    
  .footer-copyright {
      font-weight: 400;
      font-size: 16px;
      line-height: 18px;
      color:#fff;
      border-top: 1px solid #fff;
      padding: 16px 0;
      margin-top: 32px;      
  }
  .footer-copyright-text {
      opacity: 0.73;
      text-align: left;
  }
  .footer-design-by {
    justify-content: flex-end;
      align-items: center;
      display: flex;
  }
  
  .designed {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#FFFFFF;
     margin: 0;
     text-align: right;     
  }
  .designed span {
    opacity: 0.73;
  }
  .designed a  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }
  .footer-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%; 
  }
  .footer-social-icons {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }
  .footer-social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 254, 254, 0.12);
    border-radius: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
  }

  /* inner banner */
  
  .inner-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 100px;
    min-height: 450px;
    position: relative;
  }
  .inner-heading {
    position: absolute;
    width: 100%;
    bottom: 140px;
    left: 0;
    padding: 0 128px;
    text-align: center;
  }
  .inner-heading h1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 93px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
  }
    .inner-hero-section {
    padding: 0;
  } 

    .wedding-themes-section {
    padding: 120px 0;
  }
 .wedding-themes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px;
  gap: 24px;
 }
  .wedding-themes .gallery-image {
  padding: 16px;
  width: calc(33.3% - 20px);
 }
  .wedding-themes h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 16px;
  text-transform: capitalize;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  color: #373737;
}

.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.jobPopup {
		z-index: 99999;
	}
	.jobPopup .modal-dialog .modal-content {
		border-radius: 10px;
		border: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		pointer-events: auto;
		background-clip: padding-box;
		outline: 0;
	}
	.jobPopup .modal-dialog .modal-content .modal-header {
		padding: 24px 0 18px;
		margin: 0 40px;
	}
	.jobPopup .modal-dialog .modal-content .modal-header .modal-title {
		font-size: 20px;
		color: #000;
		font-weight: 500;
	}
  	.jobPopup .modal-dialog .modal-content .modal-body p {
      font-size: 16px;
      line-height: 22px;
      color: #000;
    }
	.jobPopup .modal-dialog .modal-content .modal-header .btn-close {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		width: 18px;
		height: 18px;
		border-radius: 0;
		opacity: 1;
		margin-left: auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body {
		padding: 25px 40px 40px;
		position: relative;
		flex: 1 1 auto;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form>*:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"],
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"],
  .jobPopup .modal-dialog .modal-content .modal-body form select,
  .jobPopup .modal-dialog .modal-content .modal-body form textarea {
		height: 50px;
		padding: 10px 20px;
		width: 100%;
		font-size: 15px;
		border: 1px solid #707070;
		outline: none;
		box-shadow: none;
		border-radius: 5px;
		background: #fff;
		transition: all .3s;
		color: #263948;
	}
  .jobPopup .modal-dialog .modal-content .modal-body form p {
    margin-bottom: 10px;
  }
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="text"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="tel"]::placeholder,
	.jobPopup .modal-dialog .modal-content .modal-body form input[type="email"]::placeholder,
  .jobPopup .modal-dialog .modal-content .modal-body form select::placeholder,
    .jobPopup .modal-dialog .modal-content .modal-body form textarea::placeholder{
		color: #263948;
		opacity: 1;
	}
	.jobPopup .common-btn {
		margin-top: 12px;
		height: 50px;
		font-size: 15px;
		width: 100%;
    text-decoration: none;
    background-color:var(--primary-color)!important;
    color: var(--white-color);
    border-radius: 8px !important;
    padding: 12px;
	}
	.jobPopup .common-btn:hover,
	.jobPopup .common-btn:focus {
		background-color:var(--accent-color);
		color: var(--white-color);
	}
  .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    color: red;
    padding: 0;
  font-size: 14px;
  }
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
  .our-faq-page-content {
    text-align: left;
  }
  .page-details h1  {
    font-size: 30px;
    line-height: 34px;
    text-align: center;
  }
  .page-details h2  {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .page-details ul,
  .page-details ol {
    margin-bottom: 20px;
    margin-left: 15px;
  }
  .wedding-theme-details {
    padding-left:65px
  }
  .wedding-theme-details h2 {
    text-transform: uppercase;
  }
  .sub-heading p {
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
    color: #646464;
  }
    .wedding-theme-details h4 {
    font-family: "DM Sans", sans-serif;
    margin-bottom: 10px;
  }
  .wedding-theme-details ul li {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #646464;
  padding-left: 5px;
  list-style: disc;
  }
     .wedding-theme-details p {
      color: #646464;
     }
   .wedding-theme-details ul {
    margin-left: 30px;
    margin-bottom: 32px;
   }
   .thumb-slider  {
    margin-top: 24px;
   }
      .thumb-slider .swiper-slide img {
        width: 100%;
        object-fit: cover;
        height: 138px;
      }
      .main-slider .swiper-slide img {
        width: 100%;
        object-fit: cover;
        height: 100%;
      }
      .wedding-theme-details .btn-wrap {
        display: flex;
        flex-direction:row;
        gap:16px;
      }
      /*.wedding-theme-details .btn-wrap .common-btn {*/
      /*  width: calc(50% - 10px);*/
      /*}*/
      .wedding-theme-details .btn-wrap .common-btn {
          width: 100%;
      }
/* catering page */
      .catering-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 24px;
      }
      .catering-menu-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding: 24px;
        gap: 39px;
        background: #F6F6F6;
      }
      .catering-menu-item .menu-image {
          width: calc(47% - 20px);
      }
      .catering-menu-item .menu-image img {
        width: 100%;
        height: auto;
      }
      .catering-menu-item .menu-text {
          width: calc(53% - 20px);
      }
       .catering-menu-item h3 {
        font-family: "DM Sans", sans-serif;
        margin-bottom: 8px;
        font-weight: 600;
       }
        .catering-menu-item p {
          margin-bottom: 18px;
        }
        .catering-menu-item ul {
            margin-left: 15px;
        }
        .catering-menu-item ul li {
          font-weight: 500;
          font-size: 20px;
          line-height: 24px;
          color: #646464;
          list-style: disc;
        }
      .catering-template h2 {
        text-transform: uppercase;
      }
      .catering-template p {
        color: #646464;
      }
      .services-details .single-fallback-image img {
          width: 100%;
          height: auto;
      }
      .wedding-themes .gallery-image img {
        width: 100%;
        height: auto !important;
      }
      .gallery-innet-section {
        text-align: center;
      }
  /* media query */
  
 @media only screen and (max-width: 1900px){	
    .container-fluid {
      padding: 0 100px;
    } 
    .gallery-item img {
      height: 387px;
    } 
    .about-content {
      padding-right: 100px;
    }
    .about-wrap {
      gap:100px;
    }  
  }
  @media only screen and (max-width: 1800px){	
     .container-fluid {
      padding: 0 90px;
    }   
     .outer-menu {
      padding: 32px 90px;
    } 
     .gallery-item img {
      height: 366px;
    }
    .about-content {
      padding-right: 90px;
    }
    .about-wrap {
      gap:90px;
    }  
    section {
      padding: 140px 0;
    }
    .hero-section {
      padding: 320px 0 200px;
    }
    .hero-content {
  max-width: 1079px; 
    }
    .hero-section h1 {
      font-size: 100px;
      line-height: 83px;
    }
    .single-facilities-section .facilities-details {
      padding: 50px 100px 0;
    }
     .contact-section .container-fluid {
      padding: 0 250px;
    }
    .gallery-innet-section,
    .contact-inner-section {
      margin-top: 40px;
    }
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 80px;
    }  
     .outer-menu {
      padding: 32px 80px;
    }
    .about-content {
      padding-right: 80px;
    }
    .about-wrap {
      gap:80px;
    }   
    section {
      padding: 120px 0;
    }   
    .stats-grid {
      padding: 0 10px;
    }
    .testimonial-text p {
      font-size: 19px;
      line-height: 30px;
    }
    .gallery-item img {
      height: 349px;
    }
     .contact-section .container-fluid {
      padding: 0 220px;
    }
}
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }
     .outer-menu {
      padding: 32px 70px;
    }
    .about-content {
      padding-right: 70px;
    }
    .about-wrap {
      gap:70px;
    }   
    h1 {
      font-size: 70px;
      line-height: 78px;
    }
    h2 {
      font-size: 52px;
      line-height: 48px;
    }    
    p {
      font-size: 22px;
      line-height: 30px;
    }  
    .inner-heading h1 {
      font-size: 60px;
      line-height: 66px;
    } 
    .wedding-theme-details ul li {
       font-size: 22px;
      line-height: 30px;
    } 
    section,
    .about-section,
    .facilities-section.about-content,
    .testimonials,
    .contact-section,
    .single-facilities-section,
    .wedding-themes-section {
      padding: 90px 0;
    }    
    .facilities-section {
      padding-bottom: 90px;
    } 
    .hero-section h1 {
      font-size: 90px;
      line-height: 73px;
    }
    .hero-content {
      max-width: 900px;
    }   
    .hero-section {
      padding: 280px 0 180px;
    }
    .hero-section p {
      font-size: 22px;
      max-width: 637px;
    }
    .section-title {
      margin-bottom: 46px;
    }
    .about-logo {
      width: 26%;
    }
    .stat-label {
      font-size: 15px;
    }
     .gallery-item img {
      height: 330px;
    }
    .gallery {
      margin-bottom: 40px;
    }
    .footer {
      padding: 80px 0 40px;
    }
    .single-facilities-section .facilities-details {
      padding: 30px 80px 0;
    }
    .facilities-details ul li {
      font-size: 22px;
      line-height: 30px;
      margin-bottom: 6px;
    }
    .facilities-details h2 {
      margin-bottom: 30px;
    }
     .contact-section .container-fluid {
      padding: 0 180px;
    }
    .gallery-innet-section,
    .contact-inner-section {
      margin-top: 60px;
    }
  }
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }
    .outer-menu {
      padding: 32px 50px;
    }
   .home .home-logo.navbar-brand img {
    height: 265px;
  }
  .about-content {
      padding-right: 50px;
    }
    .about-wrap {
      gap:50px;
    } 
    .testimonial-text p {
      font-size: 17px;
      line-height: 28px;
    }  
    .testimonial-author, .testimonial-location {
      font-size: 18px;
    }
    .gallery {
      gap: 2px;
    }
    .gallery-item img {
      height: 314px;
    }
    .gallery-image img {
      height: 500px;
    }
    .contact-phone p {
      font-size: 22px;
      line-height: 22px;
    }
    .contact-phone p span {
      font-size: 18px;
      line-height: 22px;
    }
    .single-facilities-section .facilities-details {
        padding: 30px 50px 0;
    }
    .contact-section .container-fluid {
      padding: 0 150px;
    }
    .wedding-theme-details {
  padding-left: 50px;
}
  }
 @media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    } 
    .about-content {
      padding-right: 30px;
      padding-top: 50px;
    }
    .about-wrap {
      gap:30px;
    }   
    .outer-menu {
      padding: 20px 15px;
    }
    .is-sticky .outer-menu {
      padding: 12px 0;
    }
    h1 {
      font-size: 64px;
      line-height: 69px;
      margin-bottom: 25px;
    }
    h2 {
      font-size: 48px;
      line-height: 48px;
    }
    p {
      font-size: 20px;
      line-height: 28px;
    }
    .wedding-theme-details ul li {
       font-size: 20px;
      line-height: 28px;
    } 
    .inner-heading h1 {
      font-size: 56px;
      line-height: 60px;
    }  
    section,
    .about-section,
    .facilities-section.about-content,
    .testimonials,
    .contact-section,
    .single-facilities-section,
    .wedding-themes-section {
      padding: 80px 0;
    }
    .facilities-section {
      padding-bottom: 80px;
    }    
    .home .home-logo.navbar-brand img {
      height: 200px;
    }
     .hero-section h1 {
      font-size: 80px;
      line-height: 68px;
    }
     .hero-section p {
      font-size: 20px;
      line-height: 28px;
      max-width: 637px;
    }
     .hero-content {
      max-width: 800px;
    }
     .hero-section {
      padding: 250px 0 150px;
    }
    .about-image::before { 
      top: 30px;
      left: 30px;
      right: 30px;
      bottom: 30px;
    }
    .counter-section {
      margin: 20px 0 26px;
      padding: 24px 0px;
    }
    .stats-grid {
      gap: 10px;
    }
    .stat-number {
      font-size: 50px;
      margin-bottom: 25px;
    }
     .stat-label {
      font-size: 14px;
      line-height: 18px;
    }
    .facilities-item {
      padding: 20px 12px;
    }
    .facilities-image {
      margin-bottom: 18px;
    }
    .testimonial-text {
      padding: 110px 0 0 0;
    }
    .testimonial-content {
      height: 100%;
    }
      .gallery-item img {
        height: 300px;
      }
      .section-title {
        margin-bottom: 35px;
      }
      .testimonial-text::before { 
        width: 80px;
        height: 75px;
      }
     .testimonial-text {
        padding: 90px 0 0 0;
      }
      .footer {
        padding: 70px 0 30px;
      }
       .inner-heading {
    padding: 0 100px;
  }
  .single-facilities-section .facilities-details {
  padding: 0 30px 0 40px;
  }
  .facilities-details ul li {
    font-size: 20px;
  line-height: 28px;
  }
  .facilities-details p {
    margin-bottom: 25px;
  }
  .facilities-details h2 {
  padding: 20px 0;
  }
  .facilities-details-images {
      padding: 25px 0;
  }
   .contact-section .container-fluid {
      padding: 0 120px;
    }
    .navbar-brand img {
  height: 70px;
  width: auto;
}
.gallery {
  padding: 150px 0 60px;
}
.footer-link, .footer-menu li a,
.footer-contact-info p {
  font-size: 20px;
}
.footer-menu h4 {
  font-size: 22px;
}
.inner-banner {
  min-height: 400px;
}
.inner-heading {
  bottom: 100px;
}
.sub-heading p {
  font-size: 30px;
  line-height: 35px;
}
 .wedding-theme-details {
    padding-left: 40px;
  }
  .catering-menu-item ul li {
  font-size: 18px;
  line-height: 22px;
  }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    } 
    .home .home-logo.navbar-brand img {
      height: 180px;
    }
    .about-content {
      padding-right: 15px;
      padding-top: 40px;
    }
    .about-wrap {
      gap:15px;
    } 
    .outer-menu {
      height: 90px;
    } 
    .section-title p {
      font-size: 18px;
    } 
     .counter-section {
      margin: 0 0 26px;
      padding: 20px 0px;
    }
    h4 {
      font-size: 18px;
      line-height: 18px;
    }
    .gallery-item img {
    height: 283px;
  }
  .contact-info {
    gap: 15px;
  }
  .contact-address-wrap p {
    font-size: 14px;
    line-height: 18px;
  }
   .contact-phone p {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 36px;
  }
  .contact-form input, .contact-form select, .contact-form textarea {
    padding: 15px 15px;
  }
   .hero-section {
    padding: 220px 0 130px;
  }
  .single-facilities-section .facilities-details {
  padding: 0 15px 0 30px; 
  }
  .facilities-details ul {
  margin-left: 20px;
}
.footer-link, .footer-menu li a,
.footer-contact-info p {
  font-size: 18px;
}
.outer-menu ul li a {
  font-size: 18px;
}
 .sub-heading p {
    font-size: 26px;
    line-height: 32px;
  }
  .thumb-slider .swiper-slide img {
    height: 120px;
  }
  }
  @media only screen and (max-width: 1200px){	   
    .outer-menu {
      padding: 12px 15px;
    }
    .outer-menu ul li a {
      font-size: 18px;
      line-height: 18px;
      padding: 10px 6px;
    }
    h1 {
      font-size: 60px;
      line-height: 60px;
      margin-bottom: 20px;
    }
    h2 {
      font-size: 44px;
      line-height: 44px;
      margin-bottom: 20px;
    }   
   .section-title p {
    font-size: 17px;
    line-height: 24px;
  }
    p {
      font-size: 16px;
      line-height: 24px;
    }
    .wedding-theme-details ul li {
    font-size: 16px;
      line-height: 24px;
  }
  .wedding-theme-details p {
    margin-bottom: 25px;
  }
    .inner-heading h1 {
      font-size: 50px;
      line-height: 56px;
    }  
    .hero-section h1 {
    font-size: 70px;
    line-height: 64px;
    margin-bottom: 20px;
  } 
   .hero-section p {
    font-size: 18px;
    line-height: 26px;
    max-width: 557px;
  }
  section,
    .about-section,
    .facilities-section.about-content,
    .testimonials,
    .contact-section,
    .single-facilities-section,
    .wedding-themes-section {
      padding: 60px 0;
    }
    .facilities-section {
      padding-bottom: 60px;
    }      
  .hero-content {
    max-width: 700px;
  }   
    .hero-section {
    padding: 200px 0 120px;
  } 
   .gallery-item img {
    height: 259px;
  }
  .contact-phone::before, .contact-address::before, .contact-email::before { 
    width: 38px;
    height: 38px;
    background-size: 25px auto;
  }
  .contact-phone, .contact-address, .contact-email {
  padding-left: 50px; 
  }
  .footer-copyright {
    font-size: 15px;
  }
  .contact-phone h4 {
  margin-top: 8px;
  margin-bottom: 20px;
}
  .footer {
    padding: 60px 0 20px;
  }
   .inner-heading {
    padding: 0 80px;
  } 
  .facilities-details p {
    margin-bottom: 20px;
  }
  .facilities-details ul li {
    font-size: 16px;
  line-height: 22px;
  }
    .navbar-brand img {
    height: 60px;
    width: auto;
  }
   .gallery {
    padding: 120px 0 40px;
  }
  .gallery::before { 
    background-size: auto 160px;
  }
  .gallery .section-title {
  margin-bottom: 50px;
}
.gallery-image img {
    height: 450px;
  }
  .gallery h3 {
    font-size: 22px;
  }
  .services-text {
  padding: 16px 20px;
  background: #FFFFFF;
}
  .contact-section .container-fluid {
    padding: 0 80px;
  }
   .footer-link, .footer-menu li a, .footer-contact-info p {
    font-size: 17px;
  }
  .inner-banner {
    min-height: 300px;
  }
  .wedding-themes {
    gap: 12px;
  }
  .wedding-themes .gallery-image {
  padding: 16px;
  width: calc(33.3% - 8px);
}
.wedding-theme-details {
    padding-left: 30px;
  }
  .catering-menu-item {
    padding: 20px;
    gap: 24px;
  }
  .catering-menu-item .menu-image {
  width: calc(48% - 15px);
}
h3 {
  font-size: 28px;
  line-height: 28px;
}
  }
  @media only screen and (max-width: 1100px){	
      .home .home-logo.navbar-brand img {
    height: 160px;
  }
    .hero-section {
    padding: 150px 0 80px;
  }
   h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .section-title p {
    font-size: 16px;
    line-height: 22px;
  }
  .stat-number {
    font-size: 40px;
    margin-bottom: 15px;
  }
    .section-title {
    margin-bottom: 25px;
  }
 .facilities-item {
    padding: 15px 10px;
  }
    .facilities-image {
    margin-bottom: 12px;
  }
  .testimonial-text::before {
    width: 70px;
    height: 65px;
  }
   .testimonial-text p {
    font-size: 16px;
    line-height: 26px;
  }
  .testimonial-content {
    padding: 20px 25px;
  }
    .gallery-item img {
    height: 232px;
  }
   .contact-phone p {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 30px;
  }
   .contact-phone p span {
    font-size: 16px;
    line-height: 20px;
  }
  .contact-details {
    font-size: 18px;
  line-height: 22px;
  }
  .footer-logo img {
  height: 100px;
  width: auto;
}
.footer-contact-info p {
  font-size: 16px;
  line-height: 20px;
}
 .about-image::before {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .facilities-details h2 {
    padding: 0 0 15px;
    margin-bottom: 20px;
  }
  .facilities-details p {
    margin-bottom: 15px;
  }
  .facilities-details-images {
    padding: 15px 0;
  }
  .outer-menu ul li a {
    font-size: 16px;
  }
  .common-btn, .appointment-btn {
    font-size: 18px;
  }
   .testimonial-text {
    padding: 70px 0 0 0;
  }
  .testimonial-content::before { 
    width: 80px;
    height: 78px;
    left: -15px;
    }
     .testimonial-author, .testimonial-location {
    font-size: 16px;
  }
   .contact-section .container-fluid {
    padding: 0 60px;
  }
  .gallery-carousel-box {
    margin-bottom: 50px;
  }
  }
  @media only screen and (max-width: 991px){   
    .is-sticky .outer-menu {
      padding: 12px 15px;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	  position: absolute;
	  right: 15px;
	  height: 13px;
	  border-radius: 0;
	  width: 23px;
	  padding: 0;
	  background-color: transparent;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--white-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--white-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}  
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color:var(--primary-color);
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--white-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
  }
  .main-header {
    backdrop-filter: none;
  }
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
   section, .about-section, .facilities-section.about-content, .testimonials, .contact-section, 
   .single-facilities-section, .wedding-themes-section {
    padding: 40px 0;
  }
   .facilities-section {
    padding-bottom: 20px;
  }
   h1{
    font-size: 40px;
    line-height: 42px;
    margin-bottom: 20px;
  }
   h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }  
  .hero-content {
    max-width: 600px;
  }
  .hero-section h1 {
    font-size: 60px;
    line-height: 54px;
    margin-bottom: 15px;
  }
   .hero-section p {
    font-size: 16px;
    line-height: 24px;
  }
  .scroll-down {
  padding: 10px;
  width: 50px;
  height: 65px;    
  }
  .hero-section {
    padding: 130px 0 60px;
  }
  .inner-heading h1 {
      font-size: 44px;
      line-height: 50px;
    }  
  .about-image {
    width: 100%;
    margin: 0 15px;
  }
  .about-wrap {
    flex-wrap: wrap;
  }
  .about-content {
    width: 100%;
    padding: 0 15px;
  }
  .about-logo {
    width: 20%;
  }
  .footer {
    padding: 50px 0 0;
  }
  .menu-logo {
    display: block;
  }  
   .gallery-item img {
    height: 178px;
  }
   .gallery {
    margin-bottom: 30px;
  }
  .contact-section-wrap {
    gap: 30px;
    flex-wrap: wrap;
  }
  .contact-wrap,
  .contact-form{
    width: 100%;
  }
   .footer-content .col-md-3{
      width: 50%;
   }
   .facilities-item {
    padding: 15px 5px;
  }
  .footer-about {
    margin-bottom: 30px;
  }
     .footer-copyright {
      text-align: center;
     }
   
     .footer-copyright-text {
      margin: 15px 0;
     }
      .inner-heading {
    padding: 0 30px;
  }
  .single-facilities-section .facilities-details {
  padding: 30px 15px 0 15px;
  width: 100%;
  }
  .facilities-details-img {
    width: 100%;
    margin: 0 15px;
  }
  .home .home-logo.navbar-brand {
      display: none;
   }
   .home .sticky-logo {
      display: block;
    }
     .gallery {
    padding: 80px 0 30px;
  }
   .gallery::before {
    background-size: auto 120px;
  }
   .gallery-image img {
    height: 400px;
  }
  .service-title {
    background-size: auto 120px;
    padding-left: 140px !important;
  }
  .footer-content .col-md-3:first-child,
  .footer-content .col-md-3:nth-child(2) {
    margin-bottom: 30px;
  }
  .gallery-carousel-box {
  --gap: 25px;
  }
   .inner-banner {
    min-height: 300px;
  } 
   .inner-heading {
    bottom: 80px;
  }
  .wedding-themes .gallery-image {
      padding: 16px 5px;
      width: calc(33.3% - 8px);
    }
    .wedding-themes h3 {
      font-size: 20px;
    }
    .services-details .col-md-6 {
      width: 100%;
    }
     .wedding-theme-details {
    padding-left: 0;
    padding-top: 25px;
  }
  .gallery-images {
    margin-bottom: 40px;
  }
    .catering-menu-item .menu-image,
        .catering-menu-item .menu-text {
  width: 100%;
}
  }
@media only screen and (max-width: 767px){
    .footer-design-by {
      justify-content: center;
     }
     .gallery-carousel-box {
  --gap: 20px;
     }
  p, .hero-section p {
    font-size: 16px;
    line-height: 24px;
  }
  h1 {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 10px;
  }  
   .inner-heading h1 {
       font-size: 36px;
    line-height: 38px;
    }
  .section-title p {
    font-size: 18px;
    line-height: 24px;
   }
   .footer-copyright {
    margin-top: 20px;
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 10px;
  }
  .footer-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  
   .hero-section h1 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px;
  }
 .hero-content {
    max-width: 500px;
  }
   .gallery-image img {
    height: 350px;
  }
   .gallery h3 {
    font-size: 20px;
    margin-top: 18px;
  }
  .section-title {
    margin-bottom: 20px;
    padding: 15px 0;
  }
  .facilities-item {
    width: 33.3%;
  }
  .gallery-item {
    width: 33%;
  }
  .gallery-item img {
    object-fit: cover;
    width: 100%;
  }
  .gallery-item:first-child {
    width: 66%;
  }
   .footer {
    padding: 40px 0 0;
  }
  .inner-heading {
    padding: 0 15px;
  }
  .inner-banner {
    min-height: 250px;
    padding: 50px 0;
  }
  .services-item {
    width: calc(50% - 13px);
  }
  .services-wrap {
    gap: 16px;
  }
   .contact-section .container-fluid {
    padding: 0 15px;
  }
  .footer-copyright-text {
    text-align: center;
  }
   .footer-copyright-text {
    margin: 0 0 5px 0;
  }
  .footer-contact-info p span {
  min-width: 58px;
}
.contact-form {
  padding: 20px;
}
 .inner-heading {
    bottom: 60px;
  }
  .wedding-themes .gallery-image {
  padding: 16px 5px;
  width: calc(50% - 14px);
}
  .catering-menu-item ul li {
    font-size: 16px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 600px){ 
   h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 15px;
  } 
     .inner-heading h1 {
      font-size: 32px;
    line-height: 36px;
     }
   .section-title p {
    font-size: 18px;
    line-height: 24px;
  }
  h3 {
    font-size: 21px;
    line-height: 26px;
  }
   .hero-section h1 {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 15px;
  }  
   .gallery-item img {
    height: 170px;
  }
  .hero-section h1 {
    padding-bottom: 20px;
  }
  .services-item {
    width: 100%;
  }
   .sub-heading p {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 500px){   
   h1{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
   }
     .inner-heading h1 {
    font-size: 28px;
    line-height: 32px;
     }
   h2 {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 15px;
   }
   p, .hero-section p {
    font-size: 14px;
    line-height: 22px;
  }
    .catering-menu-item ul li {
    font-size: 14px;
    line-height: 20px;
  }
   .wedding-theme-details ul li {
    font-size: 14px;
    line-height: 22px;
  }
    .hero-section h1 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .wedding-theme-details ul {
  margin-left: 15px;
  margin-bottom: 32px;
}
 
   .scroll-down {
    padding: 10px;
    width: 50px;
    height: 55px;
  }
 
  .inner-heading {
    padding: 0;
  }
  .about-content .section-title {
    flex-direction: column;
  }
  .section-title p {
    font-size: 16px;
  }
  .about-logo {
    display: none;
  }
  .about-text p {
    width: 100%;
  }
  .stat-item {
    width: calc(50% - 10px);
  }
   .stats-grid {
    gap: 20px;
    flex-wrap: wrap;
  }
   .facilities-item {
    width: 50%;
  }
   .gallery-item,
    .gallery-item:first-child {
    width: 49%;
  }
   .counter-section {
    margin: 15px 0 26px;
   }
   .contact-phone, .contact-address-wrap {
  width: 100%;
}
.contact-info {
  flex-wrap: wrap;
}
.contact-address-wrap p {
  margin-bottom: 15px;
}
.contact-email {
  margin-top: 20px;
}
.contact-form .form-group {
  margin-bottom: 15px;
  width: 100%;
}
.contact-form .form-row {
  flex-direction: column;
  gap: 0;
}
#menu-footer-menu {
  gap: 15px;
}
#menu-footer-menu li a {
  font-size: 14px;
}
#menu-footer-menu {
  flex-wrap: wrap;
}
 .about-image::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
   .home .home-logo.navbar-brand img {
    height: 100px;
  }
  .facilities-details ul li {
    font-size: 14px;
  line-height: 22px;
  padding-left: 10px;
  }
   .footer-content .col-md-3 {
    width: 100%;
  }
   .footer-content .col-md-3:first-child, .footer-content .col-md-3:nth-child(2),
   .footer-content .col-md-3:nth-child(3) {
    margin-bottom: 20px;
  }
   .gallery .section-title {
    margin-bottom: 30px;
  }
   .gallery-image img {
    height: 300px;
  }
  .contact-form input[type="submit"] {
    height: 50px;
    font-size: 18px;
  }
   .navbar-brand img {
    height: 50px;
    width: auto;
  }
  .wedding-themes h3 {
    font-size: 18px;
  line-height: 20px;
  margin-top: 15px;
  }
  .common-btn, .appointment-btn {
    font-size: 16px;
  }
  .thumb-slider .swiper-slide img {
    height: 80px;
  }
   .sub-heading p {
    font-size: 18px;
    line-height: 25px;
  }
   .gallery-images {
    margin-bottom: 30px;
  }
    .catering-menu-item {
    padding: 15px;
    gap: 15px;
  } 
}
@media only screen and (max-width: 400px){
.hero-section h1 {
    font-size: 28px;
    line-height: 29px;
    margin-bottom: 10px;
  }
    .gallery-item img {
    height: 160px;
  }
    .service-title {
    background-size: auto 80px;
    padding-left: 140px !important;
  }
      .service-title{
        margin-bottom: 5px;
      }
      .wedding-themes .gallery-image {
  padding: 16px 10px;
  width: 100%;
}
 .thumb-slider .swiper-slide img {
    height: 60px;
  }
  .wedding-theme-details .btn-wrap {
      flex-direction: column;
  }
  .wedding-theme-details .btn-wrap .common-btn {
  width: 100%;
}
}  