/* Header Css */
header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--white-color);
  min-height: 70px;
  display: flex;
  align-items: center;
}

header .header-left .logo-area {
  margin-right: 20px;
}

header:has(.navbar.navbar-expand-xl) {
  position: sticky;
  display: block;
  min-height: 70px;
  top: 0;
}

body:has(.navbar.navbar-expand-xl) {
  padding: 0;
}

.search-header-icon {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform-origin: center;
}

.search-header-icon:hover {
  transform: scale(1.1);
}

header .search-header .search-bar {
  border: 1px solid #707070;
  border-radius: 8px;
  gap: 12px;
  padding: 8px 12px;
  transition: all 0.5s ease;
}

header .search-header .search-bar #btnSearch {
  border: 0;
  background: transparent;
  font-size: 22px;
  color: var(--primary-color);
}

header .search-header .search-bar input#txtSearch {
  border: 0;
  outline: 0;
}

header .search-header .search-bar:has(#txtSearch:focus) {
  border: 1px solid var(--primary-color);
}

header .search-header .search-bar input#txtSearch::placeholder {
  color: var(--four-text);
  font-size: 16px;
  font-weight: 300;
}

header a.menu-anim {
  overflow: hidden;
  display: inline-block;
  line-height: normal;
}

header a.menu-anim span {
  display: inline-block;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform: translateY(0px);
  opacity: 1;
}

header a.menu-anim:before {
  content: attr(data-text);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  transform: translateY(20px);
  position: absolute;
  opacity: 0;
  color: var(--primary-color);
}

header #dropdownMenuButton1 + ul.dropdown-menu {
  border: 1px solid #f0f0f0;
  box-shadow: 0px 4px 6px 0px #00000017;
  background: #fff;
  position: absolute;
  padding: 24px;
  min-width: 200px;
  border-radius: 8px;
  top: calc(100% - 3px) !important;
}

header a.menu-anim:hover:before {
  transform: translateY(0);
  opacity: 1;
}

header a.menu-anim:hover span {
  transform: translateY(-20px);
  opacity: 0;
}

header .menu-bar .menu > li {
  line-height: normal;
  display: flex;
  align-items: center;
}

header .navbar-light .menu-link {
  color: var(--primary-text);
  font-weight: 400;
  font-size: 16px;
}

header .header-right .lang-link {
  color: var(--primary-text);
  line-height: normal;
  gap: 4px;
}

ul.sidemenu {
  list-style: none;
  padding: 0;
  color: var(--secondary-text);
  margin: 0;
}

ul.sidemenu > li > span {
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
}

ul.sidemenu .menu-link {
  display: block;
  font-size: 14px;
  padding: 8px;
  line-height: normal;
}

ul.sidemenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.brand-slider .item img {
  height: 60px;
  object-fit: contain;
}

#searchbar {
  display: none;
}

body {
  padding-top: 70px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}

body.stic-top {
  padding-top: 70px;
}

.bottom-header {
  display: none;
}

#home-template .bottom-header {
  display: block;
}

body#home-template {
  padding-top: 122px;
  background-color: #f5f5f5;
}

header .menu > .has-child:hover > .menu-link {
  opacity: 1;
}

header .right-side {
  gap: 20px;
}

header .navbar-light .menu .submenu .menu-link {
  text-transform: capitalize;
}

header .navbar-light .dropdown-icon {
  float: right;
  cursor: pointer;
  margin-left: 5px;
}

header .navbar-light .menu .submenu > li,
header .navbar-light .menu .sub-submenu > li {
  padding: 8px 0px;
}

header .navbar-light .menu .submenu li:hover > a {
  color: var(--primary-color);
}

header .search a {
  color: var(--primary-text);
}

header .navbar-light .navbar-toggler,
header .navbar-light .navbar-toggler:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.top-line-banner {
  position: absolute;
  top: 0;
  opacity: 0.1;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1612px;
  z-index: -1;
}

.quote-btn {
  position: fixed;
  right: 0;
  top: 50%;
  writing-mode: sideways-lr;
  padding: 20px 12px !important;
  transform: translateY(-50%);
  z-index: 99;
  min-width: auto;
}

#animated-text {
  /* border-right: 2px solid #000; */
  white-space: nowrap;
  overflow: hidden;
  animation: blink-caret 0.7s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link.active {
  background: var(--primary-color);
  outline: 1px solid var(--primary-color);
  color: #fff;
}

.nav-tabs .nav-link {
  background: #fff;
  outline: 1px solid var(--primary-color);
  color: var(--primary-color);
}

#productTab.nav-tabs .nav-link,
#sellTab.nav-tabs .nav-link {
  background: #fff;
  border: 1px solid #e4e4e4;
  color: var(--secondary-color);
  border-top: 0;
  border-radius: 0px;
  outline: 0;
  padding: 6px 12px;
}

#sellTab.nav-tabs .nav-link.active,
#productTab.nav-tabs .nav-link.active {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 2px;
  color: #fff;
  outline: 0;
}

.tab-contents {
  border-radius: 50px;
  overflow: hidden;
}

/* #home-hero .tab-contents:after {
    content: "";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
} */

