body{
    font-family: 'Roboto Condensed', sans-serif;

}

p {
  line-height: 1.5;
  margin: 30px 0;
}

p a {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h6 {
  font-weight: 800;
  font-family:'Roboto Condensed', sans-serif;
}

h5 {
  font-weight: 500;
  font-family:'Roboto Condensed', sans-serif;
}

a {
  color: #212529;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:focus, a:hover {
  color: #0085A1;
}

blockquote {
  font-style: italic;
  color: #868e96;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  margin-top: 60px;
}

.caption {
  font-size: 14px;
  font-style: italic;
  display: block;
  margin: 0;
  padding: 10px;
  text-align: center;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

::-moz-selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

img::-moz-selection {
  color: #fff;
  background: transparent;
}

img::selection {
  color: #fff;
  background: transparent;
}

img::-moz-selection {
  color: #fff;
  background: transparent;
}

#mainNav {
  position: relative;
  border-bottom: 1px solid #e9ecef;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.9);
  /*font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
}

#mainNav .navbar-brand {
  font-weight: 800;
  color: #343a40;
}

#mainNav .navbar-toggler {
  font-size: 12px;
  font-weight: 800;
  padding: 13px;
  text-transform: uppercase;
  color: #343a40;
}

#mainNav .navbar-nav > li.nav-item > a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
  #mainNav {
    border-bottom: 1px solid transparent;
    background: transparent;
  }
  #mainNav .navbar-brand {
    padding: 10px 20px;
    color: #fff;
  }
  #mainNav .navbar-brand:focus, #mainNav .navbar-brand:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  #mainNav .navbar-nav > li.nav-item > a {
    padding: 10px 20px;
    color: #000;
  }
  #mainNav .navbar-nav > li.nav-item > a:focus, #mainNav .navbar-nav > li.nav-item > a:hover {
    color: rgba(255, 255, 255, 0.8);
    background: #B8986B;
  }

  #mainNav .navbar-nav > li.active > a, #mainNav .navbar-nav > li.active {
    color: rgba(255, 255, 255, 0.8);
    background: #B8986B;
  }


}

@media only screen and (min-width: 992px) {
  #mainNav {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
  }
  #mainNav.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    /*position: relative;
    top: -67px;*/
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    border-bottom: 1px solid white;
    background-color: rgba(255, 255, 255, 0.9);
  }
  #mainNav.is-fixed .navbar-brand {
    color: #212529;
  }
  #mainNav.is-fixed .navbar-brand:focus, #mainNav.is-fixed .navbar-brand:hover {
    color: #0085A1;
  }
  #mainNav.is-fixed .navbar-nav > li.nav-item > a {
    color: #212529;
  }
  #mainNav.is-fixed .navbar-nav > li.nav-item > a:focus, #mainNav.is-fixed .navbar-nav > li.nav-item > a:hover {
    color: #B8986B;
  }
  #mainNav.is-fixed .navbar-nav > li.active {
    color: #fff;
    background: #B8986B;
  }
  #mainNav.is-fixed .navbar-nav > li.active > a,
  #mainNav.is-fixed .navbar-nav > li.active > a:hover,
  #mainNav.is-fixed .navbar-nav > li.active > a:focus {
      color: white;
      background: #B8986B;
  }
  #mainNav.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

header.masthead {
  margin-bottom: 50px;
  background: no-repeat center center;
  background-color: #868e96;
  background-attachment: scroll;
  position: relative;
  background-size: cover;
}

header.masthead .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #212529;
  opacity: 0.5;
}

header.masthead .page-heading,
header.masthead .post-heading,
header.masthead .site-heading {
  padding: 200px 0 150px;
  color: white;
}

@media only screen and (min-width: 768px) {
  header.masthead .page-heading,
  header.masthead .post-heading,
  header.masthead .site-heading {
    padding: 200px 0;
  }
}

header.masthead .page-heading,
header.masthead .site-heading {
  text-align: center;
}

header.masthead .page-heading h1,
header.masthead .site-heading h1 {
  font-size: 50px;
  margin-top: 0;
}

header.masthead .page-heading .subheading,
header.masthead .site-heading .subheading {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  display: block;
  margin: 10px 0 0;
  font-family:'Roboto Condensed', sans-serif;
}

