@import url(slick.css);
@import url(slick-theme.css);
@import url(jquery.fancybox.css);
.hero-search-title span {
    display: none;
}
.hero-search-control>label {
    margin-bottom: 0;
    display: none;
}
:root {
  --dark: #070909;
  --dark-2: #101414;
  --dark-3: #171b1b;
  --accent: #e97512;
  --accent-2: #cc6711;
  --sec-color: #e97512;
  --text: #151515;
  --muted: #666;
  --soft: #f6f7f8;
  --border: #e5e5e5;
  --container: 1280px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: var(--container)
}

a {
  text-decoration: none
}

/* Buttons */
.btn {
  border-radius: 0;
  font-weight: 700;
  padding: 13px 22px;
  line-height: 1;
  transition: .25s ease
}

.btn-primary-accent {
  background: var(--sec-color);
  border: 1px solid var(--sec-color);
  color: #fff;
  box-shadow: 0 10px 28px rgba(179, 128, 96, .18)
}

.btn-outline-light-accent {
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: rgba(255, 255, 255, .03)
}

.btn-outline-dark-accent {
  border: 1px solid #cfcfcf;
  color: #111;
  background: #fff;
  padding: 11px 18px
}

.btn-lang {
  color: #111;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  padding: 11px 15px
}

.static-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

/* Navbar */
.site-nav {
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 0
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0
}

.brand-logo {
  width: 325px;
  height: 160px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
   transition: width .35s ease,
                height .35s ease;
}
.is-scrolled .brand-logo {
  width: 220px;
  height: 110px;
}

.navbar .nav-link {
  color: #111;
  font-weight: 700;
  margin: 0 8px;
  padding: 14px 10px;
  position: relative;
  font-size: 20px;
}

.navbar .active-edit , .navbar .nav-link:hover {
  color: var(--accent-2)
}

.navbar .nav-link:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 10px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: .25s
}

.navbar .active-edit:after, .navbar .nav-link:hover:after {
  width: 24px
}

.navbar-toggler {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .15)
}

/* Global sections */
.template-section,
.cta-footer-section {
  padding-top: 90px;
  padding-bottom: 90px
}

.section-soft {
  background: var(--soft)
}

.section-dark {
  background: var(--dark);
  color: #fff;
  position: relative;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.section-head.centered {
  justify-content: center;
  text-align: center
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0;
  position: relative;
  line-height: 1.35;
  color: inherit
}

.section-head h2:after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--accent);
  margin-top: 13px
}

.section-head.centered h2:after {
  margin-inline: auto;
  margin-top: 13px
}

.section-head.light h2 {
  color: #111
}

.section-kicker {
  display: inline-flex;
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 14px
}

.section-content-gap {
  margin-top: 50px
}

/* Hero */
.hero-section {
  /* padding-top: 96px; */
  min-height: 660px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
  z-index: 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
	opacity:.5;
  background:
  linear-gradient(270deg, rgb(179 128 96 / 58%) 0%, rgba(7, 9, 9, .54) 48%, rgba(7, 9, 9, .25) 100%), radial-gradient(circle at 28% 48%, rgba(179, 128, 96, .16), transparent 30%);
}

.hero-overlay:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, #070909, transparent)
}

.hero-container {
  position: relative;
  z-index: 2
}

.min-vh-hero {
  min-height: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 22px
}

.eyebrow:before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent)
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 26px;
  letter-spacing: -1px
}

.hero-content h1 span {
  color: var(--accent)
}

.hero-content p {
  font-size: 22px;
  line-height: 1.9;
  max-width: 680px;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 36px
}

/* About */
.about-section {
  background: #fff;
  position: relative;
  overflow: hidden;
 
}

.about-section:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 360px;
  height: 360px;
  background: rgba(179, 128, 96, .08);
  border-radius: 0;
  transform: translate(-35%, -35%);
  opacity: 0;
}

.about-text p {
  font-size: 17px;
  line-height: 28px;
  color: #555;
  margin-bottom: 18px
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px
}

.about-stat-card {
  min-height: 178px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 0;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: .25s ease
}

.about-stat-card i {
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 18px
}

.about-stat-card strong {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #111;
  margin-bottom: 8px
}

.about-stat-card span {
  font-size: 16px;
  font-weight: 800;
  color: #555
}