.tab-buttons {
  z-index: 1;
  background-repeat: no-repeat;
  padding-bottom: 18px;
  justify-content: center;
  background-position: center;
  padding-top: 0px;
}

/* How Tradologie Works Css */
#how-td-words .item {
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#how-td-words .step {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#how-td-words .step:hover .item {
  border: 1px solid var(--primary-color) !important;
}

#how-td-words .step-two:hover .item {
  border: 1px solid #53cd5f !important;
}

#how-td-words .step:hover {
  transform: translate(05px);
}

#how-td-words .item span {
  font-size: 54px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1;
  font-family: "Anton";
}

/* #how-td-words .nav-tabs {
    right: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 28px;
    padding: 1px 0px;
}

#how-td-words .nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 14px;
    outline: 0;
    margin-top: -1px;
    line-height: 1.2;
    border-radius: 28px;
} */

/* Why Tradologie Css */
#why-td {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#how-it-works-tab .nav-tabs .nav-link,
#why-td .nav-tabs .nav-link {
  background: rgb(199 235 255 / 20%);
  outline: rgb(199 235 255 / 20%);
  color: var(--third-color);
}

#how-it-works-tab .nav-tabs .nav-link.active,
#why-td .nav-tabs .nav-link.active {
  background: var(--third-color);
  outline: 1px solid var(--third-color);
  color: var(--primary-color);
}

/* Faq Css */
.accordion-button span {
  font-size: 20px;
}

.accordion-item {
  border-color: #e2e2e2 !important;
}

.accordion-button:not(.collapsed) {
  background: #f5f5f5 !important;
}

.accordion-collapse {
  background: #f5f5f5;
}

.accordion-body {
  padding: 0px 40px 16px 72px;
}

.accordion-body p * {
  font-weight: 400;
}

/* Footer Css */
footer {
  background-color: #1f1d1b;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

footer .footer-top {
  background-size: 100%;
  margin-top: -24px;
  padding-top: 20px;
  padding-bottom: 32px;
  background-repeat: no-repeat;
}

footer small {
  display: block;
  position: relative;
  z-index: 1;
}

footer .newsletter input {
  width: 100%;
  height: 48px;
  background: transparent;
  border-radius: 40px;
  color: var(--primary-text);
  outline: 0;
  border: 1px solid #07341b;
  padding: 16px;
  font-size: 14px;
}

footer .newsletter input::placeholder {
  color: var(--primary-text);
}

footer .newsletter button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1f1c1b;
  border: 0;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

section.category-area .item > img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  min-width: 250px;
}

.testimonial-card .description {
  display: none;
}

.slick-center .testimonial-card .description {
  display: block;
}

.testimonial-slider {
  margin-left: -15px;
  margin-right: -15px;
}

.testimonial-card {
  transition: all 0.5s ease;
}

.testimonial-card small * {
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.category-area .item .btn-text p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-productdescription .nav-tabs .nav-link {
  color: var(--secondary-text);
  outline: 0;
}

.top-productdescription .nav-tabs .nav-link.active {
  color: #fff;
}

.related-product-slider ul.slick-dots {
  display: none !important;
}

/* Banner Css */
.banner-area .banner-slider .item {
  padding-left: 12px;
}

ul.breadcum-custom {
  flex-wrap: wrap;
}

/* .py-3.breadcum {
    position: absolute;
    bottom: 0;
    width: 100%;
} */

/* .slick-dots {
    bottom: 20px;
} */

.slick-dots li button {
  display: none;
}

.slick-dots li {
  background: var(--primary-color);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.slick-dots li.slick-active {
  opacity: 1;
}

/* What Css */
.what-area {
  position: relative;
  z-index: 1;
}

.what-area .item {
  border-radius: 8px;
  background: #fff;
  line-height: 0;
}

/* Counter Css */
.counter-area {
  z-index: 0;
}

.counter-area .item p {
  color: var(--brown-color);
}

/* How Css */
.how-area .item {
  border-radius: 8px;
  overflow: hidden;
}

.how-area .item .cards {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 8px;
  min-height: 220px;
}

.how-area .item .circle-bttn {
  display: inline-block;
  transform: rotate(45deg);
  font-size: 24px;
}

/* Faq Css */
#faqTab .nav-link {
  width: 100%;
  text-transform: capitalize;
}

.faq-area {
  overflow: hidden;
}

/* Steps Css */
.steps-area .item {
  border: 1px solid #ffe1b1;
  border-radius: 60px;
}

.steps-area .slick-dots {
  left: 40px;
  width: max-content;
  bottom: 40px;
  display: flex;
}

.steps-area .slick-prev,
.steps-area .slick-next {
  display: none !important;
}

.steps-area .slick-dots li button:before {
  display: none !important;
}

.steps-area .slick-dots li button {
  font-size: 16px;
  color: var(--primary-color);
  padding: 0;
  display: block;
}

.steps-area .slick-dots li {
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  width: 30px;
  height: 30px;
}

.steps-area .slick-dots li.slick-active {
  background-color: var(--primary-color);
}

.steps-area .slick-dots li.slick-active button {
  color: var(--white-color);
}

/* Category Css */
/* .category-area .item {
    border-radius: 8px;
    transition: all .6s ease;
    -webkit-transition: all .6s ease;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.category-area .item:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.category-area .item:hover img {
    transform: scale(1.05);
} */

/* .category-area .item img {
    transition: all 0.5s ease;
    height: 80px;
    object-fit: contain;
    object-position: center;
} */

.catlistmains .cards {
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
}

/* Benefits Css */
.benefits-area .item button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  width: 84px;
  height: 84px;
}

