﻿html, body {
	width: 100%;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
}

.main-container {
	width: 100%;
	padding: 0 5%;
	max-width: 1440px;
	margin: auto;
	position: relative;
}

.pc_layout {
	display: none;
}

.mb_layout {
	display: block;
}

.non-select {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.flex-left {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.flex-right {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

@media all and (min-width:992px) { 
		
	.main-container {
		padding: 0 30px;
	}

	.pc_layout {
		display: block;
	}
	
	.mb_layout {
		display: none;
	}
}

/*--------------------------------------------------*/
/* banner container									*/
/*--------------------------------------------------*/

.banner-container {
	width: 100%;
	padding: 64px 0px 75px 0px;
	position: relative;
	color: #FFFFFF;
	background: transparent no-repeat center center;
	background-size: cover;
	background-image: url(../../Images/solution-ei/banner-bg.jpg);
	overflow: hidden;
}

.banner-container .main-container {
	z-index: 1;
}

.banner-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: auto;
}

.banner-content {
	max-width: 100%;
	text-align: left;
}

.banner-container h1 {
	color: #FFFFFF;
	font-size: 36px;
	font-weight: bold;
	line-height: 48px;
	margin: 0;
}

.banner-desc {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 28px;
	margin-top: 20px;
	margin-bottom: 0;
}

.banner-desc .desktop-break {
	display: none;
}

.banner-images {
	width: 100%;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.banner-images.animate {
	opacity: 1;
	transform: translateY(0);
}

.banner-images img {
	width: 100%;
	max-width: 60%;
	height: auto;
	object-fit: contain;
}

.banner-btn-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}

.banner-btn {
	display: block;
	text-align: center;
	padding: 13px 24px;
	min-width: 170px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 6px;
	border: 1px solid transparent;
	-webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}

.btn-talk-expert {
	background-color: #81F6F9;
	border-color: #81F6F9;
	color: #000000;
}

.btn-talk-expert:hover {
	background-color: #DBFEFF;
	border-color: #DBFEFF;
}

.btn-talk-expert:active {
	background-color: #00DDE3;
	border-color: #00DDE3;
}

.btn-place-order {
	background-color: transparent;
	border-color: #81F6F9;
	color: #81F6F9;
}

.btn-place-order:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

.btn-place-order:active {
	background-color: rgba(255, 255, 255, 0.25);
}

@media all and (min-width:992px) {

	.banner-container {
		padding: 130px 0px 110px 0;
	}

	.banner-inner {
		display: grid;
		grid-template-columns: 47.139% 1fr;
		grid-template-rows: auto auto;
		grid-template-areas:
			"content images"
			"buttons images";
		column-gap: 40px;
		row-gap: 0;
		align-items: start;
		max-width: 100%;
	}

	.banner-content {
		grid-area: content;
		width: auto;
		max-width: 650px;
		flex-shrink: 0;
		padding-bottom: 40px;
	}

	.banner-btn-block {
		grid-area: buttons;
		flex-direction: row;
		align-self: start;
		margin-top: 0;
	}

	.banner-images {
		grid-area: images;
		flex: unset;
		margin-top: 0;
		justify-content: flex-end;
		align-self: center;
	}

	.banner-container h1 {
		font-size: clamp(40px, 4.17vw, 60px);
		line-height: clamp(52px, 5.14vw, 74px);
	}

	.banner-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(24px, 1.94vw, 28px);
		margin-top: 30px;
	}

	.banner-desc .desktop-break {
		display: inline;
	}

	.banner-images img {
		max-width: 377px;
		width: 100%;
	}
}

/*--------------------------------------------------*/
/* workflows container								*/
/*--------------------------------------------------*/

.workflows-container {
	width: 100%;
	padding: 64px 0;
	background-color: #F4F4F6;
}

.workflows-container .main-container {
	max-width: 1640px;
}

.workflows-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
	text-align: center;
	margin: 0 0 16px 0;
}

