

.dealer-section-wrapper.dealer-tab-section {

  position: relative;
}


.dealer-section-wrapper .dealer-tab-tabs-wrapper {
  position: relative;
}

.dealer-section-wrapper .dealer-tab-tabs {
  display: flex;
  align-items: stretch;
  background: var(--tabBarBg);
  gap: 0;
  overflow: hidden;
}

.dealer-section-wrapper .dealer-tab-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 19px 30px;
  cursor: pointer;
  font-family: var(--fontHead);
  font-size: var(--f14);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--darkGray);
  background: var(--transparent);
  border: none;
  transition: background 0.35s ease;
  white-space: nowrap;
  position: relative;
  flex: 0 0 auto;
}

.dealer-section-wrapper .dealer-tab-tab:first-child {
  flex: 0 0 auto;
  min-width: 180px;
}

/* .dealer-section-wrapper .dealer-tab-tab:not(:first-child) {
  flex: 1 1 0%;
} */


.dealer-section-wrapper .dealer-tab-tab .tab-icon {
  height: auto;
  width: auto;
	max-height:21px;
  object-fit: contain;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.dealer-section-wrapper .dealer-tab-tab:first-child:not(.active) .tab-icon {
  filter: grayscale(100%) brightness(1.15) contrast(0.55);
  opacity: 0.85;
}


.dealer-section-wrapper .dealer-tab-tab:not(:first-child):not(.active) .tab-icon {
  filter: none;
  opacity: 1;
}

.dealer-section-wrapper .dealer-tab-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.35);
}

.dealer-section-wrapper .dealer-tab-tab:first-child:not(.active):hover .tab-icon {
  filter: none;
  opacity: 1;
}

/* .dealer-section-wrapper .dealer-tab-tab:not(:first-child):not(.active):hover .tab-icon {
  filter: brightness(0.3);
  opacity: 0.9;
} */


.dealer-section-wrapper .dealer-tab-tab.active {
  background: var(--white);
  color: var(--black);
}


.dealer-section-wrapper .dealer-tab-tab.active:first-child .tab-icon {
  filter: none;
  opacity: 1;
}

.dealer-section-wrapper .dealer-tab-tab.active:not(:first-child) .tab-icon {
  filter: brightness(0);
  opacity: 1;
}

.dealer-section-wrapper .tab-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  position: absolute;
  top: 70px;
  z-index: 5;
  transition: background 0.25s ease;
  padding: 0;
}

.dealer-section-wrapper .tab-arrow:hover {
  background: var(--darkYellow);
}

.dealer-section-wrapper .tab-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.dealer-section-wrapper .tab-arrow--prev {
  left: -15px;
}

.dealer-section-wrapper .tab-arrow--next {
  right: -15px;
}



.dealer-section-wrapper .dealer-tab-products-wrapper {
  position: relative;
  background: var(--white);
  padding: 32px 32px 24px;
}

.dealer-section-wrapper .dealer-tab-panel {
  position: relative;
}

.dealer-section-wrapper .dealer-tab-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dealer-section-wrapper .dealer-tab-products-grid.swiper {
  display: block;
  overflow: hidden;
}

.dealer-section-wrapper .dealer-tab-products-grid.swiper .swiper-wrapper {
  display: flex;
}



.dealer-section-wrapper .slider-nav {
  display: none;
}

.dealer-section-wrapper .slider-nav.is-active {
  display: block;
}

.dealer-section-wrapper .slider-nav__btn {
  display: none;

  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  transition: background 0.25s ease;
  flex-shrink: 0;
	padding:0;
}

.dealer-section-wrapper .slider-nav__btn:hover {
  background: var(--darkYellow);
}

.dealer-section-wrapper .slider-nav__btn:active {
  transform: translateY(-60%) scale(0.95);
}

.dealer-section-wrapper .slider-nav__btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  transition: transform 0.2s ease;
}


.dealer-section-wrapper .slider-nav__btn--prev {
  left: -56px;
}

.dealer-section-wrapper .slider-nav__btn--next {
  right: -55px;
}



.dealer-section-wrapper .product-card {
  background: var(--white);
  text-align: center;
  padding: 24px 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dealer-section-wrapper .product-card:hover {
  transform: translateY(-2px);
}

.dealer-section-wrapper .product-card__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  height: 200px;
}

.dealer-section-wrapper .product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.dealer-section-wrapper .dealer-tab-products-grid a.btn.btn-secondary-outline {
    width: 100%;
    max-width: 175px;
    font-size: 13px;
    line-height: 1;
    padding: 10px 24px;
}

.dealer-section-wrapper .product-card:hover .product-card__image img {
  transform: scale(1.03);
}

.dealer-section-wrapper .product-card__title {
  font-family: var(--fontHead);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tribalBlack);
  margin-bottom: 15px;
  text-align: center;
}

