.sectionA {
	display: flex;
	flex-direction: column;
	padding: 80px 0 150px 0;
	background: #e4e6e6;
	margin-bottom: -80px;
}

.section-info {
	display: flex;
	justify-content: space-between;
}

.section-info h2 {
  color: #090909;
  font-size: clamp(24px, 3.15vw, 60px);
  font-family: var(--font-family);
}

.section-info .company-name {
  color: #090909;
  font-size: clamp(20px, 1.9vw, 36px);
  font-family: var(--font-family);
  margin: 15px 0 0;
}
.section-info .company-intro {
  font-size: 18px;
  color: #090909;
  font-weight: 300;
  line-height: 36px;
  margin: 15px 0 0;
}

.info-area {
	width: 40%;
	margin-right: 80px;
}

.video-area {
	flex: 1;
}

.video-area img {
	width:100%
}

.video-area .v {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.video-area  .play {
  position: absolute;
  left: calc(50% - 35px);
  top: calc(50% - 35px);
  width: 70px;
  height: 70px;
  display: block;
}



.section-card {}

.section-card ul {
	display: flex;
	margin: 0 -15px;
}

.section-card ul li {
	width: 25%;
	padding: 10px 15px;
}

.section-card ul li .box {
	padding: 20px;
	border-radius: 15px;
	min-height: 200px;
	position: relative;
}
.section-card ul li .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1; 
}



.section-card ul li .box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
	position: relative;
	z-index: 2;
	color:#fff
}
.section-card ul li .box p {
	position: relative;
	z-index: 2;
	color:#fff
}


@media screen and (max-width: 1499px) {
.section-card ul li .box {min-height: 241px;}
}

@media screen and (max-width: 991px) {
  .section-info {flex-direction: column;}
  .info-area { width: 100%;margin-right: 0;}
  .video-area {flex: auto;width: 100%;margin-top: 20px;}
  .section-card ul li {width: 50%;}
  .section-card ul {flex-wrap: wrap;}
}

@media screen and (max-width: 768px) {
  .section-card ul li {width: 100%;}
  .section-card ul li .box {min-height: auto;}
}