:root {
  --blank-value: 80px;
}

.project-detail__content p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

.project-detail__title > a, .project-detail__title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.project-detail__content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #4c4f52;
}

.project-detail {
  padding: 60px 0 150px 0;
}
.project-detail__head {
  display: grid;
  align-items: end;
  grid-template-columns: 44px 1fr 44px;
  grid-template-areas: "prev title next";
}
.project-detail__prev-page {
  grid-area: prev;
  justify-self: end;
}
.project-detail__prev-page--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.project-detail__prev-page--disabled svg path {
  fill: #9e9e9e;
}
.project-detail__title {
  grid-area: title;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.project-detail__title > h1 {
  color: #4c4f52;
}
.project-detail__title > a {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 100%;
  color: #a5a7a8;
  text-decoration: none;
}
.project-detail__next-page {
  grid-area: next;
  justify-self: start;
}
.project-detail__next-page > svg {
  transform: rotate(-360deg);
}
.project-detail__next-page--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.project-detail__next-page--disabled svg path {
  fill: #9e9e9e;
}
.project-detail__slider {
  position: relative;
  display: flex;
  align-items: center;
  height: 600px;
  margin-top: 39px;
  overflow: hidden;
  border-radius: 30px;
}
.project-detail .swiper-wrapper {
  height: 100%;
}
.project-detail .swiper-slide {
  height: 100%;
  overflow: hidden;
}
.project-detail .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-detail .swiper-button-prev,
.project-detail .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  border: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}
.project-detail .swiper-button-prev {
  left: 15px;
}
.project-detail .swiper-button-next {
  right: 15px;
}
.project-detail .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.project-detail .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.project-detail .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}
.project-detail__content {
  max-width: 776px;
  margin: 80px auto 0 auto;
}
.project-detail__content p {
  text-align: left;
  font-weight: 200;
  color: #4c4f52;
}

.is-desktop {
  display: flex !important;
}

.is-mobile {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  :root {
    --blank-value: 50px;
  }
}

@media only screen and (max-width: 639px) {
  .project-detail .container-xxl {
    padding-inline: 0 !important;
  }
  .project-detail .swiper-slide img {
    border-radius: 0;
  }
  .is-desktop {
    display: none !important;
  }
  .is-mobile {
    display: flex !important;
    transform: none !important;
  }
}

@media only screen and (max-width: 559px) {
  .project-detail {
    padding: 76px 0 120px 0;
  }
  .project-detail__head {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: "title title" "prev  next";
    justify-content: center;
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 17px;
    padding-inline: 1rem;
  }
  .project-detail__title > a {
    color: #4c4f52;
  }
  .project-detail__slider {
    margin-top: 35px;
    height: 560px;
    border-radius: 0;
  }
  .project-detail__content {
    margin: 35px 0 0 0;
    padding-inline: 1rem;
  }
  .project-detail__content p {
    font-size: 1rem;
    line-height: 1.75rem;
  }
}