/* FONT */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Montserrat|Raleway:200,300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Italianno');

/* GENERAL */
*,
*:after,
*::before {
	box-sizing: border-box;
	margin:0px;
	padding:0px;
}
html,body{
	height: 100%;
}
body{
	background: #fff;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    color:#252525;
    font-weight: 300;
    overflow-x: hidden;
}
p{
	line-height: 180%;
}
strong{
	color:#111;
}
.nomargin{
	margin:0;
}
.nopadding{
	padding:0;
}
a,a:link{
	color:#555b39;
}
a:hover{
	opacity: 0.8;
}
.btn:hover{
	opacity: 0.8;
}
.btn.btn-more{
	background: #515459;
	color:#fff;
	border:none;
	padding-left: 30px;
	padding-right: 30px;
}
.font-italiano{
	font-family: 'Italianno', cursive;
}
.thumbnail{
	border-radius:0;
	-webkit-border-radius:0;
	padding:0;
	border:none;
	background:none;
	opacity: 1;
	margin:0;
}
.thumbnail:hover{
	opacity: 1;
}
.thumbnail.thumbnail-bg{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
	margin:0;
}
.section{
	position: relative;
}
.section-sm{
	padding:15px 0;
}
.section-md{
	padding:30px 0;
}
.section-lg{
	/*padding:50px 0;*/
	padding:50px 0;
}
.section-xl{
	padding:80px 0;
}
.section-bg{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-hero{
	min-height: calc(100% - 160px);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section-hero.fixed-bg{
	background-attachment: fixed;
}
.section-hero.black-opaque:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:rgba(0,0,0,0.3);
}
.section-hero .title{
	color:#fff;
	text-align: center;
	position: relative;
	margin-top:100px;
	font-family: 'Raleway', sans-serif;
}
.section-hero .title h2{
	font-weight: bold;
}
.section-hero .caption{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	color:#fff;
	text-align: center;
	font-family: 'Raleway', sans-serif;
}
.section-hero h2{
	font-size:40px;
}
.section-hero h5{
	font-size:16px;
	line-height: 20px;
}
.heading h2{
	color:#252525;
}
.heading h5{
	color:#252525;
}
.heading-italic{
	font-family: 'Italianno', cursive;
	word-spacing: 15px;
	font-weight: bold;
}
.heading hr{
	display: block;
	width: 150px;
	margin:30px auto;
	border:none;
	border-bottom:1px solid #252525;
}
.header{
	background:#fff;
	border:none;
	border-radius: 0;
	-webkit-border-radius: 0;
	margin:0;
}
.header .navbar-brand{
	float:none;
	padding:0;
	margin:15px 0;
	text-align: center;
	display: block;
	height: 50px;
}
.header .navbar-brand > img{
	display: inline-block;
	margin:0 auto;
	width: auto;
	height: 100%;
}
.navigation{
	position:relative;
	z-index: 100;
}
.navigation .navbar-nav{
	text-align: center;
	float: none;
	margin:30px 0;
}
.navigation .navbar-nav > li{
	position: relative;
	border-right:1px solid #eee;
}
.navigation .navbar-nav > li:last-child{
	border:none;
}
.navigation .navbar-nav > li > a{
	color:#333;
	text-transform: uppercase;
	font-size:14px;
	display: block;
	font-weight: bold;
	padding:0 15px;
	line-height: 20px;
	position: relative;
	overflow: hidden;
	opacity: 1!important;
}
.navigation .navbar-nav > li > a:hover{
	color:#ccc;
	background:none;
}
.navigation .navbar-nav > li.active > a{
	color:#ccc;
	background: none;
}
#slideshow{
	height: calc(100% - 80px);
	background:#111;
}
#slideshow .slick-list,
#slideshow .slick-track,
#slideshow .slick-slide{
	height: 100%;
	position: relative;
}
#slideshow .slick-slide .bg{
	width: 100%;
	height: 100%;
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}
#slideshow .slick-dots{
	list-style:none;
	margin:0;
	padding:0;
	position: absolute;
	bottom:30px;
	left:0;
	right:0;
	z-index: 99;
	text-align: center;
}
#slideshow .slick-dots li{
	display: inline-block;
}
#slideshow .slick-dots li button{
	width: 10px;
	height: 10px;
	text-indent: -9999px;
	background:#fff;
	border:2px solid #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	margin:0 5px;
	outline: none;
}
#slideshow .slick-dots li.slick-active button{
	background: none;
	border:2px solid #fff;
}
#slideshow .slick-arrow{
	position: absolute;
	top:50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border:none;
	background:rgba(0,0,0,0.3);
	color:#fff;
	font-size:20px;
	outline: none;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
}
#slideshow .slick-arrow:hover{
	color:#333;
	background:rgba(255,255,255,0.8);
}
#slideshow .slick-arrow.slick-prev{
	left:0;
}
#slideshow .slick-arrow.slick-next{
	right:0;
}
#section-welcome{
	background:#f0f0f0 url(../images/about-bg.png) fixed no-repeat right top;
	padding:100px 0;
}
#section-welcome .thumbnail{
	position: relative;
}
#section-welcome .thumbnail:before{
	content: "";
	position: absolute;
	border:10px solid #c4bab0;
	top:10px;
	left:10px;
	width: calc(100%);
	height: calc(100%);
}
#section-welcome .thumbnail img{
	position: relative;
	transform: translate(-15px,-15px);
}
#section-welcome .col-sm-6:first-child{
	padding-right: 50px;
}
.price-item{
	position: relative;
	border:1px solid #e9e9e9;
	background:#f8f8f8;
	min-height: 500px;
	margin: 50px 0;
}
.price-item:before{
	content: "";
	position: absolute;
	top:10px;
	left:10px;
	width: 100%;
	height: 100%;
	border:1px solid #e9e9e9;
	z-index: -1;
}
.price-item .thumbnail{
	position: relative;
	height: 200px;
	overflow: hidden;
}
.price-item .thumbnail:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:rgba(0,0,0,0.4);
}
.price-item .thumbnail .caption{
	position: absolute;
	bottom:30px;
	left:15px;
	right:15px;
	color:#fff;
	font-size: 25px;
	text-transform: uppercase;
	font-weight:bold;
	font-family: serif;
	padding:0;
}
.price-item .price{
	position: absolute;
	top:-30px;
	right:-10px;
	padding:15px;
	background:rgba(141,142,146,0.8);
	color:#fff;
	font-size: 20px;
	font-weight: bold;
	font-family: serif;
	border:2px solid #fff;
}
.price-item .link{
	position: absolute;
	bottom:-10px;
	right:-10px;
	padding:8px 15px;
	color:#fff;
	text-transform: uppercase;
	font-weight: bold;
	background:#b3b2b7;
	border:2px solid #e7e7e9;
}
.price-item .info{
	padding:30px;
	color:#999;
}
.price-item .info ul{
	list-style:none;
}
.price-item .info ul li{
	position: relative;
	padding-left: 25px;
	line-height: 30px;
}
.price-item .info ul li:before{
	content: "\f058";
	font-family: "FontAwesome";
	position: absolute;
	top:-2px;
	left:0;
	overflow: visible;
	color:#9a9b9f;
	padding: 2px;
}
.price-row{
	margin:0 30px;
}
.price-row .slick-arrow{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	background:none;
	border:none;
	color:#d1d1d3;
	font-size:100px;
	outline: none;
}
.price-row .slick-arrow.slick-prev{
	left:-30px;
}
.price-row .slick-arrow.slick-next{
	right:-40px;
}
#section-recent-work{
	background:#f0f0f0;
}
.works-nav{
	float: none;
	text-align: center;
}
.works-nav li{
	float: none;
	display: inline-block;
}
.works-nav li a{
	background:#a0a0a0;
	border-radius: 5px;
	padding:5px 10px;
	color:#fff;
	margin:0 5px;
}
.works-nav li a:hover{
	background:#555;
}
.works-nav li.active a{
	background:#000;
}
/*.works-row > div:nth-child(3n+1){
	clear: both;
}*/
.box-harga{
    position: inherit;
    border: 1px solid #e9e9e9;
    background: #bd9758;
    z-index: 991;
}
.box-harga .harga {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 15px;
    background: #bd9758;
    font-family: unset;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #fff;
}
.works-item{
	margin:0 0 30px;
}
.works-row .photo-item{
	position: relative;
	min-height: auto;
}
.works-row .photo-item .thumbnail{
	margin:0;
}
.works-row .photo-item .info{
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	background:#fff;
	transform:translateY(100%);
	-webvkit-transform:translateY(100%);
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
}
.works-row .photo-item:hover .info{
	transform: translateY(0);
	-webkit-transform: translateY(0);
}
.datebox{
	border:2px solid #333;
	padding:10px;
	font-weight: bold;
	line-height: 100%;
}
.datebox .date{
	font-size:20px;
}
.news-item .media{
	margin:15px 0 15px;
}
.news-item .media h5{
	margin:0;
	font-weight: bold;
}
.news-item .meta{
	color:#aaa;
	font-size:12px;
}
.news-item .meta a{
	font-weight: bold;
	color:#333;
	text-decoration: none!important;
}
.news-item .text{
	color:#999;
	font-size:12px;
}
#section-contact{
	text-align: center;
	background:#1b2026;
	color:#fff;
	padding:15px 0;
	font-size:12px;
}
#section-contact h2{
	font-weight: bold;
	margin:0;
}
#section-contact .thumbnail{
	width: 50px;
	margin:0 auto 15px;
}
#section-contact a{
	color:#fff;
}
#section-instagram{
	padding:30px 0;
	background:#eee7df;
	text-align: center;
}
#section-instagram h2{
	margin:0 0 15px;
	font-weight: bold;
}
.instagram-list{
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	flex-direction: row;
	-webkit-flex-direction: row;
}
.instagram-list .thumbnail{
	display: block;
}
#section-nav-footer{
	padding:15px 0;
	background:#eee7df;
}
#section-nav-footer .navbar-nav{
	float: none;
	text-align: center;
}
#section-nav-footer .navbar-nav li{
	float: none;
	display: inline-block;
	border-right:1px solid #333;
}
#section-nav-footer .navbar-nav li:last-child{
	border:none;
}
#section-nav-footer .navbar-nav li a{
	padding:0 10px;
	text-align: center;
	color:#333;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "Roboto", sans-serif
	background:none!important;
}
#section-nav-footer .navbar-nav li a:hover{
	background:none;
	color:#111;
	opacity: 1;
	font-weight:  bold;
}
#section-footer{
	background:#eee7df;
}
.nav-social{
	float: none;
	text-align: center;
}
.nav-social li{
	display: inline-block;
	float: none;
}
.nav-social li a{
	display: block;
	font-size:25px;
	color:#626874;
	transition:all 300ms ease;
}
.nav-social li a:hover{
	text-decoration: none;
	color:#111;
	opacity: 1;
	background:none;
}
.copyright{
	margin:15px 0 0;
}
.copyright a{
	font-weight:  bold;
	color:#111;
}
.photo-row > div:nth-child(4n+1){
	clear: both;
}
.photo-item{
	background:#fff;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	border-radius: 2px;
	-webkit-border-radius: 2px;
	overflow: hidden;
}
.photo-item .info{
	font-size: 11px;
	padding:10px;
}
.photo-item{
	margin:0 0 30px;
	min-height: 250px;
	color:#aaa;
}
.photo-item h5{
	margin:0;
	font-weight: bold;
	font-size:11px;
	color:#333;
}
.photo-item .pull-left{
	max-width: calc(100% - 50px);
}
.photo-item .cat{
	font-style: italic;
}
.album-row{
	margin:0 -5px;
}
.album-row > div{
	padding:0 5px;
}
.album-item{
	margin:0 5px 10px;
}
.album-item .text{
	height: 360px;
	padding:50px;
	background:#fff;
	font-size:12px;
}
.album-item .text .cat{
	color:#aaa;
}
.grid-sizer,
.grid-item { width: 25%; }
.grid-item--width2 { width: 50%; }
.grid-item .text{
	height: 356px;
	background:#fff;
	padding:50px;
	margin:0 5px 10px;
}

