.portfolio_slider_our_works {
  position: relative;

  .header {
    margin-bottom: 24px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 9999;
    @media screen and (width <= 720px) {
      width: 100%;
    }

    .title {
      font-size: var(--font-size56);
      font-weight: 400;
      line-height: var(--ln56);
      letter-spacing: var(--lp03);
      display:flex;
      align-items:center;
      gap:10px;
      &:after{
        content:url("data:image/svg+xml,%3Csvg width='46' height='46' viewBox='0 0 46 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.25 34.5L27.3947 24.3553C28.0336 23.7164 28.353 23.397 28.353 23C28.353 22.603 28.0336 22.2836 27.3947 21.6447L17.25 11.5' stroke='black' stroke-width='2.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        width: 44px;
        height: 46px;
      }
      @media screen and (width <= 720px) {
        width:100%;
        justify-content:space-between;
      }
    }

    .portfolio_link {
      font-size: var(--font-size16);
      font-weight: 400;
      line-height: var(--ln20);
      color: var(--black);
      display: flex;
      gap: 10px;
      align-items: flex-end;

      &:after {
        content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 7.00006L6 18.0001' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M11 5.99994L17 5.99994C17.4714 5.99994 17.7071 5.99994 17.8536 6.14639C18 6.29283 18 6.52853 18 6.99994V12.9999' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        width: 24px;
        height: 24px;
      }
    }
  }

  .portfolio_slider {
    margin-bottom: 32px;
    .items {
      .item {
        .item__content {
          .img {
            width: 100%;
            max-width: 400px;
            height: 450px;
            object-fit: cover;
            border-radius: var(--radius24);
          }
          .title {
            font-size: var(--font-size22);
            font-weight: 400;
            line-height: var(--ln27);
            letter-spacing: var(--lp03);
            margin: 21px 0 14px 0;
            text-wrap-mode: wrap;
          }
        }
      }
    }
  }
}

.glide__arrows.tabs__arrows {
  @media screen and (max-width: 768px) {
    display: none;
  }

  button.glide__arrow.glide__arrow--right,
  button.glide__arrow.glide__arrow--left {
    right: -7rem;
    background: none;
    border: none;
    box-shadow: none;
    @media (width <= 1490px) {
      right: 0;
    }

    &:before {
      content: url("data:image/svg+xml,%3Csvg width='110' height='114' viewBox='0 0 110 114' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_4439_2713)'%3E%3Cpath d='M30 55C30 40.0883 42.0883 28 57 28C71.9117 28 84 40.0883 84 55C84 69.9117 71.9117 82 57 82C42.0883 82 30 69.9117 30 55Z' fill='white' shape-rendering='crispEdges'/%3E%3Cpath d='M54 61L59.2929 55.7071C59.6262 55.3738 59.7929 55.2071 59.7929 55C59.7929 54.7929 59.6262 54.6262 59.2929 54.2929L54 49' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_4439_2713' x='0' y='0' width='114' height='114' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='2'/%3E%3CfeGaussianBlur stdDeviation='15'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_4439_2713'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_4439_2713' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
      width: 110px;
      height: 114px;
      display: block;
    }
  }

  button.glide__arrow.glide__arrow--left {
    left: -7rem;
    @media (width <= 1490px) {
      left: 0;
    }

    &:before {
      transform: rotate(180deg);
    }
  }
}
.glide__bullets.mobile {
  display: none;
  bottom: -15px;
  width: 100%;
  text-align: center;
  .glide__bullet {
    background-color: #D9D9D9;
  }
  .glide__bullet--active {
    border: none;
    background-color: #7E3B42;
  }
  @media screen and (width <= 680px) {
    display: block;
  }
}