.slider {
    width: 100%;
    height: 510px;
    position: relative;
  }

  .slider img {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out; 
  }

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

  .slider img:nth-child(2) {
    z-index: 10;
  }

  .navigation-button {
    display:block;
    text-align: center;
    position: relative;
    border:0px solid green;
    z-index: 12;
    top:480px;
    left:0;

  }

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

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