@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
  .tabs-box .row {
    flex-direction: column-reverse !important;
  }
  .apartment-card__bottom{
    justify-content: space-around !important;
  }
  .apartment-card__heart {
    width: 60px;
  height: 60px;
  }
}

.main-header__logo img {
  width: 100%;
}
.sec-title__title1 .span_underh2 {
  color: var(--zoomvilla-base, #d7984e);
  font-size: 28px;
}
.sec-title__title1 {
  font-weight: 600;
  /* color: #0b1a37; */
  color: var(--ng-dark-primary);
}

.span_heading {
  font-weight: 700;
  letter-spacing: 1px;
  color: #0b1a37;
}

.apartment-carousel-wrapper .owl-stage-outer {
  padding: 10px 0;
}

.apartment-carousel-wrapper .item {
  padding: 0 0;
}

.apartment-carousel-wrapper .apartment-card {
  margin: 0;
  height: 100%;
}

.apartment-carousel-wrapper .owl-dots {
  margin-top: 25px;
  text-align: center;
}
.apartment-carousel-wrapper .owl-stage-outer {
  overflow: visible;
}

.apartment-carousel-wrapper .owl-item {
  opacity: 1;
}
.apartment-carousel-wrapper {
  overflow: hidden;
}

.feature-two__item__icon img {
  width: 45px;
}
/* .feature-two__item:hover .feature-two__item__icon img {
  filter: invert(1);
} */

.service-card__icon img {
  width: 60px;
  filter: invert(39%) sepia(96%) saturate(2471%) hue-rotate(343deg) brightness(102%) contrast(101%);
}

 :root{
      --primary:#063d4c;
      --primary-dark:#032f3b;
      /* --soft-bg:#eef3f2; */
      /* --panel-bg:#dfe8e5; */
      /* --white:#ffffff; */
      --text:#0c2330;
      /* --muted:#7e8a97; */
      /* --border:#d9dee5; */
      --green:#19aa43;
      --green-dark:#119137;
      /* --shadow:0 20px 60px rgba(0,0,0,.22); */
      /* --radius:22px; */
    }

  /*  *{
      box-sizing:border-box;
    }

    body{
      margin:0;
      font-family:"Inter", sans-serif;
      background:#f4f6f8;
    } */
.grw-net-widget {
  margin-left: 0 !important;
}

.open-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* margin:40px; */
  padding: 14px 24px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  width: min(980px, 100%);
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: popupUp 0.25s ease;
}

