@charset "UTF-8";
@font-face {
  font-family: 'NoirEtBlank';
  src: url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
       url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothic';
  src: url('Assets/Fonts/franklingothic_cond-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_cond-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothicBold';
  src: url('Assets/Fonts/franklingothic_bold-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_bold-webfont.woff') format('woff');
  font-style: normal;
}
.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 20px);
  width: 100%;
  overflow: hidden;
}
.main-box-wrapper {
  width: 1250px;
  height: 750px;
  position: relative;
  transform-origin: center center;
  transform: scale(calc(
    min(
      100% / 1000,
      (100vh - 100px) / 750
    )
  ));
}
.main-box {
  position: relative;
  width: 1250px;
  height: 750px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1000 / 750;
  transform-origin:  center center;
}
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 1.5s;
}
.bg2-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 2s;
}
.shadow-image {
  position: absolute;
  top: 140px;
  left: 490px;
  width: 660px;
  height: 660px;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 2s;
}
@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.logo-image {
  position: absolute;
  top: 75px;
  left: 400px;
  width: 240px;
  height: 75px;
  object-fit: cover;
  z-index: 3;
}
.inquire-image {
  position: absolute;
  top: 700px;
  left: 530px;
  width: 150px;
  height: 50px;
  object-fit: cover;
  z-index: 3;
}

.inquire-link {
  display: inline-block;
}

.inquire-link img.inquire-image {
  display: block;
}

.inquire-link:hover img.inquire-image {
  content: url('Assets/Homepage/homepage-inquireB.png');
}
.overlay-video {
  position: absolute;
  top: 200px;
  left: 540px;
  width: 500px;
  height: 500px;
  object-fit: cover;
  overflow: hidden;
  z-index: 4;
  clip-path: circle(0% at 50% 50%);
  animation: irisIn 1.5s ease-out forwards;
  animation-delay: 1s;
}
@keyframes irisIn {
  to {
    clip-path: circle(50% at 50% 50%);
  }
}
.overlay-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.default-video {
  opacity: 1;
}
.hover-video {
  opacity: 0;
}
.overlay-video:hover .hover-video {
  opacity: 1;
}
.overlay-video:hover .default-video {
  opacity: 0;
}
.hover-video {
  pointer-events: none;
}
.text-box {
  position: absolute;
  top: 140px;
  left: 150px;
  width: 360px;
  text-align: left;
  color: #222222;
  z-index: 35;
}
.text-box h2 {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.credit-list {
  position: absolute;
  top: 170px;
  left: 150px;
  width: 430px;
  text-align: left;
  color: #222222;
  z-index: 5;
}
.credit-list p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.fade-up {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 2.5s;
}
.fade-up2 {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 3.5s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: #222222;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}
.row-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.row {
   font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 2px 4px; /* top/bottom 5px, left/right 20px */
  transition: background-color 0s ease;
}

.col.left {
  width: 315px; /* can shrink/grow as needed */
}
.col.right {
 width: 115px; /* offset from the left column */
}

.row-link:hover .row {
  background-color: rgba(255, 255, 255);
}