.about-stat-card.accent-card {
  background: #fef4e1;
  border-color: rgba(179, 128, 96, .3)
}

.about-stat-card.accent-card strong,
.about-stat-card.accent-card span {
/*   color: #fff */
}

/* Category icons */
.category-card {
  height: 180px;
  border: 1px solid var(--border);
  box-shadow: 0 13px 30px rgba(0, 0, 0, .06);
  background: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: #111;
  transition: .25s
}

.category-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  position: relative
}

.category-card h3:after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--accent);
  margin: 13px auto 0
}

.machine-icon {
  width: 92px;
  height: 56px;
  display: block;
  position: relative
}

.machine-icon:before {
  content: "";
  position: absolute;
  inset: 18px 8px 8px 8px;
  background: var(--accent);
  border-radius: 0;
  box-shadow: 0 23px 0 -15px #171717
}

.machine-icon:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 18px;
  height: 18px;
  background: #151515;
  border-radius: 0;
  box-shadow: 44px 0 0 #151515
}

.excavator:before {
  clip-path: polygon(5% 68%, 42% 55%, 78% 0, 86% 8%, 58% 62%, 100% 66%, 100% 84%, 0 84%)
}

.loader:before {
  clip-path: polygon(5% 38%, 48% 28%, 72% 54%, 100% 46%, 100% 78%, 5% 78%)
}

.dozer:before {
  clip-path: polygon(0 45%, 70% 45%, 80% 62%, 100% 62%, 100% 82%, 0 82%)
}

.crane:before {
  clip-path: polygon(16% 76%, 45% 76%, 45% 22%, 82% 22%, 82% 31%, 55% 31%, 55% 76%, 95% 76%, 95% 88%, 16% 88%)
}

.generator:before {
  clip-path: inset(10% 6% 12% 6% round 8px)
}

.roller:before {
  clip-path: polygon(0 50%, 50% 45%, 72% 60%, 100% 60%, 100% 78%, 0 78%)
}

/* Products */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .07);
  transition: .25s;
  height: 100%
}

.product-img {
  height: 225px;
  position: relative;
  overflow: hidden;
  background: #ddd
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: .35s ease
}

.product-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .22));
  pointer-events: none
}

.product-img span {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  border-radius: 0;
  padding: 6px 11px;
  font-size: 14px
}

.product-body {
  padding: 22px;
  text-align: center
}

.product-body h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111
}

.meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #555;
  font-size: 14px;
  margin-bottom: 18px
}

.meta i {
  margin-inline-end: 6px;
  color: #111
}

.product-body a {
  font-weight: 800;
  color: #111;
  border-top: 1px solid #eee;
  padding-top: 16px;
  display: block
}

.product-body a i {
  color: var(--accent);
  margin-inline-start: 8px
}

/* Services */
.services-section {
  background: #fff
}

.service-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: #fef4e1;
  border-radius: 0;
  padding: 34px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: .25s;
  direction: rtl;
  text-align: right
}

.service-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 38px;
  background: rgba(179, 128, 96, .08)
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 13px;
  color: #111
}

.service-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color:#555;
  margin: 0
}

/* Brands Owl Carousel */
.brands-carousel .owl-stage {
  display: flex;
  align-items: stretch
}

.brands-carousel .owl-item {
  display: flex;
  align-items: stretch
}

.brand-item {
  width: 100%;
  box-sizing: border-box;
  height: 126px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: .25s ease;
}

.brand-item img {
  max-width: 100%;
  max-height: 86px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .82;
  transition: .25s ease;
}

/* CTA + Footer */
.cta-footer-section {
  background: #050606;
  padding-bottom: 0;
  position: relative;
  overflow: hidden
}

.footer-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0
}

.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:linear-gradient(180deg, rgb(179 128 96 / 60%), rgba(5, 6, 6, .97))
}

.cta-footer-section .container {
  z-index: 2
}

.cta-block {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  padding: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #9b71559e
}

.cta-block h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px
}

.cta-block p {
  font-size: 19px;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  line-height: 1.8
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: end;
}

.footer-main {
  padding-top: 90px;
  /* padding-bottom: 30px; */
  color: #fff
}

.footer-logo {
  width: 275px;
  max-height: 175px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 24px
}

.footer-main p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.9;
  max-width: 390px
}

.footer-main h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 24px
}

