﻿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: 60px 0px 62px 0px;
	position: relative;
	color: #FFFFFF;
	background: transparent no-repeat center center;
	background-size: cover;
	background-image: url(../../Images/industry-reo/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: 50px;
	margin: 0;
}

.banner-line {
	width: 50px;
	height: 6px;
	background-color: #81F6F9;
	margin: 22px 0;
}

.banner-label {
	color: #FFFFFF;
	font-size: 26px;
	line-height: 38px;
	margin-bottom: 11px;
	max-width: 600px;
}

.banner-desc {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 30px;
	max-width: 600px;
}

.banner-images {
	width: 100%;
	margin-top: 50px;
	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%;
	height: auto;
	object-fit: contain;
}

.banner-btn {
	display: inline-block;
	margin-top: 30px;
	padding: 16px 26px;
	background-color: #81F6F9;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	border-radius: 6px;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.banner-btn:hover {
	background-color: #DBFEFF;
}

.banner-btn:active {
	background-color: #00DDE3;
}


@media all and (min-width:576px) {

	.banner-content {
		text-align: center;
	}

	.banner-line {
		margin: 22px auto;
	}
}

@media all and (min-width:992px) {

	.banner-container {
		padding: 118px 0px 139px 0px;
	}

	.banner-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 9.42%;
		max-width: 100%;
	}

	.banner-content {
		width: 47%;
		max-width: 650px;
		flex-shrink: 0;
		text-align: left;
	}

	.banner-container h1 {
		font-size: clamp(40px, 4.17vw, 60px);
		line-height: clamp(52px, 5.42vw, 78px);
	}

	.banner-line {
		width: 50px;
		height: 6px;
		background-color: #81F6F9;
		margin: 24px 0;
	}

	.banner-label {
		font-size:  clamp(20px, 2.08vw, 30px);
		line-height: clamp(27px, 2.78vw, 40px);
		margin-bottom: 17px;
	}

	.banner-desc {
		font-size: clamp(11px, 1.11vw, 16px);
		line-height: clamp(19px, 1.94vw, 28px);
	}

	.banner-images {
		flex: 1;
		margin-top: 0;
		justify-content: flex-end;
	}

	.banner-images img {
		max-width: 100%;
		width: 100%;
	}
}

/*--------------------------------------------------*/
/* enables-container								*/
/*--------------------------------------------------*/

.enables-container {
	width: 100%;
	padding: 80px 0 70px 0;
	background-color: #F8F9FA;
}

.enables-container .main-container {
	max-width: 1485px;
}

.enables-title {
	font-size: 32px;
	font-weight: bold;
	color: #000;
	text-align: center;
	margin: 0 0 40px 0;
}

.enables-grid {
	display: flex;
	flex-direction: column;
	gap: 35px;
	max-width: 600px;
	margin: auto;
}

.enables-item {
	display: flex;
	flex-direction: column;
	gap: 25px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.enables-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.enables-item:nth-child(2) { transition-delay: 0.15s; }
.enables-item:nth-child(3) { transition-delay: 0.3s; }
.enables-item:nth-child(4) { transition-delay: 0.45s; }

.enables-item-image {
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.enables-item-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-width: 400px;
	margin: auto;
}

.enables-item-title {
	font-size: 25px;
	font-weight: bold;
	line-height: 32px;
	color: #000000;
	margin-bottom: 12px;
}

.enables-item-desc {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

@media all and (min-width:992px) {

	.enables-container {
		padding: 110px 0;
	}

	.enables-title {
		font-size: clamp(36px, 3.89vw, 56px);
		margin-bottom: 60px;
	}

	.enables-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 36px 48px;
		max-width: 100%;
	}

	.enables-item {
		flex-direction: row;
		align-items: center;
		gap: 34px;
	}

	.enables-item:nth-child(2) { transition-delay: 0.15s; }
	.enables-item:nth-child(3) { transition-delay: 0.15s; }
	.enables-item:nth-child(4) { transition-delay: 0.3s; }

	.enables-item-image {
		flex: 0 0 40%;
	}

	.enables-item-image img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.enables-item-content {
		flex: 1;
	}

	.enables-item-title {
		font-size: clamp(20px, 2.22vw, 32px);
		line-height: clamp(28px, 3.06vw, 44px);
		margin-bottom: 20px;
	}

	.enables-item-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(21px, 1.81vw, 26px);
	}
}

/*--------------------------------------------------*/
/* hiw-container									*/
/*--------------------------------------------------*/

.hiw-container {
	width: 100%;
	padding: 72px 0 70px 0;
	background-color: #FFFFFF;
}

