@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;
    transition: ease-out 0.3s;
    overflow-x: hidden !important;
    width: 100%;
}

: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%;
}




/* 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: 30%;
    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);
}
.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;
}
.gallery-links::after{
    display: none !important;
}
.nav-bar li:last-child::after{
    display: none !important;
}
.nav-bar li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
}
.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-link {
    padding: 0;
    color: #fff !important;
}

/* banner-sec */

.banner_sec{
    position: relative;
}
.banner-area{
    position: relative;
}
.banner-overley{
    position: absolute;
    bottom: 10%;
    width: 100%;
    left: 0;
    z-index: 9;
}
.banner0content h1 {
    font-size: 54px;
    font-family: Merriweather;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1;
}
.banner0content p {
    font-size: 18px;
    font-family: Montserrat;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 200;
    width: 35%;
}
.banner-line{
    display: block;
    width: 150px;
    height: 4px;
    background-color: #fff;
}
.banner-form ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 770px;
    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: 8%;
    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);
}


/* complete sec */
.complete0heading h1 {
    font-size: 42px;
    line-height: 44px;
    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: 80%;
    font-weight: 400;
    line-height: 24px;
    margin-top: 30px;
}
.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;
}
.map0heading h1 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 12px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.map0heading span {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--pdcolor);
}
.map0heading {
    margin-bottom: 20px;
}
.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: #c39755;
    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 */
.full0sliderhheading h1 {
    font-size: 42px;
    line-height: 40px;
    margin-bottom: 30px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.full0sliderhheading p {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    width: 60%;
    margin: 0 auto;
}


/* specification-sec */
.specification-sec h1 {
    font-size: 42px;
    line-height: 45px;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Merriweather';
    font-weight: 300;
}
.spe-heading span {
    display: block;
    width: 100px;
    height: 3px;
    background: #fff;
}
.specification-sec{
    background-image: url(../images/fullimg_02A.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0;
}
.specification-sec .container{
    max-width: 90%;
}
.spe-item {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /*min-height: 187px;*/
}
.spe-item img {
    width: 85px !important;
}
.spe-item p {
    font-size: 13px;
    color: #4d4d4d;
    line-height: 17px;
}
.speciation-slider{
    margin-top: 40px;
}
.speciation-slider .owl-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 99;
}
.speciation-slider .owl-dot.active span {
    background-color: var(--pdcolor);
}
.speciation-slider .owl-dot span {
    display: block;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
}


/* apper sec */
.apper-sec .complete0heading h1 {
    line-height: 60px;
}
.apper-sec .complete0heading span {
    display: table;
    margin: 0 auto;
}
.apper-sec .complete0heading p {
    width: 93%;
    margin: 30px auto 0;
}
.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);
}
.tab1{
    display: flex;
    flex-flow: wrap;
    gap: 25px;
    justify-content: center;
    margin: 30px 0 ;
}
.ft-full-slider{
    position: relative;
}
.ft-full-slider .owl-nav{
    position: absolute;
    bottom:30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.ft-full-slider .owl-nav img{
    filter: brightness(0) invert(1);
}
.ft-full-slider .owl-prev {
   width: 60px;
   height: 60px;
   border: 1px solid #fff !important;
   border-radius: 50%;
}
.ft-full-slider .owl-next {
    width: 60px;
    height: 60px;
    border: 1px solid #fff !important;
    border-radius: 50%;
 }

 /* contact us sec */
 .contact-sec{
    background-image:url(../images/fullimg_02.png) ;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
 }
 .contactus-area h1{
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 15px;
    color: var(--pdcolor);
    font-family: 'Merriweather';
    font-weight: 300;
}
.contactus-area span {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--pdcolor);
}
.contactus-area{
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
}
.contact-form{
    margin-top: 20px;
}
.contact-form input{
    color: #000;
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid var(--pdcolor);
    margin-bottom: 1.5rem;
    width: 100%;
    outline: none;
}
.contact-form input::placeholder{
    color: #000;
}
.contact-form .theme-btn {
    border: 1px solid var(--pdcolor);
    border-radius: 0px;
    padding: 12px 20px;
    color: #4d4d4d;
    font-size: 18px;
    gap: 20px;
    width: 83%;
    font-family: 'Montserrat';
    background: transparent;
}
.contact-form .theme-btn:hover{
    color: #fff;
    border-color: var(--pdcolor);
}
.contact-form span {
    width: 50px;
}
.contact-form .theme-btn:hover span{
    background-color: var(--fade);
    width: 80px;
} 
.download-sec{
    background-color:#898275;
}
.download-sec h1{
    font-size: 30px;
    line-height: 1;
    color: #fff;
    font-family: 'Merriweather';
    font-weight: 300;
}
.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;
/*    border-color: transparent;*/
}
/*.footer-btnarea .theme-btn::after{
   width: 100%;
   opacity: 1;
   visibility: visible;
}*/
footer {
    padding-top: 50px;
    background-color: #8f897e;
}
.footer-heading h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
}
.footer-divied {
    display: flex;
}
.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: #8f897e;
    font-size: 14px;
    transition: 0.3s;
    padding-left: 5px;
}
.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: 40px;
}
    .download-sec h1 {
        font-size: 30px;
    }
    .lorem-p {
        width: 85%;
    }
}

