@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "TWK";
  src: url("../fonts/twk-everett/TWKEverett-Bold.otf") format("otf");
  font-weight: 500;
  font-style: normal;
}


/* @font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.woff2") format("woff2"),
       url("fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
} */

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
}

:root {
  --bs-body-font-family: "Inter", sans-serif;
  --theme-color: #fdbb2f;
  --theme-color-secondary: #fcad04;
}

.bg-theme {
  background-color: var(--theme-color) !important;
}

.text-theme {
  color: var(--theme-color) !important;
}

.text-theme-secondary {
  color: #133e50 !important;
}

.theme-button {
  /* background: linear-gradient(90deg, var(--theme-color), #ac7818); */
  background-color: var(--theme-color);
  padding: 8px 14px;
  color: rgb(255, 255, 255);
  /* font-weight: 700; */
  /* border: 2px solid var(--theme-color); */
  border: none;
  transition: all 0.3s;
  border-radius: 18px;
  font-size: 14px;
  width: fit-content;
  text-decoration: none;
  color: #0a0a14 !important;
}

.theme-button-outline {
  /* background: linear-gradient(90deg, var(--theme-color), #ac7818); */
  background-color: transparent;
  padding: 8px 14px;
  color: var(--theme-color);
  /* font-weight: 700; */
  /* border: 2px solid var(--theme-color); */
  border: 1px solid var(--theme-color);
  transition: all 0.3s;
  border-radius: 18px;
  font-size: 14px;
  width: fit-content;
  text-decoration: none;

}

.theme-button:hover {
  /* border: 2px solid var(--theme-color); */
  background-color: var(--theme-color-secondary);
  transform: scale(1.05);
}

.theme-button-outline:hover {
  /* border: 2px solid var(--theme-color); */
  background-color: var(--theme-color);
  color: white;
  transform: scale(1.05);
}

.themedark-button-outline {
  /* background: linear-gradient(90deg, var(--theme-color), #ac7818); */
  background-color: transparent;
  padding: 8px 14px;
  color: #202a54;
  /* font-weight: 700; */
  /* border: 2px solid var(--theme-color); */
  border: 1px solid #202a54;
  transition: all 0.3s;
  border-radius: 18px;
  font-size: 14px;
  width: fit-content;
}

.themedark-button-outline:hover {
  /* border: 2px solid var(--theme-color); */
  background-color: #202a54;
  color: white;
  transform: scale(1.05);
}

.form-control:focus {
  box-shadow: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.navbar {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  box-shadow: none;
}

.navbar .content {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 7px 40px;
  border-radius: 38px;
  background: white;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.navbar .nav-link {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  /* font-weight: bold; */
  color: black;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--theme-color) !important;
  border-bottom: 1px solid var(--theme-color);
}

.navbar .nav-link.active {
  color: var(--theme-color);
  border-bottom: 1px solid var(--theme-color);
}

.navbar-brand img {
  height: 40px;
}

.footer {
  /* padding-block: 2rem; */
  color: white;
  background-color: #202a54;
}

.footer .footer-upper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-block: 40px 30px;
}

.footer .footer-upper .footer-logo {
  width: 250px;
}

.footer-bottom {
  border-top: 1px solid gray;
  padding-top: 1rem;
}

.footer-bottom > div {
  display: flex;
  justify-content: space-between;
}

.footer-link {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--theme-color);
}

.main-content {
  overflow-x: hidden;
}