.footer-main ul {
  padding: 0;
  margin: 0;
  list-style: none
}

.footer-main li {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 13px
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px
}

.contact-list a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  unicode-bidi: isolate;
  font-weight: 600;
  letter-spacing: .2px
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: .25s ease
}

.contact-list i {
  width: 22px;
  margin-inline-end: 8px
}

.copyright {
  /* text-align: center; */
  border-top: 1px solid rgba(255, 255, 255, .1);
  /* padding-top: 24px; */
  margin-top: 56px;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  align-items: center;
  -webkit-align-items: center;
}

/* LTR support */
html[dir="ltr"] body {
  font-family: 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif
}

html[dir="ltr"] .navbar .nav-link:after {
  right: auto;
  left: 10px
}

html[dir="ltr"] .section-head.with-action {
  flex-direction: row
}

html[dir="ltr"] .service-card {
  direction: ltr;
  text-align: left
}

html[dir="ltr"] .product-body a i {
  transform: rotate(180deg)
}

html[dir="ltr"] .eyebrow:before {
  order: -1
}

html[dir="ltr"] .hero-overlay {
  background: linear-gradient(
268deg, rgb(179 128 96 / 47%) 0%, rgba(7, 9, 9, .54) 48%, rgba(7, 9, 9, .25) 100%), radial-gradient(circle at 28% 48%, rgba(179, 128, 96, .16), transparent 30%);
}

/* Desktop only */
@media (min-width: 992px) {
    .footer-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-categories li {
        margin: 0;
    }
}
/* Responsive */
@media (max-width:991px) {
  .site-nav {
    position: absolute
  }

  .navbar-collapse {
    padding-top: 20px
  }

  .hero-section {
    padding-top: 96px
  }

  .hero-content h1 {
    font-size: 48px
  }

  .hero-content p {
    font-size: 18px
  }

  .min-vh-hero {
    min-height: auto;
    /* padding: 90px 0; */
  }

  .template-section, .categories-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-head.with-action {
    align-items: flex-start
  }

  .cta-block {
    align-items: flex-start;
    flex-direction: column
  }

  .service-card {
    padding: 28px
  }

  .about-stats-grid {
    margin-top: 10px
  }
}

@media (max-width:767px) {
  .brand-logo {
    width: 170px;
    height: 85px;
  }

  .hero-content h1 {
    font-size: 40px
  }

  .hero-content p {
    font-size: 16px
  }

  .section-head {
    flex-direction: column;
    align-items: stretch
  }

  .section-head.centered {
    align-items: center
  }

  .section-head.with-action {
    gap: 20px;
    flex-direction: column !IMPORTANT;
  }

  .section-head h2 {
    font-size: 28px
  }

  .section-content-gap {
    margin-top: 50px
  }

  .category-card {
    height: 156px
  }

  .cta-block {
    padding: 30px
  }

  .cta-block h2 {
    font-size: 28px
  }

  .service-card {
    gap: 18px
  }

  .service-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 30px
  }

  .about-stats-grid {
    grid-template-columns: 1fr
  }

  .about-stat-card {
    min-height: 150px
  }
}

/*======================================
= Categories Slider Style
======================================*/

.categories-section {
  padding: 0;
  background: #fff;padding-top: 160px
}

.categories-carousel {
  position: relative;
}

.categories-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.categories-carousel .owl-item {
  display: flex;
}

.categories-carousel .owl-stage-outer {
  padding: 2px 0;
}

.equipment-category-card {
  width: 100%;
  min-height: 156px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #111;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 16px;
  transition: .25s ease;
  margin-top: 2px;
}

.equipment-category-image {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
}

.equipment-category-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: .25s ease;
}

.equipment-category-content {
  width: 100%;
  text-align: center;
}

.equipment-category-content h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.equipment-category-all {
  min-height: 156px;
  padding: 18px;
}

.equipment-category-all-content {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.equipment-category-all-content i {
  color: var(--accent);
  font-size: 14px;
}

html[dir="ltr"] .equipment-category-all-content i {
  transform: rotate(180deg);
}

@media(max-width:991px) {

  .equipment-category-card,
  .equipment-category-all {
    min-height: 150px;
  }

  .equipment-category-image {
    height: 88px;
  }
}

@media(max-width:767px) {

  .equipment-category-card,
  .equipment-category-all {
    min-height: 146px;
  }

  .equipment-category-image {
    height: 84px;
  }

  .equipment-category-content h3 {
    font-size: 14px;
  }
}


/* Categories Carousel Dots */
.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent) !important;
  background: transparent !important;
  transition: .25s ease;
}

