.core {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-width: var(--min-width);
  background-color: #f2f2f2;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.core::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 25.8rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 17.79%,
    rgba(16, 30, 42, 0) 100%
  );
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: 0;
}

.core video {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.core-container {
  width: 100%;
  height: 100%;
  padding: 0 clamp(1.6rem, 3vw, 4rem);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: 14rem 0 5rem 0;
}

.core-title {
  width: 100%;
  color: #432e11;
}

.core-title br {
  display: none;
}

.core-title h1 {
  font-family: "Modern No. 20", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 3.9rem;
  /* color: var(--main-font-color); */
}

.core-title h2 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: 1.5rem;
  /* color: var(--main-font-color); */
}

.core-txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(1.5em, 3vw, 3.6rem);
  /* width: 100%; */
  height: 100%;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* .core-txt br {
  display: none;
} */

.core-txt h1 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 4.4rem;
  color: var(--white);
  position: relative;
  /* text-align: center; */
}

.core-txt p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 3rem;
  /* color: var(--white); */
}

@media (max-width: 768px) {
  .core-title br {
    display: block;
  }

  .core-content {
    height: 100%;
    padding-top: 0;
  }

  .core-txt {
    height: 100%;
    justify-content: flex-end;
    padding: 10% 0 5%;
  }

  .core-txt br {
    display: block;
  }

  .core-txt h1 {
    line-height: 2.4rem;
    text-align: center;
    width: 340px;
    margin: 0 auto;
    font-size: 13px;
  }

  .core-txt p {
    line-height: 1.7rem;
    text-align: center;
  }
}
