@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: ease-out 0.3s;
    
}
body {
    font-family: "Montserrat", sans-serif !important;
    transition: ease-out 0.3s;
    overflow-x: hidden !important;
    width: 100%;
    background-color: #edf3ea !important;
}

:root{
    --fadgy:#ddd;
    --black:#000;
    --fade:#fff;
    --grey:#1d1d1f;
    --grey1:#1f1f1d;
    --pdcolor:#c39755;
    --pddark:#00ad1d;
    --back:#dfeff1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p{
    padding: 0;
    margin: 0;
}

ul,
ol{
    padding: 0;
    margin: 0;
    list-style: none;
}

.section-padding{
    padding:100px 0;
}
.padding-top{
    padding-top: 100px;
}
.padding-bottom{
    padding-bottom: 100px;
}
.padding-half{
    padding-top: 50px;
    padding-bottom: 50px;
}
.bg-color {
    background-color: #f3f1eb;
}
.container {
    max-width: 78%;
}
main{
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* header sec */
.header-sec{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.header-sec .container{
    max-width: 90%;
}
.is-sticky {
    position: fixed;
    background: #000000c7;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    padding: 10px 0;
}
.logo img {
    width: 60%;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.is-sticky .logo img {
    width: 35%;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.right-area{
    float: right;
}
.theme-btn {
    border: 1px solid #fff;
    border-radius: 4px;
    display: flex;
    position: relative;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    align-items: center;
    gap: 10px;
    z-index: 1;
    overflow: hidden;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.nav-bar .theme-btn{
    color: #fff !important;
}
.theme-btn:hover{
    color: var(--fade);
}
.theme-btn::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--pdcolor);
    z-index: -1;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.theme-btn:hover::after{
    width: 100%;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.theme-btn span{
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #fff;
}
.nav-bar {
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-bar li{
    position: relative;
}
/* .nav-bar li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #fff;
    right: -13px;
}
.nav-bar li:last-child::after{
    display: none;
}
.nav-bar li:nth-child(7)::after{
    display: none;
} */
.nav-bar li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
}
/* .nav-bar li a.active{
    color: #fff;
} */
.is-sticky .nav-bar li a {
    color:#fff;
}
.nav-bar li a::before {
    width: 0%;
    height: 1px;
    background-color: #fff;
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.nav-bar li a:hover::before{
    width: 100%;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
/* .nav-bar li a.active::before{
    width: 100%;
} */

.nav-link
 {
    padding: 0 !important;
    color: #fff !important;
}

/* banner-sec */

.banner_sec{
    position: relative;
    z-index: 1;
}
.banner-area{
    position: relative;
}
.banner-area::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url(../images/shapes.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-area .dask-view{
    width: 100%;
}
.banner-overley {
    position: absolute;
    top: 9%;
    width: 100%;
    left: 0;
    z-index: 9;
    text-align: center;
}
.banner0content h1 {
    font-size: 48px;
    font-family: Merriweather;
    color: var(--pdcolor);
    margin-bottom: 15px;
    line-height: 1;
}
.banner0content p {
    font-size: 18px;
    font-family: Montserrat;
    color: #000;
    width: 58%;
    margin: 0 auto 15px;
}
.banner-line{
    display: table;
    width: 150px;
    height: 2px;
    background-color: var(--pdcolor);
    margin: 0 auto;
}
.banner-form ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    background: #5a4333ad;
    padding: 3px;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner-form.banner-form-fixed ul {
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    gap: 0;
    max-width: 100%;
}
.banner-form ul li input {
    background: transparent;
    border: none !important;
    padding: 10px 0px 10px 20px;
    font-size: 14px;
    color: #fff;
    outline: none !important;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    width: 100%;
}
.banner-form.banner-form-fixed ul li input {
    width: 0%;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    display: none;
}
.banner-form ul li input::placeholder{
    color: #fff;
    font-weight: 200;
}
.banner-form ul li {
    position: relative;
}
.scroll-shows {
    background: #fff;
    color: var(--pdcolor);
    width: 50px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    display: none;
    opacity: 0;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner-form-fixed .scroll-shows{
    display: block;
    opacity: 1;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner-form ul li::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff7a;
    height: 90%;
    width: 1px;
}
.banner-form ul li:nth-child(3)::after{
    display: none;
}
.banner-form ul li:nth-child(4)::after{
    display: none;
}
.banner-form-fixed.banner-form ul li::after{
    display: none;
} 
.enq-btn {
    border: none;
    color: #fff;
    background: var(--pdcolor);
    height: 100%;
    padding: 10px;
    font-size: 14px;
    opacity: 1;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.enquer-now {
    border: none;
    color: #fff !important;
    background: var(--pdcolor);
    height: 100%;
    padding: 10px;
    font-size: 14px;
    display: none;
    text-decoration: none;
    opacity: 0;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner-form-fixed .enquer-now {
    display: block;
     opacity: 1;
     transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner-form-fixed .enq-btn {
    display: none;
    opacity: 0;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner-form {
    margin-top: 40px;
    position: relative;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.banner0form0area .container{
    max-width: 90%;
}
.banner-area .owl-dots {
    position: absolute;
    bottom: 15%;
    right: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 99;
}
.banner-area .owl-dot span {
    display: block;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
}
.banner-area .owl-dot.active span{
    background-color: var(--pdcolor);
}
.banner-card-item .spe-item p {
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    line-height: 15px;
}
.banner-card-item .spe-item span{
    font-size: 13px;
    color: var(--pdcolor);
}
.banner-cards {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
}
.banner-flower {
    position: absolute;
    right: -30px;
    bottom: 40px;
}

/* complete sec */
.complete-liveing {
    padding-top: 65px;
    position: relative;
}
.video-flower {
    position: absolute;
    top: 100px;
    left: -60px;
}
.video-flower1 {
    position: absolute;
    bottom: 100px;
    left: 60px;
}
.video-flower1 img{
    width: 70%;
}
.video-flower2 {
    position: absolute;
    bottom: -150px;
    right: -50px;
}
.video-popup{
    margin-top: 30px;
}
.complete0heading h1 {
    font-size: 44px;
    line-height: 60px;
    margin-bottom: 30px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.complete0heading span {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--pdcolor);
}
.complete0heading p {
    font-size: 14px;
    color: #000;
    width: 64%;
    font-weight: 400;
    line-height: 24px;
}
.complete-listing ul{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.complete-listing ul li{
    display: flex;
    gap: 20px;
    align-items: baseline;
}
.complete-listing ul li p span {
    color: #001880;
}
.complete-listing ul li p {
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
}
.ct0line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background: var(--pdcolor);
}
.video-popup img {
    width: 100%;
}

/* maps sec */
.tabcontent{
    display: none;
}
.map-flower {
    position: absolute;
    bottom: 60px;
    right: 50px;
}
.map0heading p {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    width: 100%;
    margin: 0 auto;
}
.map0heading h1 {
    font-size: 44px;
    line-height: 60px;
    margin-bottom: 15px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.map0heading span {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--pdcolor);
}
.map0heading{
    margin-bottom: 30px;
}
.map-listing-area{
    padding: 30px;
    background: #fff;
    box-shadow: -1px -1px 12px 7px rgba(0,0,0,0.09);
}
.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    background-color: transparent;
    color: #4d4d4d;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #4d4d4d !important; 
    box-shadow: none !important;
}
.accordion-button{
    border-bottom: 1px dashed #4d4d4d;
}
.accordion-item {
    background-color: #fff;
    border: none;
}
.accordion-button {
    padding: 1rem 1rem 1rem 0rem;
    font-size: 14px;
    color:#4d4d4d ;
}
.accordion-body {
    padding: 15px 0;
    font-size: 14px;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 15px;
    height: 10px;
    margin-left: auto;
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    transition: transform .2s ease-in-out;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: var(--pdcolor);
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
}
.map-btn {
    margin-top: 40px;
}
.map-btn .theme-btn {
    border: 1px solid #c39755;
    padding: 12px 20px;
    color: #4d4d4d;
    font-family: 'Montserrat';
    font-size: 18px;
    border-radius: 0;
    gap: 30px;
}
.map-btn .theme-btn span {
    background-color: #4d4d4d;
    height: 2px;
    width: 30px;
}
.map-btn .theme-btn:hover{
    color: #fff;
    gap: 40px;
}
.map-btn .theme-btn:hover span{
    background-color: #fff;
}



/* full slider sec */
.slider-flower {
    position: absolute;
    top: auto;
    left: 0;
}
.full0sliderhheading h1 {
    font-size: 44px;
    line-height: 60px;
    margin-bottom: 15px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.full0sliderhheading p {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    width: 100%;
    margin: 0 auto;
}


/* specification-sec */
.specification-sec {
    position: relative;
}
.spefi-flower {
    position: absolute;
    bottom: -170px;
    right: 0;
}
.specification-sec h1 {
    font-size: 44px;
    line-height: 60px;
    margin-bottom: 15px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.spe-heading span {
    display: block;
    width: 100px;
    height: 3px;
    background: #fff;
}
.spe-item {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 190px;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    border: 1px solid transparent;
}
.spe-item:hover{
    /*border-color: var(--pdcolor);*/
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.spe-item img {
    width: 60px !important;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}   
/*.spe-item:hover img{
    filter: brightness(0) invert(1);
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}*/
.spe-item p {
    font-size: 13px;
    color: #4d4d4d;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
/*.spe-item:hover p{
    color: #fff !important;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}*/
/*.spe-item:hover span{
    color: #fff !important;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}*/
.speciation-slider {
    margin-top: 20px;
}
.speciation-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.speciation-slider .owl-dot.active span {
    background-color: var(--pdcolor);
}
.speciation-slider .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}
.speciation-slider .spe-item img {
    width: 80px !important;
}
.spe-heading {
    padding-right: 60px;
}

.actibity-sec{
    position: relative;
}
.actibity-flower img {
    width: 80%;
}
.actibity-flower {
    position: absolute;
    bottom: 0;
    left: 30px;
}
/* apper sec */
.apper-sec{
    position: relative;
}
.apper-flower{
    position: absolute;
    top: 80px;
    right: 70px;
}
.apper-sec .complete0heading span {
    display: table;
    margin: 0 auto;
}
.apper-sec .complete0heading p {
    width: 93%;
}
.drow-img{
    width: 100%;
}
.full-slider{
    margin-top: 40px;
    position: relative;
}
.full-slider .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor) !important;
    border-radius: 50%;
    left: -100px;
}
.full-slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor) !important;
    border-radius: 50%;
    right: -100px;
}
.fcontent{
    display: none;
}
.flinks {
    font-size: 18px;
    border: none;
    background: transparent;
    color: #000;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}
.flinks.active{
    border-color: var(--pdcolor);
    color: var(--pdcolor);
}
.tab1 {
    display: flex;
    flex-flow: wrap;
    gap: 25px;
    justify-content: center;
    margin: 20px 0;
}
.ft-full-slider{
    position: relative;
}
.ft-full-slider .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor) !important;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    left: 100px;
}
.ft-full-slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor) !important;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    right: 100px;
}
.ft-full-item {
    opacity: 0.5;
    position: relative;
}
.ft-full-slider .owl-item.center .ft-full-item {
    opacity: 1;
}
.gallery-overley{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    background-color: var(--pdcolor);
    color: #fff;
    font-family: 'Merriweather';
    font-size: 20px;
    opacity: 0;
    display: none;
}
.ft-full-slider .owl-item.center .ft-full-item .gallery-overley {
    opacity: 1;
}
#floor-plaing {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    height: 100%;
    justify-content: center;
}
.spefi-form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}
.spefi-form input {
    color: #4d4d4d !important;
    border-bottom: 1px solid var(--pdcolor) !important;
}
.spefi-form input::placeholder{
    color:#4d4d4d !important;
}
.spefi-form .theme-btn {
    border: 1px solid var(--pdcolor) !important;
    color: #4d4d4d !important;
    width: 100% !important;
    font-family: 'Montserrat';
    margin-top: 15px;
}
.spefi-form span {
    width: 50px;
    background: var(--pdcolor) !important;
}
.spe-p{
    font-size: 14px;
    color: #4d4d4d;
}

 /* contact us sec */
.contactus-area h1 {
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 0;
    color: #fff;
    font-family: 'Merriweather';
    font-weight: 300;
}
.contactus-area span {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--pdcolor);
}
.contact-form{
    margin-top: 20px;
}
.contact-form input {
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 1.5rem;
    width: 100%;
    outline: none;
    background: transparent;
}
.contact-form input::placeholder{
    color: #fff;
}
.contact-form .theme-btn {
    border: 1px solid #fff;
    border-radius: 0px;
    padding: 12px 20px;
    color: #fff;
    font-size: 18px;
    gap: 20px;
    width: 50%;
    font-family: 'Montserrat';
    background: transparent !important;
}
.contact-form .theme-btn:hover{
    color: #fff !important;
}
.contact-bts {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.contact-form span {
    width: 50px;
    background: #fff;
}
.contact-form .theme-btn:hover span{
    background-color: var(--fade) !important;
    width: 80px;
} 
.download-sec h1{
    font-size: 44px;
    line-height: 1;
    color: #fff;
    font-family: 'Merriweather';
    font-weight: 300;
}
.download-sec {
    padding: 100px 0;
}
footer {
    background: #6aa95b;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}
footer::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    height: 178px;
    width: 100%;
    background-image: url(../images/shapes.webp);
    background-size: cover;
    z-index: -1;
    transform: rotate(180deg);
    background-repeat: no-repeat;
}
.footer-flower {
    position: absolute;
    left: -60px;
    top: -100px;
}
.footer-flower1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -46px;
    display: none;
}
.footer-btnarea {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.footer-btnarea .theme-btn {
    border-radius: 0px;
    font-family: Montserrat;
    font-size: 18px;
    width: 250px;
   /* border-color: transparent;*/
}
/*.footer-btnarea .theme-btn::after{
    width: 100%;
    opacity: 1;
    visibility: visible;
    background: #5d9a4e;
}*/
.footer-heading h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}
.lorem-p {
    font-size: 12px;
    color: #fff;
    line-height: 20px;
    width: 74%;
    margin-top: 20px;
}
.location {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.call-us {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 15px;
}
.social-links{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.social-links li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: #37562f;
    font-size: 15px;
    transition: 0.3s;
    padding-left: 4px;
}
.social-links li a:hover{
    color: #fff;
    background: var(--pdcolor);
    transition: 0.3s;
}
.copyright {
    font-size: 12px;
    color: #fff;
    padding: 30px 0;
}
.copyright a{
    color: #fff !important;
    text-decoration: none;
}

@media only screen and (min-width:1200px) and (max-width:1400px){
    .map-btn .theme-btn {
        font-size: 16px;
    }
    .spe-item {
    padding: 20px;
   }
    .contactus-area h1 {
        font-size: 44px;
    }
    .download-sec h1 {
        font-size: 30px;
    }
    .lorem-p {
        width: 85%;
    }
}

#floor-plaing .theme-btn {
    border: 1px solid #4d4d4d;
    border-radius: 0px;
    padding: 14px 20px;
    color: #4d4d4d;
    font-size: 18px;
    width: 45%;
    font-family: 'Montserrat';
    margin: 30px 0 0;
}
#floor-plaing .theme-btn span {
    width: 40px;
    background-color: #4d4d4d;
}
#floor-plaing .theme-btn:hover{
    color: #fff;
}
#floor-plaing .theme-btn:hover span {
    background-color: #fff;
    width: 50px;
}


.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .viewplace-item {
    display: flex;
    gap: 50px;
}
.viewplace0content {
    text-align: center;
}
.viewplace0content .sub-heading {
    font-size: 20px;
    color: var(--pdcolor);
}   
.viewplace0content h1 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.viewplace0content .line-drow {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--pdcolor);
}
.viewplace0content p {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
}
.viewplace-item {
    display: flex;
    gap: 20px;
    flex-direction: column;
}   
.trd-view-slider{
    position: relative;
}
.trd-view-slider .owl-prev {
    position: absolute;
    top: 22%;
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor) !important;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    left: -80px;
}
/*.trd-view-slider .owl-prev img{
    filter: brightness(0) invert(1);
}*/
.trd-view-slider .owl-next {
    position: absolute;
    top: 22%;
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor) !important;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    right: -80px;
}
/*.trd-view-slider .owl-next img{
    filter: brightness(0) invert(1);
}*/
.tab {
    display: flex;
    flex-flow: wrap;
    gap: 25px;
    justify-content: center;
    margin: 30px 0;
}
.tablinks {
    font-size: 18px;
    border: none;
    background: transparent;
    color: #000;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}
.tablinks.active {
    border-color: var(--pdcolor);
    color: var(--pdcolor);
}




.map-sec {
    position: relative;
    z-index: 1;
}
.img-maps{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}

.whatsapp-btn {
    padding: 5px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -85px;
    position: relative;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.whatsapp-btn:hover{
    right: 0;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    color: #000;
}
.whatsapp-btn span {
    width: 40px;
    height: 40px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    background: var(--pdcolor);
    color: #fff;
    font-size: 30px;
    border-radius: 10px;
    margin-right: 10px;
}
.callus-btn {
    padding: 5px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    background-color: var(--pdcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: -85px;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.callus-btn:hover{
    right: -30px;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    color: #fff;
}
.callus-btn span {
    width: 40px;
    height: 40px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    background: #fff;
    color: var(--pdcolor);
    font-size: 20px;
    border-radius: 10px;
    margin-right: 10px;
}
.side-fixed-btn{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 99999999;
}

/*-- banner fixed btn-----*/
.banner-form-fixed {
    position: fixed;
    bottom: 5%;
    left: 30px;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.bnenquery-popup {
    position: absolute;
    top: 0;
    width: 350px;
    background: #fff;
    padding: 25px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
    display: none;
}
.bnenquery-popup-open {
    top: -210px;
    display: block;
    opacity: 1;
    visibility: visible;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.bnenquery-popup input {
    width: 100%;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid var(--pdcolor);
    margin-bottom: 1rem;
    outline: none;
}
.enq-btn1 {
    background: var(--pdcolor);
    color: #fff;
    border: none;
    padding: 10px;
    outline: none;
}
.bnquery-close {
    color: #000;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 19px;
    font-size: 20px;
}



/*maps*/
.relatedmap{
    display: none;
}
.locbtn {
    font-size: 14px;
    color: #4d4d4d;
    border: none;
    position: relative;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    width: 144px;
    min-height: 150px;
    border: 1px solid transparent;
}
.locbtn img {
    max-width: 60px;
}
/*.locbtn.active {
    border-color: var(--pdcolor);
}*/
/*.locbtn.active img{
    filter: brightness(0)invert(1);
}*/
.pt-location-button {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.locbtn p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 16px;
}
/*.locbtn.active p{
    color: #fff;
}*/
.locbtn span{
    color: var(--pdcolor);
}
/*.locbtn.active span{
    color: #fff;
}*/
/* .pt-location-map{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
} */
 .relatedmap img{
    display: table;
    margin: 0 auto;
 }


@media only screen and (min-width: 1200px) and (max-width: 1300px){
    .map0heading h1 {
    font-size: 44px;
}
.swiper-button-next {
    top: 85%;
    left: 180px;
}
.swiper-button-prev {
    top: 85%;
    left: 110px;
}
.spe-item {
    padding: 19px;
    min-height: 191px;
}
.spe-item p {
    font-size: 12px;
}
.complete0heading h1 {
    font-size: 44px;
}
.contactus-area h1 {
    font-size: 41px;
}
.footer-btnarea .theme-btn {
    font-size: 16px;
}
}

.dask-view{
    display: block !important;
}
.mob-view{
    display: none !important;
}
.mobile-bar{
    display: none;
    align-items: center;
    justify-content: end;
    column-gap: 15px;
}
.menu-close {
    width: 40px;
    height: 40px;
    display: block;
    background: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
}

.whatsapp{
    display: none;
}
.callus{
    display: none;
}
.menu-enqur::after{
    display: none;
}
.mobile-select{
    display: none;
}
.footer-btn-area {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background: var(--pdcolor);
    z-index: 99;
    margin: 0;
}
.footer-btn-area li {
    display: flex;
    border-right: 1px solid #ddd;
}
.footer-btn-area li {
    display: flex;
    border-right: 1px solid #ddd;
    width: 50%;
}
.footer-btn-area li a {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    width: 100%;
}
.footer-btn-area li a i{
    color: #fff;
}
#for-mb{
    display: none;
}
.read-p {
    color: var(--pdcolor);
    background: transparent;
    border: none;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}
.more-p.more-p-open {
    height: auto;
}
.read-p-none{
    display: none !important;
}
#fist-ft-box h4 {
    border-top: none;
}
.data-fild input{
    background-color: transparent !important;
}

.footer-divied {
    display: flex;
}
.menu-wpp {
    color: #fff;
    font-size: 25px;
    margin-top: -4px;
}
.mobile_social {
    display: none;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.mobile_social li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    color: #c39755 !important;
    font-size: 14px;
    transition: 0.3s;
}


#back-button {
    display: inline-block;
    background-color:var(--pdcolor);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 0px;
    position: fixed;
    bottom: 5%;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}
#back-button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 40px;
    color: #fff;
}
  #back-button:hover {
    cursor: pointer;
    background-color: #333;
  }
  #back-button:active {
    background-color: #555;
  }
  #back-button.show {
    opacity: 1;
    visibility: visible;
  }



  .banner-down-area{
    position:relative;
    padding-top: 100px;
  }
  .banner-down-area::after {
    content: "";
    position: absolute;
    top: -89px;
    left: 0;
    width: 100%;
    height: 0px;
    background-image: url(../images/new/gradint-banner.png);
    background-size: contain;
    z-index: -1;
}

  .border1-line img{
    transform: rotateY(180deg);
  }