.benefits-area .item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 65px;
  border-radius: 8px;
}

.benefits-area .item p {
  opacity: 0.8;
}

#benefitsTabContent .item {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 0px 4px 4px #00164a29;
  height: 100%;
}

#benefitsTab.nav-tabs .nav-link {
  background: transparent;
  color: var(--white-color);
  border-radius: 4px;
  padding: 8px 80px;
  border: 1px solid var(--white-color);
}

#benefitsTab.nav-tabs .nav-link.active {
  background: var(--secondary-color);
  color: var(--primary-text);
  border: 1px solid var(--secondary-color);
}

.benefits-area .caption {
  border-radius: 8px;
  max-width: 80%;
  margin: 0 auto;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

.benefits-area .col-md-6:first-child .caption {
  background-color: var(--yellow-dark);
}

.benefits-area .col-md-6:last-child .caption {
  background-color: var(--primary-color);
}

#Watch-Seller-Process .modal-dialog,
#Watch-Buyer-Process .modal-dialog {
  max-width: 700px;
}

/* Testimonial Css */
.testimonial-area {
  background-size: cover;
  background-position: center;
}

.testimonial-area .item .box {
  min-height: 360px;
  position: relative;
}

.testimonial-area .slick-arrow:before {
  display: none;
}

.testimonial-area .slick-arrow {
  font-size: 20px;
  color: var(--primary-text);
  background: #f4f7fa;
  z-index: 99 !important;
}

.testimonial-area .slick-arrow.slick-next {
  right: -10px !important;
}

.testimonial-area .slick-arrow.slick-prev {
  left: -10px !important;
}

/* .testimonial-area .slick-slide:not(.slick-active) {
    transform: scale(0.5);
    filter: blur(2px);
    transition: all 0.5s ease;
} */

.testimonial-area .slick-slide {
  transition: all 0.5s ease;
}

.testimonial-area .item .box .image,
.testi-item .image {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
  display: block;
  overflow: hidden;
  background: #f5f5f5;
}

.testimonial-area .item .box .image img,
.testi-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Category Css */
#product-category-list-section ul li a {
  color: var(--primary-color);
  font-size: 14px;
}

#product-category-list-section ul li:not(:last-child):after {
  content: "|";
  margin: 0 5px;
  color: var(--primary-color);
}

#product-category-list-section ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
}

/* About Page Css */
#accordionAbout .accordion-button {
  padding-left: 0;
}

#accordionAbout .accordion-body {
  padding-left: 0;
}

#accordionAbout .accordion-body * {
  font-size: 16px;
}

#accordionAbout .accordion-header h4 {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}

/* How it work Page Css */
.how-it-work-section1 .cards {
  background-color: #2058dc;
  border-radius: 20px;
}

.how-it-work-section1 .item {
  padding: 0 15px;
  padding-top: 20px;
}

.how-it-work-section1 .item .number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--primary-color);
  min-width: 32px;
}

.how-it-work-section1 .item h6 {
  color: var(--white-color);
  margin: 0;
}

.how-it-work-section1 .item .icon {
  width: 24px;
  height: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  line-height: 0;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  margin-left: 10px;
}

.how-it-work-section1 .item .content {
  color: #fff;
  margin-top: 12px;
  margin-bottom: 24px;
}

.how-it-work-section1 .item .content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.how-it-work-section1 .item:hover .icon {
  opacity: 1;
  visibility: visible;
}

.how-it-work-section1 .item .arrow-top {
  position: relative;
  top: -20px;
}

.how-it-work-section1 .item .arrow-bottom {
  position: relative;
  top: 20px;
}

.how-it-work-section1 .slick-dots {
  position: relative;
  margin-bottom: 20px;
}

.how-it-work-section1 .slick-dots li button {
  display: none;
}

.how-it-work-section1 .slick-dots li {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
}

.how-it-work-section1 .slick-dots li.slick-active {
  opacity: 1;
}

.how-it-work-section1 .slick-arrow {
  display: none !important;
}

.sticky-left {
  position: sticky;
  top: 100px;
}

.image-section {
  position: relative;
  height: 400px;
}

.image-section img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.image-section img.active {
  opacity: 1;
  z-index: 2;
}

.step-section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.step-section {
  padding: 100px 0;
  /* enough to trigger scroll */
  min-height: 50vh;
  /* ensure scroll triggers */
}

.productslisingdesign .related-product-slider {
  margin-left: -24px;
  margin-right: -24px;
}

.related-product-slider.no-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.productslisingdesign .related-product-slider ul.slick-dots {
  display: none !important;
}