.owl-dot span {
  display: none !important;
}

.owl-dot.active {
  width: 34px;
  background: var(--accent) !important;
}

.featured-equipment-card {
  display: block;
  margin-bottom: 15px;
  text-align: center;
  color: #111;
  text-decoration: none;
}

.featured-equipment-image {
  background: #fff;
  border: 1px solid var(--border);
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-equipment-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  padding: 0;
  transition: all .4s;
}

.featured-equipment-card h3 {
  margin: 20px 0 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: #111;
}

@media(max-width:767px) {
  .featured-equipment-image {
    height: 220px;
  }
}

/* Equipment details page */
.equipment-details-page {
  background: #fff
}

.equipment-detail-hero {
  padding-top: 180px;
  padding-bottom: 62px;
  overflow: hidden
}

@media(min-width:768px) {
		.equipment-detail-hero {
		  min-height: 500px;
		}
}

.equipment-detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-position: center;
  z-index: 0
}

.equipment-detail-overlay {
  position: absolute;
  inset: 0;    opacity: .5;
  background: linear-gradient(135deg, rgb(179 128 96 / 60%), rgba(7, 9, 9, .72));
  z-index: 1
}

.equipment-detail-hero .container {
  z-index: 2
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 800
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none
}

.page-breadcrumb i {
  color: var(--accent);
  font-size: 11px
}

html[dir="ltr"] .page-breadcrumb i {
  transform: rotate(180deg)
}

.equipment-detail-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 0;
  color: #fff
}

.equipment-detail-intro {
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, .78);
  margin: 0
}

.equipment-detail-section {
  background: linear-gradient(180deg, #fff, #f7f7f7)
}

.equipment-gallery {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.equipment-main-image {
  height: 520px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
  max-width: 100%;
}

.equipment-main-image img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  max-width: 100%;
}

.equipment-thumbs {
  /* display: grid; */
  /* grid-template-columns: repeat(3, 1fr); */
  /* gap: 14px; */
}

.equipment-thumb img {
  height: 118px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: .25s ease;
  margin: 0 4px;
}

.equipment-thumb img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* display: block; */
  /* border: 1px solid var(--border); */
  max-width: 100%;
  margin: 0;
}

.equipment-thumb.is-active img, .equipment-thumb.slick-current  img {
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(179, 128, 96, .16)
}

.equipment-detail-panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: 38px;
  position: sticky;
  top: 110px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .06)
}

.equipment-detail-panel h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 12px 0 16px;
  color: #111
}

.equipment-detail-panel p {
  font-size: 16px;
  line-height: 2;
  color: var(--muted);
  margin: 0
}

.equipment-specs {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px
}

.equipment-specs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-weight: 700;
  line-height: 1.8
}

.equipment-specs i {
  color: var(--accent);
  margin-top: 6px
}

.equipment-request-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.footer-main a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none
}

.archive-section {
  background: #fff
}

.archive-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: start
}

.archive-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 104px
}

.archive-filter-panel,
.archive-categories-panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .05)
}

.archive-filter-panel {
  display: grid;
  gap: 12px
}

.archive-filter-panel h3,
.archive-categories-panel h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #111
}

.archive-filter-panel .hero-search-submit {
  width: 100%;
  margin-top: 4px;
  background: var(--accent)
}

.archive-categories-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.archive-categories-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #eee;
  color: #333;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease
}

.archive-categories-panel a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55
}

.archive-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px
}

.archive-equipment-grid .featured-equipment-card {
  margin: 0
}

.archive-equipment-grid .featured-equipment-image {
  height: 245px
}

@media(max-width:991px) {
  .archive-layout {
    grid-template-columns: 1fr
  }

  .archive-sidebar {
    position: static
  }

  .archive-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:575px) {
  .archive-equipment-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:991px) {
  .equipment-detail-hero {
    padding-top: 128px
  }

  .equipment-detail-hero h1 {
    font-size: 38px
  }

  .equipment-detail-panel {
    position: static
  }

  .equipment-main-image {
    height: 430px
  }
}

