@font-face {
    font-family: 'Lato Bold';
    src: url('fonts/Lato-Bold.eot');
    src: url('fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Lato-Bold.woff2') format('woff2'),
        url('fonts/Lato-Bold.woff') format('woff'),
        url('fonts/Lato-Bold.ttf') format('truetype'),
        url('fonts/Lato-Bold.svg#Lato-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato Black';
    src: url('fonts/Lato-Black.eot');
    src: url('fonts/Lato-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/Lato-Black.woff2') format('woff2'),
        url('fonts/Lato-Black.woff') format('woff'),
        url('fonts/Lato-Black.ttf') format('truetype'),
        url('fonts/Lato-Black.svg#Lato-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato Italic';
    src: url('fonts/Lato-Italic.eot');
    src: url('fonts/Lato-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Lato-Italic.woff2') format('woff2'),
        url('fonts/Lato-Italic.woff') format('woff'),
        url('fonts/Lato-Italic.ttf') format('truetype'),
        url('fonts/Lato-Italic.svg#Lato-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lato Regular';
    src: url('fonts/Lato-Regular.eot');
    src: url('fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Lato-Regular.woff2') format('woff2'),
        url('fonts/Lato-Regular.woff') format('woff'),
        url('fonts/Lato-Regular.ttf') format('truetype'),
        url('fonts/Lato-Regular.svg#Lato-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url('fonts/Montserrat-Bold.eot');
    src: url('fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Montserrat-Bold.woff2') format('woff2'),
        url('fonts/Montserrat-Bold.woff') format('woff'),
        url('fonts/Montserrat-Bold.ttf') format('truetype'),
        url('fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Black';
    src: url('fonts/Montserrat-ExtraBold.eot');
    src: url('fonts/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('fonts/Montserrat-ExtraBold.woff') format('woff'),
        url('fonts/Montserrat-ExtraBold.ttf') format('truetype'),
        url('fonts/Montserrat-ExtraBold.svg#Montserrat-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('fonts/Montserrat-Regular.eot');
    src: url('fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Montserrat-Regular.woff2') format('woff2'),
        url('fonts/Montserrat-Regular.woff') format('woff'),
        url('fonts/Montserrat-Regular.ttf') format('truetype'),
        url('fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
	font-family:'FontAwesome';
	src: url('fonts/fontawesome-webfont.eot?v=4.7.0');
	src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
		url('fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
		url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
		url('fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
		url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style:normal
}

html, body{
	padding: 0px;
	margin: 0px;
	background-color: #fff;
}

button,
input,
select,
textarea{
	outline: none;
}

.err{
	position: relative;
	display: block;
	color: #f00;
	text-align: left;
	display: none;
	font-family: 'Lato Regular';
	font-size: 14px;
	margin-top:5px;
}
	.text-error,
	.text-error:focus{
		border: solid 1px red;
	}
	
	.body{
		position: relative;
		display: block;
		width: 100%;
	}
		/* Header */
		.header{
			position: fixed;
			width: 100%;
			background-color: #fff;
			display: block;
			z-index: 999;
		}
			.logo{
				width: auto;
				padding: 10px;
				height: 60px;
			}
			.box-menu{
				position: absolute;
				display: none;
				width: 100%;
				z-index: 9;
				background-color: #fff;
			}
				.btn-menu{
					position: absolute;
					display: block;
					width: 45px;
					padding: 10px;
					background-color: #1aa39d;
					top: 10px;
					right: 10px;
				}
					.menu-button{
						width: 25px;
						height: 20px;
						display: flex;
						flex-direction: column;
						justify-content: space-between;
						cursor: pointer;
					}

					.bar{
						width: 100%;
						height: 2px;
						background-color: #fff;
						transition: transform 0.3s ease, opacity 0.3s ease;
					}

					/* Close button styles */
					.menu-button.open .bar:nth-child(1) {
						transform: translateY(9px) rotate(45deg);
					}

					.menu-button.open .bar:nth-child(2) {
						opacity: 0;
					}

					.menu-button.open .bar:nth-child(3) {
						transform: translateY(-9px) rotate(-45deg);
					}
				
				.menu{
					position: relative;
					display: block;
					padding: 10px 20px;
					font-family: 'Lato Bold';
					font-size: 16px;
					border-bottom: solid 1px #ccc;
				}
				.box-dot{
					display: none;
				}
		
		/* Banner */
		.banner{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
			padding-top: 50px;
		}
			.banner-desktop{
				display: none;
			}
			.banner-mobile{
				display: block;
			}
			.elemen-home-kanan{
				position: absolute;
				width: 28%;
				z-index: 2;
				right: 0px;
				top: 70px;
			}
			.banner-top{
				position: relative;
				display: block;
				width: 100%;
			}
			.banner-bottom{
				position: relative;
				display: block;
				width: 100%;
				height: auto;
				background-image: url('../../images/bg-prabowo-desktop.png');
				background-position: left bottom;
				background-size: auto 125%;
				background-repeat: no-repeat;
			}
				.text-presiden{
					position: relative;
					display: block;
					width: 55%;
					height: 80vw;
					color: #fff;
					top: 23vw;
					left: 20px;
					font-family: 'Lato Regular';
					font-size: 10px;
					text-align: center;
				}
					.jabatan{
						font-size: 10px;
					}
				.presiden{
					position: absolute;
					width: 40%;
					bottom: 0px;
					right: 10px;
				}
				
		/* Overview */
		.overview{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
			background-image: url('../../images/overview.png');
			background-size: 100% auto;
			background-position: center right;
			background-repeat: no-repeat;
		}
			.box-overview{
				position: relative;
				display: block;
				width: 100%;
				font-family: 'Lato Regular';
				font-size: 14px;
			}
				.judul-overview{
					position: relative;
					display: block;
					padding: 20px;
					font-family: 'Lato Bold';
					font-size: 42px;
					color: #404042;
				}
				.isi-overview{
					position: relative;
					display: block;
					width: 100%;
					margin-bottom: 30px;
					padding: 20px;
					padding-right: 50px;
					font-size: 16px;
					color: #fff;
					/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#107e77+33,107e77+100&1+72,0.89+85,0.58+93,0+100 */
					background: linear-gradient(to right,  rgba(16,126,119,1) 33%,rgba(16,126,119,1) 72%,rgba(16,126,119,0.89) 85%,rgba(16,126,119,0.58) 93%,rgba(16,126,119,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
				}
		
		/* About */
		.about{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-about{
				position: relative;
				display: block;
				width: 100%;
				font-family: 'Lato Regular';
				font-size: 16px;
			}
				.judul-about{
					position: relative;
					display: block;
					width: 100%;
					text-align: left;
					font-family: 'Lato Bold';
					font-size: 22px;
					padding: 20px;
					padding-bottom: 0px;
					color: #404042;
				}
				.about-left,
				.about-right{
					position: relative;
					display: inline-block;
					width: 100%;
					padding: 20px;
					vertical-align: top;
					background: linear-gradient(to bottom,  rgba(255,255,255,1) 34%,rgba(16,127,119,1) 34%,rgba(16,127,119,1) 34%);
				}
					.img-about{
						position: relative;
						display: inline-block;
						width: 48%;
					}
		
		/* Number */
		.number{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-number{
				position: relative;
				display: block;
				width: 100%;
				padding-top: 20px;
				background-image: url('../../images/bg-number.png');
				background-repeat: no-repeat;
				background-position: top right 5%;
				background-size: auto 74.5%;
			}
				.judul-number{
					position: relative;
					display: block;
					width: 100%;
					text-align: left;
					font-family: 'Lato Bold';
					font-size: 22px;
					padding: 20px;
					padding-bottom: 0px;
					color: #fff;
				}
				.number-mobile{
					position: relative;
					display: block;
					width: 100%;
					padding: 20px;
				}
				.number-desktop{
					display: none;
				}
				.number-mobile img, .number-desktop img{
					width: 90%;
				}
				
		/* Target */
		.target{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-target{
				position: relative;
				display: block;
				width: 100%;
				padding-top: 20px;
			}
				.judul-target{
					position: relative;
					display: block;
					width: 100%;
					text-align: left;
					font-family: 'Lato Bold';
					font-size: 22px;
					padding: 20px;
					padding-bottom: 20px;
					color: #404042;
				}
				.isi-target{
					position: relative;
					display: block;
					width: 100%;
					padding: 30px 20px;
					background: linear-gradient(45deg,  rgba(248,172,61,1) 0%,rgba(4,161,156,1) 100%);
					border-top-left-radius: 60px;
				}
					.target-left,
					.target-right{
						position: relative;
						display: inline-block;
						width: 100%;
						vertical-align: top;
					}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							position: relative;
							display: inline-block;
							color: #fff;
							vertical-align: top;
							font-family: 'Lato Regular';
							font-size: 11px;
						}
							.target-exhibition{
								font-size: 12px;
							}
							.sub-judul-target{
								font-family: 'Lato Bold';
								font-size: 14px; 
							}
								.sub-sub-judul-target{
									font-family:'Lato Bold';
									font-size:12px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 16px;
								}

		/* Attend */
		.attend{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-attend{
				position: relative;
				display: block;
				width: 100%;
				padding-top: 20px;
			}
				.judul-attend{
					position: relative;
					display: block;
					width: 100%;
					text-align: left;
					font-family: 'Lato Bold';
					font-size: 22px;
					padding: 20px;
					padding-bottom: 0px;
					color: #404042;
				}
				.isi-attend{
					position: relative;
					display: block;
					width: 100%;
					padding: 20px;
					background-image: url('../../images/bg-attend.png'), url('../../images/bg-attend.png');
					background-repeat: no-repeat, no-repeat;
					background-position: top -200px left, bottom left;
					background-size: auto 100%, auto 100%;
				}
					.box-isi-attend{
						position: relative;
						display: inline-block;
						vertical-align: top;
						color: #fff;
						font-size: 14px;
						width: 100%;
					}
						.box-isi-attend img{
							width: 100%;
							margin-bottom: 10px;
						}
						.sub-judul-attend{
							font-family: 'Lato Regular';
							font-size: 18px;
							color: #57585b;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 20px;
						}
							.box-sub-attend{
								position: relative;
								display: inline-block;
								width: 48%;
								vertical-align: top;
							}
								.box-sub-attend-left{
									margin-right: 1%;
								}
								.box-sub-attend-right{
									margin-left: 1%;
								}
		
		/* Countries */
		.countries{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-countries{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				background-color: #e6e7e8;
				background-image: url('../../images/participant-world-map.png'), url('../../images/bg-countries.png');
				background-repeat: no-repeat, no-repeat;
				background-position: top center, top -100px right;
				background-size: 60% auto, auto 100%;
			}
				.isi-countries{
					position: relative;
					display: inline-block;
					width: 100%;
				}
					.judul-countries{
						position: relative;
						display: block;
						width: 100%;
						text-align: left;
						font-family: 'Lato Bold';
						font-size: 22px;
						padding: 20px 0px;
						color: #404042;
					}

		/* Highlight */
		.highlight{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #e6e7e8;
		}
			.box-highlight{
				position: relative;
				display: block;
				width: 100%;
				padding-top: 20px;
			}
				.judul-highlight{
					position: relative;
					display: block;
					width: 100%;
					text-align: left;
					font-family: 'Lato Bold';
					font-size: 22px;
					padding: 20px;
					padding-bottom: 20px;
					color: #404042;
				}
				.isi-highlight{
					position: relative;
					display: block;
					width: 100%;
					padding: 20px;
					background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(26,163,157,1) 100%);
					border-top-right-radius: 50px;
				}
					.box-isi-highlight{
						position: relative;
						display: inline-block;
						vertical-align: top;
					}
					.box-isi-highlight img{
						width: 100%;
					}
					.box-isi-highlight-left{
						width: 100%;
						margin-bottom: 20px;
					}
					.box-isi-highlight-right{
						width: 100%;
					}
						.sub-judul-highlight{
							color: #404042;
							font-size: 20px;
							font-family: 'Lato Regular';
							margin-bottom: 10px;
						}
						.img-highlight-mobile{
							display: block;
						}
						.img-highlight-desktop{
							display: none;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
								box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
								-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
								-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			position: relative;
			display: block;
			width: 100%;
			height: 580px;
			background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(26,163,157,1) 100%);
		}
			.box-brochure{
				position: relative;
				display: block;
				width: 100%;
				height: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-brochure{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
					color: #fff;
				}
				.isi-brochure{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: left;
				}
					.btn-download{
						width: 80%;
						cursor: pointer;
					}
					.icon-buku{
						position: relative;
						right: -50px;
						bottom: -20px;
						width: 80%;
						z-index: 2;
					}
		
		/* Registration */
		.registration{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #e6e7e8;
		}
			.box-registration{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-registration{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
				}
				.isi-registration{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: center;
				}
					.icon-regis{
						width: 80%;
						max-width: 400px;
						cursor: pointer;
					}
		
		/* News */
		.news{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #e6e7e8;
		}
		.box-gallery{
			background-color: #939598 !important;
			color: #fff !important;
		}
			.box-news{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-news{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
				}
				.isi-news{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: center;
				}
					.box-isi-news{
						position: relative;
						display: inline-block;
						width: 100%;
						margin-bottom: 20px;
						cursor: pointer;
					}
					.box-isi-news:hover .judul-isi-news{
						text-decoration: underline;
					}
						.cover-news{
							position: relative;
							display: block;
							width: 100%;
							height: 25vh;
							overflow: hidden;
						}
							.cover-news img{
								width: 100%;
							}
						.judul-isi-news{
							position: relative;
							display: block;
							width: 100%;
							font-family: 'Lato Bold';
							font-size: 16px;
							text-align: left;
						}
			.detail-news,
			.detail-gallery{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 80px;
			}
				.isi-detail-news{
					position: relative;
					display: inline-block;
					width: 100%;
					margin-bottom: 50px;
				}
					.judul-detail-news{
						position: relative;
						display: block;
						width: 100%;
						font-family: 'Lato Bold';
						font-size: 18px;
						margin-bottom: 10px;
					}
					.tgl-detail-news{
						position: relative;
						display: block;
						width: 100%;
						font-family: 'Lato Regular';
						font-size: 14px;
						margin-bottom: 10px;
					}
					.cover-detail-news{
						position: relative;
						display: block;
						margin-bottom: 20px;
					}
				.other-news{
					position: relative;
					display: inline-block;
					width: 100%;
				}
					.more-news{
						position: relative;
						display: block;
						padding-top: 10px;
						font-family: 'Lato Bold';
						font-size: 18px;
					}
						.link-news{
							color: #00f;
							cursor: pointer;
						}
						.link-news:hover{
							text-decoration: underline;
						}
		
		/* Promo */
		.promo{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #e6e7e8;
		}
			.box-promo{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-promo{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
				}
				.isi-promo{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: center;
				}

		/* Sponsor */
		.sponsor{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-sponsor{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-sponsor{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: left;
				}
					.sub-judul-sponsor{
						color: #404042;
						font-size: 20px;
						font-family: 'Lato Regular';
						margin-bottom: 10px;
					}
					.box-isi-sponsor{
						position: relative;
						display: block;
						width: 100%;
						text-align: center;
					}

		/* FAQ */
		.faq{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #fff;
		}
			.box-faq{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-faq{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
				}
				.isi-faq{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: left;
				}
					.box-isi-faq{
						position: relative;
						display: block;
						width: 100%;
						text-align: left;
						margin-bottom: 10px;
					}
						.isi-tanya{
							position: relative;
							display: block;
							font-family: 'Lato Bold';
							font-size: 16px;
							padding: 10px;
							padding-right: 30px;
							background-color: #ededed;
							border-radius: 5px;
							cursor: pointer;
						}
							.isi-tanya::after{
								font-family: 'FontAwesome';
								content: "\f078";
								position: absolute;
								top: 10px;
								right: 10px;
							}
						.isi-jawab{
							position: relative;
							display: none;
							font-family: 'Lato Regular';
							font-size: 14px;
							padding: 10px;
						}
		
		/* Contact */
		.contact{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #f1f1f2;
		}
			.box-contact{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
				padding-top: 50px;
			}
				.judul-contact{
					position: relative;
					display: block;
					font-family: 'Lato Bold';
					font-size: 24px;
					margin-bottom: 20px;
				}
				.isi-contact{
					position: relative;
					display: block;
					margin-bottom: 50px;
					text-align: left;
					font-family: 'Lato Regular';
					font-size: 16px;
				}
					.info-contact{
						position: relative;
						display: block;
						border: solid 1px #000;
						padding: 10px;
						font-family: 'Lato Bold';
						font-size: 18px;
						border: solid 2px #808285;
						border-radius: 10px;
						margin-bottom: 10px;
					}
					.sub-judul-contact{
						font-family: 'Lato Bold';
						font-size: 20px;
						margin-top: 10px;
						margin-bottom: 10px;
					}
						.text-input{
							position: relative;
							display: block;
							width: 100%;
							padding: 10px;
							font-family: 'Lato Regular';
							font-size: 16px;
							border: solid 1px #808285;
						}
						.box-button{
							position: relative;
							display: block;
						}
							.btn-submit{
								position: relative;
								display: block;
								width: 100%;
								text-align: center;
								padding: 10px;
								font-family: 'Lato Bold';
								font-size: 20px;
								text-align: center;
								background-color: #1aa39d;
								color: #fff;
								border: none;
								border-radius: 20px;
							}
		
		/* Footer */
		.footer{
			position: relative;
			display: block;
			width: 100%;
			min-height: 200px;
			background-color: #1aa39d;
		}
			.box-footer{
				position: relative;
				display: block;
				width: 100%;
				padding: 20px;
			}
				.logo-bsi{
					height: 50px;
					margin-bottom: 50px;
				}
				.box-sub-footer{
					position: relative;
					display: block;
					width: 100%;
				}
					.sub-footer-left{
						position: relative;
						display: inline-block;
						width: 100%;
						vertical-align: top;
						font-family: 'Lato Regular';
						font-size: 16px;
						color: #fff;
						margin-bottom: 30px;
					}
						.logo-footer-expo{
							height: 60px;
							margin-bottom: 20px;
						}
					.sub-footer-right{
						position: relative;
						display: inline-block;
						width: 100%;
						vertical-align: top;
						font-family: 'Lato Regular';
						font-size: 16px;
						color: #fff;
					}
						.menu-footer{
							padding: 7px 0px;
						}


.hidden-content {
	display: none;
}
		
		


/*Tablet / iPad / Laptop Portraid*/
@media only screen
and (min-width: 601px) {
		/* Banner */
			.banner-desktop{
				display: block;
			}
			.banner-mobile{
				display: none;
			}

			.elemen-home-kanan{
				width: 38%;
				right: 0px;
				top: 25%;
			}
			.banner-bottom{
				background-size: 100% auto;
			}
				.text-presiden{
					width: 58%;
					height: 50vw;
					top: 20vw;
					left: 5%;
					font-size: 14px;
				}
					.jabatan{
						font-size: 14px;
					}
				.presiden{
					width: 38%;
					right: 2%;
				}
				
		/* Overview */
		.overview{
			background-size: auto 65%;
			padding-bottom: 30px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 20px;
					font-size: 42px;
				}
				.isi-overview{
					width: 80%;
					margin-bottom: 30px;
					padding: 20px;
					padding-right: 50px;
					font-size: 16px;
				}
		
		/* About */
			.box-about{
				font-size: 16px;
				font-size: 0;
				padding-top: 30px;
			}
				.judul-about{
					font-size: 26px;
					padding: 20px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					display: inline-block;
					width: 50%;
					padding: 0px;
					vertical-align: top;
					background: linear-gradient(to bottom,  rgba(255,255,255,1) 32%,rgba(16,127,119,1) 32%,rgba(16,127,119,1) 32%);
					box-sizing: border-box;
				}
				.about-left{
					padding-left: 20px;
				}
				.about-right{
					padding-right: 20px;
				}
					.img-about{
						width: 50%;
					}
		
		/* Number */
			.box-number{
				padding-top: 20px;
				background-size: 100% auto;
				background-position: top -30px right 0%;
			}
				.judul-number{
					font-size: 26px;
					padding: 20px;
					padding-bottom: 0px;
				}
				.number-mobile{
					display: none;
				}
				.number-desktop{
					position: relative;
					display: block;
					width: 100%;
					padding: 20px 0px;
				}
				.number-desktop img{
					width: 100%;
				}

		/* Target */
				.judul-target{
					font-size: 22px;
					padding: 20px;
					padding-bottom: 20px;
				}
				.isi-target{
					padding: 30px 20px;
					border-top-left-radius: 60px;
				}
					.target-left,
					.target-right{
						width: 48%;
					}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 12px;
						}
							.target-exhibition{
								font-size: 12px;
							}
							.sub-judul-target{
								font-size: 16px; 
							}
								.sub-sub-judul-target{
									font-size:14px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 16px;
								}

		/* Attend */
				.judul-attend{
					font-size: 22px;
					padding: 20px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px;
					background-image: url('../../images/bg-attend.png'), url('../../images/bg-attend.png');
					background-repeat: no-repeat, no-repeat;
					background-position: top -110px left, bottom left;
					background-size: 100% auto, 100% auto;
				}
					.box-isi-attend{
						vertical-align: top;
						width: 45%;
						font-size: 14px;
					}
					.isi-attend-left{
						width: 53%;
					}
					.isi-attend-right{
						padding-left: 20px;
					}
						.box-isi-attend img{
							width: 100%;
							margin-bottom: 10px;
						}
						.sub-judul-attend{
							font-family: 'Lato Regular';
							font-size: 18px;
							color: #57585b;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 20px;
						}
							.box-sub-attend{
								position: relative;
								display: inline-block;
								width: 48%;
								vertical-align: top;
							}
								.box-sub-attend-left{
									margin-right: 1%;
								}
								.box-sub-attend-right{
									margin-left: 1%;
								}
		
		/* Countries */
			.box-countries{
				padding: 20px;
				background-position: top left 60%, top -5px right;
				background-size: 32% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 22px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 75px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px;
			}
				.judul-highlight{
					font-size: 22px;
					padding: 20px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 20px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 67%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 30%;
					}
						.sub-judul-highlight{
							font-size: 20px;
							margin-bottom: 20px;
						}
						.img-highlight-mobile{
							display: none;
						}
						.img-highlight-desktop{
							display: block;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 550px;
		}
			.box-brochure{
				padding: 30px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 24px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 300px;
					}
					.icon-buku{
						right: -50px;
						bottom: 50px;
						width: 50%;
					}
					
		/* News */
			.box-news{
				padding: 20px;
				padding-top: 50px;
			}
				.judul-news{
					font-size: 22px;
					margin-bottom: 20px;
				}
					.box-isi-news{
						width: 47%;
						margin-left: 2%;
						vertical-align: top;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}
				.isi-detail-news{
					width: 59%;
					margin-right: 2%;
					margin-bottom: 50px;
					vertical-align: top;
				}
					.judul-detail-news{
						font-size: 18px;
						margin-bottom: 10px;
					}
					.tgl-detail-news{
						font-size: 14px;
						margin-bottom: 10px;
					}
				.other-news{
					width: 38%;
					padding-top: 0px;
					vertical-align: top;
				}
					.more-news{
						font-size: 18px;
					}
		
		/* Promo */
				.judul-promo{
					font-size: 22px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 20px;
				padding-top: 30px;
			}
				.judul-sponsor{
					font-size: 22px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}
					.sub-judul-sponsor{
						font-size: 20px;
						margin-bottom: 10px;
					}
		
		/* FAQ */
			.box-faq{
				padding: 20px;
				padding-top: 50px;
			}
				.judul-faq{
					font-size: 22px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 16px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 14px;
							padding: 10px;
						}
				
		/* Footer */
		.footer{
			background-size: 80% auto;
		}
			.box-footer{
				position: relative;
				display: block;
				width: 100%;
				padding: 30px;
			}
				.logo-bsi{
					height: 60px;
					margin-bottom: 50px;
				}
					.sub-footer-left{
						width: 60%;
						font-size: 16px;
						margin-bottom: 30px;
					}
						.logo-footer-expo{
							height: 70px;
							margin-bottom: 30px;
						}
					.sub-footer-right{
						width: 38%;
						font-size: 16px;
						border-left: solid 2px #fff;
						padding-left: 20px;
					}
						.menu-footer{
							padding: 5px 0px;
						}
}


/*Tablet / iPad / Laptop Landscape*/
@media only screen
and (min-width: 1024px) {
		/* Header */
		.header{
			position: fixed;
			display: block;
			width: 100%;
			z-index: 999;
			background-color: #fff;
			transition: all 0.3s ease;
		}
			.frame-header{
				position: relative;
				display: block;
				width: 95%;
				max-width: 1200px;
				left: 50%;
				transform: translateX(-50%);
				transition: all 0.3s ease;
			}
				.logo{
					width: 200px;
					height: auto;
					transition: all 0.3s ease;
				}
				.box-menu{
					position: relative;
					display: block;
					width: 100%;
					text-align: center;
					transition: all 0.3s ease;
				}
					.btn-menu{
						display: none;
					}
					.menu{
						display: inline-block;
						padding: 10px 5px;
						font-size: 14px;
						border-bottom: none;
						cursor: pointer;
						transition: all 0.3s ease;
					}
					.box-dot{
						position: relative;
						display: inline-block;
						width: 5px;
						top: 1px;
						text-align: center;
						vertical-align: top;
					}
					.dot{
						position: relative;
					}
					.dot::after{
						position: absolute;
						display: block;
						content: "|";
						color: #1aa39d;
						font-size: 16px;
						top: 7px;
						transition: all 0.3s ease;
					}
						.menu:hover{
							border-bottom: solid 1px #ccc;
						}
			.header.shrink .frame-header{
				width: 95%;
			}
				.header.shrink .frame-header .logo{
					width: 150px;
				}
				.header.shrink .frame-header .box-menu{
					position: absolute;
					top: 20px;
					right: 5px;
					width: 85%;
					text-align: right;
				}
					.header.shrink .frame-header .box-menu .menu{
						padding: 10px 5px;
						font-size: 12px;
					}
					.header.shrink .frame-header .box-menu .box-dot{
						top: -3px;
					}
					.header.shrink .frame-header .box-menu .dot::after{
						font-size: 18px;
						top: 7px;
					}
		
		/* Banner */
		.banner{
			padding-top: 150px;
		}
				.text-presiden{
					font-size: 18px;
				}
					.jabatan{
						font-size: 18px;
					}
		
		/* Overview */
		.overview{
			background-size: auto 68%;
			padding-bottom: 30px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 20px;
					padding-left: 50px;
					font-size: 42px;
				}
				.isi-overview{
					width: 70%;
					margin-bottom: 30px;
					padding: 50px;
					padding-right: 80px;
					font-size: 16px;
				}
				
		/* About */
				.judul-about{
					font-size: 32px;
					padding: 20px 50px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					padding-bottom: 20px;
					background: linear-gradient(to bottom,  rgba(255,255,255,1) 30.5%,rgba(16,127,119,1) 30.5%,rgba(16,127,119,1) 30.5%);
				}
				.about-left{
					padding-left: 50px;
				}
				.about-right{
					padding-right: 50px;
				}

		/* Number */
			.box-number{
				padding-top: 20px;
				background-size: 100% auto;
				background-position: top -60px right;
			}
				.judul-number{
					font-size: 32px;
					padding: 20px 50px;
					padding-bottom: 0px;
				}
				.number-desktop{
					padding: 20px 0px;
				}

		/* Target */
				.judul-target{
					font-size: 32px;
					padding: 20px 50px;
					padding-bottom: 20px;
				}
				.isi-target{
					padding: 30px 50px;
					border-top-left-radius: 60px;
				}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 12px;
						}
							.target-exhibition{
								font-size: 12px;
							}
							.sub-judul-target{
								font-size: 16px; 
							}
								.sub-sub-judul-target{
									font-size:14px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 16px;
								}

		/* Attend */
				.judul-attend{
					font-size: 32px;
					padding: 20px 50px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px 50px;
					background-image: url('../../images/bg-attend.png');
					background-repeat: no-repeat;
					background-position: top -160px left;
					background-size: 100% auto;
				}
					.box-isi-attend{
						font-size: 14px;
					}
					.isi-attend-left{
						width: 53%;
					}
					.isi-attend-right{
						padding-left: 20px;
					}
						.sub-judul-attend{
							font-size: 18px;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 30px;
						}
							.box-sub-attend{
								width: 48%;
							}

		/* Countries */
			.box-countries{
				padding: 20px 50px;
				background-position: top left 55%, top -25px right;
				background-size: 28% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 32px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 90px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px 50px;
			}
				.judul-highlight{
					font-size: 32px;
					padding: 20px 50px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 30px 50px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 72%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 25%;
					}
						.sub-judul-highlight{
							font-size: 26px;
							margin-bottom: 20px;
						}
						.img-highlight-mobile{
							display: none;
						}
						.img-highlight-desktop{
							display: block;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 600px;
		}
			.box-brochure{
				padding: 30px 50px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 32px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 300px;
					}
					.icon-buku{
						right: -200px;
						bottom: 100px;
						width: 45%;
					}
		
		/* Registration */
			.box-registration{
				padding: 30px 50px;
				padding-top: 80px;
			}
				.judul-registration{
					font-size: 32px;
				}
					.icon-regis{
						max-width: 400px;
					}
		
		/* News */
			.box-news{
				padding: 20px 50px;
				padding-top: 50px;
			}
				.judul-news{
					font-size: 32px;
					margin-bottom: 20px;
				}
					.box-isi-news{
						width: 23.5%;
						margin-left: 1%;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}	
			.detail-news,
			.detail-gallery{
				padding-top: 180px;
			}
				.isi-detail-news{
					width: 69%;
					margin-right: 2%;
					margin-bottom: 50px;
					vertical-align: top;
				}
					.judul-detail-news{
						font-size: 18px;
						margin-bottom: 10px;
					}
					.tgl-detail-news{
						font-size: 14px;
						margin-bottom: 10px;
					}
				.other-news{
					width: 28%;
					vertical-align: top;
				}
					.more-news{
						font-size: 18px;
					}
					
		/* Promo */
			.box-promo{
				padding: 30px 50px;
				padding-top: 50px;
			}
				.judul-promo{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 30px 50px;
				padding-top: 50px;
			}
				.judul-sponsor{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}
		
		/* FAQ */
			.box-faq{
				padding: 30px 50px;
				padding-top: 50px;
			}
				.judul-faq{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 16px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 14px;
							padding: 10px;
						}

		/* Contact */
			.box-contact{
				padding: 30px 50px;
				padding-top: 50px;
			}
				.judul-contact{
					font-size: 32px;
				}
				.isi-contact{
					font-size: 16px;
				}
					.info-contact{
						font-size: 18px;
						border-radius: 10px;
						margin-bottom: 10px;
					}
					.sub-judul-contact{
						font-size: 20px;
						margin-top: 10px;
						margin-bottom: 10px;
					}
						.text-input{
							font-size: 16px;
						}
							.btn-submit{
								padding: 10px;
								font-size: 20px;
								border-radius: 20px;
							}
		
		/* Footer */
		.footer{
			background-size: 80% auto;
		}
			.box-footer{
				padding: 50px;
			}
				.logo-bsi{
					height: 80px;
					margin-bottom: 100px;
				}
					.sub-footer-left{
						width: 65%;
						font-size: 18px;
					}
						.logo-footer-expo{
							height: 90px;
							margin-bottom: 30px;
						}
					.sub-footer-right{
						width: 33%;
						font-size: 16px;
						padding-left: 20px;
					}
						.menu-footer{
							padding: 7px 0px;
							cursor: pointer;
						}
						.menu-footer:hover span{
							padding-bottom: 5px;
							border-bottom: solid 1px #fff;
						}
}


/*Laptop / Desktop*/
@media only screen
and (min-width: 1280px) {
			.logo{
				width: 250px;
			}
				.menu{
					padding: 10px 10px;
					font-size: 16px;
				}
					.box-dot{
						top: -3px;
					}
				.dot::after{
					font-size: 20px;
					top: 10px;
				}
		
			.header.shrink .frame-header{
				width: 95%;
			}
				.header.shrink .frame-header .logo{
					width: 200px;
				}
				.header.shrink .frame-header .box-menu{
					top: 30px;
					right: 5px;
					width: 83%;
				}
					.header.shrink .frame-header .box-menu .menu{
						padding: 10px 8px;
						font-size: 13px;
					}
					.header.shrink .frame-header .box-menu .box-dot{
						top: -3px;
					}
					.header.shrink .frame-header .box-menu .dot::after{
						font-size: 18px;
						top: 8px;
					}
		
		/* Banner */
				.text-presiden{
					font-size: 22px;
				}
					.jabatan{
						font-size: 22px;
					}
		
		/* Overview */
		.overview{
			background-size: auto 100%;
			padding-bottom: 30px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 20px;
					padding-left: 80px;
					font-size: 42px;
				}
				.isi-overview{
					width: 70%;
					margin-bottom: 30px;
					padding: 80px;
					padding-right: 100px;
					font-size: 16px;
				}
		
		/* About */
				.judul-about{
					font-size: 32px;
					padding: 20px 80px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					padding-bottom: 20px;
				}
				.about-left{
					padding-left: 80px;
				}
				.about-right{
					padding-right: 80px;
				}

		/* Number */
			.box-number{
				padding-top: 50px;
				background-size: 100% auto;
				background-position: top -80px right;
			}
				.judul-number{
					font-size: 32px;
					padding: 20px 80px;
					padding-bottom: 0px;
				}
				.number-desktop{
					padding: 20px 0px;
				}

		/* Target */
				.judul-target{
					font-size: 32px;
					padding: 20px 80px;
					padding-bottom: 30px;
				}
				.isi-target{
					padding: 50px 80px;
					border-top-left-radius: 60px;
				}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 14px;
						}
							.target-exhibition{
								font-size: 14px;
							}
							.sub-judul-target{
								font-size: 18px; 
							}
								.sub-sub-judul-target{
									font-size:16px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 20px;
								}

		/* Attend */
				.judul-attend{
					font-size: 32px;
					padding: 20px 80px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px 80px;
					background-position: top -190px left;
				}
					.box-isi-attend{
						font-size: 16px;
					}
					.isi-attend-right{
						padding-left: 30px;
					}
						.sub-judul-attend{
							font-size: 24px;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 50px;
						}
		
		/* Countries */
			.box-countries{
				padding: 20px 80px;
				background-position: top left 55%, top -60px right;
				background-size: 27% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 32px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 120px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px 80px;
			}
				.judul-highlight{
					font-size: 32px;
					padding: 20px 80px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 30px 80px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 77%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 20%;
					}
						.sub-judul-highlight{
							font-size: 26px;
							margin-bottom: 20px;
						}
						.img-highlight-mobile{
							display: none;
						}
						.img-highlight-desktop{
							display: block;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 600px;
		}
			.box-brochure{
				padding: 30px 80px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 32px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 300px;
					}
					.icon-buku{
						right: -300px;
						bottom: 150px;
						width: 42%;
					}
						
		/* Registration */
			.box-registration{
				padding: 30px 80px;
				padding-top: 80px;
			}
				.judul-registration{
					font-size: 36px;
				}
					.icon-regis{
						max-width: 500px;
					}
		
		/* News */
			.box-news{
				padding: 30px 80px;
				padding-top: 80px;
			}
					.box-isi-news{
						width: 23.5%;
						margin-left: 1%;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}	
			.detail-news,
			.detail-gallery{
				padding: 30px 80px;
				padding-top: 200px;
			}
			
		
		/* Promo */
			.box-promo{
				padding: 30px 80px;
				padding-top: 80px;
			}
				.judul-promo{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 30px 80px;
				padding-top: 80px;
			}
				.judul-sponsor{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}
		
		/* FAQ */
			.box-faq{
				padding: 30px 80px;
				padding-top: 80px;
			}
				.judul-faq{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 18px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 16px;
							padding: 10px;
						}
				
		
		/* Contact */
			.box-contact{
				padding: 30px 80px;
				padding-top: 50px;
			}
				.judul-contact{
					font-size: 36px;
				}
				.isi-contact{
					font-size: 18px;
				}
					.info-contact{
						font-size: 18px;
						border-radius: 10px;
						margin-bottom: 10px;
					}
					.sub-judul-contact{
						font-size: 28px;
						margin-top: 10px;
						margin-bottom: 10px;
					}
						.text-input{
							font-size: 18px;
						}
							.btn-submit{
								padding: 10px;
								font-size: 20px;
								border-radius: 20px;
							}
		
		/* Footer */
		.footer{
			background-size: 72% auto;
		}
			.box-footer{
				padding: 70px;
			}
				.logo-bsi{
					height: 80px;
					margin-bottom: 100px;
				}
					.sub-footer-left{
						width: 70%;
						font-size: 20px;
					}
						.logo-footer-expo{
							height: 90px;
							margin-bottom: 30px;
						}
					.sub-footer-right{
						width: 28%;
						font-size: 18px;
						padding-left: 20px;
					}
						.menu-footer{
							padding: 7px 0px;
						}
}


/*Desktop 1366*/
@media only screen
and (min-width: 1366px) {
				.menu{
					padding: 10px 10px;
					font-size: 16px;
				}
				.dot::after{
					font-size: 20px;
					top: 10px;
				}
				
		/* Overview */
		.overview{
			padding-bottom: 50px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 35px;
					padding-left: 100px;
					font-size: 42px;
				}
				.isi-overview{
					width: 70%;
					padding: 80px 100px;
					padding-right: 150px;
					font-size: 16px;
				}
		
		/* About */
				.judul-about{
					font-size: 32px;
					padding: 30px 100px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					padding-bottom: 30px;
					background: linear-gradient(to bottom,  rgba(255,255,255,1) 30%,rgba(16,127,119,1) 30%,rgba(16,127,119,1) 30%);
				}
				.about-left{
					padding-left: 100px;
				}
				.about-right{
					padding-right: 100px;
				}

		/* Number */
			.box-number{
				padding-top: 50px;
				background-size: 100% auto;
				background-position: top -100px right;
			}
				.judul-number{
					font-size: 32px;
					padding: 20px 100px;
					padding-bottom: 0px;
				}
				.number-desktop{
					padding: 20px 0px;
				}

		/* Target */
				.judul-target{
					font-size: 32px;
					padding: 20px 100px;
					padding-bottom: 50px;
				}
				.isi-target{
					padding: 50px 100px;
					border-top-left-radius: 60px;
				}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 16px;
						}
							.target-exhibition{
								font-size: 16px;
							}
							.sub-judul-target{
								font-size: 20px; 
							}
								.sub-sub-judul-target{
									font-size:18px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 24px;
								}

		/* Attend */
				.judul-attend{
					font-size: 32px;
					padding: 20px 100px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px 100px;
					background-position: top -210px left;
				}
					.box-isi-attend{
						font-size: 18px;
					}
					.isi-attend-right{
						padding-left: 40px;
					}
						.sub-judul-attend{
							font-size: 28px;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 50px;
						}
		
		/* Countries */
			.box-countries{
				padding: 20px 100px;
				background-position: top left 55%, top -80px right;
				background-size: 25% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 32px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 130px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px 100px;
			}
				.judul-highlight{
					font-size: 32px;
					padding: 20px 100px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 50px 100px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 77%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 20%;
					}
						.sub-judul-highlight{
							font-size: 26px;
							margin-bottom: 20px;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 600px;
		}
			.box-brochure{
				padding: 30px 100px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 32px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 300px;
					}
					.icon-buku{
						right: -300px;
						bottom: 150px;
						width: 40%;
					}
		
		/* Registration */
			.box-registration{
				padding: 30px 100px;
				padding-top: 80px;
			}
				.judul-registration{
					font-size: 36px;
				}
					.icon-regis{
						max-width: 500px;
					}
		
		/* News */
			.box-news{
				padding: 30px 100px;
				padding-top: 80px;
			}
					.box-isi-news{
						width: 23.5%;
						margin-left: 1%;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}	
			.detail-news,
			.detail-gallery{
				padding: 30px 80px;
				padding-top: 200px;
			}
			
		/* Promo */
			.box-promo{
				padding: 30px 100px;
				padding-top: 80px;
			}
				.judul-promo{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 30px 100px;
				padding-top: 80px;
			}
				.judul-sponsor{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}

		/* FAQ */
			.box-faq{
				padding: 30px 100px;
				padding-top: 80px;
			}
				.judul-faq{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 18px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 16px;
							padding: 10px;
						}
		
		/* Contact */
			.box-contact{
				padding: 30px 100px;
				padding-top: 50px;
			}
				.judul-contact{
					font-size: 36px;
				}
				.isi-contact{
					font-size: 18px;
				}
					.info-contact{
						font-size: 18px;
						border-radius: 10px;
						margin-bottom: 10px;
					}
					.sub-judul-contact{
						font-size: 28px;
						margin-top: 10px;
						margin-bottom: 10px;
					}
						.text-input{
							font-size: 18px;
						}
							.btn-submit{
								padding: 10px;
								font-size: 22px;
								border-radius: 20px;
							}
		
		/* Footer */
		.footer{
			background-size: 72% auto;
		}
			.box-footer{
				padding: 80px 100px;
			}
}


/*Desktop MAC*/
@media only screen
and (min-width: 1440px) {
				.menu{
					padding: 10px 10px;
					font-size: 16px;
				}
				.dot::after{
					font-size: 22px;
					top: 7px;
				}
		
		/* Banner */
				.text-presiden{
					width: 45%;
					left: 10%;
				}
				.presiden{
					width: 38%;
					right: 5%;
				}
				
		/* Overview */
		.overview{
			padding-bottom: 80px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 35px;
					padding-left: 150px;
					font-size: 42px;
				}
				.isi-overview{
					width: 70%;
					padding: 80px 150px;
					padding-right: 150px;
					font-size: 18px;
				}
		
		/* About */
				.judul-about{
					font-size: 32px;
					padding: 30px 150px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					padding-bottom: 30px;
				}
				.about-left{
					padding-left: 150px;
				}
				.about-right{
					padding-right: 150px;
				}

		/* Number */
			.box-number{
				padding-top: 50px;
				background-size: 100% auto;
				background-position: top -128px right;
			}
				.judul-number{
					font-size: 32px;
					padding: 20px 150px;
					padding-bottom: 0px;
				}
				.number-desktop{
					padding: 20px 0px;
				}

		/* Target */
				.judul-target{
					font-size: 32px;
					padding: 20px 150px;
					padding-bottom: 50px;
				}
				.isi-target{
					padding: 50px 150px;
					border-top-left-radius: 80px;
				}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 16px;
						}
							.target-exhibition{
								font-size: 16px;
							}
							.sub-judul-target{
								font-size: 20px; 
							}
								.sub-sub-judul-target{
									font-size:18px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 24px;
								}

		/* Attend */
				.judul-attend{
					font-size: 32px;
					padding: 20px 150px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px 150px;
					background-position: top -230px left;
				}
					.box-isi-attend{
						font-size: 18px;
					}
					.isi-attend-right{
						padding-left: 40px;
					}
						.sub-judul-attend{
							font-size: 28px;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 50px;
						}
		
		/* Countries */
			.box-countries{
				padding: 20px 150px;
				background-position: top left 55%, top -110px right;
				background-size: 24% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 32px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 120px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px 150px;
			}
				.judul-highlight{
					font-size: 32px;
					padding: 20px 150px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 50px 150px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 77%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 20%;
					}
						.sub-judul-highlight{
							font-size: 26px;
							margin-bottom: 20px;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 600px;
		}
			.box-brochure{
				padding: 30px 150px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 36px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 350px;
					}
					.icon-buku{
						right: -300px;
						bottom: 150px;
						width: 40%;
					}
		
		/* Registration */
			.box-registration{
				padding: 30px 150px;
			}
				.judul-registration{
					font-size: 36px;
				}
					.icon-regis{
						max-width: 500px;
					}
		
		/* News */
			.box-news{
				padding: 30px 150px;
				padding-top: 80px;
			}
					.box-isi-news{
						width: 23.5%;
						margin-left: 1%;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}	
			.detail-news,
			.detail-gallery{
				padding: 30px 150px;
				padding-top: 200px;
			}
			
		/* Promo */
			.box-promo{
				padding: 30px 150px;
				padding-top: 80px;
			}
				.judul-promo{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 30px 150px;
				padding-top: 50px;
			}
				.judul-sponsor{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}

		/* FAQ */
			.box-faq{
				padding: 30px 150px;
				padding-top: 80px;
			}
				.judul-faq{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 18px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 16px;
							padding: 10px;
						}
		
		/* Contact */
			.box-contact{
				padding: 30px 150px;
				padding-top: 50px;
			}
				.judul-contact{
					font-size: 36px;
				}
				.isi-contact{
					font-size: 18px;
				}
					.info-contact{
						font-size: 18px;
						border-radius: 10px;
						margin-bottom: 10px;
					}
					.sub-judul-contact{
						font-size: 28px;
						margin-top: 10px;
						margin-bottom: 10px;
					}
						.text-input{
							font-size: 18px;
						}
							.btn-submit{
								padding: 10px;
								font-size: 20px;
								border-radius: 20px;
							}
		
		/* Footer */
		.footer{
			background-size: 70% auto;
		}
			.box-footer{
				padding: 80px 150px;
			}
}


/*Desktop Full HD MAC*/
@media only screen
and (min-width: 1680px) {
		/* Header */
		.frame-header{
			max-width: 82%;
		}
			.logo{
				width: 350px;
				height: auto;
			}
				.menu{
					padding: 10px 15px;
					font-size: 18px;
				}
					.box-dot{
						top: -1px;
					}
				.dot::after{
					font-size: 24px;
					top: 5px;
				}
			
			.header.shrink .frame-header{
				width: 100%;
			}
				.header.shrink .frame-header .logo{
					width: 250px;
				}
				.header.shrink .frame-header .box-menu{
					top: 40px;
					right: 5px;
					width: 82%;
				}
					.header.shrink .frame-header .box-menu .menu{
						padding: 10px 10px;
						font-size: 15px;
					}
					.header.shrink .frame-header .box-menu .dot::after{
						font-size: 20px;
						top: 10px;
					}
		
		/* Banner */
				.text-presiden{
					width: 40%;
					left: 10%;
					top: 25vw;
				}
					
		/* Overview */
		.overview{
			padding-bottom: 80px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 35px;
					padding-left: 180px;
					font-size: 42px;
				}
				.isi-overview{
					width: 70%;
					padding: 80px 180px;
					padding-right: 200px;
					font-size: 18px;
				}
		
		/* About */
				.judul-about{
					font-size: 32px;
					padding: 30px 180px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					padding-bottom: 30px;
					background: linear-gradient(to bottom,  rgba(255,255,255,1) 30%,rgba(16,127,119,1) 30%,rgba(16,127,119,1) 30%);
				}
				.about-left{
					padding-left: 180px;
				}
				.about-right{
					padding-right: 180px;
				}

		/* Number */
			.box-number{
				padding-top: 50px;
				background-size: 100% auto;
				background-position: top -170px right;
			}
				.judul-number{
					font-size: 32px;
					padding: 20px 180px;
					padding-bottom: 0px;
				}

		/* Target */
				.judul-target{
					font-size: 32px;
					padding: 20px 180px;
					padding-bottom: 50px;
				}
				.isi-target{
					padding: 50px 180px;
					border-top-left-radius: 100px;
				}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 18px;
						}
							.target-exhibition{
								font-size: 18px;
							}
							.sub-judul-target{
								font-size: 22px; 
							}
								.sub-sub-judul-target{
									font-size:20px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 26px;
								}

		/* Attend */
				.judul-attend{
					font-size: 32px;
					padding: 20px 180px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px 180px;
					background-position: top -280px left;
				}
					.box-isi-attend{
						font-size: 18px;
					}
					.isi-attend-right{
						padding-left: 40px;
					}
						.sub-judul-attend{
							font-size: 28px;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 50px;
						}
		
		/* Countries */
			.box-countries{
				padding: 20px 180px;
				background-position: top left 55%, top -160px right;
				background-size: 21% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 32px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 120px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px 180px;
			}
				.judul-highlight{
					font-size: 32px;
					padding: 20px 180px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 50px 180px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 77%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 20%;
					}
						.sub-judul-highlight{
							font-size: 26px;
							margin-bottom: 20px;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 650px;
		}
			.box-brochure{
				padding: 30px 180px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 42px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 350px;
					}
					.icon-buku{
						right: -300px;
						bottom: 180px;
						width: 38%;
					}
		
		/* Registration */
			.box-registration{
				padding: 30px 180px;
			}
				.judul-registration{
					font-size: 38px;
				}
		
		/* News */
			.box-news{
				padding: 30px 180px;
				padding-top: 80px;
			}
					.box-isi-news{
						width: 23.5%;
						margin-left: 1%;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}	
			.detail-news,
			.detail-gallery{
				padding: 30px 180px;
				padding-top: 250px;
			}
			
		/* Promo */
			.box-promo{
				padding: 30px 180px;
				padding-top: 80px;
			}
				.judul-promo{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 30px 180px;
				padding-top: 50px;
			}
				.judul-sponsor{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}

		/* FAQ */
			.box-faq{
				padding: 30px 180px;
				padding-top: 80px;
			}
				.judul-faq{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 18px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 16px;
							padding: 10px;
						}
		
		/* Contact */
			.box-contact{
				padding: 30px 180px;
				padding-top: 50px;
			}
				.judul-contact{
					font-size: 38px;
				}
					.sub-judul-contact{
						font-size: 30px;
					}
		
		
		/* Footer */
		.footer{
			background-size: 70% auto;
		}
			.box-footer{
				padding: 80px 180px;
			}
				.logo-bsi{
					height: 100px;
				}
					.sub-footer-left{
						font-size: 22px;
					}
						.logo-footer-expo{
							height: 110px;
							margin-bottom: 30px;
						}
					.sub-footer-right{
						font-size: 20px;
						padding-left: 30px;
					}
						.menu-footer{
							padding: 8px 0px;
						}
}


/*Desktop Full HD*/
@media only screen
and (min-width: 1920px) {
				.menu{
					padding: 10px 25px;
					font-size: 18px;
				}
					.box-dot{
						top: -2px;
					}
				.dot::after{
					font-size: 26px;
					top: 5px;
				}
				
		/* Overview */
		.overview{
			padding-bottom: 80px;
		}
			.box-overview{
				font-size: 14px;
			}
				.judul-overview{
					padding: 35px;
					padding-left: 200px;
					font-size: 42px;
				}
				.isi-overview{
					width: 70%;
					padding: 80px 200px;
					padding-right: 220px;
					font-size: 18px;
				}
		
		/* About */
				.judul-about{
					font-size: 32px;
					padding: 30px 200px;
					margin-bottom: 10px;
				}
				.about-left,
				.about-right{
					padding-bottom: 30px;
					background: linear-gradient(to bottom,  rgba(255,255,255,1) 30%,rgba(16,127,119,1) 30%,rgba(16,127,119,1) 30%);
				}
				.about-left{
					padding-left: 200px;
				}
				.about-right{
					padding-right: 200px;
				}

		/* Number */
			.box-number{
				padding-top: 50px;
				background-size: 100% auto;
				background-position: top -212px right;
			}
				.judul-number{
					font-size: 32px;
					padding: 20px 200px;
					padding-bottom: 0px;
				}

		/* Target */
				.judul-target{
					font-size: 32px;
					padding: 20px 200px;
					padding-bottom: 50px;
				}
				.isi-target{
					padding: 50px 200px;
					border-top-left-radius: 120px;
				}
					.target-left{
						margin-bottom: 30px;
					}
						.box-target-isi-left,
						.box-target-isi-right{
							font-size: 20px;
						}
							.target-exhibition{
								font-size: 20px;
							}
							.sub-judul-target{
								font-size: 24px; 
							}
								.sub-sub-judul-target{
									font-size:22px;
								}
							.img-bottom-left{
								border-radius: 25px;
								border-bottom-left-radius: 0px;
							}
								.target-1{
									margin-bottom: 20px;
								}
							.img-top-right{
								border-radius:25px;
								border-top-right-radius:0px;
							}
								.target-tenant{
									font-size: 28px;
								}

		/* Attend */
				.judul-attend{
					font-size: 32px;
					padding: 20px 200px;
					padding-bottom: 0px;
				}
				.isi-attend{
					padding: 20px 200px;
					background-position: top -300px left;
				}
					.box-isi-attend{
						font-size: 18px;
					}
					.isi-attend-right{
						padding-left: 40px;
					}
						.sub-judul-attend{
							font-size: 28px;
							margin-bottom: 10px;
						}
						.isi-attend-left{
							margin-bottom: 50px;
						}
		
		/* Countries */
			.box-countries{
				padding: 20px 200px;
				background-position: top left 55%, top -200px right;
				background-size: 20% auto, 100% auto;
			}
				.isi-countries{
					width: 48%;
				}
					.judul-countries{
						font-size: 32px;
						padding: 20px 0px;
					}
					.img-grafik{
						padding-top: 150px;
					}

		/* Highlight */
			.box-highlight{
				padding-top: 20px 200px;
			}
				.judul-highlight{
					font-size: 32px;
					padding: 20px 200px;
					padding-bottom: 20px;
				}
				.isi-highlight{
					padding: 50px 200px;
					border-top-right-radius: 60px;
				}
					.box-isi-highlight-left{
						width: 77%;
						margin-right: 2%;
					}
					.box-isi-highlight-right{
						width: 20%;
					}
						.sub-judul-highlight{
							font-size: 26px;
							margin-bottom: 20px;
						}
							.cat-business,
							.cat-public{
								border-radius: 35px;
							}
							.cat-business{
								margin-bottom: 20px;
							}
		
		/* Brochure */
		.brochure{
			height: 650px;
		}
			.box-brochure{
				padding: 30px 200px;
				padding-top: 50px;
			}
				.judul-brochure{
					font-size: 42px;
				}
				.isi-brochure{
					margin-bottom: 50px;
				}
					.btn-download{
						width: 400px;
					}
					.icon-buku{
						right: -400px;
						bottom: 180px;
						width: 35%;
					}
		
		/* Registration */
			.box-registration{
				padding: 30px 200px;
			}
				.judul-registration{
					font-size: 38px;
				}
		
		/* News */
			.box-news{
				padding: 30px 200px;
				padding-top: 80px;
			}
					.box-isi-news{
						width: 23.5%;
						margin-left: 1%;
					}
					.box-other-news{
						width: 100%;
						margin-left: 0px;
					}
						.judul-isi-news{
							font-size: 16px;
						}	
			.detail-news,
			.detail-gallery{
				padding: 30px 200px;
				padding-top: 250px;
			}
			
		/* Promo */
			.box-promo{
				padding: 30px 200px;
				padding-top: 80px;
			}
				.judul-promo{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-promo{
					margin-bottom: 50px;
				}

		/* Sponsor */
			.box-sponsor{
				padding: 30px 200px;
				padding-top: 50px;
			}
				.judul-sponsor{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-sponsor{
					margin-bottom: 50px;
				}

		/* FAQ */
			.box-faq{
				padding: 30px 200px;
				padding-top: 80px;
			}
				.judul-faq{
					font-size: 32px;
					margin-bottom: 20px;
				}
				.isi-faq{
					margin-bottom: 50px;
				}
						.isi-tanya{
							font-size: 18px;
							padding: 10px;
							padding-right: 30px;
						}
						.isi-jawab{
							font-size: 16px;
							padding: 10px;
						}
		
		/* Contact */
			.box-contact{
				padding: 30px 200px;
				padding-top: 50px;
			}
				.judul-contact{
					font-size: 38px;
				}
					.sub-judul-contact{
						font-size: 30px;
					}
		
		/* Footer */
		.footer{
			background-size: 70% auto;
		}
			.box-footer{
				padding: 70px 200px;
			}
}