.products-categories-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;

  position: relative;

  padding-bottom: 50px;

  overflow: hidden;
}

.products-categories-container-left-image, .products-categories-container-right-image {
  position: absolute;
  z-index: 5;
}

.products-categories-container-left-image {
  right: 60vw;
  top: 120px;

  width: 326.53px;
  height: 215px;
}

.products-categories-list-title {
  color: #F49811;
  font-size: 40px;
  width: fit-content;
  /* font-weight: 400; */
  position: relative;
  padding-bottom: 15px;
}

.products-categories-list-title::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(auto + 10px);
  bottom: 0;
  left: 25%;
  right: auto;
  width: 60px;
  height: 3px;
  background-color: #F49811;
}

.products-categories-container-right-image {
  left: 75vw;
  top: 80px;

  width: 237px;
  height: 261px;
}

.products-categories-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 290px);
  justify-content: center;
  gap: 30px;
  padding-left: 20px;
  padding-right: 20px;

  width: 100%;
  max-width: 980px;

  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .products-categories-container {
    row-gap: 60px;
    padding-bottom: 60px;
  }

  .products-categories-container-left-image {
    right: 75vw;
    top: 180px;
  
    width: 471.2px;
    height: 311.4px;
  }
  
  .products-categories-container-right-image {
    left: 80vw;
    top: 120px;
  
    width: 376.19px;
    height: 415px;
  }
}