h1,
h2,
h3,
h4,
h5,
h6 {
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
}

body {
  overflow-x: hidden !important;
}

/* Offset anchor scrolling so sections aren't hidden behind the fixed header */
html {
  scroll-padding-top: 120px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 90px;
  }
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: linear-gradient(250deg, transparent, rgba(0, 0, 0, 0.973));
}

header.scrolled {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(transparent),
    to(rgba(0, 0, 0, 0.822))
  );
  background: -o-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.966));
  background: linear-gradient(250deg, transparent, rgba(0, 0, 0, 0.973));
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 3rem;
  /* background: var(--light); */
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 30px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 70px;
  max-width: 100%;
  position: relative;
}

.logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  /* width: 170px; */
  max-width: 100%;
  position: relative;
}

.scrolled .logo-img-1 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 50px;
}

.scrolled .logo-img-2 {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 150px;
}

.logo img {
  width: 80%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 3rem;
}

.navLinks .navLink {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--primary-pink);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.flow {
  width: 70px;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line {
  width: 100%;
  height: 2px;
  margin: 2rem auto;
  background-color: rgba(188, 32, 49, 0.25);
}

.btnPrimary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  background: transparent;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.btnPrimary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background: url("../assets/images/icons/btn-primary.png") no-repeat center
    center/contain;
}

.btnPrimary.custom-size {
  font-size: 0.8rem;
}

.btnPrimary.light {
  color: var(--primary);
}

.btnPrimary.light::after {
  background: url("../assets/images/icons/btn-light.png") no-repeat center
    center/contain;
}

.offcanvas {
  background: url(../assets/images/overlay/main-overlay.jpg) no-repeat center
    center/cover;
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  background-color: #000;
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  filter: invert(1);
}

.offcanvas-close i {
  font-size: 2.5rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-links .line {
  margin: auto auto;
}

.offcanvas-link {
  display: block;
  font-size: 3vw;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  width: 100%;
  color: rgb(255, 255, 255);
}

.offcanvas-logo .logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  /* width: 120px; */
  max-width: 100%;
}

@media only screen and (max-width: 1700px) {
  .navbar-container {
    padding: 1rem 5rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 2rem;
  }
}

@media only screen and (max-width: 1400px) {
  .navbar-container {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    padding: 0.3rem 2rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1.5rem;
  }

  .logo {
    gap: 0.65rem;
  }

  .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 60px;
  }

  .logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 244px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }

  .element {
    display: none;
  }

  .element1 {
    display: none;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }
}

@media only screen and (max-width: 576px) {
  .navbar-container {
    padding: 0.5rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .inner-banner {
    /* margin-top: 9rem !important; */
  }

  .element {
    right: 17px;
    left: unset;
    top: 1%;
    display: unset;
  }

  .element1 {
    left: 0;
    top: -4%;
    display: unset;
  }

  .element img {
    width: 85px;
  }

  .element1 img {
    width: 85px;
  }

  .logo-img-1 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 55px;
  }

  .logo-img-2 {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    /* width: 150px; */
    max-width: 100%;
  }
}

.firt-wrapper {
  margin: 0px 0px;
  padding: 125px 0px 0;
}

.firt-wrapper img {
  width: 100%;
}

.arrow {
  width: 40px !important;
}

.firt-wrapper-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.firt-wrapper-content h2 {
  margin: 0px;
  padding: 0px 0px;
  font-size: 45px;
  line-height: 54px;
}

.firt-wrapper-content h2 span {
  color: #c9a485;
}

.divider {
  padding: 0px;
  margin: 125px 0px 0;
  background: #ddd;
  height: 1px;
  width: 100%;
}

.second-wrapper {
  margin: 0px 0px;
  padding: 40px 0px 0px;
}

.second-wrapper h2 {
  /* margin: 0px 15px 33px 15px; */
  padding: 0px 0px;
  font-size: 45px;

  line-height: 54px;
  text-align: center;
}

.br-badge-logo-wrap img {
  /* background: #fff; */
  width: 200px;
  filter: invert(1);
}

.second-wrapper h2 span {
  color: #c9a485;
}

.building-wrapper img {
  width: 100%;
}

