@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
/* stylelint-disable */
.project {
  margin-top: calc(var(--header-height) * -1);
  padding: calc(14rem + var(--header-height)) 0 0;
  background: linear-gradient(180deg, #34373c 0%, #34373c 44%, #fefefe 0%, #fefefe 100%);
}

.main-project {
  position: relative;
  padding-bottom: 20rem;
}
.main-project > .container {
  position: relative;
  z-index: 1;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8rem;
}
.portfolio-header h2 {
  padding-bottom: 4rem;
  color: #fefefe;
  font-size: 6rem;
}

.location-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background-color: #fefefe;
  padding: 1.2rem 1.6rem 1.2rem 2rem;
}
.location-badge span {
  color: var(--color-text-main);
  font-size: 1.8rem;
  font-weight: 600;
}
.location-badge svg {
  color: var(--color-accent);
}

.gallery {
  background-color: #fefefe;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
.photo-gallery .item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.photo-gallery .item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}
.photo-gallery .item-50 {
  grid-column: span 3;
}
.photo-gallery .item-33 {
  grid-column: span 2;
}

.bg-watermark {
  max-width: 192rem;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-watermark img,
.bg-watermark svg {
  width: 100%;
  display: block;
}
.bg-watermark svg {
  color: #fefefe;
}
@media (min-width: 1024px){
  .portfolio-header {
    gap: 2.4rem;
  }
}
@media (min-width: 1440px){
  .photo-gallery .item:hover a img {
    transform: scale(1.03);
    filter: brightness(0.95);
  }
}
@media (max-width: 1023.98px){
  .project {
    padding: calc(var(--header-height) + 30px) 0 0;
    background: linear-gradient(180deg, #34373c 0%, #34373c 55%, #fefefe 0%, #fefefe 100%);
  }
  .main-project {
    padding-bottom: 8rem;
  }
  .portfolio-header {
    flex-direction: column;
    border-image-source: linear-gradient(to right, #fefefe 0%, rgba(254, 254, 254, 0) 100%);
    margin-bottom: 4rem;
  }
  .portfolio-header h2 {
    font-size: 4.8rem;
  }
  .location-badge {
    margin-bottom: 4rem;
  }
  .photo-gallery {
    gap: 0.8rem;
  }
}
@media (max-width: 766.98px){
  .project {
    background: linear-gradient(180deg, #34373c 0%, #34373c 36%, #fefefe 0%, #fefefe 100%);
  }
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-gallery .item {
    grid-column: span 1;
  }
  .photo-gallery .item:nth-child(3n+1) {
    grid-column: 1/-1;
  }
  .photo-gallery .item-50,
  .photo-gallery .item-33 {
    grid-column: span 1;
  }
}
@media (max-width: 575.98px){
  .project {
    background: linear-gradient(180deg, #34373c 0%, #34373c 50%, #fefefe 0%, #fefefe 100%);
  }
}
/*# sourceMappingURL=single-projects.css.map */