:root {
  --color-theme: #333;
}

.home-page {
  padding-bottom: 80px;
}
.bg-wrap {
  background-image: url(/static/images/home/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
}
.page-banner {
  --underline-width: 160px;
  --underline-height: 4px;
  --underline-gap: 32px;
  --underline-color: rgba(255, 255, 255, 0.2);
  position: relative;
}
.page-banner .img-box {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-banner img {
  display: block;
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
}
.page-banner .banner-cons {
  width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 var(--frame-gap);
    max-width: var(--frame-width);
    margin: auto;
    text-align: left;
    padding-top: 208px;
    padding-bottom: 140px;
}
.is-underline {
  width: var(--underline-width);
  height: var(--underline-height);
  background: var(--underline-color);
  margin-top: var(--underline-gap);
  margin-bottom: var(--underline-gap);
}
.banner-cons h1 {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
}
.special-font {
  font-family: "Roboto";
}
.banner-cons p {
  font-size: 34px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 10px;
}
.about-floor {
  max-width: var(--frame-width);
  padding: 0 var(--frame-gap);
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
}
.about-box {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(10px);
  padding: 40px 62px 70px;
  --underline-width: 50px;
  --underline-height: 4px;
  --underline-gap: 16px;
  --underline-color: rgba(0, 0, 0, 0.2);
}
.about-floor h2 {
  color: var(--color-theme);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.about-floor p {
  font-size: 18px;
  color: #333;
  padding-top: 16px;
}
.logo-info {
  margin-top: 100px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
.logo-info img {
  width: 30px;
  margin-right: 12px;
}
.underline {
  text-decoration: underline;
}
@media (max-width: 828px), (orientation:portrait) {
  .about-box {
    padding: 40px 24px 70px;
  }
}