.hero-bg {
  padding-top: 70px;
  height: 100vh;
  min-height: 500px;
  background-image: url("../assets/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.herobanner-slide {
  position: relative;
}

.herobanner-slider-txt {
  position: absolute;
  width: 60%;
  bottom: 90px;
  left: 10%;
  color: #fff;
  z-index: 99;
}

.herobanner-slide img {
  width: 100%;
  height: 100vh;
}

.herobanner-slide video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.herobanner-slide {
  overflow: hidden;
  padding: relative;
}

.herobanner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.herobanner-slider button.slick-prev.slick-arrow {
  left: 20px;
  color: #fff;
  z-index: 999;
}

.herobanner-slider .slick-next.slick-arrow {
  right: 20px;
  color: #fff;
  z-index: 999;
}

.herobanner-slider .slick-prev:before,
.herobanner-slider .slick-next:before {
  content: "";
  opacity: 1;
  color: white;
}

.herobanner-slider .slick-prev,
.herobanner-slider .slick-next {
  width: 50px;
  height: 50px;
  z-index: 999;
}

.herobanner-slider .slick-prev {
  left: 20px;
  background: url("../assets/rightarrow.webp") no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
}

.herobanner-slider .slick-next {
  right: 20px;
  background: url("../assets/rightarrow.webp") no-repeat center;
  background-size: contain;
}

.herobanner-slider .slick-prev:hover,
.herobanner-slider .slick-prev:focus {
  background: url("../assets/rightarrow.webp") no-repeat center !important;
  background-size: contain !important;
}

.herobanner-slider .slick-next:hover,
.herobanner-slider .slick-next:focus {
  background: url("../assets/rightarrow.webp") no-repeat center !important;
  background-size: contain !important;
}

.hero-search-input {
  margin-top: 1rem;
  width: 500px;
  background-color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-inline: 1.8rem;
}

/* .hero-head{
  font-family: 'TWK';
} */

.scrollable {
  max-height: 400px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollablet::-webkit-scrollbar {
  display: none;
}

.scrollable .scroll-item {
  display: flex;
  gap: 1rem;
  padding-block: 1rem;
}

.scrollable .scroll-item .scroll-item-image {
  width: 70px;
}

.card {
  border-radius: 50px 50px 0 0 !important;
  max-width: 300px;
  /* min-width: 250px; */
  transition: all 0.5s !important;
}

.card:hover {
  transform: scale(1.03) !important;
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.2) !important;
}

.card-body {
  border: 1px solid lightgray;
  margin-top: -3rem;
  border-top: none;
  padding-top: 4rem;
  position: relative;
}

.card-footer {
  border: 1px solid lightgray;
  margin-top: 1rem;
  border-radius: 0;
  font-weight: 600;
}

.card img.graph {
  width: 10rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.offer-section {
  display: flex;
  /* align-items: center; */
  flex-wrap: wrap;
  /* min-height: 500px; */
}

.offer-section .offer-left {
  height: 600px;
  background-image: url("../assets/offer.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px;
}

.offer-section .offer-right {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
}

.offer-right-upper {
  background-color: #f2f2f2;
}

.offer-section .offer-right .offer-right-top,
.offer-section .offer-right .offer-right-bottom {
  flex: 1;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-right-top img,
.offer-right-bottom img {
  width: 60px;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.objective-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f2f2f2;
}

.objective-section-left {
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 150px;
}

.objective-section-right {
  display: flex;
  flex-direction: column;
}

.objective-section-right > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.objective-section-right > div h1 {
  font-size: 150px;
}

.objective-section-right > p {
  text-transform: uppercase;
  font-size: 11px;
  text-align: center;
}

.our_process-section,
.objective-section {
  display: flex;
  /* align-items: center; */
}


.our_process-section-left {
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  padding-left: 150px;
}

.our_process-section-left p {
  font-size: 12px;
}

.our_process-section-left ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-slider-sec {
  padding: 30px 30px 0px 30px;
}

.offer-slide {
  padding: 20px;
}

.offer-slide img {
  width: 80px;
  margin: 0px 0px 20px 0px;
}

.watch-invest-list li span {
  font-weight: bold;
}

.our_process-section-right {
  height: 562px;
  background-image: url("../assets/process.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.stats-section {
  background-color: #f1f1f1;
  /* dark background */
  color: rgb(0, 0, 0);
  padding-inline: 150px;
}

.stats-section .stats {
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 15px;
}

.stat-number {
  color: var(--theme-color);
  /* blue color matching screenshot */
  font-weight: 700;
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #a8a8a8;
  margin-top: -5px;
}


.trust-section-right {
  display: flex;
  flex-direction: column;
}

.trust-section-right > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  font-weight: bold;
}

.trust-section-right > div h1 {
  font-size: 70px;
}

.trust-section-right > p {
  text-transform: uppercase;
  font-size: 27px;
  text-align: center;
   margin-top: -22px;

}

.theme-button a {
    text-decoration: none;
    color: black;
}


.btn-primary {
  background-color: #3aa6ff;
  border: none;
  border-radius: 3px;
}

.btn-primary:hover {
  background-color: #2594eb;
}

.benefit-bg {
  background-image: url("../assets/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/************* Porperty Listing Page CSS Start *************/

.property-herobanner-sec {
  background: url(../assets/propertylisting/property-herobanner.webp) no-repeat
    top center;
  background-size: cover;
  padding: 100px 0px 100px 0px;
  width: 100%;
  height: 80vh;
  display: 100%;
}

.property-herobanner-sec::before {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, #000000, #33333308);
  width: 100%;
  height: 80%;
  top: 0px;
}

.property-herobanner-txt {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 150px 0px 80px 0px;
  position: relative;
  z-index: 99;
}

.mainhead {
  color: #fff;
  font-size: 50px;
  line-height: normal;
  margin: 0px 0px 10px 0px;
}

.property-herobanner-txt p {
  color: #fff;
}

.property-herobanner-txt p {
  color: #fff;
  font-family: inter;
}

section.property-card-sec {
  padding: 60px 0px;
}

.property-card-search input {
  width: 35%;
  padding: 6px 10px 6px 40px;
  border: 1px solid #ced4da;
}

.property-card-search span {
  position: absolute;
  top: 8px;
  left: 12px;
  color: #b5b3b9;
}

.property-card-search {
  position: relative;
  margin: 0px 0px 40px 0px;
}

.property-card-search input:focus {
  outline: none;
}

.property-card-search input::placeholder {
  font-family: var(--bs-body-font-family);
  font-weight: 400;
  color: #b5b3b9;
  font-size: 18px;
  font-family: var(--bs-body-font-family);
}

.property-card-sort select {
  padding: 10px 0px 10px 0px;
  font-family: var(--bs-body-font-family);
  border: none;
  font-size: 18px;
}

.property-card-sort {
  position: relative;
  border: 1px solid #ced4da;
  width: 60%;
  padding: 0px 10px 0px 80px;
}

.property-card-sort h6 {
  position: absolute;
  top: 12px;
  left: 13px;
  font-family: var(--bs-body-font-family);
  color: rgba(10, 10, 20, 0.5);
  font-weight: 400;
  font-size: 18px;
}

.property-card-sort select:focus {
  outline: none;
}

.property-card-filter {
  display: flex;
  align-items: center;
  border: 1px solid #ced4da;
  font-weight: 400;
  font-size: 14px;
  padding: 6px 30px 6px 24px;
  gap: 15px;
}

.property-card-filter p {
  margin: 0px;
  color: #0a0a14;
  font-size: 18px;
  font-family: var(--bs-body-font-family);
}

.property-card-sortfilter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-card-filter span {
  font-size: 22px;
  font-family: var(--bs-body-font-family);
}

.property-listimg img {
  width: 100%;
  height: 234px;
  object-fit: cover;
}

.property-listimg {
  position: relative;
  overflow: hidden;
}

.property-list-card {
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.property-information-list li span {
    color: #202a54;
}


.property-list-cardbtns .property-infobtn {
  background: transparent;
  padding: 3px 10px;
  font-size: 20px;
  transition: all 0.6s ease;
  border: 1px solid #202a54;
  color: #202a54;
}

.property-list-cardbtns .property-infobtn:hover {
    color: #fff;
    background: #202a54;
}

.property-list-cardtxt h3 {
    padding: 0px 0px 0px 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #202a54;
}

.property-list-cardtxt h4 {
  color: #263238;
  font-family: var(--bs-body-font-family);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
  padding: 0px 0px 20px 10px;
}

.property-information-list {
  padding: 0px 0px 0px 20px;
}


.property-sale-icon {
    font-size: 12px;
    background: #202a54;
    position: absolute;
    top: 10px;
    z-index: 999;
    left: 14px;
    border-radius: 20px;
    padding: 3px 10px 4px 10px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
}

.propertycard-modal-content .accordion-item {
    margin: 0px 0px 20px 0px;
    background: #f8f9fa;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    border-radius: 0px !important;
}

.propertycard-modal-content .accordion-button:focus {
    box-shadow: none !important;
}



.propertycard-modal-content .accordion-item .accordion-header .accordion-button {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.propertycard-modal-content .accordion-item .accordion-header .accordion-button span {
    color: var(--theme-color);
}

.propertycard-modal-content .accordion-item .accordion-header .accordion-button h6 {
    margin: 0px;
    color: #fff;
    background: #6c757d;
    padding: 2px 5px;
    font-size: 12px;
    line-height: normal;
    border-radius: 7px;
}

.property-information-list li {
    list-style: none;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-modal-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-modal-btns .btn-dark {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0px;
}

.propertycard-modal-content .modal-footer {
    justify-content: space-between;
}

.property-card-modal .modal-header {
    color: #fff;
    background: #202a54;
}

.propertycard-modal-content .accordion-item:first-of-type>.accordion-header .accordion-button {
    background: #f8f9fa !important;
}

.property-card-modal .modal-header .btn-close {
    opacity: 1;
    filter: invert(1);
}

.propertycard-modal-content .accordion-item .accordion-header .accordion-button {
    background: #f8f9fa !important;
}

.cardmodal-txt h6 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(33, 37, 41, 0.75);
    margin: 0px 0px 3px 0px;
}

.cardmodal-txt h4 {
    font-size: 18px;
    color: #000;
}

.cardmodal-txt {
    margin: 0px 0px 30px 0px;
}

.cardmodal-txttwo h6 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(33, 37, 41, 0.75);
    margin: 0px;
}

.cardmodal-txttwo h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 3px 0px 4px 0px;
}

.cardmodal-txttwo h3 {
    font-size: 18px;
    color: #202a54;
    font-weight: bold;
}

.cardmodal-txttwo p {
    color: #198754;
    font-weight: bold;
    font-size: 18px;
}

.property-table-responsive {
    height: 290px;
    overflow-x: scroll;
}

.property-dropdown {
    position: relative;
}

.property-dropdown-menu {
    position: absolute;
    background: #fff;
    padding: 0px;
    margin: 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.property-dropdown-menu li {
    padding: 8px 10px;
    list-style: none;
    transition: all .6s ease;
}

.property-dropdown-menu li:hover {
    background: #202a54;
}

.property-dropdown-menu li a {
    text-decoration: none;
    color: black;
}

.property-dropdown-menu li:hover a {
    color: #fff;
}

.property-dropdown:hover .property-dropdown-menu {
  visibility: visible;
  opacity: 1;
  width: 180px;
}

.signup-form-sec {
    padding: 50px 0px;
}

.signup-input-field input {
    padding: 10px 10px;
    border-radius: 3px;
}

.signup-input-field {
    margin: 0px 0px 20px 0px;
}

.signup-form-bg {
    padding: 30px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.signup-form-herobanner {
  padding: 100px 0px 100px 0px;
  background: url(../assets/SU.png )
    no-repeat top center;    
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.signup-form-herobanner::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0px;
    background: #00000042;
}

.signup-form-hero-text {
    padding: 90px 0px;
    position: relative;
}

.signup-form-hero-text h1 {
    color: #fff;
    font-size: 70px;
    text-align: center;
    font-weight: bold;
}

.property-card-smallflex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px 0px 10px 0px;
}

.property-smallflex-txt p {
  margin: 0px 0px 0px 0px;
  font-size: 12px;
  color: #868484;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--bs-body-font-family);
}

.property-smallflex-txt h5 {
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bs-body-font-family);
}

.fullyfunded-card {
  position: absolute;
  top: 18px;
  transform: rotate(-39deg);
  font-size: 14px;
  left: -44px;
  background: var(--theme-color);
  color: #fff;
  padding: 7px 50px;
  font-weight: 500;
}

.property-location {
  font-size: 12px;
  background: #fff;
  position: absolute;
  bottom: 10px;
  z-index: 999;
  left: 14px;
  border-radius: 7px;
  padding: 2px 6px;
  font-weight: 500;
}

.property-list-cardtxt {
  padding: 20px 0px 0px 0px;
}

.fully-funded-lines p {
  margin: 0px;
  font-weight: 500;
  font-size: 14px;
  margin: 0px 0px 5px 0px;
}

.fullyfunded-greenline {
  padding: 4px 0px;
  width: 100%;
  height: 100%;
  background-color: #24ba5f;
  border-radius: 10px;
  display: block;
}

.fully-funded-lines {
  text-align: end;
  margin: 0px 10px 10px 10px;
}

.property-list-cardbtns {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
}

.cardbtn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202a54;
  font-size: 14px;
  letter-spacing: 0.4px;
  border: none;
  height: 40px;
  line-height: 1;
  color: #fff;
  padding: 0 24px;
  width: 100%;
  font-weight: 500;
  font-family: var(--bs-body-font-family);
  transition: all 0.6s ease;
  border: 1px solid #202a54;
  text-decoration: none;
}

.cardbtn-dark:hover {
  background: transparent;
  color: #202a54;
}

.cardbtn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202a54;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding: 12px 24px;
  width: 100%;
  font-weight: 500;
  font-family: var(--bs-body-font-family);
  transition: all 0.6s ease;
  border: 1px solid #202a54;
}

.cardbtn-dark:hover {
  background: transparent;
  color: #202a54;
}

.cardbtn-light {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding: 12px 24px;
  width: 100%;
  font-weight: 500;
  transition: all 0.6s ease;
  border: 1px solid #202a54;
  background: transparent;
  color: #202a54;
  text-decoration: none;
}

.cardbtn-light:hover {
  color: #fff;
  background-color: #202a54;
}

.fullyfunded-brownline {
  padding: 4px 0px;
  width: 100%;
  height: 100%;
  border-bottom: 6px solid var(--theme-color);
  border-radius: 10px;
  display: block;
}

.property-card-innerboxes {
  padding: 0px 10px;
}

.property-not-available {
  text-align: center;
  padding: 60px 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.property-not-available h4 {
  font-size: 18px;
  font-family: var(--bs-body-font-family);
}

.property-not-available img {
  margin: 0px 0px 10px 0px;
}

.property-not-available p {
  font-size: 14px;
  font-family: var(--bs-body-font-family);
}

.boostrap-tabs-edit .nav-tabs {
  border: none;
}

.boostrap-tabs-edit .nav-tabs .nav-link {
  color: #0a0a1466;
  border: none;
  border-bottom: 1px solid transparent;
}

.boostrap-tabs-edit .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #0a0a14 !important;
  font-weight: 500;
  border: none;
  padding: 8px 16px !important;
  border-bottom: 2px solid #fdbb2f !important;
}

.boostrap-tabs-edit .nav-link:hover {
  border: none !important;
  outline: none;
}

/************* Porperty Listing Page CSS End *************/

/************* Porperty Listing Filter Modal Page CSS Start *************/

/*filter modal*/
#filterModal .main-filter-section .list-group-item {
  cursor: pointer;
  border: none;
  padding: 12px 15px;
  font-size: 16px;
}

#filterModal .main-filter-section .active {
  background-color: #202a54;
  font-weight: bold;
  color: white;
}

#filterModal .sub-filter-section .list-group-item {
  border: none;
  font-size: 15px;
  padding: 10px 0;
}

#filterModal .close-btn {
  cursor: pointer;
  font-size: 20px;
}