.workflows-subtitle {
	font-size: 16px;
	font-weight: bold;
	line-height: 22px;
	color: #000000;
	text-align: center;
	max-width: 480px;
	margin: 0 auto 32px auto;
}

.workflows-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.workflow-card {
	background-color: #FFFFFF;
	border-radius: 12px;
	padding: 28px 26px;
	text-align: left;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.workflow-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.workflow-card:nth-child(2) { transition-delay: 0.1s; }
.workflow-card:nth-child(3) { transition-delay: 0.2s; }
.workflow-card:nth-child(4) { transition-delay: 0.3s; }
.workflow-card:nth-child(5) { transition-delay: 0.4s; }

.workflow-icon {
	margin-bottom: 20px;
}

.workflow-icon img {
	width: 48px;
	height: 48px;
	display: block;
}

.workflow-title {
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	color: #000000;
	margin: 0 0 8px 0;
}

.workflow-desc {
	font-size: 15px;
	line-height: 22px;
	color: #202020;
	margin: 0;
}

@media all and (min-width: 640px) {
	.workflows-grid {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.workflow-card {
		flex: 0 1 calc(50% - 8px);
	}
}

@media all and (min-width: 992px) {

	.workflows-container {
		padding: clamp(64px, 6.94vw, 100px) 0;
	}

	.workflows-title {
		font-size: 48px;
		line-height: 64px;
		margin-bottom: 22px;
	}

	.workflows-subtitle {
		margin-bottom: 50px;
	}

	.workflows-grid {
		--card-gap: clamp(20px, 2.08vw, 30px);
		gap: var(--card-gap);
	}

	.workflow-card {
		flex: 0 1 calc(33.333% - (var(--card-gap) * 2 / 3));
		max-width: 480px;
		padding: clamp(28px, 3.47vw, 50px);
	}

	.workflow-icon img {
		width: clamp(48px, 3.89vw, 56px);
		height: clamp(48px, 3.89vw, 56px);
	}

	.workflow-title {
		font-size: clamp(20px, 1.9vw, 32px);
		line-height: clamp(26px, 2.64vw, 38px);
	}

	.workflow-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(20px, 1.53vw, 22px);
	}
}

/*--------------------------------------------------*/
/* process container								*/
/*--------------------------------------------------*/

.process-container {
	width: 100%;
	padding: 64px 0;
	background-color: #FFFFFF;
}

.process-container .main-container {
	max-width: 1200px;
}

.process-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
	text-align: center;
	margin: 0 0 16px 0;
}

.process-subtitle {
	font-size: 16px;
	font-weight: bold;
	line-height: 22px;
	color: #000000;
	text-align: center;
	max-width: 480px;
	margin: 0 auto 32px auto;
}

.process-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.process-image {
	width: 100%;
	overflow: hidden;
	max-width: 600px;
	border-radius: 12px;
	margin: auto;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-image.animate {
	opacity: 1;
	transform: translateY(0);
}

.process-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.process-steps {
	display: flex;
	flex-direction: column;
}

.process-step {
	--icon-size: 56px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 18px;
	position: relative;
	padding-bottom: 28px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.animate {
	opacity: 1;
	transform: translateY(0);
}

.process-step:last-child {
	padding-bottom: 0;
}

.process-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: calc(var(--icon-size) / 2 - 0.5px);
	top: var(--icon-size);
	bottom: 0;
	border-left: 1px solid #CCCCCC;
}

.process-step-icon {
	width: var(--icon-size);
	height: var(--icon-size);
	flex-shrink: 0;
}

.process-step-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.process-step-title {
	font-size: 18px;
	font-weight: bold;
	line-height: 26px;
	color: #09090E;
	margin: 0 0 8px 0;
}

.process-step-desc {
	font-size: 15px;
	line-height: 22px;
	color: #202020;
	margin: 0;
}

@media all and (min-width:992px) {

	.process-container {
		padding: clamp(64px, 6.94vw, 100px) 0;
	}

	.process-title {
		font-size: 48px;
		line-height: 64px;
		margin-bottom: 22px;
	}

	.process-subtitle {
		margin-bottom: 60px;
	}

	.process-inner {
		flex-direction: row;
		align-items: flex-start;
		gap: clamp(30px, 8.61vw, 124px);
	}

	.process-image {
		max-width: 43%;
		flex-shrink: 0;
		margin: 0;
	}

	.process-steps {
		flex: 1;
		padding-top: 10px;
	}

	.process-step {
		--icon-size: clamp(56px, 4.86vw, 70px);
	}

	.process-step-title {
		font-size: clamp(18px, 1.67vw, 24px);
		line-height: clamp(26px, 2.36vw, 34px);
		margin-bottom: 8px;
	}

	.process-step-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(20px, 1.67vw, 24px);
	}
}

