* {
    padding: 0;
    margin: 0;
  }
  
  :root {
    --primary-color: #f3722a !important;
    --secondary-color: #181818;
    --original-bg: #eaeaea;
    --primary-gradient: linear-gradient(45deg, #e55220, #a9340c, #852200);
    --default-font: "Inter", serif;
    --secondary-font: "Poppins", serif;
    --font-size: 16px;
    --prev-icon: assets\img\icon\arrow.svg;
  }
  html,
  body {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  body {
    font-family: var(--default-font) !important;
    font-size: var(--font-size) !important;
    height: 100%;
    position: relative !important;
  }
  p {
    margin-bottom: 0px;
  }
  .body-grey {
    background: rgba(250, 251, 252, 1);
  }
  .secondary-font {
    font-family: var(--secondary-font);
  }
  .title-f {
    font-family: "Orbitron", sans-serif;
    font-size: 32px;
  }
  
  .bg-primary {
    background-color: var(--primary-color);
  }
  .bg-secondary {
    background-color: var(--secondary-color);
  }
  .bg-gradient-p {
    background: linear-gradient(45deg, #e55220, #a9340c, #852200);
  }
  .grey-bg {
    background-color: #efecec;
  }
  .bg-grey {
    background-color: #eef1f9;
  }
  .container {
    margin: auto !important;
  }
  .text-default {
    color: var(--primary-color) !important;
  }
  .grey-text {
    color: #5b6a84;
  }
  .shadow-btn{
    color: var(--primary-color); 
    box-shadow: var(--primary-color) 4px 4px 0px;
    transition: all 0.3s linear;
  }
  .shadow-btn:hover{
    background-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow:#fff 4px 4px 0px !important;
    transition: all 0.3s linear;
  }
  .form-btn{
    background-color: var(--primary-color);
     transition: all 0.2s linear;
  }
  input[type=button]:hover{
    background-color: #000;
    transition: all 0.2s linear;
  }
  input[type=submit]:hover{
    background-color: #000;
    transition: all 0.2s linear;
  }
  .form-btn:hover{
    background-color: #000;
     transition: all 0.2s linear;
  }
  .form-b-btn:hover{
    font-weight: 500 !important;
    border:1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    transition: all 0.2s linear;

  }
    .register-btn{
      background-color: #000;
      transition: all 0.2s linear;
    }
  .register-btn:hover{
    transition: all 0.2s linear;
    background-color: var(--primary-color) !important;
  }
  /* Loader Styles */
  #page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
  }

  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #f3722a !important;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  /* Nav bar CSS */
  .nav-item{
    position: relative;
  }
  .menu-burger path {
    transform: rotate(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-burger.active path:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: 10% 50%; 
    transition: all 0.2s linear;
  }
  
  .menu-burger.active path:nth-child(2) {
    transform: rotate(-45deg);
    transform-origin: 37% 58%; 
    transition: all 0.2s linear;
  }
  
  .menu-burger.active path:nth-child(3) {
    opacity: 0; 
    transition: all 0.2s linear;
  }
  .spose::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    top: -28px;
    left: -7px;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: transform 0.2s ease-in-out;
    transform: translateY(20px);
  }
  .nav-list{
    position: absolute;
    border-top: 10px solid var(--primary-color);
    background-color: white;
    left: 0;
    top: 100%;
    min-width: 200px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding: 10px 11px;
    border-radius: 0px 5px 5px 5px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.2s linear;
  }
  .nav-item:hover .spose::before{
    visibility: visible;
    opacity: 100%;
    display: block;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;

  }
  .nav-item:hover .nav-list{
    visibility: visible;
    opacity: 100%;
    transform:translateY(0px);
    transition: transform 0.2s linear;

  }
  .nav-list a{
    /* border-bottom: 1px solid rgba(128, 128, 128, 0.311); */
    display: flex;
    gap: 5px;

  }
  .nav-list a span{
    visibility: hidden;
    opacity: 0;
    display: none;
  }
  .nav-list a:hover span{
    visibility: visible;
    opacity: 100%;
    display: block;
  }
  .nav-list a{
    color: #000 !important;
    min-width: max-content;
    line-height: 2.1rem !important;
    font-size: 14px;
  }
  .nav-list a:hover{
    transition: all 0.3s ease-in;
    transform: translateX(10px);
  }
  .main-menubar li a{
    line-height: 5.5rem;
    color: #fff;
    transition: all 0.2s ease-out;
  }
  .main-menubar li a:hover{
    color: var(--primary-color) !important;
    transition: all 0.2s ease-out;
  }
  @media (max-width:1000px) {
    .main-menubar{
      overflow-y: scroll;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      height: 100%;
      position: absolute;
      background: black;
      width: 100%;
      left: 0;
      top: 87px;
      padding: 0px 20px;
      transform: translateX(100%);
      transition: all 0.3s linear;

    }
    .burger-menu{
      display: block !important;
    }
    .main-menubar.active{
      transition: all 0.3s linear;
      transform: translateX(0px);

    }
    .main-menubar li{
      border-bottom: 1px solid #ffffff40;
    }
    .main-menubar li a {
      line-height: 4rem;
      font-size: 18px;
      display: flex;
      justify-content: space-between;
    }
    .nav-list a{
      line-height: 3rem !important;
    }
    .nav-list {
    position: relative;
    border-top: 0px solid var(--primary-color);
    background-color: white;
    left: 0;
    top: 0;
    max-height: 0px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0px;
    border-radius: 5px 5px 5px 5px;
    visibility: visible;
    opacity: 100%;
    transition: max-height 0.3s  ;
  }
   .nav-item.active .nav-list{
     border-top: 10px solid var(--primary-color);
     max-height: min-content;
     padding: 11px 10px;
     transition: all 0.3s linear;
   }
  }
  .navbar-div{
    position: sticky;
    /* position: -webkit-sticky;
    display: -webkit-flex;
    overflow-y: hidden; */
  }

  /* Banner CSS */
  @media (max-width:768px){
    .banner {
      min-height: 30vh !important;
    }
  }
  .banner {
    min-height: 60vh;
    width: 100%;
  }
  .banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1818188e;
  }
  .banner img {
    max-height: 85vh;
    object-fit: cover;
    width: 100%;
  }
  .banner-slick .slick-next {
    right: 20px;
    z-index: 1;
  }
  .banner-slick .slick-prev {
    left: 35px;
    z-index: 1;
  }
  .banner-content h1 {
    font-family: "Orbitron", sans-serif;
    text-shadow: 0 0 10px black;
  }
  .banner-content p {
    font-family: var(--secondary-font);
    text-shadow: 0 0 10px black;
  }
  .auction-view-btn:hover {
    color: #fff !important;
  }
  
  .auction-div:hover .auction-date-col {
    background-color: #000 !important;
  }
  .auction-div:hover .auction-date-col p {
    color: #fff !important;
  }
  /* banner form css */
  
  .form-input-fm input:focus {
    outline: none;
  }
  .form-input-fm input {
    padding-top: 5px;
    background-color: transparent;
    font-size: 12px;
  }
  .form-input-fm {
    display: block;
    border-radius: 6px;
  }
  .form-input-fm select {
    padding: 2px;
    background-color: transparent;
    font-size: 12px;
  }
  select {
    background-color: transparent;
  }
  .form-input-fm select:focus {
    outline: none;
  }
  .form-input-fm select option {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 12px !important;
  }
  .autocomplete-list li{
    font-size: 12px;
  }
  @media only screen and (max-width: 1023px) {
    .col {
      flex: 0 0 auto !important;
      width: 100% !important;
      margin-bottom: 25px;
    }
  }
  /* Navbar CSS */
  .loginAuth {
    position: relative;
  }
  .nav-menu:hover .loginAuth::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    bottom: 0;
    transition: 0.2s all ease-in;
  }
  .nav-menu:hover .login-submenu {
    opacity: 100% !important;
    visibility: visible !important;
    transition: 0.2s all ease-in;
    transform: translateY(58px);
    z-index: 1111;
  }
  .login-submenu {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all ease-in;
    transform: translateY(-50px);
  }
  .login-submenu a:hover{
    background-color:#FFF3EC ;
    color: var(--primary-color) !important;
    transition: all 0.2s linear;
  }
  .agent-submenu {
    position: absolute;
    top: 100%;
    min-width: 320px;
    min-height: max-content;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s all ease-in;
    border: 1px solid var(--primary-color);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 4px 4px 0px var(--primary-color);
  }
  .agent-submenu a{
    line-height: 2.2rem;
    padding: 8px;
  }
  .agent-submenu a:hover{
    background-color: #FFF3EC;
    color: var(--primary-color);
  }
  .nav-menu:hover .agent-submenu {
    opacity: 100% !important;
    visibility: visible !important;
    transition: 0.2s all ease-in;
    z-index: 1111;
    min-width: 320px;
    top: 100%;
    height: 100%;
    padding: 23px 20px;
  }
 
  .marquee {
    overflow: hidden;
    background-color: var(--primary-color);
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .team-scroll {
    display: flex;
    gap: 20px;
    will-change: transform;
  }
  
  .item {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  .r-carousel .slick-dots li button:before{
    font-size: 25px;
  }
  .r-carousel .slick-dots li.slick-active button:before{
    font-size: 30px;
    color: #fff;
    text-shadow: 0px 0px 5px #fff;
  }
  .r-carousel .slick-dots li button:before{
    color: #fff;
  }
  .r-carousel .slick-dots li{
    margin: 0px;
    width: 13px;
    height: 15px;
  }
  /* Youtube Video Section */
  
  .videoCoverImage .thumb {
    cursor: pointer;
    max-width: 100%;
    display: block;
  }
  
  /* properties Css */
  .property-img img {
    position: relative;
    min-height: 250px;
    object-fit: cover;
  }
  .property-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, #000, transparent);
    z-index: 20;
  }
  .wishlist a{
    background-color: #000;
  }
  .wishlist:hover a{
    background-color: red !important;
  }
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
  }
  .nav-tabs .nav-link {
    padding: 8px 32px;
    border-radius: 12px !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
  }
  .nav-tabs .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
  }
  
  /* Event Auction CSS */
  .e-auction a:hover{
    background:var(--primary-color) !important;
    border: var(--primary-color) !important;
    color: #fff !important;
    transition: all 0.2s ease-out;
  }
  .auction-date {
    border-left: 10px solid var(--primary-color);
    background-color: #fde0d7;
    color: var(--primary-color);
  }
  
  .auction-link {
    color: #5b6a84 !important;
    width: 100%;
  }
  .auction-sec:hover{
    cursor: pointer;
    box-shadow: 1px 1px 20px var(--primary-color);
    transition: all 0.2s linear;
  }
  .nav-pills .auction-link.active,
  .nav-pills .show > .auction-link {
    background-color: #fff !important;
    color: var(--primary-color) !important;
  }
  
  /* Live Auction Lot CSS */
  .sort-item {
    background: #fff;
    padding: 10px 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px #a8a8a8;
    right: 0;
    width: 100%;
    min-width: max-content;
    opacity: 0;
    visibility: hidden;
  }
  .sort-option:hover .sort-item {
    opacity: 100%;
    visibility: visible;
  }
  /* .live-auction-times .auction-items .auction-time.active{
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    color: var(--primary-color);
    background: linear-gradient(180deg, #ffe8dd, #ffede4);
    animation: movebar 0.3s ease-in;
  }
  @keyframes movebar {
    0%{
      transform: translateX(-80%);
    }
  } */
