@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/Gilroy-Light.ttf") format("truetype");
}





 /* @font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
}  */


.header {
  padding: 10px 0px;
  position: absolute;
  z-index: 2;
  width: 100%;
}

.no-banner .header {
  background: #001F45;
  position: relative;
  border-bottom: 3px solid #00B6CE;
}

.header .header-row {
  align-items: center;
}

a {
  text-decoration: none !important;
}

a:hover {
  color: #00B7CE;
}

html {
  overflow-x: hidden;
}

body {
  font-family: Outfit, sans-serif !important;
  color: #0f1621;
  overflow-x: hidden;
}

p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #0f1621;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.header-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 10px;
}

.header .logo-wrapper {
  max-width: 190px;
}

.header .logo-wrapper img {
  width: 100%;
}

.header-menu .menu-item li {
  margin-right: 35px;
}

.header-menu .menu-item li:last-child {
  margin-right: 0px;
}

.header-menu .menu-item a {
  color: #fff;
  font-size: 13px;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.header-menu .menu-item a::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00B6CE;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

@keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

.header.header-sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: 0 5px 14px 0 rgb(0 0 0 / 10%);
  animation: sticky 1.2s;
  transition: 0.3s;
  z-index: 5;
  background-image: linear-gradient(
    140deg,
    #041526 0%,
    #002f67 90%,
    #002f67 75%
  );
  border-bottom: 3px solid #005ece;
}

.header-menu .menu-item a:hover {
  color: #00B6CE;
}

.header-menu .menu-item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header .theme-btn {
  padding: 5px 20px;
}

.theme-btn {
  background-color: #00B7CE;
  padding: 7px 25px;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid #03920000;

  color: #fff;
  /* background-image: linear-gradient(140deg, #9CECFB 0%, #65C7F7 90%, #00B7CE 75%); */
  position: relative;
  overflow: hidden;
  display: inline-flex
;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 5px inset rgb(3 146 0 / 37%);
}

.theme-btn span {
  z-index: 1;
  transition: all 0.3s ease-out;
}

.theme-btn:after,
.theme-btn:before {
  width: 0%;
  height: 0%;
  content: "";
  position: absolute;
  border-radius: 100%;
}

.theme-btn:before {
  transition: all 0.5s ease-out;
  background: #fff;
}