@media(max-width:767px) {
  .equipment-detail-hero {
    padding-top: 112px;
    padding-bottom: 54px
  }

  .equipment-detail-hero h1 {
    font-size: 32px
  }

  .equipment-detail-intro {
    font-size: 16px
  }

  .equipment-main-image, .equipment-main-image img {
    height: 320px
  }

  .equipment-thumbs {
    gap: 10px
  }

  .equipment-thumb, .equipment-thumb img {
    height: 86px
  }

  .equipment-detail-panel {
    padding: 26px
  }
}

@media(max-width:991px) {

  .site-nav {
    position: fixed;
    z-index: 9999;
  }

  .navbar-collapse.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 86%;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    padding: 22px;
    display: block !important;
    transform: translateX(110%);
    transition: transform .35s ease;
    box-shadow: -20px 0 45px rgba(0, 0, 0, .16);
    overflow-y: auto;
  }

  .navbar-collapse.mobile-slide-menu.show {
    transform: translateX(0);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-logo {
    width: 130px;
    height: 54px;
    object-fit: contain;
  }

  .mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 0;
    color: #111;
    font-size: 20px;
  }

  .mobile-slide-menu .navbar-nav {
    margin: 0 !important;
    gap: 0;
  }

  .mobile-slide-menu .nav-link {
    color: #111;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-slide-menu .nav-link:after {
    display: none;
  }

  .mobile-slide-menu .nav-actions {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch !important;
  }

  .mobile-slide-menu .nav-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  html[dir="ltr"] .navbar-collapse.mobile-slide-menu {
    right: auto;
    left: 0;
    transform: translateX(-110%);
    box-shadow: 20px 0 45px rgba(0, 0, 0, .16);
  }

  html[dir="ltr"] .navbar-collapse.mobile-slide-menu.show {
    transform: translateX(0);
  }

}

/* Mobile Slide Menu - Android Style */
@media(max-width:991px) {
  .site-nav {
    position: fixed;
    z-index: 9;
  }

  .navbar-toggler.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .navbar-collapse.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 86%;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    padding: 22px;
    display: block !important;
    transform: translateX(110%);
    transition: transform .35s ease;
    box-shadow: -20px 0 45px rgba(0, 0, 0, .16);
    overflow-y: auto;
  }

  .navbar-collapse.mobile-slide-menu.show {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-logo {
    width: 130px;
    height: 54px;
    object-fit: contain;
  }

  .mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 0;
    color: #111;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-slide-menu .navbar-nav {
    margin: 0 !important;
    gap: 0;
  }

  .mobile-slide-menu .nav-link {
    color: #111;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-slide-menu .nav-link:after {
    display: none;
  }

  .mobile-slide-menu .nav-actions {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch !important;
  }

  .mobile-slide-menu .nav-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  html[dir="ltr"] .navbar-collapse.mobile-slide-menu {
    right: auto;
    left: 0;
    transform: translateX(-110%);
    box-shadow: 20px 0 45px rgba(0, 0, 0, .16);
  }

  html[dir="ltr"] .navbar-collapse.mobile-slide-menu.show {
    transform: translateX(0);
  }
}

@media(min-width:992px) {

  .mobile-menu-overlay,
  .mobile-menu-head {
    display: none !important;
  }
}

.hero-section {
  /* padding-bottom: 110px; */
}

.hero-search-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  z-index: 5;
  display: none;
}

.hero-search-panel {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, .18);

  border-radius: 0;
  padding: 10px;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero-search-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 0;
}

.hero-search-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 120px;
  gap: 12px;
  align-items: center;
}

.hero-search-control input,
.hero-search-control select {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 0;
  background: rgba(255, 255, 255, .95);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: .25s ease;
}

.hero-search-control input::placeholder {
  color: #333;
  opacity: .8;
}

.hero-search-control input:focus,
.hero-search-control select:focus {
  border-color: rgba(179, 128, 96, .75);
  box-shadow: 0 0 0 4px rgba(179, 128, 96, .12);
  outline: 0;
}

.hero-search-submit {
  height: 48px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s;
}

@media(max-width:991px) {
  .hero-search-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-search-submit {
    grid-column: span 2;
  }
}