.building-wrapper {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 5px;
  /* border: 1px solid; */
  border-radius: 10px;
  margin: 15px;
  box-shadow:
    rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.building-wrapper h3 {
  /* margin: 30px 0px 30px 0px; */
  margin: 10px auto;

  padding: 0px 0px;
  font-size: 25px;
  line-height: 34px;
  font-weight: bold;
}

.building-wrapper p {
  margin: 0px;
  padding: 0px 0px 10px 0px;
  font-size: 16px;
  line-height: 23px;
  color: #646464;

  /* min-height: 70px; */
  text-align: left;
}

.building-wrapper .price-section {
  width: 35%;
  min-width: 180px;

  color: #c9a485;
  letter-spacing: 1px;
  padding-right: 5%;
  font-weight: 600;
  font-size: 20px;
}

.building-wrapper .arrow-btn {
  width: auto;
  /* min-width: 220px; */
  background: #fffdfd;
  color: black;
  border: 1px solid black;
  border-radius: 45px;
}

.building-wrapper .price-section span {
  margin: 0px;
  padding: 0px 0px;
  color: #646464;
  text-transform: uppercase;
  font-size: 14px;

  font-weight: 400;
}

/* .second-wrapper .col-lg-6 {
  margin-bottom: 240px;
} */

section.parallax-effect-wrapper {
  margin: 0px;
  padding: 20px 0px;
  background: #ffffff 0% 0% no-repeat padding-box;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.22);
}

section.parallax-effect-wrapper ul {
  margin: 0px 0px;
  padding: 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.parallax-effect-wrapper ul li {
  margin: 0px 0px;
  padding: 0px 0px;
  text-align: center;
  position: relative;
}

section.parallax-effect-wrapper ul li a {
  margin: 0;
  padding: 0;
  color: #878282;

  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
}

section.parallax-effect-wrapper ul li a:hover {
  color: #000;
}

section.parallax-effect-wrapper ul li:hover::after {
  content: "";
  position: absolute;
  background: #c9a485;
  height: 3px;
  width: 100%;
  bottom: -7px;
  left: 0;
  right: 0;
}

section.parallax-effect-wrapper.stickey {
  display: none;
}

.why-invest-sobha-dubai-wrapper.new-consol h2 {
  margin: 0px 0px 24px 0px;
  padding: 0px;
  font-size: 45px;
  text-transform: uppercase;
  text-align: start;
}

.why-invest-sobha-dubai-wrapper.new-consol h2 span {
  color: #c9a485;
}

.console-landing-banner-content {
  position: absolute !important;
  bottom: inherit;
  left: 50%;
  right: auto;
  width: 100% !important;
  padding: 0 !important;
  transform: translate(-50%, -50%);
  top: 50%;
  text-align: center;
}

.console-landing-banner-content h1 {
  margin: 0px;
  padding: 0px 0px 25px 0px;
  color: #ffffff;
  font-size: 45px;
  text-transform: uppercase;

  font-weight: 300;
}

.console-landing-banner-content h1 span {
  margin: 0px;
  padding: 0px;
  display: block;
  color: #c9a485;

  font-weight: 300;
}

.console-landing-banner-content .arrow-btn:before {
  background: #fff;
}

.console-landing-banner-content .arrow-btn span {
  color: #000;
}

.console-landing-banner-content .arrow-btn line,
.console-landing-banner-content .arrow-btn path {
  stroke: #000000;
}

.console-landing-banner-content .arrow-btn span:before {
  background-color: #000 !important;
  display: none !important;
}

.console-landing-banner-content .arrow-btn:hover span {
  color: #fff;
}

.console-landing-banner-content .arrow-btn:hover line,
.console-landing-banner-content .arrow-btn:hover path {
  stroke: #fff;
}

.console-landing-banner-content .arrow-btn:hover span:before {
  background-color: #fff !important;
}

.arrow-btn:hover span {
  color: #000;
}

.scroll-top-btn {
  display: none;
}

@media (max-width: 1300px) {
  .building-wrapper .price-section {
    font-size: 17px;
  }
}

@media (min-width: 1000px) {
  .mobile-spacer {
    display: inline-block !important;
  }

  .desktop-spacer {
    display: block !important;
  }
}

@media (max-width: 1000px) {
  .mobile-spacer {
    display: block !important;
  }

  .desktop-spacer {
    display: inline-block !important;
  }
}

@media (max-width: 1600px) {
  .building-wrapper .arrow-btn {
    font-size: 12px;
  }

  section.parallax-effect-wrapper ul li a {
    font-size: 12px;
  }
}

@media (max-width: 1280px) {
  .console-landing-banner-content {
    bottom: 85px !important;
  }

  .building-wrapper p {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .firt-wrapper-content h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .second-wrapper h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .why-invest-sobha-dubai-wrapper.new-consol h2 {
    font-size: 35px;
    line-height: 45px;
  }

  section.parallax-effect-wrapper {
    display: none;
  }

  .building-wrapper p {
    min-height: 0px;
    text-align: start;
  }
}

@media (max-width: 1024px) {
  .building-wrapper .arrow-btn {
    font-size: 8px;
  }

  .building-wrapper .price-section {
    font-size: 17px;
  }

  .why-invest-sobha-dubai-wrapper i {
    margin-right: 25px;
  }
}

@media (max-width: 991px) {
  body .footer-form-area .section-title.form-trigger {
    font-weight: 600 !important;
  }

  .modal-header {
    padding: 8px 15px !important;
  }

  .bottom-footer {
    padding-bottom: 29px !important;
  }

  .building-wrapper .price-section {
    width: 100%;
  }

  .building-wrapper .arrow-btn {
    font-size: 12px;
  }

  .firt-wrapper-content h2 {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 80px;
  }

  .second-wrapper h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .why-invest-sobha-dubai-wrapper.new-consol h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .firt-wrapper .col-lg-6.firt-wrapper-content {
    order: 1 !important;
  }

  .firt-wrapper .col-lg-6 {
    order: 2;
  }

  .firt-wrapper {
    margin: 0px 0px;
    padding: 80px 0px 0;
  }

  .divider {
    margin: 80px 0px 0px;
  }

  .second-wrapper {
    padding: 80px 0px 0px;
  }

  .building-wrapper .arrow-btn {
    width: auto;
    text-align: center;
  }

  .price-section {
    margin-bottom: 25px;
  }

  .second-wrapper .col-lg-6 {
    /* margin-bottom: 100px; */
  }

  .console-landing-banner-content h1 {
    font-size: 36px;
    font-size: 41px;
  }

  .building-wrapper h3 {
    margin: 20px 0px 10px 0px;
  }

  /* .why-invest-sobha-dubai-wrapper.new-consol h2 span{
	color: #212529;
} */
  section.why-invest-sobha-dubai-wrapper.new-consol .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .invest-div {
    width: 100%;
    margin-top: 15px;
  }

  .footer-form-area .footer-form-row .col-lg-12 {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: start !important;
  }

  .why-invest-sobha-dubai-wrapper i {
    margin-right: 25px;
    width: auto;
  }

  .footer-enquiry-form .form-control {
    height: 55px;
  }
}

.submit-bg,
.career-form .form-col .submit-bg {
  max-width: 430px !important;
}

.menu-row.new-header ul {
  display: none !important;
}

header.sticky {
  position: inherit !important;
}

.mh-btns-left {
  display: none !important;
}

.sticky + .mmenu-page .mobile-header .mh-sticky.mh-pinned {
  position: inherit;
}

.why-invest-sobha-dubai-wrapper p {
  text-align: start;
  font-size: 17px;
  line-height: 23px;
  padding: 0 0%;
  margin-bottom: 45px;
  width: 50%;
}

.explore-more-options-button {
  margin: 0 auto 60px auto;
  text-align: center;
}

.invest-div p {
  text-align: left;
  padding: 0px;
  margin: 0px;
}

.dubai-realestate-booming {
  margin: 0px;
  padding: 120px 0px 80px 0;
  background: #f5f5f5;
}

.dubai-realestate-booming h2 {
  margin: 0px 0px 80px 0px;
  padding: 0px;
  font-size: 45px;
  text-transform: uppercase;
  text-align: center;
}

.dubai-realestate-booming h2 span {
  color: #c9a485;
  display: block;
}

.dubai-realestate-booming .row .col-lg-4 {
  display: flex;
  margin-bottom: 50px;
  align-items: start;
}

.dubai-realestate-booming .row .col-lg-4 i {
  width: 50px;
  flex: 0 0 50px;
  filter: brightness(0) saturate(100%) invert(74%) sepia(9%) saturate(1168%)
    hue-rotate(346deg) brightness(91%) contrast(87%);
}

.booming-div p {
  font-size: 15px;
  line-height: 19px;
  margin: 0;
  padding: 0px 50px 0px 20px;
}

.owl-carousel.owl-theme.consolidated-project-slider.owl-loaded.owl-drag {
  position: relative;
}

/*
.consolidated-project-slider .owl-item{
	transform: scale(1);
	opacity: .6;
}
.consolidated-project-slider .owl-item.center{
	transform: scale(1.1);
	position: relative;
	z-index: 100;
	opacity: 1;
}
.consolidated-project-slider .owl-item .item img{
	border-radius: 8px;
	box-shadow: 36px 0px 57px -44px rgba(0,0,0,0.8);
}
.consolidated-project-slider.owl-carousel .owl-stage-outer{
	padding: 20px 0px;
}
*/

.consolidated-project-slider .owl-item {
  transform: scale(1.2);
  opacity: 0.6;
}

.consolidated-project-slider .owl-item.center {
  transform: scale(1.6);
  position: relative;
  z-index: 100;
  opacity: 1;
}

.consolidated-project-slider .owl-item img {
  border-radius: 4px;
}

.consolidated-project-slider .owl-item.active .item img {
  border-radius: 4px;
  box-shadow: 36px 0px 44px -44px rgba(0, 0, 0, 0.8);
}

.consolidated-project-slider.owl-carousel .owl-stage-outer {
  padding: 25% 0px;
}

.consolidated-project-slider .owl-nav {
  /* margin: auto; */
  /* text-align: center; */
  top: 42%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  display: none;
}

.consolidated-project-slider .owl-nav .owl-prev {
  position: absolute;
  left: -13px;
}

.consolidated-project-slider .owl-nav .owl-next {
  position: absolute;
  right: -13px;
}

.consolidated-project-slider .owl-dots {
  display: none;
}

.pnc-menon-wrapper {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.pnc-menon-wrapper img {
  width: 100%;
}

.pnc-menon-content {
  margin: 0px;
  padding: 0px 0px;
  position: absolute;
}

.pnc-menon-content {
  max-width: 520px;
  position: absolute;
  left: 10%;
}

.pnc-menon-wrapper h2 {
  margin: 0px 0px 30px 0px;
  padding: 0px 0px;

  font-size: 43px;
  line-height: 48px;
  color: #fff;
}

.pnc-menon-wrapper h2 span {
  margin: 0px;
  padding: 0px 0px;

  font-size: 43px;
  color: #fff;
  display: block;
}

.pnc-menon-wrapper p {
  margin: 0px 0px 20px 0px;
  font-size: 16px;
  line-height: 26px;
  color: #ababab;
}

.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

@media (max-width: 991px) {
  .dubai-realestate-booming .row .col-lg-4 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }

  .pnc-menon-content {
    max-width: 100%;
    position: absolute;
    left: auto;
    padding: 30px 30px 30px 30px;
    text-align: center;
  }

  .pnc-menon-wrapper {
    align-items: start;
  }

  .pnc-menon-wrapper h2 {
    margin: 0px 0px 30px 0px;
    padding: 0px 0px;

    font-size: 35px;
    line-height: 44px;
    color: #fff;
  }

  .pnc-menon-wrapper p {
    margin: 0px 0px 20px 0px;
    font-size: 14px;
    line-height: 22px;
    color: #ababab;
  }

  .dubai-realestate-booming h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .booming-div p {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    padding: 0px 10px 0px 0px;
    text-align: center;
  }

  .why-invest-sobha-dubai-wrapper p {
    padding: 0;
  }
}

.console-landing-banner-content .arrow-btn {
  position: inherit;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 15px 60px;
  transition: 0.1s ease;
  background: #fff;
}

.console-landing-banner-content .arrow-btn span {
  position: inherit;
  color: #000;
  font-size: 14px;
}

.console-landing-banner-content .arrow-btn span i {
  display: none;
}

.console-landing-banner-content .arrow-btn::before {
  display: none !important;
}

.console-landing-banner-content .arrow-btn:hover span:before {
  display: none;
}

.console-landing-banner-content .arrow-btn:hover {
  background: url(../images/arrow-bullet.png) no-repeat 88% 52%;
  transition: 0.1s ease;
}

.console-landing-banner-content .arrow-btn:hover span {
  color: #fff;
}

/* .building-wrapper .arrow-btn {
  position: inherit;
  border: 1px solid #000;
  border-radius: 25px;
  padding: 15px 40px;
  width: auto;
  margin: auto;
  background: none;
  transition: 0.1s ease;
  width: 230px;
  background: #000;
} */
.building-wrapper .price-section {
  width: 50%;
}

.building-wrapper .arrow-btn span {
  position: inherit;
  color: #000000;

  transition: 0.5s ease;
  font-size: 12px;
}

.building-wrapper .arrow-btn:hover span {
  margin: 0px 0px 0px -8px;
  transition: 0.5s ease;
}

.building-wrapper .arrow-btn span i {
  display: none;
}

.building-wrapper .arrow-btn span::before {
  display: none;
}

/* .building-wrapper .arrow-btn:hover {
  background: url(../images/arrow-bullet.png) no-repeat 88% 52%;
  transition: 0.1s ease;
} */

.finance {
  font-size: 14px !important;
  font-weight: bold !important;
}

.building-wrapper .arrow-btn:hover span {
  color: #000;
}

.footer-form-row .submit-bg {
  position: inherit;
  border: 1px solid #000;
  /* border-radius: 25px; */
  padding: 12px 60px !important;
  width: auto;
  background: none !important;
  transition: 0.1s ease;
  color: #000;
  height: auto;
  font-size: 14px;
  letter-spacing: 2;
}

.footer-form-row .submit-bg:hover {
  background: url(../images/arrow-bullet.png) no-repeat 76% 52% !important;
  transition: 0.1s ease;
}

.call-cta {
  position: fixed;
  bottom: 5%;
  right: 10px;
  color: #fff;
  background: #000;
  padding: 13px 23px;
  font-size: 19px;
  border-radius: 45px;
  z-index: 11;
  /* transform: rotate(270deg); */
  cursor: pointer;
  text-decoration: none !important;
}

.footer-enquiry-form .submit-bg {
  position: inherit;
  border: 1px solid #000;
  /* border-radius: 25px; */
  padding: 12px 60px !important;
  width: auto;
  background: none !important;
  transition: 0.1s ease;
  color: #000;
  height: auto;
  font-size: 14px;
  letter-spacing: 2;
  border-radius: 45px;
}

.footer-enquiry-form .submit-bg:hover {
  background: url(../images/arrow-bullet.png) no-repeat 76% 52% !important;
  transition: 0.1s ease;
}

.dubai-realestate-booming .arrow-btn {
  position: inherit;
  border: 1px solid #000;
  border-radius: 25px;
  padding: 15px 40px;
  width: auto;
  background: none;
  transition: 0.1s ease;
  width: auto;
  background: #000;
  font-size: 14px;
  margin: auto;
  display: table;
}

.google-review .rating-main-sec {
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  padding: 0 10px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0 !important;
}

.google-review {
  display: flex;
  justify-content: center;
  margin: 30px;
}

.google-review .g-review-logo img {
  max-width: 300px;
  height: auto;
  margin-left: -6px;
}

.google-review .sobha-title {
  color: #8e8e8e;
  font-size: 17px;
  line-height: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  /* margin-top: -18px; */
  padding: 0 10px;
}

.google-review .g-star {
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-review .rating-count {
  color: #a8a8a8;
  font-size: 12px;
  font-weight: 300;
  margin-top: 4px;
  display: block;
}

.google-review .rating-value {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.length {
  margin-top: 65px !important;
}

@media (min-width: 1000px) {
  .google-review .rating-value {
    line-height: 27px;
    height: 21px;
    padding: 0;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {
  .google-review .rating-value {
    font-size: 11px;
    line-height: 11px;
    margin-top: 4px;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {
  .google-review .g-star {
    gap: 2;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {
  .g-star-rating img {
    width: 11px;
  }
}

@media (max-width: 1000px) {
  .for-propert-detail-page-second-wrapper .row .prop-detail-logo-col-right {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .google-review .rating-value {
    margin-top: 3px;
  }

  .length {
    margin-top: unset !important;
  }

  .building-wrapper {
    padding: 5px !important;
    margin: 10px 0px !important;
  }

  .call-cta {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .second-wrapper h2 {
    font-size: 21px;
    line-height: 36px;
  }
}

@media screen and (max-width: 320px) {
  .second-wrapper h2 {
    font-size: 21px;
    line-height: 36px;
  }
}

.dubai-realestate-booming .arrow-btn:hover {
  background: url(../images/arrow-bullet.png) no-repeat 88% 52%;
  transition: 0.1s ease;
}

.dubai-realestate-booming .arrow-btn span i {
  display: none;
}

.dubai-realestate-booming .arrow-btn .arrow-icon {
  display: none;
}

.dubai-realestate-booming .arrow-btn span:before {
  display: none;
}

.why-invest-sobha-dubai-wrapper .arrow-btn:hover {
  background: url(../images/arrow-bullet.png) no-repeat 88% 52%;
  transition: 0.1s ease;
}

.why-invest-sobha-dubai-wrapper .arrow-btn span i {
  display: none;
}

.why-invest-sobha-dubai-wrapper .arrow-btn .arrow-icon {
  display: none;
}

.why-invest-sobha-dubai-wrapper .arrow-btn span:before {
  display: none;
}

section.why-invest-sobha-dubai-wrapper.new-consol img {
  width: 45px;
}

/*
@media (max-width: 1600px){
.building-wrapper .price-section {
    width: auto;
}}
*/
@media (max-width: 767px) {
  .building-wrapper {
    justify-content: center;
  }

  .building-wrapper .price-section {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .building-wrapper .arrow-btn {
    padding: 15px 50px;
  }

  .console-landing-banner-content .arrow-btn {
    padding: 15px 50px;
  }

  .console-landing-banner-content .arrow-btn span {
    font-size: 12px;
  }

  .building-wrapper .arrow-btn span {
    font-size: 12px;
  }
}

.dubai-realestate-booming .col-lg-4.col-6 video {
  display: none;
}

.dubai-realestate-booming .col-lg-4.col-6 i {
  display: block;
  transform: scale(0.7);
}

.dubai-realestate-booming .col-lg-4.col-6:hover video {
  display: none;
}

.dubai-realestate-booming .col-lg-4.col-6:hover i {
  display: block;
  transform: scale(0.9);
}

.arrow-btn:before {
  display: none !important;
}

.new-tab-section-consolidated {
  position: relative;
  display: block;
}

.new-tab-section-consolidated .new-section {
  display: flex;
  align-items: center;
  margin: 5rem 0rem 0rem 0rem;
}

.image-section-wrap {
  max-width: 50%;
}

.image-section-wrap {
  width: 50%;
}

.image-section-wrap img {
  width: 100%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.title-section-consolidated {
  width: 55%;
}

.title-section-consolidated h2 {
  margin: 0px 0px 0px 64px;
  padding: 0px 0px;
  font-size: 79px;
  color: #000;
  text-transform: uppercase;
}

.title-section-consolidated h2 span {
  color: #000;
  display: inline-block;
}

.title-section-consolidated p {
  margin: 0px 0px 20px 70px;
  padding: 0px 0px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

.new-tab-section-consolidated .arrow-btn {
  position: inherit;
  border: 1px solid #000;
  border-radius: 25px;
  padding: 15px 40px;
  width: auto;
  background: none;
  transition: 0.1s ease;
  width: auto;
  background: #000;
  font-size: 14px;
  margin: 15px 0 0;
  display: table;
}

.new-tab-section-consolidated .arrow-btn:hover {
  background: url(../images/arrow-bullet.png) no-repeat 88% 52% #fff;
  transition: 0.1s ease;
}

.new-tab-section-consolidated .arrow-btn span {
  color: #fff;
}

.new-tab-section-consolidated .arrow-btn:hover span {
  color: #000;
}

.new-tab-section-consolidated .arrow-btn span i {
  display: none;
}

.new-tab-section-consolidated .arrow-btn .arrow-icon {
  display: none;
}

.new-tab-section-consolidated .arrow-btn span:before {
  display: none;
}

.new-tab-section-consolidated .arrow-btn::before {
  display: none;
}

.visible-xs {
  display: none;
}

.finserve_sontent h1 {
  font-size: 20px !important;
  text-align: start !important;
}

.button-area {
  width: 50%;
  position: absolute;
  bottom: 75px;
  right: 0;
  display: flex;
}

.button-area h3 {
  font-size: 22px;
  font-weight: 100;
  margin: 10px 0;
}

.button-area p {
  font-size: 15px;
  margin: 0;
}

.button-area .button-new {
  background: #fff;
  border: 1px solid #cfcfcf;
  padding: 30px 70px;
  width: 100%;
}

.button-area .button-new:hover:nth-child(2) {
  background: #77dd77;
}

.button-area .button-new:hover {
  background: #aec6cf;
  cursor: pointer;
}

.button-new.active {
  background: #aec6cf !important;
}

.button-area .button-new.active:nth-child(2) {
  background: #77dd77 !important;
}

@media (max-width: 1600px) {
  .image-section-wrap {
    width: 45%;
  }

  .button-area {
    width: 55%;
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
  }

  .button-area .button-new {
    background: #fff;
    border: 1px solid #cfcfcf;
    padding: 30px 45px;
    width: 100%;
  }

  .new-tab-section-consolidated .new-section {
    display: flex;
    align-items: flex-start;
  }

  .title-section-consolidated {
    padding: 6% 0 0 0;
  }

  .title-section-consolidated h2 {
    font-size: 70px;
  }

  .button-area h3 {
    font-size: 20px;
    font-weight: 100;
  }

  .button-new img {
    height: 50px;
  }
}

@media (max-width: 1250px) {
  .button-new img {
    height: 50px;
  }

  .image-section-wrap {
    width: 40%;
  }

  .title-section-consolidated {
    padding: 5% 0 0 0;
  }

  .button-area {
    width: 60%;
    position: absolute;
    bottom: 50px;
    right: 0;
    display: flex;
  }
}

@media (max-width: 1080px) {
  .new-tab-section-consolidated .new-section {
    display: inherit;
  }

  .image-section-wrap {
    max-width: 100%;
  }

  .image-section-wrap {
    width: 100%;
  }

  .title-section-consolidated {
    padding: 12% 5% 10% 5%;
    text-align: center;
  }

  .title-section-consolidated h2 {
    font-size: 45px;
    margin: 0 0 20px 0;
  }

  .title-section-consolidated p {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px;
    font-size: 16px;
    line-height: 26px;
    color: #000;
  }

  .button-area {
    width: 100%;
    position: inherit;
    bottom: 0;
    right: 0;
    display: inherit;
  }

  .button-area .button-new {
    text-align: center;
  }

  .button-new img {
    margin: auto;
  }

  .new-tab-section-consolidated .arrow-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .title-section-consolidated h2 span {
    color: #000;
  }

  .title-section-consolidated br {
    display: none;
  }
}

.new-tab-section-consolidated-mobile {
  display: none;
}

@media (max-width: 1080px) {
  .new-tab-section-consolidated {
    display: none;
  }

  .new-tab-section-consolidated-mobile {
    display: block;
    text-align: center;
    padding: 40px 20px 50px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9f9f9+0,000000+100&0.65+0,0+100 */
    background: linear-gradient(
      to bottom,
      rgba(249, 249, 249, 0.699) 0%,
      rgba(0, 0, 0, 0) 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }

  .div-list-wrapper {
    margin: 20px 0;
    background: #fbf8f8;
    padding: 0 0 30px 0;
    -webkit-box-shadow: -3px 11px 22px 1px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: -3px 11px 22px 1px rgba(0, 0, 0, 0.09);
    box-shadow: -3px 11px 22px 1px rgba(0, 0, 0, 0.09);
  }

  .main-list-img {
    margin: auto;
    margin-bottom: 15px;
    border-radius: 5px;
  }

  .div-list-wrapper p {
    margin-bottom: 5px;
  }

  .new-tab-section-consolidated-mobile .arrow-btn {
    position: inherit;
    border: 1px solid #000;
    /* border-radius: 25px; */
    padding: 15px 40px;
    width: auto;
    background: none;
    transition: 0.1s ease;
    width: auto;
    background: #000;
    font-size: 14px;
    margin: 15px auto 0;
    display: table;
  }

  .new-tab-section-consolidated-mobile .arrow-btn:hover {
    background: url(../images/arrow-bullet.png) no-repeat 88% 52%;
    transition: 0.1s ease;
  }

  .new-tab-section-consolidated-mobile .arrow-btn span {
    color: #fff;
  }

  .new-tab-section-consolidated-mobile .arrow-btn:hover {
    background: #fff;
  }

  .new-tab-section-consolidated-mobile .arrow-btn:hover span {
    color: #000;
  }

  .new-tab-section-consolidated-mobile .arrow-btn span i {
    display: none;
  }

  .new-tab-section-consolidated-mobile .arrow-btn .arrow-icon {
    display: none;
  }

  .new-tab-section-consolidated-mobile .arrow-btn span:before {
    display: none;
  }

  .new-tab-section-consolidated-mobile .arrow-btn::before {
    display: none;
  }

  .new-tab-section-consolidated-mobile h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 1rem;
    text-transform: uppercase;
  }

  .booming-div p br {
    display: none;
  }
}

@media (max-width: 991px) {
  .second-wrapper .col-lg-6 {
    /* margin-bottom: 50px; */
  }

  .why-invest-sobha-dubai-wrapper .col-lg-4 {
    margin-bottom: 50px;
    text-align: center;
  }

  .invest-div p {
    text-align: center;
  }

  .why-invest-sobha-dubai-wrapper i {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .dubai-realestate-booming {
    padding: 70px 0px 80px 0;
  }

  .second-wrapper .projects-subline {
    text-align: left !important;
    margin-bottom: 22px;
    color: #777;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .hidden-xs {
    display: none;
  }

  .visible-xs {
    display: block;
  }

  .dubai-realestate-booming h2 {
    margin-bottom: 50px;
  }

  .second-wrapper {
    padding: 20px 0px 0px;
  }

  .second-wrapper h2 {
    margin-bottom: 0px;
    text-align: start;
  }

  .second-wrapper .col-lg-6 {
    /* margin-bottom: 70px; */
    /* margin-bottom: 300px; */
  }

  .new-tab-section-consolidated-mobile {
    padding: 70px 20px 30px;
  }

  .why-invest-sobha-dubai-wrapper {
    padding: 30px 0;
  }

  .why-invest-sobha-dubai-wrapper.new-consol h2 {
    margin-bottom: 30px;
  }

  .why-invest-sobha-dubai-wrapper p {
    margin-bottom: 20px;
    width: 100%;
  }

  .pnc-menon-wrapper {
    padding-top: 30px;
    background: #181818;
  }

  .footer-form-area {
    padding-top: 40px !important;
  }

  .why-invest-sobha-dubai-wrapper .col-lg-4 {
    margin-bottom: 0;
    margin-top: 1rem;
  }

  .main-list-img {
    border-radius: 4px;
  }
}

.price-list {
  margin: 5px 0 15px;
}

.price-list li {
  font-size: 13px !important;
  margin: 0;
  padding: 0 10px 0 0;
  color: #c9a485;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  letter-spacing: 0;
}

.price-list li::after {
  content: "";
  position: absolute;
  border-right: 1px solid #c9a485;
  height: 75%;
  right: 2px;
  top: 4px;
}

.price-list li:last-child::after {
  border: none;
}

.building-wrapper .price-section.price-consolidate {
  width: 100%;
}

.building-wrapper .price-section.price-consolidate .inventoryavail {
  min-height: auto;
}

@media (max-width: 767px) {
  .price-list {
    margin-left: auto;
    margin-right: auto;
  }

  .building-wrapper .price-section.price-consolidate .inventoryavail {
    padding-bottom: 0;
  }
}

.why-invest-sobha-dubai-wrapper .col-lg-4.col-6:hover i {
  transform: scale(1.3);
}

@media (max-width: 991px) {
  .console-landing-banner-content h1 {
    text-align: center;
  }

  .console-landing-banner-content {
    text-align: center;
  }
}

.body-consolidate .banner.career-banner img {
  height: 100% !important;
}

.msgicon {
  height: 100px;
  width: 100px;
  border: 4px solid #fff;
  font-size: 39px;
  background-color: #c9a485;
  color: #000;
  border-radius: 50%;
  padding: 27px;
  text-align: center;
  margin: 0px auto;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oops {
  text-align: center;
  font-size: 45px;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 800;
}

.oops span {
  font-weight: 300;
}

.oops-subtitle {
  /*color: #fff;*/
  font-size: 18px;
}

.rekative {
  position: relative !important;
}

.new-project {
  position: absolute;
  top: -6px;
  left: 11px;
  width: 120px;
  z-index: 2;
}

.new-project img {
  width: 73px !important;
  display: block;
  height: unset !important;
}

.new-project span {
  position: absolute;
  top: 36%;
  left: 32%;
  transform: translate(-50%, -50%);
  font-size: 17px;
  font-weight: bold;
  color: #000000;
  letter-spacing: 1px;
  font-weight: bolder;
}

/* .item {
  position: relative !important;
} */

.go-home {
  color: #414041;
  font-size: 19px;
  padding: 10px;
  width: 232px;
  margin: 0px auto;
  margin-top: 30px;
  border-radius: 5px;
  text-align: center;
  transition: ease 0.5s;
}

.go-home:hover {
  transition: ease 0.5s;
  color: #000;
  border-radius: 25px;
  background-color: #c9a485;
}

.oops-greet {
  color: #c9a485;
  font-size: 25px;
  /*font-weight: 600;*/
  margin-bottom: 15px;
}

.intl-tel-input {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* new  */

.form-check-new {
  padding: 0.5rem 0rem;
}

.form-check-input-new {
  margin: 0rem 0.2rem;
}

.luxury-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0rem;
}

.luxury-carousel {
  margin-top: 2.5rem;
}

.qr_code {
  width: 130px !important;
  padding: 10px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.qr_code img {
  max-width: 100%;
  height: auto;
  display: block;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  width: 60%;
  margin: auto;
}

.qr-item img {
  width: 100%;
  max-width: 180px;
  /* Adjust as needed */
  display: block;
}

.qr-info {
  margin-top: 10px;
}

.qr-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.qr-desc {
  font-size: 14px;
  color: #666;
}

/* custom css */

.hover-effect {
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  /* Keeps the underline properly positioned */
  transition: color 0.3s ease;
}

.hover-effect::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  /* Adjust as needed */
  width: 100%;
  height: 2px;
  background-color: #9aacc7;
  transform: scaleX(0);
  /* Initially hidden */
  transform-origin: center;
  transition: transform 0.3s ease;
}

.hover-effect:hover::after {
  transform: scaleX(1);
  /* Expands the underline on hover */
}

/* custom section css */

.info {
  right: 0;
}

.project-info {
  height: 135px;
}

.project-info p:nth-child(2) {
  font-style: italic;
}

.info {
  width: 87%;
  background: 0 0 / 100% #fafafa;
  display: block;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
}

@media (min-width: 991px) and (max-width: 2500px) {
  .info {
    width: 100% !important;
  }
}

.info .head {
  width: 70%;
  /* min-width: 250px; */
}

.editing-realative {
  position: relative;
}

@media (max-width: 1600px) {
  .info h3 {
    max-width: 400px;
    font-size: 28px;
    line-height: 48px;
    /* min-height: 105px;  */
  }
}

.info .num {
  width: 30%;
  min-width: 100px;
  text-align: right;
  margin: 1.3rem 0rem;
}

@media (max-width: 1600px) {
  .info .num h2 {
    font-size: 90px;
  }
}

@media (max-width: 1600px) {
  .info .num h2 {
    font-size: 60px;
  }
}

.info .num h2 {
  font-weight: 400;
  text-transform: uppercase;
  color: #ccc;
  opacity: 0.5;
  line-height: 0px;
  text-align: end;
}

/* .info p {
  margin: 4% 0 9%;
  height: 50px;
  width: 100%;
  overflow-y: scroll;
  font-size: 16px;
  line-height: 25px;
  -webkit-overflow-scrolling: touch;
} */

.info p {
  margin: 4% 0 9%;
  /* height: 120px; */
  /* Increased height for better scrolling */
  width: 100%;
  /* overflow-y: scroll; */
  /* Keeps scrollbar visible */
  font-size: 16px;
  line-height: 25px;
  -webkit-overflow-scrolling: touch;
  /* Enables smooth scrolling on iOS */
  display: block;
  /* Ensures block-level behavior */
  padding: 10px;
  /* border: 1px solid #ccc;  */
}

/* Force scrollbar visibility on WebKit browsers (iOS, Safari, Chrome) */
.info p::-webkit-scrollbar {
  width: 5px;
  /* Adjust scrollbar width */
}

.info p::-webkit-scrollbar-thumb {
  background: #888;
  /* Color of scrollbar */
  border-radius: 5px;
  /* Rounded scrollbar */
}

.info p::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background track */
}

.info .price {
  width: 46%;
  min-width: 180px;

  color: #c9a485;
  letter-spacing: 1px;
  padding-right: 5%;
  font-weight: 600;
}

@media (max-width: 1600px) {
  .info .price {
    font-size: 18px;
  }
}

.info .price {
  font-size: 20px !important;
  font-weight: 300 !important;
  color: #000 !important;
  letter-spacing: 1px !important;
}

@media (max-width: 1600px) {
  .info .arrow-btn {
    font-size: 13px !important;
  }
}

@media (max-width: 1600px) {
  .info .arrow-btn {
    font-size: 13px !important;
    padding: 0.5rem 1rem;
    margin: 0.7rem 0rem;
  }
}

/* .info .arrow-btn {
  width: 52%;
  min-width: 220px;
} */

/* .info p {
  margin: 5% 0 5%;
  height: 30px;
  width: 100%;
  overflow-y: scroll;
  font-size: 16px;
  line-height: 25px;
  -webkit-overflow-scrolling: touch;
} */

.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  margin: 10px;
}

.info p {
  margin: 2px 0;
  /* height: 120px; */
  /* Increased height for better scrolling */
  width: 100%;
  /* overflow-y: scroll; */
  /* Keeps scrollbar visible */
  font-size: 16px;
  line-height: 25px;
  -webkit-overflow-scrolling: touch;
  /* Enables smooth scrolling on iOS */
  display: block;
  /* Ensures block-level behavior */
  padding: 0px;
  /* border: 1px solid #ccc;  */
}

/* Force scrollbar visibility on WebKit browsers (iOS, Safari, Chrome) */
.info p::-webkit-scrollbar {
  width: 5px;
  /* Adjust scrollbar width */
}

.info p::-webkit-scrollbar-thumb {
  background: #888;
  /* Color of scrollbar */
  border-radius: 5px;
  /* Rounded scrollbar */
}

.info p::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background track */
}

.inventoryavail {
  font-size: 12px !important;
  margin: 0 !important;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  .building-wrapper h3 {
    margin: 30px 0px 30px 0px;
    margin: 10px auto;

    padding: 0px 0px;
    font-size: 25px;
    line-height: 34px;
    font-weight: bold;
  }

  .info .num {
    width: 30%;
    min-width: 100px;
    text-align: right;
    margin: 1.3rem 0rem;
  }

  .info .num h2 {
    font-size: 34px;
  }

  .info h3 {
    max-width: 400px;
    font-size: 1rem;
    line-height: 23px;
    /* min-height: 94px; */
  }

  .info p {
    /* height: 70px; */
    /* margin: 1rem 0rem; */
    text-align: left;
    font-size: 13px;
    line-height: 20px;
  }

  .info {
    right: 2px;
  }
}

.info p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}

.info p::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

.info p::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.head h3 a {
  color: #000;
}

/* new css */

.desktop-header {
  background-color: black !important;
  /* Set background color */
  position: fixed;
  /* Fix to the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  /* Ensure it stays above other elements */
  padding: 5px 0;
  /* opacity: 0.8; */
}

.desktop-header .logo img {
  filter: brightness(0) invert(1);
  /* Ensures the logo is visible on a dark background */
}

/*  */

.mobile-header {
  background-color: black !important;
  /* Set background color */
  position: fixed;
  /* Fix the header */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Ensure it stays above other elements */
  padding: 10px 0;
  /* opacity: 0.8; */
}

.mobile-header .logo img {
  filter: brightness(0) invert(1);
  /* Makes the logo visible on black */
}

/* Ensure menu icons are visible */
.mh-btns-left img {
  filter: brightness(0) invert(1);
  /* Makes menu icons white */
}

.limited-text::-webkit-scrollbar {
  width: 20px;
}

.limited-text::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.limited-text::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}