.theme-btn:hover:after,
.theme-btn:hover:before {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.theme-btn:hover:before {
  transition: all 0.5s ease-in;
}

.theme-btn:hover:after {
  transition: all 0.7s ease-in;
}

.theme-btn:after {
  background-image: linear-gradient(
    140deg,
    #041526 0%,
    #002f67 90%,
    #002f67 75%
  );
}

.trasparent-btn .header .header-row {
  align-items: center;
}

.header .header-icon img {
  width: 25px;
  margin-top: 8px;
}

.header .header-icon {
  background: #00B6CE;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}

.header .header-right {
  display: flex;
      justify-content: end;
      align-items: center;
}

.header-menu .menu-item a svg {
  margin-left: 5px;
}

.section {
  padding: 40px 0px;
}

.banner-section {
  background-image: url(../images/banner-bg.webp);
  width: 100%;
  padding-top: 160px;
  background-size: cover;
  background-position: center;
}

.banner-section .heading {
  color: #fff;
  margin-bottom: 21px;
}

.heading {
  font-size: 39px;
  line-height: 1.1;
  font-weight: 500;
  font-family: Gilroy-Bold;
}

.banner-text p {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
}

.banner-section span {
  color: #00B6CE;
}

.banner-text p:last-of-type {
  font-weight: 200;
  font-size: 16px;
  margin-bottom: 27px;
  padding-bottom: 20px;
}

.banner-section .nav-tabs .nav-link {
  background: #001F3F;
  color: #00B6CE;
  border-color: #fff;
  padding: 8px 40px;
  border-radius: 12px 12px 0 0;
  border-bottom: 0px;
}

.banner-section .nav-tabs li {
  margin-right: 10px;
}

.banner-section .nav-tabs li:last-child {
  margin-right: 0px;
}

.banner-section .nav-tabs {
  border-bottom: 0px solid #aaa;
  margin: 0 0 0px;
  padding: 0;
}

.banner-section .nav-tabs .nav-link.active {
  border-color: #013A71;
  color: #00B6CE;
  background-color: #013A71;
}

.banner-section .budget-section {
  background-color: #012b55a8;
  padding: 20px;
  border-radius: 0px 20px 20px 20px;
  margin-top: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banner-section .left-form {
  width: 30%;
}

.banner-section .right-form {
  width: 70%;
  margin-left: 30px;
}

.banner-section .form-inner {
  display: flex;
  width: 100%;
  align-items: center;
}

.banner-section .blank-area {
  width: 1.5px;
  height: 60px;
  background: #174373;
  position: relative;
  left: -17px;
}

.banner-section .banner-form {
  display: flex;
  width: 100%;
  align-items: center;
}

.banner-section .form-control {
  background: transparent;
  border: 0px;
  color: #fff;
  font-weight: 200;
}
.banner-section .form-control:focus {
  box-shadow: 0 0 1pt 1pt #00B6CE;
  outline-width: 0px;
}
.banner-section .form-control::placeholder {
  color: #fff;
}

.banner-section .form-group {
  position: relative;
  width: 80%;
  margin-bottom: 0px;
}

.city-section {
  display: none;
}

.city-section.active-drowdown {
  display: block;
}

.banner-section .search-btn {
  background-color: #fff;
  border-color: #fff;
  padding: 7px 12px;
  color: #0f1621;
  font-size: 10px;
  border-radius: 5px;
  line-height: 1;
  height: 42px;
  border: 0px;
}

.banner-section .seach-icon {
  position: absolute;
  color: #00B6CE;
  top: 10px;
  left: -21px;
  width: 19px;
}

.banner-section .search-btn img {
  width: 19px;
}

.banner-section .toggle-text {
  background: transparent;
  border: 0px;
  color: #00d1ff;
  padding: 0px;
  text-transform: capitalize;
}

.banner-section .city-inner {
  position: absolute;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid #00B6CE;
  margin-top: 10px;
  z-index: 1;
  width: auto;
}

.dropdown-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-select {
  color: #00d1ff;
  padding: 0px;
  text-transform: capitalize;
  font-size: 16px;
  cursor: pointer;
  border: 0px solid #00f721;
  background: url(../images/caet-download.png);
  background-position: 79% 61%;
  background-repeat: no-repeat;
  background-size: auto 42%;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0px 5px;
}
.dropdown-select option {
  color: #000;
}

#city-select:focus {
  outline: none;
  border-color: #00f721;
}

.banner-section .budget-btn:focus {
  border-color: #00f721;
}

.banner-section .left-form p {
  margin: 0px;
  padding-left: 5px;
}

.banner-section .form-bottom {
  padding-top: 20px;
  display: flex;
}

.banner-section .nav-link.active svg {
  transform: rotate(180deg);
}

.banner-section svg {
  margin-left: 10px;
  margin-right: -10px;
  vertical-align: text-bottom;
}

.banner-section .budget-btn {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 200;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  cursor: pointer;
}

.banner-section .budget-btnn {
  background: url(../images/white-caret.png);
  background-position: 95% 56%;
  background-repeat: no-repeat;
  background-size: auto 23%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 6px 30px;
  border-radius: 20px;
  width: auto;
}

.banner-section .react-tabber {
  position: relative;
  z-index: 2;
}

.banner-section .banner-img {
  /* margin-left: -12%; */
  position: relative;
  z-index: 1;
}

.banner-section .budget-btn .countNo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  background: #00B6CE;
  right: 0;
  top: -9px;
  color: #0f1621;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

.banner-section .checkbox--inner .checkbox-item {
  width: 50%;
  margin-bottom: 10px;
}

.checkbox--inner input[type="checkbox"] {
  margin-right: 8px;
}

.banner-section .checkbox--inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-section .checkbox--inner .input-group-text {
  padding: 0px;
  line-height: 1;
  border: 0px;
}

.counter-section .counter-inner {
  background: #00B6CE;
  border-radius: 20px;
  border: 3px solid #00B6CE;
  padding: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  background-color: #00B6CE;
  margin-top: -50px;
}

.counter-inner .left-counter {
  width: 30%;
}

.counter-inner .right-counter {
  width: 70%;
}

.counter-inner .left-counter p {
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.counter-inner .heading {
  font-size: 31px;
  color: #fff;
  line-height: 1.1;
}

.counter-wrap {
  width: 50%;
  text-align: center;
  margin-bottom: 10px;
}

.counter-inner .counter-items {
  display: flex;
  justify-content: center;
  font-size: 33px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 11px;
}

.counter-wrap h3 {
  margin-bottom: 0px;
}

.counter-wrap p {
  color: #fff;
}

.counter-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.left-divider {
  width: 2px;
  height: 100px;
}

.counter-inner .left-divider {
  width: 2px;
  height: 100px;
  background: #ffffff59;
}

.counter-section .counter-text {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  justify-content: center;
  padding-top: 10px;
}

.counter-section .counter-text li {
  display: flex;
  margin-right: 20px;
}

.counter-section .counter-text li:last-child {
  margin-right: 0px;
}

.counter-section .counter-text img {
  width: 20px;
  vertical-align: top;
  margin: 0px 10px;
}

.commercial-text .heading {
  margin-bottom: 20px;
}

.commercial-text ul {
  list-style: disc;
  margin-left: 20px;
}

.commercial-text > span {
  color: #b5b5b5;
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
}

.counter-section {
  padding-bottom: 40px;
}

.commercial-items {
  display: flex;
}

.commercial-section .button-wrap {
  margin-top: 30px;
}

.commercial-items .botom-section p {
  border-top: 1px solid #e5e5e5;
}

/* .commercial-items {
display: flex;
border-top: 1px solid #E5E5E5;
}
.commercial-items:first-of-type {
border-top: 0px solid #E5E5E5;
}
.commercial-items:first-of-type .middle {
background: unset;
} */
.commercial-items .left,
.commercial-items .middle,
.commercial-items .right {
  width: 33%;
}

.commercial-items .middle .botom-section {
     /* background: url(../images/gradient-bg.webp);
     background-size: cover;
     background-position: center; */
     /* background: linear-gradient(176deg, #fff 30%, #E6FDFE 70%); */
     background: linear-gradient(to bottom, #fff 0%, #E6FDFE 15%, #E6FDFE 85%, #fff 95%);


}

.commercial-items .top-section img {
  width: 40px;
  margin: 0 auto;
  height: 40px;
  object-fit: cover;
}

.mobile-areas {
  display: none;
}

.menu-section {
  text-align: right;
}

.menu-toggler {
  margin-left: 22px;
  padding: 0;
  position: relative;
  right: 20px;
  top: 0px;
  cursor: pointer;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

.menu-toggler span {
  background-color: #fff;
  display: flex;
  height: 2px;
  width: 28px;
}

.menu-toggler span + span {
  margin-top: 6px;
}

/* 
.commercial-items .top-section p {
font-weight: 600;
padding-top: 6px;
padding-bottom: 0px;
} */
.mobile-aside {
  background-image: linear-gradient(
    140deg,
    #041526 0%,
    #002f67 90%,
    #002f67 75%
  );
  overflow-x: hidden;
  overflow-y: auto;
  right: -300px;
  width: 300px;
  z-index: 9;
  height: 100%;
  position: fixed;
  top: 0;
  transition: 0.3s;
}

.mobile-aside .logo-wrapper {
  height: 54px;
  position: relative;
}

.mobile-aside .aside-trigger {
  cursor: pointer;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 9px;
  width: 20px;
}

.menu-items > li > a:hover {
  padding-left: 20px;
  color: #fff;
}

.mobile-aside .aside-trigger:after,
.mobile-aside .aside-trigger:before {
  background-color: #00B6CE;
  content: " ";
  height: 23px;
  left: 15px;
  position: absolute;
  width: 2px;
}

.mobile-aside .aside-trigger:hover:after,
.mobile-aside .aside-trigger:hover:before {
  background-color: #fff;
}

.mobile-aside .aside-trigger:before {
  transform: rotate(45deg);
}

.mobile-aside .aside-trigger:after {
  transform: rotate(-45deg);
}

.menu-items > li {
  border-bottom: 1px solid #00B6CE;
  position: relative;
}

.menu-items > li > a {
  color: #00B6CE;
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  padding: 10px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  transition: 0.5s;
}

.mobile-overlay {
  background-color: #1e1e1e;
  opacity: 0;
  right: 0;
  visibility: hidden;
  width: 100%;
  z-index: 8;
  height: 100%;
  position: fixed;
  top: 0;
  transition: 0.3s;
}

.active-menu .mobile-aside {
  right: 0;
}

.active-menu .mobile-overlay {
  opacity: 0.3;
  visibility: visible;
}

.commercial-items .top-section {
  text-align: center;
  margin-bottom: 10px;
}

.commercial-items .top-section p {
  text-align: center;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 15px;
}

.commercial-items .botom-section p {
  text-align: center;
  font-weight: 600;
  padding: 15px 0px;
  margin-bottom: 0px;
}

.state-section {
  text-align: center;
}

.state-section .icon {
  height: 30px;
}

.state-section .icon img {
  height: 100%;
  margin: 0 auto;
}

.state-section .heading {
  font-size: 39px;
}

.state-section .top-section {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.state-section p {
  margin-top: 10px;
  line-height: 1.1;
}

.state-section .state-img {
  margin-top: 30px;
}

.state-img img {
  width: 100%;
}

.realState-service {
  max-width: 750px;
  margin: 0 auto;
}

.top-section {
  text-align: center;
  margin-bottom: 20px;
}

.trending-section .image-section {
  position: relative;
  overflow: hidden;
}

.trending-section .category {
  position: absolute;
  top: 12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trending-section .category-item {
  display: flex;
  margin-left: -10px;
}

.trending-section .category-item li {
  font-weight: 600;
  position: relative;
  display: inline-block;
  font-size: 12px;
  background-image: url(../images/curve-bg.webp);
  background-position: 100%;
  background-size: cover;
  padding: 0 20px 0 15px;
  text-wrap: nowrap;
}

.trending-section .filter-icon {
  background-color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  margin-right: 12px;
  border: none;
}

.trending-section .filter-icon:hover {
  /* background-color: #8aff2e; */
  background-color: #00B7CE;
  box-shadow: 0 0 5px inset rgb(3 146 0 / 37%);
}
.trending-section .filter-icon:hover img {
  filter: brightness(0) invert(1);
  /* filter: invert(70%) sepia(97%) saturate(2143%) hue-rotate(126deg) brightness(173%) contrast(104%); */
}
.trending-section li:last-child {
  margin-right: 0px;
}

.trending-section .img img {
  width: 100%;
}

.trending-section .content-details {
  display: flex;
  align-items: center;
}

.trending-section .left,
.trending-section .middle,
.trending-section .right {
  text-align: center;
  width: 33%;
}

.trending-section .trending-slider {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin: 0px 10px;
  background-color: #fff;
  margin-bottom: 10px;
}

.trending-section .content h4 {
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
  min-height: 60px;
}

.trending-section .content {
  padding: 10px 10px 20px 10px;
  min-height: 229px;
}

.trending-section .content-details p {
  font-size: 12px;
  text-align: center;
  margin: 0px;
}

.trending-section .middle span {
  font-size: 14px;
  font-weight: 600;
}

.trending-section .content-details strong {
  font-size: 14px;
  line-height: 1;
}

.trending-section .icon img {
  display: inline;
  width: 20px;
  vertical-align: baseline;
}

.trending-section .icon {
  font-weight: 600;
  font-size: 15px;
}

.trending-section .blank-space {
  height: 20px;
  width: 1px;
  background: #c9c3c3;
  margin: 0px 3px;
  position: relative;
  left: 2px;
}

.commercial-section {
  padding-top: 20px;
}

.trending-section .monthly {
  text-align: center;
  display: block;
  color: #195C5F;
  font-weight: 600;
  padding: 10px 0px;
}

.realState-wrapper {
  padding-bottom: 0;
}

.trending-section {
  background-image: url("../images/trend-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 80px;
}

.trending-section .monthly i {
  margin-right: 5px;
  margin-left: 10px;
}

.trending-section .tre-button {
  display: flex;
  justify-content: center;
  margin-top: 13px;
}

.trending-section .invest-btn {
  margin-right: 20px;
}

.trending-section .en-btn .theme-btn {
  border: 1px solid #00B7CE;
  background: transparent;
  color: #2C2B2F;
  box-shadow: unset;
}

.trending-section .en-btn .theme-btn:hover{
color:#fff;

}

.trending-section .en-btn .theme-btn svg {
  color: #8aff2e;
  font-size: 19px;
  margin-right: 8px;
}

.trending-section .en-btn .theme-btn:hover svg {
  color: #fff;
}

.trending-section .slider-area {
  padding: 0px 40px;
}

/* .trending-section .slick-list {
  padding-left: 0px !important;
} */

.trending-slider .slick-next:before,
.trending-slider .slick-prev:before {
  display: none;
}

.trending-slider .slick-next,
.trending-slider .slick-prev {
  top: auto;
  bottom: 0px;
  left: 0;
}

.counter-items .item2 {
  padding-left: 5px;
}

.count-up svg {
  font-size: 22px;
  margin: 0px 5px;
}

.count-up {
  display: flex;
  align-items: center;
}

.trending-section .slick-dots li {
  padding: 0px;
}

.arrow {
  background: transparent;
  border: 0px;
  position: absolute;
  top: auto;
  z-index: 1;
}

.trending-sliders .pre-arrow {
  left: 32%;
  bottom: -13%;

}
.trending-sliders .slick-dots{


}

.trending-sliders .next-arrow {
  right: 32%;
  bottom: -13%;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  font-size: 0px;
  text-align: center;
  background-color: #d9d9d9;
  display: inline-block;
  line-height: 17px;
}

.slick-dots li button:before {
  display: none;
}

.trending-sliders .slick-dots {
  bottom: -13%;
}

.slick-dots li.slick-active {
  border: 1px solid #00B6CE;
  border-radius: 50%;
}

.slick-dots li.slick-active button {
  background-color: #0f1621;
}

.trending-section .arrow-container {
  background: #0f1621b8;
  width: 50%;
  height: 31px;
  position: absolute;
  top: auto;
  bottom: 0%;
  margin: 0 auto;
  left: 31%;
  border-radius: 10px 10px 0px 0px;
}

.trending-sliders .arrow-container .arrow {
  color: #fff;
  bottom: 4%;
}

.trending-sliders .arrow-container .pre-arrow {
  left: 5%;
}

.trending-sliders .arrow-container .next-arrow {
  right: 5%;
}

.trending-sliders .arrow-container .slick-dots {
  bottom: 0;
}

.trend-inner-slider .slick-dots li {
  margin: 0px;
}

.trend-inner-slider .slick-dots li button {
  background-color: #fff;
}

.trend-inner-slider .slick-dots {
  bottom: 2px;
  z-index: 1;
  left: 4%;
}

.trend-inner-slider .slick-dots li.slick-active {
  border-color: transparent;
}

.trending-section .buttons-section {
  text-align: right;
  margin-bottom: 20px;
}

.trasparent-btn {
  background-color: transparent;
  border: 1px solid #00B7CE;
  background-image: unset;
  box-shadow: unset;
  color: #2C2B2F;
}

.trasparent-btn svg {
  margin-left: 8px;
}

.commercial-section .image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: 2s ease-in;
  animation-duration: 10s;
  width: 100%;
}

.commercial-inner {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.commercial-section .content {
  position: absolute;
  transition: opacity 0.2s, transform 0.3s;
  top: -1%;
  transform: translate3d(0, 60px, 0);
  text-align: center;
  background-color: transparent;
  height: 100%;
  padding: 20px 20px 0px 20px;
  width: 100%;
  display: flex;
  align-items: center;
}

.commercial-section .content p {
  margin: 0px;
  color: #fff;
}

.commercial-section .commercial-buid {
  width: 19%;
  margin: 0px 5px;
}

.commercial-section .content-inner {
  display: flex;
  justify-content: space-between;
  color: #fff;
  width: 100%;
}

.commercial-section svg {
  color: #00B6CE;
}

.commercial-inner:hover .content {
  transform: scale(1);
  top: 0px;
  background-color: #0000005e;
}

.commercial-inner:hover .content-inner {
  flex-direction: column;
}

.propbitz-section .icon {
  background-color: #00B6CE;
  border: 1px solid #00B6CE;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  display: inline-block;
}

.propbitz-section.propbitz-new .icon{
  display: flex ;
  align-items: center;
  justify-content: center;
      margin: 0 auto;

}

.propbitz-section .icon img {
  width: 30px;
  -webkit-transition: all 0.5slinear;
  transition: all 0.5slinear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  filter: brightness(0) invert(1);
}

.propbitz-section strong {
  display: block;
  margin: 10px 0px 3px 0px;
}

.propbitz-section .propbitz-text {
  text-align: center;
  margin-bottom: 30px;
}

.propbitz-section .propbitz-text p {
  max-width: 300px;
  margin: 0 auto;
}

.business-inner {
  background: url("../images/building-bg.webp");
  background-size: cover;
  padding: 60px;
}

.business-section .heading,
.business-section p {
  color: #fff;
}

.business-section .heading {
  margin-bottom: 20px;
}

.business-section .business-text .theme-btn {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-image: unset;
  border-color: #fff;
  border-radius: 5px;
  padding: 10px 10px;
  text-transform: capitalize;
}

.business-section .business-text .theme-btn span{
color:#2C2B2F;

}

.business-section .business-text .theme-btn:hover span{
  color:#fff;

}
.business-section .button-wraps {
  margin-top: 25px;
}

.business-section .theme-btn .free {
  background-color: #00B6CE;
  padding: 5px 17px;
  border-radius: 20px;
  margin-left: 6px;
  color:#fff;
}

.business-section .business-text .theme-btn:hover .free {
  color: #fff;
}

.business-section .business-text .theme-btn span.free{
  color: #fff;

}

.business-section .faster-inner .heading {
  color: #0f1621;
  font-size: 28px;
}

.business-section .faster-inner p {
  color: #0f1621;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}

.business-section .faster-inner {
  background: #fff;
  max-width: 280px;
  border-radius: 7px;
  padding: 20px;
  margin-left: auto;
  margin-right: 20%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 2;
}

/* .business-section .faster-section {
display: flex;
justify-content: center;
} */
.business-section .faster-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-section .faster-btn svg {
  color: #c5c5c5;
}

.faster-section {
  position: relative;
}

.faster-blank {
  width: 280px;
  height: 159px;
  position: absolute;
  background: #fff;
  border-radius: 7px;
  z-index: 1;
  left: 17%;
  margin-top: 51px;
  box-shadow: 0 3px 6px rgba(79, 63, 63, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.faster-blank2 {
  left: 21%;
  margin-top: 33px;
  width: 280px;
  height: 159px;
  position: absolute;
  background: #fff;
  border-radius: 7px;
  z-index: 1;
  box-shadow: 0 3px 6px rgba(79, 63, 63, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.propbitz-section {
  background: url("../images/probitx-bg.webp");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  padding-bottom: 80px;
}

.propbitz-text1 {
  padding-left: 10%;
}

.trending-rent {
  background: #EDFBFD;
  background-image: unset;
  padding-bottom: 70px;
}

.trending-rent .left,
.trending-rent .middle {
  text-align: center;
  width: 50%;
}

.trending-rent .budget-wrap {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.trending-rent .tre-button {
  margin-top: 15px;
}

.trending-rent strong {
  font-size: 14px;
  font-weight: 600;
}

.business-section {
  position: relative;
  padding-bottom: 20px;
  padding-top: 0;
}

.business-section:after {
  background: #EDFBFD;
  height: 300px;
  content: "";
  display: block;
  top: auto;
  position: absolute;
  width: 100%;
  z-index: -1;
  bottom: 0;
}

.intelligence-section .box-inner {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin: 0px 10px;
}

.intelligence-section .box-items,
.intelligence-section .content-inner {
  display: flex;
  align-items: flex-start;
  padding: 5px 10px;
}

.intelligence-section .right-inner {
  color: #767676;
  padding-left: 10px;
}

.intelligence-section .left,
.intelligence-section .right {
  width: 100%;
}

.intelligence-section .box-items img {
  width: 100%;
  border-radius: 10px;
}

.intelligence-section .right-inner svg {
  margin-right: 4px;
  height: 12px;
  vertical-align: top;
}

.intelligence-section .right-inner .heading {
  color: #0f1621;
  font-size: 13px;
  margin: 0px;
}

.intelligence-section .right-inner span {
  font-size: 11px;
  line-height: 1;
  text-align: left;
  padding-left: 5px;
}

.intelligence-section .devider {
  border-bottom: 1px solid #e8e8e8;
  margin: 10px 0px 10px 0px;
}

.intelligence-section .content-inner p {
  margin-bottom: 2px;
  font-size: 12px;
  color: #767676;
}

.intelligence-section .content-inner strong {
  font-weight: 500;
  font-size: 14px;
}

.intelligence-section .inte-btn .theme-btn {
  border-radius: 0px 0px 10px 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 15px;
  box-shadow: 0 0 8px inset rgb(0 0 0 / 19%);
  text-align: center;
  width: 100%;
  margin-top: 8px;
  text-transform: capitalize;
}

.intelligence-section .inte-btn .theme-btn svg {
  padding-left: 17px;
}

.intelligence-section .box-items .top-section {
  display: flex;
  margin-bottom: 8px;
}

.intelligence-section .blank-sec {
  background: #e8e8e8;
  height: 1px;
  width: 40px;
  margin: 10px 0px;
}

.intelligence-section .slick-dots {
  bottom: -19%;
}

.intelligence-section .pre-arrow {
  left: 35%;
  bottom: -19%;
}

.intelligence-section .next-arrow {
  right: 35%;
  bottom: -19%;
}

.intelligence-section .buttons-section {
  text-align: right;
  margin-bottom: 20px;
}

.intelligence-section .query-img {
  display: inline;
  margin-right: 4px;
}

.intelligence-section .slick-list {
  padding-left: 0px !important;
}

.intelligence-section .right-inner .icon {
  width: 10%;
}

.officeSpace-wrap .office-inner {
  background: #5bc2a3;
  padding: 20px;
  border-radius: 10px;
  min-height: 320px;
  position: relative;
}

.officeSpace-wrap .heading {
  font-size: 29px;
  font-family: "Outfit";
  margin-bottom: 15px;
  color: #fff;
}

.officeSpace-wrap .office-btn {
  margin-top: 120px;
}

.office-wrap p {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 200;
}

.officeSpace-wrap .sell-img {
  position: absolute;
  top: auto;
  width: 54%;
  right: 0;
  bottom: 0;
}

.officeSpace-wrap {
  padding-top: 60px;
}

.officeSpace-wrap .office-inner2 {
  background: #6baacb;
}

.officeSpace-wrap .trasparent-btn {
  background-color: #fff;
  border: 1px solid #fff;
  text-transform: capitalize;
  z-index: 2;
}

.investor-wrap .brand-logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 18px;
  flex-wrap: wrap;
}

.investor-bg {
  text-align: center;
}

.investor-wrap .investor-bg {
  text-align: center;
  background: #00b6ce1f;
  padding: 20px;
  border-radius: 88px;
  border: 1.5px solid #00B6CE;
  position: relative;
}

.bcnd-head {
  max-width: 500px;
  margin: 0 auto;
  margin-top: -39px;
  background: #fff;
  line-height: 1;
  position: relative;
}

.bcnd-head span {
  position: relative;
  top: 8px;
  font-weight: 400;
}

.bcnd-head:after,
.bcnd-head:before {
  content: "";
  background: #00B6CE;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 13px;
}

.bcnd-head:before {
  right: auto;
  left: 0;
}

.investor-bg p {
  padding-top: 20px;
  font-weight: 200;
}

.featured-wrap .featured-item {
  background: #00b6ce1f;
  border: 1px solid #00B6CE;
  border-radius: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 3;
}
.featured-wrap .featured-col{

  position: relative;
  z-index: 3;
}
.featured-wrap .icon {
  width: 25%;
}

.featured-wrap .content {
  width: 75%;
  padding-left: 20px;
}

.featured-wrap .featured-item:after {
  content: "";
  /* background: #00b6ce1f; */
  width: 100%;
  height: 101%;
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  right: -4.8%;
}

/* .featured-wrap .featured-item.black-bg:after {
  background: #00b6ce1f;
} */

.featured-wrap .featured-col {
  margin: 0px 20px;
}

/* .featured-wrap .featured-item.blue-bg:after {
  background: #0f52d4;
} */

.testimonial-wrap .pre-arrow {
  left: 24%;
}

.testimonial-wrap .next-arrow {
  right: 65%;
}

.featured-wrap .arrow-icon,
.testimonial-wrap .arrow-icon {
  background-color: #00B6CE;
  border: 1px solid #00B6CE;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  margin-top: 30px;
  color: #fff;
}

.testimonial-wrap {
  padding-bottom: 0px;
}

.testimonial-wrap .arrow-icon {
  top: 83%;
  margin-top: 0px;
}

.featured-wrap .pre-arrow {
  left: 43%;
}

.featured-wrap .next-arrow {
  right: 43%;
}

.testimonial-wrap .left,
.testimonial-wrap .right {
  width: 50%;
}

.testimonial-col {
  display: flex;
  align-items: flex-end;
}

.testimonial-content .name {
  font-weight: 500;
  font-size: 22px;
}

.testimonial-content .des {
  color: #7d7d7d;
}

.testimonial-content {
  padding-left: 20px;
}

.testimonial-review p {
  color: #fff;
  font-weight: 200;
  line-height: 1.4;
  text-align: justify;
}

.testimonial-review {
  position: relative;
  padding: 30px;
  background: #0f1621;
  top: 62px;
  left: -25%;
  border-radius: 10px;
}

.testimonial-slider {
  margin-top: 30px;
  margin-left: 10%;
}

.testimonial-slider .review-img {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.testimonial-slider .review-icon {
  margin-bottom: 10px;
}

.testimonial-slider .review-icon svg {
  color: #ffd600;
}

.testimonial-slider .quotes-icon svg {
  font-size: 25px;
}

.testimonial-slider .quotes-icon {
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrap .play_button {
  background: #ffffffc2;
  border: 0px;
  display: flex;
  align-items: center;
  position: absolute;
  top: auto;
  bottom: 32px;
  left: 6%;
  padding: 7px 11px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.testimonial-wrap .play_button > img {
  width: 26px;
  height: auto;
  margin-right: 5px;
}

.testimonial-wrap .video_container {
  position: relative;
  width: 100%;
}

.testimonial-wrap video.video {
  width: 100%;
}

.testimonial-wrap .video img {
  width: 100%;
}

.testimonial-wrap .slick-list {
  min-height: 400px;
}

/* 
.play_button.hide {
display: none;
} */
.price-range h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.price-input {
  width: 100%;
  display: flex;
  margin: 10px 0 20px;
  justify-content: center;
}

.price-input .field {
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  border: 1.5px solid #00B6CE;
  border-radius: 2px;
  justify-content: center;
}

.price-input .field span {
  padding: 1px 13px;
}

.price-input .field input {
  border: 0px;
  max-width: max-content;
  width: 100%;
  border-left: 1.5px solid #00B6CE;
  padding: 3px 5px;
}

.price-input .field input:focus {
  outline: none;
}

.city-inner .range-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.city-inner .range-items {
  background: transparent;
  border: 1px solid #00B6CE;
  padding: 4px 10px;
  border-radius: 5px;
  margin: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 46%;
}

.banner-section .range-budget {
  width: 90%;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 5px;
  position: relative;
  background: #00B6CE;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #00B6CE;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #00B6CE;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px #00B6CE;
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #00B6CE;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px #00B6CE;
}

.footer {
  background: url("../images/footer-bg.webp");
  background-size: cover;
  padding: 84px 0px;
  margin-top: 80px;
  padding-bottom: 15px;
  background-position: top;
}

.footer .social-wraps {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social-wraps li,
.blog-details .social-wraps li {
  margin-right: 20px;
}

.footer .social-wraps li a,
.blog-details .social-wraps li a {
  font-size: 14px;
  width: 33px;
  height: 33px;
  color: #fff;
  background: transparent;
  position: relative;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border: 1.3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social-wraps li:hover a,
.blog-details .social-wraps li:hover a {
  border-radius: 0%;
  background: #fff;
  border: 1.5px solid #00B7CE;
  color: #00B7CE;
}

.footer .social-wraps li:last-child {
  margin-right: 0px;
}

.footer-signup h2 {
  color: #fff;
}

.footer .form-group {
  display: flex;
  margin: 0px;
}

.footer .form-control {
  border: 0px;
  border-bottom: 1.5px solid #fff;
  height: auto;
  background: transparent;
  border-radius: 0px;
  margin-right: 20px;
  padding-left: 0px;
  color: #fff;
  font-weight: 400;
}

.footer .form-control::placeholder {
  color: #fff;
}

.footer button {
  background-color:#fff;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: auto;
  color: #00B6CE;
  position: relative;
  top: 9px;
}

.footer .signup-rows {
  margin-top: 60px;
}

.footer .checkbox-wrap {
  margin-bottom: 0px;
  color: #fff;
  margin-top: 4px;
  font-weight: 200;
}

/* contact us */
.contact-banner {
  position: relative;
  height: 380px;
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner .contact-text {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.contact-banner .contact-inner {
  max-width: 400px;
  margin: 0 auto;
  background: rgb(0 30 61 / 76%);
  padding: 20px 40px;
  border-radius: 5px;
}

.contact-banner p {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 0px;
}

.contact-banner .heading {
  color: #00B6CE;
  margin-bottom: 4px;
}

.contact-banner .down-img {
  width: 20px;
  margin: 0 auto;
  padding-top: 20px;
}

.contact-form .form-control {
  color: #747474;
  border: 0px;
  border-bottom: 1.5px solid #e7e7e7;
  border-radius: 0px;
  padding: 5px 5px;
  height: auto;
  font-size: 15px;
  font-weight: 300;
  position: relative;
}

.contact-form textarea#message {
  border: 1.5px solid #e7e7e7;
  padding: 10px;
}

.contact-form {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 70px;
}

.contact-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form .second-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  color: #0f1621;
  margin: 20px 0px;
}

.contact-form .second-text br {
  display: none;
}
.contact-form .form-text p {
  max-width: 300px;
}

.contact-form .t-area > span {
  color: #00B6CE;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-form p,
.address-text a,
.contact-faq p {
  color: #747474;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

.contact-form .form-img {
  position: absolute;
  right: 0;
  top: 9px;
}

.contact-form .theme-btn {
  padding: 6px 40px;
}

.contact-form .theme-btn:hover {
  color: #fff;
}

.contact-form .blank-space {
  height: 1.5px;
  width: 100%;
  background: #e7e7e7;
  margin-top: 50px;
}

.contact-form .contact-address {
  padding-top: 40px;
}

.contact-form .address-text strong {
  color: #0f1621;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form .address-text a {
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 3px;
}

.contact-form .address-text svg {
  color: #7474748a;
  margin-right: 5px;
  font-size: 16px;
}

.contact-form .address-text a:hover {
  color: #8aff2e;
}

.contact-map .map-social {
  display: flex
  ;
      align-items: center;
      /* background-image: linear-gradient(140deg, #8aff2e 0%, #00B6CE 90%, #00B6CE 75%); */
      background-color: #00B6CE;
      color: #fff;
}

.contact-map .map-social a {
  font-size: 14px;
  width: 33px;
  height: 33px;
  color: #fff;
  background: transparent;
  position: relative;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border: 1.3px solid #fff;
  display: inline-block;
  text-align: center;
  line-height: 30px;
}

.contact-map .map-social li svg {
  vertical-align: middle;
}

.contact-map .map-social li {
  width: 20%;
  text-align: center;
  border-right: 2px solid #ffffff;
  line-height: 61px;
}

.contact-map .map-social li:hover a {
  border-radius: 0%;
  background: #fff;
  border: 1.5px solid #002f67 ;
  color: #002f67 ;
}

.contact-faq .card {
  border-color: #e7e7e7;
  border-radius: 0px;
}

.contact-faq div#heading-1 {
  border-bottom: 0px solid rgba(0, 0, 0, 0.125);
}

.contact-faq .card-header {
  border-color: #e7e7e7;
  background: transparent;
  border-bottom: 0px solid rgba(0, 0, 0, 0.125);
  border-radius: 0px;
}

.contact-faq .title a {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding-left: 30px;
  display: block;
}

.contact-faq .title {
  margin-bottom: 0px;
}

.contact-faq .title a:after {
  content: "\f078";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 3px;
  color: #00B6CE;
}

.contact-faq .title a[aria-expanded="true"]:after {
  content: "\f077";
}

.contact-faq .faq-img,
.contact-faq .faq-img img {
  height: 100%;
  object-fit: cover;
}

.contact-faq .top-section > span {
  color: #b5b5b5;
  margin-bottom: 10px;
  display: block;
  font-size: 13px;
}

.contact-faq .top-section p {
  color: #000000;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 15px;
}

.footer .quick-link .title {
  color: #fff;
  position: relative;
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer .left-link {
  display: flex;
  justify-content: space-between;
}

.footer .quick-link li {
  margin-bottom: 20px;
}

.footer .left-link ul {
  width: 50%;
}

.footer .quick-link li a {
  color: #fff;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.2s ease-in;
}

.footer .quick-link li a:hover {
  font-weight: 500;
}

.footer .f-quick-link {
  padding: 50px 0px;
}

.footer .quick-link .title::after {
  content: "";
  position: relative;
  height: 2px;
  width: 46%;
  display: block;
  background: #fff;
  top: 7px;
}

.footer {
  color: #fff;
}

.footer .footer-address {
  padding-top: 53px;
}

.footer .footer-address svg {
  margin-right: 10px;
  color: rgb(255 255 255 / 72%);
}

.footer .footer-address p {
  margin-bottom: 40px;
}

.footer .footer-address p,
.footer .footer-address a {
  color: #fff;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer .footer-address a:hover {
  font-weight: 500;
  transition: all 0.2s ease-in;
}

.footer-logo {
  padding-top: 50px;
}

.copyright p {
  text-align: center;
  color: #fff;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0px;
  border-top: 1.5px solid #fff;
  padding-top: 15px;
}

.footer-logo img {
  width: 60%;
  margin: 0 auto;
}

.smoothscroll-up {
  position: fixed;
  opacity: 1;
  bottom: 27px;
  left: 3px;
  line-height: 1.4;
  font-size: 16px;
  color: #fff;
  padding: 12px;
  font-weight: 500;
  z-index: 99;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  display: none;
}

.smoothscroll-up .smoothscroll-inner {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 12px;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
  box-shadow: 0px 0px 10px #00B6CE;
}

.smoothscroll-inner img {
  width: 17px;
  height: 31px;
  vertical-align: bottom;
  margin-top: 31px;
}

.smoothscroll-up .smoothscroll-inner:hover,
.smoothscroll-up .smoothscroll-inner:focus {
  box-shadow: 0px 0px 10px #00B6CE;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.1);
  transition: all 200ms ease-in;
  transform: scale(1.1);
  color: #fff;
  outline: none;
  background: #fff;
}

.smoothscroll-up:hover {
  color: #00B6CE;
}

.contact-banner .listing-inner {
  max-width: 600px;
}

/* blog listing */
.listing-seacrh .search-wrap {
  background: rgb(0 182 206 / 35%);
  padding: 20px;
  border-radius: 60px;
  border: 10px solid #DBF5F8;
  position: relative;
  --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: var(--shadow);
}

.listing-seacrh .search-box {
  display: flex;
  position: relative;
}

.listing-seacrh .form-control {
  border-radius: 50px;
  border: 1.5px solid #00B6CE;
  color: #0f1621;
  width: 85%;
  margin: 0 auto;
}

.listing-seacrh .form-control::placeholder {
  color: #0f1621;
}

.listing-seacrh .search-icon {
  position: absolute;
  right: 54px;
  top: 7px;
  background: transparent;
  border: 0px;
  color: #0f1621;
}

.latest-blog .image {
  position: relative;
}
.latest-blog .image img {
  width: 100%;
}
.latest-blog .latest-inner {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.latest-blog .latest-inner:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.latest-blog .logo {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 30%;
}

.latest-blog .category {
  display: flex;
  padding: 20px 0px;
  justify-content: space-between;
  font-size: 13px;
  align-items: center;
}

/* .latest-blog .category-left,
.latest-blog .category-right{
width: 50%;
} */
.latest-blog .content-wrap button,
.blog-listing .category-area button {
  background-color: #eeeeee;
  border: 0px;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
}

.latest-blog .blank-space {
  width: 2px;
  height: 17px;
  background: #d9d9d9;
  margin: 0px 7px;
  position: relative;
  top: 0px;
}

.latest-blog .date-wraps {
  display: flex;
  font-weight: 500;
  align-items: center;
}

.latest-blog .heading,
.blog-listing  .heading{
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 15px;
  cursor: pointer;
}
.latest-blog .latest-heading,
.blog-listing .latest-heading{
  font-size: 28px;
}

.latest-blog .heading:hover,
.blog-listing .content-wrap .heading:hover{
  color: #00B6CE;

}

.latest-blog p {
  color: #747474;
  font-weight: 300;
  margin-bottom: 20px;
}

.latest-blog .theme-btn {
  padding: 6px 40px;
}

.latest-blog .latest-right {
  display: flex;
  margin-bottom: 20px;
}

.latest-right .category-area,
.blog-listing .date-wraps {
  display: flex;
  margin-bottom: 14px;
}

.latest-blog .latest-right button {
  font-size: 11px;
  margin-right: 15px;
}

.latest-blog .latest-right button:last-child {
  margin-right: 0px;
}

.latest-blog .latest-right .image {
  width: 45%;
}

.latest-blog .latest-right .content-wrap {
  width: 55%;
  padding-left: 20px;
}

.latest-blog .latest-right .heading {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.latest-blog .latest-right .logo {
  top: -2px;
  left: -4px;
  width: 53%;
}

.latest-blog .latest-right .img-responsive {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.latest-blog .latest-right .category {
  padding: 10px 0px;
  flex-direction: unset;
}

.latest-blog .latest-right .image-inner {
  height: 155px;
}

.latest-blog .latest-right {
  padding: 6px;
}

.latest-blog .latest-right:last-child {
  margin-bottom: 0px;
}

.latest-blog .latest-right .theme-btn {
  padding: 6px 20px;
  font-size: 12px;
}

.blog-listing .content-wrap {
  width: 55%;
  padding-right: 20px;
}

.blog-listing .image {
  width: 45%;
}

.blog-listing .latest-inner {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #e7e7e7;
}

.blog-listing .content-wrap .heading {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 26px;
  cursor: pointer;
}

.blog-listing .category-area {
  margin-bottom: 10px;
}

.blog-listing .blank-space {
  width: 2px;
  height: 17px;
  background: #d9d9d9;
  margin: 0px 7px;
  position: relative;
  top: 3px;
}

.blog-listing .date-wraps {
  color: #747474;
  font-size: 14px;
  align-items: center;
}

.blog-listing .category-area button {
  margin-right: 10px;
  padding: 4px 20px;
}

.blog-listing .category-area button:last-child {
  margin-right: 0px;
}

.blog-items {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
  border-radius: 10px;
}

.blog-items > .row {
  width: 100%;
  margin: 0 auto;
}

.blog-listing .date-icon {
  margin-right: 10px;
}

.blog-scroll {
  height: 1050px;
  overflow-y: scroll;
}

.blog-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0 182 206 / 20%);
  border-radius: 10px;
  background-color: rgb(0 182 206 / 20%);
}

.blog-scroll::-webkit-scrollbar {
  width: 7px;
  background-color: rgb(0 182 206 / 0%);
}

.blog-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgb(0 182 206 / 26%);
  background-color: #00B6CE;
}

.blog-listing .community-section {
  border: 1.3px solid rgb(0 182 206);
  border-radius: 10px;
  padding: 30px;
  padding-bottom: 10px;
  background: rgb(0 182 206 / 10%);
}

.blog-listing .community-section img {
  width: 90%;
  margin: 0 auto;
}

.blog-listing .community-section .heading {
  margin: 20px 0px;
  font-size: 23px;
}

.community-btn .theme-btn {
  width: 100%;
  margin-bottom: 13px;
}

.community-btn .theme-btn:hover {
  color: #fff;
}

.community-btn .transparent-btn {
  background-color: transparent;
  background-image: none;
  box-shadow: unset;
  border: 1px solid #00B6CE;
  color: #2C2B2F;
}

.blog-listing .pagination ul li {
  list-style: none;
  height: 38px;
  width: 38px;
  margin: 0 3px;
  line-height: 45px;
  border-radius: 50%;
  border: 1px solid #00B7CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.blog-listing .pagination ul {
  display: flex;
}

.blog-listing .pagination {
  justify-content: center;
}

.blog-listing .pagination ul li {
  margin-right: 10px;
}

.blog-listing .pagination ul li:last-child {
  margin-right: 0px;
}

.blog-listing .pagination ul li.active,
.blog-listing .pagination ul li:hover {
  background-color: #00B7CE;
}

/* blog */
.blog-details .back-link {
  color: #0f1621;
  font-size: 14px;
}

.blog-details .back-link img {
  display: inline;
  vertical-align: baseline;
  margin-right: 4px;
}

.blog-details .back-link:hover {
  color: #8aff2e;
}

.blog-details .detail-left > span {
  font-size: 14px;
  color: #747474;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.blog-details .detail-left p {
  color: #747474;
  margin-bottom: 25px;
}

.blog-details .blog-category button {
  background: rgb(0 182 206 / 16%);
  border: 0px;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

.blog-details .blog-category button:last-child {
  margin-right: 0px;
}

.blog-details .details-img {
  padding: 40px 0px;
  padding-bottom: 0px;
}

.blog-details .heading {
  font-family: "Gilroy-Light";
  margin-bottom: 20px;
}

.blog-details .details-bottom {
  padding: 50px 0px;
  padding-bottom: 0px;
}

.blog-details .summry-right h2 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 500;
}

.blog-details .summry-left h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 500;
}

.blog-details .summry-right p {
  margin-bottom: 25px;
  line-height: 1.5;
}

.blog-details .summry-left ul li {
  margin-bottom: 15px;
  position: relative;
}

.blog-details .summry-left ul li a.active::before {
  content: "";
  height: 1.3px;
  width: 100px;
  background: #00B6CE;
  display: inline-block;
  position: absolute;
  bottom: -3px;
}

.blog-details .summry-left ul li a {
  color: #0f1621;
  padding: 0px;
}

.blog-details .summry-img {
  position: relative;
}

.blog-details .social-wraps {
  display: flex;
  bottom: 45px;
  position: relative;
  justify-content: flex-end;
  align-items: center;
}

.blog-details .article {
  color: #fff;
  font-weight: 300;
  font-size: 19px;
}

.blog-details .summry-left ul li a:hover {
  color: #00B6CE;
}

.blog-details .details-logo img {
  width: 18%;
}

.blog-details .details-logo {
  border-bottom: 1.8px solid #e7e7e7;
  padding-bottom: 15px;
}

.blog-details .details-img img,
.blog-details .summry-inner img {
  border-radius: 10px;
}

.recent-post .image-wrap img {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}

.recent-post .content {
  padding: 20px 0px;
}

.recent-post .date {
  color: #747474;
  font-size: 14px;
  margin-bottom: 8px;
}

.recent-post .content h3 {
  font-size: 17px;
  margin-bottom: 13px;
}

.recent-post .content p {
  color: #747474;
  margin-bottom: 30px;
}

.recent-post .theme-btn {
  padding: 6px 40px;
}

.recent-post .theme-btn svg {
  margin-left: 10px;
  vertical-align: middle;
}

.recent-post .top-section span {
  color: #b5b5b5;
  font-size: 15px;
}

.recent-post .recent-col {
  margin: 0px 10px;
}

.recent-post .pre-arrow {
  left: 32%;
  bottom: -10%;
}

.recent-post .slick-dots {
  bottom: -48px;
}

.recent-post .next-arrow {
  right: 32%;
  bottom: -10%;
}

/* About Us */
.about-counter {
  position: relative;
  margin-top: 0px;
  z-index: 2;
}

.banner-section.about-banner {
  padding: 0px;
  background-image: unset;
}

.about-banner .banner-text {
  padding-top: 80px;
}

.about-banner .heading,
.about-banner .banner-text p {
  color: #002a5d;
}

.about-banner .banner-text p {
  font-weight: 400;
}

.about-counter .aboutC-inner {
  background: #001e3d;
  border-radius: 10px;
  padding: 15px;
  background-image: url(../images/aboutB-bg.webp);
  max-width: 1066px;
  background-size: cover;
}

.about-counter .about-Ctext p {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.about-counter .Acounter-inner {
  text-align: center;
  color: #fff;
  position: relative;
}

.about-counter .Acounter-inner:after {
  content: "";
  background-image: url(../images/aboutC-icon.webp);
  position: absolute;
  right: -37px;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  top: 17px;
}

.about-counter .Acounter-inner.last-inner:after {
  content: "";
  display: none;
}

.about-counter .count-up {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 7px;
}

.about-counter .Acounter-inner h4 {
  font-size: 17px;
  margin: 0px;
  font-weight: 100;
}

.about-counter .Acounter-inner .counter-count {
  font-size: 30px;
  font-weight: 600;
  margin: 0px;
}

.about-counter .Acounter-inner strong {
  font-size: 32px;
  color: #00B6CE;
  font-weight: 600;
  line-height: 32px;
}

.about-counter .Acounter-inner span {
  color: #fff;
}

.about-counter .counter {
  padding: 20px 0px;
}

.who-section .top-section .heading {
  margin-bottom: 40px;
  position: relative;
}

.who-section .top-section .heading:after {
  content: "About";
  position: absolute;
  bottom: -99px;
  font-size: 130px;
  color: #f4f4f4;
  left: 30%;
  z-index: -1;
  letter-spacing: 4.5px;
}

.who-section .about-circle {
  width: 150px;
  height: 150px;
  display: block;
  background: #00B6CE;
  border-radius: 50%;
  margin: 0 auto;
}

.who-section p {
  line-height: 1.5;
  color: #000000;
  font-weight: 400;
}

.who-section .about-quotes img {
  margin: 0 auto;
  position: relative;
  width: 70px;
  top: -32px;
}

.about-quotes {
  margin-top: -100px;
}

.who-section {
  position: relative;
  z-index: 1;
  padding-bottom: 0px;
}

.whats-section .heading {
  margin-bottom: 20px;
}

.whats-inner {
  background: #00b6ce1f;
  padding: 20px;
  background-clip: padding-box;
  border: 1.5px solid #00B6CE;
  position: relative;
  border-radius: 10px;
  min-height: 220px;
  text-align: center;
}

.whats-inner .icon-verlay {
  width: 100px;
  height: 10px;
  position: absolute;
  background: #fff;
  left: 35%;
  top: -8px;
  z-index: 1;
}

.whats-inner p {
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0px;
}

.whats-inner h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -25px;
}

.whats-inner .icon-wraps {
  width: 70px;
  height: 70px;
  background: #2C2B2F;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: -54px;
  z-index: 2;
}

.whats-inner .icon-wraps img {
  width: 32px;
  margin: 0 auto;
}

.whats-section .top-section {
  margin-bottom: 50px;
}

.whats-inner .icon-wraps:after,
.whats-inner .icon-wraps:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00B6CE;
  right: -17px;
  position: relative;
  top: -2px;
}

.whats-inner .icon-wraps:before {
  right: 0px;
  left: -17px;
}

.whats-section {
  max-width: 1100px;
  margin: 0 auto;
}

.about-mision .mision-col {
  display: flex;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  cursor: pointer;
  min-height: 120px;
  background: #fff;
}

.about-mision .left {
  width: 35%;
}

.about-mision .right {
  width: 75%;
}

.about-mision .mission-content {
  padding: 15px;
  position: relative;
}

.about-mision .img-inner img,
.about-mision .img-inner {
  height: 100%;
  object-fit: cover;
}

.about-mision .img-inner img {
  border-radius: 10px 0px 0px 10px;
}

.about-mision .mission-content p {
  margin-bottom: 0px;
  font-size: 13px;
}

.about-mision .mission-content h4 {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.about-mision .mission-content img {
  margin-bottom: 10px;
}

.about-mision .arrow-icon {
  background-color: #00B6CE;
  position: absolute;
  right: 0;
  top: 0;
  padding: 3px 18px;
  box-shadow: 0 0 5px inset rgb(3 146 0 / 37%);
  border-radius: 0px 10px;
  color: #fff;
}

.about-mision .mision-inner {
  position: relative;
  background-image: url(../images/misison-bg.webp);
  padding: 40px;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-mision .top-section span {
  color: #fff;
}

.value-inner h4 {
  font-size: 19px;
  color: #00B6CE;
  font-weight: 600;
  margin-bottom: 4px;
}

.value-inner p {
  margin-bottom: 0px;
  color: #767676;
  font-size: 14px;
}

.value-inner .content {
  padding: 12px 10px;
  text-align: center;
}

.value-inner {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  margin-bottom: 40px;
  min-height: 225px;
  position: relative;
}

.overlay-section,
.investor-wrap .green-overlay {
  position: absolute;
  width: 99px;
  height: 7px;
  background-color: #fff;
  left: 31%;
  bottom: -6px;
  z-index: 1;
}

.investor-wrap .green-overlay {
  left: 41%;
  top: -6px;
  width: 200px;
}

.overlay-section::after,
.overlay-section::before,
.investor-wrap .green-overlay:after,
.investor-wrap .green-overlay:before {
  content: "";
  background-color: #e5e5e5;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  right: 0;
  position: absolute;
  top: -4px;
}

.overlay-section::before,
.investor-wrap .green-overlay:before {
  right: auto;
  left: 0px;
}

.investor-wrap .green-overlay:after,
.investor-wrap .green-overlay:before {
  top: 0px;
  background-color: #00B7CE;
}

.value-columns {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.value-columns .row {
  justify-content: center;
}

.grey-title {
  color: #b5b5b5;
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
}

.about-inverstor p {
  padding-top: 0px;
}

.about-inverstor .investor-bg {
  padding: 40px;
}

.about-inverstor .investor-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.life-col-inner {
  position: relative;
  margin: 0px 10px;
}

.life-col-inner img {
  width: 100%;
  border-radius: 10px;
}

.life-col-inner .date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00B7CE;
  padding: 3px 10px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0px 10px 0px 0px;
  font-size: 16px;
  box-shadow: 0 0 5px inset rgb(3 146 0 / 37%);
  color:#fff;
}

.life-col-inner .date svg {
  margin-left: 10px;
}

.life-Propbitz .slick-dots,
.interior-section .slick-dots {
  bottom: -25%;
}

.life-Propbitz .pre-arrow,
.interior-section .pre-arrow {
  left: 40%;
  bottom: -25%;
}

.life-Propbitz .next-arrow,
.interior-section .next-arrow {
  right: 40%;
  bottom: -25%;
}

.interior-section .col-inner {
  margin: 0px 10px;
}

.interior-section {
  padding: 60px 0px;
}

.founders-section .founder-inner img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto;
}

.founders-section .founder-inner p {
  font-weight: 500;
  margin: 0px;
  font-size: 14px;
  padding-top: 8px;
  text-align: center;
}

.founders-section .active .founder-inner img {
  border: 2px solid #fff;
  outline: 2px solid #00B6CE;
}

.founders-section .nav-tabs {
  border-bottom: 0px solid #dee2e6;
}

.founders-section .nav-tabs .nav-item.show .nav-link,
.founders-section .nav-tabs .nav-link.active,
.founders-section .nav-tabs .nav-link:hover {
  color: #495057;
  background-color: transparent;
  border-color: transparent;
}

.founders-section .heading-wraps {
  padding-left: 25px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.founders-section .founders-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #00b6ce1f;
}

.founders-section .founder-tabber {
  padding: 40px 20px;
}

.founders-section .tab-content {
  padding-top: 40px;
}

.founders-section .nav-tabs li {
  width: 20%;
}

.founder-details {
  display: flex;
  align-items: center;
}

.founder-details .founder-img {
  width: 30%;
  position: relative;
}

.founder-details .details {
  display: flex;
}

.founder-details .left,
.founder-details .right {
  width: 50%;
}

.founder-details .right {
  padding-left: 20px;
}

.founder-details .founder-content {
  width: 70%;
  padding-left: 20px;
}

.founder-details .name {
  font-weight: 600;
}

.founder-details .des {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 500;
}

.founder-details .details p span {
  font-weight: 500;
}

.founder-details .details p {
  font-size: 14px;
}

.founder-details .right ul {
  list-style: unset;
  padding-left: 17px;
}

.founder-details .right ul p {
  margin: 0px;
}

.founders-section .ad-name {
  display: flex;
}

.founders-section .ad-name li {
  width: 33%;
}

.founders-section .advisour-inner {
  background-color: #00B6CE;
  padding: 50px 30px;
  border-radius: 0px 0px 0px 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blank-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: -10px;
  left: 10px;
  background: url(../images/border-bg.webp);
  z-index: -1;
  background-size: cover;
  background-position: bottom;
}

.founders-section .blank-overlay2 {
  background: url(../images/border-bg2.webp);
  background-size: cover;
  background-position: top;
  top: 8px;
}

.founders-section .founder-col {
  display: flex;
  flex-wrap: wrap;
}

.founders-section .counter-wrap {
  width: 50%;
  margin-bottom: 30px;
}

.founders-section .counter-wrap h3 {
  font-weight: 600;
  color: #fff;
}

.founders-section .counter-wrap p {
  color: #fff;
  margin: 0px;
}

.founders-section .advisour-inner2 {
  padding-bottom: 0px;
  margin-top: 40px;
  border-radius: 100px 0px 0px 0px;
}

.about-inverstor {
  padding-top: 60px;
}

.enq-wrap {
  top: 55%;
  cursor: pointer;
  left: auto;
  right: -70px;
  position: fixed;
  z-index: 99;
  font-size: 15px;
  width: 170px;
  height: 52px;
  overflow: hidden;
  background-color:#00B6CE;
  color: #ffffff;
  text-align: center;
  transform: rotate(-90deg);
  text-transform: uppercase;
  border-radius: 10px 10px 0px 0px;
}

.enq-wrap > span {
  transform: rotate(180deg);
  display: inline-block;
  color: #ffffff;
  position: relative;
  top: 10px;
}

.image-style {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.image-style:before {
  background-image: linear-gradient(140deg, #fff 0%, #00B6CE 90%, #00B6CE 75%);
  content: "";
  height: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: 1.3s;
  width: 0;
  z-index: 1;
}

.image-style img {
  transition: transform 0.5s ease-in-out;
}

.image-style:hover:after,
.image-style:hover:before {
  height: 100%;
  opacity: 0;
  width: 100%;
}

.image-style:hover img {
  transform: scale(1.08);
}

.image-style:after {
  background-image: linear-gradient(
    140deg,
    #002f67  0%,
    #00B6CE 90%,
    #00B6CE 75%
  );
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  opacity: 0.7;
  position: absolute;
  transition-duration: 1.3s;
  width: 0;
  z-index: 1;
}

/* thank you */
.thank-you {
  position: relative;
  padding: 0px;
  margin-bottom: -80px;
}
.founders-section .advisour-section-right .heading-wraps,
.founders-section .advisour-section-right .founder-inner p{

color:#fff;
}
.thank-you .thank-text {
  position: absolute;
  top: 35%;
  width: 100%;
  text-align: center;
}

.thank-img {
  height: 800px;
}

.thank-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.thank-text .heading {
  color: #00B6CE;
  text-align: center;
  font-size: 70px;
  font-weight: 400;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

.thank-text .text-bg {
  background: url(../images/grdient-box.webp);
  background-size: cover;
}

.thank-text .text-bg p {
  font-size: 18px;
  color: #ffff;
  letter-spacing: 21.5px;
  margin: 0px;
}

.thank-text .text-btn {
  margin-top: 40px;
}

.thank-text .theme-btn svg {
  padding-left: 20px;
}

.thank-text .theme-btn {
  padding: 7px 25px;
}

/* error page */
.error-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.error-inner strong {
  font-size: 23px;
  font-weight: 500;
}

.error-inner p {
  font-size: 13px;
}

.error-btn {
  margin-top: 20px;
}

.error-btn .theme-btn {
  padding: 6px 30px;
}

.error-page {
  position: relative;
  margin-bottom: -100px;
  background: url("../images/error-bg.webp");
  background-size: cover;
  padding-bottom: 0px;
  background-position: left;
}

.error-img img {
  height: 100%;
  width: 39%;
}

.error-img {
  padding-top: 20px;
  height: 250px;
}

.error-inner .heading {
  -webkit-text-stroke: 3px #00B6CE;
  -webkit-text-fill-color: transparent;
  font-size: 150px;
  margin: 0px;
}

/* property details */
.property-details .tabber-area {
  width: 30%;
  float: left;
}

.property-details .content-area {
  width: 70%;
  float: left;
}

.trending-section.detail-trend {
  background-image: unset;
}

/* prouct deatils */
.details-page .slider-nav-thumbnails .slick-track {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  height: 100%;
}

.scroll-navs-box {
  background-color: #2C2B2F;
  width: 100%;
}

.et-hero-tabs-container--top .scroll-navs-box {
  max-width: 735px;
}

.scroll-navs {
  background-color: #222124;
  padding: 10px 10px;
}

.scroll-navs > ul.nav > li > a {
  padding: 6px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 20px;
  text-transform: uppercase;  
  border: 1px solid #222124;

}
.scroll-navs > ul.nav > li > a:hover{
  border: 1px solid #fff;

} 
.scroll-navs > ul.nav > li > a.active {
  border: 1px solid #fff;
  background: #00B6CE;
}

.scroll-navs ul {
  position: relative;
}

.scroll-navs > ul.nav > li {
  margin-right: 10px;
}

.scroll-navs > ul.nav > li:last-child {
  margin-right: 0px;
}

.w-box {
  width: 23%;
}

.w-box .statistics-box {
  padding: 4px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  padding-bottom: 0px;
  border: 1px solid #e8e8e8;
}

.statistics-box:after {
  content: "";
  border-bottom: 1.6px solid #00B6CE;
  position: absolute;
  bottom: -1px;
  width: 182px;
  margin: 0px auto;
  left: 0;
  right: 0px;
}

.details-page .thumbnails-img img {
  margin-bottom: 13px;
  border-radius: 5px;
  cursor: pointer;
  height: 78px;
  object-fit: cover;
}

.details-page .thumbnails-img:last-child img {
  margin-bottom: 0px;
}

.overview-section h4,
.overview-section h5 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: -8px;
}

.overview-section h5 {
  font-weight: 500;
}

.overview-section p {
  line-height: 1.5;
  color: #0f1621;
  font-weight: 300;
}

.statistics-box p {
  color: #767676;
  margin: 0px;
  line-height: 1;
  font-size: 14px;
}

.statistics-box b {
  font-size: 14px;
}

.overview-section .desable-btn {
  background-color: #e6e6e6;
  background-image: unset;
  border-color: #e6e6e6;
}

.details-page .bs-overlay img {
  width: 100%;
}

.addrees-wrap h5 {
  position: relative;
  font-size: 17px;
  margin-bottom: 9px;
}

.addrees-wrap h5:after {
  content: "";
  background: #00B6CE;
  height: 2px;
  display: block;
  width: 81px;
}

.addrees-wrap p {
  color: #767676;
  font-weight: 400;
  margin-bottom: 0;
}

.google-maps img,
.google-maps {
  height: 100%;
}

.details-page .category {
  position: absolute;
  top: 12px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 14px;
}

.details-page .category-pro {
  display: flex;
}

.details-page .category li {
  background-color: #fff;
  padding: 3px 23px;
  border-radius: 30px;
  font-size: 14px;
  margin-right: 10px;
  cursor: pointer;
}

.details-page .category li:last-child {
  margin-right: 0px;
}

.details-page .overlay-items {
  position: relative;
}

.details-page .filter-icon {
  background: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  /* margin-right: 12px; */
  width: auto;
  border: none;
}

.details-page .filter-icon:hover {
  background-color: #00B6CE;
  box-shadow: 0 0 5px inset rgb(3 146 0 / 37%);

}

.details-page .filter-icon:hover img {
  filter: brightness(0) invert(1);
}
.details-page .top-sliders {
  position: relative;
}

.details-page .slide-map {
  position: absolute;
  right: 22px;
  bottom: 31px;
  background: #ffffff;
  border-radius: 30px;
  padding: 6px 22px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in;
}

.details-page .slide-map:hover {
  color: #000;
  transform: scale(1.1);
}

.details-page .slide-map img {
  display: inline;
  vertical-align: middle;
  margin-right: 3px;
}

/* .bs-overlay {
height: 350px;
}
.bs-overlay img{
height: 100%;
} */
/*  */
.et-hero-tabs,
.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  position: relative;
  background: transparent;
}

.et-hero-tabs {
  margin-top: 117px;
}

.et-hero-tabs-container {
  position: absolute;
  bottom: 0;
  background: transparent;
  z-index: 10;
  left: 0;
  /* margin-left: -5%; */
  width: 100%;
}

.et-hero-tabs-container--top {
  position: fixed;
  top: 15%;
  left: 6%;
  max-width: 800px;
  height: 76px;
}

.overvieww-row {
  width: 100%;
}

.et-hero-tab:hover {
  color: white;
  transition: all 0.5s ease;
  background-color: #00B6CE;
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #66b1f1;
  transition: left 0.3s ease;
  display: none;
}

.details-page {
  position: relative;
  padding-bottom: 0px;
}

.lease-items {
  width: 16%;
  margin: 0 6px;
}

.lease-wraps .blank-border {
  width: 23%;
}

.lease-wraps .blank-border img {
  width: 100%;
}

.lease-items .number {
  background: #258cf3;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  line-height: 25px;
  margin: 0 auto;
  font-size: 13px;
  margin-bottom: 5px;
}

.lease-items strong {
  text-align: center;
  display: block;
  font-size: 13px;
}

.lease-wraps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.lease-items p {
  text-align: center;
  margin: 0px;
  color: #767676;
  font-weight: 500;
  line-height: 1;
  font-size: 14px;
}

.box-area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  position: relative;
}

.notification-icon {
  position: absolute;
  top: 6px;
  right: 8px;
}

.box-area .w-box {
  width: 32%;
  margin: 0px 8px;
  margin-bottom: 30px;
  position: relative;
  margin-left: 0px;
}

.box-area .statistics-box p {
  font-size: 12px;
  text-align: left;
  margin-bottom: 3px;
}

.box-area .statistics-box:after {
  bottom: -2px;
}

.box-area .statistics-box b {
  font-size: 13px;
  display: block;
  text-align: left;
  font-weight: 500;
}

.overvieww-row .w-box .statistics-box {
  padding: 7px 10px;
  padding-bottom: 4px;
}

.overvieww-row .lears-area {
  background: #00f72142;
  padding: 6px 5px;
  border-radius: 10px;
}

.overvieww-row .lears-area p {
  font-size: 13px;
  color: #767676;
  text-align: center;
  margin: 0px;
}

.rental-monthly .box-green p {
  margin: 0px;
  font-weight: 400;
  color: #767676;
  line-height: 1.4;
  font-size: 13px;
}

.rental-monthly .box-area .w-box {
  width: 30%;
  margin-bottom: 0px;
}

.rental-monthly .w-box.box-green {
  box-shadow: inset 0 0 15px 0 #c7c7c7;
  padding: 10px 10px;
  border-radius: 10px;
  width: 54%;
  margin-bottom: 0px;
  position: relative;
}

.green-ecllipes {
  position: absolute;
}

.rental-monthly .box-area {
  margin-top: 10px;
}

.rental-monthly .green-ecllipes {
  position: absolute;
  width: 50px;
  right: 0;
  bottom: 0;
}

.prop-bg {
  width: 100%;
  background-image: url("../images/pro-bg.webp");
  padding: 25px 25px;
  border-radius: 10px;
  background-size: cover;
  margin-top: 22px;
  color: #fff;
  background-position: right;
}

.prop-bg .theme-btn {
  margin-top: 10px;
  background: #fff;
  border-color: #fff;
  padding: 8px 33px;
  text-transform: capitalize;
  color: #0F1621;
}

.prop-bg .theme-btn:hover{
  color: #fff;

}

.prop-bg svg {
  margin-left: 20px;
}

.prop-bg .left {
  width: 55%;
}

.prop-bg p {
  color: #fff;
  margin-top: 7px;
  font-weight: 200;
}

.pricing-section {
  display: flex;
  align-items: center;
}

.pricing-section .pricing-left {
  width: 60%;
}

.pricing-inner {
  text-align: center;
  font-size: 13px;
}

.pricing-inner p {
  color: #767676;
  margin: 0px;
  font-weight: 500;
}

.pricning-cate {
  width: 90%;
  position: absolute;
  z-index: -1;
  top: -260%;
  margin: 0 auto;
  left: 12px;
}

.pricing-section .pricing-right {
  width: 40%;
}

.pricing-section .range-slider {
  margin-top: -8px;
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: 100%;
  color: #00B6CE;
  line-height: 20px;
  border-radius: 3px;
  padding: 5px 10px;
  margin-left: 8px;
  top: -51px;
  text-align: right;
  font-weight: 700;
}

.pricing-section .range-items2 {
  width: 50%;
}

.pricing-section .range-items1 {
  width: 50%;
}

.pricing-section .range-area {
  display: flex;
  justify-content: space-between;
}

.pricing-section .range-area p {
  margin: 0px;
  color: #0f1621;
  font-weight: 500;
}

.pricing-section .range-items2 span {
  color: #00B6CE;
  font-weight: 600;
  text-align: center;
  display: block;
}

.financial-wraps .reset-val {
  margin-top: 15px;
}

.pricing-section .reset-icon,
.financial-wraps .reset-icon {
  color: #b0b0b0;
  text-align: right;
  display: block;
  text-decoration: underline !important;
  margin-top: -6px;
}

.pricing-section .range-details {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 7px 0px;
  color: #767676;
  position: relative;
  margin-left: 11px;
}

.pricing-section .top-range {
  margin-top: 16px;
}

.pricing-section .range-details:after {
  content: "";
  position: absolute;
  left: -14px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  top: 5px;
  background: #d2d2d2;
}

.pricing-category {
  position: relative;
}

.pricing-section .range-details.top-range:after {
  background: #8eff92;
}

.pricing-section .range-details.blue-icon:after {
  background: #8ecfff;
}

.pricing-section .range-details.orange-icon:after {
  background: #ffd789;
}

.pricing-section .range-details.navy-icon:after {
  background: #8e99ff;
}

.pricing-section .range-details strong {
  color: #0f1621;
}

.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  /* Black background */
  cursor: pointer;
  border: 4px solid #000;
  /* Black border */
  box-shadow: 1px 0 0 2px #000;
}

.pricing-wraps .overview-section {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem 0px 0rem 0.25rem;
}

.financial-wraps .pricing-section .pricing-left {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.financial-wraps .range-section {
  width: 47%;
  margin-right: 20px;
}

.financial-wraps .pricing-section .range-area p {
  color: #767676;
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
}

.financial-wraps .range-slider__value {
  top: -47px;
  font-weight: 600;
}

.details-page input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  background-image: linear-gradient(#258cf3, #258cf3);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  border: 1px solid #000;
}

[dir="rtl"] input[type="range"] {
  background: #000;
  background-image: linear-gradient(#fff, #fff);
  background-size: 30% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #000;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #258cf3;
  outline: 3px solid #258cf3;
  border: 2px solid #fff;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #000;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #258cf3;
  outline: 3px solid #258cf3;
  border: 2px solid #fff;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #258cf3;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #258cf3;
  outline: 3px solid #258cf3;
  border: 2px solid #fff;
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #000;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #000;
}

input[type="range"]::-ms-thumb:hover {
  background: #000;
}

/* Input Track */
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type="range"]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.financial-wraps .financials-roi {
  display: flex;
  margin: 35px 0px;
  margin-top: 10px;
}

.financial-wraps .overview-section p {
  margin: 0px;
}

.financial-wraps .financials-col {
  width: 25%;
  position: relative;
  text-align: center;
  padding: 0px 10px;
}

.financial-wraps .financials-col:after {
  content: "";
  background-color: #e8e8e8;
  height: 41px;
  width: 2px;
  display: block;
  position: absolute;
  right: 0;
  top: 7px;
}

.financial-wraps .financials-col:last-child:after {
  display: none;
}

.financials-col .content-wrap span {
  color: #767676;
  font-size: 13px;
}

.financials-col .text-wraps strong {
  font-size: 13px;
}

.financial-wraps .lears-area .note-cate {
  vertical-align: middle;
  margin-right: 4px;
}

.financial-wraps {
  border: 1px solid #dee2e6;
  border-top: 0px;
  border-bottom: 0px;
}

.financial-model .model-heading {
  display: flex;
  justify-content: space-between;
  padding: 0px 16px;
}

.financial-model .theme-btn svg {
  margin-right: 10px;
}

.financial-model .theme-btn {
  padding: 4px 45px;
}

.financial-model table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  font-size: 12px;
  overflow-x: scroll;
}

.financial-model table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

.financial-model table tr {
  background-color: #fff;
  border: 1px solid #f4f4f4;
}

.financial-model table th,
.financial-model table td {
  padding: 0.625em;
  text-align: center;
  color: #767676;
}

.financial-model table .net-row td {
  color: #258cf3;
}

.financial-model table th:first-child,
.financial-model table td:first-child {
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  color: #0f1621;
  font-weight: 500;
}

.financial-model table th:first-child {
  border: 1px solid #e0e0e0;
}

.financial-model table th {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 600;
  background: #f5f5f5;
  border-right: 1px solid #e0e0e0;
}

.modal-bottom .prop-bg p {
  margin: 0px;
}

.modal-bottom .prop-bg ul {
  list-style: disc;
  padding-left: 18px;
}

.modal-bottom .prop-bg {
  background-image: url(../images/f-bg.webp);
}

.modal-bottom .prop-bg .left {
  width: 70%;
}

.details-page .park-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
  margin-top: 15px;
}

.details-page .right-sec .park-hr {
  border-bottom: 1.2px solid #e8e8e8;
  margin-bottom: 16px;
  margin-top: 0px;
  margin-left: -15px;
  margin-right: -15px;
}

.details-page .era-heading h4 {
  font-size: 16px;
  margin: 0px;
  margin-bottom: 4px;
}

.details-page .era-heading p {
  color: #767676;
  margin: 0px;
}

.details-page .era-content button {
  border: 1px solid #0f1621;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 14px;
  white-space: nowrap;
}

.details-page .era-content button:hover {
  background-color: #00B7CE;
  color: #fff;
  border-color: #00B7CE;
}

.details-page .category li:hover {
  background-color: #00B7CE;
  color: #fff;
}

.details-page .era-content button:hover img {
  filter: brightness(0) invert(1);
}

.details-page .era-content img {
  vertical-align: baseline;
  margin-right: 3px;
}

.details-page .park-col {
  display: flex;
  justify-content: space-between;
  margin: 14px 0px;
}

.details-page .park-col p {
  color: #767676;
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
}

.details-page .park-col strong {
  color: #0f1621;
  font-weight: 500;
  /* font-family: "Gilroy-Bold"; */
}

.details-page .park-col img {
  margin-right: 5px;
}

.park-slider .range-items1 p {
  font-weight: 700;
  margin: 0px;
}

.park-slider {
  padding-top: 30px;
}

.park-slider .range-slider__value {
  color: #0f1621;
}

.park-slider .range-section {
  position: relative;
}

.park-slider .reset-icon {
  color: #0f1621;
  text-align: right;
  display: block;
  font-weight: 400;
  margin-top: -29px;
  font-size: 14px;
}

.disclaimer-section .disclaimer-inner img {
  display: inline;
  margin-right: 3px;
}

.disclaimer-section p {
  margin: 0px;
  color: #767676;
  font-size: 12px;
}

.disclaimer-section .disclaimer-inner p {
  text-decoration: underline;
}

.disclaimer-section {
  display: flex;
  padding: 20px 0px;
  padding-top: 10px;
}

.disclaimer-section .disclaimer-inner {
  width: 25%;
}

.disclaimer-section .disclaimer-content {
  width: 70%;
}

.disclaimer-section .quotes-img {
  width: 140%;
  height: 83px;
}

.disclaimer-section .disclaimer-bg {
  position: relative;
}

.disclaimer-section .quotes-content {
  position: absolute;
  top: -4%;
  padding: 20px 0px 20px 27px;
  left: 10%;
}

.disclaimer-section .disclaimer-btn {
  text-align: center;
}

.details-page .disclaimer-btn {
  text-align: center;
}

.details-page .disclaimer-btn .theme-btn {
  padding: 5px 75px;
  width: 100%;
}

.details-page .disclaimer-btn .theme-btn:hover {
  color: #fff;
}

.details-page .right-sec {
  border: 1px solid #e8e8e8;
  padding: 15px;
  border-radius: 5px;
  position: relative;
  padding-top: 36px;
}

.details-page .open-icon p {
  margin: 0px;
  text-align: right;
}

.details-page .open-icon {
  position: absolute;
  right: 0;
  top: 0;
  background: rgb(0 182 206 / 26%);
  border-radius: 500px 0px 0px 4000px;
  padding: 11px;
  width: 21%;
}

.estae-section {
  padding: 20px;
  background: #e8e8e861;
  border-radius: 5px;
  margin-top: 30px;
  border: 1px solid #e8e8e8;
}

.estae-section h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.estae-section .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-right: 1.5px solid #cecece;
}

.estae-section .iti {
  width: 100%;
}

.estae-section #mobile_code {
  border: 0px;
  background: #f6f6f6;
  border-bottom: 1.5px solid #c8c2c2;
  border-radius: 0px;
  width: 100%;
}

.estae-section p {
  color: #767676;
  margin-bottom: 20px;
  font-weight: 300;
}

.estae-section .btn-wraps {
  text-align: center;
  margin: 0px;
  margin-top: 20px;
}

.btn-wraps .theme-btn {
  opacity: 0.4;
}

.btn-wraps .theme-btn:hover {
  color: #fff;
}

.details-page  .btn-wraps .theme-btn:hover{
opacity: 1;

}
.details-page .appenddots {
  background: #0f1621b8;
  width: 29%;
  height: 31px;
  position: absolute;
  top: auto;
  bottom: 0%;
  margin: 0 auto;
  left: 36%;
  border-radius: 10px 10px 0px 0px;
}

.details-page .arrow {
  color: #ffff;
  bottom: 2px;
}

.details-page .appenddots .pre-arrow {
  left: 5%;
}

.details-page .videos-slider-2 .slick-dots {
  bottom: 0px;
  z-index: 1;
}

.details-page .videos-slider-2 .slick-dots li button {
  background-color: #fff;
}

.details-page .appenddots .next-arrow {
  right: 5%;
}

.details-page .videos-slider-2 .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0px 8px;
}

.details-page .videos-slider-2 li.slick-active {
  border: 1px solid transparent;
}

.details-page .videos-slider-2 li.slick-active button {
  background-color: #11d718;
}

/* #sidebar-nav.sticky {
  position: fixed;
  top: 92px;
  z-index: 3;
  background: #fff;
} */

.details-page .adress-wraps {
  align-items: center;
}

.overview-border {
  border: 1px solid #dee2e6;
  border-top: 0px;
  border-bottom: 0px;
}

.right-section.blog-scroll {
  height: 68vh;
  overflow-y: scroll;
}

/* @media screen and (max-width: 200px) {
.financial-model table {
border: 0;
}
.financial-model table caption {
font-size: 1.3em;
}
.financial-model table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.financial-model table tr {
border-bottom: 3px solid #ddd;
display: block;
margin-bottom: 0.625em;
}
.financial-model table td {
border-bottom: 1px solid #ddd;
display: block;
font-size: 0.8em;
text-align: right;
}
.financial-model table td::before {
content: attr(data-label);
float: left;
font-weight: bold;
text-transform: uppercase;
}
.financial-model table td:last-child {
border-bottom: 0;
}
} */
/* property Listing */
.property-listing .property-filter {
  display: flex;
  justify-content: center;
}

.property-listing .property-filter a {
  background-color: #fff;
  /* display: inline-block; */
  padding: 5px 31px;
  border-radius: 30px;
  border: 2px solid #0f1621;
  color: #0f1621;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-listing .property-filter a:hover {
  background-image: linear-gradient(
    140deg,
    #8aff2e 0%,
    #00B6CE 90%,
    #00B6CE 75%
  );
  color: #fff;
}

.property-listing .property-filter a:hover img {
  filter: brightness(0) invert(1);
}

.property-listing .property-filter .active a {
    /* background-image: linear-gradient(140deg, #8aff2e 0%, #00B6CE 90%, #00B6CE 75%); */
    background-color: #00B6CE;
    color:#fff;
}

.property-listing .property-filter li {
  margin-right: 20px;
}

.property-listing .property-filter li:last-child {
  margin-right: 0px;
}

.property-listing .property-filter img {
  display: inline;
  margin-left: 20px;
  vertical-align: middle;
}

.property-listing .filter-row {
  margin: 40px 0px;
  padding: 0px 20px;
}

.property-listing .slider-area {
  padding: 0px 0px;
}

.property-listing .fillter-top {
  display: flex;
      flex-wrap: wrap;
      min-height: 85px;
      align-items: center;
      position: relative;
      background-color: rgb(0 182 206 / 25%);
      border-bottom: 1.5px solid #00B6CE;
}

.property-listing .fillter-top .left,
.property-listing .fillter-top .middle,
.property-listing .fillter-top .right {
  width: 49%;
  padding: 0px 0px;
  position: relative;
}
.property-listing .blank-spacec {
  height: 100px;
  width: 1.3px;
  content: "";
  position: relative;
  background-color: #00B6CE;
  right: 0;
  top: 0px;
}
/* .property-listing .fillter-top .left,
.property-listing .fillter-top .middle {
  border-right: 2px solid #00B6CE;
} */

.property-listing .content {
  padding: 0px;
}

.property-listing .fillter-top li {
  position: relative;
  font-size: 12px;
  text-align: left;
  padding-left: 5px;
}

.property-listing .fillter-top li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #000;
  top: 12px;
  position: relative;
  border-radius: 50%;
  left: -9px;
}

.property-listing .fillter-top p {
  font-size: 11px;
  margin: 0px;
  color: #767676;
}

.property-listing .fillter-top strong {
  font-size: 13px;
  display: block;
}

.property-listing .fillter-top ul {
  padding-left: 10px;
}

.property-listing .content img {
  display: inline;
  width: 8px;
}

.property-listing .fillter-items {
  display: flex;
  padding: 3px 0px;
}

.property-listing .col1,
.property-listing .col2 {
  width: 50%;
}

.property-listing .col1 p {
  font-size: 13px;
  margin: 0px;
}

.property-listing .col2 strong {
  text-align: right;
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.fillter-bottom {
  padding: 15px 12px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
}

.property-listing .fillter-bottom {
  min-height: 78px;
}

.property-listing .content .fillter-items img {
  width: 10px;
  margin-right: 5px;
}

.property-listing .fillter-btn p {
  color: #767676;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 300;
  min-height: 33px;
}

.property-listing .fillter-btn {
  padding: 12px 12px 14px 10px;
}

.property-listing .fillter-btn .theme-btn {
  font-size: 13px;
}

.property-listing .fillter-btn  .invest-btn .theme-btn{
  color: #fff;


}

.property-listing .fillter-btn a {
  font-weight: 500;
  color: #195C5F;
}

.property-listing .arrow-container .next-arrow {
  right: 5%;
}

.property-listing .arrow-container .arrow {
  color: #fff;
  bottom: 4%;
}

.property-listing .arrow-container .pre-arrow {
  left: 5%;
}

.property-listing .slick-dots li.slick-active button {
  background-color: #00B6CE;
}

.property-listing .trending-slider {
  margin: 0px 0px;
  margin-bottom: 30px;
}

.property-listing {
  background-image: unset;
  padding-bottom: 0px;
  padding-top: 0px;
}

.property-listing .category-item li.hot-pic {
  background-image: url(../images/hot.webp);
  color: #fff;
}

.property-listing .category-item li.blue-pic {
  background-image: url(../images/blue.webp);
  color: #fff;
}

.filter-bg .prop-bg .left {
  text-align: left;
  width: 70%;
}

.filter-bg .prop-bg strong {
  font-size: 20px;
  line-height: 1;
}

.filter-bg .filter-bg2 {
  background-image: url(../images/filter-bicon.webp);
}

.filter-bg .filter-bg1 strong {
  font-weight: 400;
}

.filter-bg .filter-bg1 {
  background-image: url(../images/filter-bicon2.webp);
}

.filter-bg .theme-btn.blue-btn {
  background: #2e97ff;
  border-color: #2e97ff;
  border-radius: 5px;
  color: #ffff;
}

.filter-bg .prop-bg {
  margin-top: 0px;
}

.filter-bg {
  margin-bottom: 30px;
}

.property-listing .filter-btns {
  text-align: center;
}

.property-listing .filter-btns .theme-btn {
  background-color: #e6e6e6;
  background-image: unset;
  border-color: #e6e6e6;
  box-shadow: unset;
  color: #2C2B2F;
}

.property-listing .filter-btns .theme-btn:hover{

  color: #fff;
}

.filter-data {
  display: none;
}

.property-listing .filter-btns svg {
  margin-left: 13px;
}

.listing-wraps .list.active img,
.listing-wraps .list.active,
.listing-wraps .prelease-wraps .active-item {
  color: #00B6CE;
  filter: invert(38%) sepia(79%) saturate(2958%) hue-rotate(73deg)
    brightness(101%) contrast(99%);
}

.listing-wraps .list.active:before,
.listing-wraps .prelease-wraps .active-item:before {
  content: "";
  position: absolute;
  background: #00B6CE;
  width: 100%;
  height: 1px;
  bottom: -8px;
}

.listing-wraps .listing-col {
  display: flex;
  background: #00274f;
  padding: 13px 20px;
  border-radius: 60px;
  align-items: center;
  padding-right: 10px;
}

.listing-wraps .listing-cols {
  display: flex;
  justify-content: space-between;
  background: #001e3d;
  padding: 13px 23px;
  border-radius: 60px 0px 0px 60px;
  width: 77%;
  align-items: center;
}

.listing-wraps .prelease-section {
  width: 23%;
  margin-left: -10px;
}

.listing-wraps .blank-space {
  position: absolute;
  width: 2px;
  height: 36px;
  background: #001730;
  left: 55%;
  top: 0;
}

.listing-wraps .shows-wraps {
  border: 1px solid #e7e7e7;
  border-radius: 60px 60px 0px 0px;
}

.listing-wraps .shows-wraps h4 span {
  color: #00B6CE;
}

.listing-wraps .shows-wraps h4 {
  text-align: center;
  margin: 0px;
  padding: 20px 0px;
}

.listing-wraps .prelease-wraps {
  background: #00274f;
  border-radius: 60px;
  padding: 9px 15px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.listing-wraps .prelease-wraps p {
  margin: 0px;
  color: #fff;
  font-weight: 100;
}

.listing-wraps .prelease-wraps img {
  display: inline;
  margin-right: 4px;
  vertical-align: bottom;
}

.listing-wraps .item1,
.listing-wraps .item2 {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.listing-wraps .prelease-inner {
  background: #001e3d;
  padding: 7px 16px;
  border-radius: 60px;
  border: 1px solid #ffffff;
}

.listing-wraps select + svg {
  float: right;
  margin-top: -18px;
  margin-right: 9px;
  pointer-events: none;
  color: #fff;
}

.listing-wraps .listing-items {
  width: 17%;
  position: relative;
}

.listing-wraps select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: transparent;
  border: transparent;
  color: #fff;
  font-weight: 100;
  position: relative;
  padding: 0px 13px;
  height: auto;
  font-size: 14px;
}

.listing-wraps .listing-items:after {
  content: "";
  height: 42px;
  display: inline-block;
  width: 1px;
  background: #00274f;
  position: absolute;
  top: -8px;
  z-index: 1;
  right: 0;
}

.listing-wraps .listing-items:last-child:after {
  content: "";
  display: none;
}

.listing-wraps .form-control option {
  color: #0f1621;
}

.listing-wraps .form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: unset;
}

.listing-wraps .listing-items img {
  display: inline;
  position: absolute;
  top: 2px;
  left: -9px;
}

/*  */
.signup-section .heading {
  font-size: 28px;
  margin-bottom: 15px;
}

.signup-form.login-page {
  padding-top: 10px;
}

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

.signup-section .signup-inner {
  text-align: center;
}

.signup-section .sign-btn {
  background: transparent;
  padding: 6px 20px;
  border-radius: 10px;
  font-weight: 500;
  border: 2px solid #000000;
}

.signup-section .sign-btn img {
  vertical-align: middle;
  margin-right: 15px;
}

.signup-section .sign-btn:hover {
  color: #fff;
  background-image: unset;
  border-color: #fff;
  background-color: #00B7CE;
}

.signup-section .form-control {
  height: auto;
  border: 1.5px solid #000000;
  background: #ffffff70;
  font-size: 15px;
}

.signup-section .form-control:focus {
  box-shadow: 0 0 0 0.2rem #00B6CE;
  border-color: transparent;
}

.signup-section .form-check-label {
  display: inline;
  font-weight: 400;
  font-size: 15px;
}

.signup-section label {
  color: #0f1621;
  margin-bottom: 3px;
  display: block;
  font-weight: 500;
  font-size: 15px;
}

.signup-section .form-wraps {
  text-align: center;
  margin-top: 20px;
}

.signup-section .theme-btn {
  padding: 7px 55px;
}

.signup-section .theme-btn:hover span {
  color: #fff;
}

.signup-section strong {
  display: block;
  text-align: center;
  margin: 10px 0px;
  font-weight: 500;
}
.signup-section strong a{
  color: #185C5D;
  font-weight: 600;
}
.signup-section .pvy-wraps {
  color: #767676;
  margin: 0px;
  text-align: center;
  font-size: 14px;
}

.signup-section .pvy-wraps a {
  color: #185C5D;
  font-weight: 600;
}

.signup-page {
  background: #fffffff0;
  border-radius: 10px;
  padding: 35px 60px;
  padding-bottom: 15px;
}

.signup-section {
  background: url("../images/sign-bg.webp");
  background-size: cover;
}

.or-wraps {
  max-width: 300px;
  margin: 0 auto;
  padding: 15px 0px;
}

.signup-section .form-group {
  margin-bottom: 8px;
}

.or-wraps p {
  margin: 0px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
}

.or-wraps p:before,
.or-wraps p:after {
  content: "";
  background: #258cf3;
  height: 1.5px;
  width: 200px;
  position: absolute;
  left: -73px;
  top: 9px;
}

.or-wraps p:after {
  left: auto;
  right: -73px;
}

.signup-section .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-right: 1.5px solid #000000;
}

.no-footer .footer {
  display: none;
}

.signup-section .login-page .form-group {
  margin-bottom: 25px;
}

.signup-section .login-page .forget-items {
  color: #767676;
  display: block;
  text-align: center;
  text-decoration: underline !important;
  margin-bottom: 70px;
}

.signup-section .login-page .iti {
  width: 100%;
}

.signup-section .form-tabber li a {
  padding: 0px;
  border: 0px;
  color: #0f1621;
}

.signup-section .form-tabber {
  margin-bottom: 15px;
  padding-left: 15px;
}

.signup-section .form-tabber li {
  position: relative;
  margin-right: 37px;
}

.signup-section .form-tabber li .active:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #767676;
  position: absolute;
  top: 11px;
  left: -11px;
  border-radius: 50%;
}

.signup-section .form-tabber li:last-child {
  margin-right: 0px;
}

.signup-section .form-tabber li a.active {
  font-weight: 700;
  font-style: italic;
  background: url("../images/border-icon.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 4px;
}

#otp_Resend_button {
  color: #d15757;
  font-weight: 500;
}

.otp-text {
  color: #000;
  text-transform: capitalize;
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.otp-page .number {
  font-weight: 600;
  font-size: 19px;
}

.signup-section .otp-page .theme-btn {
  font-weight: 600;
}

.otp-page h4 {
  font-size: 20px;
  line-height: 1;
}

.otp-text:after {
  position: absolute;
  content: "";
  width: 16%;
  height: 1px;
  background-color: #00B7CE;
  left: 50%;
  top: 120%;
  transform: translate(-50%, -50%);
}

#Login_form .form-control {
  display: inline-block;
  height: 30px;
  text-align: center;
  border-top: none;
  font-family: "Kanit", sans-serif;
  line-height: 26px;
  color: #000;
  border-radius: 0px;
  border: 0px;
  border-bottom: 2px solid #0e0e0e;
  width: 40px;
  margin: auto 8px;
  font-weight: 900;
  font-size: 20px;
  padding: 0;
  background: transparent;
}

#Login_form .form-control:focus {
  border-color: transparent;
}

.otp-form {
  text-align: center;
  margin-top: 40px;
}

#Login_form .resend-text-bold {
  color: #767676;
}

#Login_form .submit_btn {
  margin: 20px 0px;
  margin-top: 80px;
}

#Login_form .otp-form {
  text-align: center;
}

.signup-section .otp-page .heading {
  font-size: 28px;
  margin-bottom: 15px;
}

.otp-page .resend-code {
  margin-bottom: 70px;
}

.signup-section .otp-page .pvy-wraps {
  font-size: 13px;
}

.signup-section .otp-page {
  padding: 35px 20px;
}

.banner-section input[type="number"]::-webkit-outer-spin-button,
.banner-section input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.banner-section input[type="number"]:invalid,
.banner-section input[type="number"]:out-of-range {
  border: 2px solid #ff6347;
}

.banner-section input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
}

.banner-section input[type="range"]:focus {
  outline: none;
}

.banner-section input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px #00B6CE;
  outline: 2px solid #00B6CE;
}

.banner-section input[type="range"]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px #00B6CE;
  outline: 2px solid #00B6CE;
}

.banner-section input[type="range"]::-ms-thumb {
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid white;
  cursor: pointer;
  border-radius: 50%;
  outline: 2px solid #00B6CE;
}

.thank-text .theme-btn:hover {
  color: #fff;
}

.contact-form .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-right: 1.5px solid #cecece;
}

.contact-form
  .iti--allow-dropdown
  .iti__flag-container:hover
  .iti__selected-flag {
  background-color: transparent;
}

.contact-form .iti {
  width: 100%;
}

.contact-form .form-control:focus,
.contact-form textarea#message:focus {
  box-shadow: 0px 0px 10px #00B6CE;
  border-color: transparent;
}

.blog-details .details-img img {
  width: 100%;
}

.details-bottom .summry-left ul {
  flex-direction: column;
}
.overview-section .img-responsive {
  width: 100%;
}
.details-page .slick-slide {
  height: auto;
}

.enquiry-form .form-field {
  margin-bottom: 12px;
}

.enquiry-form .modal-header {
  border: 0px;
  position: absolute;
  z-index: 1;
  right: 0;
  color: #fff;
  padding: 7px;
  margin: 0px;
}
.enquiry-form .modal-body {
  padding: 0px;
}
.enquiry-form .theme-btn:hover {
  color: #fff;
}
.enquiry-form .modal-content {
  border-radius: 10px;
  border: 2px solid #00B6CE;
}
form#enquiryFormpopup {
  padding: 20px;
  /* border: 2px solid #00B6CE; */
}

.enquiry-form .svg-inline--fa {
  color: #fff;
}

.enquiry-form .close {
  opacity: 1;
}

/* .enquiry-form .form-content {
    text-align: center;
    background-image: linear-gradient(140deg, #8AFF2E 0%, #00B6CE 90%, #00B6CE 75%);
    padding: 20px;
} */

.enquiry-form .form-content img {
  max-width: 100px;
  margin: 0 auto;
}
.enquiry-form .form-btn {
  text-align: center;
}
.enquiry-form .form-control,
.enquiry-form select {
  /* box-shadow: none; */
  height: 33px;
  border: 1px solid #000;
  /* border-bottom: 2px solid rgba(0 0 0 /50%); */
  border-radius: 5px;
  /* color: rgba(255, 255, 255, 0.64); */
  color: #000;
  font-size: 10px;
  font-style: normal;
  /* font-weight: 500; */
  line-height: 1.2;
  letter-spacing: 0.84px;
  padding-left: 3px;
  width: 100%;
  text-transform: uppercase;
  padding-left: 10px;
}
.enquiry-form .form-control:focus,
.enquiry-form select:focus {
  outline: unset;
  box-shadow: 0px 0px 10px #00B6CE;
  border-color: transparent;
}

.activated {
  background-color: #11d718 !important;
}

.activated img {
  filter: brightness(0) invert(1) !important;
}

.founder-img-linkdin {
  background-color: #007bff;
  width: 27px;
  border-radius: 50%;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.4px solid black;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.founder-img-linkdin svg {
  color: #fff;
}

.invest-btn button:hover {
  color: #8aff2e;
}

.line-wrapper-latest {
  position: relative;
}
.line-wrapper-latest .latest-inner-line {
  position: absolute;
  background: #e7e7e7;
  left: -1px;
  width: 2px;
  top: 0px;
  bottom: 0px;
}

.latest-inner-fixer {
  height: 100%;
}

.latest-inner.latest-right:last-child {
  margin-bottom: 0;
}

.activated-range {
  background-color: #00B6CE !important;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.adress-wraps .d-flex {
  margin-bottom: 15px;
}

.addrees-wrap h5 {
  margin-bottom: 5px;
}

/* .sticky-below-nav{
  position: fixed;
    top: 70px;
    z-index: 9;
    width: 60%;
} */

.login-modal-body h5 {
  text-align: center;
  margin-top: 50px;
}
.login-modal-body .form-btn {
  margin: 50px 0;
}

.enquiry-form .form-control::placeholder {
  color: #000;
}

.enquiry-modal-background {
  background: url(../images/modal-img.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.enquiry-modal-background .top-btn-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.enquiry-modal-background .top-btn-logo img {
  width: 30px;
  height: auto;
}

.enquiry-modal-background .modal-enq-form {
  background-color: #fff;
  opacity: 0.9;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.modal-enq-form .enq-modalform-heading {
  padding-top: 40px;
  text-align: center;
}
.modal-enq-form .form-field label {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
}
.modal-enq-form .enq-modalhead-border {
  max-width: 100%;
  height: auto;
  width: 40%;
  display: block;
  margin: auto;
}
.enq-modal-dialog {
  max-width: 800px !important;
  width: 800px;
  display: flex;
  align-items: center;
  height: 100%;
}
.enq-modal-dialog svg:not(:host).svg-inline--fa,
.enq-modal-dialog svg:not(:root).svg-inline--fa {
  color: #00000075;
}

.contact-form .heading br {
  display: none;
}

.prop-bg strong {
  font-weight: 500;
}

.details-page #enquiryFormpopup {
  padding: 0px;
}

.detail-trend .img {
  min-height: 280px;
  height: 280px;
}

.trending-section.detail-trend .img img {
  height: 100%;
  object-fit: cover;
}

.facility-col ul {
  list-style: none;
  padding-left: 5px;
}

.facility-col ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}

.facility-col ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 5px;
  height: 11px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #00B6CE;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

#sidebar-nav .era-heading {
  width: 70%;
}

#sidebar-nav .era-content {
  width: 30%;
}

.trending-section.detail-trend .content h4 {
  min-height: auto;
}

.trending-section.detail-trend .content {
  min-height: auto;
}

.intelligence-section .box-items {
  min-height: 100px;
}

.intelligence-section .slick-dots li.slick-active button {
  line-height: 18px;
}

#overview {
  width: 100%;
}


 .mobile-arrow {
  background-color: #00B6CE;
  border: 1px solid #00B6CE;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  margin-top: 0px;
  color: #fff;
  top: 45%;
}

.mobile-arrow.pre-arrow{
  left: 10px;

}
.mobile-arrow.next-arrow{
right:10px;

}
.mobile-arrow svg{

  color:#fff;
}




.latest-blog .content-wrap .heading,
 .blog-listing .content-wrap .heading{
  font-family: Outfit, sans-serif !important;
  font-weight: 500;

}

.contact-faq .card-body {
  padding: 0px 20px 10px 20px;
  padding-left: 45px;
}

.contact-faq .card-body strong{

  color: #000;
  font-weight: 500;
}

.contact-faq .card-body ul{
  padding-left: 20px;
  list-style: disc;
  color: #747474;
}
.trending-section  .trasparent-btn:hover svg{

  color:#00B7CE;
  position: relative;
  z-index: 1;
} 

.search-box input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.latest-blog .heading a, .blog-listing .heading a{
  color: #0f1621;

}

.latest-blog .heading a:hover, .blog-listing .heading a:hover{
  color: #00B6CE;

}

.signup-section{
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.signup-form.signup-form2 {
  margin-top: 25px;
}

.new-interior-section{
  padding: 0px 0px 40px 0px;

}

.new-officeSpace-wrap{
  padding-bottom: 0px;

}

@media only screen and (min-width: 992px) {
  .max-container {
    padding: 0px 40px;
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .interior-section .slick-slide {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
  }
  .interior-section .slick-center.slick-active {
    transform: scale(1.1);
  }
}