.hiw-container .main-container {
	max-width: 1398px;
}

.hiw-inner {
	display: flex;
	flex-direction: column;
	gap: 42px;
	max-width: 600px;
	margin: auto;
	justify-content: space-between;
}

.hiw-title {
	font-size: 32px;
	font-weight: bold;
	color: #000000;
	margin: 0;
}

.hiw-steps {
	display: flex;
	flex-direction: column;
}

.hiw-step {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 18px;
	position: relative;
	padding-bottom: 25px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.hiw-step.animate {
	opacity: 1;
	transform: translateY(0);
}

.hiw-step:nth-child(2) { transition-delay: 0.15s; }
.hiw-step:nth-child(3) { transition-delay: 0.3s; }
.hiw-step:nth-child(4) { transition-delay: 0.45s; }

.hiw-step:last-child {
	padding-bottom: 0;
}

.hiw-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 32px;
	top: 64px;
	bottom: 0;
	border-left: 1px solid #CCCCCC;
}

.hiw-step-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

.hiw-step-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.hiw-step-content {
	padding-top: 18px;
}

.hiw-step-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 38px;
	color: #09090E;
	margin-bottom: 10px;
}

.hiw-step-desc {
	font-size: 16px;
	line-height: 26px;
}

@media all and (min-width:992px) {

	.hiw-container {
		padding: 110px 0;
	}

	.hiw-inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 90px;
		max-width: 100%;
	}

	.hiw-step:not(:last-child)::after {
		left: 39px;
		top: 80px;
	}

	.hiw-step-icon {
		width: clamp(64px, 5.56vw, 80px);
		height: clamp(64px, 5.56vw, 80px);
	}

	.hiw-title {
		font-size: clamp(36px, 3.89vw, 56px);
		flex: 0 0 auto;
		max-width: 435px;
		line-height: clamp(46px, 4.86vw, 70px);
	}

	.hiw-steps {
		flex: 1;
		padding-top: 30px;
		max-width: 775px;
	}

	.hiw-step {
		gap: 42px;
	}

	.hiw-step-title {
		font-size: clamp(20px, 2.22vw, 32px);
		line-height: clamp(30px, 3.33vw, 48px);
		margin-bottom: 15px;
	}

	.hiw-step-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(22px, 1.81vw, 26px);
	}
}

/*--------------------------------------------------*/
/* tour-container									*/
/*--------------------------------------------------*/

.tour-container {
	width: 100%;
	padding: 72px 0 58px 0;
	background-color: #F8F9FA;
	text-align: center;
}

.tour-container .main-container {
	max-width: 1420px;
}

.tour-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 42px;
	color: #000000;
	margin: 0 auto 32px auto;
}

.tour-content {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	background-color: #f0f0f0;
}

.tour-content iframe,
.tour-content object,
.tour-content embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tour-benefits {
	display: flex;
	flex-direction: column;
	gap: 40px;
	text-align: left;
	max-width: 600px;
	margin: 46px auto 0 auto;
}

.tour-benefit-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tour-benefit-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.tour-benefit-item:nth-child(2) { transition-delay: 0.15s; }
.tour-benefit-item:nth-child(3) { transition-delay: 0.3s; }

.tour-benefit-icon {
	width: 28px;
	height: 28px;
	display: block;
	margin-bottom: 18px;
}

.tour-benefit-item h3 {
	font-size: 26px;
	font-weight: bold;
	line-height: 34px;
	color: #202020;
	margin: 0 0 10px 0;
}

.tour-benefit-item p {
	font-size: 16px;
	line-height: 25px;
	color: #202020;
	margin: 0;
}

@media all and (min-width:992px) {

	.tour-container {
		padding: 110px 0 96px 0;
	}

	.tour-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin: 0 auto 46px auto;
	}

	.tour-benefits {
		flex-direction: row;
		gap: 0;
		max-width: 100%;
		margin: 48px auto 0 auto;
	}

	.tour-benefit-item {
		flex: 1;
		padding-left: clamp(24px, 2.26vw, 32.5px);
	}

	.tour-benefit-item:first-child {
		padding-left: 0;
	}

	.tour-benefit-icon {
		width: clamp(24px, 2.08vw, 30px);
		height: clamp(24px, 2.08vw, 30px);
		margin-bottom: 20px;
	}

	.tour-benefit-item h3 {
		font-size: clamp(20px, 2.22vw, 32px);
		line-height: clamp(30px, 3.33vw, 48px);
		margin: 0 0 15px 0;
	}

	.tour-benefit-item p {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(22px, 1.74vw, 25px);
	}
}

/*--------------------------------------------------*/
/* da-capabilities-container						*/
/*--------------------------------------------------*/

