@charset "utf-8";
/* -----------------------------------------------------------------------

business-introduction.css

----------------------------------------------------------------------- */

.business-introduction {
	background: #f2f2f2;
	padding-top: 100px;
}

.business-introduction .breadcrumb--fixed {
	color: var(--text-body);
}

.section-heading {
	text-align: center;
}

.business-introduction .section {
	padding: 160px 0;
}

#top-banner {
	background: url(../images/intro/banner.jpg) no-repeat;
	background-size: cover;
	height: 440px;
}

.section-title {
	font-size: 2.5rem;
}

#section-intro h3 {
	color: var(--primary);
	font-size: 2rem;
	line-height: 1.5;
	margin: 0 0 50px;
}

#section-intro p {
	font-weight: 600;
	line-height: 2.5;
	margin: 0 0 55px;
}

.video-wrap {
	max-width: 600px;
	margin: 0 auto;
}

.video-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#section-why-choose-us {
	background: var(--primary);
	color: #fff;
}

#section-why-choose-us .section-title {
	margin: 0 0 50px;
	text-align: center;
}

#section-why-choose-us .section-title + p {
	max-width: 700px;
	margin: 0 auto 55px;
}

#section-why-choose-us .list-grid {
	display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}

#section-why-choose-us .list-grid  .grid-item {
	background: #fff;
	color: var(--text-body);
	padding: 20px;
}

.grid-item .item-content {
	padding: 0 35px;
}

.list-grid  .grid-item h3 {
	color: var(--primary);
	font-size: 1.5rem;
	line-height: 1.6;
	margin: 30px 0 20px;
	text-align: center;
}

.list-grid  .grid-item h3 span {
	display: block;
}

#manufacturer-section .section-title {
	margin: 0 0 60px;
	text-align: center;
}

#section-passion {
	background: url(../images/intro/passion-banner.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	position: relative;
	padding-top: 70px;
	padding-bottom: 250px;
	margin-bottom: 64px;
}

#section-passion:before {
	background: #19355F;
	content: '';
	opacity: 0.3;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}

#section-passion .section-title {
	margin: 0 0 50px;
}

#section-passion p {
	line-height: 2.5;
	max-width: 580px;
}

@media screen and (min-width:768px) {
	.business-introduction {
		padding-top: 140px;
	}
}

@media (max-width: 767px) {
	.business-introduction .section {
		padding: 50px 0;
	}

	#top-banner {
		height: 150px;
	}
	
	.section-title {
		font-size: 1.5rem;
	}
	
	#section-intro h3 {
		font-size: 1.25rem;
	}

    #section-why-choose-us .list-grid {
        grid-template-columns: 1fr;
    }
	
	#section-passion {
		padding-bottom: 48px;
	}
}