@import url('https://fonts.googleapis.com/css?family=Berkshire+Swash&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merienda&display=swap'); 

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

*,
*:after,
*::before {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html,
body {
  	height: 100%;
}

body {
	background: #fff;
	background-size: cover;
	font-family: 'Raleway', sans-serif;
	/*font-family: 'Berkshire Swash', cursive;*/
	font-size:14px;
	color:#555;
}
.container{
	max-width: 1024px;
}
.thumbnail{
	border:none;
	padding:0;
	border-radius:0;
	-webkit-border-radius:0;
}
.nopadding{
	padding:0!important;
}
.nomargin{
	margin:0!important;
}

/* NAVIGATION TOP */
.navigation-top{
	height: 40px;
	line-height: 40px;
	background:#333;
	color:#ccc;
	text-transform: uppercase;
}
.navigation-top a{
	color:#fff;
	font-weight: bold;
}
.navigation-top .social-icon{
	display: inline-block;
	list-style: none;
	margin:0 0 0 15px;
	padding:0;
}
.social-icon li{
	display: inline-block;
}
.social-icon li a{
	display: block;
	color:#ccc;
	padding:0 10px;
	text-align: center;
	cursor: pointer;
}
.social-icon li a:hover{
	color:#fff;
}

/* HEADER */
.header{
	background:#fff;
	border:none;
	border-radius: 0;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
	height: 80px;
	margin:0;
	position: relative;
	z-index: 999;
	font-family: 'Montserrat', sans-serif;
	/*font-family: 'Berkshire Swash', cursive;*/
}
.navbar-brand{
	padding:0;
	height: 60px;
}
.navbar-brand img{
	height: 100%;
}
.navigation .navbar-nav{
	margin:0;
}
.navigation .navbar-nav > li > a{
	padding:0 10px;
	line-height: 80px;
	font-size:14px;
	text-transform: uppercase;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	color:#ea0000;
}
.navigation .navbar-nav > li.active > a{
	font-weight: bold;
	border-bottom: 5px solid #ea0000;
	line-height: 80px;
	height: 80px;
	background:#f5f5f5;
}
.navigation .navbar-nav > li > a:hover{
	color:#111;
}
.navigation .navbar-nav li ul{
	position: absolute;
	top:100%;
	left:50%;
	background:#ea0000;
	list-style:none;
	margin:0;
	padding:0;
	min-width: 200px;
	box-shadow:0px 1px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow:0px 1px 3px rgba(0,0,0,0.1);
	transform:translate(-50%,-10px);
	-webkit-transform:translate(-50%,-10px);
	padding:15px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	z-index: 0;
}
.navigation .navbar-nav li:hover ul{
	opacity: 1;
	visibility: visible;
	transform:translate(-50%,0);
	-webkit-transform:translate(-50%,0);
}
.navigation .navbar-nav li ul:before{
	content: "";
	position: absolute;
	border:10px solid transparent;
	border-bottom:10px solid #ea0000;
	top:-20px;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.navigation .navbar-nav li ul li a{
	display: block;
	padding:10px 15px;
	color:#fff;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	text-decoration: none!important;
	text-transform: uppercase;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
}
.navigation .navbar-nav li ul li a:hover{
	padding-left:20px;
}
.navigation .navbar-nav li ul li:last-child a{
	border-bottom: none;
}

/* SECTION */
.section{
	position: relative;
}
.section-sm{
	padding:15px 0;
}
.section-lg{
	padding:30px 0;
}
.section-xl{
	padding:50px 0;
}
.section .heading{
	text-transform: uppercase;
	color:#ea0000;
	text-align: center;
	padding-bottom: 30px;
	position: relative;
}
.section .heading:before{
	content: "";
	position: absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	width: 150px;
	height: 4px;
	background:#eee;
}
.section .heading:after{
	content: "";
	position: absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	width: 50px;
	height: 4px;
	background:#ea0000;
}
#pathway{
	background:#eee;
}
.breadcrumb{
	margin:0;
	background:0;
}
/* SLIDESHOW */
#slideshow .slick-arrow{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size:20px;
	border:none;
	background:rgba(0,0,0,0.1);
	color:#fff;
	outline: none;
}
#slideshow .slick-arrow.slick-prev{
	left:0;
}
#slideshow .slick-arrow.slick-next{
	right:0;
}

