

/*
TABLE OF CONTENT
-----------------------------------------------
1.  BASE -- button, headings, colors, fonts
*/

/* BASE
-----------------------------------
Style for grab font source, see mixin.scss for mixin function */

@font-face {
	font-family: "metropolis_regular";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/metropolis-regular-webfont.woff") format("woff"), url("../fonts/metropolis-regular-webfont.woff2") format("woff2");
}

@font-face {
	font-family: "metropolis_bold";
	font-style: normal;
	font-weight: bold;
	src: url("../fonts/metropolis-bold-webfont.woff") format("woff"), url("../fonts/metropolis-bold-webfont.woff2") format("woff2");
}

@font-face {
	font-family: "metropolis_light";
	font-style: normal;
	font-weight: 100;
	src: url("../fonts/metropolis-light-webfont.woff") format("woff"), url("../fonts/metropolis-light-webfont.woff2") format("woff2");
}

/* BASE
-----------------------------------
Style for Base */

body {
	font-family: "metropolis_regular", "Segoe UI", arial, sans-serif;
	min-height: 100%;
	line-height: 24px;
	font-size: 16px;
	color: #000;
	display: flex;
	flex-direction: column;
	background: #f7f8f9;
	background: -webkit-linear-gradient(30deg, #e4e4e7, #f7f8f9);
	background: -o-linear-gradient(30deg, #e4e4e7, #f7f8f9);
	background: -moz-linear-gradient(30deg, #e4e4e7, #f7f8f9);
	background: linear-gradient(30deg, #e4e4e7, #f7f8f9);
}

.wrapper {
	flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "metropolis_bold", "Segoe UI", arial, sans-serif;
	color: #000;
}

h1 {
	font-size: 42px;
	line-height: 46px;
	color: #72bf44;
	margin-top: 0px;
	margin-bottom: 24px;
}

h2 {
	font-size: 30px;
	line-height: 42px;
	color: #72bf44;
	margin-top: 0px;
	margin-bottom: 24px;
}

h3 {
	font-size: 24px;
	line-height: 36px;
	margin-top: 0px;
	margin-bottom: 24px;
}

h4 {
	font-size: 18px;
	line-height: 24px;
}

p {
	margin-top: 0px;
	margin-bottom: 24px;
}

/* Header
-----------------------------
styling header */

.header {
	position: relative;
	z-index: 21;
	background: white;
}

.header-left,
.header-middle {
	float: left;
}

.header-right {
	float: right;
}

.header-left {
	padding-top: 23px;
	padding-bottom: 20px;
	width: 135px;
}

@media (min-width: 992px) {
	.header-left {
		padding-top: 21px;
		padding-bottom: 21px;
		width: auto;
	}
}

.header-left_logo {
	display: inline-block;
	margin-right: 24px;
}

.header-left_logo img {
	height: 18px;
	vertical-align: top;
}

@media (min-width: 992px) {
	.header-left_logo img {
		height: 26px;
	}
}

.header-left_home {
	display: inline-block;
}

.header-left_home a {
	display: block;
	height: 31px;
}

.header-left_home span {
	vertical-align: middle;
	font-size: 20px;
	color: #72bf44;
	line-height: 26px;
}

@media (min-width: 992px) {
	.header-middle {
		position: absolute;
		top: 0px;
		left: 50%;
		transform: translateX(-35%);
		width: 60%;
	}
}

@media (min-width: 1240px) {
	.header-middle {
		transform: translateX(-42%);
	}
}

.header-middle .menu {
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0px;
	background: #f5f5f5;
	width: 100%;
}

@media (min-width: 992px) {
	.header-middle .menu {
		opacity: 1;
		visibility: visible;
		position: static;
		background: none;
	}
}

.header-middle .menu.is-open {
	opacity: 1;
	visibility: visible;
}

.header-middle .menu_dropdown {
	position: relative;
	border-bottom: 1px solid #e1e1e1;
}

@media (min-width: 992px) {
	.header-middle .menu_dropdown {
		float: left;
		margin-right: 20px;
		border-bottom: 0;
	}
}

.header-middle .menu_dropdown>a {
	padding-top: 21px;
	padding-left: 15px;
	padding-bottom: 21px;
	padding-right: 60px;
	display: block;
	line-height: 28px;
	font-family: "metropolis_light", "Segoe UI", arial, sans-serif;
	color: #000;
	-webkit-backface-visibility: hidden;
	transition: all 0.2s ease-out;
	text-decoration: none;
}

@media (min-width: 992px) {
	.header-middle .menu_dropdown>a {
		padding-left: 0px;
		padding-right: 30px;
	}
}

.header-middle .menu_dropdown>span {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 70px;
	width: 50px;
	line-height: 69px;
	text-align: center;
	-webkit-backface-visibility: hidden;
	transition: all 0.2s ease-out;
	cursor: pointer;
	background: #eee;
}

@media (min-width: 992px) {
	.header-middle .menu_dropdown>span {
		background: transparent;
		height: 74px;
		width: 20px;
		cursor: auto;
	}
}

@media (min-width: 992px) {
	.header-middle .menu_dropdown:hover>a,
	.header-middle .menu_dropdown:hover>span {
		color: #72bf44;
		text-decoration: none;
	}
	.header-middle .menu_dropdown:hover .menu_sub {
		opacity: 1;
		visibility: visible;
		border-top: 5px solid #72bf44;
		display: block;
	}
}

.header-middle .menu_sub {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	display: none;
	opacity: 0;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	transition: all 0.2s ease-out;
}

@media (min-width: 992px) {
	.header-middle .menu_sub {
		position: absolute;
		top: 100%;
		left: 50%;
		display: block;
		transform: translateX(-50%);
		background: rgba(255, 255, 255, 0.9);
		border-top: 1px solid #72bf44;
		width: 200px;
	}
}

@media (min-width: 1240px) {
	.header-middle .menu_sub {
		width: 300px;
	}
}

.header-middle .menu_sub.is-active {
	display: block;
	opacity: 1;
	visibility: visible;
	border-top: 1px solid #e1e1e1;
}

.header-middle .menu_sub>li {
	position: relative;
}

.header-middle .menu_sub>li:hover>a {
	background: white;
}

.header-middle .menu_sub>li:hover ul {
	opacity: 1;
	visibility: visible;
	left: 100%;
}

.header-middle .menu_sub-arrow {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 54px;
	height: 54px;
	text-align: center;
	line-height: 57px;
	cursor: pointer;
}

@media (min-width: 992px) {
	.header-middle .menu_sub-arrow {
		cursor: auto;
		width: 39px;
		height: 39px;
		line-height: 42px;
	}
}

.header-middle .menu_sub ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: disc;
	opacity: 0;
	visibility: hidden;
	display: none;
	height: auto;
	-webkit-backface-visibility: hidden;
	transition: all 0.2s ease-out;
}

@media (min-width: 992px) {
	.header-middle .menu_sub ul {
		background: rgba(255, 255, 255, 0.9);
		list-style: none;
		position: absolute;
		left: 101%;
		top: 0px;
		display: block;
		width: 200px;
	}
}

@media (min-width: 1240px) {
	.header-middle .menu_sub ul {
		width: 300px;
	}
}

.header-middle .menu_sub ul.is-active {
	opacity: 1;
	visibility: visible;
	display: block;
}

.header-middle .menu_sub ul a {
	padding: 15px 40px 15px 45px;
}

@media (min-width: 992px) {
	.header-middle .menu_sub ul a {
		padding: 8px 40px 8px 30px;
	}
}

.header-middle .menu_sub a {
	display: block;
	line-height: 24px;
	padding: 15px 60px 15px 30px;
	color: #000;
	font-family: "metropolis_light", "Segoe UI", arial, sans-serif;
}

@media (min-width: 992px) {
	.header-middle .menu_sub a {
		padding: 8px 40px 8px 30px;
	}
}

.header-middle .menu_sub a:hover {
	text-decoration: none;
	background: white;
}

.nav-icon {
	width: 15px;
	height: 10px;
	position: relative;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
	background: none;
	border: 0;
	outline: none;
	box-shadow: none;
	margin: 28px 10px;
	padding: 0px;
}

@media (min-width: 992px) {
	.nav-icon {
		margin: 31px 40px;
	}
}

.nav-icon span {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background: #72bf44;
	transform: rotate(0deg);
	left: 0px;
	opacity: 1;
	transition: .25s ease-out;
}

.nav-icon span:nth-child(1) {
	top: 0px;
}

.nav-icon span:nth-child(2) {
	top: 4px;
}

.nav-icon span:nth-child(3) {
	top: 8px;
}

.nav-icon.open span:nth-child(1) {
	top: 4px;
	transform: rotate(135deg);
}

.nav-icon.open span:nth-child(2) {
	top: 4px;
	opacity: 0;
	left: -15px;
}

.nav-icon.open span:nth-child(3) {
	top: 4px;
	transform: rotate(-135deg);
}

.header-right .language {
	position: relative;
	cursor: pointer;
}

.header-right .language_selector {
	margin-top: 15px;
	padding-left: 10px;
	padding-right: 10px;
	width: 95px;
}

@media (min-width: 992px) {
	.header-right .language_selector {
		margin-top: 18px;
	}
}

.header-right .language_selector p {
	margin: 0;
	padding: 0;
	line-height: 36px;
	display: inline-block;
	margin-right: 5px;
}

.header-right .language_selector p .flag {
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	margin-right: 5px;
	width: 16px;
	line-height: 36px;
	height: 36px;
	vertical-align: top;
}

.header-right .language_selector p.lang-en .flag {
	background-image: url("../images/default/icon-flag-en.png");
}

.header-right .language_selector p.lang-id .flag {
	background-image: url("../images/default/icon-flag-id.png");
}

.header-right .language .languages {
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0px;
	opacity: 0;
	visibility: hidden;
}

.header-right .language .languages.open {
	opacity: 1;
	visibility: visible;
}

.header-right .language .languages li.is-active {
	display: none;
}

.header-right .language .languages .lang-list {
	margin: 0;
	padding: 0;
	display: block;
	line-height: 36px;
	background: #e6e6e6;
	color: black;
	padding-left: 10px;
	padding-right: 10px;
	width: 95px;
}

.header-right .language .languages .lang-list:hover {
	background: #72bf44;
	text-decoration: none;
	color: black;
}

.header-right .language .languages .lang-list .flag {
	background-position: center center;
	background-repeat: no-repeat;
	display: inline-block;
	margin-right: 5px;
	width: 16px;
	line-height: 36px;
	height: 36px;
	vertical-align: top;
}

.header-right .language .languages .lang-list.lang-en .flag {
	background-image: url("../images/default/icon-flag-en.png");
}

.header-right .language .languages .lang-list.lang-id .flag {
	background-image: url("../images/default/icon-flag-id.png");
}

.header-right .language:hover .language_selector {
	background: #e6e6e6;
}


/* FOOTER
-------------------------
set footer styling */

.footer_wrapper {
	background: url("../images/default/bg-footer.jpg") left center no-repeat;
	background-size: cover;
	background-color: #0a0d10;
	padding-top: 60px;
	padding-bottom: 30px;
	text-align: center;
}

@media (min-width: 992px) {
	.footer_wrapper {
		text-align: left;
	}
}

.footer_logo-bottom {
	margin-bottom: 30px;
}

.footer_logo-bottom img {
	height: 26px;
}

.footer_address,
.footer_contact {
	margin-bottom: 30px;
}

.footer p,
.footer a {
	color: #aeaeae;
	font-size: 15px;
	padding: 0;
	margin: 0;
	font-family: "metropolis_light", "Segoe UI", arial, sans-serif;
}

.footer p.copy {
	text-align: center;
	padding-top: 30px;
	font-size: 12px;
}

.footer a {
	transition: all 0.2s ease-out;
}

.footer a span {
	display: inline-block;
	margin-right: 10px;
}

.footer a:hover {
	color: white;
}

/*Section
-----------------------------
styling section */

.banner-top-wrapper {
	height: 330px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	padding-top: 240px;
}

@media (min-width: 992px) {
	.banner-top-wrapper {
		padding-top: 268px;
	}
}

.banner-top-wrapper::before {
	content: "";
	height: 115px;
	width: 100%;
	background: #f1f2f3;
	position: absolute;
	left: 0;
	bottom: 0;
}

@media (min-width: 992px) {
	.banner-top-wrapper::before {
		background: rgba(255, 255, 255, 0.8);
	}
}

.banner-top_title {
	font-size: 30px;
	font-family: "metropolis_bold", "Segoe UI", arial, sans-serif;
	margin: 0;
	font-weight: normal;
	padding-top: 0px;
	color: black;
	position: relative;
	margin-bottom: 30px;
}

@media (min-width: 641px) {
	.banner-top_title:before {
		content: '';
		background: #72bf44;
		width: 50px;
		height: 2px;
		position: absolute;
		bottom: -10px;
		left: 0px;
	}
}

.section-content {
	margin-top: 50px;
	margin-bottom: 50px;
}

.section-content--has-subs .row {
	display: block;
	display: flex;
	flex-wrap: wrap;
}

.section-image-logo {
	background-image: url("../images/default/logo-transparent.png");
	background-repeat: no-repeat;
	background-position: 100% 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (min-width: 641px) {
	.section-image-logo {
		background-position: -72px 120px;
	}
}

@media (min-width: 992px) {
	.section-image-logo {
		background-position: 20% 60px;
	}
}

/* HeaderSlider
-----------------------------
styling slider */

.tp-caption {
	white-space: nowrap;
	font-size: 2.8125em;
}

.tp-caption-bold {
	color: white;
	font-family: "metropolis_bold", "Segoe UI", arial, sans-serif;
	line-height: 1.3;
}

.tp-caption-light {
	color: white;
	font-family: "metropolis_light", "Segoe UI", arial, sans-serif;
	line-height: 1.3;
}


/* Breadcrumb
-----------------------------
styling breadcrumb */

.breadcrumbs {
	display: none;
}

@media (min-width: 641px) {
	.breadcrumbs {
		list-style: none;
		padding: 0;
		margin: 0;
		display: block;
		overflow: hidden;
	}
}

.breadcrumbs .breadcrumb-list {
	float: left;
	padding-top: 0px;
	padding-bottom: 5px;
	font-size: 15px;
}

.breadcrumbs .breadcrumb-list.active {
	color: #666;
}

.breadcrumbs .breadcrumb-list a {
	color: black;
}

.breadcrumbs .breadcrumb-list+.breadcrumb-list:before {
	content: "\f3d3";
	font-family: "Ionicons";
	padding-right: 8px;
	padding-left: 8px;
}


/* Sidebar
-----------------------------
styling sidebar */

.sidebar {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #959595;
	margin-bottom: 50px;
}

@media (min-width: 992px) {
	.sidebar {
		margin-top: 0px;
		padding-top: 0px;
		border-top: 0;
	}
}

.sidebar-title {
	text-align: left;
	margin-bottom: 30px;
}

@media (min-width: 992px) {
	.sidebar-title {
		text-align: right;
	}
}

.sidebar-menus {
	padding: 0;
	margin: 0;
	text-align: left;
	list-style: none;
}

@media (min-width: 992px) {
	.sidebar-menus {
		text-align: right;
	}
}

.sidebar-menus .sidebar-menu-item {
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #777;
	position: relative;
	transition: all .25s ease-out;
	border-bottom: 1px solid #ccc;
}

@media (min-width: 992px) {
	.sidebar-menus .sidebar-menu-item {
		margin-bottom: 26px;
		border-bottom: 0px;
	}
}

@media (min-width: 992px) {
	.sidebar-menus .sidebar-menu-item:before {
		content: '';
		position: absolute;
		background: #777;
		width: 35px;
		height: 2px;
		right: 0px;
		bottom: 0px;
		transition: all .25s ease-out;
	}
}

.sidebar-menus .sidebar-menu-item>a {
	color: #777;
	text-decoration: none;
	transition: all .25s ease-out;
}

.sidebar-menus .sidebar-menu-item .toggle-down {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 20px;
	height: 20px;
	text-align: center;
	margin-left: 5px;
	line-height: 26px;
	cursor: pointer;
	transition: all .25s ease-out;
}

@media (min-width: 992px) {
	.sidebar-menus .sidebar-menu-item .toggle-down {
		left: 100%;
	}
}

.sidebar-menus .sidebar-menu-item .toggle-down:hover {
	color: #72bf44;
}

.sidebar-menus .sidebar-menu-item:hover:before,
.sidebar-menus .sidebar-menu-item.active:before {
	background: #72bf44;
}

.sidebar-menus .sidebar-menu-item:hover>a,
.sidebar-menus .sidebar-menu-item.active>a {
	color: #72bf44;
}

.sidebar-menus.no-border .sidebar-menu-item {
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #777;
	position: relative;
	transition: all .25s ease-out;
}

.sidebar-menus.no-border .sidebar-menu-item:before {
	content: '';
	position: static;
	width: 0px;
	height: 0px;
}

.sidebar-menu-sub {
	margin: 0;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transform: transitionY(-10px);
	transition: all .25s ease-out;
}

.sidebar-menu-sub li {
	padding-top: 10px;
	padding-bottom: 10px;
}

.sidebar-menu-sub li a {
	color: #aaa;
	text-decoration: none;
}

.sidebar-menu-sub li a:hover,
.sidebar-menu-sub li a.active {
	color: #2aad68;
}

.sidebar-menu-item.open .toggle-down {
	transform: rotate(90deg);
}

.sidebar-menu-item.open .sidebar-menu-sub {
	opacity: 1;
	visibility: visible;
	height: auto;
	transform: transitionY(0);
}


/* Component
-------------------------
set component styling */

.data-lists {
	margin: 0;
	padding: 0;
	margin-bottom: 30px;
}

.data-lists_item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #bbb;
	overflow: auto;
}

.data-lists_item:last-child {
	border-bottom: 0;
}

.data-lists_item-content {
	float: left;
}

.data-lists_item-content h4 {
	font-size: 25px;
	line-height: 36px;
	margin: 0;
	margin-bottom: 6px;
}

.data-lists_item-content span {
	color: #959595;
	display: inline-block;
	margin-right: 5px;
}

.data-lists_item-content .excerpt {
	margin-top: 16px;
	margin-bottom: 12px;
}

.data-lists_item-content .bod-image {
	float: left;
	width: 150px;
	vertical-align: top;
	margin-bottom: 24px;
}

@media (min-width: 992px) {
	.data-lists_item-content .bod-image+.bod-id {
		padding-left: 20px;
		float: left;
		width: calc(100% - 170px);
		margin-bottom: 20px;
	}
}

@media (min-width: 992px) {
	.data-lists_item-content .bod-image~.bod-description {
		padding-left: 170px;
	}
}

.data-lists_item-content .bod-id {
	overflow: hidden;
	width: 100%;
	margin-bottom: 20px;
}

.data-lists_item-content .bod-name {
	float: none;
	display: inline-block;
	width: 100%;
}

@media (min-width: 992px) {
	.data-lists_item-content .bod-name {
		width: 50%;
		padding-right: 20px;
		float: left;
	}
}

.data-lists_item-content .bod-title {
	padding-top: 6px;
	line-height: 24px;
	margin-bottom: 0;
	font-weight: bold;
	text-align: left;
}

@media (min-width: 992px) {
	.data-lists_item-content .bod-title {
		width: 50%;
		float: right;
		text-align: right;
	}
}

.data-lists_item-download {
	float: right;
}

.data-lists_item-download a {
	color: #959595;
	text-decoration: none;
	transition: all .25s ease-out;
	line-height: 36px;
	display: block;
}

.data-lists_item-download a span {
	display: inline-block;
	margin-right: 5px;
}

.data-lists_item-download a:hover {
	color: #72bf44;
}

.data-lists.data-lists--bulleted .data-lists_item {
	border-bottom: 0;
	margin-bottom: 0px;
}

.data-lists.data-lists--bulleted .data-lists_item-content {
	display: list-item;
	float: none;
	margin-left: 20px;
	padding-left: 5px;
	list-style-type: disc;
	border-bottom: 0;
}

.section-content table {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
}

.section-content table th,
.section-content table td {
	padding: 10px 15px;
}

.section-content table th {
	background: #2aad68;
	color: #fff;
	border-right: 2px solid white;
}

/*.section-content table th:nth-child(2), .section-content table th:nth-child(3) {
  text-align: right; 
}*/

.section-content table th:last-child {
	border-right: 0;
}

.section-content table td {
	border-right: 2px solid white;
}

.section-content table td:last-child {
	border-right: 0;
}

.section-content table td:nth-child(2),
.section-content table td:nth-child(3) {
	text-align: right;
}

.section-content table tr:nth-child(even) td {
	background: #f5f5f5;
}

.section-content table tr:nth-child(odd) td {
	background: #e4e4e4;
}

@media screen and (max-width: 767px) {
	.table-responsive {
		border: 0;
	}
}

.inline-icon {
	margin-bottom: 15px;
}

.inline-icon span {
	float: left;
	font-size: 18px;
}

.inline-icon span~p {
	padding-left: 25px;
	margin-bottom: 5px;
}

.inline-icon a {
	color: #959595;
	text-decoration: none;
	transition: .25s ease-out;
}

.inline-icon a:hover {
	color: #72bf44;
}


/* Element
-------------------------
set element styling */

.btn {
	padding: 7px 20px;
	color: black;
	text-decoration: none;
	font-size: 16px;
	border-radius: 0;
	transition: .25s ease-out;
	margin-bottom: 12px;
	outline: none;
}

.btn:focus,
.btn:active {
	outline: none !important;
	box-shadow: none !important;
	border: 0;
	outline-offset: 0px !important;
}

.btn.btn-right {
	float: right;
}

.btn.btn--float {
	background: #72bf44;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	line-height: 50px;
	padding: 0;
	margin: 0;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 25px;
	transition: .25s ease-out;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.btn.btn--float.is-hidden {
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
}

.btn.btn--float:hover {
	background: #2aad68;
}

.btn.btn-hollow {
	background: none;
	border: 1px solid black;
}

.btn.btn-hollow:hover {
	color: white;
	background-color: #72bf44;
	border: 1px solid transparent;
}

.link-inline {
	color: #959595;
	text-decoration: none;
	transition: .25s ease-out;
}

.link-inline:hover {
	color: #72bf44;
	text-decoration: none;
}

.section-content img {
	max-width: 100%;
	margin-bottom: 4px;
}

.ptb-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.floating-right {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 50;
}

.data-lists_item-content .bod-description li {
	text-align: left;
}