/* Font */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Black.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-BlackItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-BoldItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Medium.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-MediumItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-SemiBold.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-SemiBoldItalic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
      url('../fonts/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
      url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
      url('../fonts/Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
      url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


:root {
  --white:#ffffff;
  --black:#1A1A1A;
  --grey:#888888;
  --goldcolor:#C9A84C;
  --bodycolor:#F5F2ed;
}

body{
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background:var(--bodycolor);
  overflow-x:hidden;
}

::-webkit-scrollbar {
  width:15px;
  -webkit-appearance: none;
}

::-webkit-scrollbar-thumb {
  background-color:#000000;
  border-radius: 10px;
  border:2px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

html,body{
/*  overflow-x: hidden;*/
}

body.active{
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
a {
  color: inherit;
  text-decoration: none;
}
a {
  color: #2f0802;
  font-family: 'Inter';
}
h1,
h2,
h3,
h4 {
  color:var(--black);
}
*:focus {
  outline: none;
}
button:focus {
  outline: none;
}
button {
  border: 0;
}
ul li {
  list-style: none;
  color: inherit;
  font-family: 'Inter';
}
img {
  max-width: 100%;
}
a:hover {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
}

.container_md {
  width:100%;
  max-width:1705px;
  margin:0 auto;
}

.container_sm {
  width:100%;
  max-width:1080px;
  margin:0 auto;
}


/* Navigation Css Start */

header{
  float:left;
  width:100%;
  position: relative;
  z-index:99;
  background:transparent;
  transition: all 0.5s;
  padding:25px 72px; 
}

/*header.fixed{
  background:#f7f7f7;
  position: fixed;
  top:0;
  left:0;
  z-index:99999;
  padding:25px 0;
}

header.fixed .logo a img{
  will-change: transform;
  max-width:270px;
}*/

.navigation{
  width: 100%;
}

.header_inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}

.header_rgt{
  display:flex;
  column-gap:60px;
  align-items:center;
}

.hdr_book_btn a{
  background:var(--goldcolor);  
  color:var(--black);
  font-family: 'Inter';
  font-size:13px;
  line-height:20px;
  font-weight:400;
  letter-spacing:1.3px;
  display:inline-flex;
  align-items:center;
  column-gap:23px;
  padding:10px 39px;
  position:relative;
  transition:all 0.5s;
  overflow:hidden;
  z-index:11;
}

.hdr_book_btn a:hover{
  background:rgba(201, 168, 76, 0.8);
}

.logo a img{
  transition:all 0.5s;
  display:block;
  max-width:171px;
}

.navbar .nav-list{
  display:flex;
  justify-content: flex-end;
  column-gap:28px;
}

.navbar .nav-list li{
  position:relative;
}

.navbar .nav-list li a{
  font-family: 'Inter';
  font-size:16px;
  line-height:25px;
  font-weight:400;
  color:var(--black);
  letter-spacing:0.8px;
  transition:all 0.5s;
  position:relative;
  padding:10px 0;
  margin:4px 0;
  display:inline-block;
}

.navbar .nav-list li.active a {
  color:var(--goldcolor);
}

.navbar .nav-list li:hover a{
  color:var(--goldcolor);
}

.navbar .nav-list li a span{
  font-weight:800;
  font-size: 13px;
  line-height:18px;
  margin-left: 5px;
}

.navbar .nav-list li.dropdwon {
  position: relative;
}

.submenu{
  display:none;
  position: absolute;
  width: auto;
  top: 100%;
  left: -1px;
  z-index: 1;
  text-align: left;
  background: #fff;
  padding: 10px;
}

ul.nav-list li.dropdwon:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.navbar .nav-list li.dropdown:hover .menu_dropdown{
  opacity:1;
}

.sub-menu{
  opacity:0;
  visibility:hidden;
  position:absolute;
  background: #ffffff;
  z-index:9999;
  padding:30px;
  min-width:230px;
  margin-top: 14px;
  border-radius: 10px;
}

.navbar .nav-list li.hover_dropdown.active .sub-menu{
  opacity:1;
  visibility:visible;
}

.navbar .nav-list .sub-menu li{
  margin-bottom:20px;
  padding-bottom:0;
}

.navbar .nav-list .sub-menu li:last-child{
  margin-bottom:0;
}

.navbar .sub-menu li a{
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.36px;
  color: #36333D;
  font-family: 'Inter';
  text-transform:initial;
}

.navbar .nav-list .sub-menu li a:hover{
  color:#10552b;
}

.navbar{
  display: flex;
  align-items: center;
  justify-content:center;
  column-gap: 45px;
}

/* Mobile navigation */

.mobile_btm{
  padding:30px 20px 0;
}

.web_header_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mo_menu {
  position: fixed;
  right:-100%;
  background: #fff;
  width:100%;
  height: 100vh;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index:9999;  
  visibility: visible;
}

.mo_menu.active {
  right:0;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  padding:30px 30px;
  background:#F6F6F6 ;
  position: fixed;
  overflow-y: scroll;
  opacity:1;
  display:block;
  z-index:999999;
}

.main.active{
  transform: translate(-30%, 0);
  opacity: 0.5;
}

.main{
/*  transform: translate(0%, 0);*/
transition: all 0.6s ease 0s;
}

.mo_menu .sidemenu_close{
  display:none;
}

.mo_menu.active .sidemenu_close{
  display:block;
}

.mo_menu.active .sidemenu_close span{
  background-color:transparent;
}

.mo_menu.active .sidemenu_close span:before, .mo_menu.active .sidemenu_close span:after{
  background-color:var(--black);
}

.mo_menu.active .sidemenu_close span:before{
  transform: rotate(45deg);
  top: 10px;
}

.mo_menu.active .sidemenu_close span:after{
  transform: rotate(-45deg);
  top:10px;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown {
  float: right;
  position: absolute;
  top:23px;
  right:30px;
  color:var(--black);
  cursor: pointer;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown i{
  font-size:20px;
  line-height:26px;
  font-weight:600;
  color:var(--black);
}

.sideMenu ul li.dropdown_main span.mobile_dropdown.active{
  color: #00A091;
}

.sideMenu ul li .navbar-dropdown {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:#fff;
  box-shadow:none;
  margin-top: 10px;
}

.sideMenu .nav-list .navbar-dropdown li{
  text-transform:initial;
}

.sideMenu .nav-list .navbar-dropdown li a{
  background-color:transparent;
  display:flex;
  border-bottom:0;
  font-family: 'Inter';
  font-weight: 500;
  color: #36333D;
  font-size:18px;
  line-height:24px;
  letter-spacing: 0.6px;
  text-transform:initial;
}

.sideMenu .navbar-dropdown .dropdown_icon{
  width:38px;
  height:38px;
}

.sideMenu  .dropwon_nav h6, .sideMenu  .dropwon_nav p{
  color:#fff;
}

.sideMenu  .dropwon_nav h6{
  font-size:18px;
  margin-bottom:5px;
}

.sideMenu  .dropwon_nav p{
  font-size:14px;
}

.sideMenu .mob_dropdown:after{
  content: '\f054';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right:20px;
  top:24px;
  color:#fff;
  cursor: pointer;
}

.mob_dropdown.active:after{
  transform: rotate(90deg);
}

.sideMenu .nav-list{
  padding-top:40px;
}

.sideMenu .nav-list li {
  display: block;
  position: relative;
  padding:15px 0px;
}

.sideMenu ul li .navbar-dropdown li:first-child{
  border:0;
}

.sideMenu ul li .navbar-dropdown li{
  padding:15px 30px;
  border-top: 1px solid #707070;
}

.sideMenu .nav-list li a {
  display: block;
  text-decoration: none;
  font-family: 'Inter';
  font-weight:600;
  font-size:20px;
  line-height:28px;
  letter-spacing:2px;
  color:var(--grey);
}

.sideMenu .nav-list li.nav-list a{
  color: #00A091;
}

.sideMenu ul li a span{
  cursor:pointer;
}

.menuIcon {
  display: inline-block;
  padding: 3px 12px;
  cursor: pointer;
}
.menuIcon span {
  display: block;
  width: 28px;
  height:3px;
  background:#0073FF;
  position: relative;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  width: 28px;
  height:3px;
  background:#0073FF;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 28px;
  height:3px;
  background:#0073FF;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span {
  background:transparent;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:before {
  transform: rotate(45deg);
  top: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:after {
  transform: rotate(-45deg);
  bottom: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.mo_menu.active .menuIcon.sidemenu_close{
  position: absolute;
  top: 30px;
  right: 15px;
  height: 28px;
  cursor: pointer;
}

.mo_menu.active .menuIcon.sidemenu_close{
  background-color:transparent;
}

.mo_menu.active .menuIcon.sidemenu_close i{
  font-size:32px;
  color:#Fff;
}

/* Banner Css Start */
.banner_main{
  float:left;
  width:100%;
  background:var(--black);
}

.banner_inr{
  display:flex;
}

.banner_inr_lft{
  width:50%;
  display:flex;
  align-items:center;
}

.banner_inr_rgt{
  width:50%;
}

.banner_rgt_img img{
  width:100%;
  display:block;
  height:769px;
  object-fit:cover;
}

.banner_lft_cnt{
  max-width:600px;
  margin:0 0px 10px calc((100% - 490px) * 0.5);
  display:inline-block;
  will-change: transform, opacity;
  transform-origin: left bottom !important;
}

/*@keyframes rotateInDownLeft {
  from {
    opacity: 0;
    transform: rotate3d(0, 0, 1, -45deg);
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 0deg);
    transform-origin: left bottom;
  }
}*/

.banner_lft_txt{
  padding-bottom:47px;
  border-bottom:1px solid rgba(191, 191, 191, 0.35);
}

.bnr_sm_title{
  color:var(--white);
  font-size:13px;
  margin-bottom:24px;
  position:relative;
  padding-left:50px;
}

.bnr_sm_title:before{
  content:'';
  position:absolute;
  top:7px;
  left:0;
  width:37px;
  height:1px;
  background:var(--white);
}

.banner_lft_cnt h1{
  font-family: 'Playfair Display';
  color:var(--white);
  font-size: 60px;
  font-weight:700;
  line-height: 1.2em;
  margin-bottom:23px;
}

.banner_lft_cnt h1 strong{
  font-style: italic;
  color:var(--goldcolor);
}

.banner_lft_cnt p{
  font-size: 16px;
  color:var(--white);
  line-height:1.6;
}

.enquire_btn{
  margin-top:28px;
}

.enquire_btn a{
  display:inline-block;
  background:var(--goldcolor);
  color:var(--black);
  letter-spacing:1.3px;
  font-size:14px;
  font-weight:400;
  padding:17px 40px;
  transition:all 0.6s;
}

.enquire_btn a:hover{
  background:rgba(201, 168, 76, 0.8);
}

.bnr_pt{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top:46px;
  gap: 15px;
}

.bnr_pt_itm span{
  font-family: 'Playfair Display';
  display:inline-block;
  color:var(--goldcolor);
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.bnr_pt_itm p{
  font-size:14px;
  font-weight:400;
  color:var(--bodycolor);
}
/* Marquee slider Css Start */
.marquee_slider_main{
  float: left;
  width: 100%;
  background: #0d0d0d;
  padding: 20px 0;
  border-top: 1px solid rgba(191, 191, 191, 0.35);
}

.marquee_slider_inr .slick-track{
  display:flex;
  justify-content:center;
  column-gap:50px;
}

.marquee_sld_itm{
  position:relative;
}

.marquee_sld_itm:before{
  content:'·';
  position:absolute;
  top:0;
  right:-25px;
  color:var(--white);
  font-size:14px;
  line-height: 1.2;
}

.marquee_sld_itm:last-child:before{
  content:none;
}

.marquee_sld_itm p{
  color:var(--white);
  font-size:16px;
  line-height:1.6;
}
/* Marquee slider Css End */

/* THE EXPERIENCE Section Css Start */
.the_exp_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.sm_title{
  color:var(--goldcolor);
  font-size:14px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.the_exp_inr{
  display:flex;
  align-items:center;
}

.the_exp_inr:nth-child(even){
  flex-direction:row-reverse;
}

.the_exp_inr_lft{
  width:50%;
}

.the_exp_inr_rgt{
  width:50%;
}

.the_exp_lft_img img{
  display:block;
  width:100%;
}

.the_exp_cnt{
  max-width:490px;
  margin:0 auto;
}

.the_exp_cnt h2{
  font-size:40px;
  color:var(--black);
  font-family: 'Playfair Display';
  margin-bottom:20px;
  font-weight: 700;
}

.the_exp_cnt h2 strong{
  color:var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.the_exp_cnt p{
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  color:var(--grey);
  max-width:476px;
}

.see_more_btn{
  margin-top:20px;
}

.see_more_btn a{
  display:inline-flex;
  align-items:center;
  column-gap:5px;
  color:var(--black);
  font-size:14px;
  font-weight:400;
  letter-spacing:1.6px;
  transition:all 0.5s;
  padding:10px;
  border:1px solid transparent;
}

.see_more_btn a:hover{
  color:var(--goldcolor);
  border:1px solid var(--goldcolor);
}

.see_more_btn a svg{
  width:20px;
  height:20px;
}

/* THE EXPERIENCE Section Css End */

/* Our Features Section Css Start */
.our_features{
  float:left;
  width:100%;
  background:var(--black);
  padding:70px 0;
}

.our_features_top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.our_features_tp_lft h2{
  font-family: 'Playfair Display';
  font-size:40px;
  color:var(--bodycolor);
  line-height: 1.2em;
  max-width:280px;
  font-weight: 700;
}

.our_features_tp_lft h2 strong{
  color:var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.our_features_tp_cnt{
  max-width:300px;
}

.our_features_tp_cnt p{
  color:var(--grey);
  font-size: 16px;
  line-height:1.6;
  text-align:right;
}

.our_features_row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:2px;
  margin-top:44px;
}

.our_features_rw_itm{
  background:rgba(17, 17, 17, 0.95);
  padding:15px 18px 36px;
}

.features_count{
  font-family: 'Playfair Display';
  color:var(--white);
  font-size: 35px;
  font-weight:700;
  margin-bottom:16px;
}

.our_features_rw_itm h3{
  color:var(--goldcolor);
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
  text-transform:uppercase;
}

.our_features_rw_itm p{
  color:var(--grey);
  font-size:16px;
  line-height:1.6;
}
/* Our Features Section Css Start */

.our_features .container_sm{
  perspective: 1000px; 
}

.our_features_inr{
  opacity: 0;
  transform-style: preserve-3d;
}

.our_features_inr.is-visible {
  animation: arcRevealX 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes arcRevealX {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: 0% -40%;
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: 0% -40%;
  }
}


/* THE EXPERIENCE Section Css End */

/* Home Services Section Css Start */
.hm_srvc_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.hm_srvc_title{
  margin-bottom:32px;
}

.hm_srvc_title h2{
  font-family: 'Playfair Display';
  font-size: 40px;
  line-height: 1.2em;
  color:var(--black);
  font-weight: 700;
}

.hm_srvc_title h2 strong{
  font-style: italic;
  color:var(--goldcolor);
  font-weight: 700;
}

.hm_srvc_row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
}

.hm_srvc_rw_itm{
  background:#ece7df;
  padding:23px 30px 23px;
  position:relative;
}

.hm_srvc_rw_itm:before{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:5px;
  background:var(--goldcolor);
  transition:width 0.4s ease-in;
}

.hm_srvc_rw_itm:hover:before{
  width:100%;
}

.srvc_count{
  font-family: 'Playfair Display';
  color:#cccccc;
  font-size: 35px;
  font-weight: 700;
  margin-bottom:17px;
}

.hm_srvc_rw_itm h3{
  font-family: 'Playfair Display';
  color:var(--black);
  font-size: 20px;
  margin-bottom:16px;
}

.hm_srvc_rw_itm p{
  color:var(--grey);
  font-size:16px;
  line-height:1.6;
}
/* Home Services Section Css End */

/* Packages Section Css Start */
.package_main{
  float:left;
  width:100%;
  background:var(--black);
  padding:50px 0 50px;
  border-bottom:1px solid rgba(191, 191, 191, 0.35);
}

.package_title h2{
  font-family: 'Playfair Display';
  font-size:40px;
  color:var(--bodycolor);
  line-height: 1.2em;
  max-width:305px;
  margin-bottom:10px;
  font-weight: 700;
}

.package_title h2 strong{
  color:var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.package_title p{
  font-size:16px;
  line-height:1.6;
  color:var(--grey);
  max-width:500px;
}

.package_row_title{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-top:15px;
}

.package_rw_title_lft h2{
  font-family: 'Playfair Display';
  font-size:40px;
  color:var(--bodycolor);
  line-height: 1.2em;
  margin-bottom:10px;
  font-weight: 700;
}

.package_rw_title_lft h2 strong{
  color:var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.package_rw_title_lft p{
  font-size:16px;
  line-height:1.4;
  color:var(--grey);
  font-style: italic;
}

.package_rw_title_rgt{
  max-width:320px;
}

.package_rw_title_rgt p {
  font-size:16px;
  line-height:1.4;
  color:var(--grey);
  text-align:right;
}

.package_rw_title_rgt p em{
  font-size:12px;
  line-height:1.6;
  color:var(--grey);
  text-align:right;
  font-style:normal;
}

.package_row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  margin-top:30px;
}

.package_rw_itm{
  background:#111111;
  padding:35px 22px 50px;
}

.most_popular{
  background:var(--goldcolor);
}

.package_itm_top{
  padding-bottom:17px;
  border-bottom:1px solid rgba(191, 191, 191, 0.35);
}

.package_itm_top p{
  font-size:14px;
  line-height:1.6;
  color:#ece7df;
}

.package_enqr_btn{
  margin:15px 0;
}

.package_enqr_btn a{
  font-size:14px;
  line-height:1.6;
  color:var(--black);
  text-transform:uppercase;
  background:var(--goldcolor);
  padding:11px 38px;
  letter-spacing:1.3px;
  display:inline-block;
  transition:all 0.5s;
}

.package_enqr_btn a:hover{
  background:rgba(201, 168, 76, 0.8);
}

.package_itm_cnt{
  margin-top:20px;
}

.package_itm_cnt ul li{
  font-size:16px;
  line-height:1.6;
  color:#ece7df;
  background-image:url('../img/bullet-svg.svg');
  background-repeat: no-repeat;
  margin-bottom:10px;
  background-size: 14px;
  padding-left: 28px;
  background-position-y: 3px;
}

.popular_tag{
  display:inline-block;
  background:#000000;
  color:#ece7df;
  font-size:14px;
  line-height:1.6;
  padding:5px 30px;
  margin-bottom:16px;
}

.most_popular{
  padding:26px 22px 27px;
}

.most_popular .package_itm_top p{
  color:#404040;
  font-weight:500;
}

.most_popular .package_enqr_btn a{
  background:#000000;
  color:var(--white);
}

.most_popular .package_itm_top{
  border-bottom:1px solid rgba(64, 64, 64, 0.35);
}

.most_popular .package_itm_cnt ul li{
  color:#404040;
  background-image:url('../img/blck_bullet-svg.svg');
}

.self_manage_pkg{
  float:left;
  width:100%;
  background:#111111;
  padding:50px 0;
}

.optl_ext_pkg{
  margin-top:50px;
}

.optl_ext_pkg_lft h3{
  font-size:16px;
  color:#ece7df;
  font-weight:700;
  margin-bottom:16px;
}

.optl_ext_pkg_row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  column-gap:20px;
}

.optl_ext_pkg_lft ul{
  display:flex;
  align-items:center;
  column-gap:15px;
}

.optl_ext_pkg_lft ul li{
  font-size:14px;
  color: #ece7df;
  background-image:url('../img/plus-svg.svg');
  background-repeat: no-repeat;
  margin-bottom:0;
  background-size:14px;
  background-position-y:center;
  padding-left:20px;
}

.optl_ext_pkg_rgt a{
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  text-transform: uppercase;
  background: var(--goldcolor);
  padding:14px 20px;
  letter-spacing:1px;
  display: inline-block;
  transition: all 0.5s;
}

.optl_ext_pkg_rgt a:hover{
  background:rgba(201, 168, 76, 0.8);
}
/* Packages Section Css End */

/* Owner Section Css Start */
.owner_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.owner_inr{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.owner_lft{
  width:43.1%;
}

.owner_rgt{
  width:44.8%;
}

.owner_info{
  margin-bottom:15px;
}

.owner_info h2{
  font-size: 40px;
  color: var(--black);
  font-family: 'Playfair Display';
  margin-bottom:10px;
  font-weight: 700;
}

.owner_info h2 strong{
  color: var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.owner_info p{
  font-size: 14px;
  line-height: 1.6;
  color:var(--grey);
}

.owner_cnt p{
  color: var(--grey);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom:20px;
}
/* Owner Section Css End */

/* Testimonial Section Css Start */
.testimonial_main{
  float:left;
  width:100%;
  padding:70px 0;
  border-top:1px solid rgba(191, 191, 191, 1);
}

.testimonial_main .container_sm{
  perspective: 1000px; 
}

.testimonial_inr{
  opacity:0;
  transform-style: preserve-3d;
}

.testimonial_inr.is-visible{
  animation: arcRevealX2 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes arcRevealX2 {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: 0% -40%;
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: 0% -40%;
  }
}

.testimonial_title{
  margin-bottom:30px;
}

.testimonial_title h2{
  font-size: 40px;
  color: var(--black);
  font-family: 'Playfair Display';
  margin-bottom:10px;
  font-weight: 700;
}

.testimonial_title h2 strong{
  color: var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.testimonial_row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:5px;
}

.testimonial_itm{
  background:#ece7df;
  padding:20px 20px;
}

.review_start{
  margin-bottom:20px;
}

.review_start ul{
  display:flex;
  align-items:center;
  column-gap:5px;
}

.review_start ul li img{
  max-width:15px;
}

.testimonial_cnt p{
  font-family: 'Playfair Display';
  font-size:16px;
  font-weight:400;
  font-style: italic;
  line-height:1.6;
  color:#404040;
}

.author_nm{
  margin-top:30px;
}

.author_nm p{
  font-size:14px;
  line-height:1.6;
  font-weight:400;
  color:var(--grey);
}
/* Testimonial Section Css End */

/* Get Touch Section Css Start */
.get_tch_main{
  float:left;
  width:100%;
  padding:50px 0;
  background:var(--black);
}

.get_tch_inr{
  max-width:454px;
  margin:0 auto;
  text-align:center;
}

.get_tch_inr h2{
  font-size: 40px;
  color: var(--white);
  font-family: 'Playfair Display';
  margin-bottom:20px;
  font-weight: 700;
}

.get_tch_inr h2 strong{
  color:var(--goldcolor);
  font-style:italic;
  font-weight: 700;
}

.get_tch_inr p{
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  color:var(--grey);
}

.get_tch_btn{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  column-gap:20px;
}

.get_quote{
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  text-transform: uppercase;
  background: var(--goldcolor);
  padding: 14px 38px;
  letter-spacing: 1.3px;
  display: inline-block;
  transition: all 0.5s;
}

.get_quote:hover{
  background:rgba(201, 168, 76, 0.8);
}

.get_tch_call{
  font-size: 14px;
  line-height: 1.6;
  color:#BFBFBF;
  text-transform: uppercase;
  background:transparent;
  border:1px solid #BFBFBF;
  padding:14px 25px;
  letter-spacing: 1.3px;
  display: inline-block;
  transition: all 0.5s;
}

.get_tch_call:hover{
  color:var(--goldcolor);
  border:1px solid var(--goldcolor);
}
/* Get Touch Section Css Start */

/* lets talk Section Css Start */
.lets_talk_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.lets_talk_inr{
  display:flex;
  justify-content:space-between;
}

.lets_talk_lft{
  width:45.4%;
  will-change: transform, opacity;
  transform-origin: left bottom !important;
}

.lets_talk_rgt{
  width:42.8%;
}

.lets_talk_lft h2{
  font-size: 40px;
  color: var(--black);
  font-family: 'Playfair Display';
  margin-bottom:20px;
  font-weight: 700;
}

.lets_talk_lft h2 strong{
  color:var(--goldcolor);
  font-style:italic;
  font-weight: 700;
}

.lets_talk_lft p{
  font-size:16px;
  line-height:1.6;
  font-weight:400;
  color:var(--grey);
}

.lets_talk_info{
  margin-top:30px;
}

.lets_talk_info_itm {
  margin-bottom:15px;
}

.lets_talk_info_itm:last-child{
  margin-bottom:0;
}

.lets_talk_info_itm h3{
  color:var(--goldcolor);
  font-size:14px;
  font-weight:500;
  line-height:1.4;
  margin-bottom:10px;
}

.lets_talk_info_itm a{
  display:inline-block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
}

.lets_talk_info_itm ul{
  display:flex;
  align-items:center;
  column-gap:10px;
}

.lets_talk_info_itm ul li a img{
  max-width:26px;
}

.lets_talk_frm_row{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  column-gap:20px;
}

.lets_talk_frm_grp{
  margin-bottom:20px;
  position: relative;
}

.lets_talk_frm_grp label{
  font-size:14px;
  font-weight:500;
  color:#404040;
  display:block;
  margin-bottom:10px;
}

.lets_talk_frm_grp input{
  width:100%;
  background:var(--white);
  border:1px solid rgba(64, 64, 64, 0.35);
  padding:10px 10px;
  font-size:14px;
  font-weight:500;
  color:var(--black);
  font-family: 'Inter';
}

.lets_talk_frm_grp textarea{
  width:100%;
  background:var(--white);
  border:1px solid rgba(64, 64, 64, 0.35);
  padding:10px 10px;
  font-size:16px;
  font-weight:500;
  color:var(--black);
  font-family: 'Inter';
  height:92px;
  resize:none;
}

.lets_talk_frm_grp .iti{
  width:100%;
}

.iti__search-input{
  width: 100%;
  margin: 15px auto 0;
  max-width: 93%;
}

#iti-0__dropdown-content{
  text-align:center;
}

.lets_talk_frm_grp .nice-select{
  width:100%;
  font-size:14px;
  font-weight:500;
  color:var(--black);
  background:var(--white);
  border:1px solid rgba(64, 64, 64, 0.35);
  float:initial;
  border-radius: 0;
}

.lets_talk_frm_grp .nice-select .list{
  width: 100%;
  max-height: 286px;
  overflow-y: auto;
}

.submit_btn input{
  font-family: 'Inter';
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  font-weight:500;
  text-transform: uppercase;
  background: var(--goldcolor);
  padding:12px 20px;
  letter-spacing: 1.3px;
  display: inline-block;
  transition: all 0.5s;
  border:0;
  cursor:pointer;
}

.submit_btn input:hover {
  background: rgba(201, 168, 76, 0.8);
}
/* lets talk Section Css End */

/* Footer Css Start */
footer{
  float:left;
  width:100%;
  background:var(--black);
  padding:70px 0;
}

.ftr_inr{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:50px;
}

.ftr_logo{
  margin-bottom:15px;
}

.ftr_info p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color:var(--white);
}

.ftr_itm h2{
  font-size:22px;
  color: var(--white);
  font-family: 'Playfair Display';
  margin-bottom: 20px;
}

.ftr_itm ul li{
  margin-bottom:5px;
}

.ftr_itm ul li a{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color:var(--white);
  transition:all 0.5s;
}

.ftr_itm ul li a:hover{
  color:var(--goldcolor);
}

.ftr_contact ul li{
  margin-bottom:15px;
}

.ftr_itm ul li h3{
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color:var(--goldcolor);
}

.ftr_itm ul li p{
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color:var(--white);
}

.ftr_social_itm ul{
  display: flex;
  align-items: center;
  column-gap:20px;
}

.copyright{
  float:left;
  width:100%;
  background:var(--bodycolor);
  padding:15px 0;
}

.copyright p{
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  text-align:center;
}
/* Footer Css End */

/* Inner Banner Css Start */
.inner_banner{
  float:left;
  width:100%;
  background:var(--black);
  padding:70px 0;
}

.inner_bnr_row{
  display:flex;
  column-gap:40px;
}

.inner_bnr_lft{
  width:50%;
}

.inner_bnt_lft_cnt{
  max-width:550px;
}

.inr_sm_title{
  color: var(--white);
  font-size: 13px;
  margin-bottom: 24px;
  position: relative;
  padding-left:87px;
}

.inr_sm_title:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width:74px;
  height: 1px;
  background: var(--white);
}

.inner_bnt_lft_cnt h1{
  font-family: 'Playfair Display';
  color:var(--bodycolor);
  font-size: 60px;
  font-weight:700;
  line-height: 1.2em;
  margin-bottom:23px;
}

.inner_bnt_lft_cnt h1 strong{
  font-style: italic;
  color:var(--goldcolor);
}

.inner_bnt_lft_cnt p{
  font-size: 16px;
  color:var(--bodycolor);
  line-height:1.6;
  margin-bottom:20px;
}

.inner_bnt_lft_cnt p:last-child{
  margin-bottom:0;
}
/* Inner Banner Css End */

/* Technology Page Css Start */
.counter_sec{
  float:left;
  width:100%;
  padding:70px 0;
  background:var(--black);
  border-top:1px solid rgba(191, 191, 191, 0.35);
}

.counter_sec_inr{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.counter_sec_itm{
  background:#000000;
  padding:17px 17px;
}

.counter_txt {
  font-family: 'Playfair Display';
  display: inline-block;
  color: var(--goldcolor);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.counter_sec_itm p{
  font-size: 14px;
  line-height:1.4;
  font-weight: 400;
  color: var(--bodycolor);
}

.our_techno_main{
  float:left;
  width:100%;
  margin:70px 0;
}

.our_techno_row{
  display: flex;
  align-items: center;
}

.our_techno_row:nth-child(even){
  flex-direction:row-reverse;
}

.our_techno_lft{
  width:50%;
}

.our_techno_rgt{
  width:50%;
}

.our_techno_rgt_img{
  position:relative;
}

.our_techno_rgt_img img{
  display:block;
  width:100%;
}

.our_techno_img_btn{
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.our_techno_img_btn{
  font-family: 'Inter';
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  font-weight:400;
  text-transform: uppercase;
  background: var(--goldcolor);
  padding:10px 24px;
  letter-spacing: 1.3px;
  display: inline-block;
  transition: all 0.5s;
}

.our_techno_cnt {
  max-width: 495px;
  margin: 0 auto;
}

.our_techno_cnt h2 {
  font-size: 40px;
  color: var(--black);
  font-family: 'Playfair Display';
  margin-bottom: 20px;
  font-weight: 700;
}

.our_techno_cnt h2 strong {
  color: var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.our_techno_cnt p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
  max-width: 476px;
  margin-bottom:20px;
}

.our_techno_cnt ul li {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
  background-image: url(../img/checkmark.png);
  background-repeat: no-repeat;
  margin-bottom:5px;
  background-size:18px;
  padding-left: 28px;
  background-position-y:5px;
}

.techno_partners{
  float:left;
  width:100%;
  background:var(--black);
  padding:70px 0;
}

.techno_partners .sm_title{
  text-align:center;
}

.techno_partners_inr{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  column-gap:20px;
  margin-top:50px;
}

.techno_partners_itm{
  background:var(--white);
  padding:10px;
  text-align:center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech_prsn_exp{
  float:left;
  width:100%;
  background:var(--black);
  border-top:1px solid var(--goldcolor);
  border-bottom:1px solid var(--goldcolor);
  padding:70px 0;
}

.tech_prsn_exp_cnt .sm_title{
  text-align:center;
}

.tech_prsn_exp_cnt {
  max-width:650px;
  margin:0 auto;
  text-align:center;
}

.tech_prsn_exp_cnt h2{
  font-size: 40px;
  color: var(--white);
  font-family: 'Playfair Display';
  margin-bottom: 20px;
  font-weight: 700;
}

.tech_prsn_exp_cnt h2 strong {
  color: var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.tech_prsn_exp_cnt p{
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--grey);
  max-width:445px;
  margin:0 auto;
}

.tech_prsn_btn{
  margin-top:30px;
}

.tech_prsn_btn a{
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  text-transform: uppercase;
  background: var(--goldcolor);
  padding: 14px 38px;
  letter-spacing: 1.3px;
  display: inline-block;
  transition: all 0.5s;
}

.tech_prsn_btn a:hover {
  background: rgba(201, 168, 76, 0.8);
}
/* Technology Page Css End */

/* Services Page Css Start */
.srvc_main{
  float: left;
  width: 100%;
  padding:70px 0;
  border-bottom:1px solid rgba(64, 64, 64, 0.35);
}

.srvc_row {
  display: flex;
  align-items: center;
}

.srvc_row:nth-child(even) {
  flex-direction: row-reverse;
}

.srvc_row_lft {
  width: 50%;
}

.srvc_row_rgt{
  width:50%;
}

.srvc_row_lft_img {
  position: relative;
}

.srvc_row_lft_img img {
  display: block;
  width: 100%;
}

.srvc_row_cnt {
  max-width: 495px;
  margin: 0 auto;
}

.srvc_row_cnt h2 {
  font-size: 40px;
  line-height: 1.4;
  color: var(--black);
  font-family: 'Playfair Display';
  margin-bottom: 20px;
  font-weight: 700;
}

.srvc_row_cnt h2 strong {
  color: var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.srvc_row_cnt p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
  max-width: 476px;
  margin-bottom: 20px;
}

.srvc_row_cnt ul li {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
  background-image: url(../img/checkmark.png);
  background-repeat: no-repeat;
  margin-bottom: 5px;
  background-size: 18px;
  padding-left: 28px;
  background-position-y: 5px;
}

.srvc_enqr_btn{
  margin-top:20px;
}

.srvc_enqr_btn a{
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.6px;
  transition: all 0.5s;
  padding: 10px;
  border: 1px solid transparent;
}

.srvc_enqr_btn a:hover {
  color: var(--goldcolor);
  border: 1px solid var(--goldcolor);
}

.srvc_enqr_btn a svg {
  width: 20px;
  height: 20px;
}
/* Services Page Css End */

/* Pricing Page Css Start */
.pricing_pg{
  float:left;
  width:100%;
  border-top:1px solid var(--goldcolor);
}

.setup_requirement .setup_txt{
  font-family: 'Playfair Display';
  color: var(--black);
  font-size:36px;
  margin-bottom: 16px;
  font-weight: 600;
}

.faq_main{
  float:left;
  width:100%;
  padding:70px 0;
  border-top:1px solid rgba(64, 64, 64, 0.35);
}

.faq_tp_title h2{
  font-family: 'Playfair Display';
  font-size: 40px;
  line-height: 1.2em;
  color: var(--black);
  font-weight: 700;
}

.faq_tp_title h2 strong{
  font-style: italic;
  color: var(--goldcolor);
  font-weight: 700;
}

.faq_inr{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:3px;
  margin-top:30px;
  transform-style: preserve-3d;
}

.faq_inr.is-visible {
  animation: arcRevealX3 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.faq_main .container_sm {
  perspective: 1000px;
}

@keyframes arcRevealX3 {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: 0% -10%;
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
    transform-origin: 0% -10%;
  }
}

.faq_itm{
  background:#ece7df;
  padding:20px 20px;
}

.faq_itm h3{
  font-family: 'Playfair Display';
  color: var(--black);
  font-size: 20px;
  font-weight:700;
  margin-bottom:15px;
}

.faq_itm p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.6;
}

.faq_itm p em{
  color: var(--grey);
  font-size: 12px;
  line-height: 1.6;
}

.faq_itm ol{
  padding-left:18px;
}

.faq_itm ol li {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.6;
  list-style:auto;
}

/* Pricing Page Css End */

/* Blog Page Css Start */
.blog_main{
  float:left;
  width:100%;
  background:#ece7df;
}

.blog_lst_main{
  background:var(--black);
  padding:20px 20px;
  margin:10px 0;
}

.blog_lst_main h1{
  font-family: 'Playfair Display';
  color: var(--bodycolor);
  font-size:36px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 23px;
}

.blog_lst_inr{
  margin-top:50px;
}

.blog_lst_itm{
  display:flex;
  align-items:center;
  border:1px solid rgba(64, 64, 64, 0.75);
  margin-bottom:30px;
}

.blog_lst_itm:last-child{
  margin-bottom:0;
}

.blog_lst_img{
  width:50%;
}

.blog_lst_cnt{
  width:50%;
  padding:24px 36px;
}

.blog_lst_img img{
  width:100%;
  display:block;
}

.blog_lst_txt h2{
  font-family: 'Playfair Display';
  color: var(--bodycolor);
  font-size:28px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom:15px;
  transition:all 0.5s;
}

.blog_lst_txt p{
  font-size: 16px;
  color: var(--bodycolor);
  line-height: 1.6;
}

.blog_lst_txt a:hover h2, .blog_lst_txt a:hover p{
  color:var(--goldcolor);
}

.blog_lst_profile{
  display:flex;
  column-gap:10px;
}

.blog_prfl_img{
  width:50px;
  height:50px;
  border-radius:50%;
}

.blog_prfl_img a{
  display:block;
}

.blog_prfl_txt a{
  font-size:16px;
  font-weight:500;
  color: var(--bodycolor);
  line-height: 1.6;
}
/* Blog Page Css End */

/* Blog Details Page Css Start */
.blog_dtl_main{
  float:left;
  width:100%;
  background-image:url(../img/blog_bg.png);
  background-repeat:no-repeat;
  background-attachment: fixed;
}

.blog_dtl_inr{
  background:#000000;
  padding:40px 30px;
}

.blog_dtl_cnt h1{
  font-family: 'Playfair Display';
  color: var(--white);
  font-size:40px;
  font-weight:700;
  line-height: 1.2em;
  margin-bottom:30px;
}

.blog_dtl_cnt p{
  color: var(--grey);
  font-size:18px;
  line-height: 1.6;
  margin-bottom:20px;
}

.blog_dtl_cnt p a{
  color:var(--goldcolor);
}

.blog_dtl_cnt img{
  display:block;
  margin:0 auto;
}

.blog_dtl_cnt h2{
  font-family: 'Playfair Display';
  color: var(--white);
  font-size:30px;
  margin-bottom:30px;
  font-weight: 700;
}

.blog_dtl_cnt h3{
  font-family: 'Playfair Display';
  color: var(--white);
  font-size:24px;
  margin-bottom:15px;
  font-weight: 700;
}

.blog_dtl_cnt ul{
  padding-left:20px;
  margin-bottom:20px;
}

.blog_dtl_cnt ul li{
  color: var(--grey);
  font-size:18px;
  line-height: 1.6;
  list-style:disc;
  margin-bottom:5px;
}

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

.share_article {
  border-top:1px solid rgba(64, 64, 64, 0.75);
  border-bottom:1px solid rgba(64, 64, 64, 0.75);
  padding: 20px 0;
  display: flex;
  column-gap: 15px;
  justify-content:center;
  margin-top:50px;
}

.share_article ul{
  display:flex;
  align-items:center;
  justify-content:center;
  column-gap:20px;
}

.share_article ul li img{
  max-width:30px;
  max-height:30px;
}
/* Blog Details Page Css End */

/* Contact page Css Start */
.email_enqry_btn a{
  display: inline-block;
  background: var(--goldcolor);
  color: var(--black);
  letter-spacing: 1.3px;
  font-size: 14px;
  font-weight: 400;
  padding: 17px 40px;
  transition: all 0.6s;
}

.email_enqry_btn a:hover {
  background: rgba(201, 168, 76, 0.8);
}

.contact_main{
  float:left;
  width:100%;
  margin-bottom:70px;
}

.contact_inr{
  display:flex;
}

.contact_lft{
  width:50%;
  background:var(--black);
  padding:50px 50px;
}

.contact_rgt{
  width:50%;
  padding:50px 50px;
}

.contact_cnt{
  max-width:400px;
}

.contact_rgt_cnt{
  max-width:600px;
  margin:0 auto;
}

.contact_info{
  padding-bottom:20px;
  margin-bottom:20px;
  border-bottom:1px solid rgba(191, 191, 191, 0.35);
}

.contact_info:last-child{
  padding-bottom:0;
  margin-bottom:0;
  border-bottom:0;
}

.contact_lft_top{
  margin-bottom:50px;
}

.contact_lft_top h2{
  font-size: 40px;
  color: var(--bodycolor);
  font-family: 'Playfair Display';
  margin-bottom:20px;
}

.contact_lft_top p{
  font-size: 16px;
  line-height: 1.4;
  color: var(--grey);
  text-align: left;
}

.contact_info_itm {
  margin-bottom:20px;
}

.contact_info_itm:last-child{
  margin-bottom:0;
}

.contact_info_itm h3 {
  color: var(--goldcolor);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom:10px;
}

.contact_info_itm a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
  transition:all 0.5s;
}

.contact_info_itm a:hover{
  color:var(--white);
}

.contact_info_itm p{
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--grey);
}

.contact_info_itm ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.contact_info_btn {
  margin-top:15px;
}

.contact_info_btn a{
  display:flex;
  column-gap:10px;
  text-transform:initial;
  margin-bottom:10px;
  transition:all 0.5s;
}

.contact_info_btn a:hover{
  color:var(--white);
}

.contact_info_btn a svg {
  width:26px;
  height:26px;
}

.contact_info_btn a:hover svg path{
  color:var(--white);
  fill:var(--white);
}

.contact_rgt_top h2{
  font-size: 40px;
  color: var(--black);
  font-family: 'Playfair Display';
  margin-bottom:20px;
  font-weight: 700;
}

.contact_rgt_top h2 strong {
  color: var(--goldcolor);
  font-style: italic;
  font-weight: 700;
}

.contact_rgt_top p{
  font-size: 16px;
  line-height: 1.4;
  color: var(--grey);
  text-align: left;
}

.hours_tag{
  background:rgba(201, 168, 76, 0.25);
  padding:5px 20px;
  font-size:14px;
  line-height: 1.4;
  color: var(--grey);
  margin-top:20px;
  display:inline-block;
}

.contact_rgt_form{
  margin-top:30px;
}

.lets_talk_frm_grp .nice-select .list::-webkit-scrollbar {
  width:12px;
  -webkit-appearance: none;
}

.lets_talk_frm_grp svg {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 16px;
  color:#404040;
  pointer-events: none;
  top:38px; 
  pointer-events: none;
}

.contact_rgt_form .lets_talk_frm_grp input#datepicker{
  padding-left:35px;
}

/* ----------------------------------------------------
   Custom jQuery UI Datepicker Theme Override (No !important)
---------------------------------------------------- */
#ui-datepicker-div.ui-datepicker.ui-widget-content {
  width:310px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 16px 14px;
  margin-top: 6px;
  z-index: 9999;
  display: none;
}

/* Header Container */
#ui-datepicker-div.ui-datepicker .ui-datepicker-header.ui-widget-header {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left / Right Circle Buttons Base */
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next {
  position: static;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ebebeb;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-prev:hover,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next:hover,
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev.ui-state-hover,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next.ui-state-hover {
  background: #f4f4f4;
  border-color: #e0e0e0;
}

/* Hide default sprite icons */
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev span,
#ui-datepicker-div.ui-datepicker .ui-datepicker-next span {
  display: none;
}

/* Custom Chevron Arrows */
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev::after {
  content: "\276E";
  font-size:16px;
  color:#1a1a1a;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-next::after {
  content: "\276F";
  font-size:16px;
  color:#1a1a1a;
}

/* Force Arrow Positioning via Flexbox Order */
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev {
  order: 1;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-title {
  order: 2;
  margin: 0;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-next {
  order: 3;
}

/* Month and Year Select Dropdowns */
#ui-datepicker-div.ui-datepicker select.ui-datepicker-month,
#ui-datepicker-div.ui-datepicker select.ui-datepicker-year {
  border: none;
  font-weight:500;
  font-size: 16px;
  color: #000000;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 0 14px 0 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill="none" stroke="%23333333" stroke-width="1.5" d="M1 1l4 4 4-4"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 8px 5px;
}

/* Calendar Table Grid */
#ui-datepicker-div.ui-datepicker table.ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  min-height: 250px;
}

/* Days of Week (Mon - Sun) */
#ui-datepicker-div.ui-datepicker th {
  font-size:14px;
  font-weight: 500;
  color: #595959;
  padding: 0 0 8px 0;
  text-align: center;
  border: none;
  text-transform: capitalize;
}

#ui-datepicker-div.ui-datepicker td {
  border: none;
  padding: 2px;
  text-align: center;
}

/* Day Numbers */
#ui-datepicker-div.ui-datepicker td span,
#ui-datepicker-div.ui-datepicker td a,
#ui-datepicker-div.ui-datepicker td a.ui-state-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size:14px;
  color: #000000;
  text-decoration: none;
  margin: auto;
  border: none;
  background: transparent;
  transition: background 0.15s ease;
}

/* Day Hover */
#ui-datepicker-div.ui-datepicker td a:hover,
#ui-datepicker-div.ui-datepicker td a.ui-state-hover {
  background: #f0ede7;
  color: #000000;
}

/* Active / Selected Day */
#ui-datepicker-div.ui-datepicker td.ui-datepicker-current-day a,
#ui-datepicker-div.ui-datepicker td a.ui-state-active {
  background: #ededed;
  font-weight: 600;
  color: #111111;
}

/* Other Month Filler Days */
#ui-datepicker-div.ui-datepicker .ui-priority-secondary,
#ui-datepicker-div.ui-datepicker .ui-datepicker-other-month span,
#ui-datepicker-div.ui-datepicker .ui-datepicker-other-month a,
#ui-datepicker-div.ui-datepicker .ui-datepicker-other-month a.ui-state-default {
  color: #c5c5c5;
  opacity: 1;
}

/* ----------------------------------------------------
   Nice Select Month/Year Dropdown (Screenshot Match)
---------------------------------------------------- */
#ui-datepicker-div.ui-datepicker .ui-datepicker-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:10px;
  position: relative;
}

/* Hide native select once nice-select is generated */
#ui-datepicker-div.ui-datepicker select.ui-datepicker-month,
#ui-datepicker-div.ui-datepicker select.ui-datepicker-year {
  display: none;
}