/* 
  .live-auction-times .auction-items .auction-time.active::before{
    content: '';
    position: absolute;
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    height: 100%;
    left: 0;
    width: 323.73px;
    color: var(--primary-color);
    background: linear-gradient(180deg, #ffe8dd, #ffede4);
    animation: movebar 0.3s ease-in;
  }
  @keyframes movebar {
    0%{
      transform: translateX(-80%);
    }
  } */
  .live-auction-times .auction-items .auction-time.active .auction-active{
    position: absolute;
    left: 0;
    width: 100%;
    height: 38px;
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    color: var(--primary-color);
    /* background: linear-gradient(180deg, #ffe8dd, #ffede4); */
    animation: movebar 0.3s ease-in;
  }
  @keyframes movebar {
    0%{
      transform: translateX(-80%);
    }
  }
  .live-auction-times .auction-items .auction-time {
    border: 1px solid #e4e8ed;
    border-radius: 100px;
    min-width: max-content;
    color: #808080;
    cursor: pointer;
    /* -webkit-user-select: none; 
      -ms-user-select: none;
      user-select: none; */
  }
  .live-auction-times .auction-items::-webkit-scrollbar {
    display: none;
  }
  
  .lot-img img {
    min-height: 290px;
    height: 100%;
    object-fit: cover;
  }
  .lot-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, #000, transparent);
    z-index: 20;
    border-radius: 0.75rem;
  }
  .lot-price-box {
    position: relative;
    min-height: 290px;
    height: 100%;
    max-height: min-content;
    width: 90%;
    /* box-shadow: 4px 4px 0px var(--primary-color); */
    /* background-color: var(--primary-color); */
  }
  .clip-box {
    min-height: 78%;
    width: 100%;
    position: absolute;
    background-color: #fff;
    bottom: 0;
    border-radius: 12px;
    border-top-left-radius: 0;
    border: 2px solid var(--primary-color);
    border-top: 0;
    max-height: 80%;
  }
  .clip-path {
    min-height: 22%;
    width: 30%;
    position: absolute;
    background-color: #fff;
    top: 0;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 2px solid var(--primary-color);
    border-bottom: 0;
  }
  .lot-price-box::before {
    content: "";
    position: absolute;
    height: 23px;
    width: 23px;
    background-color: transparent;
    top: 15%;
    left: 30%;
    border-radius: 100px;
    box-shadow: -8px 8px 0 #fff;
    z-index: 10;
  }
  .clip-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    left: 8px;
    top: 8px;
  }
  .clip-input {
    display: flex;
    justify-content: space-between;
    background-color: rgba(243, 114, 41, 0.2);
  }
  .clip-input input {
    width: 80%;
  }
  .clip-input a {
    width: 20%;
  }
  
  .counter-fn {
    position: relative;
  }
  .counter-fn::after {
    content: ":";
    position: absolute;
    right: -10px;
    top: 0;
  }
  .clip-counter p {
    font-size: 8px;
    line-height: 9px;
    letter-spacing: 1px;
    display: flex;
    gap: 5px;
    justify-content: center;
  }
  
  /* property Detail page css */
  
  .property-live {
    background-color: #dcf4e0;
    color: #48a956;
    font-family: var(--secondary-font);
    max-width: fit-content;
  }
  .i-heart{
    background-color: white;
    color: var(--primary-color);
    transition: all 0.2s linear;
  }
  .i-heart:hover{
    background-color: red;
    color: #fff;
    transition: all 0.2s linear;
  }
  .i-share{
    background-color: white;
    color: #000;
    transition: all 0.2s linear;
  }
  .i-share:hover{
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.2s linear;
  }
  .property-image {
    min-height: 520px;
    overflow: hidden;
    width: 100%;
    max-height: 520px;
  }
  .property-image img {
    min-height: 520px;
  }
  .property-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(360deg, #000, transparent);
    z-index: 20;
  }
  .slick-count {
    background-color: #ffe8dd68;
  }
  .property-slick .slick-prev {
    left: 25px !important;
    z-index: 40;
  }
  .property-slick .slick-next {
    right: 25px !important;
    z-index: 40;
  }
  .property-slick .slick-next {
    background-color: #ffe8dd68;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
  }
  .property-slick .slick-prev {
    background-color: #ffe8dd68;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
  }
  .property-slick .slick-prev:hover {
    background-color: #ffe8dd68 !important;
  }
  .property-slick .slick-next:hover {
    background-color: #ffe8dd68 !important;
  }
  
  .facilities-bar {
    color: #435572 !important;
  }
  .property-details-buttons {
    overflow-x: auto; 
    scrollbar-width: none; 
    user-select: none;
    -webkit-overflow-scrolling: touch; 
  }
  
  .property-details-buttons::-webkit-scrollbar {
    display: none; 
  }
  
  .property-pill {
    display: flex;
    flex-wrap: nowrap; 
    gap: 10px;
    cursor: grab; 
  }
  .property-details-buttons ul li .p-btn {
    display: block;
    font-family: var(--secondary-font);
    color: #435572;
    min-width: max-content;
    position: relative;
  }
  .property-details-buttons ul li .p-btn.active {
    display: block;
    background-color: #000;
    color: #fff;
    font-family: var(--secondary-font);
    min-width: max-content;
    position: relative;
    overflow: hidden;
  }
  .property-details-buttons ul li .p-btn.active::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    border-radius: 100px;
  }
  .more-text {
    display: none; 
  }
  
  .read-more {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  .box-show {
    background-color: #ffffff;
    border: 1px solid #c8cdd6;
    border-radius: 10px;
    padding: 10px;
    color: #343f4f;
    margin-bottom: 10px;
  }
  .box-show p {
    color: #343f4f !important;
  }
  .text-d {
    color: #343f4f !important;
  }
  .p-view p a {
    color: var(--primary-color);
  }
  .floor-plan-img .e-image {
    display: flex !important;
  }
  .floor-plan-img .e-image img {
    width: 396px;
    height: 300px;
    object-fit: cover;
  }
  .floor-plan-img .slick-dots li {
    margin: 0px !important;
  }
  .floor-plan-img .slick-dots li button:before {
    font-size: 26px;
  }
  
  .w3-modal {
    z-index: 100;
    display: none;
    padding-top: 100px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
  }
  .w3-xlarge {
    font-size: 24px !important;
  }
  
  .w3-display-topright {
    position: absolute;
    right: 0;
    top: 0;
  }
  .w3-btn,
  .w3-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .w3-btn,
  .w3-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
  }
  .w3-red,
  .w3-hover-red:hover {
    color: #fff !important;
    background-color: #f44336 !important;
  }
  
  .w3-button:hover {
    color: #000 !important;
    background-color: #f44336 !important;
  }
  .w3-animate-zoom {
    animation: animatezoom 0.6s;
  }
  
  @keyframes animatezoom {
    0% {
      transform: scale(0);
    }
  
    100% {
      transform: scale(1);
    }
  }
  @media (min-width: 993px) {
    .w3-modal-content {
      width: 900px;
    }
  }
  .w3-modal-content {
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 0;
    outline: 0;
    width: 600px;
  }
  .spec-list ul li {
    font-size: 14px;
    font-weight: 400;
    color: #343f4f;
  }
  .property-price-box {
    position: relative;
    min-height: 400px;
    height: 100%;
    max-height: min-content;
    width: 100%;
    /* box-shadow: 4px 4px 0px var(--primary-color); */
    /* background-color: var(--primary-color); */
  }
  .property-bit-box {
    min-height: 80%;
    width: 100%;
    position: absolute;
    background-color: #fff;
    bottom: 0;
    border-radius: 12px;
    border-top-right-radius: 0;
    border: 2px solid var(--primary-color);
    border-top: 0;
    max-height: 80%;
  }
  .property-bit {
    min-height: 20%;
    width: 70%;
    position: absolute;
    background-color: #fff;
    top: 0;
    right: 0;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 2px solid var(--primary-color);
    border-bottom: 0;
  }
  .property-price-box::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: transparent;
    top: 15%;
    left: 25%;
    border-radius: 100px;
    box-shadow: 10px 8px 0 #fff;
    z-index: 10;
  }
  .clip-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    left: 8px;
    top: 8px;
  }
  .bid-dropdown-btn {
    cursor: pointer;
    transition: all 0.3s linear;
  }
  .bid-dropdown-btn.active {
    transition: all 0.3s linear;
    transform: rotate(180deg);
  }
  .bid-dropdown {
    max-height: 168px;
    overflow-y: scroll;
  }
  .bid-dropdown.hidden {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    transform: translateY(50px);
  }
  .bid-dropdown.show {
    visibility: visible;
    opacity: 100%;
    transition: all 0.3s linear;
    transform: translateY(0px);
  }
  .property-input {
    display: flex;
    justify-content: space-between;
    background-color: rgba(243, 114, 41, 0.2);
  }
  .property-input input {
    width: 80%;
  }
  .property-input a {
    width: 20%;
  }
  .property-binding {
    border: 1px solid #ff464624;
    background: linear-gradient(88deg, #ff5c0033, #ffffff);
    border-radius: 10px;
    padding: 10px;
  }
  .property-binding p {
    color: #435572;
  }
  .property-tm-btn:hover a{
    color: var(--primary-color);
  }
  .pack-box {
    min-height: 70px;
    height: 70px;
    width: 100%;
    font-family: var(--secondary-font) !important;
  }
  .pack-box.btn-p:hover{
    cursor: pointer;
    background-color: antiquewhite;
    border:1px solid var(--primary-color);
    color: var(--primary-color);
  }
  .d-box-1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
  }
  .d-box-2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
  }
  .d-box-g {
    position: relative;
    border: 1px solid rgba(128, 128, 128, 0.504);
    overflow: hidden;
    color: #000;
  }
  .d-box-g.active {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
  }
  .d-box-g::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    background: linear-gradient(88deg, #ff5e0061, #ff5e000d);
    border-radius: 170px;
    right: -33px;
    top: -13px;
    border: 1px solid #ff464624;
  }
  .overley-pack {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b0;
    z-index: 10;
  }
  
  /* Register CSS */
  
  .r-content {
    background-color: rgba(255, 255, 255, 0.17);
  }
  .r-icon {
    background-color: #d9d9d933;
  }
  .r-carousel .r-slick {
    background-color: rgba(255, 255, 255, 15%);
    border: 1px solid rgba(255, 255, 255, 34%);
  }
  .form-progress ul {
    display: flex;
    padding: 0;
  }
  .form-progress ul li {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
  }
  .form-progress ul li .steps-progess {
    width: 20px;
    height: 20px;
    background-color: #d9d9d9;
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form-progress ul li .steps {
    position: absolute;
    width: 100%;
    justify-content: center;
    display: flex;
    top: -20px;
    color: #343f4fc1;
  }
  .form-progress ul li::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 6px;
    border-radius: 100px;
    background-color: #d9d9d9;
    left: 54%;
    transform: translateX(-50%);
  }
  .form-progress ul li.active .steps-progess {
    background-color: var(--primary-color);
  }
  .form-progress ul li.active::before {
    background-color: var(--primary-color);
    /* animation-name: progressStatus;
      animation-duration: 0.1s; */
  }
  /* @keyframes progressStatus{
      0%{
          width: 0%;
      }
      25%{
          width: 20%;
      }
      50%{
          width: 50%;
      }75%{
          width: 75%;
      }
      100%{
          width: 100%;
      }
  } */
  .form-progress ul li.active .steps {
    color: var(--primary-color);
  }
  .r-form-field label {
    font-size: 12px;
    font-weight: 500;
    color: #818081;
    line-height: 16.34px;
  }
  .r-form-field input {
    border: 1px solid rgba(0, 0, 0, 0.189);
    padding: 7px 7px;
    border-radius: 4px;
    margin-top: 3px;
    font-size: 14px;
  }
  .r-form-field select {
    border: 1px solid rgba(0, 0, 0, 0.189);
    padding: 7px 7px;
    border-radius: 4px;
    margin-top: 3px;
    font-size: 14px;
  }
  .r-form-tel {
    border: 1px solid rgba(0, 0, 0, 0.189);
    border-radius: 4px;
    overflow: hidden;
  }
  .r-form-tel span {
    font-size: 12px;
    font-weight: 500;
    color: #818081;
    border-right: 1px solid rgba(0, 0, 0, 0.189);
    margin: auto 0;
    padding: 0 4px;
  }
  .r-form-tel input {
    border: none;
  }
  .r-form-tel input:focus {
    border: none !important;
  }
  .r-form-field input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
  }
  
  .r-form-field input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.189);
    border-radius: 4px;
    background-color: white;
    display: inline-block;
    cursor: pointer;
    position: relative;
  }
  
  .r-form-field input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .r-form-field input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .r-form-field textarea {
    border: 1px solid rgba(0, 0, 0, 0.189);
    padding: 7px 7px;
    border-radius: 4px;
    margin-top: 3px;
    font-size: 14px;
  }
  .r-form-field textarea::placeholder {
    font-size: 12px;
    font-weight: 500;
    color: #818081;
    line-height: 16.34px;
  }
  input[type="button"] {
    background-color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 50px;
    color: #fff;
    border: none;
  }
  input[type="submit"] {
    background-color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 50px;
    color: #fff;
    border: none;
  }
  .v-form-img {
    width: 100%;
    left: -58px;
    top: -33px;
  }
  .e-code input {
    border: 1px solid rgba(0, 0, 0, 0.189);
    padding: 7px 7px;
    border-radius: 4px;
    margin-top: 3px;
    font-size: 24px;
    width: 52px;
    height: 72px;
    text-align: center;
  }
  @media (max-width:514px) {
    .e-code input {
        border: 1px solid rgba(0, 0, 0, 0.189);
        padding: 7px 7px;
        border-radius: 4px;
        margin-top: 10px;
        font-size: 24px;
        width: 42px;
        height: 52px;
        text-align: center;
    }
    .form-progress ul li::before{
        width: 100%;
    }
  }
  .e-title p:nth-child(1) {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    margin-bottom: 5px;
  }
  .e-title p:nth-child(2) {
    font-size: 14px;
    font-weight: 500;
    color: #818081;
    line-height: 19.36px;
  }
  .er-code {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: end;
  }
  .e-back-btn {
    font-size: 12px;
    font-weight: 500;
    color: #818081;
  }
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  input[type="number"] {
    -moz-appearance: textfield;
  }
  .d-choose input[type="radio"] {
    appearance: none;
    width: 100%;
    height: 44px;
    border: 2px solid rgba(0, 0, 0, 0.189);
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    cursor: pointer;
    position: relative;
  }
  
  .d-choose label {
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #818081;
  }
  .active-check{
    position: absolute;
    background-color: var(--primary-color);
    
  }
  .d-choose input[type="radio"]:checked + label {
    color: var(--primary-color) !important;
  }
  .d-choose input[type="radio"]:checked {
    /* background-color: var(--primary-color); */
    border-color: var(--primary-color);
  }
  
  .d-choose input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 4px;
    display: flex;
    justify-self: right;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    color: #000;
  }
  .d-choose input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    justify-self: right;
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
  }
  /* Bid Register CSS */
  .error {
    border: 1px solid red;
  }
  .completed {
    background-color:#52a164 !important; 
    color: white !important;
  }
  .error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
  }
  .bit-box {
    min-height: 50px;
    height: 50px;
    width: 100%;
    font-family: var(--secondary-font) !important;
  }
  .bit-box1 {
    min-height: 170px;
    height: 170px;
    width: 100%;
    font-family: var(--secondary-font) !important;
  }
  
  .b-box-g {
    position: relative;
    border: 1px solid rgba(128, 128, 128, 0.504);
    overflow: hidden;
    color: #000;
  }
  .b-box-g.active {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    background: antiquewhite;
  }
  .b-box-g::after {
    content: "";
    position: absolute;
    width: 102px;
    height: 75px;
    background: linear-gradient(88deg, #ff5e0061, #ff5e000d);
    border-radius: 170px;
    right: -33px;
    top: -13px;
    border: 1px solid #ff464624;
   
  }
  .b-box-g.active svg path {
    stroke: var(--primary-color);
  }
  .b-box-g svg {
    margin-right: 8px;
  }
  @media (max-width:1338px) {
    .lot-price-box{
       min-height: 260px;
    }
  }
  @media (max-width:768px) {
    .lot-price-box{
       min-height: 280px;
    }
  }
  /* Dashboard CSS */
  .d-icon{
    transition: all 0.3s ease-in-out;

  }
  .d-btn:hover .d-icon{
    transform: translateX(10px);
    transition: all 0.3s ease-in-out;
    transition-behavior: inherit;
  }
  .boarding-circle::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background: linear-gradient(94deg, #ff5e004e, #fff);
    left: 7px;
    top: -39px;
  }
  /* Auction Page CSS */

  .auction-table .title{
    font-size: 12px;
    font-weight: 500;
    color: #435572;
    display: flex;
    gap: 10px;
  }
   .auction-table table,tr,
   .auction-address-table table,tr{
    width: 100%;
    line-height: 35px;
   }
  .auction-table .auction-details{
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }
 .auction-tabs ul li{
  user-select: none;
  -webkit-overflow-scrolling: touch; 
 }
  
  .auction-address-table thead{
    background-color: #F5F7FA;
    font-size: 12px;
    font-weight: 500 !important;
    color: #435572;
  }
  .auction-address-table tbody{
    font-size: 12px;
    font-weight: 500 !important;
    color: #000;
  }

  .auction-tabs {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 99px;
  }
  .auction-tabs ul::-webkit-scrollbar {
    display: none;
  }
  
  .auction-tabs ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    gap: 10px;
  }
  
  .auction-tabs li {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    height: 38px;
    min-width: max-content;
    padding: 0 1rem; 
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
    border: 1px solid #e4e8ed;
    border-radius: 100px;
    color: #808080;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
}




  
  .auction-tabs li.active {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: #fde0d794;
  }
  
  .notification {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-left: 0.75rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transition: 0.15s ease-in;
  }
  .auction-tabs li span{
    display: none;
  }
  .auction-tabs li.active span{
    display: block;
  }

  .auction-tabs li.active .notification {
    background-color: var(--primary-color);

    color: #fff;
  }

  /* .glider {
    position: absolute;
    height: 38px;
    background: linear-gradient(180deg, #ffe8dd, #ffede4);
    z-index: 1;
    border: 1px solid var(--primary-color);
    color: #000;
    border-radius: 99px;
    transition: 0.25s ease-out;
  } */
  
  /* @media (max-width: 700px) {
    .auction-tabs {
      transform: scale(0.6);
    }
  }
   */
   /* about */
