html,
body {
	margin: 0;
	padding: 0;
}
body {
	background: #022140 0% 0% no-repeat padding-box;
	font-family: "SF Pro Display", "Open Sans", Roboto, Arial, Inter,
		"Helvetica Neue", sans-serif;
	overscroll-behavior: none;
}

:root {
	--grid-template: repeat(4, 1fr);
}
body::before {
	content: "";
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #044A48 0%, #1A1859 100%);
	top: 0;
}

#main-body {
	position: relative;
}

*[data-href],
a {
	cursor: pointer;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}
button {
	cursor: pointer;
}

.top-myTopnav {
	z-index: 9;
	position: relative;
}

#container {
	/* max-width: 1200px; */
	width: 100%;
	min-height: 90vh;
	margin: auto;
	color: white;
	font-size: initial;
	padding: 25px 16px;
}

a {
	color: white;
	text-decoration: underline;
}

a.block,
.faq-box {
	position: relative;
	/* margin: 5px;
	padding-bottom: 10px; */
	/* background-color: rgba(255, 255, 255, .1); */
	border-radius: 5px;
	overflow: hidden;
	box-sizing: border-box;
	text-decoration: none;
	word-break: break-word;
	vertical-align: top;
}

a.block {
	display: inline-block;
}

a.block > img {
	aspect-ratio: 232 / 182;
	width: 100%;
	object-fit: cover;
	display: block;
	background-color: rgba(255, 255, 255, 0.1);
}
a.block.landscape {
	width: 190px;
}
a.block.landscape > img {
	/* height: 180px; */
	border-radius: 0px;
	object-fit: scale-down;
}

img {
	display: block;
}
/* a.block > div.title > span {
	display: block;
	width: 100%;
	padding: 0px 5px;
	line-height: 1.2;
	color: white;
	text-align: center;
} */
/* a.block > div.title > span:first-of-type {
	margin-top: 5px;
} */
/* a:hover.block > div.title {
	max-height: none;
} */
a:hover.block > div.title > span {
	color: rgba(100, 160, 200, 1);
}

.hidden {
	display: none !important;
}

.expandable > .expand-toggle {
	display: block;
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 18px;
	cursor: pointer;
}
.expandable.show > .expand-toggle {
	transform: rotate(-90deg) scaleY(1.5);
}
.expandable.hide > .expand-toggle {
	transform: rotate(90deg) scaleY(1.5);
}

.faq-box {
	font-size: 16px;

	&:hover {
		color: #24b26b;
	}
}

.faq-box__img {
	position: relative;
	font-size: clamp(1px, 1vw, 16px)
}

.faq-box__img > img {
	position: relatve;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.faq-box__img p {
	position: absolute;
	width: 80%;
	max-height: 70%;
	top: 52%;
	transform: translateY(-50%);
	left: 10%;
	font-size: 1.15em;
	display: none;
}

.faq-box__img p.show {
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

#main-header.header-faq,
#main-header.header-article {
	position: absolute;
	top: 0;
	left: 0;
}

.view-more {
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
}

.article-box__title {
	text-align: center;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	/* border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px; */
}

.body-faq-page .article-container {
	margin-bottom: 0;
}

#page-options .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
}

#page-options a {
	text-decoration: none;

	&.disabled {
		cursor: not-allowed;
		user-select: none;
	}
}

.page-number {
	display: block;
    padding: 10px 16px;
}

.page-number.current {
	padding: 10px 16px;
    background: #fff;
    color: black;
    border-radius: 100px;
    box-shadow: 0px 4px 9px -4px #FFFFFF80;
}

