* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

.container {
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.container img {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.5s;
}

.container i {
  position: absolute;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: white;
  font-size: 35px;
  z-index: 101;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.container .bx-arrow-left {
  left: 5%;
}

.container .bx-arrow-right {
  right: 5%;
}

.show {
  opacity: 1 !important;
}
