.project-list {
  overflow: hidden;
  padding-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .project-list {
    padding-bottom: 90px;
  }
}
.project-list__subheading {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.75px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
.project-list__heading {
  font-size: 25px;
  line-height: 33px;
  margin-bottom: 23px;
  color: #000;
}
@media screen and (min-width: 992px) {
  .project-list__heading {
    font-size: 50px;
    line-height: 60px;
  }
}
.project-list__items {
  display: flex;
  gap: 0;
}
@media (min-width: 991px) {
  .project-list__items {
    display: grid;
    grid-template-columns: repeat(var(--project-list-columns, 3), 1fr);
    grid-auto-flow: row;
    gap: 30px;
  }
}
.project-list__item {
  text-align: left;
  background-color: #c7017f;
  color: #fff;
  padding: 25px 24px;
  border-radius: 15px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
.project-list__item--pink {
  background-color: #c7017f;
}
.project-list__item--green {
  background-color: #038188;
}
.project-list .category-block--pink {
  background-color: #f4cce5;
  color: #000;
}
.project-list .category-block--green {
  background-color: #cce6e7;
  color: #000;
}
.project-list__item-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.75px;
  line-height: 18px;
  padding-bottom: 21px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  padding-left: 7px;
}
.project-list__item-name {
  padding-left: 1px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 5px;
}
.project-list__item-description {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .project-list__item-description {
    margin-bottom: 60px;
  }
}
.project-list__item-arrow {
  width: 30px;
  height: 16px;
  margin-top: auto;
}
@media screen and (min-width: 992px) {
  .project-list__item-arrow {
    width: 21px;
    height: 26px;
  }
}
.project-list__item-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.project-list__slider {
  position: relative;
  overflow: visible;
  width: 100%;
  min-width: 0;
}
.project-list__arrows {
  display: none;
  gap: 30px;
  justify-content: center;
  margin-top: 18px;
}
@media (max-width: 991px) {
  .project-list__arrows {
    display: flex;
  }
}
.project-list__arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.project-list__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.project-list__arrow svg {
  width: 30px;
  height: 30px;
}
.project-list__arrow--next svg {
  transform: rotate(180deg);
}
.project-list__pbar-wrapper {
  margin-top: 35px;
  display: none;
  width: 100%;
  max-width: 100%;
  height: 3px;
  background-color: #ccc;
  position: relative;
}
@media (max-width: 991px) {
  .project-list__pbar-wrapper {
    display: flex;
    align-items: stretch;
  }
}
.project-list__pbar {
  display: flex;
  position: absolute;
  top: 0;
  transform: translateX(0%);
  width: 0;
  height: 3px;
  background-color: var(--primary-1, #c7017f);
  transition: 300ms transform ease-in-out, 300ms width ease-in-out;
}
.project-list .btn {
  margin-top: 22px;
}
@media screen and (min-width: 992px) {
  .project-list .btn {
    margin-top: 50px;
  }
}
