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: 54px 0px 105px 0px;
	position: relative;
	color: #FFFFFF;
	background: transparent no-repeat center center;
	background-size: cover;
	background-position-x: 66%;
	background-image: url(../../Images/get-started-portal/banner-bg.jpg);
}

.banner-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 39, 68, 0.55);
	z-index: 0;
}

.banner-container .main-container {
	position: relative;
	z-index: 1;
	max-width: 1505px;
}

.banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.banner-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 38px;
	color: #ffffff;
	text-align: center;
	margin-bottom: 40px;
}

@media all and (min-width:992px) {

	.banner-container {
		padding: 128px 0px 168px 0px;
	}

	.banner-title {
		font-size: 52px;
		line-height: 62px;
		margin-bottom: 76px;
	}
}


/*--------------------------------------------------*/
/* cards                                            */
/*--------------------------------------------------*/

.cards-wrapper {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
	max-width: 600px;
	margin: auto;
}

.card-item {
	background: #ffffff;
	border-radius: 20px;
}

.card-content {
	padding: 46px 40px 42px 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.card-icon {
	margin-bottom: 20px;
	width: 100%;
	text-align: center;
}

.card-icon img {
	width: 70px;
	height: auto;
}

.card-title {
	font-size: 28px;
	line-height: 30px;
	font-weight: bold;
	color: #00175F;
	margin-bottom: 10px;
}

.card-desc {
	font-size: 16px;
	color: #000722;
	line-height: 26px;
	margin-bottom: 30px;
	flex-grow: 1;
}

.card-btn {
	display: inline-flex;
	align-items: center;
	gap: 0px;
	padding: 14px 18px;
	border-radius: 6px;
	background: #F6F6F6;
	color: #00175F;
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
	cursor: pointer;
}

.card-btn:hover {
	background: #00175f;
	color: #ffffff;
	text-decoration: none;
}

.card-btn:hover .card-btn-arrow {
	filter: brightness(0) invert(1);
}

.card-btn-arrow {
	width: 25px;
	height: 25px;
	transition: filter 0.2s;
}

@media all and (min-width:992px) {

	.cards-wrapper {
		flex-direction: row;
		gap: 40px;
		max-width: 100%;
	}

	.card-item {
		flex: 1;
		width: 100%;
		min-height: 574px;
		max-width: 455px;
	}

	.card-content {
		padding: 80px 11.429% 65px 11.429%;
		height: 100%;
	}

	.card-icon img {
		width: 80px;
	}

	.card-title {
		font-size: 34px;
		line-height: 41px;
		margin-bottom: 18px;
	}

	.card-btn {
		margin-top: auto;
	}
}
