:root {
  --kg-green: #811ea2;
  --app-secondary: #f4d3ff;
  --kg-purple: #801fa3;
  --app-secondary-light: #faf6fb;
  --kg-white: #fff;
  --kg-gray: #ddd;
  --kg-sky: #f0ffff7a;
  --kg-light: #f4f4f4;
  --kg-light2: #22222280;
  --kg-dark-gray: #666;
  --kg-dark-gray2: #11111180;
  --kg-light-dark: #2f3032;
  --kg-dark: #212529;
  --kg-dark-blue: #28394f;
  --kg-red: #e6272c;
  --kg-orange: #f37500;
  --kg-mustard: #ffac5f;
  --kg-font-family: "Poppins", sans-serif;
  --kg-font-family-bold: "poppins-bold", sans-serif;
  --kg-font-size: 1rem;
  --Neutral-colors-Primary-Text: #07090f;
}

*, :after, :before {
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Poppins;
  src: url(/static/font/poppins_regular.e3fe7ebf.ttf);
}

@font-face {
  font-family: poppins-regular;
  src: url(/static/font/poppins_regular.e3fe7ebf.ttf);
}

@font-face {
  font-family: poppins-bold;
  src: url(/static/font/Poppins-Bold.3b6def8c.ttf);
}

@font-face {
  font-family: poppins-light;
  src: url(/static/font/Poppins-Light.c7f7b0af.ttf);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-family: var(--kg-font-family) !important;
}

p, q h1, h2, h3, h4, h5, h6, ol, ul {
  margin: 0;
  padding: 0;
}

a {
  color: var(--kg-dark);
  cursor: pointer;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--kg-green);
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
}