@media only screen and (min-width: 768px) {
  header.masthead .page-heading h1,
  header.masthead .site-heading h1 {
    font-size: 80px;
  }
}

header.masthead .post-heading h1 {
  font-size: 35px;
}

header.masthead .post-heading .meta,
header.masthead .post-heading .subheading {
  line-height: 1.1;
  display: block;
}

header.masthead .post-heading .subheading {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 30px;
  font-family: 'Roboto Condensed', sans-serif;
}

header.masthead .post-heading .meta {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  font-family: 'Roboto Condensed', sans-serif;
}

header.masthead .post-heading .meta a {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  header.masthead .post-heading h1 {
    font-size: 55px;
  }
  header.masthead .post-heading .subheading {
    font-size: 30px;
  }
}

#main-content {
    text-align: justify;
}

.post-preview > a {
  color: #212529;
}

.post-preview > a:focus, .post-preview > a:hover {
  text-decoration: none;
  color: #0085A1;
}

.post-preview > a > .post-title {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.post-preview > a > .post-subtitle {
  font-weight: 300;
  margin: 0 0 10px;
}

.post-preview > .post-meta {
  font-size: 18px;
  font-style: italic;
  margin-top: 0;
  color: #868e96;
}

.post-preview > .post-meta > a {
  text-decoration: none;
  color: #212529;
}

.post-preview > .post-meta > a:focus, .post-preview > .post-meta > a:hover {
  text-decoration: underline;
  color: #0085A1;
}

@media only screen and (min-width: 768px) {
  .post-preview > a > .post-title {
    font-size: 36px;
  }
}

.floating-label-form-group {
  font-size: 12px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #dee2e6;
}

.floating-label-form-group input,
.floating-label-form-group textarea {
  font-size: 1.5em;
  position: relative;
  z-index: 1;
  padding: 0;
  resize: none;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  /*font-family: 'Lora', 'Times New Roman', serif;*/
}

.floating-label-form-group input::-webkit-input-placeholder,
.floating-label-form-group textarea::-webkit-input-placeholder {
  color: #868e96;
  /*font-family: 'Lora', 'Times New Roman', serif;*/
}

.floating-label-form-group label {
  font-size: 0.85em;
  line-height: 1.764705882em;
  position: relative;
  z-index: 0;
  top: 2em;
  display: block;
  margin: 0;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease;
  vertical-align: middle;
  vertical-align: baseline;
  opacity: 0;
}

.floating-label-form-group .help-block {
  margin: 15px 0;
}

.floating-label-form-group-with-value label {
  top: 0;
  opacity: 1;
}

.floating-label-form-group-with-focus label {
  color: #0085A1;
}

form .form-group:first-child .floating-label-form-group {
  border-top: 1px solid #dee2e6;
}

footer {
  padding: 0 65px;
}

footer .list-inline {
  margin: 0;
  padding: 0;
}

footer .copyright {
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}

.btn {
  font-size: 14px;
  font-weight: 800;
  padding: 15px 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  /*font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
}

.btn-primary {
  background-color: #0085A1;
  border-color: #0085A1;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: #fff;
  background-color: #00657b !important;
  border-color: #00657b !important;
}

.btn-lg {
  font-size: 16px;
  padding: 25px 35px;
}

.top-bar {
  color: #fff;
  background-color: rgba(169, 130, 74, 0.75);
  width: 100%;
  height: auto;
  padding : 5px;
  margin-bottom: 10px;
}

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

@media only screen and (max-width: 768px) {
  .top-bar #email-top-bar {
    text-align: center;
  }
  .top-bar #phone-top-bar {
    text-align: center;
  }
  .top-bar #social {
    text-align: center;
    letter-spacing: 5px;
  }


}

@media only screen and (min-width: 768px) {
  .top-bar #social {
    text-align: right;
    letter-spacing: 5px;
  }

  .top-bar .top-bar-socials .icons > a {
      color: white;
  }

  .top-bar .top-bar-content .content {
      position: relative;
      display: inline-block;
      margin-right: 26px;
      padding-left: 24px;
  }
}

.top-bar #social > a{
  color: #fff;
}

/*#nav_header {
  position:fixed;
  width:100%;
  background-color:rgba(255,255,255,0.61);
  font-family:'Roboto Condensed', sans-serif;
  font-weight:bold;
  padding-right:75px;
  padding-left:75px;
}*/

#home {
  background-size:cover;
  width:100%;
  height:auto;
  font-size:14px;
  font-family:Roboto, sans-serif;
  background-color:#ffffff;
}



@media only screen and (min-width: 768px) {
  .carousel-item {
    height: 80vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}

.carousel-caption {
  top: 30%;
}

.welcome_section {
  padding: 25px 0;
  font-family: 'Roboto Regular', sans-serif;
}


@media only screen and (min-width: 768px) {
  .welcome_section img {
      min-width: 100%;
      min-height: 350px;
  }

  .welcome_section .content{
      padding-left: 20px;
  }

}

.welcome_section img {
    max-width: 300px;
    max-height: 200px;
}

@media only screen and (max-width: 768px) {
  .welcome-left {
    text-align: center;
  }
}

.welcome-right {
  text-align: center;
}

.welcome_section h3 {
    font-weight: bold;
    text-transform: uppercase;
}
.welcome_section h4 {
    font-weight: bold;
    text-transform: uppercase;
}
.welcome_section h5 {
    text-transform: uppercase;
}


.welcome_section p {
    line-height: 1.5;
    font-size: 14px;
    text-align: justify;
    font-family: 'Roboto Condensed', sans-serif;
}

.welcome_section .right {
  text-align: center;
}
.welcome_section .right img {
    width: 80%;
    height: auto;
}

#section_product {
    padding-top: 25px;
    height: auto;
    background-color: #dad6d5;
}


#our-room {
    background-color: #e2e7e6;
}

