.fidelpump-products-section {
    padding: 75px 0;
    background-color: #f9f9f9; /* Light background for the section */
    text-align: start;
}

.fidelpump-products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fidelpump-products-section h2 {
    /* font-size: 2em; */
    color: #333;
    margin-bottom: 50px;
    position: relative; /* For the green underline effect */
    display: inline-block; /* To make the underline only span the text */
}

.fidelpump-products-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px; /* Adjust as needed */
    width: 70%; /* Adjust to cover part of the text like in the image */
    height: 5px;
    background-color: #7ED321; /* Green color from the image */
    border-radius: 5px; /* Slightly rounded corners */
}

.fidelpump-products-section .product-categories {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: center; /* Centers the items horizontally */
    gap: 30px; /* Space between the category items */
}

.fidelpump-products-section .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px; /* Adjust as needed to control item width */
}

.fidelpump-products-section .category-item img {
    width: auto; /* Adjust icon size */
    height: 150px; /* Adjust icon size */
    margin-bottom: 0px;
    /* You might want to add a filter or color overlay if your icons are not already green */
    /* filter: grayscale(100%) brightness(50%) sepia(100%) hue-rotate(90deg) saturate(500%); */
}

.fidelpump-products-section .category-item p {
    font-size: 1em;
    color: #555;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fidelpump-products-section .product-categories {
        gap: 20px;
    }

    .fidelpump-products-section .category-item {
        width: 100px;
    }

    .fidelpump-products-section .category-item img {
        width: 60px;
        height: 60px;
    }

    .fidelpump-products-section h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .fidelpump-products-section .category-item {
        width: 80px;
    }

    .fidelpump-products-section .category-item img {
        width: 50px;
        height: 50px;
    }

    .fidelpump-products-section h2 {
        font-size: 1.5em;
    }
}


.backtotop-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: var(--rs-theme-orange);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}


.backtotop-wrap:hover {
  background: #ea3e00;
}
.backtotop-wrap.has-theme-green {
  background: #507a7c;
}
.backtotop-wrap.has-theme-yellow {
  background: var(--rs-theme-yellow);
}
.backtotop-wrap.has-theme-yellow::after {
  color: var(--rs-black);
}
.backtotop-wrap.has-theme-deep-blue {
  background: var(--rs-theme-deep-blue);
}
.backtotop-wrap.has-theme-deep-blue::after {
  color: var(--rs-white);
}
.backtotop-wrap.has-theme-blue {
  background: var(--rs-theme-blue);
}
.backtotop-wrap.has-theme-blue::after {
  color: var(--rs-white);
}
.backtotop-wrap.has-theme-light-blue {
  background: var(--rs-theme-light-blue);
}
.backtotop-wrap.has-theme-light-blue::after {
  color: var(--rs-white);
}
.backtotop-wrap.has-theme-red {
  background: var(--rs-theme-red);
}
.backtotop-wrap.has-theme-red::after {
  color: var(--rs-white);
}
.backtotop-wrap.has-theme-red:hover {
  background: var(--rs-black);
}
@media only screen and (max-width: 575px) {
  .backtotop-wrap {
    bottom: 20px;
    inset-inline-end: 20px;
  }
}