/********** Template CSS **********/
:root {
    --primary: #7A8A5A;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


.dancing-script {
    font-family: "Dancing Script", cursive;
}

.playfair-display {
    font-family: "Playfair Display", serif;
}


/*** 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;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 19px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.bg-footer{
    background-color: #798959;
}

.mainbanner {
    background-image: url(/img/theme-leaf.png);
    background-repeat: no-repeat;
}

/* .bg-leaf{
   position: relative;
   left: 50%;
   top: 90%;
} */

.mainheading {
    max-width: 700px;
}


.blog {
    padding: 120px 0 90px;
}

.blog-content {
    margin-top: 80px;
}

.single-blog-item {
    margin-bottom: 30px;
    box-shadow: 0 0px 5px rgba(71, 71, 71, .2);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single-blog-item-txt {
    padding: 20px;
}

.single-blog-item-txt h2 a {
    text-transform: initial;
    /* line-height: 1.8; */
}

.single-blog-item-txt h4 {
    font-size: 14px;
    color: #8f949d;
    font-weight: 400;
    margin: 12px 0 20px;
}

.single-blog-item-txt h4 a {
    font-size: 14px;
    padding-right: 14px;
    border-right: 1px solid #dde0e4;
    margin-right: 15px;
    text-transform: uppercase;
}

.single-blog-item:hover h2 a {
    color: #ff545a;
}

.single-blog-item:hover {
    box-shadow: 0 10px 20px rgba(21, 19, 19, .4);
}


/* <=======hydepark=======> */

.bg-line-img {
    background-image: url(../image/banner-page/about_shape_1.svg);
    background-position: 125% 10%;
    background-repeat: repeat;
}

.fontone {
    color: #8F9F7B;
    font-weight: 700;
}

.about-img-f {
    border-radius: 2rem;
}

.about-img-s {
    right: 0.5rem;
    bottom: -5rem;
    border: 0.8rem solid white;
    border-radius: 2rem;
}

.featurette-heading {
    font-size: 3rem;
    line-height: 1.5;
}

@media (max-width: 580px) {
    .featurette-heading {
        font-size: 2rem;
    }

    .about-media-f {
        width: 100% !important;
    }

    .about-media-s {
        width: 75%;
        right: -1.5rem;
    }
}

.bordercol {
    border-right: 1px dotted grey;
}

.countericon {
    background-color: #D9F0E5;
    border: 10px solid #EBF7F1;
}




.grow_skew_backward {
    background: #7A8A5A;
    border: 0.25rem solid var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.grow_skew_backward:hover {
    color: var(--primary-color);
    border: 0.25rem solid #1B4D31;
}

.grow_skew_backward::after {
    content: "";
    background: #423f67;
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
}

.grow_skew_backward[class^="grow"]::after {
    transition: all 0.3s ease;
}

.grow_skew_backward[class^="grow"]:hover::after {
    transition: all 0.3s ease-out;
}

.grow_skew_backward::after {
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(45deg) scale(0, 1);
}

.grow_skew_backward:hover::after {
    transform: skewX(45deg) scale(1, 1);
}


.infoicon {
    color: #7A8A5A;
}
.orchard{
    width: 36%;
}

/* <=====location advantages======> */

.ecomcard {
    border-radius: 3px;
    border: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #F8F8F8;
}

.ecomcard:hover {
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.7s 0s linear;
}

.card-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 100%;
    background-color: var(--primary-color);
    top: -3rem;
}


.bg-primary {
    background-color: #798959 !important;
}

.card {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.card-title {
    font-size: 1.1rem;
}

.card-text {
    font-size: 0.9rem;
}

.bg-amenities {
    background-color: #798959;
}

.text-navy {
    color: #0E2E50;
}

.ctacolor {
    border: 1px dashed rgba(0, 185, 142, .3)
}

.projectsdesc {
    max-width: 600px;
}

.testreview {
    width: 45px !important;
    height: 45px !important;
}

.contactuscolor {
    border: 1px dashed #7A8A5A
}

/* .iconsize {
    width: 45px;
    height: 45px;
} */

.textareacol{
    height: 150px
}

.featuressize{
    padding-bottom: 39px;
}

.dropdown-menu{
    border: 0 !important;
}
.navbar-brand{
    text-align: center;
}
.bgtopcolor{
    background-color: #798959;
}

@media (max-width: 480px),
(max-height: 350px) {
    .navbar-brand{
        text-align: left !important;
    }

}

/* <-----------Modal-------------> */

#basicExampleModal .modal-header {
    background: #7A8A5A;
    color: white;
}

#basicExampleModal .form-group label {
    width: 100%;
}

#basicExampleModal form {
    padding: 0px;
}

