@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
body{
    font-family: 'Roboto Condensed', sans-serif;
}
.navbar-nav li a {
     border-radius: 0;
     font-size: 12px;
     font-style: normal;
     font-weight: 700;
     line-height: 20px;
     padding: 10px 13px;
     text-transform: uppercase;
     color: #000;
     text-decoration: none;
 }

 .navbar-nav>li>a:hover {
     color: #ffffff;
     background: #163656;
 }

 .dropdown-item {
     text-decoration: none;
 }

 .dropdown-menu>li>a:hover {
     color: #ffffff;
     background: #163656;
     text-decoration: none;
 }

 .navbar-nav .dropdown .dropdown-submenu li:hover a {
     color: #ffffff;
     background: #163656;
 }

 @media (min-width: 992px) {
     .navbar-expand-lg .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
         justify-content: end;
     }

     .navbar-nav .dropdown-menu {
         border: none;
     }
 }

 .dropdown-menu>li.kopie>a {
     padding-left: 5px;
 }

 .dropdown-submenu {
     position: relative;
 }

 .dropdown-submenu>.dropdown-menu {
     top: 0;
     left: 100%;
     margin-top: 5px;
     margin-left: -1px;
     -webkit-border-radius: 0 6px 6px 6px;
     -moz-border-radius: 0 6px 6px 6px;
     border-radius: 0 6px 6px 6px;
     border: none;
 }

 .dropdown-submenu>a:after {
     border-color: transparent transparent transparent #333;
     border-style: solid;
     border-width: 5px 0 5px 5px;
     content: " ";
     display: block;
     float: right;
     height: 0;
     margin-right: -10px;
     margin-top: 5px;
     width: 0;
 }

 .dropdown-submenu:hover>a:after {
     border-left-color: #fff;
 }

 .dropdown-submenu>a:after {
     border-left-color: #163656;
 }

 @media (max-width: 767px) {
     .navbar-nav {
         display: inline;
     }

     .navbar-default .navbar-brand {
         display: inline;
     }

     .navbar-default .navbar-toggle .icon-bar {
         background-color: #fff;
     }

     .navbar-default .navbar-nav .dropdown-menu>li>a {
         color: red;
         background-color: #ccc;
         border-radius: 4px;
         margin-top: 2px;
     }

     .navbar-default .navbar-nav .open .dropdown-menu>li>a {
         color: #333;
     }

     .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
     .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
         background-color: #ccc;
     }

     .navbar-nav .open .dropdown-menu {
         border-bottom: 1px solid white;
         border-radius: 0;
     }

     .dropdown-menu {
         padding-left: 10px;
     }

     .dropdown-menu .dropdown-menu {
         padding-left: 20px;
     }

     .dropdown-menu .dropdown-menu .dropdown-menu {
         padding-left: 30px;
     }

     li.dropdown.open {
         border: 0px solid red;
     }

 }

 @media (min-width: 768px) {
     ul.nav li:hover>ul.dropdown-menu {
         display: block;
     }

     #navbar {
         text-align: center;
     }
 }

.content-wrapper{
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Pacifico', cursive;
    color: #2b2a29;
    text-align: center;
}
.divider{
    width: 50%;
    margin: 0 auto;
    margin-bottom: 40px;
}
p{
    font-size: 16px;
    line-height: 28px;
}

#configuration {
    background: url("../images/conf-bg.webp") center;
    background-attachment: scroll;
    background-size: auto;
    background-size: cover;
    background-attachment: fixed;
}

.back {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    background-color: rgba(0, 0, 0, 0.45);
}

.overview{
    text-align: center;
}

.overview span{
    color: #fff;
    font-weight: 700;
}

.amenities {
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    color: #2b2a29;
}

.text-gold{
    color: #cac178;
}

.gallery{
    border-bottom: 2px solid #cac178;
}

.product-grid{
    position: relative;
    border: 5px solid #cac178;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.product-grid a.image {
  display: block;
}

.product-grid:hover .image:before {
  opacity: 1;
  visibility: visible;
}

.product-grid .image:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.72);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1;
}

.product-grid:hover .product-full-view {
  z-index: 2;
}
.product-grid:hover .product-full-view {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.product-grid .product-full-view {
  color: #fff;
  background-color: #163656;
  line-height: 35px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0);
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease 0s;
}