/*--------------------------------------------------*/
/* package container								*/
/*--------------------------------------------------*/

.package-container {
	width: 100%;
	padding: 72px 0;
	background-color: #F4F4F6;
}

.package-container .main-container {
	max-width: 1327px;
}

.package-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
	text-align: center;
	margin: 0 0 16px 0;
}

.package-subtitle {
	font-size: 16px;
	font-weight: bold;
	line-height: 22px;
	color: #000000;
	text-align: center;
	margin: 0 auto 40px auto;
}

.package-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	max-width: 600px;
	margin: auto;
}

.package-item {
	display: flex;
	flex-direction: column;
	gap: 0;
	background: #FFFFFF;
	border-radius: 16px;
	padding: 16px 10px 10px 10px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.package-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.package-image {
	width: 100%;
	order: -1;
}

.package-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.package-content {
	padding: 20px;
}

.package-number {
	font-size: 34px;
	font-weight: bold;
	color: #022585;
	line-height: 1;
	margin-bottom: 10px;
}

.package-title-item {
	font-size: 26px;
	font-weight: bold;
	line-height: 34px;
	color: #000000;
	margin: 0 0 10px 0;
}

.package-desc {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	margin: 0;
}

@media all and (min-width: 992px) {

	.package-container {
		padding: clamp(64px, 7.22vw, 104px) 0;
	}

	.package-title {
		font-size: 48px;
		line-height: 64px;
		margin-bottom: 22px;
	}

	.package-subtitle {
		margin-bottom: 50px;
	}

	.package-list {
		gap: 15px;
		width: 100%;
		max-width: 100%;
	}

	.package-item {
		flex-direction: row;
		align-items: stretch;
		gap: clamp(24px, 3.33vw, 48px);
		padding: 22px 25px;
		min-height: 367px;
	}

	.package-item.package-image-right {
		flex-direction: row;
	}

	.package-item.package-image-left {
		flex-direction: row-reverse;
	}

	.package-image {
		width: 55%;
		order: 0;
	}

	.package-image img {
		width: 100%;
		height: 100%;
		min-height: 280px;
	}

	.package-item.package-image-right img {
		border-top-left-radius: 10px;
		border-top-right-radius: unset;
		border-bottom-left-radius: 10px;
	}

	.package-item.package-image-left img {
		border-top-left-radius: unset;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	}

	.package-content {
		width: 45%;
		padding: 12px 8px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.package-number {
		font-size: 38px;
		width: 370px;
		max-width: 100%;
    	margin: 0 auto 6px;
	}

	.package-title-item {
		font-size: 34px;
		line-height: 46px;
		width: 370px;
		max-width: 100%;
    	margin: 0 auto 15px;
	}

	.package-desc {
		font-size: 16px;
		line-height: 24px;
		width: 370px;
		max-width: 100%;
    	margin: 0 auto;
	}
}

/*--------------------------------------------------*/
/* why container									*/
/*--------------------------------------------------*/

.why-container {
	padding: 70px 0 85px 0;
	background: url(../../Images/solution-ei/why-choose-bg.jpg) no-repeat center center;
	background-size: cover;
}

.why-container .main-container {
	max-width: 1417px;
}

.why-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	max-width: 840px;
	margin: 0 auto 50px auto;
}

.why-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.why-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(178, 178, 178, 0.08);
	border-radius: 14px;
	padding: 38px 30px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.why-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }

.why-icon {
	margin-bottom: 25px;
}

.why-icon img {
	width: 48px;
	height: 48px;
	display: block;
}

.why-card-title {
	font-size: 20px;
	line-height: 27px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 12px 0;
}

.why-card-desc {
	font-size: 15px;
	line-height: 22px;
	color: #ffffff;
	margin: 0;
}

@media all and (min-width: 640px) {
	.why-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
}

@media all and (min-width: 992px) {
	.why-container {
		padding: clamp(70px, 7.64vw, 110px) 0 clamp(70px, 6.74vw, 97px) 0;
	}

	.why-title {
		font-size: 48px;
		line-height: 64px;
		margin-bottom: 50px;
	}

	.why-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: clamp(8px, 0.76vw, 11px);
	}

	.why-card {
		padding: clamp(29px, 2.92vw, 42px) clamp(17px, 1.74vw, 25px);
	}

	.why-icon img {
		width: clamp(48px, 4.17vw, 60px);
		height: clamp(48px, 4.17vw, 60px);
	}

	.why-card-title {
		font-size: clamp(20px, 1.53vw, 22px);
		line-height: clamp(27px, 2.22vw, 32px);
		margin-bottom: 20px;
	}

	.why-card-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(21px, 1.67vw, 24px);
	}
}

/*--------------------------------------------------*/
/* CTA container									*/
/*--------------------------------------------------*/

.ei-cta-container {
	padding: 72px 0 92px 0;
	background-color: #FFFFFF;
}

.ei-cta-container .main-container {
	max-width: 1300px;
}

.ei-cta-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.ei-cta-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
	margin: 0;
	text-align: center;
}

.ei-cta-buttons {
	display: inline-flex;
	flex-direction: column;
	align-self: center;
	gap: 16px;
	margin-top: 20px;
}

.ei-cta-container .cta-btn {
	display: block;
	text-align: center;
	padding: 13px 24px;
	min-width: 170px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 6px;
	border: 1px solid transparent;
	cursor: pointer;
	-webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.ei-cta-container .btn-talk-expert {
	background-color: #000F41;
	border-color: #000F41;
	color: #FFFFFF;
}

.ei-cta-container .btn-talk-expert:hover {
	background-color: #1a2f6e;
	border-color: #1a2f6e;
}

.ei-cta-container .btn-place-order {
	background-color: transparent;
	border-color: #000F41;
	color: #000F41;
}

.ei-cta-container .btn-place-order:hover {
	background-color: rgba(0, 15, 65, 0.08);
}

.ei-cta-image img {
	width: 100%;
	max-width: 542px;
	margin: auto;
	height: auto;
	display: block;
	border-radius: 16px;
	object-fit: cover;
}

@media all and (min-width: 992px) {

	.ei-cta-container {
		padding: 100px 0;
	}

	.ei-cta-inner {
		display: grid;
		grid-template-columns: 1fr min(542px, 50%);
		grid-template-areas:
			"content image"
			"buttons image";
		column-gap: clamp(40px, 5.56vw, 80px);
		row-gap: clamp(32px, 4.17vw, 60px);
		align-items: center;
	}

	.ei-cta-content {
		grid-area: content;
		align-self: end;
	}

	.ei-cta-image {
		grid-area: image;
		align-self: center;
	}

	.ei-cta-buttons {
		grid-area: buttons;
		flex-direction: row;
		justify-content: flex-start;
		align-self: start;
		margin-top: 0px;
	}

	.ei-cta-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin-bottom: 0;
		text-align: left;
	}
}
