* {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

.nav .open > a:focus {
  background-color: #848484;
  border-color: #ffffff;
}

@media screen and (min-width: 527px) {
  #page_heading {
    font-size: 30px;
  }
}

@media screen and (max-width: 526px) {
  #page_heading {
    font-size: 19px;
  }
}

.imgFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
}
.imgFlex img {
  width: 270px;
}

@media screen and (max-width: 500px) {
  .imgFlex {
    padding: 20px;
    margin: 20px 0;
  }
  .imgFlex img {
    width: 100%;
  }
}

/************* Clients ***************/
.products {
  padding: 1.4rem 10%;
  position: relative;
}

.productLists {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 40px;
  /* padding-bottom: 20px; */
}

.productLists .productList {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: #fff;
}

.productLists .productList:hover {
  transform: translateY(-10px);
  transition: ease 0.8s;
}

.productLists .productList .productImg {
  height: 200px;
}

.productPrev {
  left: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #525252;
  background-color: #ebebeb;
  font-size: 2.5rem;
  transition: 0.6s ease;
  border-radius: 50%;
  padding: 10px 14px;
  user-select: none;
  z-index: 1;
}

.productNext {
  right: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #525252;
  background-color: #ebebeb;
  font-size: 2.5rem;
  transition: 0.6s ease;
  border-radius: 50%;
  padding: 10px 14px;
  user-select: none;
  z-index: 1;
}

.productPrev:hover,
.productNext:hover {
  color: #fff;
  background-color: #525252;
}

/************** Responsiveness **************/
@media (max-width: 992px) {
  .products {
    padding: 1.4rem 5%;
  }

  .productPrev {
    left: 10px;
    font-size: 2rem;
    border-radius: 50%;
    padding: 10px 15px;
  }

  .productNext {
    right: 10px;
    font-size: 2rem;
    border-radius: 50%;
    padding: 10px 15px;
  }
}
