   :root {
  --white-color: #fff;
  --red-color: #731817;
  --mahroon-color: #9E5023;
  --gray-light-color: #AEAEAE;
  --Extra-dark-color: #262626;
}

/* Forcer le smooth scroll via CSS */
html {
    scroll-behavior: smooth !important;
}

/* Pour les navigateurs modernes */
:root {
    scroll-behavior: smooth !important;
}

/* Animation de secours */
* {
    scroll-behavior: inherit;
}
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');


body {
  font-family: 'Plus Jakarta Sans', sans-serif!important;
}

select {
  position: relative;
}
::selection {
  background: #731817;
  color: #fff;
}

body {
  background:#FFFAF4;
font-family: 'Raleway', sans-serif!important;
}
a, a:hover, a:focus, a.active, a.active:hover {
  text-decoration: none;
  outline: none;
}

/*-------------------------------------------------------------- # 
Navigation Menu 
--------------------------------------------------------------*/
.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav  > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  margin-right: 5px;
}
.main-nav {}
.main-nav .menuitem a {
  color: #472415;
  font-size: 22px;
  font-weight: 400;
  padding: 6px 20px 6px 20px;
  display: inline-block;
}
.menuitem{
    padding-top: 7px;
    margin-left: 30px;
}
.main-nav li:not(:last-child) a {
  /* border-right: 1px solid #6e6ab1; */
}
.main-nav .menuitem a:hover, .main-nav .menuitem a.active, .main-nav .menuitem ul a.active, .main-nav .menuitem li:hover > a {
  color: var(--white-color);
  background: var(--red-color);
  border-radius: 5px;
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  margin-top: 10px;
  text-align: left;
}
.main-nav .drop-down ul:before {
  position: absolute;
  display: none;
  top: -22px;
  left: 27px;
  content: "\f0d8";
  font-family: fontawesome;
  text-align: center;
  color: var(--orange-color);
  font-size: 25px;
}
.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}
.main-nav .drop-down ul a {
  padding: 6px 20px;
  color: #472415;
  display: block;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  background-color: var(--red-color);
  color: var(--white-color);
  border-radius: 0;
}
.main-nav .drop-down > a:after {
  border: none !important;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f107" !important;
  vertical-align: 0;
  padding-left: 6px;
}
.main-nav .drop-down:hover .main-nav .drop-down > a:before {
  border: none !important;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f106" !important;
  vertical-align: 0;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
.main-nav .btncom1{margin-right: 10px;}
/* Mobile Navigation */
.mobile-nav {
  padding: 0px;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 4444;
  overflow-y: auto;
  left: -290px;
  width: 290px;
  padding-top: 0;
  background: var(--white-color);
  transition: 0.4s;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: var(--bs-black);
  padding: 10px 20px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  border-color: var(--Extra-dark-color);
}
.mobile-nav a:focus, .mobile-nav a.active, .mobile-nav .drop-down.active {
  background-color: var(--gray-dark-color);
  color: var(--red-color);
  text-decoration: none;
}
.mobile-nav .drop-down.active a {
  color: var(--red-color);
}
.mobile-nav .drop-down.active ul li a {
  color: var(--Extra-dark-color);
}
.mobile-nav .drop-down ul li a:hover {
  background-color: var(--gray-dark-color);
  color: var(--red-color);
}
.mobile-nav .drop-down > a:after {
  right: 15px;
  top: 13px;

  position: absolute;
  content: "\f067";
  border: none !important;
  font: normal normal normal 14px/1 FontAwesome;
  vertical-align: 0;
}
.mobile-nav .drop-down.active > a:after {
  content: "\f068" !important;
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down ul li {
  background-color: var(--gray-dark-color);
}
.mobile-nav .drop-down li a {
  padding-left: 20px;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 3337;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
  margin: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: var(--white-color);
}


/*-------------------------------------------------------------- 
# Header 
--------------------------------------------------------------*/
.headerNav {
  z-index: 2000;
  transition: all 0.9s;
  background-color: #fff;
   box-shadow: 0px 0px 30px rgb(91 95 106 / 38%); 
  /* display: flex; */
  align-items: center;
  text-align: center;
  padding: 10px 0 10px 0;
  position: fixed;
}
/*.navbarscroll{position: absolute;}*/
.sticky {
  position: fixed;
  top: 0;
  width: 100% !important;
  left: 0;
}
.logodiv {
  padding: 0px 0;
}
.logodiv a {
  padding: 0;
}
#logos {}
.baaricon {}
.logoicon {
  padding: 0 16px 0 30px;
}
.baaricon img {
  max-width: 30px;
}
/*
.logoicon img {
  max-width: 140px;
}
*/
.btncom1 {
  background: var(--red-color);
  color: var(--white-color);
  padding: 0px 30px !important;
  line-height: 30px;
  height: 43px;
  margin: 10px 0px;
  font-size: 20px;
  text-transform: capitalize;
  box-shadow: 0 3px 6px 0px #73181747;
  border: 1px solid var(--red-color);
}
.btncom2 {
  background: var(--white-color);
  color: var(--red-color);
  padding: 0px 30px !important;
  line-height: 30px;
  height: 43px;
  font-size: 20px;
  margin: 10px 0px;
  text-transform: capitalize;
  border: 1px solid var(--red-color);
  box-shadow: 0 3px 6px 0px #73181747;
}
.btncom1:hover {
  background: #fff;
  color: var(--red-color);
  border: 1px solid var(--red-color);
}
.btncom2:hover {
  color: var(--white-color);
  border: 1px solid var(--red-color);
  background: var(--red-color);
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: var(--white-color);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0;
  box-shadow: 0 0 20px 0 #00000036;
}

.sidenav .closebtn {
  position: absolute;
  top: 7px;
  right: 25px;
  font-size: 46px;
  margin-left: 0;
  color: #000;
}
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}



/*END*//*-------------------------------------------------------------- # **/

.carousel-img {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  padding: 0!important;
  margin: 1rem 0;
}
.casdiv .carousel-img {
  width: 50%;
}

.carousel-img-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-img-img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  max-height: 400px;
}