/* BOOKING FORM */
#booking-form{
	margin-bottom: 15px;
}
.booking-form-container{
	background:rgba(255,255,255,1);
	transform:translateY(-100%);
	position: absolute;
	border-top:5px solid #ea0000;
}
.booking-form-container .booking-heading{
	color:#333;
	padding:15px 30px 0;
	font-size:20px;
	font-weight: 700;
}
.booking-form-container .booking-heading span{
}
.booking-form-container form{
	margin:15px 0;
}
.booking-form-container .input-group{
	border:none;
	background:#eee;
	padding:5px;
}
.booking-form-container .form-control{
	border-radius: 0;
	box-shadow:none!important;
	border:none;
	background:none;
}
.booking-form-container .input-group-addon{
	background:none;
	border:none;
}
.booking-form-container .btn{
	padding:10px;
	background:#ea0000;
	color:#fff;
}

/* SECTION WELCOME */
#welcome{
	font-size:16px;
	color:#555;
}
#welcome p,
#welcome span{
	/*font-family: 'Raleway', sans-serif!important;*/
	/*font-family: 'Berkshire Swash', cursive !important;*/
	font-family: 'Merienda', cursive;
}

#room-type{
	background:#fafafa;
}
.card{
	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);
	position: relative;
	min-height: 180px;
}
.card .thumbnail{
	/*max-height: 180px;*/
	overflow: hidden;
	margin:0;
}
.card-body{
	padding:15px;
	padding-bottom: 55px;
	position: static;
}
.card .title{
	font-size:12px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 15px;
	color:#fff;
	display: inline-block;
	background:#ea0000;
	padding:10px 15px;
	position: absolute;
	left:-16px;
	top:30px;
	text-decoration: none!important;
}
.card .title::before{
	content: "";
	position: absolute;
	border:8px solid transparent;
	border-right:8px solid #ddd;
	border-top:8px solid #ddd;
	top:100%;
	left:0px;
}
.card .readmore{
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	text-align: right;
	padding:0 15px;
	height: 40px;
	line-height: 40px;
	background:#fafafa;
	color:#333;
	text-transform: uppercase;
}
.card-wide{
	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);
	position: relative;
	margin-bottom: 30px;
	min-height: 150px;
}
.card-wide .thumbnail{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	width: 200px;
	margin:0;
	background-color:#eee!important;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.card-wide .card-body{
	margin-left: 200px;
	padding:15px;
}
.card-wide .card-body .readmore{
	display: block;
	margin-top: 15px;
}
#map-canvas{
	height: 450px;
}
#testimonial{
	background:#333;
	color:#fff;
}
#testimonial:before{
	content: "";
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background:url('../images/testimonial-bg.jpg') fixed no-repeat center;
	background-size:cover;
	opacity: 0.3;
	filter: blur(10px) grayscale(20%);
}
#testimonial .heading{
	color:#fff;
}
#testimonial .heading:before,
#testimonial .heading:after{
	display: none;
}
.testimonial-items .item{
	text-align: center;
	padding:30px;
}
.testimonial-items .item .text{
	font-size:18px;
	font-style: italic;
	margin-bottom: 30px;
	line-height: auto;
	font-weight: 200;
}
.testimonial-items .avatar{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
	margin:0 auto 10px;
}
.testimonial-items .avatar img{
	width: 100%;
}
.testimonial-items .name{
	font-weight: bold;
	text-transform: uppercase;
	font-size:16px;
}
.testimonial-items .slick-dots{
	list-style:none;
	margin:0;
	padding:0;
}
.testimonial-items .slick-dots li{
	display: inline-block;
}
.testimonial-items .slick-dots li button{
	width: 10px;
	height: 10px;
	background:#fff;
	border-radius:50%;
	-webkit-border-radius:50%;
	text-indent: -9999px;
	border:none;
	margin:2px;
	border:1px solid #fff;
}
.testimonial-items .slick-dots li.slick-active button{
	background:#333;
}
.post-title{
	font-size:30px;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	/*font-family: 'Berkshire Swash', cursive;*/
}
.section-page{
	font-size:16px;
}
.facility-list .item{
	padding:0 0 5px 30px;
	position: relative;
	display: block;
}
.facility-list .item .icons{
	position: absolute;
	top:3px;
	left:0;
}
.btn-submit{
	background:#ea0000;
	color:#fff!important;
}
.btn-submit:hover{
	background:#ea0000;
}
#footer{
	background:#222;
	color:#fff;
	padding:70px 0;
}
#footer h3{
	font-family: "Montserrat", sans-serif;
	/*font-family: 'Berkshire Swash', cursive;*/
	text-transform: uppercase;
	margin:0 0 30px;
	font-size:20px;
}
#footer ul{
	list-style:none;
	margin:0;
	padding:0;
}
#footer ul li a{
	padding:5px 0;
	display: block;
	color:#aaa;
}
#footer ul li a:hover{
	text-decoration: none;
	color:#fff;
}
#copyright{
	text-align: center;
	padding:15px;
	background:#1e1e1e;
	color:#aaa;
}
#copyright a{
	color:#fff;
}

