@import url("fonts.css");

*,
*::before,
*::after {
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}

body {
	background: #000;
	overflow-x: hidden;
	font-family: "Open Sans";
	color: #FFF;
}

.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1920px;
}

.wrapper::before,
.wrapper::after,
.row::before,
.row::after {
	content: "";
	display: table;
}

.wrapper::after,
.row::after {
	clear: both;
}

[class*='col-'] {
	width: 100%;
	float: left;
	min-height: 1px;
}

@media screen and (min-width: 320px) {
	.col-sm-1 {
		width: 8.33%
	}

	.col-sm-2 {
		width: 16.66%
	}

	.col-sm-3 {
		width: 25%
	}

	.col-sm-4 {
		width: 33.33%
	}

	.col-sm-5 {
		width: 41.66%
	}

	.col-sm-6 {
		width: 50%
	}

	.col-sm-7 {
		width: 58.33%
	}

	.col-sm-8 {
		width: 66.66%
	}

	.col-sm-9 {
		width: 75%
	}

	.col-sm-10 {
		width: 83.33%
	}

	.col-sm-11 {
		width: 91.66%
	}

	.col-sm-12 {
		width: 100%
	}
}

@media screen and (min-width: 640px) {
	.col-md-1 {
		width: 8.33%
	}

	.col-md-2 {
		width: 16.66%
	}

	.col-md-3 {
		width: 25%
	}

	.col-md-4 {
		width: 33.33%
	}

	.col-md-5 {
		width: 41.66%
	}

	.col-md-6 {
		width: 50%
	}

	.col-md-7 {
		width: 58.33%
	}

	.col-md-8 {
		width: 66.66%
	}

	.col-md-9 {
		width: 75%
	}

	.col-md-10 {
		width: 83.33%
	}

	.col-md-11 {
		width: 91.66%
	}

	.col-md-12 {
		width: 100%
	}
}

@media screen and (min-width: 980px) {
	.col-lg-1 {
		width: 8.33%
	}

	.col-lg-2 {
		width: 16.66%
	}

	.col-lg-3 {
		width: 25%
	}

	.col-lg-4 {
		width: 33.33%
	}

	.col-lg-5 {
		width: 41.66%
	}

	.col-lg-6 {
		width: 50%
	}

	.col-lg-7 {
		width: 58.33%
	}

	.col-lg-8 {
		width: 66.66%
	}

	.col-lg-9 {
		width: 75%
	}

	.col-lg-10 {
		width: 83.33%
	}

	.col-lg-11 {
		width: 91.66%
	}

	.col-lg-12 {
		width: 100%
	}
}

a {
	text-decoration: none;
}

img {
	width: 100%;
}

button {
	cursor: pointer;
}

button,
input {
	outline: none;
}

.d-flex {
	display: flex;
}

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.space-between {
	justify-content: space-between;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.justify-content-center {
	justify-content: center;
}

.align-items {
	align-items: center;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1600px;
}

/* Overlay */

.cloud-overlay {
	position: relative;
	z-index: 99;
}

.cloud-overlay img {
	position: absolute;
	height: 100vh;
}

.l-cloud-animation,
.r-cloud-animation {
	animation-fill-mode: both;
	animation-duration: 2s;
	animation-delay: 1.5s;
}

@keyframes lcloudAnimation {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

.lcloudanimation {
	animation-name: lcloudAnimation;
}

@keyframes rcloudAnimation {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(100%);
	}
}

.rcloudanimation {
	animation-name: rcloudAnimation;
}

/* Navbar */

nav {
	height: 80px;
	position: fixed;
	width: 100%;
	max-width: 1920px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.1);
	transition: .7s;
}

.bars-icon {
	position: absolute;
	right: 20px;
	width: 25px;
	cursor: pointer;
	z-index: 99;
	display: none;
	transition: .3s;
}

.span {
	height: 2px;
	margin: 6px 0;
	background: #FFF;
}

#one {
	transition: transform .3s;
}

#two {
	width: 20px;
	background: #D51006;
	transition: width .3s .3s;
}

#three {
	width: 15px;
	transition: transform .3s, width .3s .3s;
}

.bars-icon.on #one {
	transform: rotate(45deg) translateX(5px) translateY(9.5px);
	transition: transform .3s .3s;
}

.bars-icon.on #two {
	width: 0;
}

.bars-icon.on #three {
	width: 25px;
	transform: rotate(-45deg) translateX(1.5px) translateY(-6.5px);
	transition: width .3s, transform .3s .3s;
}

nav a {
	margin: 0 70px;
	color: #FFF;
	font-size: 15px;
	font-family: "Torque Sense";
	transition: .3s;
}

a.nav-logo {
	font-family: "Oliver";
	font-size: 25px;
	letter-spacing: 1px;
	margin: 0 60px;
	color: #D51006;
}

nav a:hover {
	color: #D51006;
}

@media screen and (max-width: 1280px) {
	nav a {
		margin: 0 40px;
	}
}

@media screen and (max-width: 960px) {
	nav a:not(:nth-child(3)) {
		display: none;
	}

	.bars-icon {
		display: block;
	}
}

