:root {
  --header-height: 75px;
}
@font-face {
  font-family: "openSans-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/open-sans/OpenSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/open-sans/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/open-sans/OpenSans-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "openSans-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/open-sans/OpenSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Thin";
  font-style: normal;
  font-weight: 100;
  src: url("/assets/font/IvyMode/IvyMode-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/IvyMode/IvyMode-Light.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/IvyMode/IvyMode-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/IvyMode/IvyMode-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "IvyMode-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/IvyMode/IvyMode-Bold.woff2") format("woff2");
}
.production {
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.production__textContent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.production__sub-title {
  margin-top: 72px;
  color: #fff;
  --font-size: 21px;
  --font-size-rem: 1.3125rem;
  --line-height: 33.6px;
  --line-height-rem: 2.1rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}
.production__title {
  margin: auto 0 20px 0;
  color: #fff;
  --font-size: 44px;
  --font-size-rem: 2.75rem;
  --line-height: 52px;
  --line-height-rem: 3.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}
.production__desc {
  display: none;
  color: #fff;
  --font-size: 18px;
  --font-size-rem: 1.125rem;
  --line-height: 28.8px;
  --line-height-rem: 1.8rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
}
.production__button {
  margin-bottom: 84px;
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header-height: 101px;
  }
  .production {
    height: 750px;
  }
  .production .container {
    justify-content: center;
    align-items: center;
  }
  .production__textContent {
    width: 550px;
    height: auto;
  }
  .production__sub-title {
    margin-top: 0;
    margin-bottom: 25px;
    --font-size: 21px;
    --font-size-rem: 1.3125rem;
    --line-height: 33.6px;
    --line-height-rem: 2.1rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .production__title {
    margin: 0 0 18px 0;
    --font-size: 74px;
    --font-size-rem: 4.625rem;
    --line-height: 96px;
    --line-height-rem: 6rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .production__desc {
    display: flex;
    margin-bottom: 50px;
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 28px;
    --line-height-rem: 1.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .production__button {
    margin-bottom: 0;
  }
}