:root {
  --black: #000000;
  --blue: #4A69F3;
  --blue-dark: #1F379E;
  --green: #1ad270;
  --green-dark: #187B46;
  --yellow: #f2c32a;
  --yellow-dark: #C97F18;
  --gray: #86869B;
  --white: #ffffff;
  --card-bg-color: #f2f2f2;
}

@font-face {
  font-family: "DenimINK";
  src: url("./fonts/DenimINK-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "DenimINK", "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--white);
  color: var(--black);
}

.header {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 42vw;
  padding-right: 4vw;
  padding-bottom: 10vw;
  padding-left: 24vw;
}

.header__lines,
.header__lines_right {
  display: block;
  position: absolute;
}

.header__lines {
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.header__lines_right {
  height: 35.6666666vw;
  left: unset;
  width: auto;
}

.header__lines path {
  stroke-dasharray: 4000;
  animation: dash 4s ease-out forwards;
}

.header__ring {
  animation: 1.2s ease fadeInRing;
}

@keyframes dash {
  from {
    stroke-dashoffset: 4000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.header__logos {
  position: relative;
  z-index: 1;
}

.header__wordmark {
  font-weight: 400;
  line-height: 1;
  text-align: center;
  animation: 0.5s ease fadeIn;
}

.header__wordmark_brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22em;
  font-size: 6.5vw;
}

.header__wordmark_name {
  display: block;
  font-size: 13.5vw;
  color: var(--gray);
  margin-top: 1.5vw;
}

.header__wordmark-logo {
  width: 0.98em;
  height: 0.95em;
  flex: none;
}

.header__title {
  font-weight: 400;
  font-size: 6.05vw;
  line-height: 1;
  text-align: center;
  margin-top: 14vw;
  animation: 0.5s ease fadeIn;
  animation-duration: 1s;
}

@keyframes fadeInRing {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: scale(0.97) translateY(0.22222222vw);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ========================================================================================================
   TABLET MEDIA QUERIES
   ==================== */

@media screen and (min-width: 600px) {

  .header {
    justify-content: center;
    padding-top: 10vw;
    padding-right: 10.11111111vw;
    padding-bottom: 10vw;
    padding-left: 21.88vw;
  }

  .header__wordmark_brand {
    font-size: 4.5vw;
  }

  .header__wordmark_name {
    font-size: 13vw;
    margin-top: 1vw;
  }

  .header__title {
    font-size: 3.05vw;
    margin-top: 7vw;
  }
}
