.hero {
  height: 100dvh;
  width: 100vw !important ;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.hero-backgrounds-container {
  width: 100vw !important;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  img {
    width: 100% !important;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    scale: 1 !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    -webkit-transition: opacity 0.7s cubic-bezier(0.77, 0, 0.18, 1) !important;
    -o-transition: opacity 0.7s cubic-bezier(0.77, 0, 0.18, 1) !important;
    transition: opacity 0.7s cubic-bezier(0.77, 0, 0.18, 1) !important;
    pointer-events: all;
  }
}
.hero-content {
  position: absolute;
  bottom: 8%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 3;
  width: auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  text-align: center;
  h1 {
    font-size: 64px;
    letter-spacing: calc(-0.06 * 64px);
    line-height: 1;
    -webkit-filter: blur(0.75px);
    filter: blur(0.75px);
  }
  .title-container {
    width: auto;
    display: inline-block;
    position: relative;
  }
  .title-container span {
    position: relative;
  }
  .hero-line {
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    position: absolute;
    width: 80%;
    height: auto;
    margin-top: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    -webkit-filter: blur(0.75px);
    filter: blur(0.75px);
  }
  p {
    font-size: 20px;
    letter-spacing: calc(-0.06 * 20px);
    line-height: 1.2;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  a {
    font-size: 16px;
    letter-spacing: calc(-0.06 * 16px);
    padding: 16px 24px;
    border-radius: 14px;
    background-color: #fff;
    color: black;
    margin-top: -8px;
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
}
.about {
  background-color: #fff;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 180px 0;
  z-index: 20;
}
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
  p {
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
    text-wrap: pretty;
    font-size: 36px;
    letter-spacing: calc(-0.06 * 36px);
    line-height: 1.4;
  }
}
.about-content p .lottie-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 64px;
  width: 0;
  vertical-align: middle;
  background: none;
  border: none;
  padding: 0;
  margin: 0 4px;
  border-radius: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.lottie-container img,
.lottie {
  display: inline-block;
  height: 64px;
  width: 64px;
  margin-top: -10px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.underline-link {
  position: relative;
  text-decoration: none;
  color: black;
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
}
.underline-link::after {
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  pointer-events: none;
}
.projects {
  background-color: #f2f2f2;
  position: relative;
  z-index: 20;
  width: 100vw;
  height: auto;
  overflow: hidden;
  padding: 100px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 180px;
}
.project-container {
  width: 100%;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.project {
  height: auto;
  width: 100%;
}
.project-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-filter: brightness(0.9) blur(0.5px);
  filter: brightness(0.9) blur(0.5px);
}
.comparison {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 5;
  button {
    all: unset;
    font-size: 16px;
    letter-spacing: calc(-0.06 * 16px);
    line-height: 1;
    color: #ffffff80;
    cursor: pointer;
  }
  .inactive:hover {
    color: #fff;
  }
  .active {
    padding: 4px 12px;
    color: #000;
    background-color: #fff;
    border-radius: 12px;
  }
  .active:hover {
    opacity: 0.8;
  }
}
.project-thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  padding: max(12px, 2vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  a {
    width: 100%;
    z-index: 999;
  }
}
.project-thumbnail-border {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  padding: max(0.2vw, 0.5vw);
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(26, 26, 26, 0.1);
  background-blend-mode: plus-lighter;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.project-thumbnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.project-details {
  margin-top: 24px;
  p {
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
    span {
      color: #000;
    }
    color: #707070;
    font-size: 20px;
    letter-spacing: calc(-0.06 * 20px);
  }
}
.project-container-split {
  padding: 0px 40px;
}
.project-container-center {
  padding: 0px 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  .project {
    max-width: 1080px;
  }
}
.project-container-right {
  padding: 0px 120px;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  .project {
    max-width: 820px;
  }
}
.project-container-left {
  padding: 0px 120px;
  .project {
    max-width: 820px;
  }
}
.meet-the-founder {
  position: relative;
  z-index: 20;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 120px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
}
.meet-the-founder-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  p {
    color: var(--gray);
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: calc(-0.06 * 18px);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  h2 {
    text-align: center;
    font-size: 64px;
    line-height: 1;
    letter-spacing: calc(-0.06 * 64px);
    -webkit-filter: blur(0.75px);
    filter: blur(0.75px);
  }
}
.meet-the-founder-hr {
  height: 80px;
  width: 2px;
  background-color: var(--gray);
  border: none;
  opacity: 0.4;
}
.meet-the-founder-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.founder-img {
  width: 440px;
  height: 560px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  -o-object-position: 0% 20%;
  object-position: 0% 20%;
}
.meet-the-founder-content {
  max-width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.meet-the-founder-content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  h3 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: calc(-0.06 * 32px);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
  p {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: calc(-0.06 * 18px);
    color: var(--gray);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
}
.about-the-founder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  p {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: calc(-0.06 * 18px);
    -webkit-filter: blur(0.5px);
    filter: blur(0.5px);
  }
}
.sign {
  width: 100px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .hero-content {
    bottom: 6%;
    gap: 24px;
    h1 {
      font-size: 48px;
      letter-spacing: calc(-0.06 * 48px);
    }
    p {
      font-size: 18px;
      letter-spacing: calc(-0.06 * 18px);
    }
    a {
      font-size: 14px;
      letter-spacing: calc(-0.06 * 14px);
      padding: 14px 20px;
      border-radius: 12px;
    }
  }
  .about {
    padding: 120px 0;
  }
  .about-content {
    max-width: 760px;
    gap: 40px;
    p {
      font-size: 32px;
      letter-spacing: calc(-0.06 * 32px);
      line-height: 1.4;
    }
  }
  .projects {
    padding: 80px 0px;
    gap: 80px;
  }
  .project-thumbnail-border {
    border-radius: 8px;
  }
  .project-details {
    margin-top: 20px;
    p {
      font-size: 18px;
      letter-spacing: calc(-0.06 * 18px);
    }
  }
  .project-container-center {
    .project {
      max-width: 768px;
    }
  }
  .project-container-left,
  .project-container-right {
    padding: 0px 40px;
    .project {
      max-width: 600px;
    }
  }
  .meet-the-founder {
    padding: 80px 0px;
    gap: 48px;
  }
  .meet-the-founder-title {
    gap: 20px;
    h5 {
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: calc(-0.06 * 16px);
    }
    h2 {
      font-size: 48px;
      line-height: 1;
      letter-spacing: calc(-0.06 * 48px);
    }
  }
  .meet-the-founder-container {
    gap: 64px;
  }
  .founder-img {
    width: 400px;
    height: 500px;
  }
  .meet-the-founder-content {
    gap: 24px;
  }
  .meet-the-founder-content-header {
    gap: 10px;
  }
  .about-the-founder {
    gap: 20px;
  }
}
@media (max-width: 1440px) {
  .hero-content h1,
  .hero-content p,
  .hero-content a,
  .hero-line,
  .about-content p,
  .about-content a,
  .project-details p,
  .meet-the-founder-title p,
  .meet-the-founder-title h2,
  .meet-the-founder-content-header h3,
  .meet-the-founder-content-header p,
  .about-the-founder p {
    -webkit-filter: blur(0.2px);
    filter: blur(0.2px);
  }
  .hero-content h1,
  .title-container .hero-line,
  .meet-the-founder-title h2 {
    -webkit-filter: blur(0.4px);
    filter: blur(0.4px);
  }
}
@media (max-width: 1024px) {
  .hero-content {
    width: 100%;
    bottom: 6%;
    gap: 24px;
    h1 {
      font-size: 40px;
      letter-spacing: calc(-0.06 * 40px);
    }
    p {
      font-size: 16px;
      letter-spacing: calc(-0.06 * 16px);
    }
    a {
      font-size: 14px;
      letter-spacing: calc(-0.06 * 14px);
      padding: 14px 20px;
      border-radius: 12px;
    }
  }
  .about {
    padding: 80px;
  }
  .about-content {
    max-width: 100%;
    gap: 40px;
    p {
      font-size: 24px;
      letter-spacing: calc(-0.06 * 24px);
      line-height: 1.4;
    }
  }
  .projects {
    padding: 80px;
    gap: 48px;
  }
  .project-container-split {
    padding: 0px;
  }
  .project-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 64px;
  }
  .project-container-center {
    padding: 0px;
    .project {
      max-width: 100%;
    }
  }
  .project-container-left,
  .project-container-right {
    padding: 0px;
    .project {
      max-width: 100%;
    }
  }
  .meet-the-founder {
    padding: 80px;
    gap: 64px;
  }
  .meet-the-founder-hr {
    display: none;
  }
  .meet-the-founder-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .founder-img {
    width: 100%;
    height: 100%;
  }
  .meet-the-founder-content {
    max-width: 720px;
    width: 100%;
  }
  .about-the-founder {
    p {
      font-size: 20px;
      line-height: 1.2;
      letter-spacing: calc(-0.06 * 20px);
    }
  }
}
@media (max-width: 1024px) {
  .hero-content h1,
  .hero-content p,
  .hero-content a,
  .hero-line,
  .about-content p,
  .about-content a,
  .project-details p,
  .meet-the-founder-title p,
  .meet-the-founder-title h2,
  .meet-the-founder-content-header h3,
  .meet-the-founder-content-header p,
  .about-the-founder p {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  .hero-content h1,
  .title-container .hero-line,
  .meet-the-founder-title h2 {
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@media (max-width: 768px) {
  .about {
    padding: 64px 40px;
  }
  .about-content {
    gap: 32px;
  }
  .projects {
    padding: 64px 40px;
    gap: 40px;
  }
  .project-container {
    gap: 40px;
  }
  .project-thumbnail-border {
    border-radius: 4px;
  }
  .meet-the-founder {
    padding: 64px 40px;
  }
  .meet-the-founder-container {
    gap: 48px;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 40px 24px;
  }
  .about-content {
    gap: 24px;
    p {
      font-size: 20px;
      letter-spacing: calc(-0.06 * 20px);
      line-height: 1.4;
    }
  }
  .projects {
    padding: 40px 24px;
    gap: 32px;
  }
  .project-container {
    gap: 32px;
  }
  .meet-the-founder {
    padding: 40px 24px;
  }
  .meet-the-founder-container {
    gap: 32px;
  }
  .about-the-founder {
    p {
      font-size: 16px;
      letter-spacing: calc(-0.06 * 16px);
    }
  }
}
@media (max-width: 480px) {
  .hero-content {
    bottom: 6%;
    gap: 4.167vw;
    h1 {
      font-size: 8.333vw;
      letter-spacing: calc(-0.06 * 8.333vw);
    }
    p {
      font-size: 3.333vw;
      letter-spacing: calc(-0.06 * 3.333vw);
    }
    a {
      font-size: 3.333vw;
      letter-spacing: calc(-0.06 * 3.333vw);
      padding: 2.917vw 4.167vw;
      border-radius: 2.5vw;
    }
  }
  .about {
    padding: 40px 20px;
  }
  .about-content {
    gap: 20px;
    p {
      font-size: 18px;
      letter-spacing: calc(-0.06 * 18px);
      line-height: 1.4;
    }
  }
  .projects {
    padding: 40px 20px;
    gap: 24px;
  }
  .project-container {
    gap: 24px;
  }
  .project-details p {
    font-size: 3.75vw;
    letter-spacing: calc(-0.06 * 3.75vw);
    line-height: 1.4;
  }
  .footer-cta {
    font-size: 3.333vw;
    letter-spacing: calc(-0.06 * 3.333vw);
    padding: 2.917vw 4.167vw;
    border-radius: 2.5vw;
    margin-top: 12vw;
  }
  .footer-logo {
    font-size: 3.75vw;
    letter-spacing: calc(-0.06 * 3.75vw);
  }
  .terms {
    font-size: 3.75vw;
    letter-spacing: calc(-0.06 * 3.75vw);
  }
  .meet-the-founder {
    padding: 40px 20px;
    gap: 40px;
  }
  .meet-the-founder-title {
    h5 {
      font-size: 16px;
      line-height: 1.2;
      letter-spacing: calc(-0.06 * 16px);
    }
    h2 {
      font-size: 8.333vw;
      letter-spacing: calc(-0.06 * 8.333vw);
    }
  }
}
