.st-list-destination.st-sliders{
  .swiper-wrapper{
    .swiper-slide{
      text-align: center;
      .thumbnail{
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 16px;
        position: -webkit-sticky; //safari
        a{
          display: block;
          img{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.2s;
          }
        }
        &:hover{
          a{
            img{
              transform: scale(1.2);
            }
          }
        }
      }
      .title{
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 4px;
        a{
          color: $color-ink-heading;
        }
        &:hover{
          a{
            color: var(--main-color, $color-main);
          }
        }
      }
      .desc{
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        a{
          color: $color-ink-body;
          display: block;
          &:hover{
            color: var(--main-color, $color-main);
          }
        }
      }
    }
  }
  .st-button-prev, .st-button-next{
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid $color-black03;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 9;
    span{
      display: block;
      background: none;
      color: $color-ink-heading;
      width: auto;
      height: auto;
      font-size: 14px;
      position: relative;
    }
  }
  .st-button-next{
    top: 28%;
    right: -19px;
    margin: 0;
    span{
      left: 2px;
    }
  }
  .st-button-prev{
    top: 28%;
    left: -19px;
    margin: 0;
  }
  .swiper-pagination{
    margin-top: 15px;
    position: unset;
    .swiper-pagination-bullet{
      width: 8px;
      height: 8px;
      background: $color-black03;
      border-radius: 50%;
      margin-left: 5px;
      margin-right: 5px;
      border: none;
      &.swiper-pagination-bullet-active{
        width: 10px;
        height: 10px;
        background: var(--main-color, $color-main);
        position: relative;
        top: 1px;
      }
    }
  }
}

@media screen and(max-width: 767px){
  .st-list-destination.st-sliders{
    .st-button-prev{
      left: -9px;
    }
    .st-button-next{
      right: -9px;
    }
  }
}