.title{
    width: 100%;
    font-family: 'Roboto Light', sans-serif;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
}

#our-room .content-room {
    width: 100%;
    background: linear-gradient(
      rgba(75, 77, 81,0.45),
      rgba(75, 77, 81, 0.45)
    ), url("../../../assets/front/img/suite-room.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  #our-room .content-room {
    padding: 25px;
    height: auto;
  }
  #our-room .content-room .box-content-room {
    width: 100%;
    height: auto;
    padding: 25px;
    background-color: #e2e7e6;
    text-align: center;
    border-radius: 5px;
  }
}

@media only screen and (min-width: 768px) {
  #our-room .content-room {
    padding: 50px 0px;
    height: 80vh;
  }
  #our-room .content-room .box-content-room {
    width: 30%;
    height: auto;
    padding: 25px;
    background-color: #e2e7e6;
    text-align: center;
    border-radius: 5px;
    margin-left: 10%;
  }
}


#our-facility{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    /*padding:10px 100px;*/
}

@media only screen and (max-width: 768px) {
  .left-image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .right-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px !important;
  }
}

#our-facility .left-image {
    width: 100%;
    height: 50vh;
    background: url("../../../assets/front/img/bath_room.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
#our-facility .right-image {
    width: 100%;
    height: 50vh;
}

#our-facility .right-image-1 {
    width: 100%;
    height: 25vh;
    background: url("../../../assets/front/img/cctv.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
#our-facility .right-image-2 {
    width: 100%;
    height: 25vh;
    background: url("../../../assets/front/img/Kitchen.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

span.box {
    background-color: #a9824a ;
    color: #FFFFFF ;
    padding: 7px 15px 7px 15px ;
    position: absolute ;
}

span.bl { bottom: 0px ; left: 0px ; }


#pool .content-pool {
    width: 100%;
    background: linear-gradient(
      rgba(75, 77, 81,0.45),
      rgba(75, 77, 81, 0.45)
    ), url("../../../assets/front/img/pool.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  #pool .content-pool {
    padding: 25px;
    height: auto;
  }
  #pool .content-pool .box-content-pool {
    width: 100%;
    height: auto;
    padding: 25px;
    background-color: #e2e7e6;
    text-align: center;
    border-radius: 5px;
  }
}

@media only screen and (min-width: 768px) {
  #pool .content-pool {
    padding: 50px 0px;
    height: 80vh;
  }
  #pool .content-pool .box-content-pool {
    width: 30%;
    height: auto;
    padding: 25px;
    background-color: #e2e7e6;
    text-align: center;
    border-radius: 5px;
  }
}


