/* Fonts */
:root {
  --font-default: "Playfair Display", serif;
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Playfair Display", serif;
}

/* Colors */
:root {
  --color-default: #0c0f21;
  --color-primary: #d6a14a;
  --color-secondary: #1b2f45;
  --color-hover:#e3af5b;
  --color-transparent-one:rgba(0, 0, 0, .3);
  --color-transparent--two:rgba(0, 0, 0, .7);
  --color-part-bg: #efefef;
  --color-part-bg-two: #f7f7f7;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  cursor: pointer;
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
i{
  color: var(--color-primary);
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}
.gary-bg{
  background-color: var(--color-part-bg)
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-hover);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 10px;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    justify-content: end;
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 15px;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-hover);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-default);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    display: flex;
    justify-content: end;
    color: var(--color-default);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  margin: 0 auto;
  width: 98%;
  min-height: 90vh;
  background-size: cover;
  position: relative;
  padding: 0;
  z-index: 3;
}

.hero:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  inset: 0;
}

.hero .container-fluid{
  position: absolute;
  z-index: 1;
  bottom:100px ;
  left: 10px;
}
.hero .container-fluid-second {

  position: absolute;
  content: "";
  width: 100%;
  height: 98px;
  z-index: 1;
  background: var(--color-transparent-one);
    bottom: 0;
    right: 0;
}

.navbar {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  padding-top: unset !important;
  padding-bottom: unset !important;
}
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 6vw;
    font-weight: 500;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}
.hero .time{
  position: absolute;
    right: -25px;
    width: 625px;
}
.hero .time a {
  font-size: 18px;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0;
  background: var(--color-transparent--two);
  display: block;
  height: 98px;
  line-height: 98px;
}
.hero .time a:hover {
  background-color: var(--color-hover);
}
.hero .time a span.left{
  font-weight: 600;
  font-size: 24px;
}
#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 100vh;
}
@media (min-width: 992px) {
  #introCarousel {
    margin-top: -58.59px;
  }

}
@media (max-width: 1280px) {
  .hero .container-fluid-second {
    width: 100%;
    height: 254px;
  }
  .hero .time a {
    line-height: inherit;
    height: auto;
    padding: 20px;
  }
  .hero .time {
    right: 0;
    width: 100%;
    bottom: 0;
    padding: 0;
}
.hero .container-fluid {
  position: absolute;
  z-index: 1;
  bottom: 264px;
}
.hero .time a span.left{
  font-size: 22px;
  display: block;
}
}
#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 100vh;
}


@media (min-width: 992px) {
  #introCarousel {
    margin-top: -58.59px;
  }
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 42px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }

}
.section-title{
  font-size: 38px;
}
.divider {
  width: 52px;
  height: 1px;
  margin-top: 26px;
  margin-bottom: 26px;
  background-color: var(--color-default)
}
.propertydetail-wrap{
  background: var(--color-part-bg-two);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.about ul{
  list-style: none;
  padding: 0;
}
.about ul li{
  padding-left: 28px;
   position: relative;
}
.about .content ul li+li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  line-height: 1;
}
.about a i:hover, .about a:hover p{
  color: var(--color-hover);
}
.pr-50{
  padding-right: 50px;
}
.pl-50{
  padding-left: 50px;
}
/*---------
teams
---------------------*/
.team_pos {
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  margin: auto;
  padding:30px;
}

.team_pos img {
  transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  width: 100%;
  border: 1px solid #c4c4c4;
}
.team_gd1:hover .team_pos img {
  border-radius:0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
}
.team_gd1 h4 {
  text-align: center;
  font-size: 1.2em;
  color: var(--color-primary);
  margin: 1em 0 0 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.8em;
  font-weight: 700;
}
.team_gd1:hover h4 {
  color:var(--color-hover);
}
.team_gd1 p {
  text-align: center;
  font-size: 1em;
  color: var(--color-default);
  letter-spacing: 1px;
}
/*-------
Gallery
----------*/
div#masonry { 
  display: flex; 
  flex-direction: column; 
  flex-wrap: wrap;
  height: 100vw;
  max-height: 100vw;
  font-size: 0;  
}
div#masonry img {  
  width: 33.3%;
  transition: .8s opacity;
} 

div#masonry:hover img { opacity: 0.3; }
div#masonry:hover img:hover { opacity: 1; } 


@supports not (flex-wrap: wrap) {
  div#masonry { display: block; }
  div#masonry img {  
  display: inline-block;
  vertical-align: top;
  }
}
@media only screen and (max-width: 767px) {
  div#masonry img {  
    width: 100%;
  } 
  div#masonry {
    height: unset;
    max-height: unset; 
}

}
.item.vimeo{
  background-color: #000;
  position: relative;
  overflow: hidden;
}
iframe {
  width: 100vw;
  height: 933px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}
.footer{
  background-color: var(--color-default);
}
.footer p{
  color: #fff;
  margin-bottom: 0 !important;
  padding: 20px;
}
.property-feature {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  margin-top: 30px;
  width: 100%;
}
section#details{
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .property-feature {
    margin-top: 20px;
  }
  iframe {
    width: 100vw;
    height: 58vw;
  }
  .item.vimeo{
    background-color: #000;
    position: relative;
    height: 58vw;
    overflow: hidden;
  }
}
 .property-feature li {
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1280px) {
  .property-feature {
    margin:5px 0 0 0;
  }
  .property-feature li {
    max-width: 50%;
    min-width: 50%;
    margin: 0;
    padding: 20px;
  }
}

 .property-feature li:last-child {
  margin-right: 0;
}
 .property-feature li img {
  margin-right: 10px;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
   .property-feature li img {
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .property-feature li span {
    font-size: 14px;
    line-height: 30px;
  }
}
 .property-feature li span {
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
   .property-feature li span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {


}

.icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.icon-box .icon i {
  color:#fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.icon-box h4 a:hover {
  color:var(--color-hover);
}

.icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background:  var(--color-primary);
}
.cta-btn:hover {
  color: #fff;
  background-color: var(--color-hover);
}
 
.photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.photo img:hover{
  opacity: 0.6;
}
.gallery-title
{
  font-size: 36px;
  color: #42B32F;
  text-align: center;
  font-weight: 500;
  margin-bottom: 70px;
}
.gallery-title:after {
  content: "";
  position: absolute;
  width: 7.5%;
  left: 46.5%;
  height: 45px;
  border-bottom: 1px solid #5e5e5e;
}
.filter-button
{
  font-size: 18px;
  border: 1px solid #42B32F;
  border-radius: 5px;
  text-align: center;
  color: #42B32F;
  margin-bottom: 30px;

}
.filter-button:hover
{
  font-size: 18px;
  border: 1px solid #42B32F;
  border-radius: 5px;
  text-align: center;
  color: #ffffff;
  background-color: #42B32F;

}
.filter-button.active
{
  background-color: #42B32F;
  color: white;
}


.fadeIn {
  animation: fadeInAnimation 0.5s;
}

@keyframes fadeInAnimation {
  from { opacity: 0; }
  to { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.gallery .item {
  display: none; /* Default to hidden, let JS show the items */
}