#floor-plaing .theme-btn {
    border: 1px solid #c39755;
    border-radius: 0px;
    padding: 14px 20px;
    color: #4d4d4d;
    font-size: 18px;
    width: 70%;
    font-family: 'Montserrat';
    margin: 30px auto 0;
}
#floor-plaing .theme-btn span {
    width: 40px;
}
#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 {
    width: 500px;
}
.viewplace0content .sub-heading {
    font-size: 20px;
    color: var(--pdcolor);
    display: none;
} 
.viewplace0content h1 {
    font-size: 35px;
    line-height: 40px;
    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;
    margin-top: 30px;
}
.viewplace-item {
    opacity: 0.5;
}
.swiper-slide.swiper-slide-active .viewplace-item{
    opacity: 1;
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}
.swiper-button-next {
    position: absolute;
    left: 187px;
    top: 60%;
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor);
    border-radius: 50%;
}
.swiper-button-prev {
    position: absolute;
    left: 120px;
    top: 60%;
    width: 60px;
    height: 60px;
    border: 1px solid var(--pdcolor);
    border-radius: 50%;
}
.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);
}




.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;
    padding-right: 15px;
    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: -20px;
    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;
    box-shadow: -1px -1px 20px 7px rgba(0, 0, 0, 0.09);
}
.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 {
    padding: 0.7rem 1rem 0.7rem 0rem;
    font-size: 14px;
    color: #4d4d4d;
    border: none;
    border-bottom: 1px dashed #4d4d4d;
    position: relative;
    background: transparent;
    width: 100%;
    text-align: left;
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}
.locbtn p {
    display: none;
    height: 0px;
}
.locbtn.active{
    background: var(--pdcolor);
    border-color: transparent;
    color: #fff;
    padding-left: 1rem;
}
.locbtn.active p {
    display: block;
    height: 90px;
    padding-top: 10px;
    font-size: 13px;
    overflow-y: auto;
}
.locbtn.active p::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .locbtn.active p::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  .locbtn.active p::-webkit-scrollbar-thumb {
    background: #fff; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .locbtn.active p::-webkit-scrollbar-thumb:hover {
    background: #fff; 
  }
.map-hedsif {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pt-location-button {
    padding: 30px;
    background: #fff;
    box-shadow: -1px -1px 12px 7px rgba(0,0,0,0.09);
    margin-right: 50px;
    border-radius: 10px;
}
/* .locbtn::after {
    flex-shrink: 0;
    width: 10px;
    height: 7px;
    margin-left: auto;
    content: "";
    display: inline-block;
    float: right;
    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);
    transform: rotate(-90deg);
} */
.locbtn.active::after{
    background: #fff;
}
.pt-location-map{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}


@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: 39px;
}
.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: 15px 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;
}





.modal-overlay {
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5rem;
    background: rgba(0, 0, 0, .75);
    display: none;
    z-index: 99999;
}
  
  .modal-overlay.is-open {
    display: block;
  }
  
  .modal-iframe {
    width: 600px;
    height: 450px;
    margin: 0 auto;
    display: table;
    padding: 30px;
}
  .modal-button-close {
    position: absolute;
    top: 3rem;
    right: 3rem;
  }
  .modal-button-close {
    background: var(--pdcolor);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
}

.date-field{
    display: flex;
}

.read-p {
    color: var(--pdcolor);
    background: transparent;
    border: none;
    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;
}
.date-field input {
    background: transparent !important;
}
.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;
    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;
  }
  .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;
}
.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;
}
.refar {
    color: #fff;
    margin-top: 50px;
    font-size: 13px;
}