.blog-list .ctgr {
  background: var(--secondary-color);
  color: var(--secondary-text);
  padding: 4px 12px;
  border-radius: 40px;
  line-height: normal;
  max-width: 130px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.blog-list .bttn {
  padding: 8px 24px;
  border-radius: 4px;
  line-height: normal;
}

.blog-list h5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-list p {
  color: var(--primary-text);
}

.blog-list h5 + p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.blog-list .text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* .blog-list .item .text {
    min-height: 130px;
    display: block;
    margin-bottom: 10px;
} */

.blog-list .item img {
  border-radius: 4px;
  width: 140px;
  height: 140px;
  object-fit: cover;
  min-width: 140px;
}

.blog-detail .author-profile img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #eee;
  border: 1px solid #ddd;
  object-fit: cover;
}

/* =============Banner Css============= */
.banner-inner-page > img {
  min-height: 210px;
  object-fit: cover;
}

#banner-section .content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #08813c;
}

#banner-section .content h1 {
  color: #473726;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 24px;
}

#banner-section .content p {
  font-size: 20px;
}

#banner-section video {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

/* =============Why Css============= */
#why-section .content-area {
  padding: 80px 60px;
  border-radius: 12px;
  background-color: #2e5a87;
}

#why-section .content-area .d-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 48px;
}

#why-section .content-area .d-grid .item {
  background-color: #fff;
  padding: 24px 84px;
  text-align: center;
  border-radius: 8px;
}

#why-section .content-area .d-grid .item img {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#why-section .content-area .d-grid .item p {
  margin: 0;
  font-size: 20px;
}

#why-section .content-area .section-head h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

#why-section .content-area .section-head span {
  background-color: #fff;
  display: inline-flex;
  height: 42px;
  align-items: center;
  padding: 0 20px;
  border-radius: 40px;
  font-size: 20px;
  margin-bottom: 12px;
}

/* =============Variety Css============= */
#varienty-section .list {
  row-gap: 64px;
  margin-top: 48px;
}

#varienty-section .list .item {
  text-align: center;
}

#varienty-section .list .item img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

#varienty-section .list .item h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 500;
}

#varienty-section .section-head {
  text-align: center;
}

#varienty-section .section-head h2,
#video-section .section-head h2,
#pricingSection .section-head h2 {
  font-size: 40px;
  font-weight: 600;
}

#varienty-section .section-head h2 span,
#pricingSection .section-head h2 {
  color: #051186;
}

#varienty-section .section-head > span,
#video-section .section-head > span,
#pricingSection .section-head > span {
  background-color: #455a64;
  display: inline-flex;
  height: 42px;
  align-items: center;
  padding: 0 20px;
  border-radius: 40px;
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffd163;
}

/* =============Video Css============= */
#video-section {
  background-color: #ffd255;
}

#video-section .section-head,
#pricingSection .section-head {
  margin-bottom: 48px;
}

#video-section .content .item > span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin-right: 20px;
}

#video-section .content .item h4 {
  color: #051186;
  font-size: 20px;
  font-weight: 600;
}

#video-section .content .item p {
  color: #555555;
}

#video-section .content .item {
  min-height: 100px;
  position: relative;
  z-index: 0;
}

#video-section .content .item:before {
  content: "";
  width: 2px;
  background: #fff;
  position: relative;
  left: 16px;
  z-index: -1;
}

#video-section .video-area {
  line-height: 0;
  padding: 12px;
  position: relative;
}

#video-section .video-area:before,
#video-section .video-area:after {
  content: "";
  width: 184px;
  height: 184px;
  border: 4px solid #d3a72a;
  position: absolute;
}

#video-section .video-area:before {
  left: 0;
  bottom: 0;
  border-top: 0;
  border-right: 0;
}

#video-section .video-area:after {
  right: 0;
  top: 0;
  border-bottom: 0;
  border-left: 0;
}

/* =============Price Css============= */
.price-header {
  border: 1px solid #2a2a2a;
  width: max-content;
  margin: 0 auto;
  border-radius: 40px;
  padding: 10px;
  gap: 12px;
  margin-bottom: 48px;
}

.price-area .item .bottom ul {
  padding: 0;
  list-style: none;
}

