@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* FONTAWESOME */
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../fonts/fa-regular-400.eot);
    src: url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-regular-400.woff2) format("woff2"), url(../fonts/fa-regular-400.woff) format("woff"), url(../fonts/fa-regular-400.ttf) format("truetype"), url(../fonts/fa-regular-400.svg#fontawesome) format("svg")
}

.far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../fonts/fa-brands-400.eot);
    src: url(../fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-brands-400.woff2) format("woff2"), url(../fonts/fa-brands-400.woff) format("woff"), url(../fonts/fa-brands-400.ttf) format("truetype"), url(../fonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(../fonts/fa-solid-900.eot);
    src: url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../fonts/fa-solid-900.woff2) format("woff2"), url(../fonts/fa-solid-900.woff) format("woff"), url(../fonts/fa-solid-900.ttf) format("truetype"), url(../fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa, .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900
}

:root {
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Roboto', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --font-normal: 400;
    --font-medium: 500;
    --primary-color: #0664AB;
    --secondary-color: #94C95C;
    --light-secondary-color: #EEEEEE;
    --tertiary-color: #004274;
    --light-grey-color: #eeeeee;
    --grey-color: #8D8D8D;
    --dark-color: #000000;
    --white-color: #FFFFFF;
    --green-color: #77C720;
    --primary-transition: all ease-in-out 0.35s;
    --duration: .7s;
}

* {
    scrollbar-color: var(--primary-color) var(--light-grey-color);
    scrollbar-width: thin;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--light-grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

html {height: 100%}
body {
    height: 100%;
    font-family: var(--primary-font);
    font-size: 14px;
    letter-spacing: 0.1px;
    font-weight: var(--font-normal);
    color: #0a0a0a;
    background: var(--white-color);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: #a64d35;
}

a:hover {
    color: #a64d35;
}

a, a:hover {
    text-decoration: none;
}
ul,ol,
ul li, ol li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%
}

.nowrap {
    white-space: nowrap;
}

.primary-radius {
    border-radius: 10px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.letter-spacing-4 {
    letter-spacing: 4px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.w-auto {
    width: auto !important;
}
.enquire-form .selldof .title,
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    font-family: var(--heading-font);
}

h1 {
    font-size: clamp(2rem, 3vw, 3.5rem);
}

h2 {
    font-size: clamp(1.125rem, 0.825rem + 1.5vw, 2.625rem);
    margin-bottom: 20px;
    color: #4C4C4C;
}
.enquire-form .selldof .title,
h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h5 {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
}

h6 {
    font-size: clamp(1.0625rem, 3vw, 1.125rem);
}

.section-ptb {
    padding-top: clamp(2rem, 5vw, 3.75rem);
    padding-bottom: clamp(2rem, 5vw, 3.75rem);
}

.section-ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* ===================== START FONT WEIGHT ELEMENT ======================== */
.font-normal {
    font-weight: var(--font-normal);
}

.font-medium {
    font-weight: var(--font-medium);
}

/* ===================== START COLORS ELEMENT ======================== */
/* PRIMARY COLORS ELEMENT */
/* TEXT COLOR */
.primary-color {
    color: var(--primary-color);
}


/* TERTIARY COLORS ELEMENT */
.tertiary-color {
    color: var(--tertiary-color);
}

/* DARK COLORS ELEMENT */
.light-grey-color {
    color: var(--light-grey-color);
}

/* DARK COLORS ELEMENT */
.grey-color {
    color: var(--grey-color);
}

/* DARK COLORS ELEMENT */
.dark-color,
.form-group label {
    color: var(--dark-color);
}

/* WHITE COLORS ELEMENT */
.enquire-form .sell_do_form_container .btn:hover,
.white-color,
.btn,
.btn:hover {
    color: var(--white-color);
}

/* BACKGROUND COLOR*/
.primary-bg,
.btn-primary,
.btn-primary:hover,
.btn-primary:focus  {
    background-color: var(--primary-color);
}

/* SECONDARY COLORS ELEMENT */
.secondary-bg,
.btn-secondary,
.enquire-form .sell_do_form_container .btn,
.enquire-form .sell_do_form_container .btn:hover,
.enquire-form .sell_do_form_container .btn:focus,
.btn-secondary:hover,
.btn-secondary:focus{
    background-color: #65686f;
}
.enquire-form .sell_do_form_container .btn,
.enquire-form .sell_do_form_container .btn:hover,
.enquire-form .sell_do_form_container .btn:focus {color: #ffffff;}
.enquire-form .sell_do_form_container .btn:hover {padding-right: 35px}
.enquire-form-box .selldof .selldof_row:last-child .form-group {text-align: center;}
/* TERTIARY COLORS ELEMENT */
.tertiary-bg,
.btn-tertiary,
.btn-tertiary:hover,
.btn-tertiary:focus {
    background-color: var(--tertiary-color);
}

/* DARK COLORS ELEMENT */
.dark-bg,
.btn-dark,
.btn-dark:hover,
.btn-dark:focus {
    background-color: var(--dark-color);
}

.btn:focus {
    outline: 0;
    box-shadow: none;
    outline: 0;
}

/* WHITE COLORS ELEMENT */
.white-bg {
    background-color: var(--white-color);
}

/* WHITE COLORS ELEMENT */
.gery-bg {
    background-color: var(--grey-color);
}

.light-gery-bg,
.form-control {
    background-color: var(--light-grey-color);
}

/* ===================== END COLORS ELEMENT ======================== */
/* buttons */
.enquire-form .sell_do_form_container .btn,
.btn {
    border: none;
    text-align: center;
    padding: 0px 25px;
    transition: var(--primary-transition);
    cursor: pointer;
    position: relative;
    font-size: 16px;
    height: 50px;
    border: 0;
    border-radius: 0;
    line-height: 50px;
}

.btn:after {
    content: '';
    position: absolute;
    opacity: 0;
    top: 16px;
    right: -30px;
    transition: var(--primary-transition);
    background: url(../images/arrow-l-w.png) no-repeat 0 0;
    width: 8px;
    height: 16px;
    background-size: cover;
}

.btn:hover {
    padding-right: 35px;
    padding-left: 15px;
}

.btn:hover:after {
    opacity: 1;
    right: 20px;
}


/* Form */
.form-control {
    border-radius: 0;
    height: 50px;
}

select.form-control {
    background: #F3F4F6 url(../images/form-select.svg) no-repeat right 10px center;
}

.form-group label {
    margin-bottom: 10px;
}

/* Owl Carasoual*/
.owl-theme .owl-nav {
    margin-top: 0;
}
.gallery-slick-slider [type=button],
.owl-carousel.owl-theme .owl-nav [type=button] {
    background: #65686f;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 50px;
    height: 50px;
    z-index: 1;
    border-radius: 100%;
    border: 0 none;
}
.amenities-sec .owl-carousel.owl-theme .owl-nav [type=button] {background: #0F380D}
.gallery-slick-slider [type=button]:hover,
.owl-carousel.owl-theme .owl-nav [type=button]:hover {
    background: #ab5740;
}
.owl-carousel.owl-theme .owl-nav [type=button].disabled:hover,
.owl-carousel.owl-theme .owl-nav [type=button].disabled {background: #E6E6E6;cursor: not-allowed;}

.gallery-slick-slider button.owl-prev,
.owl-carousel.owl-theme .owl-nav button.owl-prev {
    left: inherit;
    right: -10px;
}
.owl-carousel.owl-theme .owl-nav [type=button].disabled  svg path {
    stroke: #929292;
}



.section {
    overflow: hidden;
/*    height: 100vh;*/
}
/* HEADER STYLE */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffffff;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.logo {
    display: block;
    padding: 5px 0;
}

.logo img {
    display: block;
    transition: var(--primary-transition);
    height: 90px;
    object-fit: contain;    
    transition: var(--primary-transition);
}
.sticky .logo img {height: 80px}
.header-right {
    display: flex;
    align-items: center;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.sticky {
/*    background-color: rgba(255, 255, 255, 0.95); */
transform: translateY(0); 
}
.menu li {
    display: inline-block;
    vertical-align: middle;
}

.menu li a {
    display: block;
    color: #464646;
    font-size: 14px;
    padding: 0 10px;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
}
.menu li a.active {
/*    color: #ab5740;*/
}
.menu li a::after {
    display: block;
    content: "";
    border-bottom: 2px solid #a64d35;
    position: absolute;
    bottom: -6px;
    width: 0;
    left: 0;
    transition: var(--primary-transition);
}

.menu li a.active::after {
    width: 100%;
}
.enquire-form .sell_do_form_container .btn,
.btn.btn-secondary {
    border-radius: 50px;
    font-weight: 600;
    font-size:14px;
}

.header-right .btn {
    margin-left: 20px;
}
.banner-cont-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner-cont-wrap .container {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
}
.banner-cont {
    width: 430px;
    height: 430px;
    border-radius: 100%;
    background: #65686f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}
.banner-cont h1 {
/*    font-size: clamp(1.125rem, 0.825rem + 1.5vw, 2.625rem);*/
font-size: clamp(0.875rem, 0.55rem + 1.625vw, 2.5rem);
font-weight: normal;
/*    animation:fadeOutUp 0.3s both;*/
}

.banner-cont p {
    font-size: clamp(0.8125rem, 0.725rem + 0.4375vw, 1.25rem);
    margin: 0;
/*    animation:fadeOutUp 0.3s both;*/
}

.banner-cont h4 {
    font-family: var(--primary-font);
    font-weight: 800;
    margin: 5px 0 15px;
/*    animation:fadeOutUp 0.3s both;*/
}

.banner-cont .btn {
    background: #ffffff;
    font-weight: 600;
    color: #4C4C4C;
    border-radius: 70px;
    padding: 0 33px;
    border:1px solid #fff;
/*    animation:fadeOutUp 0.3s both;*/
}
.banner-cont .btn:hover {
    border-color: #ffffff;
    background-color: transparent;
    color: #ffffff;
}
/*.banner .slick-active .banner-cont h1 {
    animation-name: fadeInDown;
    animation-duration: 4s;
}
.banner .slick-active .banner-cont p {
    animation-name: fadeInDown;
    animation-duration: 3s;
}
.banner .slick-active .banner-cont h4 {
    animation-name: fadeInDown;
    animation-duration: 2s;
}
.banner .slick-active .banner-cont .btn {
    animation-name: fadeInDown;
    animation-duration: 1s;
} */
.banner .owl-dots {
    position: absolute;
    bottom: 20px;
    margin: 0;
    z-index: 9;
    width: 100%;
    text-align: center;
}
.banner .owl-dots .owl-dot {
    margin-right: 20px;
}
.banner .owl-dots .owl-dot span {
    display: block;
    background: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 100%;
} 

.banner ul.slick-dots {
   position: absolute;
   bottom: 20px;
   margin: 0;
   z-index: 9;
   width: 100%;
   text-align: center;
}

.banner ul.slick-dots li {display: inline-block;}
.banner ul.slick-dots li button  { 
    margin: 0 3px;
    text-indent: -400px;
    color: transparent; 
    display: block;
    background: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    border: 0 none;
}
.banner .owl-dots .owl-dot.active span,
.banner ul.slick-dots li.slick-active button {
    background: #BDE296;
    width: 12px;
    height: 12px;
    border: 0 none;
}
.about-sec {
    padding: 100px 0;
}
.heiglights-sec {
    padding: 50px 0 0;
    position: relative;
    margin-bottom: 100px;
}
.heiglights-sec::after {
    width: 100%;
    height: 90px;
    background: #fff;
    display: block;
    content: ""; 
    margin-top: 50px;
}
.bigthumb {
    position: absolute;
    right: 0;
    padding-right: 0;
    height: calc(100% - 100px);
    top: 100px;
    padding-left: 60px;
    z-index: 1;
}
.bigthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    border-top-left-radius: 100px;
}
.even .bigthumb {
    right: inherit;
    left: 0;
    padding: 0 60px 0 0;
    width: 50%;
}
.even .bigthumb img {
    border-radius: 0 100px 0 0;
    object-position: top right;
}

.list-bullet ul li {
/*    background: transparent url(../images/list-bullet-icon.png) no-repeat left top 1px;*/
    padding-left: 0px;
    margin: 8px 0;
    font-size: 16px;
}
ul.resp-tabs-list {
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
}

ul.resp-tabs-list li.resp-tab-item {
    background: none !important;
    border: 0 none !important;
    display: inline-block;
    margin: 0;
    padding: 0 15px;
    font-size: 18px;
    line-height: normal;
    color: #454545;
    cursor: pointer;
}

ul.resp-tabs-list li.resp-tab-item::after {
    display: block;
    content: "";
    width: 0;
    height: 4px;
    background: #65686f;
    transition: var(--primary-transition);
}

ul.resp-tabs-list li.resp-tab-item span {
    display: block;
    padding: 10px;
}

ul.resp-tabs-list li.resp-tab-item.resp-tab-active::after {
    width: 100%;
}

ul.resp-tabs-list li.resp-tab-item.resp-tab-active {
    color: #65686f;
    font-weight: 600;
}
.resp-tab-content,
h2.resp-accordion {display: none;}
.resp-tab-content.resp-tab-content-active {display: block;}

.plan-thum-box { 
    width: 870px;
    height: 530px;
    max-width: 100%;
    margin: auto;  
}
.plan-thum-box .owl-stage-outer {
    border: 2px solid #94C95C;
    background: #ffffff;
    border-radius: 16px;
}
.plan-thum-box .owl-carousel.owl-theme .owl-nav [type=button] {left: -23px}
.plan-thum-box .owl-carousel.owl-theme .owl-nav button.owl-prev {
    left: inherit;
    right: -23px;
}

.plan-thum-box div {
    height: 100%;
}

.planss-img a {
    display: block;
    height: 100%;
    position: relative;
}
.plan-name {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 22222;
    display: inline-block;
    background: #94c95c;
    color: #fff;
    padding: 5px 20px;
    font-size: 18px;
    line-height: 1.2;
    border-left: 2px solid #b7b7b7;
    border-bottom: 1px solid #0000001a;
}
.owl-carousel .owl-item  .planss-img img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: auto;
    width: auto;
    max-width: 100%;
}

.owl-stage {
    margin: auto;
}
.plan-sec {padding: 60px 0 100px}
.edu-n-health {
    padding: 85px 0 90px;
}
.edu-n-health .item {padding: 16px}
.info-box figure {
    margin: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}
.ameni-box,
.info-box {
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 16px rgb(0 0 0 / 3%);
}

.info-box h4 {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    color: #65686f;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 600;
    margin: 0;
    border: 2px solid #94C95C;
    border-top: 0 none;
    padding: 20px 25px;
    font-family: var(--primary-font);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.gallery-sec .gallery-slick-slider [type=button],
.gallery-sec .owl-carousel.owl-theme .owl-nav [type=button] {left: 150px}
.gallery-sec .gallery-slick-slider button.owl-prev,
.gallery-sec .owl-carousel.owl-theme .owl-nav button.owl-prev {
    left: inherit;
    right: 150px;
}
.gallery-item {
    border-radius: 25px;
    overflow: hidden;
}
.gallery-sec {padding: 100px 0 0}
.gallery-sec .active.center .gallery-item {
    height: auto !important;
}
.gallery-sec .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.gallery-item figure {margin: 0}
.gallery-item h4 {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
    color: #65686f;
    font-weight: bold;
    font-family: var(--secondary-font);
    margin: 0;
    line-height: normal;
    padding: 15px 40px 15px 24px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e8e8e8+0,ffffff+100 */
    background: linear-gradient(to right,  rgba(232,232,232,0.9) 0%,rgba(255,255,255,0.45) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.active.center .gallery-item h4 {
    display: block;
}

.gallery-item h4 small {
    display: block;
    color: #4A4A4A;
    font-weight: normal;
}
.amenities-sec {
    background: #65686f;
    padding: 90px 0 100px;
}
.amenities-sec h2 {color: #ffffff}
.ameni-box {
    padding: 5px;
    background: #ffffff;
    border-radius: 16px;
}
.ameni-box figure {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;

}
.ameni-box h4 {
  color: #65686f;
  font-family: var(--primary-font);
  font-size: clamp(0.875rem, 0.775rem + 0.5vw, 1.375rem);
  padding: 0 10px;
  text-align: center;
  margin: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.amenities-sec .item {padding: 15px}
.icon-txt {
    font-weight: 600;
    font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
    line-height: 1.4;
    margin-top: 15px;
    color: #454545;
    position: relative;
    padding-left: 45px;
}
.icon-txt figure {
    position: absolute;
    margin: 0;
    left: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-txt a {
    color: currentColor;
}

.icon-txt a:hover {
    color: #65686f;
}
.mb-40 {margin-bottom: 40px}
.locationthumb {
    position: absolute;
    right: 0;
    padding-right: 0;
    top: 0;
    height: 100%;
    padding-left: 60px;
    z-index: 1;
}
.locationthumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-top-left-radius: 100px;
}
.even .locationthumb {
    right: inherit;
    left: 0;
    padding: 0 60px 0 0;
    width: 50%;
}
.even .locationthumb img {
    border-radius: 0 100px 0 0;
    object-position: center;
    box-shadow: 4px -8px 10px rgba(0,0,0,.07);
    padding: 8px;
}
.locationthumb .zoom-icon {
    position: absolute;
    right: 80px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background-color: #ab5740;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.location-sec .position-relative {
    height: 480px;
    display: flex;
/*    align-items: center;*/
}
.location-sec h4 {padding-top: 20px}

.location-sec {
    padding: 90px 0 100px;
}

.location-sec h2 {
    margin-bottom: 50px;
}
.easy-access ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 20px;
    border-top: 1px solid #d9d9d9;
    font-size: 14px;
}
.easy-access ul li span {
    display: block;
    padding: 10px 20px;
    border-left: 1px solid #ccc;
    width: 90px;
}
.easy-access ul li p {
    margin: 0;
}

.easy-access ul {
    border: 1px solid #d9d9d9;
    margin-top: 20px;
}

.easy-access ul li:first-child {
    border-top: 0 none;
}
.developer-sec .bigthumb img {
    object-position: bottom right;
}

.developers-tab {
    background: #65686f;
    position: relative;
    padding: 90px 45px 60px 0;
}

.developers-tab::before {
    background: #2b2b2b;
    width: 175%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -60%;
    display: block;
    content: "";
}

.developers-tab ul.resp-tabs-list li.resp-tab-item {
    font-family: var(--heading-font);
    font-size: clamp(0.875rem, 0.525rem + 1.75vw, 2.625rem);
    color: #8BD287;
    position: relative;
    padding: 0 26px;
}
.sub-plan-details ul.resp-tabs-list li.resp-tab-item {font-size: 16px}
.developers-tab .developers-sub-tab  ul.resp-tabs-list li.resp-tab-item {
    font-size: clamp(0.875rem, 0.7rem + 0.875vw, 1.75rem);
}
.developers-tab ul.resp-tabs-list li.resp-tab-item::before {
    background: #8BD287;
    width: 1px;
    height: 62%;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.developers-tab ul.resp-tabs-list li.resp-tab-item:first-child {
    padding-left: 0;
}

.developers-tab ul.resp-tabs-list li.resp-tab-item:first-child::before {
    display: none;
}

.developers-tab ul.resp-tabs-list {
    text-align: left;
}

.developers-tab ul.resp-tabs-list li.resp-tab-item.resp-tab-active {
    color: #ffffff;
    font-weight: normal;
}

.developers-tab ul.resp-tabs-list li.resp-tab-item span {
    padding: 0;
}

.developers-tab .resp-tabs-container {
    position: relative;
}

.developer-sec {
    position: relative;
}
.developer-sec::before {
    display: block;
    content: "";
    background: #ffffff;
    width: 100%;
    height: 100px;
}
.developer-sec .bigthumb {
    top:0; 
    padding-left: 90px;
}

.developers-tab p {
    color: #f3f3f3;
    margin: 15px 0 0;
}

.developers-tab img {
    margin-bottom: 15px;
}
footer.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

footer.footer {
    background: #2b2b2b;
    padding: 40px 0;
}

ul.social {
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
}

ul.social li {
    display: inline-block;
    vertical-align: middle;
}

footer.footer p {
    margin: 0;
    color: #efefef;
    font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
}

footer.footer p small {
    font-size: 100%;
}

footer.footer p small a {}

ul.social li a {
    color: #AEAEAE;
    font-size: 25px;
    line-height: normal;
    padding: 0 10px;
}

ul.social li:last-child a {
    padding-right: 0;
}

ul.social li a:hover {
    color: #ffffff;
}

footer.footer p a {
    color: currentColor;
}

footer.footer p a:hover {
    color: #fff;
}

#toTop {
    color: #ffffff;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    text-decoration: none;
    display: none;
    transition: .5s;
    z-index: 2;
    background: #ab5740;
    border-radius: 100%;
    box-shadow: 0 0 6px 0px rgb(255 255 255 / 38%);
}

#toTop:focus {
    outline: none;
    text-decoration: none
}

#toTop i {
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

#toTop:hover {
    color: #ab5740;
    background: #8BD287;
}
.video-pay-btn {
    position: relative;
    display: block;
    height: 100%;
}
.video-pay-btn::before {
    background: transparent url(../images/video-play-icon.png) no-repeat center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
}
/*form*/

.enquire-form{ max-width: 600px;}
.enquire-form h3{ margin-bottom: 20px;}
.enquire-form-box input[type="text"],
.enquire-form-box input[type="email"],
.enquire-form-box input[type="tel"],
.enquire-form-box input[type="phone"]{box-shadow: none; font-family: var(--primary-font);margin-bottom: 30px; padding: 15px 40px 15px 20px; border: 0 !important; border-radius: 30px; width: 100%; background: #EEEEEE; color: #2A2A2A; line-height: 1; height: auto; font-size: 14px; box-shadow: none;}

.enquire-form-box input[type="file"]{ margin-bottom: 30px; padding: 12px 40px 12px 20px; border: 0 !important; border-radius: 30px; width: 100%; background: #EEEEEE; color: #2A2A2A; line-height: 1; height: auto; font-size: 14px; box-shadow: none;}

.enquire-form-box select{ margin-bottom: 30px; padding: 15px 40px 15px 20px; border: 0; border-radius: 30px; width: 100%; background: #EEEEEE; color: #2A2A2A; line-height: 1; font-size: 14px;}
.contact-page .enquire-form-box select {background-repeat: no-repeat;background-size: 13px auto !important;background-position: center right 18px !important;background-image: url(../images/arrow-down-sign-to-navigate.png);}
.enquire-form-box textarea{box-shadow: none !important; margin-bottom: 30px; padding: 10px 40px 10px 20px !important; border: 0 !important; border-radius: 30px !important; width: 100%; background: #EEEEEE !important; color: #2A2A2A; line-height: 1.2; height: 100px !important; resize: none; font-size: 14px;}

/*.enquire-form-box input[type="submit"]{ padding: 12px 20px; border: 1px solid #CA252C; border-radius: 30px; background: #CA252C; color: #ffffff; font-size: 18px; line-height: 1; cursor: pointer; transition: 0.5s;}
.enquire-form-box input[type="submit"]:hover{ background:none; color: #CA252C; }*/

.enquire-form-box input[type="text"].form-control,
.enquire-form-box input[type="email"].form-control,
.enquire-form-box input[type="tel"].form-control,
.enquire-form-box input[type="phone"].form-control{ margin: 0;}
.selldof .form-control:focus{ box-shadow: none !important;}

.enquire-form-box .selldof_row {margin-right: -15px;margin-left: -15px}
.enquire-form-box .selldof .title{ text-align: center;text-transform: none;font-weight: 500}

.enquire-form input[type="checkbox"]{ width: 15px; height: 15px; -webkit-appearance: checkbox; appearance: checkbox;}

.wpcf7-form-control-wrap{ float: left; width: 100%;}
span.wpcf7-not-valid-tip{ position: absolute; left: 0; bottom: 7px; font-size: 12px !important;}
.single-online-application span.wpcf7-not-valid-tip {
  bottom: inherit;
  top: 100%;
}
.wpcf7-not-valid{ border: 1px solid #CA252C !important;}
div.wpcf7-response-output{ font-size: 14px;}

input:focus, select:focus, textarea:focus {
    outline: 0;
}
.wpcf7-spinner {
    position: absolute !important;
    left:0;
}
.menutoggle {
    height: 32px;
    width: 40px;
    cursor: pointer;
    display: none;
    position: fixed;
    top: 13px;
    right: 15px;
    border: none;
    z-index: 9999;
    background: none;
    border: 0 none;
    margin: 21px 0;
}

.menutoggle span,
.menutoggle span::before,
.menutoggle span::after {
    background: #000000;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 3px;         
    margin-top: 13px; 

    -webkit-transition: .3s ease-in-out .3s;
    -moz-transition: .3s ease-in-out .3s;
    -o-transition: .3s ease-in-out .3s;
    transition: .3s ease-in-out .3s;
}
.menutoggle span {width: 30px}

.menutoggle span::before {
    margin-top:-12px;
    width: 40px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.menutoggle span::after {
    margin-top:12px;
    width: 20px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.menutoggle.active span {
    background: transparent;
    width: 40px;

    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;

    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
    transform:rotate(-90deg);
}

.menutoggle.active span::before {
    margin-top:0;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.menutoggle.active span::after {
    margin-top:0;
    width: 40px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .5s;
}
.mobile-menu {display: none;}
.location-details ul.resp-tabs-list li.resp-tab-item {
    font-size: 14px;
    padding: 0;
}

.location-details ul.resp-tabs-list {
    text-align: left;
}

.devlogo {
    max-height: 75px;
}
.leftab-cont {display: flex;align-items: center;justify-content: center;}
.list-highlight {
    margin: 0;
    padding: 0;
    position: relative;
    list-style-type: none;
    height: 400px;
    width: 100%;
}

.list-highlight li {
    background: #A64D35;
    width: 164px;
    height: 164px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.list-highlight li strong {
    font-size:  21px;
    line-height: 1.2;
    font-weight: 600;
}

.list-highlight li span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    display: block;
}
.list-highlight li:nth-child(2) {
    background: #65686f;
    width: 203px;
    height: 203px;
    left: 252px;
    top: 64px;
}

.list-highlight li:nth-child(3) {
    width: 217px;
    height: 217px;
    background: #65686f;
    top: 133px;
}

.list-highlight li:nth-child(4) {
    width: 174px;
    height: 174px;
    background: #A64D35;
    left: 180px;
    top: 224px;
}

.list-highlight li:first-child {
    left: 88px;
    z-index: 1;
}
.callback-btn-mobile.btn-secondary,
.callback-btn-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 999;
    width: 100%;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.4;
    padding: 12px 18px;
    height: auto;
    display: none;
}
img.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.btns-overview .btn {
    margin: 0 10px 10px 0;
}

.btns-overview {
    margin-top: 20px;
}
.plan-btn {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

/* 27-10-2023 */
.page-id-7 .banner-cont-wrap {
    top: -240px;
}
.page-id-7 .banner-cont-wrap .container {
    align-items: flex-start;
    height: inherit;
}
.page-id-7 .banner-cont-wrap .container .banner-cont {
    padding: 240px 20px 20px 20px;
}
.page-id-7 .banner-cont-wrap .container .banner-cont h1 {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
}
.page-id-7 .banner-cont-wrap .container .banner-cont h4 {
    margin: 5px 0 10px;
}
.page-id-7 .banner-cont-wrap .container .banner-cont p {
    font-size: clamp(1rem, 5vw, 1.0625rem);
}
.page-id-7 .banner-cont-wrap .container .banner-cont .btn {
    padding: 0 18px;
    line-height: 35px;
    height: 35px;
    font-size: 0.875rem;
}
.page-id-7 .banner-cont-wrap .container .banner-cont .btn:after {
    top: 13px;
    width: 6px;
    height: 10px;
    background-size: cover;
}
.page-id-7 .banner-cont-wrap .container .banner-cont .btn:hover:after {
    right: 7px;
}
/* 27-10-2023 */
.move-down {
    display: none;
    text-align: center;
    position: absolute;
    top: 38%;
    z-index: 9;
    width: 100%;
}
.move-down a {
    display: inline-flex;
    border: 1px solid #fff;
    box-shadow: 0 0 6px 0px rgb(0 0 0);
    color: #65686f;
    border-radius: 100%;
    background: rgb(255 255 255 / 90%);
    font-size: 18px;
    line-height: 1.2;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
.specification-tab ul.resp-tabs-list {text-align: left;}
.specification-tab ul.resp-tabs-list li.resp-tab-item:first-child {padding-left: 0}
.specification-tab .resp-tab-content li span {
    color: #cb3138;
}

.specification-tab .resp-tab-content li strong {
    font-weight: 600;
}
.application-form-sec .form-group {margin-bottom: 15px}
.filedline {
    border: 0 none;
    border-bottom: 1px solid #646464;
    margin: 0 0 20px;
}
.application-form-sec .form-control {
    background: #fff;
    border-color: #646464;
}
.application-form-sec h2 {margin-top: 30px}
.application-form-sec label {margin-bottom: 5px}
.hide-ondesktop {display: none;}
.gallery-item-title {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 0;
    background: rgb(255 255 255 / 75%);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    padding: 10px 25px 10px 10px;
}

.slick-center .gallery-item-title,
.center .gallery-item-title {
    display: inline-block;
}
.gallery-item img {width: 100%}
.gallery-sec .slick-slide {
    margin: 0 10px;
    padding: 90px 0;
}
.gallery-item {position: relative;}
.slick-center .gallery-item {
    transform: scaleY(1.15);
}
.gallery-sec {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%);
}
.application-form-sec ol li {
    list-style-type: decimal;
}

.application-form-sec ol {
    padding-left: 10px;
}
.enquire-form .selldof 
input.sell_do_verify_btn {
    border-radius: 50px;
    font-weight: 600;
    background-color: #ab5740;
    font-size: 12px;
    border: 1px solid #ab5740;
    color: #ffffff;
}

.enquire-form .sell_do_form_container .sell_do_input_verify_c input[type="text"] {font-size: 14px;padding: 10px 20px;margin: 0;}

.enquire-form  .sell_do_verify_resend_link {
    font-size: 14px;
    padding: 7px 15px;
    display: inline-block;
    margin-left: 5px;
    background: #686868;
    color: #ffffff;
    border-radius: 50px;
}

.enquire-form .sell_do_verify_resend_link:hover {
    background: #444;
}

.sell_do_verify_container.selldof label {
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 1.2;
    display: block;
}
.rera-number-sec {
    background: #ab5740;
    color: #fff;
    padding: 10px 0;
}

.rera-number-sec p {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: normal;
}
.hasvideo {
    height: calc(100% - 148px);
    top: 148px;
    overflow: hidden;
}
.hasvideo .video-pay-btn {height: calc(100% - 60px);overflow: hidden;}
.developer-sec .bigthumb {height: 100%}
.enquire-sec {
    padding: 30px 0 0;
}

.enquire-sec .enquire-area input[type="text"], .enquire-sec .enquire-area input[type="email"], .enquire-sec .enquire-area input[type="tel"] {
    margin-bottom: 30px;
    padding: 15px 40px 15px 20px;
    border: 0;
    border-radius: 30px;
    width: 100%;
    background: #EEEEEE;
    color: #2A2A2A;
    line-height: 1;
    font-size: 14px;
}

.enquire-sec .enquire-area textarea {
    margin-bottom: 30px;
    padding: 15px 40px 15px 20px;
    border: 0;
    border-radius: 30px;
    width: 100%;
    background: #EEEEEE;
    color: #2A2A2A;
    line-height: 1;
    font-size: 14px;
}

.enquire-sec .enquire-area input[type="submit"] {

    width: 100%; 
}

.text-banner {
    text-align: center;
    background: #65686f;
    padding: 40px 0;
}

.text-banner h1 {
    color: #ffffff;
    margin: 0;
    padding-bottom: 5px;
}

.thank-you-page {
    background: #ededed;
    padding: 60px 0;
}

.thank-you-page p {
    margin: 0;
}
.page-template-template-thank-you .main-navigation {
    display: none !important;
}