@media screen and (max-width: 480px) {
	nav {
		height: 70px;
	}

	a.nav-logo {
		font-size: 20px;
	}
}

/* Sidenav */

.sidenav {
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	overflow-x: hidden;
	z-index: 10;
	height: 100%;
	width: 0;
	transition: .5s;
}

.sidenav a {
	color: #FFF;
	font-family: "Torque Sense";
	font-size: 16px;
	margin: 20px 0;
	transition: .3s;
}

.sidenav a:hover {
	color: #D51006;
}

.sidenav-active {
	width: 100%;
}

/* Banner */

.banner {
	width: 100vw;
	height: 100vh;
	max-width: 1920px;
	max-height: 1080px;
	background: url("../img/banner/banner.jpg");
	background-size: cover;
	background-position: center;
}

.text-banner {
	text-align: center;
}

p.header-banner {
	font-family: "Triumph";
	font-size: 130px;
	transition: .3s;
}

p.title-banner {
	margin: 0 10px;
	font-family: "TimesNewRoman,Times New Roman,Times";
	font-size: 15px;
	letter-spacing: 4px;
	transition: .3s;
}

button.btn-banner {
	width: 200px;
	margin: 70px 10px;
	background: #D51006;
	border: 1px solid #D51006;
	padding: 10px 10px;
	font-family: "Poppins";
	font-weight: 600;
	font-size: 12px;
	color: #FFF;
	letter-spacing: 2px;
	transition: .3s;
}

button.btn-banner:hover {
	letter-spacing: 3px;
}

@media screen and (max-width: 500px) {
	p.header-banner {
		font-size: 100px;
	}

	p.title-banner {
		font-size: 13px;
		letter-spacing: 3px;
	}

	button.btn-banner {
		width: 150px;
	}
}

@media screen and (max-width: 375px) {
	p.header-banner {
		font-size: 100px;
	}

	p.title-banner {
		font-size: 12px;
		letter-spacing: 3px;
	}

	button.btn-banner {
		font-size: 10px;
		width: 150px;
	}
}

@media screen and (max-width: 340px) {
	p.header-banner {
		font-size: 80px;
	}

	p.title-banner {
		letter-spacing: 2px;
	}
}

/* Content Header */

.header {
	margin: 0 20px 50px 20px;
}

p.content-header {
	font-family: "Torque Sense";
	font-size: 25px;
	text-align: center;
}

hr {
	border: 1px solid #D51006;
	width: 160px;
	opacity: .7;
	margin: 20px 0;
}

/* Overview */

.overview {
	margin: 0 50px auto;
	margin-bottom: 100px;
	padding-top: 100px;
}

.img-overview img {
	float: right;
}

.text-overview {
	margin: 100px 0;
	transition: .3s;
}

.header-overview {
	position: relative;
}

.header-overview p {
	font-family: "Triumph";
	font-size: 150px;
	transition: .3s;
}

.header-overview::after {
	content: "THE INDONESIAN PUPPET THEATER";
	position: absolute;
	bottom: 25px;
	left: 135px;
	font-family: "TimesNewRoman,Times New Roman,Times";
	font-size: 16px;
	color: #D51006;
	letter-spacing: 5px;
	transition: .3s;
}

p.desc-overview {
	opacity: .9;
	margin-top: 20px;
	margin-left: 30px;
	font-family: "Open Sans";
	font-size: 14px;
	text-align: justify;
	text-indent: 40px;
	line-height: 30px;
}

@media screen and (max-width: 1440px) {
	.text-overview {
		margin: 50px 0;
	}
}

@media screen and (max-width: 1280px) {
	.header-overview p {
		font-size: 100px;
	}

	.header-overview::after {
		font-size: 14px;
		bottom: 15px;
		left: 90px;
	}
}

@media screen and (max-width: 980px) {
	.text-overview {
		margin: 30px 0;
	}

	.header-overview p {
		font-size: 70px;
	}

	.header-overview::after {
		font-size: 10px;
		bottom: 10px;
		left: 70px;
	}
}

@media screen and (max-width: 768px) {
	.text-overview {
		margin: 0;
	}
}

@media screen and (max-width: 640px) {
	.img-overview img {
		margin: 30px 0;
		width: 50%;
		float: none;
	}

	p.desc-overview {
		margin-left: 0;
	}
}

@media screen and (max-width: 480px) {
	.header-overview::after {
		letter-spacing: 3px;
	}

	.overview {
		margin: 0 20px auto;
	}

	.img-overview img {
		width: 70%;
	}
}

@media screen and (max-width: 414px) {
	.header-overview::after {
		letter-spacing: 2px;
	}

	.img-overview img {
		width: 70%;
	}
}

@media screen and (max-width: 340px) {
	.header-overview::after {
		letter-spacing: 1.5px;
	}

	.header-overview::after {
		left: 60px;
		font-size: 9px;
	}
}

/* Models */

span.cr {
	color: #D51006;
}

.models {
	margin: 20px 0;
	padding-top: 100px;
}

.models-section {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
}

.models-content {
	margin: 130px 30px;
}