input[type="radio"], input[type="checkbox"], input[type="radio"] + label, input[type="checkbox"] + label {
  cursor: pointer;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

.text-shadow {
  text-shadow: 0 .25rem .25rem #00000040;
}

.top-n2 {
  top: -1rem !important;
}

.top-n5 {
  top: -3rem !important;
}

.mt-n1 {
  margin-top: -.25rem !important;
}

.mt-n2 {
  margin-top: -.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.me-n1 {
  margin-right: -.25rem !important;
}

.me-n2 {
  margin-right: -.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -.25rem !important;
}

.mb-n2 {
  margin-bottom: -.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ms-n1 {
  margin-left: -.25rem !important;
}

.ms-n2 {
  margin-left: -.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.fs-7 {
  font-size: .9rem;
}

.fs-8 {
  font-size: .8rem;
}

.fs-9 {
  font-size: .7rem;
}

.min-w-fit {
  min-width: -webkit-fit-content;
  min-width: fit-content;
}

.kg-bg-green, .kg-bg-primary, .app-primary .kg-kg-success {
  background-color: var(--kg-green) !important;
}

.kg-bg-purple {
  background-color: var(--kg-purple) !important;
}

.app-bg-secondary {
  background-color: var(--app-secondary) !important;
}

.app-bg-secondary-light {
  background-color: var(--app-secondary-light) !important;
}

.kg-bg-dark-gray, .kg-bg-secondary {
  background-color: var(--kg-dark-gray) !important;
}

.kg-bg-dark-gray2 {
  background-color: var(--kg-dark-gray2) !important;
}

.kg-bg-dark-blue {
  background-color: var(--kg-dark-blue) !important;
}

.kg-bg-gray {
  background-color: var(--kg-gray) !important;
}

.kg-bg-sky {
  background-color: var(--kg-sky) !important;
}

.kg-bg-light {
  background-color: var(--kg-light) !important;
}

.kg-bg-light-dark {
  background-color: var(--kg-light-dark) !important;
}

.kg-bg-dark {
  background-color: var(--kg-dark) !important;
}

.kg-bg-yellow, .kg-bg-warning {
  background-color: var(--kg-orange) !important;
}

.kg-bg-mustard {
  background-color: var(--kg-mustard);
}

.kg-bg-red, .kg-bg-danger {
  background-color: var(--kg-red) !important;
}

.kg-bg-white {
  background-color: var(--kg-white) !important;
}

.kg-green, .kg-primary, .app-primary, .kg-success {
  color: var(--kg-green) !important;
}

.app-secondary {
  color: var(--app-secondary) !important;
}

.app-secondary-light {
  color: var(--app-secondary-light) !important;
}

.kg-purple {
  color: var(--kg-purple) !important;
}

.kg-gray {
  color: var(--kg-gray) !important;
}

.kg-dark-gray, .kg-secondary {
  color: var(--kg-dark-gray) !important;
}

.kg-dark-gray2 {
  color: var(--kg-dark-gray2) !important;
}

.kg-yellow, .kg-warning {
  color: var(--kg-orange) !important;
}

.kg-red, .kg-danger {
  color: var(--kg-red) !important;
}

.kg-white {
  color: var(--kg-white) !important;
}

.kg-sky {
  color: var(--kg-sky);
}

.kg-light {
  color: var(--kg-light);
}

.kg-light2 {
  color: var(--kg-light2);
}

.kg-light-dark {
  color: var(--kg-light-dark) !important;
}

.kg-dark {
  color: var(--kg-dark) !important;
}

.kg-border-green, .btn-border-primary, .kg-border-success {
  border-color: var(--kg-green) !important;
}

.kg-border-purple {
  border-color: var(--kg-purple) !important;
}

.kg-border-light {
  border-color: var(--kg-light) !important;
}

.kg-border-light2 {
  border-color: var(--kg-light2) !important;
}

.kg-border-gray {
  border-color: var(--kg-gray) !important;
}

.kg-border-dark-gray, .kg-border-secondary {
  border-color: var(--kg-dark-gray) !important;
}

.kg-border-yellow, .kg-border-warning {
  border-color: var(--kg-orange) !important;
}

.kg-border-red, .kg-border-danger {
  border-color: var(--kg-red) !important;
}

.kg-btn {
  text-transform: uppercase;
  font-family: var(--kg-font-family-bold);
}

.kg-btn-rounded {
  text-transform: uppercase;
  font-family: var(--kg-font-family-bold);
  border-radius: 50rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.kg-btn-success, .kg-btn-green, .kg-btn-primary {
  color: var(--kg-white) !important;
  background-color: var(--kg-green) !important;
  border-color: var(--kg-green) !important;
}

.kg-btn-secondary, .kg-btn-gray {
  color: var(--kg-white) !important;
  background-color: var(--kg-dark-gray) !important;
  border-color: var(--kg-dark-gray) !important;
}

.kg-btn-warning, .kg-btn-yellow {
  color: var(--kg-white) !important;
  background-color: var(--kg-orange) !important;
  border-color: var(--kg-orange) !important;
}

.kg-btn-danger, .kg-btn-red {
  color: var(--kg-white) !important;
  background-color: var(--kg-red) !important;
  border-color: var(--kg-red) !important;
}

.kg-btn-purple {
  color: var(--kg-white) !important;
  background-color: var(--kg-purple) !important;
  border-color: var(--kg-purple) !important;
  border-radius: 12px !important;
}

.transition {
  transition: all;
}

.transition-duration-300 {
  transition-duration: .3s;
}

.transition-duration-500 {
  transition-duration: .5s;
}

.transition-duration-700 {
  transition-duration: .7s;
}

.transition-duration-900 {
  transition-duration: .9s;
}

.kg-title-ul {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

.kg-title-ul:after {
  content: "";
  background-color: var(--kg-green);
  border-radius: 1rem;
  width: 30px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 576px) {
  .kg-title-ul:after {
    content: "";
    background-color: var(--kg-green);
    border-radius: 1rem;
    width: 30px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 1rem;
  }
}

@media (min-width: 992px) {
  .kg-lg-white {
    color: var(--kg-gray);
  }

  .kg-lg-white.active {
    color: var(--kg-white) !important;
  }
}

.kg-title {
  text-transform: uppercase;
  font-family: var(--kg-font-family-bold);
}

.line-seprator {
  background-color: var(--kg-white);
  width: 1px;
  height: 20px;
}

.link, .cursor-pointer {
  cursor: pointer;
}

.link:hover {
  color: var(--kg-green);
}

.link-animate-ul {
  transition: all .3s ease-in-out;
}

.animate-all-ease-in-out {
  transition: all .5s ease-in-out;
}

.border-primary {
  border-color: var(--kg-green) !important;
}

.border-secondary {
  border-color: var(--app-secondary) !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-start-dashed, .border-end-dashed {
  border-right: 1px dashed var(--kg-white);
}

.border-top-dashed {
  border-top: 1px dashed var(--kg-white);
}

.border-bottom-dashed {
  border-bottom: 1px dashed var(--kg-white);
}

@media (min-width: 576px) {
  .border-sm-start-dashed, .border-sm-end-dashed {
    border-right: 1px dashed var(--kg-white) !important;
  }

  .border-sm-top-dashed {
    border-top: 1px dashed var(--kg-white) !important;
  }

  .border-sm-bottom-dashed {
    border-bottom: 1px dashed var(--kg-white) !important;
  }
}

.scale-1 {
  transform: scale(1);
}

.hover-scaleX-1-1:hover {
  transform: scale(1.03);
}

.hover-scaleX-1-2:hover {
  transform: scaleX(1.05);
}

.hover-scaleX-1-3:hover {
  transform: scaleX(1.1);
}

.hover-kg-bg-green:hover {
  background-color: var(--kg-green) !important;
}

.hover-bg-secondary:hover {
  background-color: var(--app-secondary) !important;
}

.hover-kg-white:hover {
  color: var(--kg-white) !important;
}

.hover-top-n1:hover {
  top: -.5rem !important;
}

.hover-top-n2:hover {
  top: -1rem !important;
}

.hover-top-n5:hover {
  top: -3rem;
}

.hover-underline:hover {
  text-decoration: underline;
}

button.form-control, button.form-select, div.form-control:not(input[type="file"]), div.form-select, input.form-control:not(input[type="file"]), select.form-select {
  vertical-align: middle;
  height: 3rem;
  font-size: smaller;
}

input.form-control::placeholder, textarea::placeholder, select.form-select, div.form-select, input.form-control, button.form-select {
  color: var(--kg-light2) !important;
}

.after-d-none:after, div.form-select.dropdown-toggle:after, div.form-control.dropdown-toggle:after, button.form-select.dropdown-toggle:after, button.form-control.dropdown-toggle:after {
  display: none;
}

input.form-control-sm, select.form-select-sm {
  height: 2.5rem !important;
}

li.dropdown-item:active, a.dropdown-item:active {
  background-color: var(--kg-green);
}

.form-check-input:checked {
  background-color: var(--kg-green);
  border-color: var(--kg-green);
}

.form-check-input {
  border: 1px solid var(--kg-dark);
}

.text-word-break {
  word-break: break-word;
}

.text-multiline-truncate-3 {
  --no-lines: 3;
  line-clamp: var(--no-lines);
  -webkit-line-clamp: var(--no-lines);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-multiline-truncate-4 {
  --no-lines: 4;
  line-clamp: var(--no-lines);
  -webkit-line-clamp: var(--no-lines);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-multiline-truncate-5 {
  --no-lines: 5;
  line-clamp: var(--no-lines);
  -webkit-line-clamp: var(--no-lines);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.rounded-top-end {
  border-top-right-radius: .375rem !important;
}

.rounded-top-start {
  border-top-left-radius: .375rem !important;
}

.rounded-bottom-start {
  border-bottom-left-radius: .375rem !important;
}

.rounded-bottom-end {
  border-bottom-right-radius: .375rem !important;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.MuiFormControl-root {
  width: 404px;
  height: 52px;
  position: relative;
  left: -8px;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/static/font/fa-brands-400.82e70052.eot);
  src: url(/static/font/fa-brands-400.82e70052.eot?#iefix) format("embedded-opentype"), url(/static/font/fa-brands-400.978e1bac.woff2) format("woff2"), url(/static/font/fa-brands-400.db6a2b33.woff) format("woff"), url(/static/font/fa-brands-400.ab3d7e06.ttf) format("truetype"), url(/static/svg/fa-brands-400.9ed39b3d.svg#fontawesome) format("svg");
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/static/font/fa-regular-400.4cec6fbf.eot);
  src: url(/static/font/fa-regular-400.4cec6fbf.eot?#iefix) format("embedded-opentype"), url(/static/font/fa-regular-400.dc79ceeb.woff2) format("woff2"), url(/static/font/fa-regular-400.7361a6d4.woff) format("woff"), url(/static/font/fa-regular-400.79d5399a.ttf) format("truetype"), url(/static/svg/fa-regular-400.8be8f21f.svg#fontawesome) format("svg");
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/static/font/fa-solid-900.08b6866d.eot);
  src: url(/static/font/fa-solid-900.08b6866d.eot?#iefix) format("embedded-opentype"), url(/static/font/fa-solid-900.6bcd6c9c.woff2) format("woff2"), url(/static/font/fa-solid-900.6a636d7e.woff) format("woff"), url(/static/font/fa-solid-900.2ec7abb9.ttf) format("truetype"), url(/static/svg/fa-solid-900.9d21645b.svg#fontawesome) format("svg");
}

@media only screen and (max-width: 1440px) {
  #home-banner .banner-child .btn-blk .see-more {
    padding: .35rem 2rem;
    font-size: .875rem;
    bottom: 10%;
  }

  #home-banner .slick-dots li {
    width: auto;
    height: auto;
  }

  #home-banner .slick-dots li button {
    width: 10px;
    height: 10px;
  }

  #home-banner .slick-dots .slick-active button {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 750px) and (max-width: 1000px) {
  .abc_content {
    margin-left: 40px;
  }

  table.mis_table td {
    line-height: normal;
  }

  .full_col .col-md-8, .full_col .col-md-4 {
    width: 100%;
  }

  .count_list span {
    font-size: 16px;
  }

  .preed_pay .col-md-8, .preed_pay .col-md-4 {
    width: 100%;
  }

  .malik_input .col-md-4, .malik_input .col-md-8, .malik_input .col-md-6, .malik_input .col-md-2, .malik_input .col-md-2 {
    margin: 10px 0;
    display: block;
    width: 100% !important;
  }

  form.set_prize {
    margin: 0 20px;
  }

  .malik_input .col-md-2 {
    width: 100%;
  }

  .t-bs {
    text-align: center;
  }

  .set_prize .col-md-6 {
    display: block;
  }

  .domastic h3 {
    font-size: 20px;
  }

  .domastic p {
    font-size: 18px;
    line-height: 20px;
  }

  .offer_frist .col-md-3 {
    width: 50%;
  }

  .service_category {
    width: 100%;
    margin-bottom: 21px;
  }

  .nav-tabs .nav-link {
    height: auto;
    font-size: 14px;
  }

  .domastic_nm {
    font-size: 18px;
    line-height: 34px;
  }

  .laed_head.mb-5 {
    margin-bottom: 10px !important;
  }

  .event_n {
    margin-bottom: 30px;
  }

  .de_img img {
    height: 150px;
    margin-bottom: 20px;
  }

  .event_n button.subscribe {
    width: 105px;
    height: 40px;
    font-size: 13px;
  }

  .event_n input[type="email"] {
    height: 40px;
    font-size: 13px;
  }

  .plan_full .col-md-2 {
    width: 50%;
  }

  .f_plan_btn {
    font-size: 13px;
  }

  .re_form {
    padding: 0;
  }

  .thanks_green {
    height: 336px;
  }

  .data_payment p {
    font-size: 13px;
  }

  .data_payment p span {
    font-size: 15px;
  }

  .agree_c label.form-check-label {
    font-size: 13px;
  }

  .agree_c .add_address {
    float: initial;
    top: 10px;
  }

  .agree_c {
    text-align: center;
    margin-top: 35px;
  }

  .agree_c .form-check .form-check-input {
    float: initial;
  }

  .payment_img img {
    margin-bottom: 10px;
  }

  .payment_details p {
    font-size: 13px;
    line-height: 18px;
  }

  .validtiy {
    font-size: 15px;
  }

  .col-md-4.b-in {
    justify-content: flex-end;
    width: 100%;
    margin: 10px 0;
  }

  .register_main {
    width: 100%;
    margin: auto;
  }

  .dealersh_div img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .dealer_main2 {
    padding: 0 15px 29px;
  }

  .vision_div .col-md-4, .vision_div .col-md-8 {
    width: 100% !important;
  }

  .vision_content h3 {
    margin: 12px 0;
    font-size: 30px;
    line-height: 36px;
  }

  section.customer_storie {
    padding: 30px;
  }

  .cobbine_form {
    padding: 26px 20px 26px 15px;
  }

  .crop_for .col-md-3, .crop_for .col-md-4, .crop_for .col-md-6 {
    width: 50%;
    display: block;
  }

  .crop_top_div .col-md-7, .crop_top_div .col-md-8, .crop_top_div .col-md-10, .col-md-3.full_100 {
    width: 100%;
  }

  .crop_for .col-md-5, .crop_for .col-md-4, .crop_for .col-md-2 {
    margin-bottom: 15px;
    top: 0;
    left: 0;
  }

  .cobbine_form .col-md-4, .cobbine_form .col-md-5, .cobbine_form .col-md-7, .cobbine_form .col-md-8 {
    flex-wrap: wrap;
    width: 100% !important;
  }

  .harvester_2 .col-md-4 {
    width: 50%;
  }

  .harvester_2 .laed_head h2 span {
    font-size: 21px;
  }

  .farmer_4 .col-md-4 {
    width: 50%;
  }

  .harvester_accordian button.collapsed, .harvester_accordian .accordion-button {
    font-size: 18px;
  }

  .s-3 {
    margin-top: -12px;
  }

  .red_light_bg a {
    font-size: 13px;
  }

  .red_light_bg i {
    font-size: 15px;
  }

  .laed_head h2 {
    font-size: 30px;
  }

  .col-md-7.mb-4.center_align.justify-end {
    flex-wrap: wrap;
  }

  a.top_link_box {
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .laed_head h2 span {
    font-size: 25px;
  }

  .machine_main .col-md-3 {
    width: 33.33%;
  }

  .machine_main {
    margin-top: 10px;
  }

  .contect_in .d-flex {
    display: block !important;
  }

  .col-md-6.mt-5.text-right {
    width: 100%;
  }

  .cobbine_form01 .col-md-4, .cobbine_form .col-md-4 {
    width: 50%;
    margin-bottom: 14px;
  }

  .acre, .locat {
    font-size: 12px;
  }

  .cobbine_form01 .col-md-4 .col-md-4 {
    margin-bottom: 0;
  }

  .set_prize_table .col-md-2 {
    width: 33.33%;
  }

  .map_card {
    display: none;
  }

  .mobile-nav ul.drop-menu {
    box-shadow: none;
    background: none;
    position: initial !important;
  }

  .mobile-nav ul.drop-menu li a {
    text-align: center;
    text-transform: lowercase;
    padding: 7px 0;
    font-size: 14px;
    color: #fff !important;
  }

  .mobile-nav ul.drop-menu li a:first-letter {
    text-transform: uppercase;
  }

  .w_none {
    display: block;
  }

  .m_none {
    display: none;
  }

  .logos ul {
    flex-wrap: wrap;
  }

  header.main_header {
    background: #1dad8a;
  }

  .mobile .header {
    background-image: linear-gradient(to right, #424242, #424242);
    height: 80px;
  }

  .main_logo img {
    width: 135px;
    height: auto;
  }

  main.main_content {
    padding-top: 80px;
  }

  .scan_div {
    text-align: left;
    margin-top: 10px;
  }

  .scan_ p {
    text-align: left;
    color: #666;
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    line-height: 28px;
  }

  section.hello_div, section.Services, section.register {
    padding: 20px 0;
  }

  .scan_div .row {
    margin: 0;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }

  .p_hello {
    font-size: 18px;
  }

  .hello_name h1 {
    font-size: 25px;
  }

  p.harvester {
    font-size: 15px;
  }

  .scan_ h2 {
    font-size: 16px;
  }

  .scan_ p {
    font-size: 14px;
    line-height: 16px;
  }

  .hello_box h3 {
    font-size: 25px;
    line-height: 45px;
  }

  .hello_box p {
    font-size: 15px;
    line-height: 15.5px;
  }

  .hello_box {
    height: 100px;
  }

  .catagory_tab .nav-tabs .nav-link {
    width: 165px;
    height: 45px;
    font-size: 15px;
    line-height: 30px;
  }

  .tab_des {
    color: #222;
    text-align: center;
    margin: 25px 0;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .tab-content .col-md-2 {
    width: 33.33%;
  }

  .tab_card img {
    height: 140px;
  }

  .tab_card {
    border-radius: 12px;
    height: auto;
    margin-bottom: 25px;
    padding: 8px;
  }

  .tab_card p {
    font-size: 16px;
    line-height: 20px;
  }

  .section_head {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 35px;
  }

  p.section_des {
    font-size: 15px;
  }

  .Services .col-md-4 {
    width: 50%;
  }

  .Service_box img {
    width: 100%;
  }

  .Service_box {
    border: 6px solid #ebebeb;
  }

  .Service_box p {
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    white-space: initial;
    -webkit-box-orient: vertical;
    margin: 3px 0;
    font-size: 20px;
    display: -webkit-box;
    overflow: hidden;
  }

  .register_box {
    height: 100px;
    margin-bottom: 15px;
  }

  .register_box p {
    font-size: 20px;
  }

  .register_box h3 {
    font-size: 20px;
    line-height: 24px;
  }

  p.post {
    margin: 10px 0;
    font-size: 18px;
  }

  .offer_zone .owl-carousel .owl-next, .offer_zone .owl-carousel .owl-prev {
    color: #fff;
    text-align: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 32px;
    position: absolute;
    top: -10%;
  }

  .offer_zone .owl-carousel .owl-prev {
    right: 36px;
  }

  .owl-dots {
    margin-top: -52px;
  }

  .offer_zone {
    padding: 50px 0 20px;
  }

  .offer_zone .owl-dot {
    width: 8px;
    height: 8px;
    padding: 0;
  }

  .offer_zone .owl-dot.active {
    width: 16px;
    height: 16px;
  }

  p.view_all {
    margin: -16px 0 10px;
    font-size: 15px;
  }

  .news_bob h3 {
    margin: 20px 0 0;
    font-size: 23px;
    line-height: 50px;
  }

  .bottom_footer p {
    margin: 0;
    font-size: 13px;
  }

  .news_bob p {
    color: #fff;
    margin: 0;
    font-size: 15px;
  }

  .news_bob {
    margin-bottom: 20px;
  }

  .guide button {
    height: 40px;
    margin-top: 20px;
    font-size: 12px;
  }

  footer.footer {
    padding: 22px 0;
  }

  .footer_details {
    margin-bottom: 15px;
  }

  .line_head_footer {
    margin-bottom: 10px;
  }

  .bottom_footer {
    background: #ddd;
    height: 50px;
    line-height: 50px;
  }

  .links_bottom_footer ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .links_bottom_footer ul li a {
    padding: 0 5px;
    font-size: 10px;
  }

  ul.list_view {
    justify-content: flex-end;
    padding: 0 50px 0 0;
  }

  button.subscribe {
    width: 107px;
    height: 41px;
    font-size: 14px;
  }

  .menu_top_list {
    width: 100%;
  }

  .head_icon ul {
    flex-wrap: wrap;
  }

  .head_icon ul li {
    margin: 0 15px 10px 0;
  }
}

.Ad-Zone_Listings {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.Ad_Zone_Listings_content {
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  height: auto;
  padding: 30px;
  display: flex;
  position: relative;
  bottom: 50px;
  width: 1328px !important;
}

.Ad_Zone_Listings_content_top {
  flex: 1;
  display: flex;
}

.Ad_Zone_Listings_content_top_left {
  flex: 4;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 22px;
  display: flex;
}

.Ad_Zone_Listings_content_top_right {
  flex: 6;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.Ad_Zone_Listings_content_top_right_ul {
  gap: 5px;
  font-family: Poppins;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  list-style: none;
  display: flex;
}

.Ad_Zone_Listings_content_top_right_ul_li {
  border: .5px solid #6663;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100px;
  height: 34px;
  display: flex;
}

.Ad_Zone_Listings_content_middle {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.card_box {
  width: 32%;
  min-height: 430px;
  margin-bottom: 50px;
  box-shadow: 0 2px 2px #00000021;
}

.Ad_Zone_Listings_content_middle_card {
  color: #f3f2f2;
  border-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  box-shadow: 0 2px 2px #0000000d;
}

#Add_more {
  background-color: #f3f2f2;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.Add_more_plus {
  color: #8d8b8b;
  font-size: 25px;
}

.Ad_Zone_Listings_content_middle_card > img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 209px;
}

.Ad_Zone_Listings_content_middle_card_img {
  border-radius: 10%;
  border-radius: [object Object] px;
  flex: 1;
}

.Ad_Zone_Listings_content_middle_card_content {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.Ad_Zone_Listings_content_middle_card_content_top {
  justify-content: space-between;
  align-items: center;
  margin: 20px 10px;
  display: flex;
}

.Ad_Zone_Listings_content_middle_card_content_bottom {
  background-color: #f9f6f6;
  height: 60px;
  padding: 5px 15px;
  display: flex;
  box-shadow: 0 2px 2px #00000021;
}

.Ad_Zone_Listings_content_middle_card_content_bottom_left {
  color: #8d8b8b;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  display: flex;
}

.Ad_Zone_Listings_content_middle_card_content_bottom_right {
  color: #128454;
  letter-spacing: 0;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 700;
  line-height: 15px;
  display: flex;
}

.Ad_Zone_Listings_content_middle_card_content_top_right {
  flex-direction: column;
  gap: 10px;
  padding-right: 15px;
  display: flex;
}

.Validtiy {
  letter-spacing: 0;
  color: #11111180;
  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.Ad_Zone_Listings_content_middle_card_content_top_left {
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  display: flex;
}

.Ad_Zone_Listings_content_middle_card_content_top_left_span1 {
  letter-spacing: 0;
  text-align: left;
  color: #3a3a3a;
  gap: 12px;
  font-family: Poppins;
  font-size: 26px;
  font-weight: 250;
  line-height: 28px;
  display: flex;
}

.Ad_Zone_Listings_content_middle_card_content_top_left_span2 {
  letter-spacing: 0;
  text-align: left;
  color: #3a3a3a;
  font-family: Poppins;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  display: inline-block;
}

.Ad_Zone_Listings_content_middle_card_content_top_left_span3 {
  color: #222;
  letter-spacing: 0;
  text-align: left;
  flex: 1;
  padding: 10px 10px 0;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
}

.Ad_Zone_Listings_content_middle_card_content_top_left_span4 {
  letter-spacing: 0;
  text-align: left;
  color: #999;
  font-family: Poppins;
  font-size: 17px;
  font-weight: 400;
}

.add_space {
  min-height: 50px;
  display: block;
}

.Ad_Zone_Listings_content_middle_card_content_top_right_btn {
  color: #222;
  text-align: center;
  background-color: #9999991a;
  border: .5px solid #6663;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 149px;
  height: 39px;
  display: flex;
}

#boca {
  padding-bottom: 8px;
}

.Ad_Zone_Listings_content_bottom {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-top: 30px;
  display: flex;
}

#top_banner_img3 {
  width: 64%;
}

.Ad_Zone_Listings_content_top_right_ul_li {
  border: .5px solid #6663;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 104px;
  height: 42px;
  margin-bottom: 22px;
  display: flex;
}

.Ad_Zone_Listings_content_bottomss_div1 {
  color: #000;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

#Ad_Zone_Listings_content_top_right_ul_li_id {
  width: 125px;
}

#boka {
  padding-bottom: 8px;
}

SELECT {
  background: url("data:image/svg+xml,<svg height=%2710px%27 width=%2710px%27 viewBox=%270 0 16 16%27 fill=%27%23000000%27 xmlns=%27http://www.w3.org/2000/svg%27><path d=%27M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z%27/></svg>") no-repeat;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-position: calc(100% - .75rem) !important;
}

a.active.Ad_Zone_Listings_content_top_right_ul_li {
  background: #e4f1e7;
}

.Ad_Zone_Listings_content_top_right_ul_li2 {
  background: #e4f1e7;
  border: .5px solid #6663;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100px;
  height: 44px;
  display: flex;
}

@media screen and (min-width: 790px) and (max-width: 1280px) {
  .menu_nav ul li a {
    padding: 0 12px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .malik_input .col-md-4, .malik_input .col-md-8, .malik_input .col-md-6, .malik_input .col-md-2, .malik_input .col-md-2 {
    margin: 10px 0;
    display: block;
    width: 100% !important;
  }

  form.set_prize {
    margin: 0 20px;
  }

  .malik_input .col-md-2 {
    width: 100%;
  }

  .t-bs {
    text-align: center;
  }

  .set_prize .col-md-6 {
    display: block;
  }

  .menu_nav ul li {
    margin: 0 6px;
  }

  .menu_nav ul li a {
    padding: 0 12px;
    font-size: 11px;
  }

  .crop_for .col-md-3, .crop_for .col-md-4, .crop_for .col-md-6 {
    width: 50%;
    display: block;
  }

  .crop_top_div .col-md-7, .crop_top_div .col-md-8, .crop_top_div .col-md-10, .col-md-3.full_100 {
    width: 100%;
  }

  .crop_for .col-md-5, .crop_for .col-md-4, .crop_for .col-md-2 {
    margin-bottom: 15px;
    top: 0;
    left: 0;
  }

  .dropdown_location {
    align-items: center;
    margin-right: 30px;
    display: flex;
  }

  ul.list_view li a {
    font-size: 11px;
  }

  .scan_ p {
    font-size: 14px;
  }

  .scan_ h2 {
    font-size: 16px;
  }

  .hello_name h1 {
    font-size: 28px;
  }

  .p_hello {
    font-size: 20px;
  }

  p.harvester {
    font-size: 15px;
  }

  .tab-content .col-md-2 {
    width: 33.33%;
    margin-bottom: 24px;
  }

  .links_bottom_footer ul li a {
    font-size: 12px;
  }

  .bottom_footer p {
    font-size: 14px;
  }
}

.container {
  justify-content: flex-start;
}

.right_banner {
  width: 100%;
  height: 100%;
}

.right_banner .img3 {
  border-radius: 4px;
  margin-top: 15px;
}

.react-datepicker__input-container input {
  width: 337px !important;
}

.lead_section {
  background: #f9f9f9;
}

.lead_bg {
  background: #fff;
  border-radius: .75rem;
  margin-top: -30px;
  padding: 40px 30px;
  position: relative;
  top: -1.75rem;
}

.laed_head h2 span {
  text-transform: capitalize;
  color: #424242;
  font-family: poppins-regular;
  font-size: 2rem;
  font-weight: normal;
  line-height: 45px;
}

.laed_head h2 {
  text-transform: uppercase;
  color: #424242;
  font-family: poppins-bold;
  font-size: 50px;
  font-weight: bold;
  line-height: 45px;
}

.minusMargin {
  margin-top: -45px !important;
}

#preloader {
  z-index: 1000;
  background: #1f1f1ff2;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#preloader .active {
  display: block;
}

#preloader {
  z-index: 1000;
  background: #1f1f1ff2;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

#preloader .preloader-animation {
  border: 3px solid #0000;
  border-top-color: orange;
  border-radius: 50%;
  width: 6.5em;
  height: 6.5em;
  animation: 2s linear infinite spin;
  display: inline-block;
  position: absolute;
  top: calc(50% - 3.25em);
  left: calc(50% - 3.25em);
}

#preloader .preloader-animation:before {
  content: "";
  border: 3px solid #0000;
  border-top-color: orange;
  border-radius: 50%;
  animation: 1.5s linear infinite spin;
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
}

#preloader .preloader-animation:after {
  content: "";
  border: 3px solid #0000;
  border-top-color: orange;
  border-radius: 50%;
  animation: 1s linear infinite spin;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

#preloader .preloader-container {
  text-align: center;
  width: 100%;
  position: absolute;
  top: calc(50% - 3.25em);
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes hide-preloader {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

#preloader .hide-preloader {
  animation: 10s ease-in forwards hide-preloader;
}

.download-app {
  width: 100%;
}

.dowload-app-icon {
  min-width: 175px;
  max-width: 175px;
}

.social-icon {
  transition: transform .3s;
}

.social-icon:hover {
  transform: scale(1.2);
}

.social-icon.instagram {
  color: #c13584;
}

.social-icon.twitter {
  color: #1da1f2;
}

.social-icon.youtube {
  color: red;
}

.social-icon.facebook {
  color: #3b5998;
}

.buy-sell-contianer {
  background-image: url(/static/image/sell-buy-bg.79e5e14c.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-box {
  transition: all .5s ease-out !important;
}

.service-box:hover {
  box-shadow: .25rem .25rem 2px 2px var(--kg-green) !important;
  transition: all .5s ease-out !important;
}

.navbar-brand img {
  width: 6rem;
  max-height: 6rem;
}

@media (min-width: 992px) {
  .navbar-brand img {
    width: 8.5rem;
    max-height: 6.5rem;
  }
}

button {
  box-shadow: none !important;
}

.set_prize .col-md-6 {
  align-items: center;
  display: flex;
}

.rowpad {
  padding-right: calc(var(--bs-gutter-x) * .8);
  padding-left: calc(var(--bs-gutter-x) * .8);
}

.modal_input {
  width: 100%;
}

.mr-1 {
  margin-right: .25rem;
}

i.fas.fa-bell {
  color: #fff;
  font-size: 1.25rem;
}

.bell_count {
  z-index: 9;
  text-align: center;
  background: #e84444;
  border-radius: 50%;
  width: 1.125rem;
  height: 1.125rem;
  font-size: .75rem;
  line-height: 1.125rem;
  position: absolute;
  top: -.625rem;
  left: 1rem;
}

li.bell {
  position: relative;
}

.mega_menu:hover .mega_menu_list {
  display: block;
}

.mega_menu_list .drop-menu {
  width: 175px;
  top: .875rem;
  left: 130px;
}

.mega_menu_list li a:hover {
  color: #c7c7c7 !important;
}

.mega_menu_list {
  display: block;
}

.drop-menu {
  z-index: 9;
  background: linear-gradient(#fff0 10%, #fff 1%);
  border: 0;
  min-width: 138px;
  padding: 60px 0 0;
  display: none;
  position: absolute;
  top: -1.5rem;
  left: -.875rem;
  border-radius: 0 !important;
}

li.drop-menu-item a {
  text-align: left;
  color: #424242 !important;
  font-size: .75rem !important;
}

.drop-menu li a:hover {
  border: none !important;
}

.menu_btn {
  color: #fff;
  text-transform: uppercase;
  background-image: linear-gradient(135deg, #c39f75 0%, #c39f75f2 25%, #a47947 50%, #c39f75 75%, #8b673d 100%);
  border: none;
  padding: .75rem 2.2em;
  font-size: .875rem;
  transition: all .5s;
}

.menu_btn:hover {
  box-shadow: none;
  background-image: linear-gradient(135deg, #8b673d 0%, #c39f75 25%, #a47947 50%, #c39f75f2 75%, #c39f75 100%);
  background-position: 100% 100%;
}

.menu_nav ul li a:hover {
  color: #8ce9e1;
}

header.main_header {
  background: #424242;
  align-items: center;
  height: 114px;
  display: flex;
}

.main_logo img {
  height: 96px;
}

.main_header .col-md-10 {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.menu_list {
  margin: .75rem 0;
  display: flex;
}

ul.list_view {
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
}

.dropdown_location {
  align-items: center;
  margin-right: 65px;
  display: flex;
}

ul.list_view li {
  margin: 0 .875rem;
  list-style: none;
}

img.home_profile {
  object-fit: cover;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
}

ul.list_view li a, .dropdown_location a {
  text-align: center;
  text-transform: uppercase;
  color: #fffc;
  font-family: Poppins;
  font-size: .875rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.25rem;
  text-decoration: none;
}

.dropdown_location li {
  list-style: none;
}

.dropdown_location i.fas.fa-map-marker-alt {
  margin-right: .25rem;
  font-size: 1rem;
  top: 0;
}

.list_view i.fas.fa-mobile-alt {
  font-size: 1rem;
}

.container {
  width: 100%;
  padding: 0;
}

.dNone {
  display: none;
}

.ml-2 {
  margin-left: .5rem;
}

.mr-2 {
  margin-right: .5rem;
}

.text-bold {
  font-family: poppins-bold;
}

.textGreen {
  color: #128454;
}

.textGrey {
  color: #11111180;
}

.toUpperCase {
  text-transform: uppercase;
}

.green-btn, .plain-btn {
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #128454;
  border: none;
  border-radius: 50px;
  padding: .75rem 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
}

.green-btn:hover, .plain-btn:hover {
  color: #fff;
  background-color: #024328;
}

.green-btn i.fa-chevron-right, .plain-btn i.fa-chevron-right {
  margin-left: .5rem;
}

.green-btn i.fa-chevron-left, .plain-btn i.fa-chevron-left {
  margin-right: .5rem;
}

.plain-btn {
  color: #000;
  background-color: #fff;
  border: .5px solid #222;
}

.more-btn {
  background: #12845433;
  border: .5px solid #e0dcdc;
  border-radius: 26px;
  padding: .5rem 1.25rem;
}

.flex-jcb-aic {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-jcb-aie {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.flex-jcb-ais {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.flex-jce-aic {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-jcc-aic {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-fdc-jcc-aic {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cursorPointer {
  cursor: pointer;
}

.kgLink {
  white-space: nowrap;
  align-items: center;
  display: flex;
  position: relative;
}

.kgLink:after {
  content: "";
  transform-origin: 50%;
  background-color: #000;
  width: 100%;
  height: 1px;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
}

.kgLink:hover {
  color: #000;
  transform: scale(1.05);
}

.kgLink:hover:after {
  transform: scale(1);
}

.newRadio_button {
  display: flex;
}

.newRadio_button .form-check {
  padding: .5rem 1rem 0 .5rem;
}

.newRadio_button .form-check input[type="radio"] {
  display: none;
}

.newRadio_button .form-check input[type="radio"] + label {
  cursor: pointer;
  padding-left: 25px;
  position: relative;
}

.newRadio_button .form-check input[type="radio"] + label:before {
  content: "";
  background-color: #fff;
  border: 1px solid #128454;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.newRadio_button .form-check input[type="radio"] + label:after {
  content: "";
  background-color: #128454;
  border: none;
  border-radius: 20px;
  width: 14px;
  height: 14px;
  display: none;
  position: absolute;
  top: 3px;
  left: 3px;
}

.newRadio_button .form-check input[type="radio"]:checked + label:after {
  display: block;
}

.modal-content {
  border-radius: 1rem;
}

.modal-lg, .modal-xl {
  max-width: 800px;
}

.popup_form .paymen_add label {
  color: #222;
  margin-bottom: .625rem;
  font-size: .875rem;
  line-height: 1.25rem;
}

.popup_form input.form-control {
  height: 49px;
}

button.request {
  box-sizing: border-box;
  text-transform: uppercase;
  color: #fff;
  background: #128454;
  border: .375rem solid #128454;
  border-radius: 90px;
  width: 174px;
  height: 50px;
  font-size: 1rem;
  font-weight: bold;
  line-height: .75rem;
}

.number_input {
  margin: .875rem 0;
  display: flex;
}

.minus_count, .plus_count {
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  background: #1284541a;
  border: 1px solid #ddd;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 48px;
}

.number_input input {
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  width: 64px;
  height: 48px;
  font-size: 1.25rem;
}

.user_p {
  align-items: center;
  text-decoration: none;
  display: flex;
}

#header_name {
  color: #fff;
  margin-right: 1rem;
}

.nm_user {
  color: #000;
  padding: 1.25rem;
}

.nm_user h3 {
  text-transform: uppercase;
  color: #222;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5rem;
}

.nm_user h3 span {
  text-transform: lowercase;
  color: #999;
  font-weight: normal;
  display: block;
}

.user_sort {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  padding: 1.25rem;
}

.user_sort p {
  text-transform: capitalize;
  color: #878787;
  margin: 0;
  font-size: .875rem;
  line-height: normal;
}

.user_sort p span {
  color: #000;
}

.user_link {
  padding: .875rem 1.25rem;
}

.user_bttn {
  margin: .625rem 0;
}

.user_profile a {
  text-decoration: none;
}

.user_link:hover {
  background: #f5f5f5;
}

.user_link {
  text-transform: capitalize;
  color: #222;
  padding: .875rem 1.25rem;
  font-size: .875rem;
}

.user_link i {
  color: #a8a8a8;
  padding-right: 1rem;
}

.log_out_user {
  text-align: center;
  text-transform: uppercase;
  color: #222;
  background: #f4f4f4;
  border-radius: 0 0 .875rem .875rem;
  padding: 1.25rem;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5rem;
}

.register_text {
  text-transform: capitalize;
  color: #424242;
  width: 129px;
  height: 45px;
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: normal;
  line-height: 45px;
  top: 358px;
  left: 385px;
}

.sub-list {
  color: #000;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 0;
  display: none;
  position: absolute;
  top: 2.25rem;
  left: 0;
}

header .dropdown-menu {
  animation: .2s ease-out fadeInDown;
  background-color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  margin-top: 12px !important;
  padding: 10px 0 !important;
  box-shadow: 0 15px 35px #00000026 !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header .dropdown-item {
  color: #333 !important;
  border-radius: 0 !important;
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all .2s !important;
}

header .dropdown-item:hover {
  color: #6b2e8c !important;
  background-color: #f8f4fa !important;
  padding-left: 30px !important;
}

header .nav-link.dropdown-toggle:after {
  vertical-align: middle !important;
  margin-left: 6px !important;
}

.login-popup .modal-dialog {
  width: 407.42px;
  display: block;
}

.login-popup .modal-content {
  box-shadow: 0 6px #ffffff2e;
}

.close_modal .btn-close {
  opacity: .3;
  margin: .875rem 1.125rem 0 0;
  font-size: .625rem;
}

.close_modal .btn-close:hover {
  opacity: 1;
}

.login-popup-main h3 {
  text-align: center;
  text-transform: uppercase;
  color: #222;
  margin: 0 0 45px;
  font-size: 27px;
  font-weight: bold;
  line-height: 40px;
}

.login-inner button {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: #128454;
  border: none;
  border-radius: .875rem;
  width: 100%;
  height: 51.57px;
  margin: 1.5rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.25rem;
}

.login-inner button:disabled {
  cursor: default;
  filter: grayscale(.8);
}

.login-bottom {
  background-image: url(/static/image/login_bg.6951acd5.png);
  background-size: 100% 101%;
  border-radius: 1.5rem;
  padding: 140px 0 35px;
}

.login-bottom p {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.popup_form input.form-control {
  height: 49px;
}

button.register_modal_btn {
  box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: none;
  border: 1px solid #fff;
  border-radius: 50px;
  width: 204px;
  height: 52px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 30px;
}

.login-inner {
  padding: 0 48px;
}

.alert_m {
  background: #e8444433;
  border-radius: .5rem;
  margin: 23px 0;
  padding: 17px;
}

.banner-box, .banner-box img {
  width: 100%;
  max-height: 11rem;
}

.pg_top_banner {
  background-image: url(/static/image/top_banner_bg.524ba38d.png);
  background-position: center;
  background-size: contain;
}

.pg_top_bg {
  background: #e0e0e0e6;
  padding: 30px 0 60px;
}

.top_banner_img {
  text-align: center;
}

.top_banner_img img {
  width: 100%;
}

.home-newsevents {
  margin-top: .5rem;
  margin-bottom: 3.5rem;
}

.newsevents-banner-container {
  isolation: isolate;
  align-items: stretch;
  height: 349px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px #0a021e8c;
}

.newsevents-banner-img {
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.newsevents-content-overlay {
  z-index: 2;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: -21px;
  padding: 0 5rem;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.newsevents-left-col {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  max-width: 55%;
  display: flex;
}

.ne-logo-wrap {
  aspect-ratio: 128.75 / 40;
  width: 128.755px;
  height: 40px;
  margin-bottom: 1.25rem;
}

.ne-logo {
  object-fit: contain;
  width: auto;
  height: 40px;
}

.ne-headline {
  color: #fff;
  text-transform: uppercase;
  align-self: stretch;
  margin: 0 0 .5rem;
  font-family: Open Sans, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ne-headline-gold {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #fef0b6 0%, #e9c47b 59.13%, #e0bb71 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Open Sans, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ne-subtitle {
  color: #fff;
  align-self: stretch;
  margin: 0 0 1.5rem;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ne-features-row {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  display: flex;
}

.ne-feature-pill {
  align-items: center;
  gap: .6rem;
  display: flex;
}

.ne-feature-icon {
  color: #fff;
  background: #ffffff14;
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  display: flex;
}

.ne-feature-label {
  color: #ffffffe6;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.ne-feature-divider {
  background: #ffffff26;
  flex-shrink: 0;
  width: 1px;
  height: 32px;
}

.ne-cta-row {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.ne-cta-btn {
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
  background: linear-gradient(90deg, #a838ff 0%, #7b22f5 100%);
  border: none;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 218px;
  height: 56px;
  padding: 0 24px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
  display: flex;
  box-shadow: 0 4px 20px #a838ff73;
}

.ne-cta-btn:hover {
  background: linear-gradient(90deg, #b24fff 0%, #8731fc 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #a838ff99;
}

.ne-cta-arrow {
  font-size: .95rem;
  transition: transform .2s;
}

.ne-cta-btn:hover .ne-cta-arrow {
  transform: translateX(4px);
}

.ne-price-divider {
  background: #fff3;
  flex-shrink: 0;
  width: 1px;
  height: 42px;
}

.ne-price-block {
  flex-direction: column;
  line-height: 1.1;
  display: flex;
}

.ne-price-label {
  color: #fff;
  letter-spacing: -.07px;
  margin-bottom: .15rem;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ne-price-value {
  color: #e9c47b;
  text-shadow: 0 0 12px #e9c47b59;
  font-family: Open Sans, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .ne-headline {
    font-size: 2.2rem;
  }

  .newsevents-content-overlay {
    padding: 0 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .ne-headline {
    font-size: 1.9rem;
  }

  .newsevents-content-overlay {
    padding: 0 2.5rem;
  }

  .newsevents-left-col {
    max-width: 65%;
  }
}

@media (max-width: 767.98px) {
  .newsevents-banner-img {
    display: none;
  }

  .newsevents-banner-container {
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: stretch;
    height: auto;
    min-height: 360px;
    display: flex;
  }

  .newsevents-content-overlay {
    height: auto;
    padding: 2.5rem 1.5rem;
    position: relative;
  }

  .newsevents-left-col {
    width: 100%;
    max-width: 100%;
  }

  .ne-features-row {
    flex-wrap: wrap;
    gap: .8rem;
  }

  .ne-feature-divider {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .newsevents-banner-container {
    min-height: 420px;
  }

  .newsevents-content-overlay {
    background-color: #0d0422b3;
    padding: 2rem 1rem;
  }

  .ne-headline {
    font-size: 1.6rem;
  }

  .ne-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ne-cta-btn {
    justify-content: center;
    width: 100%;
  }

  .ne-price-divider {
    display: none;
  }

  .home-newsevents {
    margin-top: .5rem;
    margin-bottom: 2rem;
  }
}

.home-offerzone {
  background: #fff;
  border: none;
}

.home-offerzone .slick-track {
  gap: 0;
  padding: 10px 0;
  display: flex !important;
}

.home-offerzone .slick-slide {
  height: auto;
  display: flex;
}

.home-offerzone .slick-slide > div {
  width: 100%;
  display: flex;
}

.offer-slider-container .slick-list {
  margin: 0 -.5rem;
}

.offerzone-title {
  color: var(--Neutral-colors-Primary-Text);
  align-self: stretch;
  font-family: Open Sans, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.offerzone-subtitle {
  color: #07090f99;
  align-self: stretch;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.promote-banner-pill {
  background: linear-gradient(135deg, #fbf9ff 0%, #faf7ff 100%);
  border: 1px solid #f2ebff;
  border-radius: 76px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 4px #811ea205;
}

.promote-banner-pill:hover {
  background: linear-gradient(135deg, #f3f0ff 0%, #ede9fe 100%);
  border-color: #d8c8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #811ea214;
}

.promote-arrow {
  flex-shrink: 0;
  width: 20.571px;
  height: 16px;
  transition: transform .2s;
}

.promote-banner-pill:hover .promote-arrow {
  transform: translateX(4px);
}

.promote-icon {
  object-fit: contain;
  width: 46px;
  height: 46px;
}

.promote-title {
  color: #420c91;
  align-self: stretch;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.text-purple {
  color: #420c91;
  font-size: 15px;
  font-weight: 700;
}

.promote-subtitle {
  color: #764eaf;
  align-self: stretch;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text-purple-light {
  color: #764eaf;
  font-size: 12px;
  font-weight: 400;
}

.slider-nav-btn {
  color: #4b5563;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  transition: all .2s;
}

.slider-nav-btn:hover {
  color: #fff;
  background-color: #811ea2;
  border-color: #811ea2;
  box-shadow: 0 4px 12px #811ea240;
}

.offer-slider-wrapper {
  position: relative;
}

.prev-btn-side, .next-btn-side {
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.prev-btn-side {
  left: -20px;
}

.next-btn-side {
  right: -20px;
}

.offer-slider-wrapper:hover .prev-btn-side, .offer-slider-wrapper:hover .next-btn-side {
  opacity: 1;
  pointer-events: auto;
}

.offer-card {
  background: linear-gradient(#fff 0%, #fbf9ff 100%);
  border: 1px solid #eceff4;
  border-radius: 16px;
  height: 100%;
  padding: 4px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  box-shadow: 0 2px 8px #00000005;
}

.offer-card:hover {
  border-color: #d6c4ff;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px #811ea214;
}

.offer-img-container {
  background-color: #f9fafb;
  border-radius: 12px;
  height: 160px;
  overflow: hidden;
}

.offer-img-container img {
  object-fit: cover;
  align-self: stretch;
  width: 178px;
  height: 140px;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.offer-card:hover .offer-img-container img {
  transform: scale(1.08);
}

.offer-hover-overlay {
  opacity: 0;
  z-index: 2;
  background: #1e163b4d;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.offer-card:hover .offer-hover-overlay {
  opacity: 1;
}

.explore-badge {
  color: #1e163b;
  background-color: #fff;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  transition: transform .3s;
  transform: translateY(10px);
  box-shadow: 0 4px 12px #00000014;
}

.offer-card:hover .explore-badge {
  transform: translateY(0);
}

.offer-discount-badge {
  color: #257a28;
  letter-spacing: .2px;
  z-index: 1;
  background-color: #f1fff5e6;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 24px;
  font-size: 11px;
  font-weight: 600;
  bottom: 0;
  left: 0;
  right: 0;
}

.offer-card-body {
  border-top: none;
}

.label-best-offers {
  color: #45474b;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 600;
}

.category-name {
  color: #07090f;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}

.offer-card:hover .category-name {
  color: #811ea2;
}

.see-all-card {
  background: linear-gradient(#fff 0%, #fbf9ff 100%);
  border: 1px solid #eceff4;
  border-radius: 16px;
  min-height: 200px;
  padding: 4px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 8px #00000005;
}

.see-all-card:hover {
  border-color: #d6c4ff;
  transform: translateY(-6px);
  box-shadow: 0 12px 24px #811ea214;
}

.see-all-title {
  color: #07090f;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.see-all-btn-circle {
  background-color: #811ea2;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 8.889px;
  width: 24px;
  height: 24px;
  padding: 3px;
  font-size: 11px;
  transition: all .3s;
  display: flex;
}

.see-all-card:hover .see-all-btn-circle {
  background-color: #9d38be;
  transform: scale(1.1);
}

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  display: block;
  position: relative;
}

.slick-list {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  border: 1px solid #0000;
  height: auto;
  display: block;
}

.slick-arrow.slick-hidden {
  display: none;
}

.dual-slider-wrapper {
  width: 100%;
  padding-top: 18px;
  position: relative;
}

.dual-slider-wrapper .slider {
  z-index: 1;
  background-color: #dee2e6;
  border-radius: 3px;
  height: 6px;
  margin-top: -20px;
  position: relative;
}

.slider__track, .slider__range {
  border-radius: 3px;
  height: 6px;
  position: absolute;
  top: 0;
}

.thumb {
  cursor: pointer;
  top: 3px;
}

.slider__track {
  z-index: 1;
  background-color: #dee2e6;
  width: 100%;
}

.slider__range {
  z-index: 2;
  background-color: #198754;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  z-index: 3;
  background: none;
  width: 100%;
  height: 0;
  position: absolute;
}

input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  background: #198754;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -7px;
}

input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  background: var(--kg-green);
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.table tr:first-child th:first-child {
  border-top-left-radius: 14px;
}

.table tr:first-child th:last-child {
  border-top-right-radius: 14px;
}

.table tbody td {
  padding-top: .7rem;
  padding-bottom: .7rem;
}

.table thead th {
  border: 0;
  padding-left: .7rem;
  padding-right: .7rem;
}

.loader-container {
  min-height: 20rem;
  max-height: 100%;
}

.lds-dual-ring {
  width: 80px;
  height: 80px;
  display: inline-block;
}

.lds-dual-ring:after {
  content: " ";
  border: 6px solid #128454;
  border-color: #128454 #0000;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin: 8px;
  animation: 1.2s linear infinite lds-dual-ring;
  display: block;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tab-btn {
  color: #000;
  border: .5px solid #6663;
  font-family: inherit;
  font-size: 13px;
}

.tab-btn.active {
  background-color: var(--app-secondary);
}

.tab-btn:hover {
  background-color: var(--kg-green);
  color: var(--kg-white);
}

.tab-btn:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--kg-green);
  color: var(--kg-white);
}

.property-search-wrapper {
  max-width: 1200px;
}

.bg-purple-light {
  background-color: #f3e8fa !important;
}

.bg-theme-purple {
  background-color: #6b2e8c !important;
}

.text-theme-purple {
  color: #6b2e8c !important;
}

.btn-theme-purple {
  transition: all .2s;
  color: #fff !important;
  background-color: #6b2e8c !important;
}

.btn-theme-purple:hover {
  color: #fff !important;
  background-color: #552570 !important;
}

.no-scrollbar {
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.property-type-icon {
  object-fit: contain;
  width: 40px;
  height: 40px;
}

.search-bar-height {
  height: 64px;
}

.border-light-subtle {
  border: 1px solid #f0f0f0 !important;
}

.hover-scale-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000000d !important;
}

.search-row-container {
  align-items: center;
  gap: 16px;
  width: 100%;
  display: flex;
  flex-direction: row !important;
}

.search-input-wrapper {
  background-color: #fff;
  flex: auto;
  align-items: center;
  height: 60px;
  padding: 0 12px 0 24px;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
  box-shadow: 0 4px 16px #6b2e8c0a;
  border: 1px solid #e2d3eb !important;
  border-radius: 24px !important;
}

.search-input-wrapper:focus-within {
  box-shadow: 0 4px 20px #6b2e8c1a;
  border-color: #8824a4 !important;
}

.search-input-field {
  color: #4d4d4d;
  font-size: 16px;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
}

.search-input-field::placeholder {
  color: #8c8c8c;
  opacity: 1;
}

.near-me-btn {
  cursor: pointer;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #e2d3eb;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  transition: all .2s;
  display: flex;
}

.near-me-btn:hover {
  background-color: #faf5ff;
  border-color: #8824a4;
}

.search-btn {
  white-space: nowrap;
  flex: none;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 48px;
  font-size: 18px;
  font-weight: 600;
  transition: transform .2s, opacity .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 12px #8824a433;
  color: #fff !important;
  background: linear-gradient(90deg, #8824a4 0%, #a22eba 100%) !important;
  border: none !important;
  border-radius: 24px !important;
}

.search-btn:hover {
  opacity: .95;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px #8824a44d;
  color: #fff !important;
}

.search-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .search-row-container {
    gap: 12px;
  }

  .search-input-wrapper {
    height: 56px;
    padding: 0 8px 0 16px;
    border-radius: 20px !important;
  }

  .search-btn {
    height: 56px;
    padding: 0 32px;
    font-size: 16px;
    border-radius: 20px !important;
  }
}

@media (max-width: 576px) {
  .search-row-container {
    gap: 8px;
  }

  .search-input-wrapper {
    height: 50px;
    padding: 0 6px 0 12px;
    border-radius: 16px !important;
  }

  .search-btn {
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 16px !important;
  }

  .near-me-btn {
    padding: 6px 12px;
  }

  .near-me-btn span {
    display: none;
  }

  .near-me-btn svg {
    margin-right: 0 !important;
  }
}

.top-properties-wrapper {
  background-color: #6a1b9a;
  background-image: repeating-linear-gradient(45deg, #ffffff08 0, #ffffff08 2px, #0000 2px, #0000 8px);
}

.top-props-view-btn {
  border: 1px solid #0000;
  transition: all .3s;
  color: #6a1b9a !important;
}

.top-props-view-btn:hover {
  color: #4a148c !important;
  background-color: #f3e5f5 !important;
}

.top-properties-slider .slick-slide {
  padding: .5rem 0;
}

.top-properties-slider .card {
  transition: transform .2s, box-shadow .2s;
}

.top-properties-slider .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #0003 !important;
}

.exclusive-properties-section .ads-btn {
  color: #7e22ce;
  background-color: #f3e8ff;
  border: 1px solid #7e22ce;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.exclusive-properties-section .ads-btn:hover {
  background-color: #e9d5ff;
}

.exclusive-properties-section .property-card {
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #f0f0f0 !important;
  box-shadow: 0 4px 15px #0000000d !important;
}

.exclusive-properties-section .property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px #0000001a !important;
}

.exclusive-properties-section .property-img-container {
  height: 220px;
  overflow: hidden;
}

.exclusive-properties-section .property-img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.exclusive-properties-section .border-dotted {
  border-top: 1px dotted #ccc !important;
}

.exclusive-properties-section .view-details-btn {
  color: #7e22ce;
  background-color: #f3e8ff;
  border: 1px solid #7e22ce;
  font-size: .8rem;
  transition: all .2s;
}

.exclusive-properties-section .view-details-btn:hover {
  color: #fff;
  background-color: #7e22ce;
}

.exclusive-slider .slick-list {
  padding: 10px 0;
}

.offline-selling-section {
  width: 100%;
}

.offline-banner-card {
  background-color: #faf6f0;
  background-image: url(/static/image/offline_banner_bg.cdcc148d.png);
  background-position: right -8px center;
  background-repeat: no-repeat;
  background-size: auto 106%;
  border: 1px solid #e2d3eb;
  border-radius: 24px;
  min-height: 200px;
  font-family: Open Sans, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.offline-banner-left {
  z-index: 2;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 15px 40px;
  display: flex;
}

.offline-logo-wrapper {
  margin-bottom: 8px;
}

.offline-logo {
  aspect-ratio: 101.25 / 31.46;
  object-fit: contain;
  width: 101.25px;
  height: 31.455px;
}

.offline-banner-title {
  color: #241741;
  letter-spacing: -.48px;
  margin-bottom: 4px;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.offline-banner-subtitle {
  color: #241741;
  letter-spacing: -.48px;
  margin-bottom: 16px;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.title-gold {
  letter-spacing: -.48px;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #cba36e !important;
}

.btn-gold {
  font-weight: 700;
  color: #cba36e !important;
}

.offline-banner-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  display: flex;
}

.divider-vertical {
  background-color: #e2d3eb;
  flex-shrink: 0;
  width: 1px;
  height: 40px;
}

.list-now-btn {
  flex-shrink: 0;
  color: #fff !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  background-color: #241741 !important;
  border: none !important;
  border-radius: 8px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  height: 38px !important;
  padding: 0 16px !important;
  font-family: Open Sans, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: all .2s !important;
  display: inline-flex !important;
  box-shadow: 0 4px 10px #24174126 !important;
}

.list-now-btn:hover {
  transform: translateY(-1px);
  background-color: #312059 !important;
  box-shadow: 0 6px 14px #24174140 !important;
}

.btn-arrow {
  color: #cba36e;
  justify-content: center;
  align-items: center;
  width: 11.57px;
  height: 9px;
  transition: transform .2s;
  display: inline-flex;
}

.list-now-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.offline-features {
  align-items: center;
  gap: 24px;
  display: flex;
}

.feature-item {
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  display: flex;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: #291a49 !important;
  background-color: #ebe5ea !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;
}

.feature-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 29.006px;
  height: 29.006px;
  display: inline-flex;
}

.feature-text {
  flex-direction: column;
  display: flex;
}

.feature-text strong {
  color: #241741;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-text p {
  color: #61676c;
  font-family: Open Sans, sans-serif;
  font-size: 11px;
  line-height: 1.2;
  margin: 2px 0 0 !important;
}

.offline-banner-right {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 64px;
  display: flex;
  position: absolute;
  top: 80px;
  right: 36px;
}

.relax-text {
  color: #fff;
  text-align: center;
  letter-spacing: .2px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 !important;
}

@media (min-width: 992px) {
  .offline-banner-card {
    height: 200px;
    min-height: 200px;
  }

  .offline-banner-left {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 20px !important;
  }

  .offline-banner-actions, .offline-features {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1200px) {
  .offline-banner-left {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 20px 30px;
  }

  .offline-banner-title {
    font-size: 24px;
  }

  .offline-banner-subtitle {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .offline-banner-actions, .offline-features {
    flex-wrap: nowrap;
    gap: 15px;
  }

  .feature-item {
    gap: 8px;
  }

  .offline-banner-right {
    margin-top: 0;
    top: 80px;
    right: 32px;
  }

  .divider-vertical {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .offline-banner-card {
    background-position: 100%;
    background-size: cover;
  }

  .offline-banner-right {
    display: none !important;
  }

  .offline-banner-actions {
    gap: 15px;
  }

  .offline-features {
    flex-wrap: wrap;
    gap: 15px;
  }

  .offline-banner-actions > .divider-vertical {
    display: none;
  }
}

@media (max-width: 575px) {
  .offline-banner-card {
    background-image: linear-gradient(#faf6f0 65%, #faf6f066 100%), url(/static/image/offline_banner_mobile_bg.246bcb9d.png);
    background-position: 100% 100%;
    background-size: cover;
    border-radius: 20px;
    min-height: auto;
  }

  .offline-banner-left {
    padding: 24px 20px;
  }

  .offline-banner-title {
    font-size: 20px;
  }

  .offline-banner-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .offline-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .list-now-btn {
    width: 100%;
    padding: 12px 20px !important;
  }

  .divider-vertical {
    display: none !important;
  }

  .offline-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .feature-item {
    width: 100%;
  }
}

.home-cta-section .cta-banner {
  border: 1px solid #0000000d;
  min-height: 220px;
  transition: transform .2s, box-shadow .2s;
}

.home-cta-section .cta-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px #0000000f !important;
}

.home-cta-section .cta-blue {
  background-color: #f0f2ff;
}

.home-cta-section .cta-green {
  background-color: #e6f8f3;
}

.home-cta-section .text-dark-blue {
  color: #2d3663;
  line-height: 1.3;
}

.home-cta-section .cta-content {
  z-index: 2;
  flex: 1;
  max-width: 60%;
  position: relative;
}

.home-cta-section .cta-image-wrapper {
  z-index: 1;
  justify-content: flex-end;
  align-items: flex-end;
  width: 45%;
  height: 90%;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 10px;
}

.home-cta-section .cta-image-wrapper img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.home-cta-section .z-1 {
  z-index: 1;
}

@media (max-width: 768px) {
  .home-cta-section .cta-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .home-cta-section .cta-image-wrapper {
    width: 100%;
    height: 150px;
    margin-top: 10px;
    position: relative;
    right: 0;
  }
}

.connect-section {
  border: 1px solid #f0f0f0;
}

.connect-section .border-primary-purple {
  border-left: 4px solid #4b2e83 !important;
}

.connect-section .view-all-btn {
  color: #7e22ce;
  background-color: #0000;
  border: 1px solid #7e22ce;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
}

.connect-section .view-all-btn:hover {
  color: #6b21a8;
  background-color: #f3e8ff;
}

.connect-section .connect-img-container {
  aspect-ratio: 1;
  border-radius: 1rem;
  transition: transform .2s;
  overflow: hidden;
  box-shadow: 0 4px 10px #0000000d;
}

.connect-section .connect-img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px #0000001a;
}

.connect-section .connect-img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.connect-section .hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.connect-section .hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 576px) {
  .connect-section .connect-label {
    font-size: .75rem !important;
  }
}

.bg-light-purple-main {
  background-color: #faecff;
  border: 1px solid #f4d3ff !important;
  box-shadow: 0 4px 10px #00000014 !important;
}

.text-deep-purple {
  color: #8824a4;
}

.btn-deep-purple {
  letter-spacing: .5px;
  background-color: #8824a4;
  border: none;
  transition: all .2s;
  color: #fff !important;
}

.btn-deep-purple:hover {
  background-color: #7a1fa2;
  transform: translateY(-1px);
}

.btn-outline-deep-purple {
  letter-spacing: .5px;
  background: none;
  border: 1.5px solid #8824a4;
  transition: all .2s;
  color: #8824a4 !important;
}

.btn-outline-deep-purple:hover {
  background-color: #8824a4;
  color: #fff !important;
}

.rounded-24 {
  border-radius: 24px !important;
}

.rounded-16 {
  border-radius: 16px !important;
}

.plan-badge {
  background-color: #fff;
  border: 1.5px solid #efe4f3;
  border-radius: 50px;
  padding: 8px 24px;
  box-shadow: 0 2px 8px #00000005;
}

.post-overlay {
  text-align: center;
  color: #fff;
  background: #000000b3;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.stat-count {
  letter-spacing: -1px;
  font-size: 42px;
  line-height: 1;
}

.chevron-circle {
  color: #ef5350;
  background-color: #ffe5e5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 900;
  display: flex;
}

.avatar-border {
  border: 2px solid #fff;
  box-shadow: 0 3px 10px #00000014;
}

.image-stack {
  width: 175px;
  height: 90px;
  position: relative;
}

.image-stack-1 {
  z-index: 1;
  opacity: .5;
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 4px;
  right: -8px;
  transform: scale(.95);
}

.image-stack-2 {
  z-index: 2;
  border: 1.5px solid #fff;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000001a;
}

.dropdown-menu {
  z-index: 1050 !important;
  background-color: #fff !important;
  border: none !important;
  padding: 10px 0 !important;
  box-shadow: 0 10px 30px #0000001a !important;
}

.dropdown-item {
  color: #333 !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all .2s !important;
}

.dropdown-item:hover {
  color: #8824a4 !important;
  background-color: #fef2ff !important;
}

.dropdown-item:active {
  color: #fff !important;
  background-color: #8824a4 !important;
}

.leads-grow-banner-section {
  background-color: #fff;
}

.leads-grow-banner-img {
  cursor: pointer;
  border-radius: 16px;
  width: 100%;
  height: auto;
  transition: opacity .2s;
  display: block;
}

.leads-grow-banner-img:hover {
  opacity: .93;
}