.boxnos .carousel-img-img {
  height: 300px;
}

.carousel-img-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-img-btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel-img-btn.prev {
  left: 10px;
}

.carousel-img-btn.next {
  right: 10px;
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
}
.herobanner {
  height: 100vh;
}

.onlyMobile {
  display: none;
}

.herobanner.onlyMobile .colored {
 
 
}

.herobanner.onlyMobile .stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.herobanner.onlyMobile .stats .stat-element {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.herobanner.onlyMobile .stats .stat-element p{
  padding: 0;
}

.herobanner .carousel-caption {
  top:50%;
  padding: 0;
  left: 50%;
  transform: translate(-50%,-50%);
}
.herobanner .carousel-item {
  height: 100vh;
}
.herobanner .carousel-item img {
  height: 100vh;
}
.herobanner .carousel-item.conciergerie {

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.herobanner .carousel-item .btn {
  font-size: 25px;
  height: 60px;
  font-weight: bold;
}
.herobanner .carousel-item .btn:hover {/* background: var(--white-color); *//* border: none; */}

.modalEstimation {
  display: none; /* cachée par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* fond sombre 80% */
  z-index:  10000000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modalEstimation.active {
  display: flex;
}

.modalEstimation .modal-content {
  background: #FFFAF4;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  overflow: scroll;
}

.modalEstimation .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.sliderpartone{
    text-align: left;
    padding: 50px 0 50px 0;
}
.sliderpartone h5{
    font-size: 60px;
    font-weight: bold;
}
.sliderpartone p{
    font-size: 30px;
    padding: 30px 160px 30px 0px;
}
.sliderparttwo{
    background: #FFFAF4;
    padding: 30px 50px;
    border-radius: 20px;
}
.sliderparttwo h3{
    color: #472415;
    font-size: 30px;
    font-weight: 500;
}
.sliderparttwo p{
    font-size: 18px;
    color: var(--bs-body-color);
}
.sliderparttwo .fromdiv{}
.sliderparttwo .fromdiv .formgruop .form-control{
    font-size: 18px;
    height: 55px;
    margin: 0 0 13px 0;
    border-color: #D2D2D2;
}
.sliderparttwo .fromdiv .formgruop .form-select{
    height: 55px;
    margin: 0 0 13px 0;
    border-color: #D2D2D2;
}
.sliderparttwo .fromdiv .formgruop .btncom1{}
.form-lung{
    border: none;
    padding: 0 0px 0 10px;
    margin: 0 20px 0 0;
    color: #472415;
    font-size: 20px;
}

.pagecontainer{background: url("../images/pagecontainerIcon.png");background-position: top right;background-repeat: no-repeat;}
.welsec{
    padding: 100px;
}

.welsec h3{
    font-size: 30px;
    font-weight: bold;
    color: var(--red-color);
    padding: 15px 0 0 0;
}
.welsec h3 img{margin-right:15px;}
.welsec .casdiv-title{
    color: var(--red-color);
    font-size: 35px;
    font-weight: bold;
}
.welsec p{
    font-size: 24px;
}
.pagehead{text-align: center;}
.pagehead h2{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    padding: 0 90px 0 90px;
    text-transform: uppercase;
    color: var(--red-color);
    text-shadow: 0px 3px 5px #8b8383cc;
}
.pagehead h2 span{background: url("/wp-content/uploads/2025/08/secheadbg.png");background-size: 90%;background-position: center center;background-repeat: no-repeat;padding: 11px 0;}
.pagehead p{font-size: 28px;font-weight: 500;padding: 0 120px;margin-bottom: 28px;margin-top: 15px;}
.keyicon{
    max-width: 57px!important;
    height: inherit !important;
}
.welimg{position: relative;}
.wlspril{
    position: absolute;
    right: -55px;
    top: -56px;
	
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 5s linear infinite;
  -moz-animation: rotating 5s linear infinite;
  -ms-animation: rotating 5s linear infinite;
  -o-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}
.vavebg{background: url("/wp-content/uploads/2025/08/wavebg.svg");background-position: center center;background-repeat: no-repeat;background-size: 100%;padding: 181px 0 100px;}
.vavebox{background: #FFFAF4;border: 4px solid #731817;border-radius: 20px;padding: 27px;min-height: 514px;box-shadow: 0 6px 11px 0 #73181773;}
.vavebox img{}
.vavebox h3{
    padding: 25px 50px 25px 0;
    font-size: 30px;
    font-weight: bold;
    color: var(--red-color);
    margin: 0;
}
.vavebox p{
    color: #9E5023;
    font-size: 18px;
    font-weight: 500;
}
.vavebg .btn{
    font-weight: 600;
    line-height: 50px;
    margin: 30px 6px;
    height: 50px;
}

.countersbox{
    text-align: center;
    padding: 30px 0 30px 0;
}
.countersbox h5{
    font-size: 64px;
    font-weight: bold;
    color: var(--mahroon-color);
}
.countersbox p{
    font-size: 30px;
    line-height: 32px;
}
.liberez-vous{
    /* box-shadow: 0 10px 10px 0 #333; */
}

.stepslider{padding: 80px 0 80px 0;background: #fff;box-shadow: 0 0px 14px 0 #89898938 inset;}

.clientslider{padding:100px 0;}
.clientslider .owl-item{}
.clientslider .owl-item div{
    text-align: center;
    padding: 0 13px;
}

.boxnos{}
.boxnos h3{
    font-size: 34px;
}
.boxnos p{
    font-size: 24px;
    font-style: italic;
    font-weight: 200;
}
.boxnos span{
    font-size: 24px;
}
.boxnos a{
    line-height: 43px;
    font-weight: 600;
}
.boxnos .imgbox{
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 #33333361;
    margin: 0 0 24px 0;
}
.boxnos .imgbox:hover{border: 5px solid #fff;}
.boxnos .imgbox img{width: 100%;}

.viewmore{    text-align: center; text-decoration: underline;
    font-size:32px;
    font-weight: bold;
    text-transform: uppercase;
    color: #472415;
    text-shadow: 0px 3px 5px #8b8383cc;}

.sec-Nos{padding-bottom: 50px;}
.textimonial{background: #FFEBCE;padding: 60px 0 28px;box-shadow: 0 0 33px 0 #7e664496;}

.textimonalbox{
    background: #fff;
    /* border: 1px solid #ddd; */
    box-shadow: 0 0 20px 0 #838383;
    border-radius: 15px;
    padding: 20px;
    min-height: 230px;
    position: relative;
    margin: 20px 15px;
}
.textimonalbox h4{
    font-size: 25px;
    font-weight: 500;
    padding: 0 0 0 50px;
}
.textimonalbox span{
    font-size: 21px;
    font-weight: 100;
}
.textimonalbox p{
    padding: 7px 0 10px 0;
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}
.textimonalbox .ratingdiv{
    color: #FFD000;
}
.textimonalbox .ratingdiv span{}
.userimg{
    position: absolute;
    left: 20px;
    top: 15px;
    border-radius: 20px;
    overflow: hidden;
    background: #ddd;
    width: 40px;
    height: 40px;
    margin: auto;
    text-align: center;
}
.userimg img{}

.textimonial .owl-item > div{
    padding: 0 10px 0 10px;
}

.textimonial .owl-buttons{
    position: absolute;
    top: 43%;
    width: 100%;
}
.textimonial .owl-buttons .owl-prev{
    position: absolute;
    left: 0;
	 background: #fff !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px 0 #333;
    font-size: 21px !important;
}
.textimonial .owl-buttons .owl-next{
    position: absolute;
    right: 0;
    background: #fff !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px 0 #333;
    font-size: 21px !important;
}

.boxContactez{
	background: url("/wp-content/uploads/2025/08/contactbg.png");
	padding: 40px 50px;
}
.boxContactez .form-group {
  display: block;
  margin-bottom: 15px;
}

.boxContactez .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.boxContactez .form-group label {
  position: relative;
  cursor: pointer;
  color: var(--red-color);;
  margin-top: 10px;
}

.boxContactez .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: #fff;
  /* border: 2px solid #0079bf; */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 15px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.boxContactez .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 12px;
  width: 6px;
  height: 14px;
  border: solid #731817;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.boxContactez .form-control{
    height: 48px;
    margin: 10px 0 10px 0;
    border: none;
    border-radius: 0;
    }
.boxContactez .btn{
    line-height: 40px;
    font-weight: 500;
}
.boxContactez h3{text-align: center;font-size: 35px;font-weight: bold;color: white;}
.boxContactez p{font-size: 15px;text-align: left;padding: 15px 0 10px 0;color: white;margin: 0;}
.boxbien{
    padding: 50px 40px 20px 40px;
   
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.boxbien .btn{
    line-height: 42px;
    font-weight: 500;
}
.boxbien h5{
    font-size: 50px;
    font-weight: bold;
    color: var(--red-color);
}
.boxbien p{
    font-size: 24px;
    color: var(--red-color);
}
.boxbien h6{
    color: var(--red-color);
    font-size: 18px;
}
.boxbien h6 img{
    margin: 0 7px 0 0px;
}
.div-rentabiliser{
    padding: 80px 0 80px 0;
}
.rentabiliserdiv{
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 20px 0 #33333373;
}

.faqsection{
    padding: 0 0 70px 0;
}
.faqsection .accordion{
    padding: 40px 0 0 0;
}
.faqsection .accordion-item{
    background: no-repeat;
    border: none;
}
.faqsection .accordion-item .accordion-body{
    color: #9E5023;
}
.faqsection .accordion-item .accordion-header{}
.faqsection .accordion-item .accordion-button{
    background: none;
    color: #472415;
    font-size: 26px;
    line-height: 35px;
    box-shadow: none;
	border-bottom: 1px solid #472415;
}


.footersection{background: url("/wp-content/uploads/2025/08/footerwavebg.png");/* background-position: center bottom; */background-repeat: no-repeat;background-size: 100%;padding: 90px 0 0 0;}
.logofooter{
    padding: 40px 0 47px 0;
}
.logofooter img{
    max-width: 270px;
}
.footerinfobox {
  text-decoration: none;
  color: var(--bs-heading-color);;
}
.footerinfobox h5{
    font-size: 16px;
}
.footerinfobox h5 img{
    max-width: 28px;
    margin-right: 10px;
}
.footerinfobox h5 a{color: #472415;}
.footerBox{}
.footerBox h3{
    font-size: 30px;
    color: #472415;
    font-weight: 600;
}
.footerBox ul{
    padding: 14px 0 20px 0;
    margin: 0;
    list-style: none;
}
.footerBox ul li{
    padding: 0 0 5px 0;
}
.footerBox ul li a{
    color: #472415;
    font-size: 20px;
}
.copyright{}
.copyright p{}
.footercopyright{
    text-align: right;
}
.footercopyright ul{list-style: none;/* display: inline-flex; */}
.footercopyright ul li{
    display: inline-block;
    padding: 0 0px 0 20px;
}
.footercopyright ul li a{
    color: #472415;
}

.colsdiv{
    padding: 30px 0 0 0;
}
.colsdiv ul{
    padding: 0 20px 0 20px;
}
.colsdiv ul li{
    list-style: none;
    padding: 5px 0 10px 0;
    line-height: 25px;
}
.colsdiv ul li a{
    color: #000;
    font-size: 18px;
}
.footermob{position:absolute;bottom: 0;width: 100%;padding: 0 16px;}
.colsdiv ul li a:hover{color: var(--red-color);}
.footermob .footerinfobox h5{ font-size: 12px; }
.footermob .footerinfobox h5 img{max-width: 24px;}
.footermob .footerinfobox h5 span{display: inline-block;width: 26px;margin: 0 4px 0 0px;}

#mySidenav .logoicon img{
    max-width: 170px;
}
.stepbox{
    text-align: center;
    position: relative;
}
.stepbox h3{
    font-size: 32px;
    font-weight: 600;
    color: var(--red-color);
}
.stepbox p{
    font-size: 22px;
}
.stepbox .btn{
    line-height: 40px;
}
.stepbox .divicon{padding: 20px 0;position: relative;}
.stepbox .divicon img{
    max-width: 130px;
    position: relative;
    z-index: 2;
}
.divicon:after{height: 1px;width: 100%;content: "";display: inline-block;background: var(--red-color);position: absolute;left: 0;top: 50%;z-index: 1;}


.stepslider .owl-buttons{
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.stepslider .owl-buttons .owl-prev{
    position: absolute;
    left: 0;
	 background: #fff !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px 0 #333;
    font-size: 21px !important;
}
.stepslider .owl-buttons .owl-next{
    position: absolute;
   right: 0;
    background: #fff !important;
    color: #333 !important;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px 0 #333;
    font-size: 21px !important;
}



/*innter*/

.boxd{
    border: 1px solid var(--red-color);
    border-radius: 15px;
    padding: 20px;
    margin: 0 0 30px 0;
    box-shadow: 0 0 20px 0 #9999999e;
}
.boxd img{
    margin: 22px 0 0 0;
}
.boxd h3{}
.boxd p{
    font-size: 20px;
}

.nsbox{
    background: #FFEBCE;
    border: 2px solid var(--red-color);
    border-radius: 20px;
    padding: 40px;
    margin: 0 0 20px 0;
    box-shadow: 0 0 20px 0 #c1989887;
    position: relative;
    z-index: 1;
}
.nsbox.onMobile {
  display: none;
}
.nsbox h3{
    color: var(--red-color);
    font-size: 23px;
    font-weight: 600;
}
.nsbox p{
    font-size: 22px;
}
.nsbox ul{}
.nsbox ul li{
    font-size: 16px;
    padding: 0 0 11px 0;
}

.newsbox{padding-bottom: 40px;}
.divsec{position: relative;z-index: 2;}
.divsec:after{content: "";background:#731817;width: 40%;height: 15px;display: inline-block;position: absolute;right: 0;bottom: 28%;z-index: 0;}
.divsec:before{content: "";background:#731817;width: 40%;height: 15px;display: inline-block;position: absolute;left: 0;top: 31%;}

.tabelediv{
    height: 77px;
}
.tabelediv1{
    height: 70px;
    background: #fff;
    /* align-items: center; */
    /* justify-content: center; */
    /* display: inline-grid; */
    width: 100%;
    text-align: left;
    border-left: 2px solid var(--red-color);
    border-top: 2px solid var(--red-color);
    /* border-radius: 10px 0px 0px 0px; */
    padding: 10px 20px 0 20px;
}
.tabelediv1 h5{
    color: #9E5023;
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.tabelediv1 h5 img{
    max-width: 40px;
    margin-right: 10px;
}
.tabelediv2{
    height: 77px;
    background: #FFEBCE;
    align-items: center;
    justify-content: center;
    display: inline-grid;
    width: 100%;
    text-align: left;
    border-left: 2px solid var(--red-color);
    border-top: 2px solid var(--red-color);
    border-radius: 10px 0px 0px 0px;
}
.tabelediv2 h4{}
.tabelediv1 h5{}
.tabelediv1 h5 img{}
.tabelediv3{
    height: 77px;
    background: #FFEBCE;
    align-items: center;
    justify-content: center;
    display: inline-grid;
    width: 100%;
    text-align: left;
    border-right: 2px solid var(--red-color);
    border-top: 2px solid var(--red-color);
    border-radius: 0px 10px 0px 0px;
    border-left: 2px solid var(--red-color);
}
.tabelediv3 h4{}
.tabelediv1 h6{}
.tabelediv1 h6 img{}

.pritable-mobile .pagehead h2 {
  font-size: 1.4rem;
  text-align: center;
  color: var(--red-color);
  margin-bottom: 10px;
}

.pritable-mobile .pagehead p {
  text-align: center;
  margin-bottom: 20px;
}

.toggle-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.toggle-btn {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--red-color);
  background: transparent;
  color: var(--red-color);
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background: var(--red-color);
    border: 2px solid var(--red-color);
  color: #fff;
}

.mobile-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-row {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2c6b8;
  border-radius: 8px;
  padding: 10px;
}

.mobile-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 5px;
}

.mobile-label .icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.mobile-value {
  font-size: 0.95rem;
  color: #5a2b2b;
}


.herod1{
    border: 2px solid;
    padding: 40px;
    min-height: 280px;	
	border-radius: 10px;
}


.herod2{
    background: #FFFAF4;
    padding: 40px;
	border-radius: 10px;
}
.herod2 h3{
    font-size: 40px;
    font-weight: 600;
    color: #472415;
}

.herod1 a, .herod2 a{
    line-height: 40px !important;
}

.herod2 p{
    font-size: 24px !important;
    line-height: 40px !important;
    color: #472415;
}


.herod3 h3{
    color: #fff;
    font-size: 48px;
    font-weight: 500;
}
.herod3 p{
    color: #fff;
    font-size: 35px !important;
    padding: 10px 140px !IMPORTANT;
    line-height: 46px !important;
    margin: 0;
}
.herod3 a {
    line-height: 40px !important;
    font-size: 25px !important;
    padding: 0px 20px !important;
}

.locdivinfo{
  margin-bottom: 2rem;
}
.locdivinfo h5{
    font-size: 26px;
    color: #472415;
    font-weight: 500;
}
.locdivinfo p{
    margin: 0;
    padding: 10px 0 0 0;
    font-size: 20px;
}
.locdivinfo ul{
    padding: 25px 0 20px 0;
    margin: 0;
    list-style: none;
}
.locdivinfo ul li{
    display: inline-block;
    width: 30%;
    padding: 10px 0 10px 0;
}
.locdivinfo a{
    font-weight: 600;
    line-height: 40px;
}
.locatdiv{
    padding: 90px 0;
}
.locationmapdiv{
    text-align: center;
    margin: 0 0 30px 0;
}
.locationmapdiv img{}
.loctiondiv{
    border: 4px solid #731817;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 11px;
    box-shadow: 0 0 20px 0 #6d525257;
}
.loctiondiv h3{
    padding: 0 20px 11px 20px;
    color: #9E5023;
    font-size: 18px;
}
.loctiondiv h3 img{
    margin: 0 10px 0 0px;
}
.loctiondiv h3 a{
    color: #9E5023;
    text-decoration: underline;
}
.ratdivition{
    padding: 30px 0 0 0;
}
.ratdivition span{
    padding: 0 1px;
}
.ratdivition .ratingdiv{}
.ratdivition span img{
    width: 17px;
}
.locdivinfo ul li img{margin-right: 6px;}
.ratingsec{
    text-align: center;
    padding: 0 0 60px 0;
}
.ratingsec p{
    font-size: 24px;
    padding: 0 0 12px 0;
    margin: 0;
}
.ratingsec h4{
    font-size: 40px;
    font-weight: 600;
    padding: 10px 0 20px 0;
    margin: 0;
}


.herod4 h3{
    color: #472415;
    font-size: 48px;
    font-weight: 500;
}
.herod4 p{
    color: #472415;
    font-size: 26px !important;
    padding: 10px 140px !IMPORTANT;
    line-height: 46px !important;
    margin: 0;
}
/* .herod4 a{
    line-height: 50px !important;
    font-size: 25px !important;
    padding: 0px 20px !important;
    height: 50px !important;
} */

.locdivinfo1{}
.locdivinfo1 h5{
    font-size: 26px;
    color: #472415;
    font-weight: 500;
}
.locdivinfo1 p{
    margin: 0;
    padding: 10px 0 0 0;
    font-size: 20px;
}
.locdivinfo1 ul{
    padding: 25px 0 20px 0;
    margin: 0;
    list-style: none;
	
}
.locdivinfo1 ul li{
    display: inline-block;
    padding: 10px 0 10px 0;
    width: 100%;
    font-size: 20px;
	color: #472415;
}
.locdivinfo1 ul li img{margin-right: 10px;}
.locdivinfo1 a{
    font-weight: 600;
    line-height: 40px;
}



.loctiondiv {
  display: block;
  margin-bottom: 15px;
}

.loctiondiv span input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.loctiondiv span label {
  position: relative;
  cursor: pointer;
  color: #333;
  margin-top: 10px;
}

.loctiondiv span label:before {
  content:'';
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #dfdfdf;
  box-shadow: 0 1px 2px rgb(87 87 87 / 5%), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.loctiondiv span input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 10px;
  width: 6px;
  height: 14px;
  border: solid #731817;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.loctiondiv .btn{
    line-height: 46px;
    height: 46px;
    margin-top: 0;
}
.loctiondiv .form-control{
    padding: 10px 12px;
    margin: 0 0 13px 0;
}
.divpric{
    border: 1px solid var(--red-color);
    border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 #333;
    color: #731817;
    padding-bottom: 27px;
}
.divpric h6{
    text-align: center;
    font-size: 26px;
    padding: 30px 0 13px 0;
    min-height: 111px;
}
.divpric p{
    padding: 0 0 0 20px;
    font-size: 18px;
    font-weight: 500;
}
.divpric ul{
    min-height: 510px;
    list-style: none;
    padding: 0 20px 0 20px;
}
.divpric .btn{
    line-height: 40px;
}
.divpric ul li{
    position: relative;
    padding: 0 0 0 37px;
    margin: 17px 0 0 0;
}
.divpric ul li img{
    width: 25px;
    position: absolute;
    left: 0;
}
.divpric .priched{
    background: var(--red-color);
    text-align: center;
    height: 135px;
    align-items: center;
    justify-content: center;
    display: inline-grid;
    width: 100%;
}
.divpric .priched h3{
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 24px;
}

.extrul{color: var(--red-color);}
.extrul {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 100px;

}
.extrul li{display: inline-block; font-size: 20px; padding: 0 0 10px 0; margin: 0;}
.extrul li a{color: var(--red-color)}


.casdiv{
    border: 2px solid var(--red-color);
    border-radius: 10px;
    background: #fff;
    padding: 40px;
}

.cascont{
    margin: 39px 0 0 0;
    font-size: 18px;
    padding: 26px 0 0 0;
}
.cascont h6{
    padding: 0 0 8px 0;
}

.casdiv h3{
    text-align: center;
}
.casdiv h4{
    font-style: italic;
    font-size: 18px;
}
.casdiv h5{
    font-size: 22px;
    color: #000;
    font-weight: 400;
    padding: 0 0 13px 0;
}
.casdiv h4 .ratingdiv{
    float: right;
    color: yellow;
}
.casdiv h5 span{
    padding: 0 30px 0 0;
}
.cascont p,.casdiv p{
    font-size: 18px;
}
.casdiv h6 img{
    margin: 0 9px 0 0;
}
.casdiv h2{ color: #9E5023; font-size: 30px;}
.casdiv a{
    line-height: 42px;
}