/********** Template CSS **********/
:root {
    --primary: #242424;
	/*--primary: #348E38*/;
    --secondary: #8A8A8A;
    --light: #F8F8F8;
    --dark: #333333;
	--deep-blue: #001f4d;
	--light-brown: #ECECE7;
	
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
}

h1,
.h1,
h2,
.h2,
.fw-bold {
	font-family: 'Poppins', sans-serif;
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
	font-family: 'Poppins', sans-serif;
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
	font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
}

.fw-light {
	font-weight: 200 !important;
	line-height: 1
}

.display-10 {
	font-size: 14px;
	
}

.text-dark {
    color: #333333 !important
}

.dtx-gouden-p h2 {
    font-weight: 400;
    font-size: max(3rem,min(calc(.0347222222 * (100vw - 74.4rem) + 3rem),3rem));
    line-height: 1.1666666667;
}

.dtx-gouden-p h2 span {
    font-weight: 400;
    font-size: max(1rem,min(calc(.0347222222 * (100vw - 74.4rem) + 3rem),1rem));
}

.bg-white {
    border-top: 1px solid #F9F9F9;
}

.bg-gray-50 {
	background-color: #8A8A8A;
}

.bg-soft-gray-50 {
	background-color: #ECECE7;
}

.bordered-circle {
  border: 1px solid #242424;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
	color: #FFFFFF; 
	background-color: #242424;
    border-color: #ffffff	
}


