﻿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: 73px 0px 80px 0px;
    position: relative;
    color: #FFFFFF;
    background: transparent no-repeat center center;
	background-size: cover;
    background-image: url(../../Images/solution-ti/banner-bg.jpg);
	overflow: hidden;
}

.banner-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.banner-content {
	max-width: 100%;
}

.banner-images {
	width: 100%;
	text-align: center;
	opacity: 0;
	transform: translateX(30px);
	-webkit-transition: opacity 0.6s ease, transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
	margin-top: 32px;
}

.banner-images.animate {
	opacity: 1;
	transform: translateX(0);
}

.banner-images img {
	width: 100%;
	max-width: 756px;
	height: auto;
	display: block;
	margin: auto;
}

.banner-label {
	font-size: 22px;
	line-height: 27px;
}

.banner-line {
	width: 50px;
	height: 6px;
	background-color: #81F6F9;
	margin: 22px 0;
}

.banner-container h1 {
	font-size: 36px;
	font-weight: bold;
	line-height: 50px;
	margin: 0;
}

.banner-desc {
	font-size: 16px;
	line-height: 28px;
	margin-top: 20px;
	max-width: 573px;
}

.banner-btn-block {
	display: inline-flex;
	flex-direction: column;
	gap: 16px;
	align-self: center;
	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;
	text-decoration: none;
	-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: 195px 0px 150px 0px;
	}

	.banner-content {
		grid-area: content;
		max-width: 100%;
	}

	.banner-inner {
		display: grid;
		grid-template-columns: min(50%, 500px) 1fr;
		grid-template-rows: auto auto;
		grid-template-areas:
			"content images"
			"buttons images";
		column-gap: 60px;
		row-gap: 0;
		align-items: start;
		max-width: 100%;
	}

	.banner-content {
		grid-area: content;
		max-width: 100%;
		padding-bottom: 40px;
	}

	.banner-images {
		grid-area: images;
		align-self: center;
		text-align: right;
		margin: 0;
	}

	.banner-images img {
		margin: 0 0 0 auto;
	}

	.banner-btn-block {
		grid-area: buttons;
		display: inline-flex;
		flex-direction: row;
		align-self: auto;
		margin-top: 0;
	}

	.banner-container h1 {
		font-size: 48px;
		line-height: 62px;
	}

	.banner-desc {
		margin-top: 25px;
	}
}

/*--------------------------------------------------*/
/* Designed For									*/
/*--------------------------------------------------*/

.designed-for-container {
	padding:70px 0 73px 0;
	background-color: #000F41;
}

.designed-for-header {
	text-align: center;
	margin-bottom: 26px;
}

.designed-for-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #ffffff;
	max-width: 774px;
	margin: 0 auto 20px auto;
}

.designed-for-desc {
	font-size: 16px;
	line-height: 24px;
	color: rgba(255,255,255,0.75);
	max-width: 512px;
	margin: 0 auto;
}

.designed-for-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.df-card {
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 14px;
	padding: 36px 25px;
	opacity: 0;
	transform: translateY(16px);
	-webkit-transition: opacity 0.45s ease, transform 0.45s ease;
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.df-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.df-card:nth-child(1) { transition-delay: 0s; }
.df-card:nth-child(2) { transition-delay: 0.1s; }
.df-card:nth-child(3) { transition-delay: 0.2s; }
.df-card:nth-child(4) { transition-delay: 0.3s; }

.df-icon {
	margin-bottom: 22px;
}

.df-icon img {
	width: 84px;
	height: 84px;
	display: block;
}

.df-title {
	font-size: 22px;
	line-height: 38px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 10px 0;
}

.df-desc {
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
	margin: 0;
}

@media all and (min-width: 640px) {
	.designed-for-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
}

@media all and (min-width: 992px) {
	.designed-for-container {
		padding: 105px 0 102px 0;
	}

	.designed-for-header {
		margin-bottom: clamp(26px, 2.43vw, 35px);
	}

	.designed-for-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(40px, 4.31vw, 62px);
	}

	.designed-for-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(20px, 1.67vw, 24px);
		max-width: 700px;
	}

	.designed-for-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: clamp(8px, 0.69vw, 10px);
	}

	.df-icon img {
		width: clamp(60px, 5.83vw, 84px);
		height: clamp(60px, 5.83vw, 84px);
	}

	.df-title {
		font-size: clamp(16px, 1.53vw, 22px);
		line-height: clamp(28px, 2.64vw, 38px);
		margin: 0 0 clamp(8px, 0.83vw, 12px) 0;
	}

	.df-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(20px, 1.67vw, 24px);
	}
}

/*--------------------------------------------------*/
/* Benefits										*/
/*--------------------------------------------------*/

