body {
	background: #fff;
	font-size: 1rem;
	font-family: "Montserrat", sans-serif !important;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #000000;
	letter-spacing: 0.01rem;
	line-height: 1.2;
}

.white-placeholder::placeholder {
  color: white;
  opacity: 1; /* Ensures full visibility */
}

/* For better browser support */
.white-placeholder input::placeholder,
.white-placeholder textarea::placeholder {
  color: white;
  opacity: 1;
}

.white-placeholder input:-ms-input-placeholder, /* IE 10-11 */
.white-placeholder textarea:-ms-input-placeholder {
  color: white;
}

.white-placeholder input::-ms-input-placeholder, /* Edge */
.white-placeholder textarea::-ms-input-placeholder {
  color: white;
}
.white-placeholder select option {
  background-color: #fff;
  color: #000;
  border-radius: 0 !important;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}
b, strong {
	font-weight: 700;
}
ul, li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
p {
	line-height: 1.6rem;
	font-family: "Montserrat", sans-serif !important;
	font-weight: normal;
}
.ff-montserrat{
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}
.section {
	position: relative;
	display: block;
}
.header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 1.563rem 0;
	background-color: transparent;
}

/* NAV BAR */
.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 1400px) {
.nav {
	max-width: 1320px;
}
}
.nav-left {
	display: flex;
	gap: 0px;
	flex: 1;
	justify-content: center;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 4.688rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
}
.nav ul li a {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.06rem;
	text-decoration: none !important;
	text-transform:uppercase;
	color: #ffffff;
	padding: 0.875rem 0;
	display: block;
	position: relative;
}
.nav ul li a:hover,  .nav ul li a:focus {
	color: #ffffff;
}
.nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #f6d8cd; /* change color */
  transition: width 0.3s ease;
}
.nav ul li a:hover:after,
.nav ul li a:focus:after,
.nav ul li a.active:after {
  width: 100%;
}
/* SUBMENU STYLES */
.nav ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #1e1e1e;
	min-width: 220px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 0;
}
.nav ul li .submenu li {
	padding: 0;
}
.nav ul li .submenu li a {
	display: block;
	padding: 0.625rem 1.25rem;
	white-space: nowrap;
}
.nav ul li.has-submenu:hover > .submenu {
	display: block;
}
.submenu-toggle {
	display: block; /* hidden on desktop */
	font-size: 0.75rem;
	padding-top: 4px;
	line-height: 100%;
}
/* LOGO & HAMBURGER */
.logo-left {
	display: none;
	align-items: center;
}
.logo-left img {
	height: 40px;
}
.logo-center img {
	height: 40px;
}
.hamburger {
	width: 30px;
	height: 22px;
	position: relative;
	right: 0;
	top: 0;
	cursor: pointer;
	display: none;
	z-index: 1001;
}
.hamburger span {
	background: #000;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 9px;
}
.hamburger span:nth-child(3) {
	top: 18px;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

/* MOBILE STYLES */
@media (max-width: 991px) {
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}
.logo-left {
	display: flex;
}
.logo-center {
	display: none;
}
.hamburger {
	display: block;
}
.nav {
	display: none;
	flex-direction: column;
	background: #000;
	padding: 20px;
	gap: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 1000;
}
.nav.show {
	display: flex;
}
.nav-left {
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}
.nav ul {
	flex-direction: column;
	gap: 0;
	width: 100%;
}
.nav ul li {
	width: 100%;
}
.nav ul li a {
	display: block;
	color: #fff;
	min-height: 42px;
	padding:10px 0px;
}
.nav ul li.has-submenu > a{
	padding-right: 42px;
}
/* Show submenu toggle arrow */
.submenu-toggle {
	display: flex;
	cursor: pointer;
	width: 40px;
	height: 42px;
	border-left:1px solid rgba(255, 255, 255, 0.3);	
	position: absolute;
	right: 0;
	z-index: 10;
	top: 0;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #fff;
	text-align: center;	
}
.submenu-toggle i{
	transition: transform 0.3s ease; /* smooth rotation */
	width: 24px;
	height: 20px;
	display: block;
	line-height: 100%;
}
.submenu-toggle.rotate i{
	transform: rotate(180deg);
}
.nav ul li .submenu {
	display: none;
	position: relative;
	width: 100%;
	top: 0;
	background-color: transparent;
}
.nav ul li .submenu.open {
	display: block;	
}
.nav ul li .submenu li a {
	color: #fff;
}
.nav ul li > a{
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav ul li .submenu{
	padding: 0;
	box-shadow: none;
	background-color: rgba(255,255,255,0.2);
}
.nav ul li .submenu li a {
  padding: 8px;
  white-space: nowrap;
}
}

.svg-icon{
	width: 40px;
	height: 40px;
	fill: currentColor;
}
.top-right-section{
	gap: 20px;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}
.slider-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 100;
	background-color: transparent !important;	
	transform: rotate(0deg);
	transition: transform 1s linear;
	border: none !important;
	font-size: 50px;
	color: #68653c;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
}
.slider-arrow.nav-button-prev {
	left: -50px;	
}
.slider-arrow.nav-button-next {
	right: -50px;
}
.slider-section .slider-arrow.nav-button-prev{
	left: 0;
}
.slider-section .slider-arrow.nav-button-next {
	right: 0px;
}
.slider-section .slider-arrow{
	color: #fff;
}
#slide-carousel .slider-arrow{
}
.carousal-slider-section .slider-arrow{
	background-color: transparent !important;
	height: 60px;
	width: 60px;
	border-radius: 0%;
	font-size: 50px;
	color: #000;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
  left: -60px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
  right: -60px;
}
.heading {
	position: relative;
	display: block;
}
.heading h2 {
	font-size: 2.188rem;
	color: #24261a;
	line-height: 100%;
	letter-spacing: 0.01rem;
	font-weight: 700;
}
.sub-heading {
	display: flex;
	position: relative;
	color: #68653c;
	font-size: 1.125rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	width: 100%;
	margin: 0px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif !important;
	gap: 0.875rem;
	align-items: center;
}
.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.bg-cover{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.img-cover{
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.font-size-13{
	font-size: 0.813rem;
}
.font-size-14{
	font-size: 14px !important;
}
.font-size-16{
	font-size: 16px;
}
.font-size-18{
	font-size: 18px;
}
.font-size-20{
	font-size: 20px;
}
body .custom-btn {
	border-radius: 1.125rem;
	color: #ffffff;
	background-color: #68653c;
	font-size: 1.125rem;
	letter-spacing: 0.02rem;
	padding: 0.75rem 2.25rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
body .custom-btn-arrow{
	position: relative;
	width: auto;
	height: 100%;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 0;
}
body .custom-btn-arrow svg{
	width: 15px;
	height: 15px;
}
body .custom-btn:hover {
	background-color: #24261a;
	color: #ffffff;
}
body .border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}
body .white-border {
	border-color: #fff;
	color: #fff;
}
body .black-border {
	border-color: #000;
	color: #000;
}
body .big-btn {
	padding: 1.25rem 2.75rem 1.125rem;
}
body .btn-with-arrow{
	padding: 1.25rem 2.75rem 1.125rem;
}
body .white-border:hover {
	border-color: #fff;
	color: #000;
	background-color: #fff !important;
}
body .black-border:hover {
	border-color: #000;
	color: #fff;
	background-color: #000 !important;
}
body .black-border:hover .custom-btn-arrow{
	color: #fff;
}
body .custom-btn-black{
	background-color: #000;
	color: #ffffff;
}
body .custom-btn-black:hover{
	background-color: #68653c;
	color: #ffffff;
}
body .custom-red-btn{
	background-color: #490013;	
}
body .custom-red-btn:hover,
body .custom-red-btn:focus{
	background-color: #68653c;	
}
.social-icon a {
	width: 36px;
	height: 36px;
	border: 2px solid #e63426;
	border-radius: 50%;
	display: block;
	color: #e63426;
}
.social-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}
.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}
.social-icon a:hover,
.social-icon a:focus {
	border-color: #e63426;
	background-color: #e63426;
	color: #ffffff;
}
.list-number li{
	list-style-type: decimal;
	margin-bottom: 15px;
}
.icon-btn {
	font-size: 18px;
	color: #010101;
	border: none;
	padding: 0;
	letter-spacing: 0rem;
	font-weight: 700;
}
.icon-btn i {
	margin-right: 10px;
}
.icon-btn i svg {
	width: 38px;
	height: 38px;
	color: #f6d8cd;
}
.btn-svg-icon {
}
.icon-btn span {
	font-size: 14px;
	font-weight: 400;
	color: #b9b8b8;
	display: block;
	letter-spacing: 0.01rem;
	text-transform: capitalize;
}
.icon-btn:hover {
	color: #69b42e
}
.sub-title-btn-inner.ph-number {
	font-size: 1rem;
	font-weight: 400;
}
.navigetion-section{
	background-color: #004c6a;
	width: 100%;
	display: flex;
	justify-content: center;
}
.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	background-color: rgba(0,0,0,.70);
}
.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0,0,0,.5);
	padding-top: 106px;
}
.banner-caption h1 {
	font-size: 3.125rem;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 100%;
	letter-spacing: 0.02rem;
	font-weight: 600;
}
.banner-caption h2 {
	font-size: 1.25rem;
	color: #f6d8cd;
	text-transform: uppercase;
	line-height: 120%;
	letter-spacing: 0.1rem;
	font-weight: 500;
}
.banner-caption h6 {
	font-size: 1.125rem;
	color: #ffffff;
	font-weight: 400;
	margin: 0;
	line-height: 1.8rem;
	letter-spacing: 0rem;
	font-family: "Montserrat", sans-serif !important;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}
