@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Lemon";
  src: url("font/LEMONMILK-Light.otf") format("opentype");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lemon";
  src: url("font/LEMONMILK-Regular.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lemon";
  src: url("font/LEMONMILK-Medium.otf") format("opentype");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lemon";
  src: url("font/LEMONMILK-Bold.otf") format("opentype");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
body {
  overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
input {
  font-family: "Lemon";
  font-style: normal;
  font-weight: 300;
  color: #000000;
}

p {
  font-size: 1rem;
  line-height: 1.125rem;
  font-weight: 300;
}

h1 {
  font-size: 3.75rem;
  line-height: 5rem;
}

h2 {
  font-size: 3rem;
  line-height: 4rem;
}

h3 {
  font-size: 2.5rem;
  line-height: 3.75rem;
}

.op-75 {
  opacity: 75%;
  color: hsl(0, 0%, 75%);
}

.op-50 {
  opacity: 50%;
  color: hsl(0, 0%, 50%);
}

.white-font {
  color: #ffffff;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.f-lexend {
  font-family: "Lexend Deca";
}

li {
  list-style: none;
}

button {
  padding: 0.75rem 1.5rem;
  border: 1px solid #ffffff;
  background-color: transparent;
}

.black-btn {
  border-color: #000000;
  fill: none;
}

.section-container {
  padding-inline: 7.5rem;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
}

.no-margin {
  margin: 0;
  padding: 0;
}

#section-hero {
  height: 100vh;
  margin-bottom: 5rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#section-hero .section-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-inner {
  display: flex;
  width: 500%;
  height: 100%;
  animation: slide 20s infinite cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}

.carousel-item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
.carousel-item img {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-item::before {
  content: ""; /* Empty content for the pseudo-element */
  position: absolute; /* Position it over the image */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  right: 0; /* Stretch to the right */
  bottom: 0; /* Stretch to the bottom */
  background-color: rgba(0, 0, 0, 0.2); /* Black with 40% opacity */
  z-index: 1; /* Ensure it's above the image */
}

@keyframes slide {
  5%, 21% {
    transform: translateX(0);
  }
  26%, 42% {
    transform: translateX(-20%);
  }
  47%, 63% {
    transform: translateX(-40%);
  }
  68%, 84% {
    transform: translateX(-60%);
  }
  89%, 100% {
    transform: translateX(-80%);
  }
}
header,
nav {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  justify-content: space-between;
  align-items: center;
}

header {
  padding-block: 2rem;
  display: flex;
}
header .icon {
  display: flex;
  justify-content: flex-start;
  flex-basis: 0;
  flex-grow: 1;
  gap: 0.75rem;
}
header .icon p {
  color: white;
  font-size: 0.875rem;
}
header .btn-container {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  justify-content: flex-end;
}
header nav li {
  padding-inline: 1.5rem;
  padding-block: 0.75rem;
}

.nav-active {
  border-bottom: 1px solid white;
}

#icon-big {
  font-size: 3.75rem;
  line-height: 3rem;
}
#icon-big span {
  color: #dd5226;
}

#section-2 {
  padding-block: 10rem;
}
#section-2 .section-container {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
}
#section-2 .section-container .info-container {
  display: flex;
  flex-direction: column;
}
#section-2 .section-container .info-container span {
  width: 80px;
  height: 2px;
  background-color: #dd5226;
}
#section-2 .section-container .info-container h3 {
  margin-bottom: 1rem;
}
#section-2 .section-container .info-container button {
  margin-top: 2.5rem;
  align-self: flex-start;
}
#section-2 .section-container .img-container {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  margin-left: -200px;
}
#section-2 .section-container .img-container .img-wrapper-1 {
  padding-bottom: 15rem;
}
#section-2 .section-container .img-container .img-wrapper-2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#img-2 {
  width: 400px;
}

#section-3 {
  padding-block: 10rem;
  background-color: hsl(0, 0%, 95%);
}

