/***** Slider *****/
.slider-navigation {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  color: #00334e;
  align-items: center;
  justify-content: space-between;
  font-size: 35px;
}
.slider-navigation div {
  position: relative;
  z-index: 10;
  width: 50px;
  text-align: center;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .slider-navigation {
    font-size: 28px;
  }
  .slider-navigation div {
    width: 30px;
    height: 30px;
  }
}