@keyframes popupUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-header {
  background: var(--zoomvilla-base, #d7984e);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0 100%, 0 0);
  border-radius: 20px 0 0 0;
}

.popup-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.popup-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.popup-body {
  display: grid;
  grid-template-columns: 305px 1fr;
  background: #fff;
  border-radius: 20px;
}

.popup-left {
  background: var(--new-theme-light-orange);
  padding: 26px 22px;
  text-align: center;
  border-radius: 0 0 0px 20px;
}

.popup-left h4 {
  margin: 0 0 26px;
  color: #000;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}


.promise-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.promise-icon {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
}

.promise-item p {
  margin: 0;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.popup-right {
  padding: 28px 32px;
  background: #fff;
  border-radius: 0 0 20px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.input-wrap {
  position: relative;
}

.form-control {
  width: 100%;
  height: 52px;
  border: 1px solid #00000045;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 16px;
  color: var(--text);
  outline: none;
  background: #fff;
  transition: 0.2s ease;
}

.form-control::placeholder {
  color: #9aa5b1;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 61, 76, 0.08);
}

.mobile-group {
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 100%;
  min-width: 120px;
  border-right: 1px solid var(--border);
  color: #6b7280;
  font-size: 16px;
  white-space: nowrap;
}

.country-code .flag {
  font-size: 20px;
}

.mobile-input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  font-size: 16px;
  color: var(--text);
}

select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px);
  background-size:
    7px 7px,
    7px 7px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.btn {
  height: 56px;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 61, 76, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(25, 170, 67, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  color: #fff0ff;
}

.btn small {
  font-size: 0.95em;
}
@media (max-width: 992px) {
.hide-on-mobile{
  display: none !important;
}
}

@media (max-width: 790px) {
  .about-one__features__list li span{
    font-size: 16px !important;
  }
}
@media (max-width: 400px) {
  .main-header__logo img {
    width: 115px !important;
  }

}
@media (max-width: 340px) {
.main-header__logo img{
  width: 100px !important;
  }
}

@media (max-width: 860px) {
  .popup-body {
    grid-template-columns: 1fr;
  }

  .popup-left {
    padding: 22px 18px;
  }

  .popup-left h4 {
    font-size: 24px;
  }

  .promise-list {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    flex-direction: row !important;
    gap: 16px;
    justify-content: center;
  }

  .popup-right {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .popup-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .popup-box {
    width: 100%;
    max-height: 92vh;
    overflow: auto;
    border-radius: 18px 18px 0 0;
  }

  .popup-header h3 {
    font-size: 18px;
  }

  .promise-list {
    /* grid-template-columns: 1fr; */
    flex-direction: row !important;

  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .country-code {
    min-width: 105px;
    font-size: 15px;
  }

  .form-control,
  .mobile-group {
    height: 50px;
  }

  .btn {
    height: 52px;
    font-size: 16px;
  }
}

.error{
    color: red;
}

#phone, #phone1, #phone2, #phone3, #phone4, #phone5{
    width: 100%;
}

.full-height{
    height: 50vh;
}

.apartment-card__image img{
  filter: blur(6px);
}
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappRipple 1.8s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 35px;
        bottom: 100px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 35px;
        bottom: 100px;
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
}

.emi-float-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: var(--zoomvilla-base, #D7984E);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    z-index: 9999;
    /* box-shadow: 0 8px 25px var(--ng-light-primary); */
    animation: emiPulse 1.8s infinite;
}

@keyframes emiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.emi-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.emi-popup-overlay.active {
    display: flex;
}

.emi-popup-box {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    position: relative;
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.emi-popup-box h3 {
    margin-bottom: 30px;
    color: #14213d;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.emi-close-btn {
    position: absolute;
    right: 18px;
    top: 12px;
    background: transparent;
    border: none;
    font-size: 34px;
    cursor: pointer;
}

.emi-calculator-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

.emi-row {
    margin-bottom: 36px;
}

.emi-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    color: #14213d;
    font-size: 15px;
}

.emi-label strong {
    background: #e7f9f3;
    color: #00b386;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 800;
}

.emi-row input[type="range"] {
    width: 100%;
    appearance: none;
    height: 4px;
    background: #e6e6ea;
    border-radius: 10px;
    outline: none;
}

.emi-row input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.emi-row input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.emi-output {
    margin-top: 45px;
}

.emi-output p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    color: #6f7895;
    font-size: 16px;
}

.emi-output b {
    color: #14213d;
    font-weight: 700;
}

.emi-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emi-legends {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
    font-size: 12px;
    color: #6f7895;
}

.emi-legends span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.emi-legends i {
    width: 20px;
    height: 8px;
    border-radius: 10px;
    display: inline-block;
}

.principal-dot {
    background: var(--new-theme-third);
}

.interest-dot {
    background: var(--new-theme-primary);
}

.emi-chart {
    width: 260px;
    height: 260px;
}

.emi-donut {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#d7984e 0deg, #ffcc9242 0deg);
    position: relative;
}

.emi-donut::after {
    content: "";
    position: absolute;
    inset: 40px;
    background: #fff;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .emi-popup-box {
        max-height: 90vh;
        overflow-y: auto;
        padding: 28px 20px;
    }

    .emi-calculator-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .emi-right {
        order: 1;
    }

    .emi-chart {
        width: 210px;
        height: 210px;
    }

    .emi-donut::after {
        inset: 34px;
    }

    .emi-float-btn {
        left: 15px;
        bottom: 15px;
        font-size: 13px;
        padding: 12px 16px;
    }
}
.nest-compare-section {
  padding: 60px 15px;
  /* background: linear-gradient(135deg, #e8fbf8, #fff7ed); */
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.nest-compare-card {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  background: #222;
  border-radius: 34px;
  padding: 25px;
  overflow: hidden;
}

.compare-tabs {
 display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  align-items: end;
  gap: 15px;
  padding: 0 25px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.compare-tab {
  height: 80px;
  border-radius: 34px 34px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nest-tab {
  background: var(--zoomvilla-base, #D7984E);
  transform: translateY(-1px);
}

.nest-tab {
  background: var(--zoomvilla-base, #D7984E);
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  transform: translateY(-1px);
}

@media screen and (max-width: 991px) {
  .testimonials-one .about-one__btn{
    margin-top: -65px !important;
  padding-bottom: 70px !important;
  }
  
}

.others-tab {
  background: var(--zoomvilla-base, #D7984E);
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  transform: translateY(-1px);
}

.nest-tab img {
  max-width: 170px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

.compare-table {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  border-bottom: 8px solid #fff;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row > div {
  padding: 13px 10px;
  /* min-width: 0;
  word-break: normal;
  overflow-wrap: break-word; */
  text-align: start;
  font-size: 17px;
  line-height: 1.4;
  color: #111;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.compare-title {
  font-weight: 800;
  background: var(--new-theme-light-orange);
}

.compare-nest {
  background: #fbfbfb;
}

.compare-others {
  background: #f5f5f5;
}

.compare-nest b {
  font-weight: 900;
}


/* Tablet */
@media (min-width: 991px) {
  .main-header__bottom::after {
display: none;
}
}
@media (max-width: 991px) {
  .nest-compare-card {
    max-width: 760px;
    padding: 18px;
  }

  .compare-row > div {
    font-size: 15px;
    padding: 20px 14px;
  }

  .others-tab {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .nest-compare-section {
    padding: 35px 10px;
  }
  .compare-tab-spacer{
    display: none;
  }

  .nest-compare-card {
    padding: 12px;
    border-radius: 24px;
  }

  .compare-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .compare-tab {
    min-height: 72px;
    border-radius: 18px 18px 0 0;
  }

  .nest-tab img {
    max-width: 120px;
    padding: 8px 10px;
  }

  .others-tab {
    font-size: 20px;
    line-height: 1.2;
  }

  .compare-table {
    border-radius: 20px;
  }

  .compare-row {
    grid-template-columns: 1fr 1fr;
    border-bottom: 10px solid #fff;
  }

  .compare-title {
    grid-column: 1 / -1;
    padding: 14px 10px !important;
    font-size: 16px !important;
  }

  .compare-row > div {
    padding: 16px 10px;
    font-size: 14px;
    line-height: 1.35;
  }


  .compare-nest,
  .compare-others {
    min-height: 90px;
  }
  .compare-row .compare-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
}
@media (max-width: 999px) {
  .nest-tab{
    font-size: 15px !important;
  }
  .others-tab{
    font-size: 15px !important;
  }
  .compare-row .compare-title i{
    margin-right: 0 !important;
  }
}

/* Very Small Mobile */
@media (max-width: 380px) {
  .compare-row > div {
    font-size: 13px;
    padding: 14px 8px;
  }

  .others-tab {
    font-size: 18px;
  }

  .nest-tab img {
    max-width: 105px;
  }
}
.sec-title .line-left1::before {
  content: "";
  position: absolute;
  background-color: var(--new-theme-primary);
  width: 20px;
  height: 3px;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.sec-title .line-left1::after {
  content: "";
  position: absolute;
  background-color: var(--new-theme-primary);
  width: 15px;
  height: 3px;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.sec-title .line-right1::before {
  content: "";
  position: absolute;
  background-color: var(--new-theme-primary);
  width: 20px;
  height: 3px;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.sec-title .line-right1::after {
  content: "";
  position: absolute;
  background-color: var(--new-theme-primary);
  width: 15px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}

.sec-title .line-left1 {
  width: 25px;
  display: inline-block;
  position: relative;
}
.sec-title .line-right1 {
  width: 25px;
  display: inline-block;
  position: relative;
}
.apartment-two__content .accordion.active .accordion-title__number::after {
    color:  #fff !important;
}

.feature-two .sec-title__tagline,
.apartment-one .sec-title__tagline,
.apartment-two .sec-title__tagline {
  color: var(--new-theme-primary) !important;
}
/* .feature-two__item__icon img {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(80deg) brightness(0.8);
} */

/* .feature-two__item__icon img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(56%) saturate(1200%) hue-rotate(354deg) brightness(104%) !important;
} */

/* .feature-two__item__title a {
  color: #F5EDD5 !important;
} */

/* .feature-two__item__title {
  color: #F5EDD5 !important;
} */
/* .apartment-card .zoomvilla-btn {
  background-color: var(--new-primary) !important;
  color: var(--new-theme-third) !important;
} */
.compare-row .compare-title .icon {
  width: 45px;
  display: flex;
  justify-content: center;
}
.compare-row .compare-title {
  display: flex;
  align-items: center;
}
.compare-row .compare-title i {
  color: var(--new-theme-primary);
  font-size: 25px;
  margin-right: 10px;
}

.apartment-card__content:hover .apartment-card__heart{
    background-color: var(--new-theme-third) !important;
}
.apartment-card__content:hover .zoomvilla-btn{
  color: var(--new-theme-text-white) !important;
  border: 1px solid var(--new-theme-text-white) !important;
  background-color: var(--new-theme-third) !important;
}

.apartment-card .zoomvilla-btn:hover {
  background-color: var(--new-theme-third) !important;
  color: #F5EDD5 !important;
}

.apartment-card__heart {
  background-color: var(--new-theme-primary) !important;
}

.apartment-card__list {
  border-color: #E8DAFC !important;
}
.compare-others {
  color: #C4827A !important;
}

.nest-compare-card .compare-tab.others-tab {
  background-color: #C4827A !important;
  color: #fff !important;
}

.nest-compare-card .compare-tab.nest-tab {
  background-color: var(--new-theme-third) !important;
}
.testimonials-one__item__star {
  background-color: #9D6B6B !important;
}

.testimonials-one__item:hover .testimonials-one__item__star {
  background-color: var(--new-primary) !important
}

.testimonials-one__item__text {
  color: #2C2835 !important;
}

.testimonials-one__item__user__name {
  color: var(--new-theme-third) !important;
}


.contact-two .sec-title__title {
  color: var(--new-theme-text-white) !important;
}

/* .contact-two .sec-title__tagline {
  color: #F5EDD5 !important;
} */

.contact-two__bg {
  background-image: none !important;
  background-color: var(--new-theme-secondary) !important;
}

.footer-widget__text,
.footer-widget__links-two li,
.footer-widget__links-two li a,
.main-footer__copyright,
.footer-widget__title {
  color: var(--new-theme-text-white) !important;
}

.footer-widget__social-links a {
  border-color: var(--new-primary) !important;
  color: var(--new-primary) !important;
}

/* .footer-widget__social-links a:hover {
  background-color: var(--new-primary) !important;
  color: var(--new-theme-third) !important;
} */

/* .main-footer__bottom__list li a {
  color: var(--new-theme-third) !important;
} */

/* .main-footer__copyright {
  color: var(--new-theme-third) !important;
} */
.emi-float-btn {
  background-color: var(--new-theme-primary) !important;
  color: #F5EDD5 !important;
  border: none !important;
}
.scroll-top-value {
  /* background-color: var(--new-theme-light-orange) !important; */
  color: var(--new-theme-text-white) !important;
}
.apartment-two__content .accordion-title__number {
  background-color: var(--new-primary) !important;
  border-color: var(--new-primary) !important;
}

.apartment-two__content .active .accordion-title__number {
  background-color: var(--new-theme-third) !important;
}

.apartment-two__content .accordion-content ul li {
  color: var(--new-theme-text-dark) !important;
}
.room-one {
  background-color: #F5F2FC !important;
}

.room-one__list li {
  background: #FFFFFF !important;
  color: var(--new-theme-third) !important;
}

.room-one__list__item.active-btn,
.room-one__list__item:hover {
  background-color: var(--new-theme-third) !important;
  color: #F5EDD5 !important;
}

.room-one__list__item.active-btn i,
.room-one__list__item:hover i {
  color: var(--ng-dark-primary) !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.sec-title .line-left::before,
.sec-title .line-left::after,
.sec-title .line-right::before,
.sec-title .line-right::after {
  background-color: var(--new-primary) !important;
}

/* .sec-title .line-left1::before,
.sec-title .line-left1::after,
.sec-title .line-right1::before,
.sec-title .line-right1::after {
  background-color: #E8A827 !important;
} */
/* .services-three .sec-title__title,
.services-three h2, 
.services-three h3 {
  color: var(--new-theme-third) !important;
} */

/* .service-card__title a {
  color: var(--new-theme-third) !important;
} */

.service-card__text {
  color: #6B6575 !important;
}

.service-card:hover .service-card__title,
.service-card:hover .service-card__text {
  color: var(--new-theme-third) !important;
}

/* .service-card:hover {
  background-color: var(--new-theme-third) !important;
} */

.sec-title__top,
.sec-title__top.justify-content-center,
.sec-title__top.justify-content-start {
  overflow: visible !important;
  flex-wrap: wrap !important;
}

.sec-title__tagline.bw-split-in-right {
  overflow: visible !important;
  white-space: normal !important;
}

[data-splitting],
.bw-split-in-left,
.bw-split-in-right {
  overflow: visible !important;
}

.sec-title__title.bw-split-in-left,
.sec-title__title1,
h2.bw-split-in-left,
h3.bw-split-in-left,
h3.bw-split-in-right {
  overflow: visible !important;
  clip-path: none !important;
}

.sec-title__title {
  overflow: visible !important;
  white-space: normal !important;
}


/* .feature-two__item__icon img {
  filter: invert(58%) sepia(25%) saturate(600%) hue-rotate(95deg) brightness(0.9) !important;
} */
 .feature-two__item__icon img {
  /* filter: brightness(0) saturate(100%) invert(84%) sepia(56%) saturate(1200%) hue-rotate(354deg) brightness(104%) !important; */
  filter: brightness(0) saturate(100%) invert(43%) sepia(94%) saturate(2395%) hue-rotate(344deg) brightness(101%) contrast(93%);
}

.feature-two__item__icon {
  /* background-color: rgba(107,158,123,0.15) !important; */
  background-color: var(--new-theme-light-orange) !important;
}
.compare-others {
  color: #C4827A !important;
}

.compare-row .compare-others {
  background-color: #F7ECE9 !important;
}
.footer-widget--about p,
.footer-widget--about h4,
.footer-widget__links-two li,
.footer-widget__links-two li a,
.footer-widget--links-two p,
.footer-widget--links-two h2,
.footer-widget--links-two h5,
.footer-widget--post h2 {
  color: var(--new-theme-text-white) !important;
}

.main-footer a {
  color: var(--new-theme-text-white) !important;
}

.main-footer a:hover {
  color: #fff !important;
}

/* .main-footer__bottom__inner a {
  color: var(--new-theme-third) !important;
} */
.main-footer__bottom__inner a:hover {
  background-size: 100% 1px;
}
.footer-widget__social-links a {
  border: 1.5px solid var(--new-primary) !important;
  color: var(--new-theme-text-white) !important;
  background-color: transparent !important;
}

.footer-widget__social-links a:hover {
  background-color: var(--new-primary) !important;
  color: var(--new-theme-third) !important;
}




/* .main-header__shape img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(56%) saturate(1200%) hue-rotate(354deg) brightness(104%) !important;
} */