@media(max-width:767px) {
  .hero-section {
    /* padding-bottom: 260px; */
    min-height: auto;
    padding-top: 0;
  }

  .hero-search-wrapper {
    bottom: -220px;
  }

  .hero-search-row {
    grid-template-columns: 1fr;
  }

  .hero-search-submit {
    grid-column: auto;
  }
}

.fixed-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9998;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .35);
  transition: .25s ease;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top i {
  position: relative;
  z-index: 2;
  font-size: 17px;
}

.back-to-top-progress {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3;
}

.progress-value {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset .1s linear;
}

html[dir="ltr"] .fixed-whatsapp,
html[dir="ltr"] .back-to-top {
  right: auto;
  left: 24px;
}

@media(max-width:767px) {
  .fixed-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .back-to-top {
    right: 18px;
    bottom: 82px;
    width: 50px;
    height: 50px;
  }

  html[dir="ltr"] .fixed-whatsapp,
  html[dir="ltr"] .back-to-top {
    left: 18px;
  }
}

.brands-carousel,
.brands-carousel .owl-stage-outer {
  overflow: visible;
}

.brands-section .container {
  overflow: hidden;
}

.brands-carousel .owl-stage-outer {
  padding: 14px 0;
  margin: -14px 0;
}

/* Sell Equipment CTA */
.sell-equipment-section {
  background: linear-gradient(180deg, #fff, #f6f7f8);
}

.sell-equipment-card {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, rgb(7 9 9 / 59%), rgba(7, 9, 9, .86)), url(images/equipment-loader.jpg) center / cover no-repeat; */
  padding: 120px 64px;
  border: 1px solid rgba(179, 128, 96, .35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  /* transform: scale(1); */
  /* transition:transform .1s linear; */
  /* z-index:-1; */
}

.sell-equipment-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(179, 128, 96, .2), rgba(7, 9, 9, .32) 42%, rgba(7, 9, 9, .54)),
    radial-gradient(circle at 15% 50%, rgba(179, 128, 96, .16), transparent 30%);
  pointer-events: none;
  opacity: .5;
}

.sell-equipment-card .section-kicker {
  color: var(--accent);
  margin-bottom: 16px;
}

.sell-equipment-card h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 18px;
}

.sell-equipment-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 2;
  margin: 0;
  max-width: 760px;
}

.sell-equipment-btn {
  height: 56px;
  min-width: 210px;
  border: 0;
  float: left;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: .25s ease;
  padding: 0 24px;
}

.sell-equipment-btn i {
  font-size: 14px;
}

html[dir="ltr"] .sell-equipment-btn i {
  transform: rotate(180deg);
}

/* Sell Equipment Modal */
.sell-modal {
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.sell-modal .modal-header {
  padding: 24px 26px 0;
  border-bottom: 0;
  justify-content: space-between;
}

.sell-modal .modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
}

