:root {
  --kg-green: #128454;
  --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;
}

*, :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;
}

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

.kg-bg-green, .kg-bg-primary, .kg-kg-success {
  background-color: var(--kg-green) !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, .kg-success {
  color: var(--kg-green) !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);
}

.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-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;
}

.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;
}

.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-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, div.form-select, input.form-control, select.form-select {
  vertical-align: middle;
  height: 3rem;
  font-size: smaller;
}

input.form-control::placeholder, textarea::placeholder, select.form-select, div.form-select, 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;
}

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;
}

.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;
}

.service-category-box {
  cursor: pointer;
  border: .5rem solid #ffffff80;
  transition: all .3s;
  transform: scale(1);
  box-shadow: 0 0 1.25rem #00000040;
}

.service-category-box:hover {
  transform: scale(1.05);
}

.service-category-box[data-info="sell"] {
  background: #a3ba16;
}

.service-category-box[data-info="purchase"] {
  background: #ec7201;
}

.service-category-box[data-info="services"] {
  background: #d1355b;
}

.service-category-box[data-info="offerzone"] {
  background: #067fee;
}

.service-category-box[data-info="adzone"] {
  background: #894bc8;
}

section.home-more-about {
  background-image: url(/static/image/about_kisan.4c19973b.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#home-banner {
  margin-bottom: 0;
}

#home-banner .banner-child {
  position: relative;
}

#home-banner .banner-child img {
  width: 100%;
}

#home-banner .banner-child .btn-blk .see-more {
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 50px;
  padding: .5rem 3rem;
  position: absolute;
  bottom: 8%;
  left: 20.5%;
  transform: translateX(-23.5%);
}

#home-banner .banner-child .btn-blk .see-more.right {
  left: 80%;
  transform: translateX(-80%);
}

#home-banner .banner-child .btn-blk .see-more.geranium-lake {
  background-color: #e6272c;
}

#home-banner .banner-child .btn-blk .see-more.marigold {
  background-color: #e3a229;
}

#home-banner .banner-child .btn-blk .see-more.alloy-orange {
  background-color: #c86a08;
}

#home-banner .banner-child .btn-blk .see-more.blue {
  background-color: #0385c9;
}

#home-banner .banner-child .btn-blk .see-more.sinopia {
  background-color: #c93f03;
}

#home-banner .banner-child .btn-blk .see-more.texas-green {
  background-color: #038d21;
}

#home-banner .banner-child .btn-blk .see-more.AF-blue {
  background-color: #07378c;
}

#home-banner .banner-child .btn-blk .see-more.metallic-green {
  background-color: #416e09;
}

#home-banner .banner-child .btn-blk .see-more.true-blue {
  background-color: #0060ce;
}

#home-banner .banner-child .btn-blk .see-more.philippine-orange {
  background-color: #ff7200;
}

#home-banner .off-arr {
  z-index: 9;
  background: #fafafa80;
  border: none;
  padding: .5rem 1rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#home-banner .off-arr.prev-arr {
  right: unset;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  left: 0;
}

#home-banner .off-arr.prev-arr img {
  left: -5px;
}

#home-banner .off-arr.next-arr {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

#home-banner .off-arr img {
  width: 10px;
  position: relative;
  left: 5px;
}

#home-banner .slick-dots {
  bottom: 2%;
}

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

#home-banner .slick-dots li button {
  transform-origin: center;
  background: #ffffff80;
  background-position: unset;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: none;
}

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

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

.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;
}

.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;
}

.home-newsevents {
  background-image: url(/static/image/news-events-bg.75296117.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-offerzone {
  background-image: url(/static/image/offer-zone-bg.545d2523.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-offerzone .slick-track {
  justify-content: center;
  gap: 2rem;
  display: flex;
}

.home-offerzone .slick-dots {
  bottom: -3.5rem;
}

.home-offerzone .slick-dots li button {
  transform-origin: center;
  background: #ffffff80;
  background-position: unset;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: none;
}

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

.home-offerzone .slick-dots .slick-active button {
  background: #fff;
  width: 14px;
  height: 14px;
}

.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;
}

.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 80px;
}

.top_banner_img {
  text-align: center;
}

.top_banner_img img {
  width: 100%;
}

.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: #e4f1e7;
}

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

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

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

