/* sectionClassName:hailingmeng_slidebanner */
.hailingmeng_slidebanner_main {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* height: 43.75rem; */
  aspect-ratio: 1920 / 700;

  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.hailingmeng_slidebanner_main .container {
  height: 100%;
}

.hailingmeng_slidebanner_img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hailingmeng_slidebanner_img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.hailingmeng_slidebanner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.2); */
}

.hailingmeng_slidebanner_content {
  position: relative;
  z-index: 10;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hailingmeng_slidebanner_title {
  line-height: 1.23;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.hailingmeng_slidebanner_desc {
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: 1.44;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .hailingmeng_slidebanner_main {
    aspect-ratio: auto;
    height: 23.75rem;
    min-height: 400px;
  }

  .hailingmeng_slidebanner_content {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .hailingmeng_slidebanner_title,
  .hailingmeng_slidebanner_desc {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 576px) {}