#filterModal .filter-menu .nav-link {
  text-align: left;
  padding: 12px 15px;
  font-size: 16px;
  color: #202a54;
}

#filterModal .filter-menu .nav-link.active {
  background: #202a54;
  font-weight: 600;
  color: white;
}

#filterModal input[type="checkbox"] {
  transform: scale(1.7);
  margin-right: 8px;
  accent-color: #202a54;
  cursor: pointer;
}

#filterModal .modal-title {
  color: #202a54;
}

#filterModal .list-unstyled li {
  padding-bottom: 16px;
}

#filterModal .modal-body {
  padding: 0px;
  border-top: 1px solid #202a54;
}

#filterModal .modal-body .nav-link {
  border-radius: 0px;
}

#filterModal .sidebar {
  background: #f0f0f0;
  height: 100%;
}

#filterModal .tab-content {
  padding: 15px 0px;
}

#filterModal .btn-close:focus {
  box-shadow: none;
}

#filterModal .btn-clos {
  transition: all 0.3s ease;
}

#filterModal .btn-close:hover {
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.sponsors .sponsor-img {
    width: 100%;
}
.sponsors h3 {
    color: #202a54;
    text-align: center;
    padding: 24px 0px;
    font-weight: 700;
    font-size: 50px;
}
.sponsors .sponsor-img .slick-next{
  right:9px;
}