@media (max-width: 992px){
	body{
		overflow-x: hidden;
	}
	.container{
		max-width:95%;
		width: 95%;
	}
	.navigation .navbar-nav li a{
		font-size:12px;
		padding:0 5px;
	}
	.grid-item .text{
		height: auto;
	}
}
@media (max-width: 767px){
	body{
		padding-top:60px;
	}
	body.noscroll{
		height: 100%!important;
		overflow: hidden!important;
	}
	.header{
		position: fixed;
		top:0;
		left:0;
		right:0;
		height: 60px;
		background:#fff;
		z-index: 999;
		box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	}
	.navbar-brand{
		margin:0;
		padding:0;
		position: absolute;
		top:0;
		left:0;
		bottom:0;
		right:0;
		text-align: center;
	}
	.navbar-brand img{
		margin:0 auto 0!important;
		height: 40px!important;
		width: auto;
	}
	.navbar-header{
		position: absolute;
		top:0;
		left:0;
		right:0;
		height: 60px;
		background:#fff;
		z-index: 9999;
		margin:0!important;
	}
	.navbar-toggle{
		position: absolute;
		top:0;
		left:0;
		bottom:0;
		width: 60px;
		height: 60px;
		display: block;
		margin:0;
		padding:0;
		text-align: center;
		border:none;
		background:none!important;
		z-index: 999;
	}
	.navbar-toggle .icon-bar{
		margin:0 auto;
	}
	.navigation{
		position: fixed;
		top:0px;
		left:0;
		bottom:0;
		right:0;
		max-height: none;
		height: auto!important;
		background:#C4BAB0;
		border:none;
		visibility: hidden;
		display: block!important;
		transform:translateX(-100%);
		-webkit-transform:translateX(-100%);
		transition: all 300ms ease;
		-webkit-transition: all 300ms ease;
		margin:0!important;
		padding:100px 0;
	}
	.navigation.in{
		transform: translateX(0);
		-webkit-transform: translateX(0);
		visibility: visible;
	}
	.navigation .navbar-nav{
		margin:0!important;
		padding:0!important;
	}
	.navigation > .navbar-nav > li{
		display: block;
	}
	.navigation > .navbar-nav > li > a{
		height: 50px;
		line-height: 50px;
		padding:0 30px;
		color:#fff!important;
		font-size:25px;
		text-align: left;
		border-bottom:1px solid rgba(255,255,255,0.1);
	}
	.navigation > .navbar-nav > li > a:before{
		display: none;
	}
	.navigation > .navbar-nav > li > a:hover,
	.navigation > .navbar-nav > li > a:active{
		background:rgba(255,255,255,0.1)!important;
	}
	.navigation > .navbar-nav > li > a .caret{
		float: right;
		margin:20px 0 0;
		display: none;
	}
	.navigation > .navbar-nav > li .sub-toggle{
		position: absolute;
		top:0;
		right:0;
		width: 50px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		background:rgba(255,255,255,0.1);
		display: block;
		color:#fff;
		font-size:30px;
	}
	.navigation > .navbar-nav > li .sub-toggle .caret{
		display: inline-block;
	}
	.navigation > .navbar-nav > li > ul{
		position: relative;
		display: none;
		opacity: 1;
		visibility: visible;
	}
	.navigation > .navbar-nav > li:hover > ul{
		display: none;
	}
	.navigation > .navbar-nav > li:hover > ul > li > a{
		padding-left: 50px;
	}
	h1{
		font-size:25px!important;
	}
	h2{
		font-size: 22px!important;
	}
	h3{
		font-size: 20px!important;
	}
	h4{
		font-size: 16px!important;
	}
	.section-hero{
		min-height: 300px;
	}
	.section-hero .caption{
		width: 90%;
	}
	.section-lg,.section-xl{
		padding:15px 0;
	}
	.thumbnail img{
		width: 100%;
	}
	.section .thumbnail-bg{
		right:0!important;
		width: auto!important;
		left:0!important;
	}
	.works-nav-container{
		overflow: hidden;
		position: relative;
	}
	.works-nav-container .btn-next,.works-nav-container .btn-prev{
		position: absolute;
		top:0;
		right:0px;
		bottom:0;
		width: 30px;
		background:linear-gradient(90deg,rgba(238,238,238,0.3),#eee);
		border:none;
		outline: none;
	}
	.works-nav-container .btn-prev{
		right:auto;
		left:0px;
	}

	.works-nav-container{
		width: 100%;
		overflow: hidden;
		padding:10px 15px;
		position: relative;
	}
	.works-nav-container .box{
		position: relative!important;
		overflow: auto;
		margin:0 15px;
	}
	.works-nav{
		display: table;
		margin:0;
	}
	.works-nav li{
		display: table-cell;
	}
	.works-nav li a{
		white-space: nowrap;
	}
	.instagram-list{
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	}
	.instagram-list .thumbnail{
		width: 25%;
	}
	#section-nav-footer .navbar-nav li{
		margin: 0 0 15px;
		border:none;
	}
	.copyright{
		text-align: center;
		padding: 15px 0;
	}
	#section-welcome .col-sm-6:first-child{
		padding:0;
	}
	#section-welcome .thumbnail:before{
		display: none;
	}
	#section-welcome .thumbnail img{
		transform: translate(0,0);
		-webkit-transform: translate(0,0);
	}
	.grid-item .text{
		padding:15px;
	}
	.container{
		padding:0;
	}
	.grid-item { width: 50%; }
	.grid-item--width2 { width: 100%; }
	
}
/*coba ubah font kapital/kecil*/
	.besar{
		text-transform: uppercase;
	}
	.kecil{
		text-transform: lowercase;
	}
	.awal_besar{
		text-transform: capitalize;
	}