.price-area .item .top small.emi {
  background: linear-gradient(90deg, #6c6c6c 0%, #4d2622 100%);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 4px 15px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.price-area .item .top .strip .offer {
  background-image: url(../images/30-percent.gif);
  position: absolute;
  top: -85px;
  right: -45px;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #2a2a2a;
  text-align: center;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.price-area .item-two .offer b,
.price-area .item-two .offer small {
  font-weight: 700;
  line-height: 1.2;
  color: #2a2a2a !important;
}

.price-header button {
  height: 32px;
  display: flex;
  align-items: center;
  text-align: center;
  border: 0;
  background: transparent;
  padding: 0 20px;
  border-radius: 40px;
  line-height: 1;
}

.price-header button.active {
  background: #ffd163;
}

.price-area {
  justify-content: center;
  gap: 32px;
}

.price-area .item {
  background-color: #4d2622;
  border: 1px solid #ffd255;
  border-radius: 16px;
  height: 100%;
}

.price-area .item .top {
  padding: 40px;
  text-align: center;
  height: 100%;
  color: #fff;
  position: relative;
  border-bottom: 1px solid #7a453f;
}

.price-area .item .top > .currency-ind,
.price-area .item .top > .currency-int {
  font-size: 40px;
  font-weight: 600;
}

.price-area .item .top a.currency-ind,
.price-area .item .top a.currency-ind,
.price-area .item .top a.currency-int,
.price-area .item .top a.currency-int {
  background-color: #ffd163;
  height: 52px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  color: #2a2a2a;
  padding: 0 45px;
  text-decoration: none;
}

.price-area .item .bottom ul li {
  border-bottom: 1px solid #7a453f;
  padding: 12px 20px;
  font-size: 16px;
  color: #fff;
}

.price-area .item .top small {
  color: #ffbe9c;
  margin-top: 8px;
  display: inline-block;
}

.price-area .item .top .strip {
  position: relative;
  top: -50px;
  background: #fff9e4;
  width: max-content;
  margin: 0 auto;
  color: #000;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #4d2622;
}

/* =============Story Css============= */
#story-section .content {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 60px;
  border-radius: 24px;
  min-height: 505px;
}

#story-section .content .carousel-item span {
  height: 40px;
  background: #fff9e4;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 40px;
  margin-bottom: 40px;
}

#story-section .content .carousel-item p {
  font-size: 24px;
  line-height: 1.6;
}

#story-section .content .carousel-item h5 {
  font-weight: 500;
  font-size: 24px;
  margin-top: 48px;
}

#story-section .carousel-indicators {
  left: 0;
  right: 0;
  margin-right: 0;
  margin-left: 0;
  bottom: -55px;
}

#story-section .carousel-indicators button {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  margin-left: 8px;
  opacity: 0.3;
}

#story-section .carousel-indicators button.active {
  opacity: 1;
}

/* =============Trust Css============= */
#trust-section .card-1 {
  background-color: #fd854c;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  align-items: end;
  min-height: 470px;
}

#trust-section .card-2 {
  border-radius: 8px;
  background-color: #4d2622;
  color: #fff;
  min-height: 470px;
  padding-top: 45px;
}

#trust-section {
  text-align: center;
  color: #fff;
  padding: 0 6px;
}

#trust-section .card-3 {
  border-radius: 8px;
  background-color: #42a573;
  padding-top: 45px;
}

#trust-section .card-4 {
  border-radius: 8px;
  background-color: #ffd255;
  padding-top: 45px;
  color: #2a2a2a;
}

#trust-section .card-1 h2 {
  font-size: 40px;
  font-weight: 800;
  padding: 0 80px;
  color: #fff;
}

#trust-section .card-1 img {
  margin-right: 30px;
}

#trust-section .card-1 h2 span {
  color: #2a2a2a;
  font-size: 48px;
}

#trust-section .card-2 h3,
#trust-section .card-3 h3,
#trust-section .card-4 h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

#trust-section .card-4 h3 {
  color: var(--primary-text);
}

#trust-section .card-2 p,
#trust-section .card-3 p,
#trust-section .card-4 p {
  font-size: 24px;
  padding: 0 40px;
}

#trust-section .col-md-4 {
  padding: 0 6px;
}

/* =============Bottom Pane Css============= */
#bottom-pane .content {
  background-color: #2e5a87;
  padding: 70px;
  border-radius: 16px;
  min-height: 490px;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

#bottom-pane .content h2 {
  font-size: 40px;
  font-weight: 600;
}

#bottom-pane .content h2 span {
  display: block;
  color: #8dffbe;
}

#bottom-pane .content p {
  font-size: 20px;
  padding-right: 20px;
}

/* #getaquoteModal .modal-body form {
  padding: 10px;
} */

/* #getaquoteModal .offcanvas-header,
#ModalProductQuery .modal-header {
  background: linear-gradient(90deg, #b2c9ff, #ffffff 75%);
} */

#ModalProductQuery .modal-dialog,
#getaquoteModal .modal-dialog {
  max-width: 567px;
}

#getaquoteModal .modal-body form .col-12:last-child {
  grid-column: span 2 / span 2;
}
.export-section .item .icon,
.import-section .item .icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.3) !important;
  border-style: dashed;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.import-section .item .icon {
  border-color: rgba(0, 0, 0, 0.3) !important;
}

.export-section .item:hover .icon {
  border-color: #fff !important;
}

.import-section .item:hover .icon {
  border-color: rgba(0, 0, 0, 1) !important;
}

.export-section .item span,
.import-section .item span {
  background: #ffdd98;
  color: var(--primary-text);
  padding: 4px 12px;
  display: inline-block;
  border-radius: 40px;
  font-size: 14px;
  margin-bottom: 8px;
}

.import-section .item span {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.export-section .item .icon:before,
.import-section .item .icon:before {
  content: "";
  width: 1px;
  height: 450px;
  border-left: 1px dashed #ccc;
  position: absolute;
  top: -85px;
  transform: rotate(-60deg);
  right: -160px;
  z-index: -1;
  transition: all 0.5s ease;
}

.export-section .item:hover .icon:before {
  border-color: #fff;
}

.import-section .item:hover .icon:before {
  border-color: #000;
}

.import-section .item .icon:before {
  border-left: 1px solid #1a1a1a;
  top: -70px;
  transform: rotate(-60deg);
}

.export-section .item .icon:after,
.import-section .item .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #5a82ea;
  z-index: -1;
  border-radius: 50%;
}

