.yichen_text_display3 {
  position: relative;
}

.yichen_text_display3_background {
  width: auto;
  height: auto;
  object-fit: cover;
}

.yichen_text_display3_content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(var(--color-primary-rgb), 0.48);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.yichen_text_display3_title {
  color: #FFF;
  font-size: var(--title-size-h2);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
}

.yichen_text_display3_title::before {
  content: "";
  width: 64px;
  height: 4px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate( -100%, -50% );
}

.yichen_text_display3_title::after {
  content: "";
  width: 64px;
  height: 4px;
  background: #FFF;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translate( 100%, -50% );
}

.yichen_text_display3_desc {
  color: #FFF;
  font-size: var(--text-flag-size);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 12px;
}

@media screen and (max-width: 992px) {
  .yichen_text_display3_title::before {
    width: 48px;
    height: 3px;
    left: -8px;
  }
  
  .yichen_text_display3_title::after {
    width: 48px;
    height: 3px;
    right: -8px;
  }
}

@media screen and (max-width: 576px) {
  .yichen_text_display3_title::before {
    width: 24px;
    height: 2px;
    left: -4px;
  }
  
  .yichen_text_display3_title::after {
    width: 24px;
    height: 2px;
    right: -4px;
  }
}