.form-group input {
    width: 100%;
}

#basicExampleModal {
    background: #000000a8;
}

#basicExampleModal .modal-content {
    margin-top: 40%;
}


.popformbtn {
    margin-top: -4px;
    background-color: #7A8A5A;
}

.popsendbtn {
    margin: 20px 0 0 15px;
    border: 2px solid #7A8A5A;
    background-color: #7A8A5A;
    border-radius: 50px;
    padding: 8px 25px;
}



button#enquire-btn {
    position: fixed !important;
    top: 288px;
    right: -60px;
    font-size: 18px !important;
    padding: 12px 25px !important;
    z-index: 999 !important;
    transform: rotate(270deg);
    background-color: #7A8A5A;
    border: 2px solid #fff;
    color: #ffffff;
    border-radius: 0 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s linear;
}

/* <===========orchard==========> */
.bgtopcolororchard{
background-color: #9C5655;
}
.btn-primary-orchard{
    background-color: #9C5655;
    color: white;
}
.mobilesec{
    margin-top: 95px;
}
.btn-primary-orchard:hover{
    color: #000000;
}

.text-primary-orchard{
    color: #9C5655;
}

.fontone-orchard{
    color: #9C5655;
    margin-bottom: 0;
}
.bg-primary-orchard{
    background-color: #9C5655 !important;
}
.text-primary-orchard{
    color: #9C5655;
}
/* .aorchard:hover{
    color: #9C5655 !important;
} */

.about-img-orchard img {
    position: relative;
    z-index: 2;
}

.about-img-orchard::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #9C5655;
    transform: skew(20deg);
    z-index: 1;
}
.bg-amenities-orchard{
    background-color: #9C5655;
}

.popsendbtn-orchard {
    margin: 20px 0 0 15px;
    border: 2px solid #9C5655;
    background-color: #9C5655;
    border-radius: 50px;
    padding: 8px 25px;
}
.bg-amenities-orchardfoot{
    background-color: #c87e7c;
}

button#enquire-btn-orchard {
    position: fixed !important;
    top: 288px;
    right: -60px;
    font-size: 18px !important;
    padding: 12px 25px !important;
    z-index: 999 !important;
    transform: rotate(270deg);
    
    border: 2px solid #fff;
    color: #ffffff;
    border-radius: 0 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s linear;
}


/* <===========hyde===========> */
.bgtopcolorhyde{
background-color: #25247B;
}

.hydepark{
    width: 42%;
}

.btn-primary-hyde{
    background-color: #25247B !important;
}

.fontone-hyde{
    color: #25247B;
    margin-bottom: 0;
}

.infoiconhyde{
    color: #25247B;
}

.about-img-hyde img {
    position: relative;
    z-index: 2;
}

.about-img-hyde::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #0E2E50;
    transform: skew(20deg);
    z-index: 1;
}

.text-primary-hyde{
    color: #0E2E50;
}

.popsendbtn-hyde {
    margin: 20px 0 0 15px;
    border: 2px solid #0E2E50;
    background-color: #0E2E50;
    border-radius: 50px;
    padding: 8px 25px;
}
.bg-footer-hyde{
    background-color: #25247B;
}

.colororchard{
    background-color: #9C5655 !important;
}