.full-listing.h5 {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media only screen and (min-width: 800px) {
	body {
		font-size: 16px;
	}
	body::before {
		background: linear-gradient(
			rgb(10, 44, 51) 0%,
			rgb(10, 44, 51) 50%,
			rgb(11, 22, 70) 100%
		);
	}
	#main-header {
		backdrop-filter: blur(23px);
		-webkit-backdrop-filter: blur(23px);
	}

	.h5 {
		display: none;
	}

	.navbar {
		background-color: #1f454d;
		width: 230px;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		font-size: 14px;
		color: white;
		transition: width 0.1s;
	}

	.collapsed .navbar {
		width: 100px;
		color: rgba(255, 255, 255, 0.6);
		font-size: 12px;
	}

	.navbar-logo {
		max-width: 128px;
		margin: 40px auto;
	}

	.collapsed .navbar-logo {
		max-width: 80px;
	}

	.navbar-list-container {
		padding: 0 16px;
	}

	.nav-box {
		background-color: #2b4e56;
		border-radius: 4px;
		cursor: pointer;
		overflow: hidden;
		transition: height 0.3s;
	}

	.nav-box.have-sub {
		height: 188px;
		position: relative;
	}

	.collapsed .nav-box {
		text-align: center;
		height: auto !important;
	}

	.nav-box.have-sub > .nav-box__list {
		background-color: #35575e;
	}

	.nav-box + .nav-box {
		margin-top: 8px;
	}

	.nav-box .icon {
		width: 28px;
		margin-right: 8px;
	}

	.nav-box .nav-box__list {
		padding: 8px;
		position: relative;
	}

	.nav-box .nav-box__list:hover {
		background-color: rgba(255, 255, 255, 0.1);
	}

	.nav-box .nav-box__list > * {
		display: inline-block;
		vertical-align: middle;
	}

	.collapsed .nav-box .nav-box__list > * {
		margin: auto;
	}

	.nav-box .arrow {
		width: 24px;
		height: 24px;
		position: absolute;
		top: 50%;
		right: 8px;
		transform: translateY(-50%);
		padding: 4px;
		background-color: rgba(255, 255, 255, 0.1);
		border-radius: 4px;
	}

	.nav-box .arrow img {
		transition: transform 0.3s;
	}

	.nav-box.nav-collapsed {
		height: 47px;
	}

	.nav-box.nav-collapsed .arrow img {
		transform: rotate(180deg);
	}

	.collapsed .arrow,
	.collapsed .nav-box__sub-nav {
		display: none;
	}

	.download-box {
		background-color: rgba(0, 0, 0, 0.1);
		border-radius: 4px;
		margin: 20px 0;
		padding: 16px;
		color: rgba(255, 255, 255, 0.6);
		text-align: center;
		font-size: 14px;
	}

	.collapsed .download-box {
		margin-top: 8px;
		background-color: #2b4e56;
		padding: 8px 0;
	}

	.download-box label {
		margin-bottom: 8px;
		display: block;
	}

	.download-box img {
		width: 28px;
	}

	.download-box .icon-container {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.download-box .icon,
	.collapsed .download-box label span,
	.collapsed .download-box .icon-container {
		display: none;
	}

	.collapsed .download-box .icon {
		display: block;
	}

	.download-box .divider {
		margin: 0px 8px;
		border-width: 0px thin 0px 0px;
		border-style: solid;
		border-color: rgba(0, 0, 0, 0.12);
		background-color: rgba(255, 255, 255, 0.1);
		height: 36px;
	}

	#nav-collapsed-button {
		width: 48px;
		height: 48px;
		background-color: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		margin: 30px auto;
		transition: transform 0.1s;
	}
	#nav-collapsed-button img {
		width: 16px;
	}

	.collapsed #nav-collapsed-button {
		transform: rotate(180deg);
	}

	#body-wrapper {
		padding: 30px;
	}

	#body-wrapper__container {
		max-width: 1200px;
		margin: auto;
	}

	#body-wrapper,
	.r_footer.pc {
		margin-left: 230px;
	}

	.collapsed #body-wrapper,
	.collapsed .r_footer.pc {
		margin-left: 100px;
	}

	.breadcrumb {
		position: relative;
		z-index: 10;
		color: white;
	}

	.breadcrumb > * {
		cursor: pointer;
		display: inline-block;
		vertical-align: middle;
	}

	.banner {
		border-radius: 8px;
		overflow: hidden;
		margin: 20px 0 20px;
	}

	.h5_wrapper {
		width: 80%;
		display: flex;
		border-radius: 8px;
		align-items: center;
        justify-content: center;
		margin: auto;
		gap: 20px;
	}

	.h5_wrapper > * {
		/* min-width: 30%; */
		text-align: center;
	}

	.h5_wrapper button {
		font-weight: bold;
		font-size: 16px;
		height: 60px;
		color: rgba(255, 255, 255, 0.6);
	}

	.h5_wrapper .top-dropdown {
		position: relative;
		cursor: pointer;
	}

	.h5_wrapper .top-dropdown:hover {
		border-color: #fff;
	}

	.h5_wrapper .top-dropdown:hover button {
		color: white;
	}

	.top-dropdown-content {
		display: none !important;
		position: absolute;
		background-color: #0a2c33;
		min-width: 250px;
		width: 100%;
		top: 110%;
		text-align: left;
		padding: 15px;
		z-index: 1;
		border-radius: 8px;
	}

	.h5_wrapper .top-dropdown:hover .top-dropdown-content {
		display: block;
	}

	.top-dropdown-content a {
		text-decoration: none;
		font-weight: bold;
		min-height: 50px;
		display: flex;
		align-items: center;
	}

	.top-dropdown-content a:hover {
		color: #24b26b;
	}

	#container {
		padding: 25px 0;
	}

	.section {
		/* background-color: rgba(255, 255, 255, 0.1); */
		padding: 16px;
		border-radius: 8px;
		margin-bottom: 20px;
	}

	.view-more {
		color: #24b26b;
	}

	.article-container {
		display: block;
		border-radius: 8px;
		overflow: hidden;
		/* margin-bottom: .25rem; */
	}

	.article-container a.block {
		margin: 0;
	}

	a.block:hover {
		color: #24b26b;
	}

	.article-box__title {
		/* display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis; */
		text-align: center;
		padding: 10px;
		background-color: rgba(255, 255, 255, 0.1);
	}
}