#text-scroll {
  color: rgba(0, 0, 0, 0.08);
  font-size: 4rem;
  line-height: 5rem;
}

#section-4 {
  padding-block: 10rem;
}
#section-4 .section-container {
  display: flex;
  gap: 4rem;
}
#section-4 h2 {
  margin-bottom: 2rem;
}

.learn-more-btn {
  display: flex;
  gap: 0.5rem;
  padding-right: 1.125rem;
}
.learn-more-btn path {
  fill: white;
}

.project-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 25rem;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 2rem;
}
.project-container .project-info {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
.project-container .project-info .v-container {
  transform: rotate(180deg);
}
.project-container .project-info .vertical-text {
  border-left: 1px solid #dd5226;
  color: white;
  writing-mode: vertical-lr;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  margin-bottom: 1.5rem;
}
.project-container .project-info .project-details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.project-container .project-info .project-details .project-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

#project-1 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("./res/project-1.jpg") lightgray 50%/cover no-repeat;
}

#project-2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("./res/project-2.jpg") lightgray 50%/cover no-repeat;
}

#project-3 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("./res/project-3.jpg") lightgray 50%/cover no-repeat;
}

#section-5 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("./res/footer.jpg") lightgray 50%/cover no-repeat;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 15rem;
  width: 600px;
  color: white;
  text-align: center;
}
footer > p {
  margin-bottom: 4rem;
}
footer button {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
footer .input-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer .input-form input {
  color: white;
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: solid 1px white;
  padding-block: 0.75rem;
}
footer .input-form #last-input {
  padding-bottom: 8rem;
}

.hidden-right,
.hidden-down,
.hidden-up,
.hidden-left {
  opacity: 0;
  transition-duration: 500ms;
  transition-timing-function: ease;
  transition-property: opacity, transform;
}

.hidden-fade {
  opacity: 0;
  transition-duration: 1000ms;
  transition-timing-function: ease;
  transition-property: opacity;
}

/* Common transform rules based on direction */
.hidden-right {
  transform: translateX(-30%);
}

.hidden-down {
  transform: translateY(-100%);
}

.hidden-up {
  transform: translateY(100%);
}

.hidden-left {
  transform: translateX(30%);
}

.show {
  opacity: 1;
  transform: translate(0, 0); /* Reset transform for all directions */
}

.big-text {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.9;
}
.big-text p {
  font-size: 4rem;
  line-height: 5rem;
  text-transform: uppercase;
  font-weight: 300;
  text-wrap: nowrap;
}
.big-text p span {
  display: block;
}
.big-text .cut-text-container {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0rem 7rem;
  animation: moveCutClip 4s cubic-bezier(0.85, 0, 0.15, 1) infinite alternate;
}
.big-text .cut-text-container .cut-text {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), url(./res/hero1.jpg) lightgray 50%/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0;
}
.big-text .cut-text-container span {
  color: #000;
  mix-blend-mode: lighten;
  background-color: #fff;
}
.big-text .colored-text {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: moveTopColoredClip 4s cubic-bezier(0.85, 0, 0.15, 1) infinite alternate;
}
.big-text .colored-text.second {
  top: 50%;
  animation: moveBottomColoredClip 4s cubic-bezier(0.85, 0, 0.15, 1) infinite alternate;
}
.big-text cite p {
  font-family: "Lexend Deca";
  font-style: normal;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 200;
  animation: fadeInAuthor 4s cubic-bezier(0.85, 0, 0.15, 1) infinite alternate;
}

@keyframes moveCutClip {
  0%, 25% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
  }
  75%, 100% {
    -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
  }
}
@keyframes moveTopColoredClip {
  0%, 25% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  75%, 100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes moveBottomColoredClip {
  0%, 25% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  75%, 100% {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 200%, 0% 200%);
            clip-path: polygon(0% 100%, 100% 100%, 100% 200%, 0% 200%);
  }
}
@keyframes fadeInAuthor {
  0%, 25% {
    opacity: 0;
  }
  75%, 100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */