@font-face {
    font-family: 'Poppins-Regular';
    font-style: normal;
    font-display: swap;
    src: url(../font/Poppins/Poppins-Regular.ttf) format('truetype');
  }


  @font-face {
    font-family: 'Poppins-Medium';
    font-style: normal;
    font-display: swap;
    src: url(../font/Poppins/Poppins-Medium.ttf) format('truetype');
  }


  @font-face {
    font-family: 'Poppins-SemiBold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Poppins/Poppins-SemiBold.ttf) format('truetype');
  }

  @font-face {
    font-family: 'Poppins-Light';
    font-style: normal;
    font-display: swap;m
    src: url(../font/Poppins/Poppins-Light.ttf) format('truetype');
  }


  @font-face {
    font-family: 'Poppins-Bold';
    font-style: normal;
    font-display: swap;
    src: url(../font/Poppins/Poppins-Bold.ttf) format('truetype');
  }


  @font-face {
    font-family: 'Prata-Regular';
    font-style: normal;
    font-display: swap;
    src: url(../font/Prata/Prata-Regular.ttf) format('truetype');
  }


  
html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --themeColor: #056360;
    --themeSecColor: #0081C6;
    --themethiredColor: #20A572;
    --headingFontcolor: #2BE23A;
    --headingothercolor: #DE5326;
    --fontColor: #000000;
    --headingFont: "Prata-Regular", sans-serif;
    --headingFontSize: 36px;
    --headingLineheight: 50px;
    --bodyFont: "Prata-Regular", sans-serif;
    --paraFontsize: 16px;
    --paraFontLineheight: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--fontColor);
}

.mt-20 {
    margin-top: 20px;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

.bg-grey {
    background: #f2f2f2;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

p,
ul,
ol,
address,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active,
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
    outline: 0;
}

a:hover,
a {
    text-decoration: none;
}

.form-control:focus {
    background-color: #fff;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
    border: 0;
}

li {
    list-style: none;
    font-family: var(--bodyFont);
}

p, li {
    font-size: 18px !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-90 {
    padding: 90px 0;
}

.p-45 {
    padding: 4.625rem 0;
}

.pt-50 {
    padding-top: 3.125rem;
}

.pb-50 {
    padding-bottom: 3.125rem;
}

.pl-50 {
    padding-left: 3.125rem;
}

.pr-50 {
    padding-right: 10.125rem;
}

.pt-90 {
    padding-top: 10.625rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-0 {
    padding-top: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.mt-30 {
    margin-top: 30px;
}

.mt-90 {
    margin-top: 10.625rem;
}

.common-padd {
    padding: 100px 0;
}

@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}


/*animation element sliding left*/
  .animation-element.slide-left {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(-100px, 0px, 0px);
  }
  
  .animation-element.slide-left.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
  
  .animation-element.slide-right {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(100px, 0, 0);
  }
  
  .animation-element.slide-right.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
  
  .animation-element.slide-up {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(0, 100px, 0);
  }
  
  .animation-element.slide-up.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
  
  .animation-element.slide-down {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(0, -100px, 0);
  }
  
  .animation-element.slide-down.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }

header.site-header.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #fff;
    padding: 0 0;
    box-shadow: 0 1.1875rem 2.375rem rgb(0 0 0 / 0%), 0 0.9375rem 0.75rem rgb(0 0 0 / 6%);
}

header.site-header .inner-Logo {
    display: none;
}

header.site-header.navbar-fixed .inner-whiteLogo {
    display: none;
}

header.site-header.navbar-fixed .inner-Logo {
    display: block;
}

header.site-header {
    /* position: absolute; */
    z-index: 2;
    /* padding: 1.5rem 0; */
    width: 100%;
}

header.site-header.sticky .whiteLogo {
    display: none;
}

.menuWrap .dropdownMain i {
    font-size: 13px;
}

header.site-header.sticky .blackLogo {
    display: block;
}

header.site-header.navbar-fixed .logobox {
    padding-bottom: 0px;
}

.menuWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 15px 0;
    justify-content: space-between;
}

.menuListing.sub-menus ul li a {
    color: #000;
}

.menuListing.sub-menus {
    padding-left: 38px;
    border-left: 1px solid var(--themeSecondColor);
    padding-bottom: 20px;
}

.menuListing.sub-menus ul {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    margin-bottom: 35px;
    justify-content: space-between;
}

.menuListing.sub-menus ul li {
    flex: 0 0 42%;
    margin: 0px 4%;
}

.menuListing.sub-menus ul li a {
    color: #000;
    padding: 20px 0 !important;
    border-bottom: 1px solid var(--themeSecondColor);
    width: 100%;
    text-align: left;
}

.menuheading.menu-img img {
    width: 100%;
}

.menuheading.menu-img {
    padding: 0;
}

.dropDownInnerMnb,
.navbarMain ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.innerheader .dropdownMain .dropbtn, 
.innerheader .navbarMain a, 
.navbarMain a:hover,
.navbarMain ul li:hover a {
    color: var(--headingothercolor);
}

.navbarend {
    display: flex;
    justify-content: end;
    align-items: center;
}


.navbarend ul li a.borde-style{
    border-left: 1px solid var(--fontColor);
}

.navbarMain a.concync-button {
    border-radius: 50px;
    background: #5D737F;
    width: 113px;
    padding: 5px 10px;
    color: #FFF;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.navbarMain a.concync-button span{
    margin-left: 5px;
}

.dropdownMain {
    float: left;
    overflow: hidden;
}

.dropdownMain-content .header {
    padding: 1rem;
    color: #111;
}

.logobox a,
.logobox a img {
    width: 90%;
}

header.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1.1875rem 2.375rem rgb(0 0 0 / 0%), 0 0.9375rem 0.75rem rgb(0 0 0 / 6%);
    animation: 15s infinite gradient;
    z-index: 999;
    padding: 0.625rem 0;
    transition: 0.3s ease-in-out;
}

header.site-header.sticky .dropdownMain .dropbtn,
header.site-header.sticky .navbarMain a {
    color: #585858;
    font-weight: 500;
}

.navbarMain a,
.dropdownMain .dropbtn {
    transition: 0.2s;
}

.dropdownMain .dropbtn,
.navbarMain a {
    color: #000;
    position: relative;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
}

.menuListing ul {
    display: block;
    padding: 0;
}

.dropdownMain .dropbtn {
    border: none;
    outline: none;
    font-weight: 300;
    background-color: transparent;
    margin: 0;
    color: var(--fontColor);
    font-weight: 500;
}

header.site-header.navbar-fixed .dropdownMain .dropbtn,
header.site-header.navbar-fixed .navbarMain a {
    color: #000;
    /* padding-bottom: 35px;
    padding-top: 35px; */
}

header.site-header.navbar-fixed .dropdownMain .dropbtn,
header.site-header.navbar-fixed .navbarMain a.menu-button{
    color: #fff;
}

header.site-header.navbar-fixed .dropdownMain .dropbtn:hover,
header.site-header.navbar-fixed .navbarMain a:hover {
    color: var(--headingothercolor);
}

header.site-header.navbar-fixed .navbarMain a.menu-button:hover,
.navbarMain a.menu-button:hover{
    color: #fff;
}

header.site-header.navbar-fixed {
    top: -10.5rem;
}

#myHeader.hide {
    top: 0rem;
}

#myHeader {
    width: 100%;
    z-index: 100;
    transition: all .3s ease;
}

.dropdownMain-content {
    display: none;
    position: absolute;
    background-color: #f2f2f2;
    width: 100%;
    -webkit-box-shadow: 0px 20px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
}

header.site-header.navbar-fixed .dropdownMain-content {
    top: 100%;
}

.dropdownMain:hover .dropdownMain-content {
    display: block;
    padding: 70px 16%;
}

.dropdown_menu-mega {
    -webkit-animation: growDown 500ms ease-in-out forwards;
    animation: growDown 500ms ease-in-out forwards;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}
.dropDownInnerMnb, .navbarMain ul li{
    padding: 0px 20px;
}

.navbarMain a {
    font-family: var(--bodyFont);
    float: left;
    font-size: 16px;
    color: #000000;
    line-height: 40px;
}

.navbarMain a img {
    width: 25px;
    margin-right: 6px;
}

.navbarMain ul li:nth-last-child(1) {
    padding-right: 0;
}
.navbarMain .menuListing a:after,
.onlyMobile,
header.site-header.sticky .whiteLogo {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.sidenav,
body,
html {
    overflow-x: hidden;
}

.bg-green {
    background: var(--themeColor);
}

.bg-grey {
    background: #f2f2f2;
}


.inter-text-para h1 {
    font-size: var(--headingFontSize);
    font-weight: var(--headingFontWeight);
    line-height: var(--headingLineheight);
}

.inter-text-para p {
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--bodyFont);
    color: var(--fontColor);
    margin-bottom: 20px;
}

.btn-read-more.btn-white a {
    color: #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 5px 5px;
    font-size: 17px;
    font-weight: 700;
    float: left;
    margin-top: 39px;
    letter-spacing: 1px;
    transition: 0.5s;
}

.btn-read-more.btn-white a:hover {
    letter-spacing: 3px;
}

.btn-read-more.btn-white a:hover i {
    margin-left: 5px;
}

.color-greay{
    color: #747474 !important;
}

.btn-read-more.btn-white span {
    color: #fff;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 5px 5px;
    font-size: 17px;
    font-weight: 700;
    float: left;
    margin-top: 39px;
    letter-spacing: 1px;
    transition: 0.5s;
}

.btn-read-more.btn-white span:hover {
    letter-spacing: 3px;
}

.btn-read-more.btn-white span:hover i {
    margin-left: 5px;
}

.menuheading p {
    font-weight: var(--paraFontWeight);
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
}

.menu-prodsecList {
    float: left;
    width: 100%;
    margin-top: 44px;
}

.menu-prodsecList.brand-prod {
    float: left;
    width: 100%;
    margin-top: 25px;
}

.menu-prodsecList span {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    margin-top: 11px;
    color: #111;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(.7) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

img.top-texture {
    position: absolute;
    left: 0;
    top: 0;
    width: 15%;
}

img.bottom-texture {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 22%;
}

.bannerPage .thumbNav {
    position: absolute;
    bottom: 35px;
    left: 0;
    z-index: 99999;
    right: 0;
}

.bannerPage .thumbNailCust {
    position: relative;
}

.container.custon-container {
    max-width: 1620px;
}
/* banner */

.bannerwrap .btn-read-more .main-btn {
    width: fit-content;
}

.bannerwrap .btn-read-more {
    justify-content: start;
}

.bannerwrap::after {
    /*background: #00779B;*/
    /* background: linear-gradient(90deg, rgba(0, 119, 155, 1) 0%, rgba(42, 180, 99, 1) 100%); */
    content: '';
    height: 100%;
    overflow: hidden;
    background: url('../images/banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 1950px;
    margin-left: -80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.bannerwrap::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 0;
    height: 100%;
    width: 1950px;
    background: linear-gradient(90deg, rgb(0 0 0 / 97%) 0%, rgb(0 0 0 / 0%) 100%);
}

img.desktopBanner {
    position: absolute;
    width: 45%;
    right: 0;
  /* top: -15px;  */
    bottom: 0;
}

.bannertext-Wrap {
    position: relative;
    width: 100%;
    padding: 110px 0;
}
.bannertext-Wrap h1 {
    font-size: 50px;
    line-height: 65px;
    font-family: 'Prata-Regular';
    color: var(--headingFontcolor);
    margin-bottom: 20px;
    font-weight: 400;
}

.bannertext-Wrap h1 span.semi-text {
    font-weight: 600;
}

.bannertext-Wrap h1 span {
    font-weight: 600;
}

.bannertext-Wrap p{
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--paraFontsize);
    color: var(--fontColor);
    font-size: 25px !important;
}
ul.banner-location {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0 50px;
    width: 70%;
}

ul.banner-location li {
    font-size: 19px !important;
    line-height: 22px;
    font-family: var(--paraFontsize);
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    flex: 0 0 50%;
    padding: 20px;
    color: #fff;
}

ul.banner-location li:first-child{
    padding-left: 0;
}

ul.banner-location li:last-child{
    border-right: 0px solid #fff;
}

ul.banner-location li i {
    font-size: 18px;
    color: #26D645;
    margin-right: 10px;
}

.btn-read-more .main-btn, 
.btn-read-more button {
    font-family: var(--paraFontsize);
    background: var(--headingothercolor);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    float: left;
    transition: 0.5s;
    font-size: 16px;
    line-height: 22px;
    border: none;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-read-more button {
    float: right;
}

.btn-read-more a img, 
.btn-read-more button img{
    margin-right: 12px;
}

a.menu-button {
    font-family: var(--paraFontsize);
    font-weight: 500;
    background: var(--headingothercolor);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    float: left;
    transition: 0.5s;
    font-size: 15px;
    line-height: 20px;
}

.navbarMain a.menu-button img {
    margin-right: 8px;
    width: auto;
}

.hm-position {
    margin-right: 250px;
}

.inter-text-para h2 {
    font-size: var(--headingFontSize);
    /* font-family: var(--bodyFont); */
    font-family: 'Prata-Regular';
    line-height: var(--headingLineheight);
    /* color: var(--fontColor); */
    color: #374f09;
    text-transform: capitalize;
    margin-bottom: 18px;
    position: relative;
    /* font-weight: 700; */
    padding-left: 0px;
}

.inter-text-para h3 {
    font-size: var(--headingFontSize);
    /* font-family: var(--bodyFont); */
        font-family: 'Prata-Regular';
    line-height: var(--headingLineheight);
    /* color: var(--fontColor); */
    color: #056360;
    margin-bottom: 18px;
    position: relative;
    /* font-weight: 700; */
    padding-left: 0px;
}

.enqury-bg .inter-text-para h3 {
    font-size: 30px;
    /* font-family: var(--paraFontsize); */
    line-height: 40px;
    margin-bottom: 10px;
    padding-left: 0;
}

ul.abt-lis {
    margin-top: 40px;
}

ul.abt-lis li {
    margin: 20px 0;
    position: relative;
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-weight: 600;
    color: var(--fontColor);
    font-family: var(--bodyFont);
}

ul.abt-lis li .quater-dtls img{
    margin-right: 12px;
}

ul.abt-lis li .quater-dtls i {
    color: #f1f1f1;
    font-size: 16px;
    position: absolute;
    left: 13px;
    top: 10px;
}

.bnr-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    height: 80%;
    width: auto;
    max-width: none;
}

.home-abt-sec ul {
    display: flex;
    justify-content: center;
}

.dream-con {
    border-radius: 15px;
    overflow: hidden;
}

.dream-con img {
    width: 100%;
}

.dream-con .row {
    position: absolute;
    bottom: 6%;
    left: 0;
    width: 100%;
}

.dream-con .dream-box-txt h3 {
    color: #fff;
    text-shadow: 0px 0px 6px #0000007a;
}

.dream-house {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dream-house-con {
    width: 50%;
}

.dream-box-txt {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.dream-box img {
    width: 100%;
}

.dream-house li:first-child img {
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.dream-house li:last-child img {
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* matrix */

.home-abt-matrics{
    padding: 45px 0;
    z-index: 1;
}

.home-abt-matrics::before {
    content: '';
    position: absolute;
    background-color: #58985b;
    width: 3000px;
    left: -112px;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
}

.hm-matrics ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hm-matrics ul li {
    flex: 0 0 32%;
    border-right: 1px dotted #fff;
    padding: 0 30px;
}

.hm-matrics ul li:first-child{
    padding-left: 0;
}

.hm-matrics ul li:last-child{
    border-right: 0;
    padding-right: 0;
}
.main-count {
    font-family: 'Prata-Regular';
    font-size: 60px;
    float: left;
    width: 100%;
    line-height: 60px;
    color: #fff;
}

.count-text {
    font-family: var(--paraFontsize);
    font-size: 25px;
    color: #fff;
}

/* about */

/* .home-abt-sec{
    padding: 50px 0;
} */

.home-abt-sec .inter-text-para h2{
    margin-top: 35px;
    /* font-family: var(--paraFontsize); */
}

.rowhouse-sec ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.rowhouse-sec ul li {
    flex: 0 0 48%;
}
.swipper-bungalow {
    margin-top: 10px;
    padding-bottom: 40px;
}

.home-abt-sec .showcase .overlay-text  {
    padding: 20px 20px;
}

.home-abt-sec .showcase .overlay-text  h3{
    font-size: 25px;
    line-height: 40px;
    font-family: 'Prata-Regular';
    color: #027A99;
}

.home-abt-sec .showcase .overlay-text  p{
    font-size: 16px;
    line-height: 26px;
    font-family: var(--bodyFont);
    color: #747474;
}

.home-abt-sec .showcase img{
    border-radius: 10px;
    width: 100%;
}

.swipper-speciality {
    padding-bottom: 50px;
}


.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    background: #ffffff;
    width: 10px;
    height: 10px;
    opacity: 0.8;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: var(--headingothercolor);
}


.swippernewproject .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    background: #ffffff;
}

.swippernewproject .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: var(--headingothercolor);
}

.home-project-sec{
    height: 500px;
}

.project-bigimg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.home-list-sec{
    padding: 50px 0;
}

.home-list-sec::before {
    content: '';
    position: absolute;
    background-color: var(--themeSecColor);
    width: 3000px;
    left: -24%;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
    /* background-image: url(../images/Bg-01.jpg); */
    background-color: #a27543;
}

.home-sec::before {
    content: '';
    position: absolute;
    /*background-color: var(--themeSecColor);*/
    background-color: #374f09;
    width: 3000px;
    left: -24%;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
}

/* .home-sec{
    padding: 50px 0;
} */


.swippernewproject{
    padding-bottom: 50px;
}
.project-box{
    background: #007bbd;
    border-radius: 10px;
    text-align: center;
    padding: 25px 10px;
    height: 220px;
}

.products-detels h5 {
    font-size: 18px;
    line-height: 30px;
    font-family: 'Prata-Regular';
    color: #fff;
    margin-bottom: 15px;
}

/* Amenities */

/* .home-amenities-sec{
    padding: 50px 0;
} */

.swipper-amenities{
    padding-bottom: 70px;
}

.swiper-button-next, .swiper-button-prev {
    top: 90%;
}

.swiper-button-prev {
    left: auto;
    right: 8%;
}

.swiper-button-next {
    right: 2%;
    left: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 10px;
}

.swipper-amenities .btn-swipe {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 6px 20px;
    background: var(--headingothercolor);
    position: absolute;
}
.home-amenities-sec .showcase img {
    border-radius: 10px;
}

.home-amenities-sec .showcase .overlay-text  {
    padding: 11px 10px;
}

.home-amenities-sec .showcase .overlay-text  h3{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Prata-Regular';
    color: #027A99;
}

.home-amenities-sec .showcase .overlay-text  p{
    font-size: 16px;
    line-height: 26px;
    font-family: var(--bodyFont);
    color: #747474;
}

/* gallery */

.sec-gallery{
    padding: 50px 0;
}

.sec-gallery::before {
    content: '';
    position: absolute;
    background-color: #F3FBFF;
    width: 3000px;
    left: -100%;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
}

.sec-gallery .showcase img {
    border-radius: 10px;
}

.sec-gallery .showcase .overlay-text  {
    padding: 12px 0;
}

.sec-gallery .showcase .overlay-text  h3{
    font-size: 25px;
    line-height: 40px;
    font-family: 'Prata-Regular';
    color: #027A99;
}

.sec-gallery .showcase .overlay-text  p{
    font-size: 16px;
    line-height: 26px;
    font-family: var(--bodyFont);
    color: #747474;
}

/*  */

/* .sec-location{
    padding: 80px 0;
} */

/* img.project-bigimg:hover{
    background: #0000005c;
} */

.sec-location::before {
    content: '';
    position: absolute;
    background-color: var(--themethiredColor);
    width: 3000px;
    left: -400px;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
    /* background-image: url(../images/BG-02.jpg);
    background-repeat: no-repeat;
    background-size: contain; */
}


.map-img .project-bigimg {
    position: absolute;
    left: 0;
    width: 100%;
    object-fit: cover;
    opacity: 0.7;
    height: 500px;
}

.map-img .project-bigimg:hover{
    opacity: 1;
}

.home-project-sec.map-img {
    height: 500px;
}
/* mob */

.retail-accordion .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.retail-accordion .accordion-item {
    margin-bottom: 0;
    background-color: transparent;
    border: 0;
}

.retail-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
}


.retail-accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.retail-accordion .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    font-family: var(--bodyFont);
    color: #fff;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff73;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.retail-accordion .accordion-body {
    padding: 25px;
    background: #476905;
    font-family: 'Prata-Regular';
}

.retail-accordion .accordion-button:focus {
    box-shadow: none;
}
.retail-accordion .accordion-button::after {
    background-image: url(../images/plus.png);
}

.retail-accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
    transform: rotate(180deg);
}

.retail-accordion .products-detels h5 {
    font-size: 20px;
    line-height: 21px;
}

.faqs-accordion .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
}

/* faq */

/* .sec-faq{
padding: 50px 0;
} */

.sec-faq::before {
    content: '';
    position: absolute;
    background-color: var(--themeColor);
    width: 3000px;
    left: -175px;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
    background-image: url(../images/FAQ-Bg.jpg);
    background-repeat: no-repeat;
    background-size: contain;
}

.faqs-accordion .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faqs-accordion .accordion-item {
    margin-bottom: 0;
    background-color: transparent;
    border: 0;
}

.faqs-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
}


.faqs-accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faqs-accordion .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    font-size: 20px;
    font-family: var(--bodyFont);
    color: #fff;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff73;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.faqs-accordion .accordion-body {
    padding: 1rem 1.25rem;
    background: #aba6a624;
    font-family: 'Prata-Regular';
}

.faqs-accordion .accordion-button:focus {
    box-shadow: none;
}
.faqs-accordion .accordion-button::after {
    background-image: url(../images/plus.png);
}

.faqs-accordion .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
    transform: rotate(180deg);
}


/* end faq */


/* enqury */

.sec-enqury{
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover;
}
.enqury-bg {
    background: var(--themeSecColor);
    padding: 40px;
    border-radius: 9px;
    box-shadow: 0px 0px 20px 9px #0000003b;
    margin-left: 100px;
}

.contact-sec {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.contact-sec img {
    position: absolute;
    left: 0;
}

.contact-sec input[type="text"], 
.contact-sec input[type="email"], 
.contact-sec input[type="tel"], 
.contact-sec input[type="file"], 
.contact-sec select, 
.contact-sec textarea {
    color: #000000;
    box-shadow: none;
    padding: 11px 0;
    font-size: 16px;
    padding-left: 10px;
    font-family: 'Prata-Regular';
    background: #fff;
    border-radius: 8px;
}
/* .form-group.contact-sec.msg-sec.careers-form{
    margin-left: 60px;
} */
.sec-submit .btn-read-more a {
    color: #ffffff;
}
.sec-submit .btn-read-more a:hover{
    background: #fff;
    color: var(--themeColor);
}

.contact-sec input::placeholder{
    color: #707070;
    font-size: 16px;
}

.contact-sec textarea::placeholder{
    color: #707070;
    font-size: 16px;
}

/*.enqury-bg .btn-read-more button {*/
/*    background: var(--headingFontcolor);*/
/*}*/

.client-logo img {
    width: 100%;
}

.form-icon {
    position: relative;
    background-image: url(../images/from-iconbg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.form-icon i {
    left: 0;
    font-size: 16px;
    padding: 12px;
    color: var(--themeColor);
}
.quater-dtls {
    width: 80%;
}

/* .abt-sec{
    padding: 50px 0;
} */

/* footer */

footer {
    background: #002233;
    padding: 50px 0 0;
}

ul.upper-ft {
    display: flex;
    justify-content: center;
    margin: 30px 0 30px;
    padding: 20px 0;
}

ul.upper-ft li a {
    padding: 0 22px;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    /* font-family: var(--bodyFont); */
    font-family: 'Prata-Regular';
    border-right: 1px dotted var(--headingFontcolor);
}

ul.upper-ft li a:hover{
    color: var(--headingothercolor);
}

ul.upper-ft li:last-child a{
    border-right: 0px dotted var(--headingFontcolor);
}

.borderfootrt-bottom{
    border-bottom: 1px dotted var(--headingFontcolor); 
}
.copyright-info ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
}

/* .copyright-info ul li{
    border-right: 1px double var(--headingFontcolor);
} */

.copyright-info ul li:last-child{
    border-right: 0px double var(--headingFontcolor);
}
.copyright-info ul li {
    padding: 0 10px;
    color: #ffffff;
    font-size: 11px;
    font-family: 'Prata-Regular';
    border-right: 1px dotted var(--headingFontcolor);
}

.copyright-info ul li a {
    color: #ffffff;
    font-size: 11px;
    font-family: 'Prata-Regular';
}
.copyright-info ul li:first-child {
    border-right: 1px dotted var(--headingFontcolor);
}



ul.social-media li{
    float: left;
    margin-right: 10px;
}

ul.social-media {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
}

ul.social-media li h5 {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Prata-Regular';
}

ul.social-media li a {
    padding: 0px 5px;
    color: #fff;
    font-family: 'Prata-Regular';
    font-size: 18px;
}

ul.social-media li a i {
    background: #fff;
    padding: 1px 9px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #111;
    line-height: 35px;
    text-align: center;
}

ul.social-media li a:hover i{
    color: #DE5326;
}

.whatup-sidebar a.fy-float {
    color: #fff;
    background-image: url(../images/what-up.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    right: 0;
    bottom: 45%;
    padding: 10px;
}

.whatup-sidebar a.fy-float i {
    font-size: 38px;
    color: #fff;
}

a.btn-product-enqy {
    padding: 15px 25px;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--headingFont);
    transform: rotate(90deg);
    position: fixed;
    right: -51px;
    bottom: 60%;
    font-size: 18px;
    font-family: var(--bodyFont);
    text-transform: capitalize;
    transform: rotate(270deg);
    z-index: 9;
    background: #2463a6;
    border-radius: 15px 15px 0px 0px;
}

.aspect {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 100%;
}

.aspect-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.aspect-16x9 {
  padding-bottom: 56.25%;
}

form.form-careers {
    padding-top: 0;
}

.swipper-gallery{
    margin-top: 0px;
    padding-bottom: 50px;
}

.footer-box {
    margin-bottom: 30px;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.rowhouse-sec {
    margin-top: 20px;
}

.distence-amenities table {
    width: 100%;
    color: #fff;
    font-size: 18px;
}

.distence-amenities table th, .distence-amenities table td {
    padding: 10px 20px;
}

.distence-amenities table th:first-child, .distence-amenities table td:first-child {
    width: 70%;
}

.distence-amenities table thead {
    background: #c38838;
}

.distence-amenities table tbody tr:nth-child(even) {
    background: #3e5d04;
}

.distence-amenities ul{
    margin-top: 20px;
}

.distence-amenities ul li{
    color: #fff;
    text-align: left;
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--bodyFont);
    position: relative;
    padding-left: 18px;
    padding-bottom: 10px;
}

.distence-amenities ul li:before {
    content: "\f0c8";
    position: absolute;
    left: 0;
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 9px;
}

.swipperframe{
    padding-bottom: 50px;
}

.swipperframe .project-box {
    background: #007bbd;
    border-radius: 10px;
    text-align: center;
    padding: 25px 20px;
    height: 380px;
}

.swipperframe .products-detels h5 {
    font-size: 20px;
}


.locationTabSec div#v-pills-tab {
    width: 35%;
    margin-right: 1.5rem !important;
}

.locationTabSec div#v-pills-tabContent {
    background: #476905;
    border-radius: 10px;
    /*min-height: 375px;*/
    width: 70%;
    padding: 30px 30px;
}

.locationTabSec .nav-link {
    color: #fff;
    /*background: #0177b7;*/
    background: #a27543;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.locationTabSec .nav-link, .locationTabSec.core-tab .nav-link {
    padding: 20px 16px 20px 20px;
    border-bottom: 0 solid #fff;
    margin-bottom: 10px;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Prata-Regular'
}

.locationTabSec .nav-pills .nav-link.active, 
.locationTabSec .nav-pills .nav-link:hover {
    /*background: #072f5f;*/
    background: #c38838;
    color: #fff;
    position: relative;
}

.locationTabSec .products-detels h5 {
    color: #fff;
    margin-top: 0px;
    font-size: 22px;
    line-height: 32px;
    font-family: 'Prata-Regular';
    margin-bottom: 15px;
}

.locationTabSec .nav-pills .nav-link:active:before,
.locationTabSec .nav-pills .nav-link:focus:before,
.locationTabSec .nav-pills .nav-link:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


.locationTabSec  .nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    top: 40%;
    right: -8px;
    transform: translateY(-50%);
    /*border-left: 9px solid #072f5f;*/
    /*border-top: 8px solid #072f5f;*/
    /*border-bottom: 8px solid #072f5f;*/
    border-left: 9px solid #c38838;
    border-top: 8px solid #c38838;
    border-bottom: 8px solid #c38838;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 7%;
    transform: rotate(133deg);
    height: 10%;
    /*background: #072f5f;*/
    background: #c38838;
}


.home-project-sec .map-img a iframe{
    position: absolute;
    width: 3000px;
    left: 0;
    height: 500px;
}

.brand-logbox {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.brand-logbox img {
    width: 25%;
}
.brand-logbox span {
   padding: 12px 0;
    font-size: 18px;
    line-height: 30px;
    /* font-family: var(--paraFontsize); */
    font-family: 'Prata-Regular';
    color: var(--headingFontcolor);
    margin: 15px 0 0;
    width: 100%;
}
.padding-top-bottm{
    padding: 80px 0;
}

.bg-themgradient{
    background: #00779B;
    background: linear-gradient(90deg, rgba(0, 119, 155, 1) 0%, rgba(42, 180, 99, 1) 100%);
    overflow: hidden;
    height: auto;
}
.bg-themgradient .inter-text-para h5 {
    font-size: 22px;
    font-family: 'Prata-Regular';
    line-height: 30px;
    margin-bottom: 20px;
}
.policy-list {
    margin-bottom: 30px;
}

.policy-list ul li {
    color: #fff;
    text-align: left;
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--bodyFont);
    position: relative;
    padding-left: 18px;
    padding-bottom: 10px;
}
.policy-list ul li:before {
    content: "\f0c8";
    position: absolute;
    left: 0;
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 9px;
}

/* .left-icon-anima {
    position: absolute;
    left: 0;
    top: -12px;
    width: 50px;
    z-index: -1;
} */
.left-icon-anima {
    position: absolute;
    left: -30px;
    width: 30px;
    z-index: -1;
    top: -7px;
    height: auto;
}

.home-amenities-sec::before {
        content: '';
    position: absolute;
    width: 3000px;
    left: -24%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -9;
    background-color: #f2f2f2;
}

.home-amenities-sec .showcase a:hover .overlay {
    opacity: 1;
}

.home-amenities-sec .showcase a .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    border-radius: 10px;
    transition: 0.5s ease;
    background-color: #00000045;
}
.showcase-img {
    display: block;
    position: relative;
}
.home-amenities-sec .showcase a .overlay i {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.fancybox__container {
  z-index: 1070;
}

/* .wg-box-content .wg-box-content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
} */
/* .wg-box-fadeIn-bottom {
    top: 80%;
} */
/* .wg-box-content:hover .wg-box-content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
} */
.wg-box-content-details h3 {
    color: #fff;
    font-size: 25px;
    line-height: 40px;
    font-family: 'Prata-Regular';
}
.wg-box-content-details p{
    font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--bodyFont);
}
.wg-box-content-details {
    padding: 20px 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 3;
}
.showcase {
    position: relative;
}

.showcase.wg-box-content {
    border-radius: 15px;
    overflow: hidden;
}
.wg-box-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000c7, #0000);
}
.showcase img{
    width: 100%;
}
.wg-box-content-details .inter-text-para {
    width: 60%;
}

.showcase-btn {
    width: 20%;
}
/* .wg-box-content:hover .static-head{
    opacity: 0;
} */
/* .wg-box-content:hover .wg-box-content-overlay {
    opacity: 1;
} */

.static-head h3 {
    color: #fff;
    font-size: 25px;
    line-height: 40px;
    font-family: 'Prata-Regular';
    text-align: center;
    margin-top: 20PX;
}
.static-head{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.static-head i{
      color: #fff;
    font-size: 22px;
    line-height: 40px;
    /* font-family: 'Prata-Regular'; */
    text-align: center;
    margin-top: 20PX;
    margin-left: 15px;
}

/* [data-aos] {
  min-height: 60px;
} */

/* KATHA sec Start */
.home-katha-sec::before {
    content: '';
    position: absolute;
    width: 3000px;
    left: -24%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -9;
    background-color: #a27543;
}

.home-katha-sec li:not(:last-child) {
    margin-bottom: 15px;
}

.home-katha-sec li {
    position: relative;
    padding-left: 20px;
}

.home-katha-sec li::before {
    content: '';
    color: #fff;
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #fff;
}

/* .home-katha-sec {
    padding: 50px 0;
} */

.katha-box {
    border-radius: 15px;
    overflow: hidden;
}

.katha-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000c7, #0000);
}

.katha-txt-con {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.katha-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    border: 2px solid #cd9f61;
    border-radius: 15px;
    margin-bottom: 15px;
    background: #00000080;
}

.katha-number span {
    color: #d7b56d;
    font-size: 38px;
    font-weight: 900;
}

.katha-number p {
    color: #d7b56d;
    font-weight: 900;
}

.katha-txt-main p {
    color: #ffffff;
    text-align: center;
}

.katha-txt p {
    color: #fff;
    width: 100%;
    /*padding-left: 15px;*/
}

.katha-txt-main {
    width: 15%;
}

.katha-btn {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.btn-read-more {
    width: 100%;
    display: flex;
    justify-content: end;
}

.katha-txt {
    width: 65%;
}

/* .katha-btn .btn-read-more a {
    width: 100%;
    text-align: center;
    background: #d7b56d;
} */

.swipperhomekatha {
    padding-bottom: 50px;
}

.katha-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: -5px;
}

.katha-full-btn {
    display: flex;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

/* KATHA sec End */

/* CLASSY sec Start */
.classy-sec {
    position: relative;
}

.classy-sec::before {
    content: '';
    position: absolute;
    width: 3000px;
    left: -110px;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
    background-image: url('../images/classy-bnr.jpg');
    background-repeat: no-repeat;
    background-size: contain;
}

.classy-sec::after {
    content: '';
    position: absolute;
    width: 3000px;
    left: -24%;
    height: 100%;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    background-color: #00000071;
}

.classy-sec {
    padding: 265px 0;
}

.classy-sec .container {
    position: relative;
    z-index: 3;
}

/* CLASSY sec End */

/* .floor-plan-sec {
    padding: 80px 0;
} */

.floor-plan-sec .swiper-pagination-clickable .swiper-pagination-bullet {
    background: #747474;
}

.floor-plan-sec .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: var(--headingothercolor);
}

.plan-con ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.plan-con ul li {
    width: 50%;
}

.plan-box {
    position: relative;
    border: 2px solid #a27543;
    border-radius: 15px;
    overflow: hidden;
}

.plan-box .plan-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    padding-right: 15px;
}

.swipperfloorplan {
    padding-bottom: 50px;
}

.plan-head {
    background: #a27543;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.plan-head h3 {
    font-size: 22px;
    color: #fff;
}

.plan-btn {
    background: #de5326;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.plan-btn p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}

.royal-bungalow::after {
    content: '';
    position: absolute;
    width: 3000px;
    left: -80px;
    height: 900px;
    top: 0;
    transform-origin: 1% 40%;
    right: 0;
    z-index: -9;
    background-image: url(../images/Royal-Enclave-Bungalow.jpg);
    background-repeat: no-repeat;
    background-size: contain;
}

.royal-bungalow {
    height: 900px;
}

button.btn-close {
    position: absolute;
    top: -5px;
    right: -5px;
}

button.btn-close:hover {
    opacity: 1;
    color: #fff;
}

.enqury-form {
    background: var(--themeSecColor);
    border-radius: 20px;
    padding: 30px;
}

.modal-content {
    background-color: transparent;
}

.modal-body {
    padding: 0 !important;
}

.modal.show .modal-dialog {
    margin-top: 5%;
}

.modal-a {
    background-color: transparent;
    display: block;
    height: 100%;
}

.btn-close {
    --bs-btn-close-bg: auto !important;
    width: 40px;
    height: 40px;
    background: #de5326;
    color: #fff;
    border-radius: 50px;
    opacity: 1;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 99999;
}

.theiaStickySidebar {
    z-index: 10 !important;
}


.thankyou-sec .btn-read-more {
    justify-content: center;
    font-family: var(--paraFontsize);
    font-weight: 500;
    background: var(--headingothercolor);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    /* float: left; */
    transition: 0.5s;
    font-size: 16px;
    line-height: 20px;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
}

.thankyou-sec .btn-read-more a {
    color: #fff;
}
.ft-address {
    margin-bottom: 20px;
}
.ft-address a{
font-size: var(--paraFontsize);
    line-height: var(--paraFontLineheight);
    font-family: var(--bodyFont);
    color: var(--fontColor);
    margin-bottom: 20px;
    color: #fff;
}
.ft-address a i {
    margin-right: 5px;
    background: #d93025;
    padding: 1px 9px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #ffffff;
    line-height: 35px;
    text-align: center;
}
/* Responsive */ 

@media (min-width: 1801px) and (max-width: 2000px){
    .container.custon-container {
        max-width: 1760px;
    }
}
@media (min-width: 1701px) and (max-width: 1800px){
    .container.custon-container {
        max-width: 1660px;
    }
}
@media (min-width: 1601px) and (max-width: 1700px){
    .container.custon-container {
        max-width: 1560px;
    }
}
@media (min-width: 1501px) and (max-width: 1600px){
    .container.custon-container {
        max-width: 1460px;
    }
}
@media (min-width: 1400px) and (max-width: 1500px){
    .container.custon-container {
        max-width: 1360px;
    }
}
@media (min-width: 1301px) and (max-width: 1399px){
    .container.custon-container {
        max-width: 1260px;
    }
}
@media (min-width: 1200px) and (max-width: 1300px){
    .container.custon-container {
        max-width: 1160px;
    }
}
@media (min-width: 1025px) and (max-width: 1199px){
    .container.custon-container {
        max-width: 1000px;
    }
}
@media (min-width: 992px) and (max-width: 1024px){
    .container.custon-container {
        max-width: 940px;
    }
}
@media (min-width: 768px) and (max-width: 991px){
    .container.custon-container {
        max-width: 700px;
    }
}
@media (min-width: 576px) and (max-width: 767px){
    .container.custon-container {
        max-width: 100%;
        padding: 0 20px !important;
    }
}
@media (max-width: 575px){
    .container.custon-container {
        max-width: 100%;
        padding: 0 10px !important;
    }
}

@media (max-width: 1700px){
    .hm-matrics ul li {
        padding: 0 0px;
    }
    
    .bannerwrap::after {
        width: 1720px;
    }
}
@media (max-width: 1600px){
    .enqury-bg {
        margin-left: 70px;
    }
    
    .count-text {
        font-size: 22px;
    }
    
    .bannerwrap::after {
        width: 1620px;
    }
}
@media (max-width: 1500px) {
    .enqury-bg {
        margin-left: 40px;
    }
    
    .btn-read-more .main-btn, .btn-read-more button {
        font-size: 15px;
    }
    
    .locationTabSec .nav-link, .locationTabSec.core-tab .nav-link {
        padding: 15px 16px 15px 15px;
        font-size: 17px;
        line-height: 24px;
    }
    
    .locationTabSec div#v-pills-tab {
        width: 30%;
        margin-right: 1.5rem !important;
    }
    
    .distence-amenities table th, .distence-amenities table td {
        padding: 10px 10px;
    }
    
    .locationTabSec div#v-pills-tabContent {
        padding: 30px 20px;
    }
    
    .bannerwrap::after {
        width: 1520px;
    }
}
@media (max-width: 1399px) {
    .bannerwrap::after {
        width: 1420px;
    }
    
    .main-count {
        font-size: 50px;
        line-height: 50px;
    }
    
    .count-text {
        font-size: 20px;
    }
    
    .katha-txt-main {
        width: 13%;
    }
    
    .katha-txt {
        width: 65%;
    }
    
    .katha-btn {
        width: 25%;
    }
    
    .showcase-btn {
        width: 25%;
    }
    
    .wg-box-content-details .inter-text-para {
        width: 70%;
    }
    
    .katha-txt-con {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 30px 30px;
        background: #374f09;
    }
    
    .katha-txt-main p, .katha-txt p {
        font-size: 16px !important;
    }
    
    .wg-box-content-details {
        padding: 20px 40px;
        position: relative;
        left: auto;
        bottom: auto;
        background: var(--themeSecColor);
        height: 200px;
    }
    
    .btn-read-more .main-btn, .btn-read-more button {
        font-size: 14px;
    }
    
    .katha-number {
        background: transparent;
    }
}
@media (max-width: 1299px) {
    .enqury-bg {
        margin-left: 0;
    }
    
    .bannerwrap::after {
        width: 1320px;
    }
}
@media (max-width: 1024px) {
    .bannerwrap::after {
        width: 1100px;
    }
    
    .locationTabSec .nav-pills .nav-link.active:after {
        right: -4px;
    }
    
    .main-count {
        font-size: 40px;
        line-height: 40px;
    }
    
    .wg-box-content-details {
        flex-wrap: wrap;
    }
    
    .wg-box-content-details .inter-text-para {
        width: 100%;
    }
    .showcase-btn, .katha-btn {
        width: 45%;
        margin: 0 auto;
    }
    
    .katha-txt-con {
        flex-wrap: wrap;
    }
    
    .katha-txt, .katha-txt-main {
        width: 100%;
    }
    
    .katha-txt-main {
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .katha-txt-main p {
        padding-left: 15px;
    }
    
    .katha-number p {
        text-align: center;
    }
    
    ul.banner-location {
        width: 100%;
    }
}

@media (min-width: 1400px) and (max-width: 1600px) {

    .logobox a, .logobox a img {
        width: 80%;
    }

    .bannerPage .thumbNav .swiper-wrapper {
        justify-content: space-between;
    }
    /* .bannertext-Wrap {
        position: absolute;
        top: 15%;
        width: 47%;
    } */

    img.desktopBanner {
        position: absolute;
        width: 45%;
        right: 0;
        top: 50px;
    }
    /* .bannerwrap {
        height: 654px;
    } */
    .bannertext-Wrap h1 {
        font-size: 45px;
        line-height: 55px;
    }

    ul.banner-location {
        margin: 10px 0 30px;
    }

    .btn-read-more a, .btn-read-more button {
        font-size: 14px;
        line-height: 22px;
    }

    .products-detels h5 {
        font-size: 17px;
        line-height: 30px;
    }

    ul.banner-location li {
        padding: 15px 20px;
    }

    ul.upper-ft li a {
        padding: 0 18px;
        font-size: 17px;
        line-height: 28px;
    }
    .hm-matrics ul li {
        padding: 0 30px;
    }
    .swipperframe .project-box {
        height: 410px;
    }

    .royal-bungalow {
        height: 760px;
    }

    ul.banner-location {
        width: 90%;
    }

    .swiper-button-prev {
        right: 10%;
    }

    .common-padd {
        padding: 80px 0;
    }

    .royal-bungalow::after, .classy-sec::before {
        width: 1650px;
    }

    .classy-sec {
        padding: 120px 0;
    }

    .enqury-bg {
        padding: 30px;
    }
}
@media (min-width: 1300px) and (max-width: 1399px) {

    .logobox a, .logobox a img {
        width: 80%;
    }

    .bannerPage .thumbNav .swiper-wrapper {
        justify-content: space-between;
    }
    .bannertext-Wrap {
        position: absolute;
        /*top: 15%;*/
        width: 51%;
    }

    img.desktopBanner {
        position: absolute;
        width: 45%;
        right: 0;
        top: 81px;
    }
    .bannerwrap {
        height: 720px;
    }
    .bannertext-Wrap h1 {
        font-size: 45px;
        line-height: 55px;
    }
    ul.banner-location {
        margin: 10px 0 30px;
    }
    .btn-read-more a, .btn-read-more button {
        font-size: 14px;
        line-height: 22px;
    }
    .products-detels h5 {
        font-size: 17px;
        line-height: 30px;
    }
    ul.upper-ft li a {
        padding: 0 15px;
        font-size: 17px;
        line-height: 28px;
    }
    ul.banner-location li {
        padding: 20px 0px 20px 15px;
    }
    .project-box {
        padding: 25px 10px;
    }
    .home-amenities-sec .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .home-abt-sec .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .home-abt-sec .showcase .overlay-text  {
        padding: 20px 15px;
    }
    .home-amenities-sec .showcase .overlay-text  {
        padding: 20px 10px;
    }
    .sec-gallery .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .sec-gallery .showcase .overlay-text  {
        padding: 25px 15px;
    }
    .hm-matrics ul li {
        padding: 0 42px;
    }
    .swipperframe .project-box {
        height: 410px;
    }

    .bannertext-Wrap {
        width: 100%;
        padding: 100px 0;
    }

    .classy-sec {
        padding: 190px 0;
    }

    .royal-bungalow::after {
        width: 1440px;
        left: -70px;
    }

    .royal-bungalow {
        height: 670px;
    }

    .swiper-button-prev {
        right: 10%;
    }

    .enqury-bg {
        padding: 30px;
    }

    .enqury-bg .inter-text-para h3 {
        font-size: 25px;
    }

    .common-padd {
        padding: 80px 0;
    }
}
@media (min-width: 1200px) and (max-width: 1299px) {

    .navbarMain a {
        font-size: 18px;
    }

    .logobox a, .logobox a img {
        width: 80%;
    }

    .bannerPage .thumbNav .swiper-wrapper {
        justify-content: space-between;
    }
    .bannertext-Wrap {
        position: absolute;
        width: 50%;
    }

    img.desktopBanner {
        width: 43%;
        right: 0;
        top: auto;
        bottom: 0;
    }
    .bannerwrap {
        height: 654px;
    }
    .bannertext-Wrap h1 {
        font-size: 45px;
        line-height: 55px;
    }
    ul.banner-location {
        margin: 10px 0 30px;
    }
    ul.banner-location {
        margin: 30px 0;
    }
    .btn-read-more a, .btn-read-more button {
        font-size: 14px;
        line-height: 22px;
    }
    .products-detels h5 {
        font-size: 17px;
        line-height: 30px;
    }

    ul.upper-ft li a {
        padding: 0 17px;
        font-size: 14px;
        line-height: 28px;
    }
    ul.banner-location li {
        padding: 20px 0px 20px 15px;
    }
    .project-box {
        padding: 25px 10px;
    }
    .home-amenities-sec .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .home-abt-sec .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .home-abt-sec .showcase .overlay-text  {
        padding: 20px 10px;
    }
    .home-amenities-sec .showcase .overlay-text  {
        padding: 20px 10px;
    }
    .sec-gallery .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .sec-gallery .showcase .overlay-text  {
        padding: 25px 15px;
    }
    .swipperframe .project-box {
        height: 470px;
    }

    .locationTabSec div#v-pills-tab {
        width: 40%;
    }
    .locationTabSec div#v-pills-tabContent {
        min-height: 400px;
    }
    .locationTabSec .nav-link, .locationTabSec.core-tab .nav-link {
        font-size: 18px;
        line-height: 25px;
    }
    .locationTabSec .nav-pills .nav-link.active, .locationTabSec .nav-pills .nav-link:hover {
        font-size: 18px;
        line-height: 25px;
    }
    .brand-logbox span {
        font-size: 18px;
        line-height: 28px;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 42%;
        right: auto;
    }
    
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 42%;
        left: auto;
    }

    .enqury-bg {
        padding: 30px;
    }

    .enqury-bg .inter-text-para h3 {
        font-size: 25px;
    }

    .bannertext-Wrap {
        width: 100%;
        padding: 100px 0;
    }

    .classy-sec {
        padding: 100px 0;
    }

    .royal-bungalow::after {
        width: 1340px;
        left: -70px;
    }

    .royal-bungalow {
        height: 600px;
    }

    .swiper-button-prev {
        right: 10%;
    }

    .common-padd {
        padding: 80px 0;
    }
}
@media (min-width: 1025px) and (max-width: 1199px) {

    .hm-matrics ul li {
        padding: 0 20px;
    }
    .logobox a, .logobox a img {
        width: 80%;
    }

    .bannerPage .thumbNav .swiper-wrapper {
        justify-content: space-between;
    }
    .bannertext-Wrap {
        position: absolute;
        /*top: 15%;*/
        width: 85%;
        padding: 70px 0;
    }

    img.desktopBanner {
        width: 42%;
        right: 0;
        top: auto;
        bottom: 0;
    }
    .bannerwrap {
        height: 620px;
    }
    .bannertext-Wrap h1 {
        font-size: 40px;
        line-height: 50px;
    }
    ul.banner-location {
        margin: 10px 0 30px;
    }

    .btn-read-more a, .btn-read-more button {
        font-size: 14px;
        line-height: 22px;
    }
    .products-detels h5 {
        font-size: 17px;
        line-height: 30px;
    }
 
    ul.upper-ft li a {
        padding: 0 10px;
        font-size: 15px;
        line-height: 24px;
    }
    ul.banner-location li {
        padding: 20px 0px 20px 15px;
    }
    .project-box {
        padding: 25px 10px;
    }
    .home-amenities-sec .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .home-abt-sec .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .home-abt-sec .showcase .overlay-text  {
        padding: 20px 15px;
    }
    .home-amenities-sec .showcase .overlay-text  {
        padding: 20px 10px;
    }
    .sec-gallery .showcase .overlay-text  h3 {
        font-size: 22px;
    }
    .sec-gallery .showcase .overlay-text  {
        padding: 25px 15px;
    }
    .copyright-info ul li a {
        font-size: 12px;
    }

    .faqs-accordion .accordion-button {
        font-size: 18px;
        line-height: 26px;
    }
    .swipperframe .project-box {
        height: 470px;
    }
    .locationTabSec div#v-pills-tab {
        width: 40%;
    }
    .locationTabSec div#v-pills-tabContent {
        min-height: 400px;
    }
    .locationTabSec .nav-link, .locationTabSec.core-tab .nav-link {
        font-size: 18px;
        line-height: 25px;
    }
    .locationTabSec .nav-pills .nav-link.active, .locationTabSec .nav-pills .nav-link:hover {
        font-size: 18px;
        line-height: 25px;
    }

    .brand-logbox span {
        font-size: 18px;
        line-height: 28px;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 42%;
        right: auto;
    }
    
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 42%;
        left: auto;
    }

    .main-count {
        font-size: 35px;
    }

    .enqury-bg .inter-text-para h3 {
        font-size: 26px;
    }

    .enqury-bg {
        padding: 30px;
    }

    .home-abt-sec .inter-text-para h2, .inter-text-para h3 {
        margin-top: 28px;
    }

    .common-padd {
        padding: 70px 0;
    }

    .royal-bungalow::after, .classy-sec::before {
        width: 1440px;
    }

    .royal-bungalow {
        height: 580px;
    }

    .navbarMain a {
        font-size: 14px;
    }

    .dropDownInnerMnb, .navbarMain ul li {
        padding: 0px 10px;
    }

    .katha-box {
        aspect-ratio: 6/4;
    }

    .katha-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .katha-txt p {
        width: 100%;
    }

    .katha-btn {
        width: 30%;
    }

    .classy-sec {
        padding: 40px 0;
    }

    .royal-bungalow::after {
        width: 1340px;
        left: -70px;
    }

}
@media (max-width: 1024px) {
    p, li {
        font-size: 17px !important;
    }
    .footer-box {
        margin-bottom: 30px;
        width: 70%;
    }
    .moble-con {
        text-transform: capitalize;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.1;
        font-family: var(--bodyFont);
        width: 100%;
        text-align: center;
        cursor: pointer !important;
        background-color: var(--headingothercolor);
        padding: 16px;
    }
    .pointer {
        cursor: pointer !important;
        background-color: #ffd300;
        color: #000;
        display: block;
    }
    .bar-en {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 9;
        display: inline-block;
        /* background-color: #fff; */
    }
    .onlyMobile {
        display: block;
    }

    .navbarMain.onlyDesktop {
        display: none;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: 1.875rem 1rem;
        float: left;
        width: 100%;
    }

    a.closebtn {
        position: absolute;
        right: 37px;
        top: 0rem;
        z-index: 999;
        width: 3.125rem;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: var(--fontColor);
        padding: 8px 11px;
        width: 100%;
        float: left;
        font-family: var(--bodyFont);
    }

    .logobox a, .logobox a img {
        width: 60%;
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        right: 0;
        top: 1.5rem;
        width: 3.125rem;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 1rem 0%;
    }

    .mobmenuList ul {
        padding: 0 1rem;

    }

    .mobmenuList .accordion {
        float: left;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 1rem;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        padding: 12px 0;
        border-bottom: 1px solid #000000;
        position: relative;
        float: left;
        width: 100%;
        background: transparent;
        font-weight: 700;
        font-size: 20px;
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        background: #f2f2f2 !important;
        padding: 11px !important;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 11px;
        font-weight: 700;
        font-size: 20px;
        background: transparent;
        color: var(--fontColor);
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none;
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: var(--fontColor);
        background-color: initial;
        box-shadow: none;
        font-weight: 700;
        font-size: 20px;
    }

    ul.menuprodlist-items li a {
        padding: 5px 0;
        float: left;
        width: 100%;
        font-weight: 500;
        font-size: 18px;
    }

    .mobileBoxLogo.InsideSideBar img {
        width: 25%;
    }

    .inter-text-para h3 {
        font-size: 35px;
        font-family: var(--bodyFont);
        line-height: 45px;
    }

    .inner-sec {
        float: left;
        width: 100%;
        margin-bottom: 30px;
        background: #f2f2f2;
    }

    .inner-sec h4 {
        color: #ffffff;
        background: var(--themeColor);
        float: left;
        width: 100%;
        padding: 9px;
        font-size: 18px;
    }

    .inner-sec ul.menuprodlist-items {
        padding: 1rem;
        float: left;
        width: 100%;
    }

    .bannerwrap {
        height: 640px;
    }
    ul.banner-location {
        margin: 10px 0;
    }
    /*.count-text {*/
    /*    font-size: 22px;*/
    /*}*/
    
    .hm-matrics ul li {
        padding: 0 10px;
    }
    
    img.desktopBanner {
        width: 53%;
        right: 0;
        top: auto;
        opacity: 0.2;
        bottom: 0;
    }
    .bannertext-Wrap {
        position: absolute;
        /*top: 10%;*/
        width: 100%;
        padding: 70px 0;
    }
    /* .hm-matrics ul li {
        flex: 0 0 50%;
        border: 1px dotted #fff;
        padding: 40px 40px;
    } */
    /*.hm-matrics ul li:first-child {*/
    /*    padding-left: 40px;*/
    /*}*/
    /*.hm-matrics ul li:last-child {*/
    /*    border-right: 1px dotted #fff;*/
    /*}*/
    .home-abt-sec .showcase .overlay-text  {
        padding: 20px 25px;
    }
    .enqury-bg {
        padding: 40px 20px;
    }
    .mx-cont {
        text-align: center;
    }
    .project-bigimg, .home-project-sec {
        height: 450px;
    }

    .bannertext-Wrap h1 {
        font-size: 40px;
        line-height: 50px;
    }
    ul.banner-location {
        margin: 10px 0 30px;
    }

    
    ul.upper-ft li a {
        padding: 0 10px;
        font-size: 14px;
        line-height: 28px;
    }
    .copyright-info ul li {
        font-size: 11px;
        line-height: 24px;
    }
    .home-amenities-sec .showcase .overlay-text  {
        padding: 20px 10px;
    }
    a.btn-product-enqy {
        padding: 15px 25px;
        color: #fff;
        margin-bottom: 10px;
        font-family: var(--headingFont);
        transform: rotate(90deg);
        position: fixed;
        right: -13%;
        bottom: 60%;
        font-size: 18px;
        font-family: var(--bodyFont);
        text-transform: capitalize;
        transform: rotate(270deg);
        z-index: 9;
        background: var(--headingothercolor);
        border-radius: 30px 30px 0px 0px;
    }
    /* a.btn-product-enqy img{
        transform: rotate(90deg);
        margin-top: 20px;
    } */
    .locationTabSec div#v-pills-tab {
        width: 40%;
    }
    .locationTabSec div#v-pills-tabContent {
        min-height: 400px;
    }
    .locationTabSec .nav-link, .locationTabSec.core-tab .nav-link {
        font-size: 18px;
        line-height: 25px;
    }
    .locationTabSec .nav-pills .nav-link.active, .locationTabSec .nav-pills .nav-link:hover {
        font-size: 18px;
        line-height: 25px;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 42%;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 42%;
    }
    .locationTabSec .nav-pills .nav-link.active:after {
        top: 40%;
        right: -4px;
        opacity: 1;
        width: 7%;
        height: 10%;
    }

    .enqury-bg .inter-text-para h3 {
        font-size: 26px;
    }

    .enqury-bg {
        padding: 30px;
    }

    /*.home-abt-sec .inter-text-para h2, .inter-text-para h3 {*/
    /*    margin-top: 28px;*/
    /*}*/
    
    .wg-box-content-details {
        height: 280px;
    }

    .common-padd {
        padding: 50px 0;
    }

    .royal-bungalow::after, .classy-sec::before {
        width: 1440px;
    }

    .royal-bungalow {
        height: 580px;
    }

    .navbarMain a {
        font-size: 13px;
    }

    .dropDownInnerMnb, .navbarMain ul li {
        padding: 0px 10px;
    }

    .katha-txt-con {
        position: relative;
        background: #374f09;
        aspect-ratio: 6 / 2.8;
    }

    .katha-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .katha-txt p {
        width: 100%;
        min-height: 130px;
    }

    /*.katha-btn {*/
    /*    width: 30%;*/
    /*}*/

    .classy-sec {
        padding: 40px 0;
    }

    .royal-bungalow::after {
        width: 1340px;
        left: -70px;
    }
    
    .distence-amenities table {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    p, li {
        font-size: 16px !important;
    }
    
    .bannerwrap::after {
        width: 1000px;
    }

    .brand-logbox span {
        font-size: 20px;
        line-height: 30px;
        padding: 15px;
    }

    .sticky-item {
        padding-bottom: 50px;
    }
    .enqury-bg {
        background: var(--themeSecColor);
        padding: 40px 20px;
        box-shadow: none;
    }
    ul.social-media {
        margin: 0;
        padding: 0px 0;
        justify-content: center;
        margin-bottom: 20px;
    }
    .footer-box {
        margin-bottom: 40px;
        width: 100%;
    }
    ul.upper-ft {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 40px 0;
    }
    .footer-box img {
        width: 250px;
    }

    header.site-header, header.site-header.sticky {
        /* background: #dbedf7; */
        padding: 1rem 0;
        box-shadow: 0 19px 38px #fff0, 0 15px 12px rgb(0 0 0 / 6%);
    }

    .logobox a,
    .logobox a img {
        width: 200px;
    }

    .navbarMain {
        width: 70%;
    }

    .logobox {
        padding-bottom: 0px;
        width: 30%;
    }

    .menuWrap {
        padding: 0;
    }

    a.closebtn {
        right: 15px;
        top: 0.5rem;
        width: 3.125rem;
    }

    .dropDownInnerMnb, .navbarMain ul {
        justify-content: flex-end;
    }

    .dropDownInnerMnb, .navbarMain ul li {
        padding: 0px 10px;
    }
    .dropDownInnerMnb, .navbarMain ul li:first-child {
        padding-left: 0px;
    }
    .dropDownInnerMnb, .navbarMain ul li:nth-child(2){
padding-right: 0;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 15px 0;
    }

    .mobmenuList ul {
        padding: 0 1rem;

    }

    .mobmenuList .accordion {
        float: left;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 1rem;
        width: 100%;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        /* padding: 20px 0; */
        border-bottom: 1px solid var(--themeColor);
        position: relative;
        float: left;
        width: 100%;
        background: transparent;
        font-weight: 700;
        font-size: 20px;
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        background: #f2f2f2 !important;
        padding: 11px !important;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 11px 11px;
        font-weight: 700;
        font-size: 20px;
        background: transparent;
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none;
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: var(--fontColor);
        background-color: initial;
        box-shadow: none;
        font-weight: 700;
        font-size: 20px;
    }

    .inter-text-para p {
        margin-bottom: 18px;
    }
    .swipper-amenities {
        margin-top: 0px;
    }
    .swippernewproject {
        margin-top: 0px;
    }
    .sec-location {
        padding: 50px 0;
    }
    .bannertext-Wrap {
        /*top: 10%;*/
        width: 100%;
    }
    img.desktopBanner {
        width: 66%;
    }
    .project-bigimg, .home-project-sec {
        height: 300px;
    }
    .map-img .project-bigimg, .home-project-sec.map-img{
        height: 300px;
    }

    .home-abt-matrics::before {
        left: -172px;
    }

    .main-count {
        font-size: 30px;
    }

    .royal-bungalow::after {
        width: 1240px;
        left: -180px;
    }

    .classy-sec::before {
        width: 1150px;
        left: -170px;
    }

    /*.showcase.wg-box-content {*/
    /*    aspect-ratio: 9/6;*/
    /*}*/

    .showcase img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    footer {
        margin-bottom: 55px;
    }
    
    .bannerwrap::before {
        left: -150px;
        width: 1000px;
    }
    
    .bannerwrap::after {
        width: 1000px;
        margin-left: -150px;
    }

}
@media (min-width: 768px) and (max-width: 991px) {

    header.site-header.navbar-fixed .menuWrap {
        padding: 15px 0;
    }
    header.site-header {
        position: relative;
        padding: 1rem 0;
    }

    header.site-header .inner-whiteLogo {
        display: none;
    }

    header.site-header .inner-Logo {
        display: block;
    }
    .swipper-gallery {
        margin-top: 0px;
        padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    p, li {
        font-size: 16px !important;
    }

    .copyright-info ul {
        padding: 10px 0;
    }
    ul.upper-ft {
        justify-content: center;
        margin: 0px auto 0;
        padding: 30px 0;
        width: 100%;
    }
    ul.upper-ft li {
        flex: 0 0 27%;
        text-align: center;
    }
    ul.upper-ft li a {
        padding: 0;
        font-size: 11px;
        line-height: 28px;
        font-family: "Prata", serif;
        font-weight: 400;
        border-right: 1px dotted var(--headingFontcolor);
        padding: 0 9px;
    }
    img.mobBanner {
        width: 100%;
        border-radius: 9px;
    }
    .mobileBoxLogo.InsideSideBar img {
        width: 60%;
    }

    header.site-header .inner-whiteLogo {
        display: none;
    }

    header.site-header .inner-Logo {
        display: block;
    }

    header.site-header.navbar-fixed .menuWrap {
        padding: 15px 0;
    }
    .pointer {
        cursor: pointer !important;
        display: block;
    }
    .bar-en {
        width: 100%;
        position: fixed;
        bottom: 0px;
        z-index: 100;
        display: inline-block;
        background-color: #fff;
    }
    /* .moble-con {
        color: #ffffff;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.1;
        width: 100%;
        text-align: center;
        cursor: pointer !important;
        background-color: var(--themeColor);
    } */
    .moble-con {
        color: #ffffff;
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-family: 'Prata-Regular';
        font-weight: 400;
    }
    .bannertext-Wrap {
        /*top: 10%;*/
        width: 90%;
    }
    .bannertext-Wrap h1 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 18px;
    }
    .inter-text-para h2 {
        font-size: 25px;
        line-height: 36px;
        margin-bottom: 18px;
    }
    .inter-text-para h3 {
        font-size: 25px;
        line-height: 36px;
        font-family: var(--bodyFont);
    }
    ul.banner-location li {
        font-size: 14px;
        line-height: 22px;
        border-bottom: 1px solid #fff;
        border-right: 0px solid #fff;
        flex: 0 0 90%;
        padding: 15px;
    }
    ul.banner-location li:first-child {
        padding-left: 15px;
    }
    .home-abt-sec .inter-text-para h2 {
        margin-top: 0;
        font-family: var(--paraFontsize);
    }
    .bannerwrap {
        height: 620px;
    }
    img.desktopBanner {
        width: 100%;
        top: auto;
        border: 0;
    }
    .hm-matrics ul li:first-child {
        padding-left: 10px;
    }

    .swipper-bungalow {
        margin-top: 0;
    }

    .project-bigimg, .home-project-sec {
        height: 300px;
    }
    .map-img .project-bigimg, .home-project-sec.map-img {
        height: 300px;
    }

    .swipper-gallery {
        margin-top: 0;
        padding-bottom: 50px;
    }
    .faqs-accordion .accordion-button {
        font-size: 18px;
        line-height: 28px;
    }
    .hm-matrics ul li {
        padding: 40px 10px;
        height: 170px;
    }
    .hm-matrics ul li:last-child {
        padding-right: 10px;
    }
    a.btn-product-enqy {
        padding: 15px 25px;
        color: #fff;
        margin-bottom: 10px;
        font-family: var(--headingFont);
        transform: rotate(90deg);
        position: fixed;
        right: -22%;
        bottom: 26%;
        font-size: 14px;
        font-family: var(--bodyFont);
        text-transform: capitalize;
        transform: rotate(270deg);
        z-index: 9;
        background: var(--headingothercolor);
        border-radius: 30px 30px 0px 0px;
    }
    .rowhouse-sec ul li {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .rowhouse-sec ul li:last-child{
        margin-bottom: 0px;
    }
    .dropDownInnerMnb, .navbarMain ul {
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        padding-left: 15px;
    }
    .navbarMain a {
        float: right;
        font-size: 12px;
        line-height: 25px;
    }
    .navbarMain {
        width: 100%;
    }
    .navbarMain a img {
        width: 15px;
        margin-right: 5px;
    }

    .logobox {
        width: 45%;
        border-right: 1px dotted var(--headingothercolor);
    }
    .navbarMain {
        width: 55%;
    }
    .home-abt-sec .showcase .overlay-text  {
        background: #f9f9f9;
    }
    .home-amenities-sec .showcase .overlay-text  {
        background: #f9f9f9;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 35%;
        right: auto;
    }

    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 35%;
        left: auto;
    }

    .swipper-amenities {
        padding-bottom: 80px;
    }
    .dropDownInnerMnb, .navbarMain ul li {
        padding: 0px 0px;
        flex: 0 0 100%;
    }
    .home-abt-sec .showcase .overlay-text  {
        padding: 20px 15px;
    }
    .btn-read-more a, .btn-read-more button {
        float: none;
    }
    .btn-read-more {
        text-align: center;
    }
    .banner-btn {
        margin-top: 50px;
    }
    .sec-gallery .showcase .overlay-text  h3 {
        font-size: 20px;
        line-height: 32px;
    }
    .home-amenities-sec .showcase .overlay-text  h3 {
        font-size: 20px;
        line-height: 30px;
    }
    
    .home-abt-sec .showcase .overlay-text  h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .products-detels h5 {
        font-size: 13px;
        line-height: 21px;
    }
    /* .btn-read-more a, .btn-read-more button {
        font-size: 12px;
        line-height: 22px;
    } */
    
    .swipperframe .project-box {
        height: 422px;
    }
    .brand-logbox {
        display: grid;
    }
    .brand-logbox img {
        width: 50%;
        margin-bottom: 15px;
    }
    .brand-logbox span {
        font-size: 14px;
        line-height: 24px;
        padding: 15px 0px;
        width: 100%;
    }
    .retail-accordion .products-detels h5 {
        font-size: 18px;
        line-height: 21px;
    }
    .copyright-info ul li:first-child {
        border-right: 0px dotted var(--headingFontcolor);
    }

    .hm-matrics ul li {
        padding: 20px 10px !important;
        height: 160px;
        width: 50%;
        flex: 0 0 50%;
        border: none;
    }
    
    .hm-matrics ul li:last-child {
        border-right: none;
    }
    
    .main-count {
        font-size: 40px !important;
        line-height: 40px !important;
    }

    .classy-sec::before {
        width: 1260px;
        left: -170px;
    }

    .royal-bungalow::after {
        width: 770px;
        left: -20px;
    }

    .royal-bungalow {
        height: 360px;
    }

    .katha-txt-con {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .katha-txt-main p {
        text-align: left;
    }

    .katha-txt-main {
        width: 25%;
    }

    .katha-txt, .katha-btn {
        width: 100%;
        justify-content: center;
    }

    .katha-txt p {
        padding-left: 0;
        min-height: 180px;
    }

    .katha-txt-con {
        padding: 40px 20px;
        aspect-ratio: auto;
    }

    .wg-box-content-details .inter-text-para {
        width: 70%;
    }

    .home-abt-sec ul {
        flex-wrap: wrap;
        gap: 20px;
    }

    .home-abt-sec ul li {
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
    }

    .home-abt-sec ul li img {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    }

    .wg-box-content-details {
        justify-content: center;
    }

    .wg-box-content-details.wg-box-fadeIn-bottom .inter-text-para h3 {
        margin-top: 0;
    }

    .katha-txt-main {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .katha-txt-main p {
        padding-left: 15px;
    }

    .katha-txt-main .katha-number p {
        padding-left: 0;
        margin-bottom: 0;
    }

    .count-text {
        font-size: 20px;
    }

    ul.social-media li h5 {
        font-size: 15px;
    }

    .katha-box::after {
        background: transparent;
        z-index: -1;
    }

    .showcase.wg-box-content {
        aspect-ratio: auto;
    }

    .wg-box-content-details {
        position: relative;
        background-color: var(--themeSecColor);
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
        justify-content: start;
    }

    .wg-box-content::after {
        background: transparent;
        z-index: -1;
    }
    
    .distence-amenities table {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    .left-icon-anima {
        display: none;
    }

    .wg-box-content-details {
        justify-content: center;
    }

    .royal-bungalow::after {
        width: 580px;
        left: -20px;
    }

    .royal-bungalow {
        height: 270px;
    }

    .classy-sec {
        padding: 20px 0;
    }

    .classy-sec::before {
        width: 1370px;
    }

    .bannertext-Wrap {
        /*top: 10%;*/
        width: 100%;
        padding-left: 10px;
    }

    .bannerwrap {
        height: 660px;
    }

    .katha-txt-con {
        padding: 25px;
        padding-bottom: 10px;
    }

    .wg-box-content-details .inter-text-para {
        width: 100%;
    }

    .showcase.wg-box-content {
        aspect-ratio: auto;
    }

    .katha-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .katha-txt p {
        font-size: 15px !important;
        min-height: 200px;
    }

    .showcase img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .sec-location .wg-box-content-details .inter-text-para p {
        min-height: 100px;
    }
    
    .distence-amenities table {
        font-size: 14px;
    }
    
    .count-text {
        font-size: 18px;
    }
}