.company-intro {
	padding: 100px 0;
	background: #f4f8f5
}

.company-intro-grid {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 72px;
	align-items: center
}

.company-intro-photo {
	min-height: 390px;
	background: linear-gradient(0deg, #07382e6e, #07382e10), url('../images/lab-work.jpg') center/cover
}

.company-intro-copy .section-kicker {
	margin-bottom: 12px
}

.company-intro-copy h2 {
	font-size: 34px;
	line-height: 1.2;
	margin: 0 0 18px
}

.company-intro-copy p {
	color: var(--muted);
	line-height: 1.95;
	margin: 0 0 15px
}

.company-intro-stats {
	display: flex;
	gap: 42px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid #cfdfd5
}

.company-intro-stats b {
	display: block;
	color: var(--green);
	font-size: 29px;
	margin-bottom: 4px
}

.company-intro-stats span {
	font-size: 13px;
	color: var(--muted)
}

.honor-full {
	padding: 100px 0;
	background: #fff;
	overflow: hidden
}

.honor-full-head {
	text-align: center;
	margin-bottom: 38px
}

.honor-full-head h2 {
	font-size: 34px;
	margin: 0 0 12px
}

.honor-full-head p {
	color: var(--muted);
	margin: 0
}

.certificate-marquee {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden
}

.certificate-track {
	display: flex;
	gap: 25px;
	width: max-content;
	animation: certificateMove 34s linear infinite;
	padding: 12px 0 18px
}

.certificate-track:hover {
	animation-play-state: paused
}

.certificate-card {
	width: 240px;
	height: 320px;
	flex: none;
	background: #fdfcf8;
	border: 10px solid #c79b50;
	box-shadow: 0 10px 22px #49361b18;
	position: relative;
	padding: 28px 20px;
	text-align: center;
	color: #79571f
}

.certificate-card:nth-child(2n) {
	border-color: #9ba8a9;
	color: #58666a
}

.certificate-card:nth-child(3n) {
	border-color: #5c9b8f;
	color: #27675c
}

.certificate-card:nth-child(4n) {
	border-color: #c49a67;
	color: #865b2e
}

.certificate-card:before {
	content: "✦";
	display: block;
	font-size: 32px;
	margin-bottom: 14px;
	color: inherit
}

.certificate-card h3 {
	font-family: Georgia, serif;
	font-size: 22px;
	margin: 0 0 12px
}

.certificate-card p {
	font-size: 12px;
	line-height: 1.65;
	margin: 0;
	color: inherit
}

.certificate-card span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 24px;
	font-size: 11px;
	letter-spacing: 1.3px
}

.honor-dots {
	text-align: center;
	margin-top: 15px;
	color: #90bda4;
	letter-spacing: 8px;
	font-size: 16px
}

.partner-full {
	padding: 92px 0;
	background: #edf6f1;
	overflow: hidden
}

.partner-full-head {
	text-align: center;
	margin-bottom: 35px
}

.partner-full-head h2 {
	font-size: 34px;
	margin: 0 0 12px
}

.partner-full-head p {
	color: var(--muted);
	margin: 0
}

.partner-marquee {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden
}

.partner-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: partnerMove 28s linear infinite
}

.partner-track:hover {
	animation-play-state: paused
}

.partner-pill {
	width: 245px;
	height: 104px;
	background: #fff;
	border: 1px solid #d5e7dc;
	display: grid;
	place-items: center;
	color: #4b6658;
	font-size: 16px;
	font-weight: 700;
	transition: .25s
}

.partner-pill:hover {
	border-color: var(--green);
	color: var(--green);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px #17433212
}

@keyframes certificateMove {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

@keyframes partnerMove {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

@media(max-width:900px) {
	.company-intro-grid {
		grid-template-columns: 1fr;
		gap: 34px
	}

	.company-intro-photo {
		min-height: 300px
	}

	.company-intro-copy h2 {
		font-size: 36px
	}
}

@media(max-width:560px) {
    	.company-intro-copy h2 {
		font-size: 20px
	}

	.company-intro,
	.honor-full,
	.partner-full {
		padding: 72px 0
	}

	.company-intro-photo {
		min-height: 255px
	}

	.company-intro-stats {
		gap: 20px
	}

	.company-intro-stats b {
		font-size: 24px
	}

	.honor-full-head h2,
	.partner-full-head h2 {
		font-size: 24px
	}

	.certificate-card {
		width: 205px;
		height: 280px
	}

	.partner-pill {
		width: 190px;
		height: 86px;
		font-size: 14px
	}
}

.partner-marquee {
	display: grid;
	gap: 14px
}

.partner-row {
	width: 100%;
	overflow: hidden
}

.partner-row-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: partnerMove 30s linear infinite;
	will-change: transform
}

.partner-row-track:hover {
	animation-play-state: paused
}

.partner-row-track-b {
	animation-name: partnerMoveReverse;
	animation-duration: 34s
}

.partner-row-track-c {
	animation-duration: 38s
}

.partner-pill {
	flex: none;
	height: 86px
}

@keyframes partnerMoveReverse {
	from {
		transform: translateX(-50%)
	}

	to {
		transform: translateX(0)
	}
}

.contact-row {
	align-items: center
}

.contact-icon {
	width: 25px;
	height: 25px;
	display: inline-grid;
	place-items: center;
	color: var(--green);
	font-size: 20px;
	line-height: 1
}

.contact-row b {
	width: 55px
}

.form-success {
	color: var(--green);
	font-weight: 700;
	font-size: 18px;
	padding: 12px 0
}

.about-contact {
	position: relative;
	isolation: isolate;
	background: linear-gradient(90deg, #184b3bd1, #376c59b8), url('../images/contact-bg.jpg') center/cover !important
}

.about-contact:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #06392db8, #1d5541a3);
	z-index: -1
}

.about-contact .form {
	background: #ffffffea;
	padding: 24px;
	border: 1px solid #ffffffcc;
	box-shadow: 0 14px 30px #173d2b35
}

.about-contact .contact-list {
	background: #ffffffd1;
	padding: 20px 22px
}

.about-contact .contact-icon {
	font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif
}

.about-contact .location-icon {
	font-size: 0;
	width: 17px;
	height: 17px;
	border: 2px solid var(--green);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	position: relative;
	margin: 0 4px 0 2px
}

.about-contact .location-icon:after {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	background: var(--green);
	border-radius: 50%;
	left: 4px;
	top: 4px
}

.about-contact .section-kicker {
	color: #bde9cd
}

.about-contact h2 {
	color: #fff
}

.about-contact .section-intro {
	color: #e1f0e8
}

.about-contact {
	background: linear-gradient(90deg, #e8f3eecc, #f7fbf9b8), url('../images/lab-detail.jpg') center/cover !important
}

.about-contact:before {
	background: linear-gradient(135deg, #ffffff35, #cfe6da45)
}

.about-contact .section-kicker {
	color: var(--green)
}

.about-contact h2 {
	color: var(--ink)
}

.about-contact .section-intro {
	color: var(--muted)
}