﻿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-pci/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: 612px;
	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: 124px 0px 131px 0px;
	}

	.banner-content {
		grid-area: content;
		max-width: 100%;
	}

	.banner-inner {
		display: grid;
		grid-template-columns: min(50%, 656px) 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;
	}
}

/*--------------------------------------------------*/
/* What's Included								*/
/*--------------------------------------------------*/

.whats-included-container {
	padding: 75px 0 81px 0;
	background-color: #F4F4F6;
}

.whats-included-title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 42px;
	color: #000000;
	margin: 0 0 42px 0;
}

.whats-included-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 600px;
	margin: auto;
}

.wi-item {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	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%;
	flex-shrink: 0;
	order: -1;
	padding: 38px 24px 0 24px;
}

.wi-image img {
	width: 100%;;
	height: auto;
	max-width: 400px;
	margin: auto;
	display: block;
	object-fit: cover;
}

.wi-content {
	padding: 36px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wi-title {
	font-size: 25px;
	font-weight: bold;
	line-height: 32px;
	color: #000000;
	margin: 0 0 8px 0;
}

.wi-desc {
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	margin: 0;
}

@media all and (min-width:992px) {

	.whats-included-container {
		padding: clamp(75px, 7.22vw, 104px) 0 clamp(75px, 7.08vw, 102px) 0;
	}

	.whats-included-title {
		font-size: clamp(32px, 3.75vw, 54px);
		margin-bottom: clamp(42px, 5vw, 72px);
	}

	.whats-included-list {
		gap: 20px;
		max-width: 100%;
		align-items: center;
	}

	.wi-item {
		flex-direction: row;
		align-items: stretch;
		max-height: 477px;
		width: 100%;
		padding: 0 6%;
		gap: 5%;
	}

	.wi-item.wi-image-right {
		flex-direction: row;
	}

	.wi-item.wi-image-left {
		flex-direction: row-reverse;
	}

	.wi-image {
		width: 50%;
		order: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: clamp(30px, 3.26vw, 47px) 0;
	}

	.wi-image img {
		max-width: 625px;
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.wi-content {
		width: 50%;
		padding: clamp(30px, 3.26vw, 47px) 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.wi-title,
	.wi-desc {
		max-width: 420px;
		width: 100%;
		text-align: left;
	}

	.wi-title {
		font-size: clamp(18px, 1.81vw, 26px);
		line-height: clamp(24px, 2.36vw, 34px);
		margin-bottom: 12px;
	}
}


/*--------------------------------------------------*/
/* Key Features									*/
/*--------------------------------------------------*/

.key-features-container {
	padding: 70px 0 85px 0;
	background: url(../../Images/solution-pci/cta-bg.jpg) no-repeat center center;
	background-size: cover;
}

.key-features-container .main-container{
	max-width: 1550px;
}

.key-features-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 42px;
	text-align: center;
	color: #ffffff;
	margin: 0 0 32px 0;
}

.key-features-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kf-card {
	background: rgba(255,255,255, 0.16);
	border: 1px solid rgba(178, 178, 178, 0.16);
	border-radius: 14px;
	padding: 38px 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;
}

.kf-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.kf-card:nth-child(1) { transition-delay: 0s; }
.kf-card:nth-child(2) { transition-delay: 0.1s; }
.kf-card:nth-child(3) { transition-delay: 0.2s; }
.kf-card:nth-child(4) { transition-delay: 0.3s; }

.kf-icon {
	margin-bottom: 13px;
}

.kf-icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.kf-title {
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 15px 0;
}

.kf-desc {
	font-size: 16px;
	line-height: 25px;
	color: #FFFFFF;
	margin: 0;
}

.kf-btn-block {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.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;
}

.kf-btn-block .btn-talk-expert {
	background-color: #81F6F9;
	border-color: #81F6F9;
	color: #000000;
}

.kf-btn-block .btn-talk-expert:hover {
	background-color: #DBFEFF;
	border-color: #DBFEFF;
}

.kf-btn-block .btn-talk-expert:active {
	background-color: #00DDE3;
	border-color: #00DDE3;
}

.kf-btn-block .btn-place-order {
	background-color: transparent;
	border-color: #81F6F9;
	color: #81F6F9;
}

.kf-btn-block .btn-place-order:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

.kf-btn-block .btn-place-order:active {
	background-color: rgba(255, 255, 255, 0.25);
}

@media all and (min-width: 640px) {
	.key-features-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
	gap: 14px;
	}
}

@media all and (min-width: 992px) {
	.key-features-container {
		padding: clamp(70px, 7.64vw, 110px) 0 clamp(70px, 6.74vw, 97px) 0;
	}

	.key-features-title {
		font-size: clamp(32px, 3.75vw, 54px);
		margin-bottom: clamp(32px, 5vw, 72px);
	}

	.key-features-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: clamp(14px, 1.32vw, 19px);
	}

	.kf-card {
		padding: clamp(30px, 2.78vw, 40px) clamp(26px, 2.64vw, 38px);
	}

	.kf-title {
		font-size: clamp(22px, 2.36vw, 34px);
		line-height: clamp(30px, 2.92vw, 42px);
		margin-bottom: 15px;
	}

	.kf-desc {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(20px, 1.67vw, 24px);
	}
}

/*--------------------------------------------------*/
/* Use Cases									*/
/*--------------------------------------------------*/

.use-cases-container {
	padding: 66px 0 68px 0;
	background-color: #1a2744;
	background-image: url(../../Images/solution-pci/use-cases-bg.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}

.use-cases-container .main-container {
	position: relative;
	max-width: 1048px;
}

.use-cases-grid {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 600px;
	margin: auto;
}

.uc-card {
	background: #ffffff;
	border-radius: 14px;
	padding: 30px 26px 40px 26px;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transition: opacity 0.5s ease, transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.uc-card:nth-child(2) {
	transition-delay: 0.12s;
}

.uc-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.uc-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.uc-icon img {
	width: 70px;
	height: 70px;
	display: block;
}

.uc-title {
	font-size: 25px;
	font-weight: bold;
	line-height: 42px;
	color: #202020;
	margin: 0 0 20px 0;
}

.uc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.uc-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 16px;
	line-height: 22px;
	color: #202020;
}

.uc-list li::before {
	content: '';
	flex-shrink: 0;
	margin-top: 4px;
	width: 17px;
	height: 17px;
	background-image: url(../../Images/solution-pci/icon-check.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

@media all and (min-width: 992px) {
	.use-cases-container {
		padding: clamp(66px, 7.78vw, 112px) 0 clamp(66px, 7.5vw, 108px) 0;
	}

	.use-cases-grid {
		flex-direction: row;
		gap: clamp(14px, 2.22vw, 32px);
		max-width: 100%;
	}

	.uc-card {
		flex: 1;
		padding: clamp(30px, 2.78vw, 40px) clamp(30px, 4.31vw, 62px) clamp(40px, 3.47vw, 50px);
	}

	.uc-icon img {
		width: clamp(60px, 5.83vw, 84px);
		height: clamp(60px, 5.83vw, 84px);
	}

	.uc-title {
		font-size: clamp(22px, 2.22vw, 32px);
		line-height: clamp(30px, 2.92vw, 42px);
		margin: 0 0 clamp(16px, 1.6vw, 23px) 0;
		display: flex;
		align-items: center;
	}

	.uc-list {
		gap: clamp(6px, 0.69vw, 10px);
	}

	.uc-list li {
		font-size: clamp(13px, 1.11vw, 16px);
		line-height: clamp(20px, 1.74vw, 25px);
	}
}