.sell-modal .btn-close {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.sell-modal .modal-body {
  padding: 26px;
}

.sell-modal .form-label {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.sell-modal .form-control {
  height: 52px;
  border-radius: 0;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  box-shadow: none;
}

.sell-modal .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(179, 128, 96, .12);
}

.sell-modal textarea.form-control {
  height: auto;
  min-height: 130px;
  resize: none;
}

.btn-add-image {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s ease;
}

.mb-50 {
  margin-bottom: 50px;
}

/* Start Pagination */


.all-pages {
  text-align: center;
  margin-top: 70px;
}

.all-pages .pagination {
    background: var(--dark);
    border: 1px solid #FFFFFF29;
    padding: 8px;
    border-radius: 50px;
    gap: 8px;
    display: inline-flex;
}

.all-pages .pagination .page-item .page-link {
  width: 35.22px;
  height: 35.22px;
  padding: 0;
  line-height: 35.22px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: 1px solid #FFFFFF3D;
  font-size: 16px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.programes-page .all-pages .pagination .page-item .page-link {
  border: 1px solid rgb(255 255 255 / 24%);
  color: #fff;
}

.all-pages .pagination .page-item.active .page-link,
.all-pages .pagination .page-item.prv-btn .page-link,
.all-pages .pagination .page-item.next-btn .page-link {
      background: var(--accent-2);
      /* background: var(--dark); */
}

.all-pages .pagination .page-item.disabled .page-link {
  opacity: .4;
}

.irs-bar {
    background-position: 0 -60px;
    background: var(--accent) repeat-x;
}

.irs-with-grid .irs-grid {
    display: none;
}

.irs-from, .irs-single, .irs-to {
    background: var(--accent);
}

.hero-search-control>label {
    margin-bottom: 12px;
}

.field-error-msg {
    margin-bottom: -25px;
}

img {
    max-width: 100%;
}

.equipment-main-image .item {
    width: 100%;
    height: 100%;
}

.equipment-thumb {
    padding: 0 6px;
}

.nav-link:focus-visible {
    box-shadow: none;
}

.equipment-thumbs .slick-list {
    margin-left: -6px;
    margin-right: -6px;
}

.ryad-logo {
    float: left;
}

.cta-block .row {
    align-items: center;
    -webkit-align-items: center;
    width: 100%;
}

.modal .field-error-msg {
    margin: 7px 0 0;
}

.navbar-collapse ul li a {}

.hero-search-control select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23333333'><polygon points='0,0 100,0 50,50'/></svg>");
    background-repeat: no-repeat;
    background-position: 15px 21px;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.irs-slider {
    top: 34px;
    transform: scale(1.3);
}

.irs-from, .irs-max, .irs-min, .irs-single, .irs-to {
    font-size: 12px;
}

.banner-block {
    height: 750px;
    padding-block: 96px;
}

/* End Pagination */

@media(max-width:991px) {
  .sell-equipment-card {
    padding: 44px 30px;
    text-align: center;
  }

  .sell-equipment-card p {
    margin: auto;
  }
  
  html,body {
    overflow-x: hidden;
}

.copyright {
    text-align: center;
    padding-top: 20px;
}

.ryad-logo {
    float: none;
}

.hero-content h1 {
    font-size: 34px;
}

.hero-content p {
    font-size: 18px;
    line-height: 26px;
}

.btn {
    padding: 13px 15px;
}

.cta-footer-section {
    padding-block: 90px 0;
}

.sell-equipment-section {
    /* padding-block: 0; */
}

section#about {
    padding-top: 270px;
}

.cta-actions {
    justify-content: start;
    margin-top: 20px;
}

.cta-actions .btn {
    padding: 13px 10px;
    font-size: 14px;
}

.inner-search-row, .archive-categories-panel ul.archive-categories-panel-inner {
    transition: all .4s;
    max-height: 0;
    overflow: hidden;
}

.inner-search-row.show, .archive-categories-panel ul.archive-categories-panel-inner.active {
    max-height: 1000px;
    margin-top: 25px;
}

.archive-filter-panel {
    gap: 0;
}

.archive-filter-panel>h3, .archive-categories-panel>h3 {
    margin: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.archive-filter-panel>h3::after, .archive-categories-panel>h3::after {
    content: "";
    position: relative;
    width: 10px;
    height: 10px;
    border-right: 1px #000 solid;
    border-bottom: 1px #000 solid;
    transform: rotate(42deg) translateY(-3px);
}

.banner-block {
    padding-block: 115px 0;
    height: 450px;
}

}

@media(max-width:767px) {
  .sell-equipment-card {
    padding: 36px 22px;
  }

  .sell-equipment-card h2 {
    font-size: 26px;
  }

  .sell-equipment-card p {
    font-size: 15px;
  }

  .sell-equipment-btn {
    width: 100%;
  }

  .sell-modal .modal-title {
    font-size: 20px;
  }
  
  .irs-slider {
    /* width: 20px; */
    /* height: 24px; */
    top: 36px;
    transform: scale(1.3);
}

.irs-from, .irs-max, .irs-min, .irs-single, .irs-to {
    font-size: 14px;
}

.hero-content h1 span {
    text-shadow: 0 -1px 0 #ffffff, 0 1px 0 #000000;
}
}


div#imageFields .image-upload-row {
    display: flex;
    gap: 12px;
    align-items: center;
    -webkit-align-items: center;
}

div#imageFields .image-upload-row input.form-control[type="file"] {
    line-height: 38px;
}

div#imageFields .image-upload-row .btn-remove-image {
    border: none !important;
    background: #d40b0b;
    box-shadow: none !important;
    color: #fff;
}


.categories-section .equipment-category-card {
    max-width: 98%;
    margin: auto;
}

.categories-section {
    padding-top: 80px;
}