.contact-form {
  background-color: rgba(255,255,255,1);
  padding: 30px;
  border-radius: 20px;
}
.contact-form .form-control, .contact-form .form-select {
  height: 42px;
  border: 1px solid #d4d4d4;
  background-color: transparent;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif !important;
}
.contact-form textarea {
  height: auto !important;
}
.form-title {
  font-size: 2.063rem;
  font-weight: 700;
  color: #24261a;
  margin: 0 0 0px;
  text-align: center;
  text-transform: capitalize;
}
.contact-form h6 {
  display: flex;
  position: relative;
  color: #68653c;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  width: 100%;
  margin: 0px;    
  font-weight: 600;
  font-family: "Montserrat", sans-serif !important;
  gap: 0.875rem;
  align-items: center;
}
.contact-form p{
	font-size: 16px !important;
	color: #666666 !important;
	font-weight: 400 !important;
	margin-bottom: 0;
}
.list-with-tick{
	display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.list-with-tick li{
	position: relative;
	font-size: 1.25rem;
	letter-spacing: 0rem;
	color: #68653c;
	padding-left: 35px;
	margin-top: 20px;
	display: block;
	line-height: 140%;
	font-weight: 600;
}
.list-with-tick li:before{
	position: absolute;
	left: 0;
	top: 0;	
	content: "\F270";
	width: 30px;
	min-height: 20px;
	color: #68653c;
	font-size: 26px;
	display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.list-with-tick.list-with-tick-alt li{
	font-size: 18px;
	color: #fff;
}
.list-with-tick.list-3 li {
  flex: 1 0 33.333%; 
}
.list-with-tick.list-2{
	flex-direction: row;
}
.list-with-tick.list-2 li {
  flex: 1 0 50%; 
}
.cover-bg-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay-bg {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.testimonial-box {
	display: block;
	position: relative;
	min-height: 200px;
	padding: 1rem;
	width: 100%;
	max-width: 900px;
	text-align: center;
	margin: 0 auto;
}
.testimonial-box p{
	font-size: 1.125rem;
	line-height: 1.6;
	color: #000000;
}
.testimonial-box-author h5{
	font-size: 1.563rem;
	color: #000000;
	font-weight: 600;
}
.testimonial-box-author h6{
	font-size: 1.125rem;
	color: #68653c;
	font-weight: 400;
}
.testimonial-slider .slider-arrow {
	margin-top: -4%;
}
.review-star {
	font-size: 20px;
	color: #ff8e00;
}
.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}
ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #ffffff;
	padding: 0 15px;
	font-size: 1rem;
	text-transform: capitalize;
	letter-spacing: 0.02rem;
}
ul.list-inline li:last-child{
	border-right: none !important;
}
ul.list-inline li a {
	color: #ffffff;
	text-decoration: none;
}
ul.list-inline li a:hover {
	color: #ffffff;
	text-decoration: underline;
}
.scrollup {
  width: 50px;
  height: 50px;
  opacity: 1;
  position: fixed;
  bottom: 8px;
  left: 15px;
  display: none;
  text-indent: -9999px;
  background: url(../images/icons/circle-arrow.svg) no-repeat;
  z-index: 5;
  background-size: 100% auto;
}
.text {
  display: inline;
  position: relative;
}
.show-toggle {
  color: #e42032;
  cursor: pointer;
  font-weight: 500;
}
.show-toggle:hover {
  text-decoration: underline;
}

.footer {
  display: block;
  position: relative;
  padding-top: 80px;
  padding-bottom: 20px;
  background-color: #68653c;
	background-image: url('../images/test-bg.png');
	background-position: top left;
	background-repeat: repeat;
}
.footer-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 30px;
  text-transform: capitalize;
  letter-spacing: 0rem;
  font-family: "Montserrat", sans-serif !important;
}
.footer-menu-box ul li {
  float: left;
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.75rem;
  width: 100%;
  letter-spacing: 0rem;
}
.footer-menu-box ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}
.footer-menu-box ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-menu-box ul.list-50 li {
  width: 50%;
}
.footer-social {
  display: block;
  margin: 0;
}
.footer .social-icon a{
	width: 34px;
	height: 34px;
	border: none !important;
	background-color: #f6d8cd;
}
.footer-social .social-icon {
}
.footer-social .social-icon svg{
	width: 1.125rem;
	height: 1.125rem;
	color: #000000;
}
.footer-social .social-icon a.facebook svg {	
}
.footer-social {	
}
.footer-social .social-icon a{
	color: #000;
}
.footer-social .social-icon a:hover{
	background-color: #fff;
	border-color: #fff;
}
.footer .content-icon-btn .icon-btn {
	color: #000000;
	font-size: 16px;
	font-weight: 400;
}
.footer .content-icon-btn .icon-btn span {
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.0rem;
}
.footer .content-icon-btn .icon-btn i svg {
	width: 30px;
	height: 30px;
}
.footer .content-icon-btn .icon-btn i {
	margin-right: 1rem;
}
.footer-bottom-container {
  display: block;
  padding-top: 1.25rem;
  border-top: 1px solid #f6d8cd;
  margin-top: 1.25rem;
}
.medium-heading{
	font-size: 1.875rem;
	font-weight: 700;
	color: #1e1e1e;
	margin: 0;
}
.logo figure{
	margin: 0;
}
.logo img{
	height: auto !important;
}
.similar-pages-section ul,
.similar-pages-section ol {
	padding: 0;
	margin: 0 0 0 15px;
}
.similar-pages-section ul li {
	list-style: disc;
	margin-bottom: 10px;
	line-height: 1.5rem;
}
.similar-pages-section ol li {
	list-style: decimal;
	margin-bottom: 10px;
	line-height: 1.5rem;
}