.dealer-section-wrapper .product-card__btn {
  display: inline-block;
  padding: 12px 48px;
  border: 1px solid #737373;
  font-family: var(--fontHead);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tribalBlack);
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dealer-section-wrapper .product-card__btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--tribalBlack);
}


.dealer-section-wrapper .dealer-tab-progress-wrapper {
  margin-top: 60px;
  position: relative;
  height: 2px;
  background: #dbdbdb;
  width: 100%;
}

.dealer-section-wrapper .dealer-tab-progress-fill {
  position: absolute;
  top: -1px;
  left: 0;
  height: 4px;
  background: var(--yellow);
  width: 0%;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}



.dealer-section-wrapper .browse-all {
  text-align: center;
  padding: var(--sp80) 0 0;
}

.dealer-section-wrapper .browse-all__label {
  font-family: var(--fontHead);
  font-size: var(--f14);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--darkGray);
  margin-bottom: 12px;
}

.dealer-section-wrapper .browse-all__heading {
  font-family: var(--fontHead);
  font-size: var(--h2);
  font-weight: 700;
  color: var(--tribalBlack);
  margin-bottom: 28px;
  line-height: 1.2;
}

.dealer-section-wrapper .browse-all__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--tribalBlack);
  color: var(--white);
  font-family: var(--fontHead);
  font-size: var(--f14);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dealer-section-wrapper .browse-all__btn:hover {
  background: var(--black);
}


.dealer-section-wrapper .slider-nav__btn--prev svg {
    transform: rotate(180deg) !important;
}
.dealer-section-wrapper .dealer-tab-products-wrapper {
  position: relative;
  background: var(--white);
  padding: 32px 32px 24px;
  border-bottom: 4px solid var(--primary);
}

.dealer-section-wrapper .dealer-tab-products-wrapper:before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 50%;
  height: 4px;
  background: var(--darkGray);


}

.dealer-section-wrapper .dealer-tab-products-wrapper:after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: calc(50% - 20px);
  width: 24px;
  height: 4px;
  background: var(--white);
  clip-path: polygon(17% 0, 42% 0, 27% 100%, 0 100%);
}


.dealer-section-wrapper .dealer-tab-products-grid .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.dealer-section-wrapper .dealer-tab-panel .swiper-button-next,
.dealer-section-wrapper .dealer-tab-panel .swiper-button-prev {
  display: none !important;

}



