/*
Theme Name: front1
Theme URI: https://front-one.com/
Author: sigalih
Author URI: https://sigalih.com/
Description: Description
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html


*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Asides
  ## Comments
# Infinite scroll
# Media
  ## Captions
  ## Galleries
--------------------------------------------------------------*/


* {
  -webkit-transition: all 0.1s ease-in-out; /* Safari and Chrome */
    -moz-transition: all 0.1s ease-in-out; /* Firefox */
    -ms-transition: all 0.1s ease-in-out; /* IE 9 */
    -o-transition: all 0.1s ease-in-out; /* Opera */
    transition: all 0.1s ease-in-out;
}


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust:     100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  font-size: 14px!important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  color: #890000;
}

a:active,
a:hover {
  outline: 0;
  color: #520000;
  text-decoration: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, .8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

select {
  border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}
















.top-head {height: 30px;background: #fff;}
.top-navbar ul li a {font-size: 13px;padding-top: 7px;padding-bottom: 0;color: #999!important;font-family: 'Montserrat', sans-serif;}

.navbar-static-top {margin-bottom: 0;background: #fff;}

.navbar-brand {padding-top: 10px;position: relative;}
.navbar-brand img {height: 55px;}



#navbar {font-size: 16px;font-weight: 700;text-transform: uppercase;}
#navbar ul li a {padding-top: 14px;padding-bottom: 16px;letter-spacing: -1px;font-family: 'Montserrat', sans-serif;}
#navbar ul li a:hover {color: #890000;}

.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:focus, 
.navbar-default .navbar-nav>.active>a:hover {background: none;color: #890000;}



.main-content {padding-top: 50px;}



.post-article {margin-bottom: 40px;}
.post-article .post-thumb {max-height: 300px;position: relative;overflow: hidden;margin-bottom: 20px;}
.post-article .post-thumb img {vertical-align: middle;display: inline-block;width: 100%;height: auto;}
.post-article .post-thumb img:hover {opacity: 0.8;}


.post-article-date {width: 60px;text-align: right;float: left;margin-right: 20px;color: #666;}
.post-article-date span {display: block;}
.post-article-date .post-date-day {font-size: 50px;line-height: 70%}
.post-article-date .post-date-month {font-size: 28px;font-weight: 700;line-height: 100%;}
.post-article-date .post-date-year {font-size: 18px;line-height: 140%;}

.post-article-content {display: table;}
.post-article-content h1 {margin-top: 0;text-transform: uppercase;display: inline-block;font-size: 24px;font-weight: 700;font-family: 'Montserrat', sans-serif;color: #890000;}
.post-article-content h1:hover {color: #520000;}

.post-article-content p a {color: #890000;}
.post-article-content p a:hover {color: #520000;text-decoration: none;}



.widget .widget-title {font-size: 16px;font-weight: 700;text-transform: uppercase;font-family: 'Montserrat', sans-serif;margin-bottom: 5px;margin-top: 0;color: #890000;}
.widget-area section {margin-bottom: 40px;}
.widget-area section ul {margin-left: 0;padding-left: 0;}
.widget-area section ul li {list-style: none;padding: 6px 0;border-bottom: solid 1px #f5f5f5;}
.widget-area section ul li:before {font-family: FontAwesome;content: "\f0da";color: #ddd;padding-right: 10px;}
.widget-area section ul li a {color: #888;}
.widget-area section ul li a:hover {color: #666;text-decoration: none;}


input.search-field {height: 40px;width: 100%;font-size: 13px;border-radius: 0;}
.search-form .search-submit {font-size: 13px;height: 40px;margin-left: -5px;border-radius: 0;background: #890000;box-shadow: none;text-shadow: none;color: #fff;}
.search-form .search-submit:hover {background: #520000;box-shadow: none;}


.page-header {margin-top: 0;font-family: 'Montserrat', sans-serif;}
.page-header .page-title {margin-top: 0;}




.entry-title {margin-top: 0;margin-bottom: 5px;font-family: 'Montserrat', sans-serif;font-weight: 700;text-transform: uppercase;color: #890000;}
.entry-content {line-height: 150%;}

.post-navigation {border-top: solid 3px #f5f5f5;border-bottom: solid 2px #f5f5f5;padding: 15px 0;}

.nav-links a {color: #890000;font-weight: 700;}
.nav-links a:hover {color: #510000;text-decoration: none;}
.nav-links .nav-previous a:before {font-family: FontAwesome;content: "\f0d9";padding-right: 10px;}
.nav-links .nav-next a:after {font-family: FontAwesome;content: "\f0da";padding-left: 10px;}













footer {z-index: 5;position: relative;}
footer .footer-content {padding: 50px 0;}

footer .footer-menu {}
footer .footer-menu .footer-menu-title {font-size: 16px;font-weight: 700;font-family: 'Montserrat', sans-serif;}
footer .footer-menu .footer-menu-list {padding-left: 0;margin-left: 0;}
footer .footer-menu .footer-menu-list li {list-style: none;}



footer .footer-menu  {padding-right: 10px;}
footer .footer-menu  .footer-menu-title {font-size: 18px;font-weight: bold;padding-bottom: 5px;border-bottom: solid 3px #e20011;color: #e20011;margin-bottom: 5px;display: block;}
footer .footer-menu  ul {padding-left: 0;margin-left: 0;}
footer .footer-menu  ul li {list-style: none;padding: 5px 0;border-bottom: solid 1px #e0e0e0;}
footer .footer-menu  ul li a {color: #777777;}
footer .footer-menu  ul li a:hover {color: #444;text-decoration: none;}
footer .footer-menu  ul li:after {font-family: FontAwesome;content: "\f0da";float: right;color: #909090;}


.copyright {padding: 10px 0 5px;background: #890000;color: #fff;}

.footer-logo {float: left;}
.footer-logo img {max-height: 40px;}

.copyright-text {float: right;padding: 8px 0;}




.not-found {margin-top: 30px;margin-bottom: 70px;text-align: center;}
.not-found .page-header .page-title {
  font-family: 'Yellowtail', cursive;
  font-size: 60px;
  color: #E88403;
  text-shadow: 
    6px 6px 0 #000,
    5px 5px 0 #000,
    4px 4px 0 #000,
    3px 3px 0 #000,
    -1px -1px 0 #000, 
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}
.not-found .page-content p {color: #666;font-family: 'Montserrat', sans-serif;font-size: 16px;}










.home-slider {border: none;border-radius: 0;height: 550px;position: relative;overflow: hidden;margin-bottom: 0;z-index: 2;}
.home-slider ul li img {height: 100%!important;width: auto!important;}
.home-slider ul {margin-left: 0;padding-left: 0;}
.home-slider ul li .slide-text {position: absolute;top: 100px;display: block;left: 0;right: 0;font-family: 'Yellowtail', cursive;}
.home-slider ul li .slide-text h1 {
  width: 50%;
  text-align: center;
  margin: 0 auto;
  font-size: 120px;
  color: #fff;
  line-height: 80%;
  -ms-transform: skewY(-10deg); /* IE 9 */
    -webkit-transform: skewY(-10deg); /* Safari */
    transform: skewY(-10deg); /* Standard syntax */
  text-shadow:
       6px 6px 0 #000,
       5px 5px 0 #000,
       4px 4px 0 #000,
     -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
       1px 1px 0 #000;
}

.arrow {position: absolute;left: 0;right: 0;display: block;text-align: center;font-size: 80px;color: #fff;z-index: 10;margin-top: -130px;}
.arrow a {color: #F1C119;}
.arrow a:hover {color: #CDA312;cursor: pointer;}


.triangles {height: 100px;width: 100%;z-index: 3;position: absolute;margin-top: -80px;}
.triangle-bl {
  background: #fff;
  height: 200%;
  position: absolute;
  left: 0;
  width: 51%;
  clip-path: polygon(0% 0%, 100% 40%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 40%, 100% 100%, 0% 100%);
}
.triangle-br {
  background: #fff;
  height: 200%;
  position: absolute;
  right: 0;width: 51%;
  clip-path: polygon(0% 40%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 40%, 100% 0%, 100% 100%, 0% 100%);
}




.home-about {padding: 60px 0;color: #fff;background: rgba(137,0,0,1);
background: -moz-linear-gradient(-45deg, rgba(137,0,0,1) 0%, rgba(189,0,0,1) 100%);
background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(137,0,0,1)), color-stop(100%, rgba(189,0,0,1)));
background: -webkit-linear-gradient(-45deg, rgba(137,0,0,1) 0%, rgba(189,0,0,1) 100%);
background: -o-linear-gradient(-45deg, rgba(137,0,0,1) 0%, rgba(189,0,0,1) 100%);
background: -ms-linear-gradient(-45deg, rgba(137,0,0,1) 0%, rgba(189,0,0,1) 100%);
background: linear-gradient(135deg, rgba(137,0,0,1) 0%, rgba(189,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#890000', endColorstr='#bd0000', GradientType=1 );}

.home-about-desc {}
.home-about-desc img {width: 80%;}
.home-about-desc h3 {font-weight: 700;font-size: 30px;margin: 15px 0 20px 0;}
.home-about-desc p {font-size: 16px;line-height: 150%;text-align: justify;margin-bottom: 20px;}
.home-about-desc .btn {padding: 15px 25px;font-size: 16px;border-radius: 0;background: #D20000;color: #fff;}
.home-about-desc .btn:hover {background: #E70000;}


.about-slider #slider {margin-bottom: 0;border-radius: 0;border-bottom: 0;background: #fff;border: solid 5px #fff;border-bottom: 0;}
.about-slider #slider .slides {margin-left: 0;padding-left: 0;}
.about-slider #slider .slides li {width: 100%;height: 290px;position: relative;overflow: hidden;}
.about-slider #slider .slides li img {width: 100%!important;height: auto!important;}


.about-slider #carousel {margin-bottom: 0;background: #fff;border: solid 5px #fff;}
.about-slider #carousel .slides {margin-left: 0;padding-left: 0;}
.about-slider #carousel .slides li {width: auto!important;border-right: solid 5px #fff;/*border-top: solid 4px #fff;*/margin-right: 0!important;}
.about-slider #carousel .slides li img {height: 120px;width: auto;display: inline-block;}

.custom-navigation {position: absolute;left: 0;right: 0;display: block;top: 150px;font-size: 30px;color: #fff;}
.custom-navigation a {color: #000;opacity: 0.7;}
.custom-navigation .flex-prev {position: absolute;left: 30px;}
.custom-navigation .flex-next {position: absolute;right: 30px;}




.hotel-list-slider {margin-top: 20px;margin-bottom: 50px;}
.hotel-list-slider #slider-hotel {margin-bottom: 0;border-radius: 0;border-bottom: 0;background: #fff;border: solid 5px #fff;border-bottom: 0;}
.hotel-list-slider #slider-hotel .slides {margin-left: 0;padding-left: 0;}
.hotel-list-slider #slider-hotel .slides li {width: 100%;height: 600px;position: relative;overflow: hidden;}
.hotel-list-slider #slider-hotel .slides li img {width: 100%!important;height: auto!important;}


.hotel-list-slider #carousel-hotel {margin-bottom: 0;background: #fff;border: solid 5px #fff;}
.hotel-list-slider #carousel-hotel .slides {margin-left: 0;padding-left: 0;}
.hotel-list-slider #carousel-hotel .slides li {width: auto!important;max-width: 200px!important;border-right: solid 5px #fff;margin-right: 0!important;position: relative;overflow: hidden;}
.hotel-list-slider #carousel-hotel .slides li img {height: 120px;width: auto;display: inline-block;}

.hotel-list-slider .custom-navigation {top: 400px;}
.hotel-list-slider .custom-navigation a {color: #fff;opacity: 0.5;}

.sembunyi {
    display: none!important;
    visibility: hidden!important;
}



.home-section-title {font-family: 'Montserrat', sans-serif;text-align: center;margin-bottom: 40px;}
.home-section-title h1 {text-transform: uppercase;font-weight: 700;margin-bottom: 0;font-size: 50px;letter-spacing: -1px;}
.home-section-title h3 {margin-top: 0;}



.home-news {margin-top: 60px;padding-bottom: 70px;}
.home-latest-news {padding: 80px 0;background: #FCFCFC;border-bottom: solid 1px #f1f1f1;}

.home-news-list {}

.news-thumb {width: 100%;height: 170px;position: relative;overflow: hidden;text-align: center;margin-bottom: 15px;background: #f5f5f5;border: solid 1px #f7f7f7;}
.news-thumb img {
  height: 100%;
  width: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%); /* Safari and Chrome */
  -moz-transform: translate(-50%, -50%); /* Firefox */
  -ms-transform: translate(-50%, -50%); /* IE 9 */
  -o-transform: translate(-50%, -50%); /* Opera */
}


.home-detail-news {}
.home-detail-news h3 {font-family: 'Montserrat', sans-serif;height: 40px;line-height: 120%;margin-top: 5px;font-size: 16px;margin-bottom: 6px;font-weight: bold;}
.home-detail-news a {color: #e00000;}
.home-detail-news a:hover {text-decoration: none;color: #ff5f00;}
.home-detail-news p {font-size: 14px;margin-bottom: 0;font-family: 'Open Sans', sans-serif;font-size: 14px;color: #7c7c7c;}



.home-news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 60px;
  background: #ff5f00;
  margin-left: -20px;
  padding: 9px 0 9px 45px;
  -webkit-transform: skew(-25deg);
       -moz-transform: skew(-25deg);
         -o-transform: skew(-25deg);
}
.home-news-date span {
  display: block;
  color: #fff;
  line-height: 100%;

  text-align: left;
  -webkit-transform: skew(25deg);
     -moz-transform: skew(25deg);
       -o-transform: skew(25deg);
}
.home-news-date .news-date {font-size: 25px;margin-left: -9px;font-weight: 700;}
.home-news-date .news-month {font-size: 15px;text-transform: uppercase;}








.home-booking-form {margin-top: 50px;z-index: 4;position: relative;display: block;padding-bottom: 50px;}
.home-booking-form input, .home-booking-form select {border-radius: 0;height: 50px;font-size: 16px;background: #fafafa;border: solid;}
.home-booking-form input {text-align: center;}

.home-booking-form button {font-size: 16px;border-radius: 0;width: 220px;margin: 0 auto;margin-top: 30px;background: #F1AC19;border: solid 3px #D1A50A;padding: 10px 20px;box-shadow: none;}
.home-booking-form button:hover {background: #D1A50A;border: solid 3px #F1AC19;box-shadow: none;}



.testimonial_rotator_wrap {margin-top: 0;margin-bottom: 0;padding-top: 0!important;padding-bottom: 0!important;}
.testimonial_rotator_slide_title {font-family: 'Montserrat', sans-serif;font-weight: 700;letter-spacing: -1;font-size: 22px;}
.testimonial_rotator_author_info p {margin-bottom: 0;font-weight: 700;}



.home-booking-form {margin-top: 50px;z-index: 4;position: relative;display: block;padding-bottom: 50px;}
.home-booking-form input, .home-booking-form select {border-radius: 0;height: 50px;font-size: 16px;background: #fafafa;border: solid;}
.home-booking-form input {text-align: center;}

.home-booking-form button {font-size: 16px;border-radius: 0;width: 220px;margin: 0 auto;margin-top: 30px;background: #F1AC19;border: solid 3px #D1A50A;padding: 10px 20px;}
.home-booking-form button:hover {background: #D1A50A;border: solid 3px #F1AC19;}




.modal {background: rgba(0,0,0,.9);}
.modal-dialog {margin-top: 100px;width: 70%;}
.modal-title {text-align: center;font-family: 'Montserrat', sans-serif;}
.modal-content {background: transparent;box-shadow: none;}
.modal-header {border-bottom: 0;}
.modal-header .close {box-shadow: none;text-shadow: none;color: #fff;font-size: 40px;}


.modal-body input, .modal-body select {border-radius: 0;height: 50px;font-size: 16px;background: #fafafa;border: solid;}
.modal-body input {text-align: center;}

.modal-body button {font-size: 16px;border-radius: 0;width: 220px;margin: 0 auto;margin-top: 30px;background: #F1AC19;border: solid 3px #D1A50A;padding: 10px 20px;box-shadow: none;}
.modal-body button:hover {background: #D1A50A;border: solid 3px #F1AC19;box-shadow: none;}




.detail-corp {padding: 20px 25px;}
.detail-corp .corp-logo {margin-bottom: 25px;margin-top: 10px;}



.detail-corp .corp-description {margin-bottom: 20px;font-family: 'Montserrat', sans-serif;}

.corp-contact {font-family: 'Montserrat', sans-serif;}
.corp-contact ul {margin-left: 0;padding-left: 0;}
.corp-contact ul li {list-style: none;font-weight: 700;}
.corp-contact ul li span {width: 75px;position: relative;display: inline-block;}
.corp-contact ul li span:after {content: ":";}

.detail-corp .corp-socmed {display: block;margin: 0 auto;}
.detail-corp .corp-socmed ul {text-align: center;margin-top: 0;}
.detail-corp .corp-socmed ul li {float: left;padding: 10px 15px;list-style: none;font-size: 45px;}
.detail-corp .corp-socmed ul li a {color: #444;}
.detail-corp .corp-socmed ul li a:hover {color: #666;}

.detail-corp .corp-socmed ul li:first-child {padding-left: 0;}






@media (max-width: 765px) {
  .hide-xs {display: none;}
}


@media (max-width: 768px) {
  .top-navbar ul li a {padding-left: 5px;padding-right: 5px;}
  #navbar ul li a {padding-left: 10px;padding-right: 10px;font-size: 14px;}
  .navbar-brand img {height: 35px;}
  .home-slider ul li .slide-text h1 {width: 50%;font-size: 70px;}

  .home-about-desc .btn {display: table;text-align: center;margin: 0 auto;margin-bottom: 30px;}

  .corp-logo img {margin: 0 auto;}

  footer .footer-menu {padding: 10px 15px;background: rgba(255,255,255,.8);display: block;}

  .footer-testi {margin-top: 15px;}

  .judul-content-hotel {font-size: 24px;}
  .hotel-list-slider #slider-hotel .slides li {height: 450px!important;}
  .hotel-list-slider #carousel-hotel .slides li img {height: 120px;}
  .hotel-list-slider .custom-navigation {top: 300px;}
}

@media (max-width: 1024px) {
  .about-slider #slider .slides li {height: 240px;}
  .home-about-desc h3 {font-size: 24px;}
}

@media (max-width: 440px) {
  .home-slider {height: 450px;}
  .hide-xs {display: none;}
  .navbar-brand img {height: 40px;}
  .navbar-header {height: 60px;}
  #navbar ul li a {text-align: center;}
  .navbar-toggle {margin-top: 12px;}

  .home-slider ul li .slide-text {top: 70px;}
  .home-slider ul li .slide-text h1 {width: 80%;font-size: 70px;}

  .home-booking-form button {width: 100%;}

  .arrow {font-size: 60px;margin-top: -100px;}

  .home-about-desc {padding: 40px 0;}
  .home-about-desc img {margin: 0 auto;}
  .home-about-desc .btn {display: block;text-align: center;margin-bottom: 30px;}

  .about-slider #slider .slides li {height: 140px;}

  .about-slider #carousel .slides li img {height: 80px;}

  .custom-navigation {top: 60px;}

  .home-news {padding-bottom: 30px;}
  .home-news-list {margin-bottom: 40px;}

  .detail-corp {padding: 20px 0;}
  .detail-corp .corp-description {font-size: 12px;}

  .corp-socmed ul {margin-left: 0;padding-left: 0;}

  footer .footer-menu {padding: 10px 15px;background: rgba(255,255,255,.8);display: block;}
  .footer-logo {margin: 0 auto;display: block;float: none;}
  .footer-logo img {margin: 5px auto;text-align: center;}

  .footer-testi {margin-top: 15px;}

  .post-article-content h1 {font-size: 20px;}

  .judul-content-hotel {font-size: 18px;}
  .hotel-list-slider #slider-hotel .slides li {height: 170px!important;}
  .hotel-list-slider #carousel-hotel .slides li img {height: 90px;}
  .hotel-list-slider .custom-navigation {top: 280px;}
}


.tab-hotel-fitur {margin-bottom: 30px;}
.tab-hotel-fitur .nav-tabs {margin: 0;border-bottom: 0;}
.tab-hotel-fitur .nav-tabs li {text-transform: uppercase;border-radius: 0;font-weight: 700;font-family: 'Montserrat', sans-serif;}
.tab-hotel-fitur .nav-tabs li a {border-radius: 0;background: #890000;color: #fff;padding: 15px 20px;}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {background: #B30000;color: #f9f9f9;}

.tab-hotel-fitur .tab-content .tab-pane {border: solid 1px #eee;padding: 20px;position: relative;background: #fafafa;}
.tab-hotel-fitur .tab-content .tab-pane:after {clear: both;display: block;content: ' ';}
.tab-hotel-fitur .tab-content .tab-pane p {margin: 0;}
.tab-hotel-fitur .tab-content .tab-pane p img {height: auto;width: 33.3%;padding: 5px;float: left;}



.content-hotel {font-size: 16px;text-align: justify;margin-bottom: 40px;}

.judul-content-hotel {text-align: center;padding: 10px 15px;color: #890000;font-size: 20px;}


.hotel-top-logo {margin: 0 auto;max-width: 300px;max-height: 100px;margin-bottom: 30px;text-align: center;}
.hotel-top-logo img {max-width: 100%;max-height: 100%;}