.availability-box {
	background: #efebe3;
	border-radius: 0.5rem;
	padding: 1.375rem 2rem;
	display: flex;
	align-items: center;
	width: 100%;
}
.search-item {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0 2rem;	
	flex: 1;
	cursor: pointer;
}
.search-item:not(:last-child) {
	border-right: 1px solid #c7c1b7;
}
.search-item:first-child {
	padding-left: 0;
}
.search-icon {
	color: #68653c;
	line-height: 1;
}
.search-icon svg{
	width: 30px;
	height: 30px;
}
.search-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #68653c;
	margin-bottom: 0;
}
.search-value {
	font-size: 0.938rem;
	color: #484848;
	font-weight: 500;
	background-image: none;
}
.search-btn {
	background: #1f2116;
	color: #fff;
	border: 0;
	border-radius: 0.5rem;
	padding: 0.938rem 2.125rem;
	font-size: 1.125rem;
	font-weight: 600;
	white-space: nowrap;
}
.search-btn:hover {
	background: #343625;
	color: #fff;
}
.hidden-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
 @media (max-width: 991px) {
.availability-box {
	flex-direction: column;
	gap: 18px;
	padding: 22px;
}
.search-item {
	width: 100%;
	border-right: 0;
	border-bottom: 1px solid #c7c1b7;
	padding: 0 0 16px;
}
.search-btn {
	width: 100%;
}
}


