.sliderContainer {
  width: 100%;
  overflow: hidden;
  margin: 0 0 10px;
  display: block;
  position: relative;
  float: left;
  margin-top: 4rem;
}

.titleAndArrows {
  width: 92%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  margin-bottom: 1.5rem;
}

.sliderTitleContainer {
  font-size: 20px;
  position: relative;
  padding-top: 0px;
  width: fit-content;
  padding-bottom: 0;
  text-align: left;
  color: var(--third);
}

.arrows {
  height: 100%;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.viewAllGo.lineEffectCenter::before {

  background: black;

  bottom: 0p;
}

a.viewAllGo {
  display: block;
  margin: 30px auto 10px;
  width: fit-content;
  font-size: 13px;
  position: relative;
  color: var(--fifth);
}

.sliderGroupContainer {
  width: 94%;
  margin: 0 auto;
  position: relative
}

.sliderGroupSliderContainer {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto
}

.productSlide.slick-slide {
  margin: 0 15px
}

.productSlide .productViewContainer {
  width: 100%
}

.sliderRightArrow:hover,
.sliderLeftArrow:hover {
  opacity: .8
}

.sliderLeftArrow {
  /* position: absolute; */
  /* left: -30px; */
  /* top: calc(50% - 68px); */
  z-index: 1;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  height: 19px;
  width: 19px;
  object-fit: contain;
  padding: 10px 0 11px;
}

.sliderLeftArrow:not(.slick-disabled):hover,
.sliderRightArrow:not(.slick-disabled):hover {
  opacity: 0.8 !important
}

.sliderRightArrow {
  /* position: absolute; */
  /* right: -30px; */
  /* top: calc(50% - 68px); */
  /* z-index: 1; */
  width: 19px;
  object-fit: contain;
  height: 19px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  padding: 10px 0px;
}

@media screen and (max-width: 1100px) {
  .sliderGroupContainer {
    width: 100%;
  }

  .titleAndArrows {
    margin-bottom: 0;
  }

  a.viewAllGo {
    margin: 20px auto 10px;
    color: var(--third);
    font-weight: 400;
    text-decoration: underline;
  }

  .sliderGroupSliderContainer {
    width: 100%
  }

  .productSlide .productViewContainer {
    width: 100%;
    margin: 0;
    height: auto
  }

  .sliderContainer {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin-top: 3rem;
  }

  .sliderRightArrow {
    top: 39%;
    display: none;
    height: 18px;
    right: 30px;
    z-index: 1;
    background-size: contain
  }

  .sliderLeftArrow {
    top: 39%;
    left: 30px;
    height: 18px;
    display: none;
    z-index: 1;
    background-size: contain
  }

  .sliderTitleContainer {
    font-size: 20px;
    width: 100%;
    padding-top: 4%;
    text-align: center;
    margin-bottom: 30px;
  }

  .sliderContainer .productViewBottom {
    height: auto
  }

  .productSlide.slick-slide {
    margin: 0 9px;
  }
}