footer .bottom {
  height: auto;
  background: #768387;
  padding: 0 20px;
  text-align: center;
  color: #FFF;
}

.line-subscriber {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 10px;
}

.input-subscribe {
  width: 100%;
  padding :10px;
  height: 50px;
  border: 2px solid rgba(169, 130, 74, 0.75);
  border-radius: 10px;
}

.btn-subscribe {
  font-size: 13px;
  color: rgba(169, 130, 74, 0.75);
  letter-spacing: 1px;
  line-height: 15px;
  border: 2px solid rgba(169, 130, 74, 0.75);
  border-radius: 10px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.btn-subscribe:hover {
  color: #FFF;
  background: rgb(169, 130, 74, 0.75);
  border: 2px solid rgba(169, 130, 74, 0.75);
}


.line-contact i{
    color: #a9824a;
}

.line-social-media {
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 10px;
}
.line-social-media i{
    color: #a9824a;
    font-size: 25px;
    vertical-align: middle
}

.line-horizontal-line {
    font-weight: bold;
}

.line-horizontal-line h4 { width:100%; text-align:center; border-bottom: 1px solid #000; line-height:0.1em; margin:10px 0 20px; }
.line-horizontal-line h4 span { background:#fff; padding:0 10px; }

.line-group-logo {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    word-spacing: 20px;
}

.horizontal-line {
    background-color: black;
}

.btn-hills {
  font-size: 13px;
  color: rgba(169, 130, 74, 0.75);
  letter-spacing: 1px;
  line-height: 15px;
  border: 2px solid rgba(169, 130, 74, 0.75);
  border-radius: 40px;
  background: transparent;
  transition: all 0.3s ease 0s;
}

.btn-hills:hover {
  color: #FFF;
  background: rgb(169, 130, 74, 0.75);
  border: 2px solid rgba(169, 130, 74, 0.75);
}

.input-sub {
  width: 50%;
  margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  .input-sub {
    width: 100%;
    margin-bottom: 5px;
  }
}

.menu_footer {
  display: inline-block;
}

.btn-floating {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border:2px solid #ddd; /* add border to the buttons */
    box-shadow: 0 3px 3px #999;
    padding: 0px;
    text-decoration: none;
    text-align: center;
    color: #fff !important;
    font-size: 25px;
    font-weight: normal;
    line-height: 2em;
    border-radius: 27px;
    -moz-border-radius:27px;
    -webkit-border-radius:27px;
}

/* facebook button class*/
.btn-fb{
    background: #4060A5;
}
.btn-fb:hover{
    background: #fff;
    color: #4060A5 !important;
    border-color: #4060A5; /* change the border color on mouse hover */
}

/* twitter button class*/
.btn-tw{
    background: #00ABE3;
}
.btn-tw:hover{
    background: #fff;
    color: #00ABE3 !important;
    border-color: #00ABE3; /* change the border color on mouse hover */
}

/* instagram button class*/
.btn-ig{
    background: #BC2A8D;
}
.btn-ig:hover{
    background: #fff;
    color: #BC2A8D !important;
    border-color: #BC2A8D; /* change the border color on mouse hover */
}

/* instagram button class*/
.btn-ytb{
    background: #FF0000;
}
.btn-ytb:hover{
    background: #fff;
    color: #FF0000 !important;
    border-color: #FF0000; /* change the border color on mouse hover */
}

.social {
  margin: 20px 10px;
}

.contact i {
  color: rgba(169, 130, 74, 0.75);
}
.hr-border {
  height: 3px;
  background-color: rgba(169, 130, 74, 0.75);
}

.btn-primary-hills {
  font-size: 13px;
  background: rgba(169, 130, 74, 0.75);
  letter-spacing: 1px;
  line-height: 15px;
  /*border: 2px solid rgba(169, 130, 74, 0.75);*/
  border-radius: 40px;
  /*background: transparent;*/
  color:#fff;
  transition: all 0.3s ease 0s;
}

.btn-primary-hills:hover {
  color: #FFF;
  background: rgb(169, 130, 74, 100);
  border: 2px solid rgba(169, 130, 74, 0.75);
}
}