.models-content:first-child {
	margin-top: 50px;
}

.img-models {
	text-align: center;
}

.img-models img {
	width: 50%;
	transition: .3s;
}

.models-content:not(:first-child) img {
	width: 70%;
}

p.wayang-title {
	font-family: "Triumph";
	font-size: 80px;
	transition: .3s;
}

p.desc-wayang {
	opacity: .9;
	margin: 50px 0;
	line-height: 28px;
	text-indent: 40px;
	font-size: 15px;
	transition: .3s;
}

.models-info {
	font-family: "Poppins";
	font-weight: 600;
	font-size: 14px;
	transition: .3s;
}

.line-divider {
	background: #FFF;
	width: 3px;
	height: 30px;
	margin: 0 30px;
}

@media screen and (max-width: 768px) {
	p.wayang-title {
		font-size: 60px;
	}

	p.desc-wayang {
		margin: 30px 0;
	}

	.models-content:not(:first-child) img {
		width: 80%;
	}

	.img-models img {
		width: 60%;
	}
}

@media screen and (max-width: 640px) {
	.models-content {
		flex-direction: column;
	}

	.models-content:not(:first-child) img {
		width: 30%;
	}

	.img-models img {
		width: 30%;
	}

	.text-models {
		margin: 20px 0;
	}

	.models-content:last-child img {
		width: 80%;
	}
}

@media screen and (max-width: 480px) {
	.models-content {
		flex-direction: column;
	}

	.models-content:not(:first-child) img {
		width: 50%;
	}

	.img-models img {
		width: 30%;
	}

	p.desc-wayang {
		font-size: 13px;
	}

	.text-models {
		margin: 20px 0px;
	}

	.models-info {
		justify-content: center;
		font-size: 12px;
	}

	.models-content:last-child img {
		width: 80%;
	}
}

@media screen and (max-width: 375px) {
	.line-divider {
		margin: 0 15px;
	}
}

@media screen and (max-width: 330px) {
	p.wayang-title {
		font-size: 50px;
	}

	.models-info {
		justify-content: center;
		font-size: 11px;
	}

	.line-divider {
		margin: 0 10px;
	}
}

/* Myth */

.myth {
	background: url("../img/myth/bg.jpg");
	background-position: center;
	background-size: cover;
	height: 810px;
	padding: 20px;
}

.myth-section {
	overflow: hidden;
}

.img-myth {
	text-align: center;
}

.img-myth img {
	width: 70%;
}

.myth-title {
	position: relative;
	margin: 50px 0;
}

.myth-title p {
	font-family: "Torque Sense";
	font-size: 40px;
}

.myth-title::after {
	content: "STARTING AT THE THEATER";
	position: absolute;
	bottom: -20px;
	left: 70px;
	font-family: "TimesNewRoman,Times New Roman,Times";
	font-size: 16px;
	color: #D51006;
	letter-spacing: 5px;
	transition: .3s;
}

p.desc-myth {
	text-indent: 40px;
	opacity: .9;
	line-height: 28px;
	font-size: 16px;
	margin: 50px 0;
	text-align: justify;
}

.ind {
	display: none;
}

.eng {
	display: block;
}

@media screen and (max-width: 640px) {
	.myth-section {
		flex-direction: column;
	}
}

@media screen and (max-width: 480px) {
	.myth-title p {
		font-size: 30px;
	}

	.myth-title::after {
		letter-spacing: 3px;
	}

	p.desc-myth {
		font-size: 13px;
	}
}

@media screen and (max-width: 384px) {
	.myth-title p {
		font-size: 30px;
	}

	.myth-title::after {
		font-size: 12px;
	}
}

@media screen and (max-width: 330px) {
	.myth-title p {
		font-size: 25px;
	}

	.myth-title::after {
		letter-spacing: 2px;
		font-size: 11px;
	}

	p.desc-myth {
		font-size: 13px;
	}
}

/* Footer */

footer {
	margin: 30px 0;
	font-size: 14px;
}

footer a {
	color: #FFF;
	transition: .3s;
}

.top-footer {
	width: 100%;
	text-align: center;
	margin: 20px 0;
}

.lang {
	text-align: left;
}

.lang a {
	font-family: "Poppins";
	font-weight: 600;
	font-size: 14px;
	margin: 0 15px;
	transition: .3s;
}

.lang a:hover {
	color: #D51006;
}

.bottom-logo a {
	font-family: "Oliver";
	color: #D51006;
	font-size: 25px;
}

.location {
	text-align: right;
	font-family: "Poppins";
	font-weight: 400;
	font-size: 14px;
	margin: 0 15px;
}

hr.line-footer {
	width: 100%;
	opacity: .4;
}

p.copy {
	font-family: "Poppins";
	font-weight: 400;
	font-size: 12px;
}

img.img-map {
	width: 15px;
	margin-right: 5px;
}

img.img-lang {
	width: 20px;
	margin-left: 15px;
}

@media screen and (max-width: 640px) {
	footer {
		flex-direction: column;
	}
}

@media screen and (max-width: 480px) {
	.top-footer {
		height: 100px;
		flex-direction: column;
	}
}