.benefits-container {
	padding: 72px 0 75px 0;
	background-color: #F8F9FA;
}

.benefits-container .main-container {
	max-width: 1478px;
}

.benefits-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
	text-align: center;
	margin: 0 0 25px 0;
}

.benefits-inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 600px;
	margin: auto;
}

.benefits-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bn-card {
	background: #ffffff;
	border: 1px solid #DCDEE3;
	border-radius: 12px;
	padding: 45px 30px;
	opacity: 0;
	transform: translateY(16px);
	-webkit-transition: opacity 0.45s ease, transform 0.45s ease;
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.bn-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.bn-card:nth-child(1) { transition-delay: 0s; }
.bn-card:nth-child(2) { transition-delay: 0.1s; }
.bn-card:nth-child(3) { transition-delay: 0.15s; }
.bn-card:nth-child(4) { transition-delay: 0.2s; }

.bn-icon {
	margin-bottom: 14px;
}

.bn-icon img {
	width: 28px;
	height: 28px;
	display: block;
}

.bn-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 38px;
	color: #202020;
	margin: 0 0 8px 0;
}

.bn-desc {
	font-size: 16px;
	line-height: 24px;
	color: #202020;
	margin: 0;
}

.benefits-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

@media all and (min-width: 992px) {
	.benefits-container {
		padding: clamp(66px, 7.5vw, 108px) 0;
	}

	.benefits-title {
		font-size: clamp(28px, 3.33vw, 48px);
		line-height: clamp(38px, 4.31vw, 62px);
		margin-bottom: clamp(28px, 2.78vw, 40px);
	}

	.benefits-inner {
		flex-direction: row;
		gap: 20px;
		align-items: center;
		max-width: 100%;
	}

	.benefits-grid {
		flex: 1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: clamp(12px, 1.11vw, 16px);
	}

	.benefits-image {
		flex: 1;
	}

	.bn-card {
		padding: clamp(24px, 3.13vw, 45px) clamp(22px, 2.08vw, 30px);
	}

	.bn-title {
		font-size: clamp(18px, 1.53vw, 22px);
		line-height: clamp(26px, 2.64vw, 38px);
		margin: 0 0 8px 0;
	}

	.bn-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(22px, 1.67vw, 24px);
	}
}

/*--------------------------------------------------*/
/* dollhouse container								*/
/*--------------------------------------------------*/

.dollhouse-container {
	width: 100%;
	padding: 70px 0 76px 0;
	background-color: #E8EBF1;
	text-align: center;
}

.dollhouse-container .main-container {
	max-width: 1420px;
}

.dollhouse-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 42px;
	color: #000000;
	max-width: 774px;
	margin: 0 auto 20px auto;
}

.dollhouse-subtitle {
	font-size: 16px;
	line-height: 24px;
	color: #202020;
	max-width: 600px;
	margin: 0 auto 32px auto;
}

.dollhouse-content {
	position: relative;
	padding-bottom: 560px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.dollhouse-content iframe,
.dollhouse-content object,
.dollhouse-content embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media all and (min-width:992px) {

	.dollhouse-container {
		padding: 110px 0;
	}

	.dollhouse-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin: 0 auto 30px auto;
	}

	.dollhouse-subtitle {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(22px, 1.81vw, 26px);
		margin: 0 auto 36px auto;
	}

	.dollhouse-content {
		padding-bottom: 56.25%;
	}
}


/*--------------------------------------------------*/
/* What's Included									*/
/*--------------------------------------------------*/

.whats-included-container {
	padding: 72px 0 80px 0;
	background-color: #FFFFFF;
}

.whats-included-title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 40px;
	color: #000000;
	margin: 0 auto 45px auto;
	max-width: 774px;
}

.whats-included-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 500px;
	margin: auto;
}