.btn-primary:hover {
    color: #FFFFFF;
    background-color: #8A8A8A;
    border-color: #ffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.container-wider {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    /*width: 100%;*/
  }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
	
	.best-deal .section-heading {
    	text-align: center;
  	}
  	.best-deal .tabs-content ul.nav-tabs {
    	margin-top: 0px;
    	justify-content: center;
  	}
  	.best-deal .info-table {
    	margin-bottom: 45px;
  	}
  	.best-deal .tab-content img {
    	padding: 0px;
  	}
  	.best-deal .tabs-content h4 {
    	margin-top: 45px;
 	 }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width: 1400px) {
  .container-wider {
    max-width: 1520px;
  }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*background: rgba(15, 66, 41, .6);*/
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 15%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-item-img {
    animation: slideShow 7s linear infinite 0s;
    -o-animation: slideShow 7s linear infinite 0s;
    -moz-animation: slideShow 7s linear infinite 0s;
    -webkit-animation: slideShow 7s linear infinite 0s;
}

@keyframes slideShow {  
    0% {
        opacity: 0;
        transform:scale(1);
        -ms-transform:scale(1);
        background-color: red;
    }
    5% {
        opacity: 1;
        background-color: red;
    }
    50% {
         opacity: 1;
    }
    90% {
        opacity: 1;
        transform:scale(1.1);
        -ms-transform:scale(1.1);
    }
    100% {
        opacity: 0;
        transform:scale(1);
        -ms-transformm:scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform:scale(1);
    }
    5% {
        opacity: 1
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
        -o-transform:scale(1.1);
    }
    100% {
        opacity: 1;
        -o-transformm:scale(1);
    }
}

@-moz-keyframes slideShow {  
    0% {
        opacity: 0;
        -moz-transform:scale(1);
    }
    5% {
        opacity: 1
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
        -moz-transform:scale(1.1);
    }
    100% {
        opacity: 1;
        -moz-transformm:scale(1);
    }
}

@-webkit-keyframes slideShow {  
    0% {
        opacity: 0;
        -webkit-transform:scale(1);
    }
    5% {
        opacity: 1
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
        -webkit-transform:scale(1.1);
    }
    100% {
        opacity: 1;
        -webkit-transformm:scale(1);
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	
	.best-deal .tabs-content .nav-link {
    	font-size: 14px;
    	padding: 0px 15px;
    	height: 44px;
    	line-height: 44px;
  	}
  	.best-deal .tabs-content ul.nav-tabs li {
    	margin: 0px 5px;
  	}
	
	.portfolio-item {
		height: auto;
	}
}

.page-header {
    background: linear-gradient(rgba(37,48,55, .6), rgba(37,48,55, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header.amenities{
    background: linear-gradient(rgba(37,48,55, .6), rgba(37,48,55, .6)), url("../img/discovery_trails_amenities.jpg") center center no-repeat;
    background-size: cover;
}

.page-header.floor-plan{
    background: linear-gradient(rgba(37,48,55, .6), rgba(37,48,55, .6)), url("../img/discovery_trails_floor_plan.jpg") center center no-repeat;
    background-size: cover;
}

.page-header.contact{
    background: linear-gradient(rgba(37,48,55, .6), rgba(37,48,55, .6)), url("../img/discovery_trails_contact.jpg") center center no-repeat;
    background-size: cover;
}


.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

.page-header-amenities {
    background: linear-gradient(rgba(37,48,55, .1), rgba(37,48,55, .1)), url(../img/amenities-bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(255, 255, 255, .1);
}

.quote .py-8 {
	padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(37,48,55, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-item {
	height: 407.78px;
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
	
	z-index: 1;
}

.portfolio-inner img {
	display: block;
	max-width: 100%;
	height: auto;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(34, 48, 55, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 1;
	
	background: rgba(0, 0, 0, .5);
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}

/*** Best Deal Style ***/

.best-deal {
  background-color: #fafafa;
  /*padding: 100px 0px;*/
}

.best-deal1 {
  background-color: #fafafa;
  padding: 100px 0px;
}

.best-deal2 {
  background-color: #fafafa;
  padding-top: 300px;
}

.best-deal .tab-content img {
  padding: 0px 45px;
}

.best-deal .tabs-content .nav-link {
  font-size: 12px;
  font-weight: 500;
  background-color: #1e1e1e !important;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0px 25px;
  color: #fff;
  cursor: pointer;
}

.best-deal .tabs-content .nav-tabs .nav-link.active {
  background-color: #8A8A8A !important;
  color: #fff;
}

.best-deal .tabs-content ul.nav-tabs {
   border-bottom: none !important;
   /*margin-bottom: 80px;*/
   /*align-items: end;
   justify-content: end;*/
   /*margin-top: -130px;*/
	
	
	
   display: inline-block;
   background: var(--light);
   padding: 10px 15px;
}

.best-deal .tabs-content ul.nav-tabs li {
    /*padding-right: 0px;
    border-right: none;
    margin-left: 20px;*/
	
 	display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

.best-deal .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
	background-color: #242424;
}

.best-deal .info-table ul {
	padding-left: 0;
}

.best-deal .info-table ul li {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}

.best-deal .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.best-deal .info-table ul li span {
  font-size: 16px;
  color: #F8F8F8;
  /*font-weight: 600;*/
  /*float: right;*/
  display: inline-block;
}

.best-deal h4 {
	font-size: 12px;
}

.best-deal p {
	color: #F8F8F8;
	font-size: 14px;
}

.best-deal .tabs-content {
  padding: 0px;
  background-color: transparent;
}

.best-deal .tabs-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}

.best-deal .icon-button {
  margin-top: 30px;
}


/*** Properties ***/

.property-item.mb-30 {
  margin-bottom: 30px; 
}

.property-item .img {
  position: relative;
  z-index: 1; 
}

.property-item .property-content {
  background: #fff;
  padding: 30px;
  font-size: 13px;
  position: relative;
  width: 100%;
  margin-top: -100px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  z-index: 2; +
}

.property-item .property-content .price, .property-item .property-content .city {
	font-size: 20px;
	font-weight: 700;
	color: #000;
}

.property-item .property-content .price {
	color: #005555; 
}

.property-item .property-content .price span {
	position: relative;
	padding-bottom: 4px;
	display: inline-block; 
}

.property-item .property-content .price span:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #005555;
}

.property-item .property-content .specs {
	font-size: 18px; 
}

.property-item .property-content .specs .caption {
	font-size: 13px; 
}

/*** Footer ***/
.footer h4 {
	font-size: 1rem;
}
.footer p {
	font-size: 0.75rem;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--dark);
	font-size: 0.75rem;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #242424;
	font-size: 12px; 
}

.copyright a {
    color: #FEFEFE;
}

.copyright a:hover {
    color: var(--primary);
}