.availability-main-wrapper-section{
	margin-top: -50px;
}
.bg-offwhite{
	background-color: #efebe3;
}
.bg-dark-grey{
	background-color: #24261a;
}

.service-wrapper{
	display: flex;
	flex-direction: column;
	border-radius: 0.625rem;
	background-color: #ffffff;
	overflow: hidden;
	margin: 0.938rem 0.938rem 1.25rem 0.938rem;
}
.service-image{
	display: block;
	position: relative;
	height: 350px;
	overflow: hidden;
}
.service-image img{
	transition: all 0.4s ease-in-out;
  transform: scale(1);
}
.service-content{
	display: flex;
	flex-direction: column;
	padding: 2rem 1.375rem 2rem;
	position: relative;
}
.service-content h4{
	font-size: 1.25rem;
	color: #101010;
	font-weight: 600;	
	margin-bottom: 1.25rem;
	min-height: 24px;
}
.service-content p{
	font-size: 0.938rem;
	color: #5a5a5a;
	line-height: 1.4;
}
.service-box-icon{
	position: absolute;
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #23411f;
	border: 2px solid #ffffff;
	border-radius: 0.5rem;
	top: -1.75rem;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.service-box-icon svg{
	color: #b18d2c;
	width: 1.75rem;
	height: 1.75rem;
}
.service-wrapper:hover .service-image img{
	transform: scale(1.1);
}

.small-icon-with-text {
	color: #525252;
	font-weight: 500;
	font-size: 0.875rem;
}
.small-icon-with-text i svg {
	width: 22px;
	height: 22px;
	color: #68653c;
}
.car-small-featured{
	font-size: 0.875rem;
	font-weight: 500;
	color: #525252;
}
.hotel-price-box {
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 1;
	background-color: rgba(0,0,0,0.7);
	border-radius: 6px;
	padding: 1rem;
	font-size: 1.063rem;
	color: #fff;
	font-weight: 500;
	line-height: 100%;
}
.text-pink{
	color: #f6d8cd;
}
.why-us-section{
	background-image: url('../images/test-bg.png');
	background-repeat: repeat;
}


.featured-box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 92px;
	height: 92px;
	background-color: transparent;
	color: #f6d8cd;
	border: 1px solid #f6d8cd;
}
.featured-box-icon svg{
	width: 55px;
	height: 55px;
	color: #f6d8cd;
}
.featured-box-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  position: relative;
  border-right: 1px solid #ffffff85;
}
.featured-box-title {
  font-size: 1.375rem;
	font-weight: 600;
	color: #2d2d2d;
	font-weight: 600;
}
.featured-box-wrapper p{
	font-size: 1rem;
	line-height: 1.4rem;
	color: #414141;
}
.featured-box:last-child .featured-box-wrapper {
  border-right: none;
}
.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.images-box-warrper-cover {
  overflow: hidden;
  width: 100%;
}

