#basic-slider {
  width: 100%;
  height: 400px;
  margin: auto;
  position: relative;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 15px;
}

#basic-slider .bs-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#basic-slider .bs-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

#basic-slider .bs-slide:first-child {
  display: block;
}

#basic-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#basic-slider .bs-arrows a {
  position: absolute;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  top: 43%;
  left: 15px;
  font-weight: 400;
  line-height: 30px;
  font-size: 36px;
  background: #000000;
  padding: 10px;
  text-align: center;
  width: 30px;
}

#basic-slider .bs-arrows a:hover {
  color: #fff;
}

#basic-slider .bs-arrows a.bs-next {
  left: initial;
  right: 15px;
}
