: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");
}
.page-header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.page-header .container {
  justify-content: center;
}
.page-header__textContent {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 54px;
  padding: 70px 0 0 0;
  width: 100%;
  text-align: center;
}
.page-header__title {
  margin-bottom: 15px;
  color: #285F5E;
  --font-size: 54px;
  --font-size-rem: 3.375rem;
  --line-height: 70px;
  --line-height-rem: 4.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "IvyMode-Regular";
  font-weight: 400;
}
.page-header__description {
  color: #285F5E;
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  font-family: "openSans-Regular";
  font-weight: 400;
}
.page-header__visual {
  width: 100%;
  height: calc(100dvh - 260px);
  background-color: #ccd7d7;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header__visual .video-elem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header-height: 101px;
  }
  .page-header {
    height: calc(100dvh - 147px);
    border-bottom: 1px solid #d9d9d9;
  }
  .page-header__textContent {
    align-items: flex-start;
    margin: -80px 0 0 0;
    padding: 0;
    width: 50%;
    text-align: left;
  }
  .page-header__title {
    margin-bottom: 14px;
    --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);
  }
  .page-header__description {
    --font-size: 18px;
    --font-size-rem: 1.125rem;
    --line-height: 28px;
    --line-height-rem: 1.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .page-header__visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
  }
}