.tabs_our_works {
  .header {
    margin-bottom: 24px;

    .title {
      font-size: var(--font-size56);
      font-weight: 400;
      line-height: var(--ln56);
      letter-spacing: var(--lp03);
    }
  }

  .tabs {

    .tabs-nav {
      margin-bottom: 40px;
      background: var(--grey-FA);
      border-radius: 20px;
      display: flex;
      gap: 12px;
      padding: 0;
      justify-content: space-between;

      .tab {
        font-size: clamp(14px, 3vw, 18px);
        font-weight: 400;
        line-height: 150%;
        color: var(--black);
        outline: 1px solid var(--grey-D4);
        padding: 15.5px 16px;
        border-radius: 20px;
        width: 100%;
        max-width: 230px;
        text-wrap-mode: wrap;
        text-align: center;
        transition: all .3s;
          @media screen and (width <= 780px) {
            max-width: 100%;
            text-wrap-mode: nowrap;
          }

        &:hover {
          background-color: var(--blue-F9);
          color: var(--white);
          border-radius: 20px;
          outline: none;
        }
      }

      .active {
        background-color: var(--blue-F9);
        color: var(--white);
        border-radius: 20px;
        outline: none;
      }
    }
  }

  .items {
    .item {
      .item__content {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 40px;
          @media screen and (width <= 780px) {
            grid-template-columns:1fr;
          }

        .item_content__info {
          .title {
            font-size: clamp(24px, 3vw, 42px);
            letter-spacing: var(--lp03);
            margin-bottom: 12px;
            font-weight: 500;
            line-height: 100%;

          }

          .preview_txt {
            font-size: var(--font-size16);
            font-weight: 400;
            color: var(--grey-73);
            line-height: 150%;
            letter-spacing: 0;
            margin-bottom: 24px;
          }
        }

        .img {
          width: 100%;
          max-width: 600px;
          height: 486px;
          object-fit: cover;
          border-radius: var(--radius32);
        }
      }
    }
  }
}

.tabs-nav {
  justify-content: flex-start;
  scrollbar-width: none;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-scroll-snap-type: mandatory;
  scroll-snap-type: x mandatory;
  flex-flow: nowrap;
  margin: 0;
}

.tabs-nav::-webkit-scrollbar {
  width: 0;
}

.tabs-nav {
  -ms-overflow-style: none;
}

.tabs-nav {
  overflow: -moz-scrollbars-none;
}

.tabs-nav > .our_objects_item {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

@media screen and (min-width: 781px) {
  .tabs_our_works {
    .glide__slides {
      x-width: 100% !important;
    }
  }
}

.glide__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;

  &: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;

  &:before {
    transform: rotate(180deg);
  }
}

.mobile {
  display: none;
  margin-top: 18px;
  @media screen and (max-width: 768px) {
    display: block;
  }
}