/* sectionClassName:hailingmeng_fabric_knowledge */
.hailingmeng_fabric_knowledge_main {
  background: #F9F8F3;
  padding: 10.625rem 0 12.25rem;
}
.hailingmeng_fabric_knowledge_main .fabric-knowledge-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.fabric-knowledge-list .fabric-knowledge-item{
  display: flex;
  flex-direction: column;
}
.fabric-knowledge-list .fabric-knowledge-item:nth-of-type(even){
  flex-direction: column-reverse;
}
.fabric-knowledge-item .fabric-knowledge-img-wrap{
  width: 100%;
  aspect-ratio: 830/410;
}
.fabric-knowledge-item .fabric-knowledge-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fabric-knowledge-item .fabric-knowledge-content{
  min-height: 310px;
  padding: 0 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 23px;
}
.fabric-knowledge-content .fabric-knowledge-item-title{
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal; /* 100% */
  text-transform: capitalize;
}
.fabric-knowledge-content .fabric-knowledge-item-desc{
  color: #333;
  font-family: var(--font-family);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

@media screen and (max-width: 1500px) {
  .fabric-knowledge-item .fabric-knowledge-content{
    min-height: auto;
    padding: 35px;
    flex: 1;
  }
}
@media screen and (max-width: 1200px) {
  .hailingmeng_fabric_knowledge_main{
    padding: 50px 0;
  }
}
@media screen and (max-width: 992px) {
  .hailingmeng_fabric_knowledge_main .fabric-knowledge-list{
    grid-template-columns: 1fr;
  }
  .fabric-knowledge-list .fabric-knowledge-item{
    flex-direction: column !important;
  }
}