.wi-item {
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transition: opacity 0.5s ease, transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.wi-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.wi-image {
	width: 100%;
}

.wi-image img {
	width: 100%;
	height: auto;
	display: block;
}

.wi-content {
	padding: 0;
}

.wi-title {
	font-size: 26px;
	font-weight: bold;
	line-height: 34px;
	color: #202020;
	margin: 0 0 8px 0;
}

.wi-desc {
	font-size: 16px;
	line-height: 24px;
	color: #202020;
	margin: 0 0 16px 0;
}

@media all and (min-width: 992px) {

	.whats-included-container {
		padding: 110px 0;
	}

	.whats-included-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin-bottom: clamp(50px, 4.44vw, 64px);
	}

	.whats-included-list {
		gap: clamp(40px, 3.75vw, 54px);
		max-width: 100%;
	}

	.wi-item {
		flex-direction: row;
		align-items: center;
		gap: clamp(40px, 5.56vw, 80px);
	}

	.wi-item.wi-image-right {
		flex-direction: row;
	}

	.wi-item.wi-image-left {
		flex-direction: row-reverse;
	}

	.wi-image {
		width: 50%;
		order: 0;
	}

	.wi-content {
		width: 50%;
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.wi-title,
	.wi-desc {
		max-width: 500px;
		width: 100%;
		text-align: left;
	}

	.wi-title {
		font-size: clamp(26px, 2.5vw, 36px);
		line-height: clamp(34px, 2.64vw, 38px);
		margin-bottom: clamp(8px, 1.32vw, 19px);
	}

	.wi-desc {
		font-size: clamp(14px, 1.11vw, 16px);
		line-height: clamp(22px, 1.74vw, 25px);
	}
}

/*--------------------------------------------------*/
/* Key Features										*/
/*--------------------------------------------------*/

.kf-container {
	width: 100%;
	padding: 74px 0 79px 0;
	background: url(../../Images/solution-ti/kf-bg.png) no-repeat center center;
	background-size: cover;
	text-align: center;
}

.kf-container .main-container {
	max-width: 1158px;
}

.kf-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #ffffff;
	margin: 0 0 25px 0;
}

.kf-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.kf-card {
	background: #FFFFFF;
	border-radius: 14px;
	padding: 40px 30px;
	text-align: left;
	opacity: 0;
	transform: translateY(16px);
	-webkit-transition: opacity 0.45s ease, transform 0.45s ease;
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.kf-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.kf-icon {
	margin-bottom: 7px;
}

.kf-icon img {
	width: 52px;
	height: 52px;
	display: block;
}

.kf-card-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 30px;
	color: #202020;
	margin: 0 0 8px 0;
}

.kf-card-desc {
	font-size: 16px;
	line-height: 24px;
	color: #202020;
	margin: 0;
}

@media all and (min-width: 640px) {
	.kf-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
}

@media all and (min-width: 992px) {

	.kf-container {
		padding: 108px 0 106px 0;
	}

	.kf-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin-bottom: clamp(36px, 3.47vw, 50px);
	}

	.kf-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: clamp(14px, 2.08vw, 30px);
	}

	.kf-card {
		border-radius: 8px;
		padding: clamp(28px, 2.92vw, 42px) clamp(28px, 2.78vw, 40px);
	}

	.kf-icon img {
		width: clamp(48px, 4.17vw, 60px);
		height: clamp(48px, 4.17vw, 60px);
	}

	.kf-card-title {
		font-size: clamp(20px, 1.53vw, 22px);
		line-height: clamp(26px, 2.08vw, 30px);
		margin-bottom: clamp(8px, 0.83vw, 12px);
	}

	.kf-card-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(22px, 1.67vw, 24px);
	}
}

/*--------------------------------------------------*/
/* CTA container									*/
/*--------------------------------------------------*/

.ti-cta-container {
	padding: 72px 0 92px 0;
	background-color: #FFFFFF;
}

.ti-cta-container .main-container {
	max-width: 1158px;
}

.ti-cta-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.ti-cta-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #000000;
	margin: 0;
	text-align: center;
}

.ti-cta-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

.ti-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;
}

.ti-cta-container .btn-talk-expert {
	background-color: #000F41;
	border-color: #000F41;
	color: #FFFFFF;
}

.ti-cta-container .btn-talk-expert:hover {
	background-color: #1a2f6e;
	border-color: #1a2f6e;
}

.ti-cta-container .btn-place-order {
	background-color: transparent;
	border-color: #000F41;
	color: #000F41;
}

.ti-cta-container .btn-place-order:hover {
	background-color: rgba(0, 15, 65, 0.08);
}

.ti-cta-image img {
	width: 100%;
	max-width: 415px;
	margin: auto;
	height: auto;
	display: block;
	border-radius: 16px;
	object-fit: cover;
}

@media all and (min-width: 992px) {

	.ti-cta-container {
		padding: 90px 0 100px 0;
	}

	.ti-cta-inner {
		display: grid;
		grid-template-columns: 1fr min(415px, 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;
	}

	.ti-cta-content {
		grid-area: content;
		align-self: end;
	}

	.ti-cta-image {
		grid-area: image;
		align-self: center;
	}

	.ti-cta-buttons {
		grid-area: buttons;
		flex-direction: row;
		justify-content: flex-start;
		align-self: start;
		margin-top: 0px;
	}

	.ti-cta-title {
		font-size: clamp(32px, 3.33vw, 48px);
		line-height: clamp(42px, 4.31vw, 62px);
		margin-bottom: 0;
		text-align: left;
	}
}