.sell-equipment-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(7 9 9 / 38%), rgb(7 9 9 / 23%)), url(images/222.png);
    background-size: 100% 100%;
    transform: scale(1);
    background-repeat: no-repeat;
    transition:transform .1s linear;
}

.hero-content {display: none;}

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: color-mix(in srgb, var(--dark) 90%, transparent);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--accent);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    border-radius: 10px;
    text-transform: capitalize;
    padding-inline-end: 69px;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}

.search-box-btn.search-box-outer {
    cursor: pointer;
}


/*** 

====================================================================
	End Search Popup
====================================================================

***/

.gallery-block {
    margin: 15px 0;
}

.gallery-block a {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-block a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-block a::after {
    content: "\f04b";
    position: absolute;
    inset: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: var(--sec-color);
    margin: auto;
    font-family: 'font awesome 6 free';
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    transition: all .4s;
    transform: scale(.5);
    opacity: 0;
}

.fixed-top {
    position: relative;
    transition: all .4s;
}


nav.fixed-top.is-scrolled {
    position: fixed;
}

.eq-slider .item {padding: 0 12px;}

.eq-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin: 20px 0 0;
}

.eq-slider .slick-dots li button {
    background: var(--accent);
    border-radius: 20px;
    width: 15px;
    height: 15px;
    opacity: .5;
}

.eq-slider .slick-dots li.slick-active button {
    opacity: 1;
}




@media (min-width: 991px){

    .btn-primary-accent:hover {
      background: var(--accent-2);
      border-color: var(--accent-2);
      color: #ffffff;
      transform: translateY(-2px)
    }
    
    .btn-outline-light-accent:hover {
      background: #fff;
      color: #111;
      transform: translateY(-2px)
    }
    
    .btn-outline-dark-accent:hover {
      border-color: var(--accent);
      background: rgba(179, 128, 96, .1);
      color: #111
    }
    
    .btn-lang:hover {
      border-color: var(--accent);
      color: #111;
      background: rgba(179, 128, 96, .12)
    }
    
    .about-stat-card:hover {
      transform: translateY(-6px);
      border-color: rgba(179, 128, 96, .55)
    }
    
    .category-card:hover {
      transform: translateY(-7px);
      border-color: var(--accent);
      box-shadow: 0 18px 40px rgba(179, 128, 96, .15);
      color: #111
    }
    
    
    
    .product-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 46px rgba(0, 0, 0, .12)
    }
    
    .product-card:hover .product-img img {
      transform: scale(1.06)
    }
    
    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(179, 128, 96, .5);
      background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05))
    }
    
    .brand-item:hover {
      border-color: var(--accent);
    }
    
    .brand-item:hover img {
      filter: none;
      opacity: 1;
      transform: scale(1.05);
    }
    
    .contact-list a:hover {
      color: #fff
    }
    
    .footer-social a:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-2px)
    }
    
    .equipment-thumb:hover img {
      border-color: var(--accent);
      box-shadow: 0 12px 34px rgba(179, 128, 96, .16)
    }
    
    .equipment-category-card:hover {
      color: #111;
      border-color: var(--accent);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    }
    
    .equipment-category-card:hover .equipment-category-image img {
      transform: scale(1.06);
    }
    
    .owl-dot:hover {
      background: rgba(179, 128, 96, .35) !important;
    }
    
    .featured-equipment-card:hover img {
      transform: scale(1.04);
    }
    
    .page-breadcrumb a:hover {
      color: #fff
    }
    
    .footer-main a:hover {
      color: #fff
    }
    
    .archive-filter-panel .hero-search-submit:hover {
      background: var(--accent-2)
    }
    
    .archive-categories-panel a:hover {
      border-color: var(--accent);
      color: #111;
      background: rgba(179, 128, 96, .08)
    }
    
    .fixed-whatsapp:hover {
      color: #fff;
      transform: translateY(-4px);
    }
    
    .sell-equipment-btn:hover {
      background: var(--accent-2);
      color: #fff;
      transform: translateY(-3px);
    }
    
    .btn-add-image:hover {
      background: var(--accent);
      color: #fff;
    }


    .hero-search-submit:hover {
        background: var(--accent);
    }

    .gallery-block a:hover::after {
        opacity: 1;
        transform: none;
    }
}


@media (max-width: 991px){
.categories-section {
    padding-top: 50px;
}





}