.product-grid .product-full-view:hover {
  background-color: #cac178;
}
.product-grid:hover .product-full-view {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.product-grid .fa {
  padding: 10px;
}



@media (max-device-width: 768px) {
    .timeline {
        list-style-type: none;
        display: block;
    }
    .li {
        transition: all 200ms ease-in;
        display: flex;
        width: inherit;
    }
    .timestamp {
        width: 100px;
        margin-bottom: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 100;
    }
    .li.complete .status {
        border-top: 2px solid #f2d379;
        width: 55%;
    }
    .locationBox1 {
        margin: -5px 15px -16px 0px;
        margin-top: 19px;
    }
    .li.complete .status:before {
        background-color: #222;
        border: none;
        transition: all 200ms ease-in;
        display: none;
    }
    .wrap:hover .footer1 {
        border-width: 0 0 100px 100px;
    }
    .wrap:hover .footer1 {
        border-width: 0 0 100px 100px;
    }
    .divider {
        width: 100%;
    }
    .over-img {
        width: 100%;
    }
    #livprop_chatbox img {
        top: -40px;
        position: relative;
    }
    .you-tube {
        height: 320px;
        width: 100%;
    }
}


@media (min-device-width: 768px) {

    .timeline {
      list-style-type: none;
      display: flex;
      justify-content: center;
      padding: 0px;
    }

    .timestamp {
      margin-bottom: 0px;
      padding: 0px 35px;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-weight: 100;
    }

}
.locationBox1 .location-icon {
  color: #fff;
  font-size: 50px;
  width: 60px;
  height: 60px;
  line-height: 120px;
  margin: 0 auto 40px;
  display: block;
  position: relative;
}

.locationBox1 .location-icon::before {
  content: "";
  background: linear-gradient(to right,#d3ad37 49%,#d5b659 50%);
  width: 100%;
  height: 100%;
  border-radius: 55px 50px 0px 50px;
  box-shadow: 0 0 0 5px #fff inset;
  border: 5px solid #163656;
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
  background: #fff;
  position: absolute;
  box-shadow: 3px 3px 10px #163656;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}
.location-icon span {
  color: #163656;
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 52px;
  margin: 0 auto 40px;
  display: block;
  position: relative;
  z-index: 1;
  top: 5px;
    left: 3px;
}

.li.complete .status {
  padding: 0px 20px;
  justify-content: center;
  border-top: 2px solid #163656;
  position: relative;
  transition: all 200ms ease-in;
}

.li.complete .status::before {
  background-color: #163656;
  border: none;
  transition: all 200ms ease-in;
}
.status::before {
  content: '';
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 25px;
  border: 1px solid #163656;
  position: absolute;
  top: -15px;
  left: 46%;
  transition: all 200ms ease-in;
}

.li.complete .status h4 {
  color: #222;
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 0px;
}
.status h4 {
  font-weight: 600;
}

.contact-map{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#contact {
  height: 680px;
  overflow: hidden;
  position: relative;
}

#contact {
  background-color: #163656;
  background-size: cover;
  background-position: center;
  padding: 70px;
}

.confback {
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 100%;
  padding: 54px 20%;
  /*background-color: rgba(0, 0, 0, 0.7);*/
}

#contact-form .input-group-addon {
  background: #cac178;
  color: #000;
  border: 0;
}

.input-group-addon {
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.form-btn {
  margin: 0px auto;
  display: block;
  background: #2b2a29;
  border: 2px solid #cac178;
  color: #fff;
  font-size: 18px;
  padding: 8px 39px 8px;
  transition: ease all 0.5s;
}

.form-btn:hover {
  border-color: #ffffff;
  background: #163656;
  color: #fff;
  transition: ease all 0.5s;
}

.foo-txt {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
}

.footer-call {
  text-align: center;
  font-size: 20px;
  color: #fff;
}

.footer-call a {
  color: #FFFFFF;
  text-decoration: none;
}




#footer h2 {
    font-size: 16px;
    margin: 0;
    color: #000;
    margin-bottom: 8px;
    font-family: 'CorporateS-Regular';
}

#footer p {
    line-height: 20px;
    color: #000;
}

