.containerSlider {
  position: relative;
  width: 100%;
  max-width: 1280px;
  top: -4rem;
  margin: auto;
}

.slide {
  border: none;
  opacity: 0;
  position: absolute;
  /*top: 0;*/
  /*left: 0;*/
  -webkit-transition: opacity 2s linear;
  -moz-transition: opacity 2s linear;
  -o-transition: opacity 2s linear;
  transition: opacity 2s linear;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.showMe {
  opacity: 1;
}

.containerSlider .arrowRight {
  z-index: 99;
  position: absolute;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  width: 2rem;
  top: 10rem;
  right: 2rem;
}

.containerSlider .arrowLeft {
  z-index: 100;
  position: absolute;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  width: 2rem;
  top: 10rem;
  left: 2rem;
}

.containerSlider .arrowRight:hover {
  transition: opacity .5s;
  opacity: 1.0;
}

.containerSlider .arrowLeft:hover {
  transition: opacity .5s;
  opacity: 1.0;
}