.about {
  background-image: url(./assets/img/about.png);
  background-size: cover;
  border-radius: 12px;
  min-height: 500px;
  position: relative;
  background: linear-gradient(
    0.85deg,
    #000000 0.7%,
    rgba(102, 102, 102, 0) 182.65%
  );
  width: 100% !important;
  height: 400px;
  box-shadow: 0px 1px 4px 0px #ffffff40;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  opacity: 1;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0.85deg,
    #000000 0.7%,
    rgba(102, 102, 102, 0) 182.65%
  );
  z-index: -1;
  border-radius: 15px;
}
.about .para p {
  color: white;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: 500;
}
.para {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.about-section {
  position: absolute;
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.objectives {
  background-color: #ffeadf;
  padding: 50px;
  width: 100%;
  border-radius: 12px;
  opacity: 0.4px;
}
.objectives p {
  padding-top: 30px;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
}
.objectives h3 {
  padding-top: 40px;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 20px;
}
.values {
  background-color: #ffeadf;
  padding: 50px;
  width: 100%;
  border-radius: 12px;
  opacity: 0.4px;
}
.values p {
  padding-top: 30px;
  font-size: 14px;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
}

.values h3 {
  padding-top: 40px;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 20px;
}
.objects {
  gap: 20px;
}
.contact {
  background-image: url(assets/img/contact.png);
  background-size: cover;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: auto;
  box-shadow: 0px 1px 4px 0px #ffffff40;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  opacity: 1.8;
  left: 733px;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}
.contact-us p {
  font-family: var(--secondary-font);
  color: white;
  font-size: 20px;
  padding-left: 30px;
  font-weight: 500;
}
.contact-us h3 {
  font-family: var(--default-font);
  color: white;
  padding-left: 30px;
  font-size: 40px;
  font-weight: 600;
}
.contact-form {
  margin-top: 20px;
}
.contact-form h2 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--default-font);
}

