@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.page-header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 500px;
  padding-bottom: 100px;
  overflow: hidden;
}
.page-header::before {
  content: "";
  z-index: 0;
  opacity: 0;
  inset: 0;
  position: absolute;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(2);
  transition: all 1s ease-out;
}
.page-header.loaded::before {
  opacity: 1;
  transform: scale(1);
}
.page-header .container {
  z-index: 1;
  position: relative;
  align-items: center;
}
.page-header__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-header__title, .page-header__secondary-title {
  opacity: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  color: #ffffff;
  background: rgba(12, 12, 12, 0.28);
  font-family: "Roboto-SemiBold";
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0px;
  animation: revealText 1s 0.5s forwards;
}
.page-header__title {
  padding-top: 20px;
  --font-size: 38px;
  --font-size-rem: 2.375rem;
  --line-height: 40px;
  --line-height-rem: 2.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.page-header__secondary-title {
  --font-size: 30px;
  --font-size-rem: 1.875rem;
  --line-height: 40px;
  --line-height-rem: 2.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

@keyframes revealText {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media screen and (min-width: 768px) {
  .page-header .container {
    align-items: flex-start;
  }
}

@media screen and (min-width: 992px) {
  .page-header {
    justify-content: center;
    height: 600px;
    padding-bottom: 130px;
  }
  .page-header .container {
    top: 80px;
  }
  .page-header__title, .page-header__secondary-title {
    text-align: left;
  }
  .page-header__title {
    --font-size: 50px;
    --font-size-rem: 3.125rem;
    --line-height: 60px;
    --line-height-rem: 3.75rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .page-header__secondary-title {
    --font-size: 40px;
    --font-size-rem: 2.5rem;
    --line-height: 50px;
    --line-height-rem: 3.125rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}

@media screen and (min-width: 1440px) {
  .page-header__title {
    --font-size: 60px;
    --font-size-rem: 3.75rem;
    --line-height: 80px;
    --line-height-rem: 5rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}