/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
    background: linear-gradient(45deg, #000000, #0e143a, #000000, #0b102d, #000000);
    background-size: 1000% 1000%;
    -webkit-animation: AnimationName 120s ease infinite;
    -moz-animation: AnimationName 120s ease infinite;
    animation: AnimationName 120s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:93% 0%}
    50%{background-position:0% 100%}
    100%{background-position:93% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:93% 0%}
    50%{background-position:0% 100%}
    100%{background-position:93% 0%}
}
@keyframes AnimationName {
    0%{background-position:93% 0%}
    50%{background-position:0% 100%}
    100%{background-position:93% 0%}
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--app-height);
}
.intro {
  max-width: 710px;
  margin: 0 40px;
}
.intro p, .intro a {
  color: transparent;
  font-family: system-ui;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 16px;
  animation: fade-in .8s ease forwards 2.4s;
}
@media only screen and (max-width: 1200px) {
  .intro p, .intro a {
    font-size: 13px;
  }
}
.intro a {
  position: relative;
  text-decoration: none;
}
.intro a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0%;
  height: 6px;
  transform: skew(-12deg) translateX(0%);
  background: transparent;
  z-index: -1;
  animation: fade-in-underline .8s ease forwards 2.4s, slide-in-underline .8s ease forwards 3s;
}
#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  height: auto;
  fill: transparent;
  animation: fill .8s ease forwards .8s, logo-to-top 1s ease forwards 1.6s, logo-scale-desktop .8s ease forwards 1.6s;
  will-change: top, left, width;
}
@media only screen and (max-width: 1200px) {
  #logo {
    width: 60vw;
    animation: fill .8s ease forwards .8s, logo-to-top 1s ease forwards 1.6s, logo-scale-mobile .8s ease forwards 1.6s;
    will-change: top, left, width;
  }
}
#logo path:nth-child(1) {
  stroke-dasharray: 333.7734375px;
  stroke-dashoffset: 333.7734375px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(2) {
  stroke-dasharray: 257.4029235839844px;
  stroke-dashoffset: 257.4029235839844px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(3) {
  stroke-dasharray: 339.4490966796875px;
  stroke-dashoffset: 339.4490966796875px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(4) {
  stroke-dasharray: 193.2194061279297px;
  stroke-dashoffset: 193.2194061279297px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(5) {
  stroke-dasharray: 333.77337646484375px;
  stroke-dashoffset: 333.77337646484375px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(6) {
  stroke-dasharray: 204.7493896484375px;
  stroke-dashoffset: 204.7493896484375px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(7) {
  stroke-dasharray: 300.48663330078125px;
  stroke-dashoffset: 300.48663330078125px;
  animation: line-animation .8s ease forwards;
}
#logo path:nth-child(8) {
  stroke-dasharray: 310.5941162109375px;
  stroke-dashoffset: 310.5941162109375px;
  animation: line-animation .8s ease forwards;
}
@keyframes line-animation{
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill{
  from {
    fill: transparent;
  }
  to {
    fill: #fff;
  }
}
@keyframes logo-to-top{
  to {
    top: 40px;
    left: 40px;
    transform: translate(0%, 0%);
  }
}
@keyframes logo-scale-desktop{
  to {
    width: 15vw;
  }
}
@keyframes logo-scale-mobile{
  to {
    width: 36vw;
  }
}
@keyframes fade-in{
  to {
    color: #fff;
    opacity: 1;
  }
}
@keyframes fade-in-underline{
  to {
    background: rgb(75 100 255 / 75%);
  }
}
@keyframes slide-in-underline{
  to {
    width: 100%;
  }
}
.heading {
    text-align: center;
}
.heading h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 6vw;
    line-height: 1;
    color: #ffffff;
}
.heading h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 4vw;
    line-height: 1;
    color: #ffffff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}
.projects p {
    color: transparent;
    font-family: system-ui;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
    animation: fade-in .8s ease forwards 2.4s;
}
@media only screen and (max-width: 1200px) {
    .projects p {
        font-size: 13px;
    }
}

.projects {
    max-width: 710px;
    margin: 3rem 40px;
    width: 100%;
}

.client-logo {
    height: 2rem;
    display: flex;
    justify-content: center;
    max-width: 200px;
    align-items: center;
}

.client-logo img {
    height: 100%;
    max-height: 1.5rem;
}

.client-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    opacity: 0;
    animation: fade-in .8s ease forwards 2.4s;
}

.client-wrapper + .client-wrapper {
    margin-top: 2rem;
}

.client-logo a {
}

@media only screen and (max-width: 900px) {
    .projects {
        width:auto;
        margin: 1rem 40px;
    }
    .client-wrapper {
        flex-wrap: wrap;
    }
    .client-logo {
        width: calc(40% - 1rem);
    }
    .client-logo img {
        height: auto;
    }
}