.import-section .item .icon:after {
  background: #ffdd98;
}

.export-section .col-lg-6:nth-child(even) .item .icon:before,
.import-section .col-lg-6:nth-child(even) .item .icon:before {
  transform: rotate(65deg);
  right: 220px;
  top: -100px;
}

.import-section .col-lg-6:nth-child(even) .item .icon:before {
  transform: rotate(60deg);
  right: 210px;
}

.import-section .item {
  min-height: 200px;
}

.export-section .item .icon.br-0:before,
.import-section .item .icon.br-0:before {
  display: none;
}

.category-area .slick-prev:hover,
.category-area .slick-prev:focus,
.category-area .slick-next:hover,
.category-area .slick-next:focus {
  color: var(--primary-color);
  outline: none;
  background: var(--white-color);
}

.category-area .slick-next {
  right: -20px;
}

.category-area .slick-prev {
  left: -20px;
}

.category-area .slick-prev:before,
.category-area .slick-next:before {
  display: none;
}

.category-area .slick-prev,
.category-area .slick-next {
  position: absolute;
  top: 50%;
  display: block !important;
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: var(--primary-color);
  border: none;
  outline: none;
  background: var(--white-color);
  font-size: 24px;
  z-index: 1;
}

.home-blogs {
  overflow: hidden;
}

.home-blog-slider.no-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-page-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 18px;
}

.contact-page-form form .col-12 {
  grid-column: span 2 / span 2;
}

input::file-selector-button {
  height: 45px;
}

#searchModalToggle .modal-dialog-centered {
  max-width: 560px;
  overflow: hidden;
  border: 0 !important;
}

/* .enquiries-form .bttn {
    width: max-content !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
} */

#dropdownMenuButton1 + ul.dropdown-menu,
#languageButton + ul.dropdown-menu {
  border: 1px solid #ddd;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
  position: absolute;
  padding: 15px;
  min-width: 200px;
  top: calc(100% + 22px);
  border-radius: 0;
  right: 0;
  left: inherit;
}

#languageButton + ul.dropdown-menu {
  min-width: 100px;
}

#languageButton {
  border-color: transparent;
  background: transparent;
  padding: 0;
  min-width: auto;
  gap: 8px;
}

#dropdownMenuButton1 + ul.dropdown-menu .dropdown-item,
#languageButton + ul.dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 0;
  clear: both;
  font-weight: 400;
  color: var(--primary-text);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  line-height: normal;
}

#languageButton + ul.dropdown-menu .dropdown-item img {
  margin-right: 8px;
}

#dropdownMenuButton1 + ul.dropdown-menu .dropdown-item:focus,
#dropdownMenuButton1 + ul.dropdown-menu .dropdown-item:hover,
#languageButton + ul.dropdown-menu .dropdown-item:focus,
#languageButton + ul.dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
  background-color: transparent;
}

section.export-section {
  position: relative;
  z-index: 0;
}

section.export-section:before {
  content: "";
  background: url("http://192.168.3.11:8114/docs//Images/export.png");
  position: absolute;
  top: 0;
  left: 0;
  width: 255px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

section.import-section {
  position: relative;
  z-index: 0;
}

section.import-section:after {
  content: "";
  background: url(http://192.168.3.11:8114/docs//Images/procure.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 255px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}

/* .search-wrapper #txtSearch {
  width: 100%;
  border: 0;
  height: 45px;
  outline: 0;
} */

.autocomplete-suggestion a {
  padding: 6px 20px;
  cursor: pointer;
  display: block;
  font-size: 14px;
  color: var(--primary-text);
}

.group-header {
  padding: 6px 20px;
  border: 0;
  font-weight: 700;
  position: relative;
  z-index: 0;
  width: max-content;
  font-size: 14px;
  color: var(--primary-text);
}

#suggestions {
  background: #fff;
  padding: 10px;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  z-index: 9;
}

.top-productdescription table th {
  font-weight: 500;
}

#what-is-tr-play,
#Watch-Buyer-Process-play,
#Watch-Seller-Process-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-card {
  transition: all 0.5s ease;
}

.hover-card:hover {
  transform: scale(1.05);
}

.related-product-slider .item h6 {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0 0.75rem !important;
  margin-top: 5px;
}

form .select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #b1b1b1;
  border-radius: 4px;
  cursor: text;
  height: 45px;
  overflow-y: auto;
}

.testimonial-page form .ratting {
  font-size: 24px;
  color: #f4ca35;
}

.testimonial-page .blog-list hr:last-child {
  margin-bottom: 0 !important;
}

#btnWhatsapp {
  z-index: 99;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.pagination-button {
  display: inline-block;
  padding: 5px 10px;
  margin: 2px;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
  min-width: 35px;
  text-align: center;
}

.pagination-button.active {
  background-color: var(--primary-color);
  color: white;
}

.pagination-button.disabled {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

#BlogPaginationControls,
#TestimonialPaginationControls {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 32px;
}