@media only screen and (max-width: 799px) {
	body.disable-overflow {
		overflow: hidden;
	}

	.pc {
		display: none;
	}

	#main-body {
		display: flex;
		flex-direction: column;
		height: 100dvh;
		overflow: hidden;
	}

	#body-wrapper {
		flex-grow: 1;
		overflow-y: auto;
	}

	#main-header {
    	background: linear-gradient(to bottom, #08424b, #09404c, #0d374f);
		background: -webkit-linear-gradient(to right, #08424b, #09404c, #0d374f);
	}
	.top-myTopnav {
		position: fixed;
		display: none;
		top: 0;
		left: 0;
		width: 100%;
	}

	#mobileHeaderId.hide {
		display: none;
	}
	.flex-container {
		display: flex;
		flex-direction: column;
		top: 0;
		height: auto;
	}
	.banner {
		background-size: cover;
		height: 3.3rem;
		margin-bottom: 0.2rem;
		margin-top: 0;
	}

	#container {
		width: 100%;
		/* margin-top: 60px; */
		padding-bottom: 1rem !important;
	}
	#container > * {
		box-sizing: border-box;
	}

	div.slideshow ~ div.section {
		padding-top: 0;
	}

	a.block {
		margin: 0;
		padding: 0;
		border-radius: 0;
	}
	a.block {
		width: 100%;
		margin: 10px 0px;
	}
	a.block > div.title {
		max-height: none;
		overflow: unset;
	}
	.view-more {
		text-transform: uppercase;
	}
	.body-faq-page .faq-box {
        padding: 0;
        margin-bottom: 0;
        border-radius: 0;
    }
}