.contact-form .form-group {
  margin-bottom: 10px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  cursor: auto;
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--default-font);
}

.contact-form button[type="submit"] {
  background-color: rgba(255, 92, 0, 1);
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}
.contact .d-flex {
  padding: 10px;
}
#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* mobile responsive */
@media (max-width: 320px) {
  .about {
    height: 100%;
  }
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 10px !important;
  }
  .para p {
    font-size: 16px !important;
  }
  .about-img {
    position: absolute !important;
    top: 0px !important;
  }

  .objects {
    flex-direction: column;
    padding: 30px;
  }
  .objectives, .values {
    background-color: #ffeadf;
    padding: 20px;
    width: 100%;
    border-radius: 12px;
    opacity: 0.4px;
    height: 470px
    }
    
    .objectives p, .values p {
    font-size: 14px;
    text-align: justify;
    }
    
    .objectives h3, .values h3 {
    font-size: 18px;
    padding-top: 20px;
    }
  .contact {
    height: 100%;
  }
  .contact-us {
    flex-direction: column;
  }
  .contact-us p {
    font-size: 14px;
  }
  .contact-us div {
    margin-bottom: 10px;
  }
}
@media (max-width: 375px) {
  .about {
    height: 100%;
  }
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
  .about-img {
    position: relative;
    top: -70px;
  }
  .about .para p {
    color: white;
    font-size: 16px !important;
  }
  .objects {
    flex-direction: column;
    padding: 20px;
  }
  .objectives p {
    font-size: 14px;
  }
  .values p {
    font-size: 14px;
  }
  .contact {
    height: 100%;
  }
  .contact-us {
    flex-direction: column;
  }
  .contact-us p {
    font-size: 16px;
    padding-right: 30px;
  }
}
@media (max-width: 425px) {
  .about {
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .about .para p {
    padding-top: 20px;
    color: white;
    font-size: 16px;
  }
  .about-img {
    margin-bottom: 50px;
  }
  .objects {
    flex-direction: column;
    padding: 30px;
  }
  .contact {
    height: 100%;
  }
  .contact-us {
    flex-direction: column;
  }
  .objectives {
    padding: 30px;
  }
  .objectives p {
    padding-top: 10px;
  }
  .objectives h3 {
    padding-top: 20px;
  }
  .values {
    padding: 30px;
  }
  .values p {
    padding-top: 10px;
  }
  .values h3 {
    padding-top: 20px;
  }
}

@media (max-width: 1024px) {
  .about-section {
    padding-top: 10px !important;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding-bottom: 120px;
  }
}

  /* Uplaod Document Selfi */
  .modal-selfi{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    border-radius: 3px;
    overflow: hidden;
    background: #00000033;
    padding: 11px;
    backdrop-filter: blur(10px);
  }
  #capture{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    font-size: x-large;
    border-radius: 50px;
    transition: all 0.3s linear;
  }
  #capture:hover{
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s linear;
  }

  .footer-link ul li a:hover{
    color: var(--primary-color);
    transition: all 0.2s linear;
  }

  /* Modal CSS */
