/* =========================================
   COMMON TITLE
========================================= */

.Large_Common_Title {
  position: relative;
  z-index: 2;
  margin-bottom: 55px;
  /* overflow: hidden; */
}

/* =========================================
   BACKGROUND TEXT
========================================= */

/* .Large_Common_Title .common_title_bg_text {
  position: absolute;
  top: -35px;
  left: -35px;
  font-size: clamp(110px, 14vw, 220px);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -12px;
  color: #e2e0e0;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: -1;
  animation: commonTitleBgReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
} */

.common_title_bg_text {
  position: absolute;
  top: -35px;
  left: -35px;
  font-size: clamp(110px, 14vw, 220px);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -12px;
  color: #e2e0e0;
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: -1;

  transform: translate(100%, 0%);

  opacity: 0;

  transition:
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}

/* =========================================
   ANIMATION WHEN SECTION IS VISIBLE
========================================= */

.Large_Common_Title.title-visible .common_title_bg_text {
  transform: translate(0, 0%);
  opacity: 1;
}

@keyframes commonTitleBgReveal {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================
   CONTENT
========================================= */

.Large_Common_Title .common_title_content {
  position: relative;
  z-index: 2;
}

/* =========================================
   TOP
========================================= */

.Large_Common_Title .common_title_top {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 12px;
}

.Large_Common_Title .common_title_line {
  width: 42px;
  height: 1px;

  display: block;

  background: #111;

  transition: width 0.5s ease;
}

.Large_Common_Title:hover .common_title_line {
  width: 70px;
}

.Large_Common_Title .common_title_eyebrow {
  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;

  color: #111;

  text-transform: uppercase;
}

/* =========================================
   HEADING
========================================= */

.Large_Common_Title .common_title_heading {
  margin: 0;

  font-size: clamp(42px, 6vw, 86px);

  line-height: 0.9;

  font-weight: 700;

  letter-spacing: -4px;

  text-transform: uppercase;

  color: #111;
}

/* =========================================
   DESCRIPTION
========================================= */

.Large_Common_Title .common_title_description {
  max-width: 550px;

  margin: 22px 0 0;

  color: #666;

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .Large_Common_Title {
    margin-bottom: 40px;
  }

  .Large_Common_Title .common_title_bg_text {
    top: 0px;
    left: -10px;

    font-size: 80px;

    letter-spacing: -5px;
  }

  .Large_Common_Title .common_title_heading {
    font-size: 40px;

    letter-spacing: -2px;
  }

  .Large_Common_Title .common_title_description {
    font-size: 14px;
    line-height: 1.7;
  }
}
