@font-face {
  font-family: "Canopee";
  src: url(/assets/Fonts/Canopee/Canopee.otf) format('otf'),
       url(/assets/Fonts/Canopee/Canopee.woff) format('woff');
}

.project-hero {
  position: relative;
  height: 100vh;
}

.project-hero .project-header {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-hero .project-header h1 {
  text-align: center;
  font-size: 9vw;
  text-transform: uppercase;
  line-height: 0.8;
  color: var(--text-color);
  font-weight: 500;
}

.project-hero .project-header h1.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);
}

.project-hero .project-header h1.primary {
  color: var(--project-primary);
  font-size: 3vw;
}

.project-hero .project-header .row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8vw;
  width: 50vw;
}

.project-hero .project-header .row h1.primary {
  display: flex;
  align-items: center;
}

.project-hero .project-header .row .h1-img {
  width: 100px;
  height: 60%;
  margin: -0.5em 1em 0 1em;
  position: relative;
  overflow: hidden;
}

.project-hero .project-header .row .h1-img img {
  width: 100%;
  position: absolute;
  top: 0;

}

.project-hero .project-header .row .hr {
  width: 80px;
  height: 1px;
  background: var(--project-primary);
}

@media (max-width: 900px) {
  .project-hero .project-header h1 {
    font-size: 12vw;
  }

  .project-hero .project-header .row {
    width: 100vw;
    height: 14vw;
  }

  .project-hero .project-header h1.primary {
    font-size: 5vw;
  }
}

.project-hero-scroll {
  position: absolute;
  bottom: 10%;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-hero-scroll .scroll-icon {
  width: 75px;
  height: 75px;
}

/* project hero img */
.project-hero-img {
  width: 90vw;
  height: 60vw;
  margin: 5em auto;
  background: var(--project-primary);
  overflow: hidden;
}

.project-hero-img img {
  width: 100%;
  object-fit: contain;
}

/* project description */
.project-description {
  margin: 10em 0;
  width: 100%;
  display: flex;
}

.project-description .project-desc-col:nth-child(1) {
  flex: 2;
}

.project-description .project-desc-col:nth-child(2) {
  flex: 3;
  margin-top: 10%;
}

@media (max-width: 900px) {
  .project-description {
    flex-direction: column;
    gap: 4em;
  }

  .project-description .project-desc-col:nth-child(1) {
    flex: 1;
  }

  .project-description .project-desc-col:nth-child(2) {
    flex: 1;
  }
}

/* project quote */
.project-quote {
  position: relative;
  width: 100%;
  height: 75vh;
  margin: 5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-quote .quote-icon {
  position: absolute;
  bottom: 5%;
  left: 0%;
  width: 20vw;
  height: 20vw;
}

.project-quote .quote h2 {
  width: 100%;
  line-height: 0.8;
  font-size: 9vw;
  font-family: "Canopee";
  font-weight: 500;
}

@media (max-width: 900px) {
  .project-quote {
    margin: 2em 0;
    height: 60vh;
  }

  .project-quote .quote h2 {
    font-size: 12vw;
  }
}

/* concept */
.concept {
  width: 100%;
  margin: 5em 0;
  display: flex;
}

.concept .concept-header {
  flex: 1;
}

.concept .concept-header .row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 10vw;
}

.concept .concept-header .row h1 {
  display: flex;
  align-items: center;
  font-size: 12vw;
  letter-spacing: -0.02em;
  font-family: "Canopee";
  text-transform: uppercase;
}

.concept .concept-content {
  flex: 1;
}

.concept .concept-header .row .h1-img {
  width: 95px;
  height: 40%;
  margin: -0.5em 1em 0 1em;
  position: relative;
  overflow: hidden;
}

.concept .concept-header .row .h1-img img {
  width: 150%;
  position: absolute;
  top: 0%;
}

.concept .concept-header .row .hr {
  margin: 0 0.025em;
  width: 80px;
  height: 2px;
  background: var(--text-color);
}

.concept .concept-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 6em;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .concept {
    flex-direction: column;
    gap: 10em;
  }

  .concept .concept-header .row {
    justify-content: center;
    align-items: center;
    height: 28vw;
  }

  .concept .concept-header .row h1 {
    font-size: 30vw;
  }
}

/* slider */
.project-slider {
  margin: 10em 0;
  width: 100%;
  height: 40vh;
  /* background: var(--project-primary); */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel {
  width: 100%;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel--wrap {
  white-space: nowrap;
}

.carousel--item {
  display: inline-block;
  width: 30vw;
  padding: 3vw;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel--item figure {
  position: relative;
  z-index: 1;
  display: block;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.carousel--item figure img {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
  transform-origin: center;
}

@media (max-width: 900px) {
  .project-slider {
    margin: 5em 0;
    height: 30vh;
  }
}

/* project showcase */

.project-showcase {
  margin: 10em 0;
  width: 100%;
  height: max-content;
}

.project-showcase .project-showcase-img {
  width: 100%;
  height: max-content;
}

.project-showcase .project-showcase-img img {
  width: 100%;
  object-fit: contain;
}

.doblle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 30px;
}

.doblle img {
  width: 35vw;
}

/* project about */
.project-about {
  margin: 5em 0 0 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 10em;
}

.project-about .project-about-header h2 {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.9;
}

.project-about .project-about-header h2 span {
 
  text-transform: capitalize;
  font-style: italic;
  font-weight: lighter;
  font-size: 5vw;
}

.project-about .project-about-copy p {
  position: relative;
  margin-top: -2em;
}

.project-showcase-2 {
  margin: 5em 0;
}

@media (max-width: 900px) {
  .project-about {
    flex-direction: column;
    align-items: flex-start;
    gap: 5em 0;
  }
}

/* project outro */
.project-outro {
  width: 100%;
  margin: 5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.project-outro h3 {
 
  font-size: 5vw;
  font-style: italic;
}

.project-outro h2 {
  font-family: "Canopee";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 10vw;
}

.project-outro p {
  margin: 2em 0 0 0;
}

.project-outro .project-outro-scroll p {
  text-decoration: underline;
  margin-bottom: 5em;
}

.project-outro .project-outro-scroll h3 span {
  font-family: "Canopee";
}

.project-outro .project-outro-scroll .project-outro-scroll-icon {
  margin: 2em auto 4em auto;
  width: 50px;
  height: 50px;
}

.project-outro .project-outro-img {
  position: relative;
  width: 50px;
  margin: 3em auto;
}

.project-outro .project-outro-img img {
  width: 100%;
}

@media (max-width: 900px) {
  .project-outro h3 {
    font-size: 12vw;
  }

  .project-outro h2 {
    font-size: 18vw;
  }

  .project-outro .project-outro-img {
    width: 10vw;
  }
}

/* copyright */
.copyright {
  text-transform: uppercase;
  font-family: "Acid Grotesk";
  line-height: 1;
  color: var(--text-color);
  margin: 2em 0;
  text-align: center;
  opacity: 0.5;
}

/* project footer */
.project-footer {
  margin-top: 5em;
  width: 100vw;
  padding: 10em 0;
  background: var(--project-footer);
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-footer a {
  text-transform: uppercase;
  font-size: 5vw;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  line-height: 0.8;
  text-align: center;
}

.project-footer span a {
  color: var(--text-color);
}

.project-footer span a:hover {
  color: transparent;
  text-shadow: 1 1 1 rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .project-footer a {
    font-size: 12vw;
  }
}

.quote-icon g,
.quote-icon svg path {
  fill: none !important;
}