.slide-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    background-color: white;
    border: 1px solid #AEAEAE;
    right: calc(50% - 22px);
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s all;
    top: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide-arrow:hover {
    background-color: #173DAA;
  }

  .slide-arrow:hover svg {
    fill: white;
  }
  
  .slide-arrow svg {
    height: 16px;
    width: 8px;
    fill: #AEAEAE;
  }
  
  .slide-arrow-next {
    right: 0;
  }
  
  .slide-arrow-prev {
    left: 0;
  }

  .slick-dots {
      position: absolute;
      bottom: -10px;
      display: block;
      width: 100%;
      padding: 0;
      margin: 0;
      list-style: none;
      text-align: center;
  }

  .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 5px;
      padding: 0;
      cursor: pointer;
  }

  .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
      outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
      opacity: 1;
  }

  .slick-dots li button:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #173DAA;
      content: '';
      text-align: center;
      opacity: .25;
      color: black;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
      opacity: 1;
      color: black;
  }