@media (max-width: 768px){
	body{
		padding-top: 50px;
	}
	.navbar-toggle{
		position: absolute;
		top:0;
		left:0;
		border:none;
		background:none!important;
		z-index: 999;
	}
	.navigation{
		position: fixed;
		top:50px;
		left:0;
		bottom:0;
		right:0;
		z-index: 9999;
		background:#fff!important;
		border:none;
		transition: all 300ms ease-in-out;
		-webkit-transition: all 300ms ease-in-out;
		height: auto!important;
		transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		opacity: 0;
		overflow: auto;
	}
	.navigation.in{
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
	}
	.navigation > .navbar-nav > li > a{
		line-height: 50px!important;
		height: 50px!important;
		padding:0 15px;
		border:none!important;
	}
	.navigation > .navbar-nav > li ul{
		position: relative;
		top:auto;
		left:auto;
		transform: translateX(0)!important;
		display: none;
	}
	.navigation > .navbar-nav > li:hover ul{
		display: block;
	}
	.header{
		height: 50px;
		line-height: 50px;
		overflow: hidden;
		position: fixed;
		top:0;
		left:0;
		right:0;
		z-index: 999;
	}
	.navbar-brand{
		display: block;
		width: 100%;
		text-align: center;
	}
	.navbar-brand img{
		height: 30px;
		margin:0 auto;
	}
	#slideshow img{
		width: 100%;
	}
	#slideshow .slick-dots{
		position: absolute;
		bottom:0;
		left:0;
		right:0;
		text-align: center;
	}
	#slideshow .slick-dots li{
		display: inline-block;
	}
	#slideshow .slick-dots li button{
		text-indent: -9999px;
		width: 10px;
		height: 10px;
		margin:0 2px;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		background: rgba(255,255,255,0.5);
		border:none;
	}
	#slideshow .slick-dots li.slick-active button{
		background:rgba(255,255,255,0.9);
	}
	.booking-form-container{
		transform: translateY(0)!important;
		position: relative;
		text-align: center;
		border:none;
	}
	.booking-form-container div[class*=col-]{
		margin-bottom: 15px;
	}
	.section-xl{
		padding:15px 0;
	}
	.card .card-body .title{
		left:0;
	}
	.card .card-body .title:before{
		display: none;
	}
	.card-wide .thumbnail{
		position: relative;
		width: 100%;
		height: 200px;
	}
	.card-wide .card-body{
		margin:0;
	}
	.form-group > .row > div{
		margin-bottom: 15px;
	}
	.form-group > .row > div:last-child{
		margin:0;
	}
	#footer{
		text-align: center;
	}
	/*coba ubah font kapital/kecil*/
	.besar{
		text-transform: uppercase;
	}
	.kecil{
		text-transform: lowercase;
	}
	.awal_besar{
		text-transform: capitalize;
	}
}