.sponsor-img img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    padding: 20px;
}



.sponsers-sec {
  padding: 50px 0px;
}


.sponsor-img .slick-prev.slick-arrow {
 position: relative;
}

.sponsor-img .slick-prev.slick-arrow::before {
    content: "";               
    position: absolute;
    background-image: url("../assets/sponser-leftarrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    opacity: 1;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 600%);
}


.sponsor-img .slick-next.slick-arrow {
  background-color: transparent;
}

.sponsor-img .slick-next.slick-arrow::before {
  content: "";                
    position: absolute;
    background-image: url("../assets/sponser-rightarrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    opacity: 1;
    top: 50%;
    left: 100%;
    transform: translate(40%, -50%);
}


/************* Porperty Listing Filter Modal Page CSS End *************/


.herobanner-slider-txt h1 {
    line-height: 35px;
}

.invest-smartly-txt h1 {
    font-size: 36px;
}

.invest-smartly-sec {
    padding: 50px 0px 15px 0px;
}

.stats-section-txt {
    padding: 40px 0px 50px 20px;
}


/************* Login Form Page CSS Start *************/


.login-form-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.login-form-logo img {
    width: 100%;
}

.login-form-sec {
    padding: 80px 0px;
}

.login-input-field {
    margin: 0px 0px 20px 0px;
}

.login-input-field label {
    font-weight: 500;
    margin: 0px 0px 5px 0px;
}

.login-form-box h2 {
    margin: 0px 0px 20px 0px;
}

.login-form-box {
    padding: 30px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.login-remember-fields {
    margin: 30px 0px 10px 0px;
}

.login-input-field .theme-button {
    border-radius: 0;
}


.login-input-field .form-control::placeholder {
    color: #838383;
}

.login-form-box a {
    color: #000;
}

.login-input-field .cardbtn-light {
    background: #202a54;
    color: #fff;
}

.login-input-field .cardbtn-light:hover {
    color: #202a54;
    background: transparent;
}

.login-input-field .form-control {
    padding: 10px 10px;
    border-radius: 3px;
}

.signup-para p {
    margin: 0px;
    padding: 20px 0px 0px 0px;
}

.signup-para p a {
    color: #202a54;
}

/************* Login Form Page CSS End *************/



@media (max-width: 768px) {
  .hero-search-input {
    width: 100%;
    padding-inline: 1rem;
  }

  .offer-section .offer-left,
  .objective-section-left,
  .our_process-section-left {
    padding: 40px;
  }

  .stats-section {
    padding-inline: 40px;
  }




}

@media (max-width: 991px) {
  .offer-section .offer-right .offer-right-top,
  .offer-section .offer-right .offer-right-bottom {
    padding: 60px;
  }
}

@media screen and (max-width: 768px) {
  .property-card-search input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ced4da;
  }

  .property-card-sort {
    width: 100%;
  }

  .property-card-sort select {
    width: 100%;
  }

  .property-card-search {
    margin: 40px 0px 20px 0px;
  }

  .property-herobanner-txt {
    padding: 80px 0px 80px 0px;
  }

  .boostrap-tabs-edit {
    margin: 30px 0px 0px 0px;
  }

  .offer-section .offer-right .offer-right-top,
  .offer-section .offer-right .offer-right-bottom {
    padding: 60px 60px 0px 60px;
  }

  .objective-section-right {
    margin: 0px 0px 0px 40px;
  }

  .herobanner-slider-txt {
    width: 60%;
    bottom: 40px;
    left: 13%;
  }


 .sponsor-img .slick-prev.slick-arrow::before {
    left: 100%;
}

.sponsor-img .slick-next.slick-arrow::before {
    right: 100%;
}

.sponsor-img img {
    width: 150px;
    height: 150px;
}

.objective-section-right > div {
    font-size: 45px;
}

}

@media screen and (max-width: 480px) {
  .property-herobanner-sec {
    padding: 50px 0px;
    width: 100%;
    height: 100%;
  }

  .mainhead {
    font-size: 30px;
  }

  .property-herobanner-sec::before {
    height: 124%;
  }

  .property-herobanner-txt {
    padding: 60px 0px 0px 0px;
    text-align: center;
  }

  .property-card-search input {
    width: 100%;
    padding: 10px 10px 10px 40px;
  }

  .property-card-search {
    margin: 0px 0px 20px 0px;
  }

  .boostrap-tabs-edit .nav-tabs {
    margin: 30px 0px 0px 0px;
    justify-content: center;
  }

  .property-card-sortfilter {
    gap: 20px;
    flex-direction: column;
  }

  .property-card-sort {
    width: 100%;
    padding: 0px 10px 0px 70px;
  }

  .property-card-sort h6 {
    top: 11px;
    left: 10px;
    font-size: 16px;
  }

  .property-card-sort select {
    font-size: 16px;
  }

  .property-card-filter {
    font-size: 14px;
    padding: 6px 30px 6px 24px;
    gap: 15px;
    width: 100%;
  }

  .property-card-search input::placeholder {
    font-size: 16px;
  }

  .property-card-search span {
    top: 12px;
  }

  .navbar .content {
    padding: 7px 20px;
  }

  .navbar-brand img {
    height: 30px;
  }

  .property-card-filter p {
    font-size: 16px;
  }

  .property-card-filter span {
    font-size: 20px;
  }

  .property-list-cardtxt h4 {
    font-size: 18px;
  }

  .offer-section .offer-right .offer-right-top,
  .offer-section .offer-right .offer-right-bottom {
    padding: 20px;
  }

  .about-hero .section-container h1 {
    font-size: 40px !important;
  }

  .main-vission {
    margin: 0 auto;
  }

  .own-realstate-txt {
    margin: 0px 0px 30px 0px;
  }

  .about-hero .section-container h1 {
    font-size: 40px;
  }

  .about-hero .section-container p {
    font-size: 18px !important;
    margin: 0px 0px 40px 0px;
  }

  .main-vission {
    margin: 0 auto !important;
    padding: 20px !important;
  }

  .main-vission .desc > p {
    font-size: 16px !important;
  }

  .main-vission .counters {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 0px 0px 20px 0px;
  }

  .values-section .main-values .values-header .desc {
    font-size: 16px;
  }

  .tab-content.active {
    margin: 20px 0px 20px 0px;
  }

  .own-realstate-txt {
    margin: 0px 0px 50px 0px;
  }

  .herobanner-slider .slick-next.slick-arrow {
    width: 30px;
    top: 50%;
    transform: translate(-50%);
    right: 10px;
  }

  .herobanner-slider button.slick-prev.slick-arrow {
    width: 30px;
    top: 50%;
    transform: translate(-50%), rotate(180deg);
    right: 10px;
  }

  .herobanner-slider-txt {
    width: 70%;
    bottom: 40px;
    left: 15%;
    text-align: center;
  }


      .sponsor-img .slick-prev.slick-arrow::before {
        top: -30px;
        left: 35px;
    }

.sponsor-img .slick-next.slick-arrow::before {
  left: 0px; 
  right: 0px;
          top: 16px;
    
}

.sponsor-img img {
    width: 150px;
    height: 150px;
}


    .stats-section {
        padding-inline: 20px;
    }


.stats-section-txt {
    padding: 40px 0px 0px 0px;
}

.trust-section-right {
    padding: 0px 0px 30px 0px;
}

    .objective-section-right > div {
        font-size: 35px;
    }

.objective-section-right > div h1 {
    font-size: 100px;
}

    .objective-section-right {
        margin: 0px 0px 0px 10px;
    }

  
}