.border-height {
    height: 150px;
    margin: 30px auto;
    width: 1px;
    display: table;
    border: 1px solid #c39755;
}
.content-line h4 {
    font-family: Merriweather;
    margin-bottom: 10px;
    color: var(--pdcolor);
}
.content-line p {
    font-size: 14px;
}
.banner-center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    opacity: 0.5;
}

.border1-line {
    width: 150px;
    height: 73px;
    border-top: 2px solid #c39755;
    border-left: 2px solid #c39755;
    margin-top: 65px;
    margin-bottom: 20px;
    margin-left: 35px;
}
.border1-line img{
    display: none;
}
.border2-line img{
    display: none;
}
.border2-line {
    width: 150px;
    height: 73px;
    border-top: 2px solid #c39755;
    border-right: 2px solid #c39755;
    margin-top: 65px;
    margin-bottom: 20px;
    margin-left: 35px;
}

@media (max-width:767px){
    .border1-line{
        display:none;
    }
    .border2-line{
        display:none;
    }
    .content-line{
        margin-top:40px;
    }
    .banner-center-img{
        display:none;
    }
    .border-height{
        display:none;
    }
    .banner-down-area::after {
    top: -150px;
    background-repeat: no-repeat;
    height: 500px;
    opacity: 0;
}
.bottom-line-img{
    display:none;
}
#plans {
    z-index: 2;
    position: relative;
}
}
.grecaptcha-badge {
    display: none !important;
}
div#samplechatbubble {
    position: fixed;
    bottom: 5%;
    right: 74px;
    width: 40px;
    height: 40px;
    background: var(--pdcolor);
    line-height: 40px;
    text-align: center;
    z-index: 9999;
}
div#samplechatbubble img{
    width:35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1366px){
    .banenr-bottom-linee img {
    max-width: 90%;
    margin: 0 auto;
    display: table;
}
.border2-line {
    margin-left: 18px;
}
}