/* Trigger Button (Top Title) */
#ui-datepicker-div.ui-datepicker .nice-select {
  height: auto;
  line-height: normal;
  padding: 2px 14px 2px 0;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* Drop Arrow Indicator */
#ui-datepicker-div.ui-datepicker .nice-select::after {
  right: 2px;
  top: 50%;
  margin-top: -3px;
  width: 5px;
  height: 5px;
  border-bottom: 1.8px solid #222;
  border-right: 1.8px solid #222;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

#ui-datepicker-div.ui-datepicker .nice-select.open::after {
  transform: rotate(-135deg);
}

/* Floating List Container */
#ui-datepicker-div.ui-datepicker .nice-select .list {
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.08);
  max-height: 200px;
  overflow-y: auto;
  padding: 6px 0;
  min-width: 140px;
  margin-top: 4px;
  z-index: 10000;
}

/* Slim Light-Blue Scrollbar matching screenshot */
#ui-datepicker-div.ui-datepicker .nice-select .list::-webkit-scrollbar {
  width: 5px;
}

#ui-datepicker-div.ui-datepicker .nice-select .list::-webkit-scrollbar-track {
  background: transparent;
  margin: 6px 0;
}

#ui-datepicker-div.ui-datepicker .nice-select .list::-webkit-scrollbar-thumb {
  background: #a6c8ff;
  border-radius: 4px;
}

#ui-datepicker-div.ui-datepicker .nice-select .list {
  scrollbar-width: thin;
  scrollbar-color: #000000 transparent;
}

/* Dropdown Option Items */
#ui-datepicker-div.ui-datepicker .nice-select .option {
  padding: 8px 18px;
  font-size: 14px;
  font-weight:500;
  color: #000000;
  line-height: normal;
  min-height: auto;
  transition: background 0.12s ease;
}

/* Hover Option */
#ui-datepicker-div.ui-datepicker .nice-select .option:hover,
#ui-datepicker-div.ui-datepicker .nice-select .option.focus {
  background-color: #f3f4f6;
}

/* Selected Dark Grey Active Option */
#ui-datepicker-div.ui-datepicker .nice-select .option.selected,
#ui-datepicker-div.ui-datepicker .nice-select .option.selected.focus {
  background-color:#505050 !important;
  color: #ffffff;
  font-weight: 500;
}
/* Contact page Css End */
