* {
    margin:0;
    padding:0;
  }
  a{
    text-decoration: none;
  }
  .container {
    position: relative;
    width: 566px;
    height: 376px;
    /* box-shadow: 0 0 5px green; */
    overflow: hidden;
    margin-right: 30px;
  }
  .container .wrap {
    position: absolute;
    width: 4200px;
    height: 400px;
    z-index: 1;
  }
  .container .wrap img {
    float: left;
    width: 600px;
    height: 400px;
  }
  .container .buttons {
    position: absolute;
    right: 50%;
    bottom:40px;
    width: 150px;
    height: 10px;
    z-index: 2;
  }
  .container .buttons span {
    margin-left: 5px;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    color:white;
    cursor: pointer;
  }
  .container .buttons span.on{
    background-color: gray;
  }
  .container .arrow {
    position: absolute;
    top: 35%;
    color: green;
    padding:0px 14px;
    border-radius: 50%;
    font-size: 50px;
    z-index: 2;
    display: none;
  }
  .container .arrow_left {
    left: 10px;
  }
  .container .arrow_right {
    right: 10px;
  }
  .container:hover .arrow {
    display: block;
  }
  .container .arrow:hover {
    background-color: rgba(0,0,0,0.2);
  }