@media (max-width: 991px) {


  .dealer-section-wrapper .dealer-tab-tabs-wrapper {
    position: relative;
    padding: 0;
  }

  .dealer-section-wrapper .dealer-tab-tabs-wrapper.tabs-overflowing {
    padding: 0;
  }


  .dealer-section-wrapper .tabs-overflowing .tab-arrow { display: flex;  }
  .dealer-section-wrapper .tabs-overflowing .tab-arrow.tab-arrow--prev { transform: rotate(180deg) !important; }


  .dealer-section-wrapper .dealer-tab-tabs {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: none;
    gap: 0;
    scroll-snap-type: x mandatory;
  }

  .dealer-section-wrapper .dealer-tab-tabs::-webkit-scrollbar {
    display: none;
  }

  .dealer-section-wrapper .dealer-tab-tab {

    min-width: 160px;
    padding: 14px 20px;
    flex: 0 0 auto;
    font-size: 13px;
    scroll-snap-align: start;
  }


  .dealer-section-wrapper .dealer-tab-tab:first-child {
    min-width: 170px;
    flex: 0 0 auto;
  }


  .dealer-section-wrapper .dealer-tab-tab:not(:first-child) {
    flex: 0 0 auto;
  }

  .dealer-section-wrapper .dealer-tab-tab .tab-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
  }

  .dealer-section-wrapper .dealer-tab-tab.active {
    background: var(--white);
    color: var(--tribalBlack);
  }



  .dealer-section-wrapper .dealer-tab-products-wrapper {
    position: relative;
    background: var(--white);
    padding: 32px 32px 24px;
    border-bottom: 4px solid var(--primary);
  }

  .dealer-section-wrapper .dealer-tab-products-wrapper:before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 50%;
    height: 4px;
    background: var(--darkGray);


  }

  .dealer-section-wrapper .dealer-tab-products-wrapper:after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: calc(50% - 20px);
    width: 24px;
    height: 4px;
    background: var(--white);
    clip-path: polygon(17% 0, 42% 0, 27% 100%, 0 100%);
  }


  .dealer-section-wrapper .dealer-tab-products-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
  }

  .dealer-section-wrapper .dealer-tab-products-grid::-webkit-scrollbar {
    display: none;
  }

  .dealer-section-wrapper .dealer-tab-products-grid .product-card,
  .dealer-section-wrapper .dealer-tab-products-grid .swiper-slide {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .dealer-section-wrapper .product-card {
    padding: 16px 12px;
  }


  .dealer-section-wrapper .slider-nav,
  .dealer-section-wrapper .slider-nav.is-active {
    display: none !important;
  }

  .dealer-section-wrapper .slider-nav__btn {
    display: none !important;
  }


  .dealer-section-wrapper .browse-all__heading {
    font-size: var(--h3);
  }

  .dealer-section-wrapper .browse-all__btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media(max-width:767px){
  .blog-listing-wrapper{
    width: 100%;
  }
}




@media (max-width: 575px) {

  .dealer-section-wrapper .dealer-tab-tabs-wrapper.tabs-overflowing {
    padding: 0;
  }

  .dealer-section-wrapper .tabs-overflowing .tab-arrow {
    width: 50px;
		height: 50px;
  }

  .dealer-section-wrapper .dealer-tab-tab {

    min-width: 100%;
    flex: 0 0 100%;

    padding: 16px 20px;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    scroll-snap-align: center;
  }


  .dealer-section-wrapper .dealer-tab-tab:first-child {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .dealer-section-wrapper .dealer-tab-tab:not(:first-child) {
    min-width: 100%;
    flex: 0 0 100%;
  }


  .dealer-section-wrapper .dealer-tab-tab .tab-icon {
    height: 32px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
  }

  .dealer-section-wrapper .dealer-tab-tab.active {
    background: var(--white);
  }


  .dealer-section-wrapper .dealer-tab-products-grid .product-card,
  .dealer-section-wrapper .dealer-tab-products-grid .swiper-slide {
    min-width: 100%;
    max-width: 100%;
  }

  .dealer-section-wrapper .dealer-tab-products-grid {
    gap: 12px;
  }

  .dealer-section-wrapper .dealer-tab-products-wrapper {
    padding: 16px 14px 14px;
  }

  .dealer-section-wrapper .product-card__title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .dealer-section-wrapper .product-card__btn {
    padding: 9px 24px;
    font-size: 14px;
  }

    
.dealer-section-wrapper .dealer-tab-products-grid .product-card,
.dealer-section-wrapper .dealer-tab-products-grid .swiper-slide {
    min-width: 72%;
    max-width: 72%;
}



}



/*  */

.grow-with-us .grow-with-us-card {
    border-bottom: 4px solid var(--darkGray);
    position: relative;
}
.grow-with-us .grow-with-us-card:before {    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 90%;
    height: 4px;
    background: var(--white);
    top: auto;}

.grow-with-us .grow-with-us-card:after {
        content: "";
    position: absolute;
    bottom: -4px;
    right: calc(10% - 20px);
    width: 24px;
    height: 4px;
    background: var(--gray);
    clip-path: polygon(17% 0, 42% 0, 27% 100%, 0 100%);}










.services-section .service-card {
    border-bottom: 4px solid var(--darkGray);
    position: relative;
}
.services-section .service-card:before {    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 90%;
    height: 4px;
    background: var(--primary);
    top: auto;}

.services-section .service-card:after {
        content: "";
    position: absolute;
    bottom: -4px;
    right: calc(10% - 20px);
    width: 24px;
    height: 4px;
    background: var(--gray);
    clip-path: polygon(17% 0, 42% 0, 27% 100%, 0 100%);}

.services-section .tilt-single:before{
	width: calc(100% - ((100% - var(--container)) / 2) - 290px) !important;
}

.counter-zig-zag .zigzaqList {
    counter-reset: section;
}

.counter-zig-zag .zigzaqList>.e-con{
 counter-increment: section;
}
.counter-zig-zag .zigzaqList .heading-count h3:before{ content: counter(section, decimal-leading-zero) "."; margin-right:10px; color:var(--primary);font-weight: 500;}





ul.listing-design {
    padding-top: 15px;
}

ul.listing-design li {
    padding-bottom: 5px;
}



.bc-breadcrumb ul.bc-breadcrumb__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    font-family: var(--fontHead);
    font-size: 16px;
}

.bc-breadcrumb ul.bc-breadcrumb__list li.bc-breadcrumb__item, .bc-breadcrumb ul.bc-breadcrumb__list li.bc-breadcrumb__item a {
    color: var(--primary);
}

.bc-breadcrumb ul.bc-breadcrumb__list span.bc-breadcrumb__current {
    border-bottom: 2px solid var(--primary);
    font-weight: 600;
}

.bc-breadcrumb span.bc-breadcrumb__separator {
    font-weight: 500;
}


.prGallerySec .murphy-gallery-main{padding-top: 0;}
.prGallerySec .murphy-gallery-main-img{position: static; height: auto;}




/* Even rows only */
.zig-zag-main-section .zigzaqList > .e-con:nth-child(even) {
    flex-direction: row-reverse;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {

    /* Make rows vertical */
	.zig-zag-main-section .zigzaqList > .e-con, .zig-zag-main-section .zigzaqList > .e-con:nth-child(even) {
    flex-direction: column-reverse;
}

.bc-breadcrumb ul.bc-breadcrumb__list{
  align-items: start;
  flex-wrap: wrap;
}

}




@media (max-width: 767px) {
.zigzaqList.fieldSurvey .coverImg{align-self: flex-start; width: 100%;}

}