.projects--slider{
  padding: 120px 0 0;
  background: #FDFDFD;
  overflow: hidden;
}

.projects__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.projects__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.projects__nav{
  display:flex;
  gap: 12px;
}

.projects__nav-btn{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 46px;
  height: 46px;
  line-height: 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.projects__nav-ico{
  width: 46px;
  height: 46px;
  display:block;
  opacity: .95;
}

.projects__nav-ico--left{
  transform: rotate(180deg);
  opacity: .55;
}

.projects__nav-btn:hover .projects__nav-ico{
  opacity: 1;
}

.projects__nav-btn.is-disabled{
  cursor: default;
  opacity: .35;
}

.projects__right{
  margin-top: 60px;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  overflow: hidden;
}

.projects-track{
  display:flex;
  gap: 15px;
  transform: translate3d(0,0,0);
  transition: transform .35s ease;
  will-change: transform;
}

.proj-card{
  width: 430px;
  height: 391px;
  flex: 0 0 430px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  background: #d9d9d9;
}

.proj-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform .6s ease;
  will-change: transform;
}

.proj-card:hover::before{
  transform: scale(1.3);
}

.proj-card__inner{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: flex-end;
}

.proj-card__meta{
  display:flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.proj-pill{
  background: #FDFDFD40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff;
  white-space: nowrap;
}

.projects__bottom{
  margin-top: 20px;
  display:flex;
  justify-content: flex-end;
}

.projects__all{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #000000;
  text-decoration: underline;
}

@media (max-width: 980px){
  .projects--slider{
    padding-top: 80px;
  }

  .projects__title{
    font-size: 44px;
  }

  .projects__right{
    margin-top: 30px;
    margin-right: 0;
    padding-right: 0;
  }

  .projects__bottom{
    justify-content: flex-start;
  }
}

@media (max-width: 767px){
  .projects--slider{
    padding-top: 0px;
  }

  .projects__title{
    font-size: 32px;
  }

  .projects__right{
    margin-top: 30px;
    margin-right: 0;
    padding-right: 0;
  }

  .proj-card{
    width: 100%;
    max-width: none;
    height: 320px;
    flex: 0 0 100%;
  }

  .proj-card:hover::before{
    transform: scale(1);
  }

  .proj-pill{
    font-size: 16px;
    padding: 10px 16px;
  }

  .projects__bottom{
    justify-content: flex-start;
  }

  .projects__all{
    font-size: 18px;
  }
}