/* Slideshow and banner */
.banner-slide-container {
  position: relative;
}

.banner-slide {
  display: none;
}

.banner-image {
  width: 530px;
  height: 80px;
  border-radius: 8px;
}


/* Nagivation button */
.prev-navigation {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 6px;
  margin-top: -18px;
  color: #bbbbbb;
  font-weight: bold;
  font-size: 16px;
  transition: 0.6s ease;
  border-radius: 0 8px 8px 0;
  user-select: none;
}

.next-navigation {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 6px;
  margin-top: -18px;
  color: #bbbbbb;
  font-weight: bold;
  font-size: 16px;
  transition: 0.6s ease;
  border-radius: 8px 0 0 8px;
  user-select: none;
  right: 0;
}

.prev-navigation:hover, .next-navigation:hover {
  background-color: #bbbbbb80;
}

/* Nagivation dot indicators */
.dot-navigation {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot-navigation.active, .dot-navigation:hover {
  background-color: #717171;
}