.innerBlog .item .content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

iframe {
  max-width: 100%;
}

.scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 40px;
  /* space for arrows */
}

.scroll-content::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

.share-card .dropdown-toggle::after {
  display: none;
}

.quick-links .p-2 a {
  transition: all 0.5s ease;
}

.quick-links .p-2 a:hover {
  border-color: var(--primary-color) !important;
}

.product-slider .slick-prev:before,
.product-slider .slick-next:before {
  color: #000;
}

.product-slider .slick-dots {
  display: none !important;
}

#product-category-section .item {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
}

#product-category-section .item img {
  margin-bottom: 16px;
}

#product-category-section .item h6 {
  font-weight: 500;
  min-height: 56px;
}

#product-category-section .item a {
  color: var(--primary-color);
}

#service-for-buyer .item h5 {
  font-weight: 500;
}

#service-for-buyer .item a {
  color: var(--primary-color);
}

#service-for-buyer .nav-tabs,
#how-tradologie-works .nav-tabs {
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  overflow: hidden;
  gap: 10px;
}

#how-tradologie-works .items span {
  min-width: 48px;
}

#how-tradologie-works .items .line {
  width: 100%;
}

#how-tradologie-works .d-grid {
  gap: 10px !important;
}

.testimonials-slider .slick-arrow {
  color: var(--primary-color);
}

.testimonial-area .item .box:after {
  content: "";
  width: calc(100% + 30px);
  height: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f9f9f9;
  border-radius: 12px;
  left: 50%;
  border: 1px solid #eee;
}

.testimonial-area .item .box:before {
  content: "";
  background: url("/docs/Images/quote.png");
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

#searchTab button {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #808080;
}

#searchTab button span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #808080;
}

#searchTab button.active {
  color: var(--primary-text);
}

#searchTab button.active span {
  border-color: var(--primary-color);
  position: relative;
}

#searchTab button.active span:after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

#dvAllBlogs .item .text,
#dvAllBlogs .item h5,
.our-latest-news small,
.related-blogs-slider h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-post .item .text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blogctTab .nav-link {
  outline: 0;
  color: var(--third-text);
}

#blogctTab .nav-link.active {
  color: #fff;
}

#dvAllBlogs .innerBlog .image-wrapper {
  aspect-ratio: 1 / 1;
  width: 170px;
}

#dvAllBlogs .innerBlog .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-latest-news .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-latest-news .image-wrapper {
  aspect-ratio: 1 / 1;
  width: 48px;
  overflow: hidden;
  border-radius: 4px;
}

.main-post .avator-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d9d9d9;
  overflow: hidden;
}

.main-post .image-wrapper {
  aspect-ratio: 1/1;
  width: 420px;
}

.main-post .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-main-category .item .image-wrapper {
  aspect-ratio: 1/1;
  width: 250px;
}

.home-main-category .item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-main-category .item .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.category-area .item .title {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.related-blogs-slider.no-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.top-section-basmati {
  padding: 60px 15px;
  background: #eef9ff;
}

#sell-on-tradologie-banner > .container-fluid {
  margin-top: 110px;
}

#sell-on-tradologie-banner > .container-fluid > .row {
  row-gap: 80px;
}

#sellTabContent .nav-pills .nav-link.active {
  background: #eef9ff !important;
  color: var(--primary-color) !important;
}

#accordionAbout .accordion-button::after {
  content: "\EA70";
}

#accordionAbout .accordion-button:not(.collapsed)::after {
  content: "\EA5E";
}

#accordionAbout .accordion-item {
  border-radius: 0px;
  border: 0;
  background: transparent !important;
  border-bottom: 1px solid #e4e4e4;
}

#accordionAbout .accordion-button:not(.collapsed) {
  background: transparent !important;
}

#accordionAbout .accordion-collapse {
  background: transparent;
}

#accordionAbout .progress {
  height: 1px;
  border-radius: 0;
  background: #e4e4e4;
}

#accordionAbout .progress .progress-bar {
  background: #1759b4;
}

#accordionAbout .accordion-item:has(.show) {
  border: 0;
}

#howitworksTabContent .item {
  transition: all 0.5s ease;
  border: 1px solid #f2f2f233;
}

#howitworksTabContent .item:hover {
  background-color: #1759b4 !important;
}

.why-choose-slider .slick-current + .slick-active .item > div {
  background: #f3f6fb;
}

.why-choose-slider .item > div {
  background: #fafafa;
  border: 1px dashed #f0f0f0;
  min-height: 480px;
}

.form-control {
  border-bottom: 1px solid #e4e4e4 !important;
  box-shadow: none !important;
  color: var(--text-primary);
  font-size: 14px;
  border-radius: 0;
  border: 0;
  padding: 5px 0;
}

.form-select {
  padding: 5px 10px !important;
}

button[type="submit"][disabled] {
    background: #aaa !important;
    cursor: not-allowed;
}

#CountryCode1:disabled,
#CountryCode:disabled {
  border: 0 !important;
  background: none !important;
}

.form-control:not(textarea) {
  height: 30px !important;
}

.form-control[type="file"] {
  padding: 0px 10px;
}

