/*# 01) Banner section #*/
section.banner-section {
	display: flex;
	flex-direction: column-reverse;
	margin: auto;
}

section.banner-section > * {
	position: relative;
}
section.banner-section .text-wrapper {
	z-index: 2;
	background: #fff5cd;
}

section.banner-section .background-inner {
	height: 100%;
	width: 100%;
}
section.banner-section .background-inner img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: right;
	object-position: right;
}

@media screen and (width < 992px) {
	section.banner-section {
		display: flex;
		flex-direction: column-reverse;
	}
	
	section.banner-section .text-wrapper {
		background: #fff5cd;
		text-align: center;
	}
	section.banner-section .text-wrapper .d-flex {
		justify-content: center;
	}
	
	section.banner-section .background-inner {
		position: relative;
		width: 100%;
	}
	section.banner-section .background-inner img {
		-o-object-position: center;
		object-position: center;
	}
	
}


/*# 02) Font #*/
.font-purple {
	color: #522e91;
}

.font-darkblue {
	color: #203d6f;
}

.font-lightblue {
	color: #0075c9;
}
.font-yellow {
	color: #ffcb05;
}
.font-orange {
	color: #f58220;
}
.fw-bold {
	font-weight: bold;
}

.font-grey {
	color: #4d565b;
}


/*# 03) button #*/
.btn-primary, .button-primary {
	background-color: #0d6efd;
	color: white;
	padding: 15px;
	border: 0;
}

.button-primary-outline {
	color: #0d6efd;
	background-color: white;
	padding: 15px;
	border: 0;
}

.btn-primary:hover, .button-primary:hover, .button-primary-outline:hover {
	box-shadow: 1px 2px 4px black;
}

.btn-primary:hover, .button-primary:hover {
	background-color: #0d6efd;
	color: white;
}

.button-primary-outline:hover {
	background-color: white;
	color: #0d6efd;
}


/*# 04) Gap #*/
.gap-2 {
	gap: 10px;
}
.gap-3 {
	gap: 15px;
}


/*# 05) Page section links #*/
.page-section-list {
	list-style: none;
	font-size: 12pt;
	display: block;
	height: auto;
	background-color: unset;
}
.page-section-list li {
	padding: 0 0 2em 1em;
	position: relative;
	font-weight: bold;
	color: #522e914e;
}

.page-section-list li.link-topic {
    cursor: pointer;
}

/* Circle dot */
.page-section-list li::before {
	content: "•";
	font-size: 2.5em;
	position: absolute;
	left: -0.2em;
	top: -0.5em;
	color: #522e914e; /* default dot color */
}

/* Vertical line */
.page-section-list li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 1em; /* aligns below the dot */
	height: 100%;
	width: 2px;
	background-color: #ccc; /* line color */
	z-index: -1;
}

/* Optional: remove line from last item */
.page-section-list li:last-child::after {
	display: none;
}
.page-section-list li.active::before {
	color: #522e91; /* active dot color */
}
.page-section-list li.active {
	color: #522e91; /* active text color */
}


/*# 06) Table #*/
.table thead th, #benefit .thead th, 
th#purple-table-header {
    /* #purple-table-header need to put on each th bcoz will be overridden by other !important color class */
	background-color: #522e91 !important; /* Purple */
	color: white !important;
    
	vertical-align: middle !important;
	text-align: center;
}
.table-striped tbody tr:nth-of-type(odd) {
	background-color: #cecece;
}
.table td, .table th {
	text-align: center;
	vertical-align: middle;
}


/*# 07) Others #*/
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}

.bg-lightgrey {
	background-color: #f6f6f6;
}
.bg-lightyellow {
	background-color: #fff1d0;
}

.img-container img {
	border-radius: 60px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
}
@media (max-width: 992px) {
	.img-container img {
		border-radius: 40px;
		-webkit-border-radius: 40px;
		-moz-border-radius: 40px;
		-ms-border-radius: 40px;
		-o-border-radius: 40px;
	}
}

.img-icon {
	width: 60px;
}

.box-container {
	background-color: white;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	padding: 20px;
	box-shadow: 5px 5px 5px #e7e7e7;
}
.box-container:hover {
	box-shadow: 5px 5px 5px #d1d0d0c5;
}

.circle {
	background-color: #ffcb05;
	color: white;
	font-weight: 500;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-weight: bold;
	text-align: center;
	overflow: hidden;
}

.img-circle {
	width: 40px;
	height: 40px;
}


.plan-border {
	width: 100%;
}

a {
	color: #522f91;
	text-decoration: none !important;
}


