* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}
:root {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  font-family: Inter, sans-serif;
}
li:hover {
  animation: hoverAnimation 300ms ease-out forwards;
}
h1 {
  font-family: Humane;
  text-transform: uppercase;
  font-size: 10rem;
  color: #da2525;
}
button {
  padding: 20px 50px;
  font-size: 20px;
  border: none;
  border: 0.5px solid gray;
  cursor: pointer;
  transition: 300ms ease-out;
}
button:hover {
  background-color: #da2525;
}
.container {
  display: flex;
  height: 100vh;
}
.inner-container {
  width: fit-content;
  /* margin: 0 auto;
    padding-inline: 20px; */
  display: flex;
  position: absolute;
  gap: 6rem;
  inset: 0;
}
.switch-cat {
  right: 0;
  margin: 50px;
  position: fixed;
  z-index: 999;
  background: #000;
  color: #fff;
  font-family: Inter;
  font-size: 1.25rem;
  padding: 5px 26px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 30px;
}
.tit {
  /* width: fit-content; */
  text-align: center;
  height: fit-content;
  /* position: absolute; */
  padding: 10px;
  font-size: 4rem;
  color: white;
  background: #161515;
}
.sidebar {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  width: 2rem;
  /* justify-content: space-between; */
  gap: 5rem;
  align-items: flex-start;
  background: #0f0e0e;
  padding: 0.5rem;
  transition: 300ms ease-out;
}
.sidebar > img {
  width: 3rem;
  padding: 10px;
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sidebar:hover {
  /* max-width: 100%; */
  flex: 2;
}
.sidebar:hover .list {
  visibility: visible;
}
.lists {
  visibility: hidden;
  /* position: absolute; */
  display: flex;
  height: 100%;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 150px;
  align-items: flex-start;
  transition: 200ms ease-out;
  padding: 20px;
}
.lists > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  gap: 1.25rem;
}
ul li {
  color: #fff;
  font-family: Inter;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.page-display {
  overflow-x: hidden;
  position: relative;
  flex: 15;
  height: 100%;
}

.proj {
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
  gap: 80px;
  padding: 20px 80px;
  align-items: center;
  background: #363535;
}
.proj > a > h3 {
  font-size: 2rem;
  font-family: Montserrat;
}
.proj > a {
  align-self: center;
  width: 100%;
  color: white;
  padding: 20px;
}
.proj > a > img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 2/1;
}
.inspo-disp {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  align-items: center;
  background: #161515;
}
.inspo-disp > iframe {
  width: 100%;
  aspect-ratio: 2/1;
}
.page-display > img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 800px;
  z-index: -1;
}
.abt {
  justify-content: center !important;
}
.front-end {
  width: 90vw;
  height: 100%;
}
.designer {
  width: 100vw;
  height: 100%;
}
.front-end,
.designer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.75rem;
  padding: 100px;
}
.front-end > p,
.designer > p {
  max-width: 50%;
}
.outer-archieve {
  width: 100%;
  overflow: hidden;
}
.archieves {
  display: flex;
  gap: 10px;
  animation: sliding 10s linear infinite;
}
.archieves > img {
  max-width: 250px;
  object-fit: contain;
  aspect-ratio: 1;
  padding: 10px;
  /* background: #000; */
}

.animate-page {
  animation: pageAnimate 500ms linear forwards;
  /* animation-direction: reverse; */
}
.reverse-animate-page {
  animation: revPageAnimate 500ms ease-out forwards;
  /* animation-direction: reverse; */
}

@keyframes hoverAnimation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes sliding {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes pageAnimate {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes revPageAnimate {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
