@charset "utf-8";
html {
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
}
body {
	margin: 0px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	background-color: #FFFFFF;
	min-height: 100%;
	position: relative;
}
a {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
button, textarea, input, select, a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
.logo {
	width: 150px;
	height: auto;
}
.header-title {
	border-left: solid 1px #C4C4D2;
	padding-top: 0px;
}
.header-title h1 {
	color: #101246;
	font-size: 36px;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
.header-title p {
	color: #101246;
	font-size: 20px;
	font-weight: 300;
	margin: 0;
	padding: 0;
}
.header-link {
	text-align: center;
}
.header-link a {
	color: #101246;
	font-size: 16px;
	font-weight: 400;
}
.header-link a:hover {
	color: #4a50ff;
}
.header-link a:active {
	color: #101246;
}
.header-link p {
	margin: 0 0 10px 0;
	padding: 0;
}
.header-link img {
	width: 40px;
	height: auto;
}
.header-info {
	background-color: #E5E5E5;
	font-size: 14px;
}
.header-info i {
	font-size: 24px;
	color: crimson;
	cursor: pointer;
}
.header-info.d-none {
	display: none !important;
}
@media only screen and (max-width: 991px) {
	.logo {
		width: 75px;
	}
	.header-title h1 {
		font-size: 16px;
	}
	.header-title p {
		font-size: 14px;
		font-weight: 400;
	}
	.header-link a {
		font-size: 14px;
	}
	.header-link p {
		margin: 0 0 10px 0;
	}
	.header-link img {
		width: 20px;
	}
}
@media only screen and (max-width: 576px) {
	.header-title h1 {
		font-size: 14px;
	}
	.header-title p {
		font-size: 12px;
	}
	.header-link p {
		margin: 0 0 0px 0;
	}
	.header-link img {
		width: 30px;
		height: auto;
	}
	.header-link a {
		font-size: 12px;
	}
	.header-info {
		position: absolute;;
		top: 150px;
		left: 0;
		z-index: 122;
		background-color: #FFFFFF;
		border: solid 1px #FFF;
		border-radius: 15px;
		margin: 15px;
		-webkit-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.3);
		-moz-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.3);
		box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.3);
	}
	.header-info:after {
		content: "";
		position: absolute;
		top: -15px;
		left: 50%;
		margin-left: -10px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 15px 15px 15px;
		border-color: transparent transparent #ffffff transparent;
	}
	.overlay {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background-color: rgba(0,0,0,0.6);
		z-index: 10;
		transition: all 1s;
    	-webkit-transition: all 1s;
	}
	.close-button {
		position: relative;
		background-color: crimson;
		border-radius: 75px;
		padding: 10px;
		margin-top: 15px;
		font-weight: 700;
		color: #FFFFFF;
		text-align: center;
	}
	.close-button span {
		margin-left: 5px;
	}
	.close-button i {
		font-size: 18px;
		color: #FFFFFF;
	}
}
.scrolling-wrapper {
	overflow-x: auto;
}
.scrolling-wrapper::-webkit-scrollbar {
	display: none;
}
.scrolling-wrapper  {
	-ms-overflow-style: none; 
	scrollbar-width: none;
}
.purpose-container {
	position: relative;
	padding-bottom: 15px;
}
.purpose {
	position: relative;
	padding: 40px;
	color: #FFFFFF;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.purpose:hover {
	opacity: 0.9;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.purpose.active::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -15px;
	border-width: 15px 15px 0;
	border-style: solid;
	border-color: transparent;
	display: block;
	width: 0;
}
.purpose h2 {
	font-size: 24px;
	font-weight: 700;
}
.purpose p {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	margin-top: 20px;
}
.content-container{
	margin-top: -15px;
	padding-top: 15px;
}
@media only screen and (max-width: 1500px) {
	.purpose {
		padding: 25px;
	}
	.purpose h2 {
		font-size: 18px;
		font-weight: 700;
	}
	.purpose p {
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
		margin-top: 15px;
	}
}
@media only screen and (max-width: 991px) {
	.purpose {
		padding: 20px;
		color: #FFFFFF;
		min-width: 90%;
	}
	.purpose h2 {
		font-size: 16px;
		font-weight: 700;
	}
	.purpose p {
		font-size: 14px;
		font-weight: 500;
		line-height: 18px;
		margin-top: 15px;
	}
}
.target-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.target-list li:first-child {
	border-top: solid 1px;
	padding-top: 20px;
}
.target-list li {
	border-bottom: solid 1px;
	padding: 10px 20px 10px 0;
	margin-bottom: 15px;
	float: none;
	width: 100%;
	position: relative;
}
.target-list li h3 {
	font-size: 20px;
	font-weight: 600;
}
.target-list li p {
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
}
.target-list li:hover:after {
	content: "";
	position:absolute;
	width: 0;
	height: 0;
	right: 0;
	top: 50%;
	margin-top: -15px;
	border-style: solid;
	border-width: 15px 0 15px 20px;
}
.target-list .selected:after {
	content: "";
	position:absolute;
	width: 0;
	height: 0;
	right: 0;
	top: 50%;
	margin-top: -15px;
	border-style: solid;
	border-width: 15px 0 15px 20px;
}
.target {
	cursor: pointer;
}
.target-description {
	font-size: 16px;
}
@media only screen and (max-width: 1500px) {
	.target-list li h3 {
		font-size: 16px;
		font-weight: 600;
	}
	.target-list li p {
		font-size: 14px;
		font-weight: 500;
	}
	.target-list li:first-child {
		padding-top: 15px;
	}
	.target-list li {
		padding: 5px 0;
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 991px) {
	.target-list {
		overflow-x: auto;
	}
	.target-list li:first-child {
		border: none;
		padding: 0;
		margin-left: 15px;
	}
	.target-list li {
		border-bottom: none;
		padding: 0;
		margin-bottom: 0;
		border:none;
		float: left;
		text-align: center;
	}
	.target-list li h3 {
		font-size: 16px;
		margin: 0;
		padding: 15px 15px;
		border: solid 1px;
		margin-right: 15px;
		min-width: 125px;
	}
	.target-list li p {
		
	}
	.target-list li:hover:after {
		display: none;
	}
	.target-list .selected:after{
		display: none;
	}
}
.box {
	border: solid 1px #E5E5E5;
	border-radius: 15px;
	background-color: #FFFFFF;
	margin-bottom: 30px;
}
.box .nav {
	width: 101%;
	margin: 0;
	padding: 0;
}
.box .nav .nav-item {
	font-size: 18px;
	width: 33%;
	text-align: left;
	padding-bottom: 15px;
}
.box .nav .nav-item a {
	color: #111444;
	font-size: 18px;
	font-weight: 700;
	padding: 20px 25px;
}
.box .nav .nav-link{
	background-color: #FFFFFF;
	position: relative;
	border-bottom: solid 1px #E5E5E5;
	border-right: solid 1px #E5E5E5;
}
.box .nav li:last-child .nav-link{
	border-right: none;
}
.box .nav .nav-link.active{
	background-color: #E5E5E5;
	position: relative;
}
.box .nav .nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -15px;
	border-width: 15px 15px 0;
	border-style: solid;
	border-color: #E5E5E5 transparent;
	display: block;
	width: 0;
}
.box .nav .nav-link {
	border-radius: 0;
	height: 100%;
}
.box .nav li:last-child{
	border-right: none;
}
.box .nav li:last-child .nav-link{
	border-top-right-radius: 15px;
}
.box .nav li:first-child .nav-link{
	border-top-left-radius: 15px !important;
}
.tab-pane {
	padding: 0 15px;
}
@media only screen and (max-width: 1500px) {
	.box .nav .nav-item a {
		font-size: 14px;
	}
}
@media only screen and (max-width: 991px) {
	.box {
		background-color: inherit;
		border: none;
		border-radius: 0;
	}
	.box .nav {
		width: 100%;
	}
	.box .tab-content {
		background-color: #FFFFFF;
		border: solid 1px #E5E5E5;
		border-radius: 15px;
		margin-right: 15px;
		margin-top: 15px;
	}
	.box .nav .nav-item {
		min-width: 125px;
		text-align: center;
		margin-right: 15px;
	}
	.box .nav .nav-item:last-child {
		margin-right: 0;
	}
	.box .nav .nav-item a {
		font-size: 14px;
		font-weight: 500;
	}
	.box .nav .nav-item a {
		padding: 20px 10px;
	}
	.box .nav .nav-link{
		background-color: #FFFFFF;
		border-radius: 10px;
		border: solid 1px #E5E5E5;
	}
	.box .nav .nav-link.active{
		background-color: #E5E5E5;
		border-color: #E5E5E5;
		border-radius: 10px;
	}
}
.tab-content {
	max-height: 400px;
	overflow-y: auto;
	padding: 30px 20px;
}
.box h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px !important;
}
.content-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-left: solid 5px;
	margin-bottom: 30px;
}
.content-list li {
	border-bottom: solid 1px #E5E5E5;
	padding: 5px 30px 5px 15px;
	font-size: 16px;
	position: relative;
}
.content-list li:last-child {
	border-bottom: none;
}
.content-list .active {
	position: relative;
}
.content-list .active:after {
	position:absolute;
	content: url('../img/check.svg');
	width: 20px;
	height: 20px;
	right: 0;
	top:50%;
	margin-top: -10px;
	color: #000;
}
.content-list .deactive {
	opacity: 0.25;
}
@media only screen and (max-width: 991px) {
	.tab-content {
		max-height: 100%;
		overflow-y: none;
		padding: 30px 0px 0px 0px;
	}
	.box h3 {
		font-size: 16px;
		font-weight: 700;
		margin-bottom: 30px !important;
	}
	.content-list li {
		border-bottom: solid 1px #E5E5E5;
		padding: 5px 30px 5px 15px;
		font-size: 14px;
		position: relative;
	}
}
.ska-thumb {
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 10px;
}
.ska-thumb.ska-deactive {
	opacity: 0.2;
}
.scrollTopBtn{
	display: none;
}
.home-info {
	position: absolute;
	bottom: 50px;
	font-size: 20px;
	color: #373773;
	font-weight: 700;
}
.home-info p {
	padding: 0;
	margin: 0;
	line-height: 34px;
}
@media only screen and (max-width: 991px) {
	.scrollTopBtn{
		display: block;
		position: fixed;
		cursor: pointer;
		color: #fff;
		padding: 6px;
		background-color: #101246;
		text-align: center;
		font-size: 18px;
		width: 35px;
		height: 35px;
		line-height: 20px;
		bottom: 20px;
		right:20px;
		-webkit-border-radius: 5px;
    	-moz-border-radius: 5px;
    	border-radius: 5px;
		opacity: 0.8;
		z-index: 99999 !important;
	}
	.home-info {
		display: none;
	}
}