/* Modal Background */
.modal-box {
  background-color: rgba(0, 0, 0, 0.3); 
  backdrop-filter: blur(10px); 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none; 
  transition: opacity 0.3s ease-in-out; 
  z-index: 9999;
}


.modal-content-box {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  width: 50%;
  max-width: 500px;
  transform: translateY(-50px); 
  opacity: 0; 
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid var(--primary-color);
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #333;
}

.modal-box.show {
  opacity: 1;
  pointer-events: auto; 
}

.modal-box.show .modal-content-box {
  transform: translateY(0); 
  opacity: 1;
}


@media (max-width: 768px) {
  .modal-content-box {
    width: 80%;
  }
}

/* autocomplete Box CSS */
.autocomplete-container{
  position: relative;
}
.autocomplete-list{
  border: 0px !important;
}

/*--------------- calculator -----------------*/
.banner-sm{
  background-image: url('../img/630db67cf66dd9f1d9f40833e3e9667c.png');
  background-position: center;
  background-size: cover;
  min-height: 450px;
}
.st-form .r-form-field{
  font-family: var(--secondary-font);
  border-bottom: 1px dashed var(--primary-color);
  border-image: repeating-linear-gradient(
    to right,
    var(--primary-color) 0,
    var(--primary-color) 10px,
    transparent 5px,
    transparent 15px
  ) 100% 0 0 0;
  border-image-slice: 1;
}
.st-form .r-form-field .col-md-6{
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.st-form .r-form-field label{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.res-content .r-form-field{
  border: none;
}
.res-content .r-form-field .res-txt{
  font-size: 22px;
  font-weight: 700;
  border:none ;
  border-bottom:1px solid rgba(0, 0, 0, 0.189);
}
.res-content .h-txt{
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}
.st-btn{
  background-color: #ffebe5;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
.st-details h2{
  font-size: 22px;
  font-weight: 700;
}
.st-details p{
  font-size: 14px;
  font-weight: 500;
}
.rate-table table{
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.rate-table table thead{
  background-color: var(--primary-color);
  border-radius:  5px;
  font-size: 14px ;
  font-weight: 500;
}
.rate-table table tbody{
  font-size: 14px ;
  font-weight: 500;
}
.rate-table table tbody td{
  padding: 15px;
  border-right: 1px solid #dedede;
}

/* FAQ */
.faq .f-head{
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-color);
}
.faq-qn{
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-qn .fa-angle-down{
  background-color: #fff;
  width: 20px;
  height: 20px;
  color: #000;
  padding: 5px;
  border-radius: 50px;
}
.faq-ans{
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0px;
}
.faq-ans.show{
  max-height:100%;
  opacity: 1;
  visibility: visible;
  padding: 10px 0;
}
.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.bt-table table thead{
  background-color: #FFF3EC;
  text-align: center;
}
.bt-table table{
  font-size: 14px;
  font-weight: 800;
}
.bt-table table tbody tr{
  text-align: center;
  border-bottom:1px solid #343f4f42 ;
}
.bt-table table tbody tr td{
  
  font-weight: 700;
  line-height: 20px;
  padding: 15px;
}
.bt-table table tbody tr td span{
  font-weight: 500;
  color: #4b515b8f;
}
.hero-section table,
th,
tr,
td {
  border: 1px solid #000 !important;
  padding: 5px;
}
.marquee-f.title-f{
  font-size: 22px;
}
.star_marquee{
  height: 35px;
}
.r-carousel .slick-next{
  right: 10px !important;
  background-color: #f3722ab8;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  transition:all 0.2s linear;
}
.r-carousel .slick-prev{
  left: 20px !important;
  z-index: 20;
  background-color: #f3722ab8;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  transition:all 0.2s linear;
}
.r-carousel .slick-prev:hover{
  background-color: var(--primary-color) !important;
 transition:all 0.2s linear;
}
.r-carousel .slick-next:hover{
  background-color: var(--primary-color) !important;
  transition:all 0.2s linear;
}