/* html,
body {
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;

  background: -webkit-gradient(
    radial,
    center center,
    0px,
    center center,
    100%,
    color-stop(0%, #333),
    color-stop(100%, black)
  );
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    #333 0%,
    black 100%
  );

  height: 100%;
  width: 100%;

  text-align: center;

  font-family: sans-serif;
} */

.slider {
  width: 90%;
  height: 80%;
  position: relative;
  margin-bottom: 0px;
  margin-left: 6%;

  /* overflow: hidden; */
}

.slider img {
  /* width: 100%; */
  object-fit: contain;
  height: 400px;
  position: absolute;
  top: -10;
  left: 0;
  border-radius: 10px;
  /* align-self: center; */
}

.slider img:first-child {
  z-index: 1;
}

.slider img:nth-child(2) {
  z-index: 0;
}
.navigation-button {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

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

@media only screen and (max-width: 600px) {
  .slider {
    margin-top: 10%;
  }
}
@media only screen and (max-width: 800px) {
  .slider {
    margin-top: 10%;
  }
}