.da-capabilities-container {
	width: 100%;
	padding: 72px 0 75px 0;
	background-color: #FFFFFF;
}

.da-capabilities-container .main-container {
	max-width: 1420px;
}

.da-capabilities-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 42px;
	color: #000000;
	text-align: center;
	margin: 0 auto 16px auto;
}

.da-capabilities-subtitle {
	font-size: 16px;
	line-height: 26px;
	color: #202020;
	text-align: center;
	margin: 0 auto 38px auto;
}

.da-capabilities-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.da-capabilities-card {
	background-color: #FFFFFF;
	border: 1px solid #E3E3E3;
	border-radius: 12px;
	padding: 28px 35px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.da-capabilities-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.da-capabilities-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 15px;
	display: block;
}

.da-capabilities-card h3 {
	font-size: 22px;
	font-weight: bold;
	line-height: 36px;
	color: #202020;
	margin: 0 0 10px 0;
}

.da-capabilities-card p {
	font-size: 16px;
	line-height: 26px;
	color: #202020;
	margin: 0;
}

@media all and (min-width:640px) {
	.da-capabilities-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media all and (min-width:992px) {

	.da-capabilities-container {
		padding: 104px 0 110px 0;
	}

	.da-capabilities-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin: 0 auto 20px auto;
	}

	.da-capabilities-subtitle {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(22px, 1.81vw, 26px);
		margin: 0 auto 50px auto;
	}

	.da-capabilities-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 26px;
	}

	.da-capabilities-card {
		border-radius: 8px;
		padding: clamp(28px, 2.92vw, 42px) clamp(28px, 2.78vw, 40px);
	}

	.da-capabilities-icon {
		width: clamp(50px, 4.72vw, 68px);
		height: clamp(50px, 4.72vw, 68px);
		margin-bottom: 27px;
	}

	.da-capabilities-card h3 {
		font-size: clamp(18px, 1.81vw, 26px);
		line-height: clamp(26px, 2.22vw, 32px);
		margin-bottom: 20px;
	}

	.da-capabilities-card p {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(22px, 1.81vw, 26px);
	}
}

/*--------------------------------------------------*/
/* cta-container									*/
/*--------------------------------------------------*/

.cta-text {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-image {
	opacity: 0;
	-webkit-transform: translateX(40px);
	transform: translateX(40px);
	-webkit-transition: opacity 0.6s ease 0.2s, -webkit-transform 0.6s ease 0.2s;
	transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.cta-text.animate {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.cta-image.animate {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.cta-container {
	position: relative;
	width: 100%;
	padding: 70px 0;
	background-repeat: no-repeat;
	background-position-x: 75%;
	background-position-y: center;
	background-size: cover;
	background-image: url(../../Images/solution-da/cta-bg.jpg);
	overflow: hidden;
}

.cta-container .main-container {
	position: relative;
	z-index: 1;
	max-width: 1398px;
}

.cta-content {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}

.cta-text {
	text-align: center;
	max-width: 600px;
	width: 100%;
}

.cta-container .title {
	font-size: 30px;
	font-weight: bold;
	line-height: 46px;
}

.cta-btn {
	display: inline-block;
	margin-top: 63px;
	padding: 16px 28px;
	background-color: #022585;
	color: #FEFEFF;
	font-size: 16px;
	font-weight: bold;
	border-radius: 7px;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.cta-btn:hover {
	background-color: #0B40D1;
}

.cta-btn:active {
	background-color: #000E3A;
}

.cta-btn-desktop {
	display: none;
}

.cta-image {
	width: 100%;
	max-width: 600px;
	margin-top: 30px;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.cta-image img {
	width: 100%;
	height: auto;
	display: block;
}

@media all and (min-width:576px) {
	.cta-container .title {
		text-align: center;
	}
}

@media all and (min-width:992px) {

	.cta-container {
		padding: 110px 0; 
		background-position-x: center;
	}

	.cta-content {
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-align-items: center;
		align-items: center;
		gap: 6.88%;
	}

	.cta-text {
		max-width: 48.73%;
		text-align: left;
	}

	.cta-container .title {
		font-size: clamp(30px, 3.33vw, 48px);
		line-height: clamp(50px, 4.58vw, 66px);
		text-align: left;
	}

	.cta-btn-desktop {
		display: inline-block;
		margin-top: 58px;
	}

	.cta-btn-mobile {
		display: none;
	}

	.cta-image {
		-webkit-flex: 1;
		flex: 1;
		max-width: none;
		margin-top: 0;
		-webkit-align-self: stretch;
		align-self: stretch;
	}
}
