.headerslider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
    min-height: 300px;
    font-size: 2.5em;
    height: 30vw;
    color: #fff;
  }
  
  .headerslider *::selection { 
    background: transparent; 
  }
  
  .headerslider .slide {
    width: 100%;
    height: 100%;
    display: none;
    background-position: center;
    background-size: cover;
    text-align: center;
    animation-name: fade;
    animation-duration: 2s;
    justify-content: center;
    align-items: center;
  }
  
  .headerslider .slide:nth-child(1) {
    display: block;
  }
  
  .headerslider .prev {
    position:absolute;
    padding: 20px;
    cursor: pointer;
    top:50%;
    left:0%;
    transform:translate(0%,-50%);
  }
  
  .headerslider .next {
      position:absolute;
      padding: 20px;
      cursor: pointer;
      top:50%;
      right:0%;
      transform:translate(0%,-50%);
  }
  
  .dots {
    text-align: center;
    position: absolute;
    bottom: 0;
  }
  
  .dots .dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .dots .active, .dots .dot:hover {
    background-color: #fff;
  }
  
  /* Fading animation */
  .dots .fade {
    animation-name: fade;
    animation-duration: 1s;
  }
  
  @keyframes fade {
    from {opacity: 0}
    to {opacity: 1}
  }