.footer-menu-box ul.list-50 li {
	width:33.333333%;
}


.accordion__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.accordion__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #242e4c;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-accordion { 
  margin-bottom: 1rem;
  border: 1px solid #68653c;
  border-radius: 1.25rem;
  overflow: hidden;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1.25rem 1.875rem;
}
.accordion__icon {
  background-color: #68653c;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1rem;
}
.accordion__question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #010101;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif !important;
}
.accordion__answer {
  padding: 0rem 1.875rem 1.25rem;
  margin-bottom: 0;
}
.accordion__content {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease-in-out;

}
 @media screen and (max-width: 580px) {
.accordion__wrapper {
  padding: 0rem 0rem;
}
.accordion__icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.2rem;
}
}

.contact-details-form-wrapper .contact-form{
	padding: 3.125rem;
	background-color: transparent !important;
}
.contact-details-form-wrapper  .contact-form .form-control, .contact-details-form-wrapper  .contact-form .form-select{
	height: 57px;
	padding: 1.125rem 1.625rem;
	font-size: 0.938rem;
	border-color: #91928c;
	border-radius: 0.625rem;
	color: #000;
	font-weight: 500;
}
.contact-details-form-wrapper  .contact-form textarea.form-control{
	height: 156px !important;
}

.frosted-glass-wrapper{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(10px);
  z-index: 5;
  margin: 1rem 1rem 1rem;
  display: block;
  color: #fff;
  padding: 2rem;  
}
.contact-form .form-label{
	font-size: 0.938rem;
	color: #68653c;
	font-weight: 500;
}

.uplisting-properties-list{
	background-color: transparent !important;
}
.hero-section.inner-hero-section{
	overflow: hidden;
	max-height: 450px;
}