@media only screen and (min-width: 1367px) and (max-width: 1920px){
    .banenr-bottom-linee img {
    max-width: 100%;
    width: 90% !important;
    margin: 0 auto;
    display: table;
}
}

.rightmove-fl{
    width: 244px;
}
.last-copyright {
    text-align: right;
}
.modal-header {
    background: var(--pdcolor);
    color: #fff;
    justify-content: center !important;
}
.btn-close {
    opacity: 1;
    filter: invert(1);
    position: absolute;
    right: 17px;
}
.submit-md {
    padding: 12px 40px;
    color: #fff !important;
}
.submit-md span {
    background: #fff !important;
}
.submit-md::after {
    width: 100%;
}
.right-p {
    text-align: right;
}
.modal-footer{
    border: 0px;
}
.img-fulid {
    width: 60%;
    opacity: 0.8;
    margin: 0 auto;
    display: table;
}
.actibiy-p {
    width: 75% !important;
}

.refar {
    margin-top: 15px;
    font-size: 13px;
}
.banenr-bottom-linee {
    width: 76%;
    height: 100px;
    border-bottom: 2px solid #c39755;
    margin: 30px auto 0;
    border-left: 2px solid #c39755;
    border-right: 2px solid #c39755;
}
.banenr-bottom-linee img{
    display: none;
}