
.btn {
    display: inline-block;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: transparent; 
    border: 1px solid #e1e1e1;
    font-family: YEKANBAKH;
    letter-spacing: 0.4em;
    text-align: center;
    text-indent: 2px;
    text-transform: uppercase;
    transition: color 0.1s linear 0.05s;
  
    &::before {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #e1e1e1;
      z-index: 1;
      opacity: 0;
      transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
    }
  
    &::after {
      transition:border 0.1s linear 0.05s;
    }
  
    .btn-inner {
      position: relative;
      z-index: 2;
    }
  
    &:hover {
      color: #373737;
      transition: color 0.1s linear 0s;
  
      &::before {
        top: 0;
        height: 100%;
        opacity: 1;
        transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
      }
  
      &::after {
        border-color: #373737;
        transition:border 0.1s linear 0s;
      }
    }
  }
  
  .slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .slide.is-active {
    display: block;
  }
  
  .slide.is-loaded {
    opacity: 1;
  }
  
  .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .caption {
    text-align: center;
    color: #fff;
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }
  
  .title {
    font: 300 50px/1.2 "Oswald", sans-serif;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  
  .text {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  .btn {
    margin: 15px auto 0;
    border-color: #fff;
    display: inline-block;
  
    &::before {
      background:#fff
    }
  }
  
  .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;
  
    &::before { 
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
    }
  }
  
  .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  
  .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
  }
  
  .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
  }
  
  .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
  }
  
  .item:hover::before,
  .item.is-active::before {
    background-color: #fff;
  }
  
  .arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 20px;
  }
  
  .prev {
    left: 30px;
  }
  
  .next {
    right: 30px;
  }
  
  .svg {
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: transform 0.2s ease;
  }
  
  .prev:hover .svg {
    transform: translateX(-10px);
  }
  
  .next:hover .svg {
    transform: translateX(10px);
  }