.form-label {
  color: var(--primary-text) !important;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
}

label.form-check-label {
  display: inline !important;
}

#Quick-Easy-Stages .item span {
  font-size: 64px;
  font-family: "Anton";
  color: #3389ff !important;
  margin-right: 20px;
}

.wwr-card {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.wwr-card .front {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.wwr-card .front,
.wwr-card .back {
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-position: center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 200px;
  height: auto;
  border-radius: 10px;
}

.wwr-card .front > div {
  -webkit-transform: translateY(-50%) translateZ(0) scale(0.94);
  transform: translateY(-50%) translateZ(0) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.wwr-card .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.wwr-card .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
}

.wwr-card .back > div {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.wwr-card:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.wwr-card:hover .front,
.wwr-card:hover .back {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.wwr-card:hover .back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.wwr-card .back {
  background: -webkit-linear-gradient(to top right, #1759b4, #307dea);
  background: -o-linear-gradient(to top right, #1759b4, #307dea);
  background: linear-gradient(to top right, #1759b4, #307dea);
}

.mobile-menu .menu {
  gap: 0px !important;
}

.mobile-menu .menu li {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mobile-menu .menu ul.submenu {
  flex: 1;
  width: 100%;
  flex-direction: column;
}

.mobile-menu .menu > li span.dropdown-icon {
  position: absolute;
  height: 45px;
  width: 100%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mobile-menu .menu li.has-child > a {
  pointer-events: none;
}

.mobile-menu .menu .menu-link {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.auction-slider .item {
  height: 100%;
}

.auction-slider.owl-carousel .owl-item {
  display: flex !important;
  align-items: stretch !important;
}

.auction-inner-list .column2 {
  border-left: 1px dashed rgba(0, 0, 0, 0.2);
  border-right: 1px dashed rgba(0, 0, 0, 0.2);
}

.auction-slider .owl-dots span {
  width: 20px !important;
  height: 5px !important;
  border-radius: 4px !important;
}

.auction-slider .owl-dot.active span {
  background: var(--secondary-color) !important;
}

.auction-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auction-slider .owl-nav button {
  width: 30px;
  height: 30px;
  background: #fff !important;
  display: flex !important;
  align-items: center;
  border-radius: 50% !important;
  overflow: hidden;
  justify-content: center !important;
  font-size: 24px !important;
  color: var(--primary-text) !important;
}

.testimonial-card > div {
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  max-width: 70%;
  margin: 0 auto;
  padding-left: 90px;
}

.testimonial-card .img-wrapper {
  position: absolute;
  left: -135px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-card > div {
  position: relative;
  min-height: 470px;
  display: flex !important;
  align-items: center;
}

div#top-menu-sidebar ul.sidemenu p {
  display: none;
}

div#top-menu-sidebar ul.sidemenu ul {
  flex-direction: row;
}

div#top-menu-sidebar > div {
  margin: 0 !important;
  padding: 10px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #e0edfe !important;
}

div#top-menu-sidebar.stic-top {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

div#top-menu-sidebar {
  opacity: 1;
  visibility: visible;
  max-height: 80px; /* adjust based on your content */
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

section.home-banner-area {
  position: relative;
}

.main-banner .banner-content {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.main-banner .video-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  object-fit: cover;
  position: absolute;
  display: block;
}

#contact-us-template .contact-page-form form {
  grid-template-columns: repeat(1, 1fr);
}

/* ==================Supplier Page Css================== */
#supplier-template .bottom-header {
  display: none !important;
}

#supplier-template {
  padding-top: 70px;
}

#supplier-template ul.breadcum-custom {
  display: none !important;
}

#supplier-template main + .mt-4 {
  display: none;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: transparent;
  border-radius: 10px;
}

/* ==================Buyer Page Css================== */
#buyer-template .bottom-header {
  display: none !important;
}

#buyer-template {
  padding-top: 70px;
}

#buyer-template ul.breadcum-custom {
  display: none !important;
}

#buyer-template main + .mt-4 {
  display: none;
}

div#gt_float_wrapper {
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
}

.gt-current-lang img {
  display: none !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  transform: rotate(0deg) !important;
}

.gt_float_switcher .gt_options {
  position: absolute !important;
  background: #fff !important;
  top: calc(100% + 17px) !important;
  right: 0 !important;
  border: 1px solid #e4e4e4 !important;
  min-width: 160px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 0 !important;
  font-weight: 400 !important;
  color: var(--primary-text) !important;
}

.gt_float_switcher .gt-selected {
  background: transparent !important;
}

.gt_float_switcher {
  font-family: "Rubik", sans-serif !important;
  font-size: 16px !important;
  border-radius: 0 !important;
  color: var(--primary-text) !important;
  box-shadow: none !important;
  line-height: 1 !important;
  background: none !important;
  margin-top: 5px !important;
}

.gt_float_switcher .gt_options a:hover {
  background: var(--primary-color) !important;
}

#delayedPopup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 30px;
}

#delayedPopup #popupContent {
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 570px;
  position: relative;
}

#delayedPopup #closePopup {
  margin-top: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#delayedPopup #closePopup img {
  width: 14px;
}
